@charset "UTF-8";
/* ===============================================================================
Module
=============================================================================== */
/* accordion module 
========================= */
/* m-acc-1 */
.m-acc-1__btn {
  width: 780px;
  margin: 0 auto;
  color: #fff;
  font-size: 1.375rem;
  font-weight: 700;
  text-align: center;
  padding: 16px 10px;
  background: #000;
  border-radius: 10px;
  box-sizing: border-box;
  margin-bottom: 34px;
  position: relative;
  cursor: pointer;
  z-index: 1;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.m-acc-1__btn:hover {
  opacity: 0.8;
}
.m-acc-1__btn::before {
  position: absolute;
  z-index: -1;
  content: "";
  display: block;
  width: 31px;
  height: 27px;
  background: url("../img/cmn/cmn_arr06.svg") no-repeat 0 0/100% 100%;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  margin: 0 auto;
  -webkit-transition: bottom 0.3s;
  transition: bottom 0.3s;
}
.m-acc-1__btn__open span, .m-acc-1__btn__close span {
  display: inline-block;
  padding-right: 68px;
  position: relative;
}
.m-acc-1__btn__open span::after, .m-acc-1__btn__close span::after {
  position: absolute;
  content: "";
  display: block;
  background: url("../img/cmn/cmn_arr07.png") no-repeat 0 0/100% 100%;
  width: 17px;
  height: 11px;
  right: 13px;
  top: 4px;
  bottom: 0;
  margin: auto 0;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.m-acc-1__btn__close {
  display: none;
}
.m-acc-1__btn__close span::after {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.m-acc-1__btn.is-active::before {
  bottom: -14px;
}
.m-acc-1__btn.is-active .m-acc-1__btn__open {
  display: none;
}
.m-acc-1__btn.is-active .m-acc-1__btn__close {
  display: block;
}
.m-acc-1__dtl {
  padding: 45px 66px 70px;
  display: none;
}
.m-acc-1__dtl__heading {
  font-size: 1.875rem;
  font-weight: 800;
  margin-bottom: 18px;
}
.m-acc-1__dtl__heading.m-acc-1__dtl__heading_type-2 {
  margin-bottom: 8px;
}
.m-acc-1__dtl__group:not(:last-child) {
  padding-bottom: 35px;
  border-bottom: dotted 3px #d2d2d2;
  margin-bottom: 21px;
}
.m-acc-1__dtl__submit {
  margin-top: 40px;
}
.m-acc-1__dtl__col2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
.m-acc-1__dtl__col2::after {
  position: absolute;
  content: "";
  display: block;
  top: 11px;
  left: 50%;
  bottom: -11px;
  width: 3px;
  background: #d2d2d2;
}
.m-acc-1__dtl__col2.m-acc-1__dtl__col2_type-2::after {
  content: none;
}
.m-acc-1__dtl__col2__col {
  width: 445px;
}
@media screen and (max-width: 768px) {
  .m-acc-1__btn {
    width: auto;
    font-size: 0.9375rem;
    padding: 12px 8px;
    border-radius: 5px;
    margin-bottom: 34px;
  }
  .m-acc-1__btn::before {
    width: 25px;
    height: 22px;
  }
  .m-acc-1__btn__open span, .m-acc-1__btn__close span {
    padding-right: 54px;
  }
  .m-acc-1__btn__open span::after, .m-acc-1__btn__close span::after {
    width: 14px;
    height: 9px;
    right: 10px;
    top: 3px;
  }
  .m-acc-1__dtl {
    padding: 24px 16px 32px;
  }
  .m-acc-1__dtl__heading {
    font-size: 1.375rem;
    margin-bottom: 16px;
  }
  .m-acc-1__dtl__group:not(:last-child) {
    padding-bottom: 24px;
    border-width: 2px;
    margin-bottom: 24px;
  }
  .m-acc-1__dtl__submit {
    margin-top: 32px;
  }
  .m-acc-1__dtl__col2 {
    display: block;
  }
  .m-acc-1__dtl__col2::after {
    content: none;
  }
  .m-acc-1__dtl__col2__col {
    width: auto;
  }
  .m-acc-1__dtl__col2__col:not(:last-child) {
    padding-bottom: 24px;
    border-bottom: dotted 2px #d2d2d2;
    margin-bottom: 24px;
  }
}

/* box module 
========================= */
/* m-box-1 */
.m-box-1 {
  border: solid 3px #000;
  border-radius: 12px;
  background: #f9ef55 url("../img/cmn/cmn_bg01.png") repeat 0 0;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .m-box-1 {
    background-size: 7px auto;
    border-width: 2px 0;
    margin-right: -16px;
    margin-left: -16px;
    border-radius: 0;
  }
  .m-box-1.m-box-1_type-2 {
    margin-right: 0;
    margin-left: 0;
    border-width: 2px;
    border-radius: 5px;
  }
}

/* m-box-2 */
.m-box-2 {
  border: solid 3px #000;
  border-radius: 12px;
  background: #a1da07 url("../img/cmn/cmn_bg02.png") repeat 0 0;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .m-box-2 {
    background-size: 7px auto;
    border-width: 2px 0;
    margin-right: -16px;
    margin-left: -16px;
    border-radius: 0;
  }
  .m-box-2.m-box-2_type-2 {
    margin-right: 0;
    margin-left: 0;
    border-width: 2px;
    border-radius: 5px;
  }
}

/* m-box-3 */
.m-box-3 {
  border: solid 3px #000;
  border-radius: 12px;
  background: #2dcedd url("../img/cmn/cmn_bg02.png") repeat 0 0;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .m-box-3 {
    background-size: 7px auto;
    border-width: 2px 0;
    margin-right: -16px;
    margin-left: -16px;
    border-radius: 0;
  }
  .m-box-3.m-box-3_type-2 {
    margin-right: 0;
    margin-left: 0;
    border-width: 2px;
    border-radius: 5px;
  }
}

/* m-box-4 */
.m-box-4 {
  border: solid 3px #000;
  border-radius: 12px;
  background: #f9ef55 url("../img/cmn/cmn_bg02.png") repeat 0 0;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .m-box-4 {
    background-size: 7px auto;
    border-width: 2px 0;
    margin-right: -16px;
    margin-left: -16px;
    border-radius: 0;
  }
  .m-box-4.m-box-4_type-2 {
    margin-right: 0;
    margin-left: 0;
    border-width: 2px;
    border-radius: 5px;
  }
}

/* m-box-5 */
.m-box-5 {
  border: solid 5px #000;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .m-box-5 {
    border-width: 2px;
    border-radius: 5px;
  }
}

/* m-box-6 */
.m-box-6 {
  border: solid 3px #000;
  border-radius: 12px;
  background: #f4f4f4 url("../img/cmn/cmn_bg03.png") repeat center center;
}
@media screen and (max-width: 768px) {
  .m-box-6 {
    border-width: 2px 0;
    margin-right: -16px;
    margin-left: -16px;
    border-radius: 0;
  }
}

/* m-box-7 */
.m-box-7 {
  border: solid 3px #000;
  border-radius: 12px;
  background: #fffef2;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .m-box-7 {
    background-size: 7px auto;
    border-width: 2px 0;
    margin-right: -16px;
    margin-left: -16px;
    border-radius: 0;
  }
  .m-box-7.m-box-7_type-2 {
    margin-right: 0;
    margin-left: 0;
    border-width: 2px;
    border-radius: 5px;
  }
}

/* button module 
========================= */
/* m-btn-1 */
.m-btn-1 {
  width: 230px;
  height: 48px;
  margin: 0 auto;
  box-sizing: border-box;
  border: solid 4px #000;
  box-shadow: 5px 5px 0 #353737;
  font-size: 1.3719rem;
  text-align: center;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 700;
  cursor: pointer;
}
.m-btn-1:hover {
  opacity: 0.8;
}
.m-btn-1::after {
  content: "";
  display: block;
  width: 33px;
  height: 9px;
  background: url("../img/cmn/cmn_arr03_2.svg") no-repeat 0 0/100% 100%;
  margin-left: 10px;
  position: relative;
  top: -2px;
}
@media screen and (min-width: 769px) {
  .m-btn-1.m-btn-1_type-2 {
    font-size: 1.1875rem;
  }
  .m-btn-1.m-btn-1_type-2::after {
    margin-left: 20px;
  }
}
@media screen and (max-width: 768px) {
  .m-btn-1 {
    width: 148px;
    height: 31px;
    border: solid 2px #000;
    box-shadow: 3px 3px 0 #353737;
    font-size: 0.8859rem;
  }
  .m-btn-1::after {
    width: 20px;
    height: 5px;
    margin-left: 7px;
    top: -2px;
  }
}

/* m-btn-2 */
.m-btn-2 {
  display: block;
  box-sizing: border-box;
  padding: 27px 62px 28px 5px;
  text-align: center;
  font-size: 1.25rem;
  line-height: 1.2;
  color: #fff;
  background: #131d22;
  box-shadow: 5px 5px 0 #b2b2b2;
  position: relative;
  cursor: pointer;
}
.m-btn-2:hover {
  opacity: 0.8;
}
.m-btn-2::after {
  position: absolute;
  content: "";
  display: block;
  width: 33px;
  height: 9px;
  right: 24px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  background: url("../img/cmn/cmn_arr03.svg") no-repeat 0 0/100% 100%;
}
.m-btn-2.m-btn-2_type-2 {
  padding: 20px 83px 20px 16px;
}
.m-btn-2.m-btn-2_type-2::after {
  right: 34px;
}
@media screen and (max-width: 768px) {
  .m-btn-2 {
    padding: 12px 54px 12px 16px;
    font-size: 1rem;
    box-shadow: 3px 3px 0 #b2b2b2;
  }
  .m-btn-2::after {
    width: 20px;
    height: 5px;
    top: -2px;
    right: 16px;
  }
  .m-btn-2.m-btn-2_type-2 {
    padding: 12px 54px 12px 16px;
    text-align: left;
  }
  .m-btn-2.m-btn-2_type-2::after {
    right: 16px;
  }
}

/* m-btn-3 */
.m-btn-3 {
  display: block;
  margin: 0 auto;
  box-sizing: border-box;
  border: solid 3px #000;
  box-shadow: 5px 5px 0 #000;
  border-radius: 10px;
  padding: 11px 10px 12px;
  font-size: 1.1875rem;
  line-height: 1.2;
  background: #fce44c;
  text-align: center;
  font-weight: 700;
  cursor: pointer;
}
.m-btn-3:hover {
  opacity: 0.8;
}
.m-btn-3__inner {
  display: inline-block;
  padding-right: 43px;
  position: relative;
}
.m-btn-3__inner::after {
  content: "";
  position: absolute;
  display: block;
  width: 33px;
  height: 9px;
  background: url("../img/cmn/cmn_arr03_2.svg") no-repeat 0 0/100% 100%;
  top: -4px;
  right: 0;
  bottom: 0;
  margin: auto 0;
}
@media screen and (max-width: 768px) {
  .m-btn-3 {
    border-width: 2px;
    box-shadow: 3px 3px 0 #000;
    border-radius: 5px;
    padding: 11px 10px 12px;
    font-size: 0.95rem;
  }
  .m-btn-3:hover {
    opacity: 0.8;
  }
  .m-btn-3__inner {
    padding-right: 26px;
  }
  .m-btn-3__inner::after {
    width: 20px;
    height: 5px;
    top: -2px;
  }
}

/* m-btn-4 */
.m-btn-4 {
  border: solid 3px #000;
  box-shadow: 5px 5px 0 #000;
  border-radius: 10px;
  font-size: 1.0625rem;
  font-weight: 700;
  display: block;
  position: relative;
  padding: 10px 50px 10px 5px;
  text-align: center;
}
.m-btn-4:hover {
  opacity: 0.8;
}
.m-btn-4::after {
  content: "";
  position: absolute;
  display: block;
  width: 33px;
  height: 9px;
  background: url("../img/cmn/cmn_arr03_2.svg") no-repeat 0 0/100% 100%;
  top: -4px;
  right: 10px;
  bottom: 0;
  margin: auto 0;
}
.m-btn-4__txt {
  padding-left: 30px;
  display: inline-block;
  position: relative;
}
.m-btn-4__txt::before {
  position: absolute;
  content: "";
  display: block;
  top: 4px;
  left: 0;
  background: url("../img/cmn/cmn_ico02.svg") no-repeat 0 0/100% 100%;
  width: 18px;
  height: 19px;
}
@media screen and (max-width: 768px) {
  .m-btn-4 {
    border-width: 2px;
    box-shadow: 3px 3px 0 #000;
    border-radius: 5px;
    font-size: 1rem;
    padding: 7px 39px 7px 5px;
  }
  .m-btn-4::after {
    width: 20px;
    height: 5px;
    top: -2px;
  }
}

/* m-btn-5 */
.m-btn-5 {
  border: solid 3px #000;
  background: #fce44c;
  border-radius: 10px;
  font-size: 1.0169rem;
  font-weight: 700;
  display: block;
  position: relative;
  padding: 10px 5px;
  text-align: center;
}
.m-btn-5:hover {
  opacity: 0.8;
}
.m-btn-5__txt {
  padding-left: 36px;
  display: inline-block;
  position: relative;
}
.m-btn-5__txt::before {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  left: 0;
  background: url("../img/cmn/cmn_ico03.png") no-repeat 0 0/100% 100%;
  width: 28px;
  height: 28px;
}
.m-btn-5__size {
  font-size: 0.625rem;
}
@media screen and (max-width: 768px) {
  .m-btn-5 {
    border-width: 2px;
    border-radius: 5px;
    font-size: 1rem;
    padding: 8px 5px;
  }
  .m-btn-5__txt {
    padding-left: 29px;
  }
  .m-btn-5__txt::before {
    width: 22px;
    height: 22px;
    top: 2px;
  }
}

/* m-btn-6 */
.m-btn-6 {
  font-size: 1.1875rem;
  font-weight: 700;
  line-height: 1.2;
  border: solid 4px #000;
  box-shadow: 5px 5px 0 #353737;
  display: block;
  position: relative;
  padding: 10px 63px 10px 10px;
  background: #fff;
  text-align: center;
}
.m-btn-6:hover {
  opacity: 0.8;
}
.m-btn-6::after {
  content: "";
  position: absolute;
  display: block;
  width: 33px;
  height: 9px;
  background: url("../img/cmn/cmn_arr03_2.svg") no-repeat 0 0/100% 100%;
  top: -4px;
  right: 15px;
  bottom: 0;
  margin: auto 0;
}
@media screen and (max-width: 768px) {
  .m-btn-6 {
    font-size: 0.9375rem;
    border-width: 2px;
    box-shadow: 3px 3px 0 #353737;
    padding: 10px 45px 10px 10px;
  }
  .m-btn-6::after {
    width: 20px;
    height: 5px;
    top: -2px;
  }
}

/* m-btn-7 */
.m-btn-7 {
  border: solid 3px #000;
  border-radius: 10px;
  background: #fff;
  box-shadow: 5px 5px 0 #000;
  display: block;
  position: relative;
  padding: 12px 64px 11px 35px;
  font-size: 1.0625rem;
  line-height: 1.3;
  font-weight: 700;
}
.m-btn-7:hover {
  opacity: 0.8;
}
.m-btn-7::after {
  content: "";
  position: absolute;
  display: block;
  width: 33px;
  height: 9px;
  background: url("../img/cmn/cmn_arr03_2.svg") no-repeat 0 0/100% 100%;
  top: -4px;
  right: 21px;
  bottom: 0;
  margin: auto 0;
}
.m-btn-7__inner {
  display: inline-block;
  padding-left: 30px;
  position: relative;
}
.m-btn-7__inner::before {
  position: absolute;
  content: "";
  display: block;
  top: 2px;
  left: 0;
  background: url("../img/cmn/cmn_ico02.svg") no-repeat 0 0/100% 100%;
  width: 18px;
  height: 18px;
}
@media screen and (min-width: 769px) {
  .m-btn-7.m-btn-7_type-2 {
    padding-left: 20px;
  }
  .m-btn-7.m-btn-7_type-3 {
    font-size: 1rem;
    padding: 10px 64px 9px 10px;
  }
  .m-btn-7.m-btn-7_type-3 span {
    font-weight: 400;
  }
}
@media screen and (max-width: 768px) {
  .m-btn-7 {
    border-width: 2px;
    border-radius: 5px;
    box-shadow: 3px 3px 0 #000;
    padding: 8px 46px 8px 16px;
    font-size: 0.9375rem;
  }
  .m-btn-7::after {
    width: 20px;
    height: 5px;
    top: -2px;
    right: 16px;
  }
  .m-btn-7__inner {
    padding-left: 24px;
  }
  .m-btn-7__inner::before {
    top: 2px;
    width: 16px;
    height: 16px;
  }
}

/* calender module 
========================= */
/* m-cal-1 */
.m-cal-1 {
  background: #fffece;
  width: 573px;
  box-sizing: border-box;
  padding: 28px 10px 21px;
}
.m-cal-1__ttl {
  margin-bottom: 29px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.m-cal-1__ttl__txt {
  font-size: 1.1988rem;
  font-weight: 700;
}
.m-cal-1__ttl__prev__btn, .m-cal-1__ttl__next__btn {
  display: block;
  width: 50px;
  height: 50px;
  background: url("../img/cmn/cmn_arr08.png") no-repeat center center/19px auto;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  cursor: pointer;
}
.m-cal-1__ttl__prev__btn:hover, .m-cal-1__ttl__next__btn:hover {
  opacity: 0.8;
}
.m-cal-1__ttl__next__btn {
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.m-cal-1__ttl__next__btn:hover {
  opacity: 0.8;
}
.m-cal-1__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 553px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -1.26% 16px;
}
.m-cal-1__group-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 553px;
  margin: 0 -1.26% -4px;
}
.m-cal-1__txt {
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  box-sizing: border-box;
  width: 11.76%;
  margin: 0 1.26%;
}
.m-cal-1__txt-2 {
  font-size: 1.375rem;
  font-weight: 700;
  width: 11.76%;
  padding-top: 11.76%;
  margin: 0 1.26%;
  cursor: pointer;
  position: relative;
  box-sizing: border-box;
}
.m-cal-1__txt-2:hover {
  opacity: 0.8;
}
.m-cal-1__txt-2__inner {
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  box-sizing: border-box;
  position: absolute;
}
.m-cal-1__txt-2:hover, .m-cal-1__txt-2.m-cal-1__txt-2_active {
  opacity: 1;
}
.m-cal-1__txt-2:hover .m-cal-1__txt-2__inner, .m-cal-1__txt-2.m-cal-1__txt-2_active .m-cal-1__txt-2__inner {
  background: #fce44c;
  border-radius: 100%;
  border: solid 3px #000;
}
.m-cal-1__txt-2:hover {
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .m-cal-1 {
    width: auto;
    padding: 24px 16px;
  }
  .m-cal-1__ttl {
    margin-bottom: 24px;
  }
  .m-cal-1__ttl__txt {
    font-size: 1rem;
  }
  .m-cal-1__ttl__prev__btn, .m-cal-1__ttl__next__btn {
    width: 24px;
    height: 24px;
    background: url("../img/cmn/cmn_arr08.png") no-repeat center center/14px auto;
  }
  .m-cal-1__group {
    width: auto;
    margin-bottom: 0;
  }
  .m-cal-1__group-2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: auto;
    margin: 0 -1.26% -4px;
  }
  .m-cal-1__txt {
    font-size: 0.8125rem;
  }
  .m-cal-1__txt-2 {
    font-size: 0.8125rem;
  }
  .m-cal-1__txt-2:hover .m-cal-1__txt-2__inner, .m-cal-1__txt-2.m-cal-1__txt-2_active .m-cal-1__txt-2__inner {
    border-width: 2px;
  }
}

/* card module 
========================= */
/* m-card-1 */
.m-card-1 {
  display: block;
  position: relative;
}
.m-card-1:hover {
  opacity: 0.8;
}
.m-card-1__inner {
  padding: 0 10px;
}
.m-card-1__ico {
  position: absolute;
  top: -18px;
  right: -6px;
  z-index: 1;
  display: inline-block;
  background: #efd345;
  border: solid 3px #000;
  border-radius: 5px;
  font-size: 1.2038rem;
  line-height: 1.2;
  font-weight: 900;
  padding: 5px 10px;
}
.m-card-1__image {
  padding-top: 61.036%;
  position: relative;
  margin-bottom: 13px;
}
.m-card-1__image img {
  position: absolute;
  object-fit: cover;
  font-family: "object-fit: cover;";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.m-card-1__heading {
  font-size: 1.625rem;
  line-height: 1.35;
  font-weight: 900;
  margin-bottom: 13px;
}
.m-card-1__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.m-card-1__txt {
  font-size: 1rem;
  font-weight: 700;
  padding: 3px 0;
  margin-right: 30px;
}
.m-card-1__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: -2px;
}
.m-card-1__list__item {
  background: #fff;
  border: solid 2px #000;
  border-radius: 5px;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 700;
  min-width: 62px;
  box-sizing: border-box;
  text-align: center;
  padding: 2px 5px;
  margin: 2px;
}
@media screen and (max-width: 768px) {
  .m-card-1__inner {
    padding: 0;
  }
  .m-card-1__ico {
    top: -10px;
    right: -3px;
    border: solid 2px #000;
    font-size: 0.7945rem;
    padding: 2px 7px;
  }
  .m-card-1__image {
    margin-bottom: 13px;
  }
  .m-card-1__heading {
    font-size: 1.0625rem;
    line-height: 1.34;
    margin-bottom: 3px;
  }
  .m-card-1__txt {
    font-size: 0.6506rem;
    padding: 2px 0;
    margin-right: 20px;
  }
  .m-card-1__list__item {
    border: solid 1px #000;
    border-radius: 3px;
    font-size: 0.6506rem;
    min-width: 40px;
    padding: 2px 4px;
  }
}

/* m-card-2 */
.m-card-2 {
  display: block;
}
.m-card-2:hover {
  opacity: 0.8;
}
.m-card-2__inner {
  padding: 0 10px;
}
.m-card-2__image {
  padding-top: 53.406%;
  position: relative;
  margin-bottom: 13px;
}
.m-card-2__image img {
  position: absolute;
  object-fit: contain;
  font-family: "object-fit: cover;";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
}
.m-card-2__date {
  font-size: 0.875rem;
  font-weight: 700;
  color: #1d2088;
  margin-bottom: 4px;
}
.m-card-2__heading {
  font-size: 1.625rem;
  line-height: 1.35;
  font-weight: 900;
  margin-bottom: 13px;
}
.m-card-2__txt {
  font-size: 1.25rem;
  line-height: 1.48;
  margin-bottom: 23px;
}
.m-card-2__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -4px;
}
.m-card-2__list__item {
  background: #fff;
  border: solid 2px #000;
  border-radius: 5px;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 700;
  min-width: 62px;
  box-sizing: border-box;
  text-align: center;
  padding: 3px 9px;
  margin: 4px;
}
@media screen and (max-width: 768px) {
  .m-card-2__inner {
    padding: 0 5px;
  }
  .m-card-2__image {
    margin-bottom: 7px;
  }
  .m-card-2__date {
    font-size: 0.6563rem;
  }
  .m-card-2__heading {
    font-size: 1.0625rem;
    line-height: 1.34;
    margin-bottom: 6px;
  }
  .m-card-2__txt {
    font-size: 0.8125rem;
    line-height: 1.48;
    margin-bottom: 13px;
  }
  .m-card-2__list {
    margin: -3px;
  }
  .m-card-2__list__item {
    border: solid 1px #000;
    border-radius: 3px;
    font-size: 0.6497rem;
    min-width: 40px;
    padding: 3px 6px;
    margin: 3px;
  }
}

/* m-card-3 */
.m-card-3 {
  display: block;
}
.m-card-3:hover {
  opacity: 0.8;
}
.m-card-3__inner {
  padding: 0 10px;
}
.m-card-3__image {
  padding-top: 53.406%;
  position: relative;
  margin-bottom: 13px;
}
.m-card-3__image img {
  position: absolute;
  object-fit: contain;
  font-family: "object-fit: cover;";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
}
.m-card-3__date {
  font-size: 0.875rem;
  font-weight: 700;
  color: #a06709;
  margin-bottom: 4px;
}
.m-card-3__heading {
  font-size: 1.625rem;
  line-height: 1.35;
  font-weight: 900;
  margin-bottom: 13px;
}
.m-card-3__txt {
  font-size: 1rem;
  line-height: 1.48;
  font-weight: 700;
  margin-bottom: 9px;
}
.m-card-3__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.m-card-3__txt-2 {
  font-size: 1rem;
  font-weight: 700;
}
.m-card-3__cat {
  background: #fff;
  border: solid 2px #000;
  border-radius: 5px;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 700;
  min-width: 62px;
  box-sizing: border-box;
  text-align: center;
  padding: 3px 14px;
}
.m-card-3.m-card-3_color-2 .m-card-3__date {
  color: #555;
}
@media screen and (max-width: 768px) {
  .m-card-3 {
    display: block;
  }
  .m-card-3__inner {
    padding: 0 5px;
  }
  .m-card-3__image {
    margin-bottom: 10px;
  }
  .m-card-3__date {
    font-size: 0.6875rem;
  }
  .m-card-3__heading {
    font-size: 1.0625rem;
    line-height: 1.34;
    margin-bottom: 5px;
  }
  .m-card-3__txt {
    font-size: 0.7188rem;
    margin-bottom: 11px;
  }
  .m-card-3__txt-2 {
    font-size: 0.65rem;
  }
  .m-card-3__cat {
    border: solid 1px #000;
    border-radius: 3px;
    font-size: 0.65rem;
    min-width: 40px;
    padding: 2px 9px;
  }
}

/* m-card-4 */
.m-card-4 {
  display: block;
  padding: 14px 14px 20px;
  box-sizing: border-box;
  height: auto !important;
  background: #fffeec;
}
.m-card-4:hover {
  opacity: 0.8;
}
.m-card-4__image {
  padding-top: 60.221%;
  position: relative;
  margin-bottom: 17px;
}
.m-card-4__image img {
  position: absolute;
  object-fit: cover;
  font-family: "object-fit: cover;";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.m-card-4__heading {
  font-weight: 700;
  font-size: 1.4375rem;
  line-height: 1.48;
  margin-bottom: 17px;
}
.m-card-4__txt {
  font-size: 1.25rem;
  line-height: 1.48;
}
@media screen and (max-width: 768px) {
  .m-card-4 {
    padding: 14px 14px 16px;
  }
  .m-card-4__inner {
    padding: 0 8px;
  }
  .m-card-4__image {
    margin-bottom: 11px;
  }
  .m-card-4__heading {
    font-size: 0.9344rem;
    margin-bottom: 10px;
  }
  .m-card-4__txt {
    font-size: 0.8125rem;
    line-height: 1.48;
  }
}

/* m-card-5 */
.m-card-5 {
  display: block;
}
.m-card-5:hover {
  opacity: 0.8;
}
.m-card-5__inner {
  padding: 0 5px;
}
.m-card-5__image {
  padding-top: 53.406%;
  position: relative;
  margin-bottom: 13px;
}
.m-card-5__image img {
  position: absolute;
  object-fit: cover;
  font-family: "object-fit: cover;";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.m-card-5__date {
  font-size: 0.8406rem;
  font-weight: 700;
  color: #1d2088;
  margin-bottom: 4px;
}
.m-card-5__heading {
  font-size: 1.5613rem;
  line-height: 1.35;
  font-weight: 900;
  padding-bottom: 9px;
  margin-bottom: 8px;
  position: relative;
}
.m-card-5__heading::after {
  position: absolute;
  content: "";
  display: block;
  bottom: 0;
  left: -5px;
  right: -5px;
  height: 2px;
  background: #000;
}
.m-card-5__defList {
  padding: 0 11px;
  margin-bottom: 23px;
}
.m-card-5__defList__item {
  font-size: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.m-card-5__defList__item:not(:last-child) {
  margin-bottom: 5px;
}
.m-card-5__defList__item__ttl {
  padding-right: 1em;
  position: relative;
  width: 5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.m-card-5__defList__item__ttl::after {
  position: absolute;
  content: "：";
  display: block;
  top: 0;
  right: 0;
}
.m-card-5__defList__item__dtl {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: 700;
}
.m-card-5__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -4px;
}
.m-card-5__list__item {
  background: #fff;
  border: solid 2px #000;
  border-radius: 5px;
  font-size: 0.9606rem;
  line-height: 1.2;
  font-weight: 700;
  min-width: 62px;
  box-sizing: border-box;
  text-align: center;
  padding: 3px 9px;
  margin: 4px;
}
@media screen and (max-width: 768px) {
  .m-card-5__inner {
    padding: 0;
  }
  .m-card-5__image {
    margin-bottom: 10px;
  }
  .m-card-5__date {
    font-size: 0.75rem;
  }
  .m-card-5__heading {
    font-size: 1.0929rem;
    font-weight: 700;
    padding-bottom: 6px;
    margin-bottom: 6px;
    height: auto !important;
  }
  .m-card-5__heading::after {
    left: 0;
    right: 0;
    height: 1px;
  }
  .m-card-5__defList {
    padding: 0;
    margin-bottom: 16px;
  }
  .m-card-5__defList__item {
    font-size: 0.875rem;
  }
  .m-card-5__defList__item:not(:last-child) {
    margin-bottom: 3px;
  }
  .m-card-5__list {
    margin: -3px;
  }
  .m-card-5__list__item {
    border-width: 1px;
    border-radius: 3px;
    font-size: 0.6497rem;
    min-width: 40px;
    padding: 3px 6px;
    margin: 3px;
  }
}

/* m-card-6 */
.m-card-6 {
  display: block;
  position: relative;
}
.m-card-6:hover {
  opacity: 0.8;
}
.m-card-6__inner {
  padding: 0 5px;
}
.m-card-6__image {
  padding-top: 60.86%;
  position: relative;
  margin-bottom: 20px;
}
.m-card-6__image img {
  position: absolute;
  object-fit: cover;
  font-family: "object-fit: cover;";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.m-card-6__ico {
  position: absolute;
  top: -8px;
  right: -6px;
  z-index: 1;
  display: inline-block;
  background: #efd345;
  border: solid 2px #000;
  border-radius: 3px;
  font-size: 1.2038rem;
  line-height: 1.2;
  font-weight: 900;
  padding: 4px 10px;
}
.m-card-6__cat {
  font-size: 0.875rem;
  font-weight: 700;
  color: #1d2088;
  margin-bottom: 4px;
}
.m-card-6__heading {
  font-size: 1.5613rem;
  line-height: 1.35;
  min-height: 2.7em;
  font-weight: 900;
  margin-bottom: 14px;
}
.m-card-6__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -4px;
}
.m-card-6__list__item {
  background: #fff;
  border: solid 2px #000;
  border-radius: 5px;
  font-size: 0.9606rem;
  line-height: 1.2;
  font-weight: 700;
  min-width: 54px;
  box-sizing: border-box;
  text-align: center;
  padding: 3px 12px;
  margin: 4px;
}
@media screen and (max-width: 768px) {
  .m-card-6__inner {
    padding: 0;
  }
  .m-card-6__image {
    margin-bottom: 12px;
  }
  .m-card-6__ico {
    top: -10px;
    right: -3px;
    border: solid 2px #000;
    font-size: 0.7945rem;
    padding: 2px 7px;
  }
  .m-card-6__cat {
    font-size: 0.8125rem;
  }
  .m-card-6__heading {
    font-size: 1.0929rem;
    min-height: 1px;
    font-weight: 700;
    margin-bottom: 16px;
  }
  .m-card-6__list__item {
    border: solid 1px #000;
    border-radius: 3px;
    font-size: 0.6506rem;
    min-width: 40px;
    padding: 2px 4px;
  }
}

/* m-card-7 */
.m-card-7 {
  display: block;
  position: relative;
}
.m-card-7:hover {
  opacity: 0.8;
}
.m-card-7__inner {
  padding: 0 10px;
}
.m-card-7__ico {
  position: absolute;
  top: -18px;
  right: -10px;
  z-index: 1;
  display: inline-block;
  background: #efd345;
  border: solid 2px #000;
  border-radius: 3px;
  font-size: 1.2038rem;
  line-height: 1.2;
  font-weight: 900;
  padding: 4px 9px;
}
.m-card-7__image {
  padding-top: 61.036%;
  position: relative;
  margin-bottom: 15px;
}
.m-card-7__image img {
  position: absolute;
  object-fit: cover;
  font-family: "object-fit: cover;";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.m-card-7__heading {
  font-size: 1.5625rem;
  line-height: 1.4;
  font-weight: 900;
  margin-bottom: 15px;
}
.m-card-7__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.m-card-7__txt {
  font-size: 1rem;
  font-weight: 700;
  padding: 2px 0;
  margin-right: 5px;
}
.m-card-7__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: -2px;
}
.m-card-7__list__item {
  background: #fff;
  border: solid 2px #000;
  border-radius: 5px;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 700;
  min-width: 62px;
  box-sizing: border-box;
  text-align: center;
  padding: 2px 5px;
  margin: 2px;
}
@media screen and (min-width: 769px) {
  .m-card-7.m-card-7_type-2 .m-card-7__ico {
    right: 8px;
  }
}
@media screen and (max-width: 768px) {
  .m-card-7__inner {
    padding: 0;
  }
  .m-card-7__ico {
    top: -10px;
    right: -3px;
    border: solid 2px #000;
    font-size: 0.7945rem;
    padding: 2px 7px;
  }
  .m-card-7__image {
    margin-bottom: 13px;
  }
  .m-card-7__heading {
    font-size: 1.0625rem;
    line-height: 1.34;
    margin-bottom: 3px;
  }
  .m-card-7__txt {
    font-size: 0.6506rem;
    padding: 2px 0;
    margin-right: 20px;
  }
  .m-card-7__list__item {
    border: solid 1px #000;
    border-radius: 3px;
    font-size: 0.6506rem;
    min-width: 40px;
    padding: 2px 4px;
  }
  .m-card-7.m-card-7_type-2 .m-card-7__ico {
    right: 0;
  }
}

/* m-card-8 */
.m-card-8 {
  display: block;
  position: relative;
}
.m-card-8:hover {
  opacity: 0.8;
}
.m-card-8__inner {
  padding: 0 5px;
}
.m-card-8__image {
  padding-top: 53.582%;
  position: relative;
  margin-bottom: 10px;
}
.m-card-8__image img {
  position: absolute;
  object-fit: cover;
  font-family: "object-fit: cover;";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.m-card-8__date {
  font-size: 0.875rem;
  color: #1d2088;
  font-weight: 700;
  margin-bottom: 7px;
}
.m-card-8__heading {
  font-size: 1.4375rem;
  line-height: 1.27;
  font-weight: 900;
  margin-bottom: 7px;
}
.m-card-8__txt {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.m-card-8__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: -3px;
}
.m-card-8__list__item {
  background: #fff;
  border: solid 2px #000;
  border-radius: 5px;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 700;
  min-width: 62px;
  box-sizing: border-box;
  text-align: center;
  padding: 2px 7px;
  margin: 3px;
}
@media screen and (max-width: 768px) {
  .m-card-8__inner {
    padding: 0;
  }
  .m-card-8__date {
    font-size: 0.75rem;
  }
  .m-card-8__heading {
    font-size: 1.15rem;
    margin-bottom: 4px;
  }
  .m-card-8__txt {
    font-size: 0.8rem;
    margin-bottom: 4px;
  }
  .m-card-8__list {
    margin: -2px;
  }
  .m-card-8__list__item {
    border-width: 1px;
    border-radius: 3px;
    font-size: 0.8rem;
    min-width: 50px;
    padding: 2px 6px;
    margin: 2px;
  }
}

/* m-card-9 */
.m-card-9 {
  box-sizing: border-box;
  padding: 29px 17px 17px;
}
.m-card-9__heading {
  margin: 0 -10px 34px;
  text-align: center;
  font-size: 1.8125rem;
  line-height: 1.2;
  font-weight: 900;
}
.m-card-9__heading__main {
  display: inline;
  background: -webkit-linear-gradient(top, transparent 60%, #fbe54a 61%, #fbe54a 90%, transparent 91%);
  background: linear-gradient(180deg, transparent 60%, #fbe54a 61%, #fbe54a 90%, transparent 91%);
}
.m-card-9__image {
  border: solid 2px #000;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 23px;
}
.m-card-9__image img {
  width: 100%;
}
.m-card-9__txt {
  font-size: 0.8125rem;
  line-height: 1.47;
}
.m-card-9__txt-2 {
  font-size: 1.1875rem;
  line-height: 1.32;
}
@media screen and (max-width: 768px) {
  .m-card-9 {
    padding: 24px 16px;
  }
  .m-card-9__heading {
    margin: 0 0 24px;
    font-size: 1.6188rem;
    font-weight: 700;
  }
  .m-card-9__image {
    border-radius: 5px;
    margin-bottom: 16px;
  }
  .m-card-9__txt {
    font-size: 0.9375rem;
    line-height: 1.9;
  }
  .m-card-9__txt-2 {
    font-size: 0.9375rem;
    line-height: 1.9;
  }
}

/* m-card-10 */
.m-card-10 {
  display: block;
}
.m-card-10:hover {
  opacity: 0.8;
}
.m-card-10__inner {
  padding: 0 10px;
}
.m-card-10__image {
  padding-top: 53.582%;
  position: relative;
  margin-bottom: 13px;
}
.m-card-10__image img {
  position: absolute;
  object-fit: cover;
  font-family: "object-fit: cover;";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.m-card-10__date {
  font-size: 0.875rem;
  font-weight: 700;
  color: #a06709;
}
.m-card-10__cat-2 {
  font-size: 1.25rem;
  font-weight: 700;
}
.m-card-10__heading {
  font-size: 1.5625rem;
  line-height: 1.4;
  font-weight: 900;
  margin-bottom: 13px;
}
.m-card-10__txt {
  font-size: 0.9375rem;
  line-height: 1.48;
  font-weight: 700;
  margin-bottom: 9px;
}
.m-card-10__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.m-card-10__txt-2 {
  font-size: 1rem;
  font-weight: 700;
}
.m-card-10__cat {
  background: #fff;
  border: solid 2px #000;
  border-radius: 5px;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 700;
  min-width: 62px;
  box-sizing: border-box;
  text-align: center;
  padding: 3px 14px;
}
.m-card-10.m-card-10_new {
  position: relative;
}
.m-card-10.m-card-10_new::before {
  content: "NEW";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 125px;
  height: 40px;
  box-sizing: border-box;
  border: solid 3px #000;
  border-radius: 3px;
  background: #fff;
  font-weight: 800;
  font-size: 1.2038rem;
  text-align: center;
  position: absolute;
  top: -16px;
  right: -8px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .m-card-10 {
    display: block;
  }
  .m-card-10__inner {
    padding: 0 5px;
  }
  .m-card-10__image {
    margin-bottom: 10px;
  }
  .m-card-10__date {
    font-size: 0.6875rem;
  }
  .m-card-10__cat-2 {
    font-size: 0.875rem;
    margin: 3px 0;
  }
  .m-card-10__heading {
    font-size: 1.0625rem;
    line-height: 1.34;
    margin-bottom: 5px;
  }
  .m-card-10__txt {
    font-size: 0.7188rem;
    margin-bottom: 11px;
  }
  .m-card-10__txt-2 {
    font-size: 0.65rem;
  }
  .m-card-10__cat {
    border: solid 1px #000;
    border-radius: 3px;
    font-size: 0.65rem;
    min-width: 40px;
    padding: 2px 9px;
  }
  .m-card-10.m-card-10_new::before {
    width: 80px;
    height: 24px;
    border-width: 2px;
    font-size: 0.9375rem;
    font-weight: 700;
    top: -8px;
    right: -5px;
  }
}

/* m-card-11 */
.m-card-11 {
  display: block;
}
.m-card-11:hover {
  opacity: 0.8;
}
.m-card-11__inner {
  padding: 0 10px;
}
.m-card-11__image {
  padding-top: 60.745%;
  position: relative;
  margin-bottom: 15px;
}
.m-card-11__image img {
  position: absolute;
  object-fit: cover;
  font-family: "object-fit: cover;";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.m-card-11__heading {
  font-weight: 900;
  font-size: 1.5613rem;
  line-height: 1.35;
  padding-bottom: 15px;
  border-bottom: solid 2px #000;
  margin-bottom: 7px;
}
.m-card-11__defList {
  padding: 0 11px;
  margin-bottom: 23px;
}
.m-card-11__defList__item {
  font-size: 1rem;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.m-card-11__defList__item:not(:last-child) {
  margin-bottom: 5px;
}
.m-card-11__defList__item__ttl {
  padding-right: 1em;
  position: relative;
  width: 5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.m-card-11__defList__item__ttl::after {
  position: absolute;
  content: "：";
  display: block;
  top: 0;
  right: 0;
}
.m-card-11__defList__item__dtl {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 768px) {
  .m-card-11__inner {
    padding: 0;
  }
  .m-card-11__image {
    margin-bottom: 13px;
  }
  .m-card-11__heading {
    font-size: 1.249rem;
    margin-bottom: 5px;
  }
  .m-card-11__defList {
    padding: 0;
    margin-bottom: 16px;
  }
  .m-card-11__defList__item {
    font-size: 0.875rem;
  }
  .m-card-11__defList__item:not(:last-child) {
    margin-bottom: 3px;
  }
}

/* column module 
========================= */
/* m-col3-1 */
.m-col3-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.m-col3-1__col {
  width: 350px;
  margin: 50px 22px 0 0;
}
.m-col3-1__col:nth-child(-n+3) {
  margin-top: 0;
}
.m-col3-1__col:nth-child(3n) {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .m-col3-1 {
    display: block;
  }
  .m-col3-1__col {
    width: auto;
    margin: 0;
  }
  .m-col3-1__col:not(:last-child) {
    margin-bottom: 48px;
  }
}

/* m-col3-2 */
.m-col3-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.m-col3-2__col {
  width: 350px;
}
@media screen and (max-width: 768px) {
  .m-col3-2 {
    display: block;
  }
  .m-col3-2__col {
    width: auto;
  }
  .m-col3-2__col:not(:last-child) {
    margin-bottom: 32px;
  }
}

/* contact module 
========================= */
/* m-contact-1 */
.m-contact-1__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.m-contact-1__item:not(:last-child) {
  padding-bottom: 21px;
  border-bottom: solid 2px #c9c9c9;
  margin-bottom: 21px;
}
.m-contact-1__item__num {
  width: 2.5em;
  font-size: 1.1875rem;
  line-height: 1.2;
  font-weight: 700;
}
.m-contact-1__item__dtl {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.m-contact-1__item__txt {
  font-size: 1.1875rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 7px;
}
.m-contact-1__item__txt-2 {
  font-size: 1rem;
  line-height: 1.2;
  margin-bottom: 8px;
}
.m-contact-1__item__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.m-contact-1__item__tel, .m-contact-1__item__email {
  font-size: 1.24rem;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  position: relative;
}
.m-contact-1__item__tel:hover, .m-contact-1__item__email:hover {
  opacity: 0.8;
}
.m-contact-1__item__tel::before, .m-contact-1__item__email::before {
  position: absolute;
  content: "";
  display: block;
}
.m-contact-1__item__tel:not(:last-child), .m-contact-1__item__email:not(:last-child) {
  margin-right: 26px;
}
.m-contact-1__item__tel {
  padding-left: 24px;
}
.m-contact-1__item__tel::before {
  background: url("../img/cmn/cmn_ico05.svg") no-repeat 0 0/100% 100%;
  width: 18px;
  height: 16px;
  left: 0;
  top: 6px;
}
.m-contact-1__item__email {
  padding-left: 27px;
}
.m-contact-1__item__email::before {
  background: url("../img/cmn/cmn_ico04.svg") no-repeat 0 0/100% 100%;
  width: 20px;
  height: 15px;
  left: 0;
  top: 7px;
}
.m-contact-1__item__link {
  font-size: 1rem;
  color: #00f;
  text-decoration: underline;
}
.m-contact-1__item__link:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .m-contact-1__item:not(:last-child) {
    padding-bottom: 16px;
    border-bottom: solid 1px #c9c9c9;
    margin-bottom: 16px;
  }
  .m-contact-1__item__num {
    font-size: 0.9375rem;
  }
  .m-contact-1__item__txt {
    font-size: 0.9375rem;
    margin-bottom: 8px;
  }
  .m-contact-1__item__txt-2 {
    font-size: 0.875rem;
  }
  .m-contact-1__item__group {
    margin-bottom: 10px;
  }
  .m-contact-1__item__tel, .m-contact-1__item__email {
    font-size: 0.9375rem;
  }
  .m-contact-1__item__tel:not(:last-child), .m-contact-1__item__email:not(:last-child) {
    margin-right: 16px;
  }
  .m-contact-1__item__tel::before {
    top: 3px;
  }
  .m-contact-1__item__email::before {
    top: 3px;
  }
  .m-contact-1__item__link {
    font-size: 0.875rem;
    margin-top: 8px;
  }
}

/* faq module 
========================= */
/* m-faq-1 */
.m-faq-1 {
  border-top: solid 1px #bdbbaf;
}
.m-faq-1__item {
  padding: 39px 18px 40px;
  border-bottom: solid 1px #bdbbaf;
}
.m-faq-1__item__q {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  cursor: pointer;
}
.m-faq-1__item__q:hover {
  opacity: 0.8;
}
.m-faq-1__item__q__ttl {
  width: 40px;
  height: 40px;
  box-sizing: border-box;
  padding-bottom: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  font-size: 1.5625rem;
  line-height: 1;
  font-weight: 700;
  background: #000;
  border-radius: 100%;
  margin-right: 16px;
}
.m-faq-1__item__q__dtl {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1.5625rem;
  line-height: 1.4;
  font-weight: 700;
  margin-top: 2px;
}
.m-faq-1__item__a {
  padding-top: 27px;
  margin-left: 34px;
  display: none;
}
.m-faq-1__item__a__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.m-faq-1__item__a__ttl {
  width: 40px;
  height: 40px;
  box-sizing: border-box;
  padding-bottom: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  font-size: 1.5625rem;
  line-height: 1;
  font-weight: 700;
  background: #000;
  border-radius: 100%;
  margin-right: 12px;
}
.m-faq-1__item__a__dtl {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-top: 2px;
}
@media screen and (max-width: 768px) {
  .m-faq-1__item {
    padding: 24px 0;
  }
  .m-faq-1__item__q__ttl {
    width: 32px;
    height: 32px;
    padding-bottom: 4px;
    font-size: 1.0938rem;
    margin-right: 8px;
  }
  .m-faq-1__item__q__dtl {
    font-size: 1.0938rem;
    margin-top: 4px;
  }
  .m-faq-1__item__a {
    padding-top: 16px;
    margin-left: 0px;
  }
  .m-faq-1__item__a__ttl {
    width: 32px;
    height: 32px;
    padding-bottom: 2px;
    font-size: 1.0938rem;
    margin-right: 8px;
  }
}

/* form module 
========================= */
/* m-iTxt-1 */
.m-iTxt-1 {
  height: 43px;
  width: 100%;
  border: solid 3px #000;
  border-radius: 10px;
  display: block;
  box-sizing: border-box;
  padding: 0 10px;
  font-size: 1.1875rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .m-iTxt-1 {
    font-size: 1rem;
    height: 32px;
    border-width: 2px;
    border-radius: 5px;
    padding: 0 5px;
  }
}

/* m-chk-1 */
.m-chk-1 {
  display: inline-block;
}
.m-chk-1__input {
  display: none;
}
.m-chk-1__txt, .m-chk-1__txt-2 {
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 900;
  position: relative;
  padding-left: 29px;
  display: block;
}
.m-chk-1__txt::before, .m-chk-1__txt::after, .m-chk-1__txt-2::before, .m-chk-1__txt-2::after {
  position: absolute;
  content: "";
  display: block;
}
.m-chk-1__txt::before, .m-chk-1__txt-2::before {
  width: 21px;
  height: 21px;
  border-radius: 3px;
  box-sizing: border-box;
  background: #eaeaea;
  border: solid 2px #9e9e9e;
  top: 0;
  left: 0;
}
.m-chk-1__txt::after, .m-chk-1__txt-2::after {
  background: url("../img/cmn/cmn_chk01.svg") no-repeat 0 0;
  width: 19px;
  height: 15px;
  top: 3px;
  left: 1px;
  opacity: 0;
}
.m-chk-1__txt-2 {
  font-size: 1.375rem;
  line-height: 1.2;
  font-weight: 900;
}
.m-chk-1__txt-2::before {
  top: 5px;
}
.m-chk-1__txt-2::after {
  top: 8px;
}
.m-chk-1__input:checked + .m-chk-1__txt::before, .m-chk-1__input:checked + .m-chk-1__txt-2::before {
  background: #a1da07;
  border-color: #a1da07;
}
.m-chk-1__input:checked + .m-chk-1__txt::after, .m-chk-1__input:checked + .m-chk-1__txt-2::after {
  opacity: 1;
}
.m-chk-1.m-chk-1_color-2 .m-chk-1__input:checked + .m-chk-1__txt::before, .m-chk-1.m-chk-1_color-2 .m-chk-1__input:checked + .m-chk-1__txt-2::before {
  background: #1cb6c4;
  border-color: #1cb6c4;
}
.m-chk-1.m-chk-1_color-3 .m-chk-1__input:checked + .m-chk-1__txt::before, .m-chk-1.m-chk-1_color-3 .m-chk-1__input:checked + .m-chk-1__txt-2::before {
  background: #efd345;
  border-color: #efd345;
}
@media screen and (max-width: 768px) {
  .m-chk-1 {
    display: inline-block;
  }
  .m-chk-1__input {
    display: none;
  }
  .m-chk-1__txt, .m-chk-1__txt-2 {
    font-size: 0.875rem;
  }
  .m-chk-1__txt::before, .m-chk-1__txt-2::before {
    top: -1px;
  }
  .m-chk-1__txt::after, .m-chk-1__txt-2::after {
    top: 2px;
  }
  .m-chk-1__txt-2 {
    font-size: 1.125rem;
  }
  .m-chk-1__txt-2::before {
    top: 3px;
  }
  .m-chk-1__txt-2::after {
    top: 6px;
  }
}

/* m-chkList-1 */
.m-chkList-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.m-chkList-1__group + .m-chkList-1__group {
  padding-left: 20px;
  margin-left: 20px;
  position: relative;
}
.m-chkList-1__group + .m-chkList-1__group::before {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 3px;
  bottom: 0;
  background: #d2d2d2;
}
.m-chkList-1__group-2 + .m-chkList-1__group-2 {
  margin-top: 8px;
  border-top: dotted 1px #d2d2d2;
  padding-top: 8px;
}
.m-chkList-1__group-2.m-chkList-1__group-2_type-2 {
  margin-top: 40px;
}
.m-chkList-1__ttl {
  margin-bottom: 15px;
}
.m-chkList-1__listWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.m-chkList-1__listWrap .m-chkList-1__list + .m-chkList-1__list {
  margin-left: 24px;
}
.m-chkList-1__list__item:not(:last-child) {
  margin-bottom: 4px;
}
@media screen and (min-width: 769px) {
  .m-chkList-1.m-chkList-1_type-2 .m-chkList-1__group + .m-chkList-1__group {
    padding-left: 30px;
    margin-left: 30px;
  }
  .m-chkList-1.m-chkList-1_type-3 .m-chkList-1__group + .m-chkList-1__group {
    padding-left: 27px;
    margin-left: 27px;
  }
}
@media screen and (max-width: 768px) {
  .m-chkList-1 {
    display: block;
    padding-bottom: 0;
  }
  .m-chkList-1__group + .m-chkList-1__group {
    padding: 20px 0 0;
    margin: 20px 0 0;
    border-top: solid 1px #d2d2d2;
  }
  .m-chkList-1__group + .m-chkList-1__group::before {
    content: none;
  }
  .m-chkList-1__group-2 + .m-chkList-1__group-2 {
    margin-top: 20px;
    padding-top: 20px;
    border-top: solid 1px #d2d2d2;
  }
  .m-chkList-1__group-2.m-chkList-1__group-2_type-2 {
    margin-top: 0;
  }
  .m-chkList-1__ttl {
    margin-bottom: 12px;
  }
  .m-chkList-1__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: -5px -10px;
  }
  .m-chkList-1__listWrap {
    display: block;
  }
  .m-chkList-1__listWrap .m-chkList-1__list + .m-chkList-1__list {
    margin-left: -10px;
  }
  .m-chkList-1__list__item {
    margin: 5px 10px;
  }
}

/* m-chkList-2 */
.m-chkList-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.m-chkList-2__item {
  font-size: 0;
}
.m-chkList-2__item:not(:last-child) {
  margin-bottom: 6px;
}
@media screen and (min-width: 769px) {
  .m-chkList-2.m-chkList-2_type-2 {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin: -6px -10px;
  }
  .m-chkList-2.m-chkList-2_type-2 .m-chkList-2__group:not(:last-child) {
    margin-right: 20px;
  }
  .m-chkList-2.m-chkList-2_type-2 .m-chkList-2__item:not(:last-child) {
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 768px) {
  .m-chkList-2 {
    display: block;
  }
  .m-chkList-2__group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 6px;
  }
  .m-chkList-2__group:last-child {
    margin-bottom: 0;
  }
  .m-chkList-2__group:last-child .m-chkList-2__item {
    margin-bottom: 0;
  }
  .m-chkList-2__item {
    width: 50%;
    box-sizing: border-box;
    padding-right: 8px;
    margin-bottom: 6px;
  }
  .m-chkList-2.m-chkList-2_type-2 .m-chkList-2__item {
    width: auto;
    padding-right: 0;
  }
  .m-chkList-2.m-chkList-2_type-2 .m-chkList-2__item:not(:last-child) {
    margin-right: 20px;
  }
}

/* m-chkList-3 */
.m-chkList-3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -6px -10px;
}
.m-chkList-3__item {
  font-size: 0;
  margin: 6px 10px;
}
@media screen and (min-width: 769px) {
  .m-chkList-3__item.m-chkList-3__item_type-2 {
    min-width: 380px;
  }
  .m-chkList-3__item.m-chkList-3__item_type-3 {
    width: 100%;
  }
}
/* m-select-1 */
.m-select-1 {
  position: relative;
}
.m-select-1::before, .m-select-1::after {
  position: absolute;
  content: "";
  display: block;
}
.m-select-1::before {
  right: 0;
  top: 0;
  bottom: 0;
  width: 44px;
  background: #000;
  border-radius: 5px;
}
.m-select-1::after {
  width: 0;
  height: 0;
  border: solid 5px;
  right: 16px;
  top: 14px;
  border-color: #fff #fff transparent transparent;
  -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg);
}
.m-select-1__select {
  position: relative;
  z-index: 1;
  background: none;
  -webkit-appearance: none;
          appearance: none;
  height: 43px;
  width: 100%;
  border: solid 3px #000;
  border-radius: 10px;
  display: block;
  box-sizing: border-box;
  padding: 0 54px 0 10px;
  font-size: 1rem;
  font-weight: 700;
  color: inherit;
}
.m-select-1__select::-ms-expand {
  display: none;
}
.m-select-1__select:focus {
  outline: none;
}
@media screen and (max-width: 768px) {
  .m-select-1::before {
    width: 32px;
  }
  .m-select-1::after {
    border-width: 3px;
    right: 13px;
    top: 12px;
  }
  .m-select-1__select {
    height: 32px;
    border-width: 2px;
    border-radius: 5px;
    padding: 0 5px;
  }
}

/* m-submit-1 */
.m-submit-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.m-submit-1__submit, .m-submit-1__reset {
  font-size: 1.1875rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  width: 134px;
  height: 39px;
  border: solid 3px #000;
  box-sizing: border-box;
  box-shadow: 5px 5px 0 #000;
  border-radius: 10px;
  -webkit-appearance: none;
          appearance: none;
  color: inherit;
  cursor: pointer;
}
.m-submit-1__submit:hover, .m-submit-1__reset:hover {
  opacity: 0.8;
}
.m-submit-1__submit {
  background: #fce44c;
}
.m-submit-1__reset {
  background: #fff;
  margin-left: 46px;
}
@media screen and (max-width: 768px) {
  .m-submit-1 {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .m-submit-1__submit, .m-submit-1__reset {
    font-size: 0.95rem;
    width: 48%;
    height: 32px;
    border: solid 2px #000;
    box-shadow: 3px 3px 0 #000;
    border-radius: 5px;
  }
  .m-submit-1__reset {
    background: #fff;
    margin-left: 0;
  }
}

/* gruop module 
========================= */
/* m-group-1 */
.m-group-1 {
  width: 500px;
  margin: 0 auto;
}
.m-group-1__txt {
  font-size: 1.1875rem;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 5px;
}
.m-group-1__txt-2 {
  font-size: 1rem;
  line-height: 1.44;
  margin-left: 5px;
}
.m-group-1__defList {
  font-size: 1rem;
  line-height: 1.44;
  margin-left: 5px;
}
.m-group-1__defList__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.m-group-1__defList__item__ttl {
  width: 2em;
  padding-right: 1em;
  position: relative;
}
.m-group-1__defList__item__ttl::after {
  position: absolute;
  right: 0;
  content: "：";
}
.m-group-1__defList__item a {
  text-decoration: none;
  color: inherit;
}
.m-group-1__defList__item a:hover {
  opacity: 0.8;
}
.m-group-1__tel {
  font-size: 1.055rem;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
}
.m-group-1__tel a {
  font-size: 2.0544rem;
  text-decoration: none;
  color: inherit;
  margin-left: 3px;
}
.m-group-1__tel a:hover {
  opacity: 0.8;
}
.m-group-1.m-group-1_type-2 {
  text-align: center;
  width: auto;
}
.m-group-1.m-group-1_type-2 .m-group-1__inner {
  display: inline-block;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .m-group-1 {
    width: auto;
    margin: 0 auto;
  }
  .m-group-1__txt {
    font-size: 0.95rem;
    margin-bottom: 4px;
  }
  .m-group-1__defList {
    font-size: 0.8rem;
    line-height: 1.44;
    margin-left: 4px;
  }
  .m-group-1__tel {
    font-size: 0.844rem;
  }
  .m-group-1__tel a {
    font-size: 1.6435rem;
  }
}

/* m-group-2 */
.m-group-2 {
  padding: 21px 85px 33px 85px;
}
.m-group-2__chkList {
  margin-bottom: 27px;
}
@media screen and (max-width: 768px) {
  .m-group-2 {
    padding: 24px 16px;
  }
  .m-group-2__chkList {
    margin-bottom: 24px;
  }
}

/* m-group-3 */
.m-group-3 {
  padding: 21px 20px 33px 85px;
}
.m-group-3__chkList {
  margin-bottom: 27px;
}
.m-group-3__submit {
  padding-right: 65px;
}
@media screen and (max-width: 768px) {
  .m-group-3 {
    padding: 24px 16px;
  }
  .m-group-3__chkList {
    margin-bottom: 24px;
  }
  .m-group-3__submit {
    padding-right: 0;
  }
}

/* m-group-4 */
.m-group-4 {
  padding: 31px 42px 31px 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.m-group-4__iTxt {
  width: 834px;
}
@media screen and (max-width: 768px) {
  .m-group-4 {
    padding: 16px;
    display: block;
  }
  .m-group-4__iTxt {
    width: auto;
    margin-bottom: 8px;
  }
  .m-group-4__submit {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

/* m-group-5 */
.m-group-5 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.m-group-5__list {
  width: 400px;
}
@media screen and (max-width: 768px) {
  .m-group-5 {
    display: block;
  }
  .m-group-5__cal {
    margin-bottom: 16px;
  }
  .m-group-5__list {
    width: auto;
  }
}

/* m-group-6 */
.m-group-6 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.m-group-6__dtl {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.m-group-6__image {
  width: 468px;
  margin-left: 20px;
}
.m-group-6__image img {
  width: 100%;
}
.m-group-6__heading {
  line-height: 1.2;
  font-size: 1.4375rem;
  font-weight: 700;
  margin-bottom: 7px;
}
.m-group-6__heading-2 {
  line-height: 1.2;
  font-size: 1.375rem;
  font-weight: 700;
  padding-left: 1em;
  margin-bottom: 7px;
}
.m-group-6__txt {
  font-size: 1.1875rem;
  line-height: 1.32;
  padding-left: 2em;
}
@media screen and (max-width: 768px) {
  .m-group-6 {
    display: block;
  }
  .m-group-6__dtl {
    margin: 0 0 24px;
  }
  .m-group-6__image {
    width: auto;
    margin: 0;
  }
  .m-group-6__heading {
    font-size: 1.0063rem;
    margin: 0 0 5px -8px;
  }
  .m-group-6__heading-2 {
    font-size: 0.9625rem;
    padding-left: 0;
    margin-bottom: 10px;
  }
  .m-group-6__txt {
    font-size: 0.875rem;
    padding-left: 0;
  }
}

/* m-group-7 */
.m-group-7 {
  background: #fffde8;
  padding: 13px 25px;
}
.m-group-7__group + .m-group-7__group {
  margin-top: 33px;
}
.m-group-7__heading {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.m-group-7__dtl {
  padding-left: 1.5em;
}
.m-group-7__list__item {
  padding-left: 1.25em;
  position: relative;
}
.m-group-7__list__item::before {
  position: absolute;
  content: "●";
  top: 0;
  left: 0;
}
.m-group-7__inner {
  padding-left: 1em;
}
@media screen and (max-width: 768px) {
  .m-group-7 {
    padding: 10px;
  }
  .m-group-7__group + .m-group-7__group {
    margin-top: 24px;
  }
  .m-group-7__heading {
    font-size: 1rem;
    margin-bottom: 5px;
  }
  .m-group-7__dtl {
    padding-left: 0;
  }
}

/* m-group-8 */
.m-group-8 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.m-group-8__group:not(:last-child) {
  margin-bottom: 8px;
}
.m-group-8__group__inner {
  margin-left: 21px;
  font-size: 1rem;
  line-height: 1.44;
}
.m-group-8__heading {
  font-size: 1.1875rem;
  line-height: 1.9;
  font-weight: 700;
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width: 768px) {
  .m-group-8__group__inner {
    margin-left: 16px;
    font-size: 0.8rem;
  }
  .m-group-8__heading {
    font-size: 0.95rem;
    line-height: 1.3;
  }
}

/* m-group-9 */
.m-group-9 {
  display: inline-block;
  text-align: left;
}
.m-group-9__heading {
  font-size: 1.1875rem;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 5px;
}
.m-group-9__inner {
  margin-left: 5px;
}
.m-group-9__txt {
  font-size: 1rem;
  line-height: 1.44;
}
.m-group-9__tel {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-size: 0.8675rem;
}
.m-group-9__tel a {
  text-decoration: none;
  color: inherit;
}
.m-group-9__tel a:hover {
  opacity: 0.8;
}
.m-group-9__tel__num {
  font-size: 2.0544rem;
  margin-left: 3px;
}
@media screen and (max-width: 768px) {
  .m-group-9 {
    display: block;
  }
  .m-group-9__heading {
    font-size: 0.95rem;
    margin-bottom: 4px;
  }
  .m-group-9__inner {
    margin-left: 0;
  }
  .m-group-9__txt {
    font-size: 0.8rem;
  }
  .m-group-9__tel {
    font-size: 0.694rem;
  }
  .m-group-9__tel__num {
    font-size: 1.4381rem;
  }
}

/* heading module 
========================= */
/* m-heading-1 */
.m-heading-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.m-heading-1__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.m-heading-1__miyagi {
  font-size: 1.6875rem;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 700;
  margin-right: 35px;
}
.m-heading-1__miyagi img {
  width: 52px;
  vertical-align: baseline;
  margin: 0 5px -2px 0;
}
.m-heading-1__main {
  font-size: 1.6875rem;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 700;
  margin-right: 42px;
}
.m-heading-1__sub {
  font-size: 0.9375rem;
  padding: 0 12px;
  line-height: 1;
  border: solid #000;
  border-width: 0 1px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .m-heading-1 {
    display: block;
    text-align: center;
  }
  .m-heading-1__group {
    margin-bottom: -5px;
  }
  .m-heading-1__miyagi {
    font-size: 1.3103rem;
    margin-right: 25px;
  }
  .m-heading-1__miyagi img {
    width: 40px;
  }
  .m-heading-1__main {
    font-size: 1.3103rem;
    margin-right: 0;
  }
  .m-heading-1__sub {
    font-size: 0.7281rem;
    padding: 0 8px;
    display: inline-block;
  }
}

/* m-heading-2 */
.m-heading-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.m-heading-2__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.m-heading-2__miyagi {
  font-size: 2.4781rem;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 700;
  margin-right: 50px;
}
.m-heading-2__miyagi img {
  width: 76px;
  vertical-align: baseline;
  margin: 0 8px -3px 0;
}
.m-heading-2__main {
  font-size: 2.4781rem;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 700;
  margin-right: 52px;
}
.m-heading-2__sub {
  font-size: 1.375rem;
  padding: 0 18px;
  line-height: 1;
  border: solid #000;
  border-width: 0 1px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .m-heading-2 {
    display: block;
    text-align: center;
  }
  .m-heading-2__group {
    margin-bottom: -5px;
  }
  .m-heading-2__miyagi {
    font-size: 1.3103rem;
    margin-right: 25px;
  }
  .m-heading-2__miyagi img {
    width: 40px;
  }
  .m-heading-2__main {
    font-size: 1.3103rem;
    margin-right: 0;
  }
  .m-heading-2__sub {
    font-size: 0.7281rem;
    padding: 0 8px;
    display: inline-block;
  }
}

/* m-heading-3 */
.m-heading-3 {
  text-align: center;
  font-size: 2.3125rem;
  line-height: 1.2;
  font-weight: 700;
}
.m-heading-3__main {
  display: inline;
  background: -webkit-linear-gradient(top, transparent 60%, #fbe54a 61%, #fbe54a 90%, transparent 91%);
  background: linear-gradient(180deg, transparent 60%, #fbe54a 61%, #fbe54a 90%, transparent 91%);
}
.m-heading-3.m-heading-3_color-2 .m-heading-3__main {
  background: -webkit-linear-gradient(top, transparent 60%, #fff 61%, #fff 90%, transparent 91%);
  background: linear-gradient(180deg, transparent 60%, #fff 61%, #fff 90%, transparent 91%);
}
@media screen and (max-width: 768px) {
  .m-heading-3 {
    font-size: 1.6188rem;
  }
}

/* m-heading-4 */
.m-heading-4 {
  font-size: 2.5rem;
  line-height: 1.09;
  font-weight: 900;
}
@media screen and (min-width: 769px) {
  .m-heading-4.m-headig-4_type-2 {
    font-size: 2.6875rem;
  }
}
@media screen and (max-width: 768px) {
  .m-heading-4 {
    font-size: 1.625rem;
    font-weight: 700;
  }
}

/* m-heading-5 */
.m-heading-5 {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .m-heading-5 {
    font-size: 1.625rem;
  }
}

/* m-heading-6 */
.m-heading-6 {
  font-size: 1.25rem;
  line-height: 1.75;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .m-heading-6 {
    font-size: 1rem;
    font-weight: 700;
  }
}

/* m-heading-7 */
.m-heading-7 {
  font-size: 2.25rem;
  line-height: 1.3;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .m-heading-7 {
    font-size: 1.625rem;
  }
}

/* m-heading-8 */
.m-heading-8 {
  font-size: 1.5625rem;
  line-height: 1.25;
  font-weight: 700;
  background: #eee;
  padding: 3px 16px 4px;
  margin: 0 -12px;
}
@media screen and (max-width: 768px) {
  .m-heading-8 {
    font-size: 1.0938rem;
    margin: 0;
  }
}

/* m-heading-9 */
.m-heading-9 {
  font-size: 1.1875rem;
  font-weight: 700;
  padding-bottom: 3px;
  border-bottom: solid 1px #b5b5b5;
}

/* m-heading-10 */
.m-heading-10 {
  font-size: 1.0625rem;
  font-weight: 700;
}

/* m-heading-11 */
.m-heading-11 {
  font-size: 1.375rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .m-heading-11 {
    font-size: 0.9625rem;
  }
}

/* m-heading-12 */
.m-heading-12__main {
  display: inline-block;
  background: #fce44c;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.3;
  border: solid 3px #000;
  border-radius: 10px;
  padding: 4px 16px;
}
.m-heading-12.m-heading-12_color-2 .m-heading-12__main {
  background: #80bfff;
}
@media screen and (max-width: 768px) {
  .m-heading-12__main {
    font-size: 0.9625rem;
    border-width: 2px;
    border-radius: 5px;
    padding: 4px 12px;
  }
}

/* m-heading-13 */
.m-heading-13 {
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 1.3;
  background: #fff;
  text-align: center;
  border: solid 3px #000;
  border-radius: 10px;
  box-shadow: 5px 5px 0 #000;
  padding: 5px 10px;
}
@media screen and (max-width: 768px) {
  .m-heading-13 {
    font-size: 1.125rem;
    font-weight: 700;
    box-shadow: 3px 3px 0 #000;
  }
}

/* m-heading-14 */
.m-heading-14 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.m-heading-14__group {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.m-heading-14__heading {
  margin: 10px 0 0;
  display: inline-block;
}
.m-heading-14__heading__main {
  font-size: 3.1906rem;
  line-height: 1.4;
  font-weight: 800;
  background: -webkit-linear-gradient(top, transparent 80%, #d1b608 80.1%, #d1b608 100%);
  background: linear-gradient(180deg, transparent 80%, #d1b608 80.1%, #d1b608 100%);
  letter-spacing: -0.02em;
}
.m-heading-14__heading__main em {
  font-size: 4.9588rem;
  line-height: 1;
  margin-right: 5px;
}
.m-heading-14__heading__sub {
  font-size: 1.795rem;
  font-weight: 700;
  text-align: center;
  color: #818181;
}
.m-heading-14__image {
  width: 319px;
  margin: 0 0 -10px -5px;
}
.m-heading-14__image-2 {
  border-radius: 12px;
  overflow: hidden;
  width: 621px;
}
.m-heading-14__image-2 img {
  width: 100%;
}
.m-heading-14.m-heading-14_color-2 .m-heading-14__heading__main {
  background: -webkit-linear-gradient(top, transparent 80%, #e36776 80.1%, #e36776 100%);
  background: linear-gradient(180deg, transparent 80%, #e36776 80.1%, #e36776 100%);
}
.m-heading-14.m-heading-14_color-3 .m-heading-14__heading__main {
  background: -webkit-linear-gradient(top, transparent 80%, #5a9ec8 80.1%, #5a9ec8 100%);
  background: linear-gradient(180deg, transparent 80%, #5a9ec8 80.1%, #5a9ec8 100%);
}
.m-heading-14.m-heading-14_color-4 .m-heading-14__heading__main {
  background: -webkit-linear-gradient(top, transparent 80%, #98bd41 80.1%, #98bd41 100%);
  background: linear-gradient(180deg, transparent 80%, #98bd41 80.1%, #98bd41 100%);
}
@media screen and (max-width: 768px) {
  .m-heading-14 {
    display: block;
  }
  .m-heading-14__group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 16px;
  }
  .m-heading-14__heading {
    margin: 0 32px 0 0;
    display: inline-block;
  }
  .m-heading-14__heading__main {
    font-size: 1.9144rem;
    font-weight: 700;
    letter-spacing: -0.02em;
  }
  .m-heading-14__heading__main em {
    font-size: 2.4794rem;
    margin-right: 3px;
  }
  .m-heading-14__heading__sub {
    font-size: 1.2565rem;
  }
  .m-heading-14__image {
    width: auto;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .m-heading-14__image-2 {
    border-radius: 5px;
    overflow: hidden;
    width: auto;
  }
}

/* list module 
========================= */
/* m-list-1 */
.m-list-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -3px;
}
.m-list-1__item {
  font-size: 1.25rem;
  font-weight: 700;
  background: #fce44c;
  padding: 10px 30px;
  border-radius: 30px;
  margin: 3px;
}
.m-list-1.m-list-1_type-2 .m-list-1__item {
  color: #fff;
  background: #0fa546;
}
.m-list-1.m-list-1_type-2 .m-list-1__item.m-list-1__item_color-2 {
  background: #fcb407;
}
@media screen and (min-width: 769px) {
  .m-list-1.m-list-1_type-2 {
    margin: -5px -10px;
  }
  .m-list-1.m-list-1_type-2 .m-list-1__item {
    margin: 5px 10px;
    padding: 10px 20px;
    box-sizing: border-box;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .m-list-1 {
    margin: -2px;
  }
  .m-list-1__item {
    font-size: 0.875rem;
    padding: 8px 16px;
    margin: 2px;
  }
}

/* m-list-2 */
.m-list-2__item {
  text-indent: -1em;
  padding-left: 1em;
}

/* m-list-3 */
.m-list-3__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.m-list-3__item__num {
  min-width: 1em;
  text-align: right;
}
.m-list-3__item__dtl {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.m-list-3.m-list-3_type-2 .m-list-3__item__num {
  min-width: 2em;
}
.m-list-3.m-list-3_type-3 .m-list-3__item__num {
  min-width: 3em;
}

/* m-list-4 */
.m-list-4__item {
  background: #fffece;
  border-radius: 10px;
  height: 73px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  box-sizing: border-box;
  width: 100%;
  font-size: 1.1875rem;
  font-weight: 700;
  border: solid 3px transparent;
  cursor: pointer;
}
.m-list-4__item:hover {
  opacity: 0.8;
}
.m-list-4__item:not(:last-child) {
  margin-bottom: 7px;
}
.m-list-4__item__txt {
  width: 141px;
  margin-right: 25px;
  padding-left: 7px;
  text-align: right;
}
.m-list-4__item__txt-2 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-right: 10px;
}
.m-list-4__item.m-list-4__item_hidden {
  background: #ddd;
  color: #545454;
  pointer-events: none;
}
.m-list-4__item:hover, .m-list-4__item.m-list-4__item_selected {
  background: #fce44c;
  border-color: #000;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .m-list-4__item {
    border-radius: 5px;
    height: auto;
    font-size: 0.9375rem;
    padding: 16px;
    border-width: 2px;
  }
  .m-list-4__item:not(:last-child) {
    margin-bottom: 5px;
  }
  .m-list-4__item__txt {
    width: auto;
    text-align: left;
    margin-right: 16px;
    padding-left: 0;
  }
  .m-list-4__item__txt-2 {
    padding-right: 0;
  }
}

/* m-defList-1 */
.m-defList-1__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: 1.3125rem;
  font-weight: 700;
}
.m-defList-1__item:not(:last-child) {
  margin-bottom: 24px;
}
.m-defList-1__item__ttl {
  background: #fce44c;
  width: 145px;
  padding: 7px;
  border: solid 3px #000;
  border-radius: 8px;
  text-align: center;
  box-sizing: border-box;
  margin-right: 40px;
  text-align: center;
}
.m-defList-1__item__dtl {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .m-defList-1__item {
    font-size: 0.9188rem;
  }
  .m-defList-1__item:not(:last-child) {
    margin-bottom: 16px;
  }
  .m-defList-1__item__ttl {
    width: 80px;
    padding: 5px;
    border-width: 2px;
    border-radius: 5px;
    margin-right: 16px;
  }
  .m-defList-1__item__dtl {
    margin-top: 7px;
  }
}

/* m-defList-2 */
.m-defList-2__item {
  font-size: 1.1875rem;
  line-height: 1.74;
}
.m-defList-2__item:not(:last-child) {
  margin-bottom: 19px;
}
.m-defList-2__item__ttl {
  font-weight: 700;
  margin-bottom: 1px;
}
.m-defList-2__item__dtl {
  padding-left: 1em;
}
@media screen and (max-width: 768px) {
  .m-defList-2__item {
    font-size: 0.9375rem;
    line-height: 1.9;
  }
  .m-defList-2__item:not(:last-child) {
    margin-bottom: 16px;
  }
  .m-defList-2__item__ttl {
    font-weight: 700;
    margin-bottom: 0;
  }
  .m-defList-2__item__dtl {
    padding-left: 0;
  }
}

/* m-defList-3 */
.m-defList-3 {
  width: 580px;
  margin: 0 auto;
}
.m-defList-3__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #eee;
  border-radius: 10px;
  padding: 18px 47px 19px;
  font-size: 1.1875rem;
  line-height: 1.3;
  font-weight: 700;
}
.m-defList-3__item:not(:last-child) {
  position: relative;
  margin-bottom: 30px;
}
.m-defList-3__item:not(:last-child)::after {
  position: absolute;
  content: "";
  display: block;
  bottom: -23px;
  left: 0;
  right: 0;
  background: url("../img/cmn/cmn_arr05.svg") no-repeat 0 0/100% 100%;
  width: 58px;
  height: 16px;
  margin: 0 auto;
}
.m-defList-3__item__ttl {
  width: 160px;
  padding-right: 30px;
  box-sizing: border-box;
}
.m-defList-3__item__dtl {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 768px) {
  .m-defList-3 {
    width: auto;
  }
  .m-defList-3__item {
    border-radius: 5px;
    padding: 12px 16px;
    font-size: 0.95rem;
  }
  .m-defList-3__item:not(:last-child)::after {
    bottom: -23px;
    left: 0;
    right: 0;
    width: 46px;
    height: 13px;
  }
  .m-defList-3__item__ttl {
    width: 65px;
    padding-right: 16px;
  }
}

/* m-defList-4 */
.m-defList-4 {
  max-width: 690px;
  box-sizing: border-box;
  padding: 10px;
  background: #fffde8;
  font-size: 1rem;
  line-height: 1.35;
}
.m-defList-4__ttl {
  font-weight: 700;
}
.m-defList-4__list {
  margin-left: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.m-defList-4__list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.m-defList-4__list__item:not(:last-child) {
  margin-right: 1em;
}
.m-defList-4__list__item__ttl {
  font-weight: 500;
  margin-right: 1em;
}
.m-defList-4__list__item__dtl a {
  display: inline-block;
  position: relative;
  text-decoration: none;
  padding-left: 22px;
}
.m-defList-4__list__item__dtl a:hover {
  opacity: 0.8;
}
.m-defList-4__list__item__dtl a::before {
  position: absolute;
  content: "";
  background: url("../img/cmn/cmn_ico05.svg") no-repeat 0 0/100% 100%;
  width: 17px;
  height: 15px;
  left: 0;
  top: 3px;
}
@media screen and (max-width: 768px) {
  .m-defList-4 {
    max-width: none;
    padding: 10px;
    font-size: 0.875rem;
  }
  .m-defList-4__list__item__dtl a {
    padding-left: 18px;
  }
  .m-defList-4__list__item__dtl a::before {
    width: 14px;
    height: 12px;
    top: 3px;
  }
}

/* m-defList-5 */
.m-defList-5 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.m-defList-5__group:not(:last-child) {
  margin-right: 60px;
}
.m-defList-5__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.m-defList-5__item:not(:last-child) {
  margin-bottom: 20px;
}
.m-defList-5__item__ttl {
  margin-right: 32px;
}
.m-defList-5__item__ttl__inner {
  display: block;
  background: #fce44c;
  border: solid 3px #000;
  border-radius: 10px;
  font-size: 1.375rem;
  text-align: center;
  width: 130px;
  font-weight: 700;
  padding: 5px 0;
  letter-spacing: -0.1em;
}
.m-defList-5__item__dtl {
  font-size: 1.3125rem;
  font-weight: 700;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-top: 10px;
  box-sizing: border-box;
  text-align: left;
  vertical-align: middle;
}
.m-defList-5__txt {
  font-size: 0.8125rem;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .m-defList-5 {
    display: block;
  }
  .m-defList-5__group:not(:last-child) {
    margin-bottom: 10px;
  }
  .m-defList-5__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .m-defList-5__item:not(:last-child) {
    margin-bottom: 10px;
  }
  .m-defList-5__item__ttl {
    margin-right: 16px;
  }
  .m-defList-5__item__ttl__inner {
    border-width: 2px;
    border-radius: 5px;
    font-size: 1.1rem;
    width: 110px;
    font-weight: 700;
  }
  .m-defList-5__item__dtl {
    font-size: 1.05rem;
    margin-top: 8px;
  }
}

/* m-defList-6 */
.m-defList-6__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.m-defList-6__item__ttl {
  width: 2em;
  text-align: center;
  padding: 0 1em 0 1.25em;
  position: relative;
}
.m-defList-6__item__ttl::before, .m-defList-6__item__ttl::after {
  position: absolute;
}
.m-defList-6__item__ttl::before {
  content: "●";
  left: 0;
}
.m-defList-6__item__ttl::after {
  content: "：";
  right: 0;
}
.m-defList-6__item__dtl {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/* m-defList-7 */
.m-defList-7 {
  display: table;
}
.m-defList-7__item {
  display: table-row;
}
.m-defList-7__item__ttl {
  display: table-cell;
  padding-right: 3em;
}
.m-defList-7__item__dtl {
  display: table-cell;
}

/* m-defList-8 */
.m-defList-8 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.m-defList-8__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.m-defList-8__item:not(:last-child) {
  margin-bottom: 16px;
}
.m-defList-8__item__ttl {
  font-size: 1rem;
  line-height: 1.63;
  font-weight: 700;
  text-align: center;
  width: 173px;
  box-sizing: border-box;
  padding: 2px 5px;
  border: solid 3px #000;
  border-radius: 30px;
  margin-right: 34px;
}
.m-defList-8__item__dtl {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1rem;
  line-height: 1.63;
  font-weight: 700;
  margin-top: 4px;
}
.m-defList-8__item__dtl a {
  text-decoration: underline;
}
.m-defList-8__item__dtl a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .m-defList-8 {
    display: block;
  }
  .m-defList-8__item {
    display: block;
  }
  .m-defList-8__item:not(:last-child) {
    margin-bottom: 24px;
  }
  .m-defList-8__item__ttl {
    font-size: 0.875rem;
    width: auto;
    padding: 2px 5px;
    margin: 0 0 8px;
    border-width: 2px;
  }
  .m-defList-8__item__dtl {
    font-size: 0.875rem;
    margin-top: 0;
  }
}

/* link module 
========================= */
/* m-linkList-1 */
.m-linkList-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.m-linkList-1__item a {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 163px;
  height: 53px;
  background: #000;
  border-radius: 10px;
  text-align: center;
  font-weight: 900;
  font-size: 1rem;
  line-height: 1.13;
}
.m-linkList-1__item a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .m-linkList-1 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .m-linkList-1__item {
    width: 48%;
    margin: 10px 4% 0 0;
  }
  .m-linkList-1__item:nth-child(2n) {
    margin-right: 0;
  }
  .m-linkList-1__item:nth-child(-n+2) {
    margin-top: 0;
  }
  .m-linkList-1__item a {
    width: auto;
    height: 48px;
    border-radius: 5px;
    font-size: 0.875rem;
    line-height: 1.25;
  }
}

/* media module 
========================= */
/* m-media-1 */
.m-media-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.m-media-1 + .m-media-1 {
  margin-top: 64px;
}
.m-media-1__image {
  width: 300px;
  margin-right: 32px;
}
.m-media-1__image img {
  width: 100%;
}
.m-media-1__dtl {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.m-media-1__heading {
  font-size: 1.1875rem;
  line-height: 1.74;
  font-weight: 700;
  padding-bottom: 6px;
  border-bottom: solid #2dcedd 2px;
  margin: -6px 0 5px;
}
.m-media-1__heading-2 {
  line-height: 1.3;
  font-weight: 700;
  padding-bottom: 6px;
  border-bottom: solid #2dcedd 2px;
  margin: 3px 0 5px;
}
.m-media-1__heading-2__sub {
  font-size: 1rem;
  margin-bottom: 4px;
}
.m-media-1__heading-2__main {
  font-size: 1.4375rem;
}
.m-media-1__txt {
  font-size: 1rem;
  line-height: 1.75;
  margin-left: 17px;
}
@media screen and (max-width: 768px) {
  .m-media-1 {
    display: block;
  }
  .m-media-1 + .m-media-1 {
    margin-top: 48px;
  }
  .m-media-1__image {
    width: auto;
    margin: 0 0 16px;
  }
  .m-media-1__dtl {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .m-media-1__heading {
    font-size: 1rem;
    padding-bottom: 5px;
    margin: 0 0 5px;
  }
  .m-media-1__heading-2 {
    padding-bottom: 5px;
    margin: 0 0 5px;
  }
  .m-media-1__heading-2__sub {
    font-size: 0.75rem;
    margin-bottom: 3px;
  }
  .m-media-1__heading-2__main {
    font-size: 1rem;
  }
  .m-media-1__txt {
    font-size: 0.9375rem;
    margin-left: 0;
  }
}

/* m-media-2 */
.m-media-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.m-media-2 + .m-media-2 {
  margin-top: 57px;
}
.m-media-2__image {
  width: 300px;
  margin-right: 32px;
}
.m-media-2__image img {
  width: 100%;
}
.m-media-2__dtl {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.m-media-2__head {
  border-bottom: solid 2px #2dcedd;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-bottom: 5px;
  margin-bottom: 5px;
}
.m-media-2__heading {
  font-size: 1.5625rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 5px;
}
.m-media-2__areaWrap {
  margin: -4px 16px -4px -4px;
}
.m-media-2__areaWrap .m-media-2__area {
  margin: 4px;
}
.m-media-2__area {
  font-size: 1rem;
  line-height: 1;
  padding: 5px;
  font-weight: 700;
  background: #555;
  border: solid 2px #000;
  border-radius: 6px;
  display: inline-block;
  color: #fff;
  margin-right: 20px;
}
.m-media-2__area.m-media-2__area_color-1 {
  background: #e56777;
}
.m-media-2__area.m-media-2__area_color-2 {
  background: #5aa0ca;
}
.m-media-2__area.m-media-2__area_color-3 {
  background: #d3b808;
}
.m-media-2__area.m-media-2__area_color-4 {
  background: #9ac041;
}
.m-media-2__body {
  margin-left: 16px;
}
.m-media-2__foot {
  margin: 16px 0 0 16px;
}
.m-media-2__txt {
  font-size: 1rem;
  line-height: 1.75;
}
.m-media-2__txt.m-media-2__txt_link a {
  color: #00f;
  text-decoration: underline;
  word-break: break-all;
}
.m-media-2__txt.m-media-2__txt_link a:hover {
  opacity: 0.8;
}
.m-media-2__txt.m-media-2__txt_address {
  padding-left: 25px;
  position: relative;
}
.m-media-2__txt.m-media-2__txt_address::before {
  position: absolute;
  content: "";
  display: block;
  top: 5px;
  left: 3px;
  width: 12px;
  height: 18px;
  background: url("../img/cmn/cmn_ico06.svg") no-repeat 0 0/100% 100%;
}
.m-media-2__txt.m-media-2__txt_tel {
  padding-left: 25px;
  position: relative;
}
.m-media-2__txt.m-media-2__txt_tel::before {
  position: absolute;
  content: "";
  display: block;
  top: 8px;
  left: 0;
  width: 19px;
  height: 15px;
  background: url("../img/cmn/cmn_ico05.svg") no-repeat 0 0/100% 100%;
}
.m-media-2__txt.m-media-2__txt_tel a {
  text-decoration: none;
}
.m-media-2__txt.m-media-2__txt_tel a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .m-media-2 {
    display: block;
  }
  .m-media-2 + .m-media-2 {
    margin-top: 32px;
  }
  .m-media-2__image {
    width: auto;
    margin: 0 0 24px;
  }
  .m-media-2__dtl {
    min-height: 1px;
    display: block;
  }
  .m-media-2__head {
    padding-bottom: 3px;
  }
  .m-media-2__heading {
    font-size: 1.25rem;
    margin-bottom: 3px;
  }
  .m-media-2__areaWrap {
    margin: -2px;
  }
  .m-media-2__areaWrap .m-media-2__area {
    margin: 2px;
  }
  .m-media-2__area {
    font-size: 0.8125rem;
    padding: 3px 5px;
    margin-right: 0;
  }
  .m-media-2__body {
    margin-left: 0;
  }
  .m-media-2__foot {
    margin: 16px 0 0;
  }
  .m-media-2__txt {
    font-size: 0.875rem;
  }
  .m-media-2__txt.m-media-2__txt_address {
    padding-left: 20px;
  }
  .m-media-2__txt.m-media-2__txt_address::before {
    top: 6px;
    left: 3px;
    width: 10px;
    height: 14px;
  }
  .m-media-2__txt.m-media-2__txt_tel {
    padding-left: 20px;
  }
  .m-media-2__txt.m-media-2__txt_tel::before {
    top: 6px;
    width: 15px;
    height: 12px;
  }
}

/* navi module 
========================= */
/* m-pagination-1 */
.m-pagination-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.m-pagination-1__next, .m-pagination-1__prev {
  width: 31px;
  height: 31px;
  background: #eee url("../img/cmn/cmn_arr07.svg") no-repeat center center/7px auto;
  margin: 3px 5px 3px 6px;
}
.m-pagination-1__next:hover, .m-pagination-1__prev:hover {
  opacity: 0.8;
}
.m-pagination-1__num, .m-pagination-1__dot {
  width: 31px;
  height: 31px;
  background: #eee;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 0.9769rem;
  font-weight: 700;
  margin: 3px 5px 3px 6px;
}
.m-pagination-1__next {
  -webkit-transform: scale(-1, 1);
      -ms-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
@media screen and (max-width: 768px) {
  .m-pagination-1__next, .m-pagination-1__prev {
    width: 24px;
    height: 24px;
  }
  .m-pagination-1__num, .m-pagination-1__dot {
    width: 24px;
    height: 24px;
    font-size: 0.875rem;
  }
}

span.m-pagination-1__num {
  background: #fed900;
}

a.m-pagination-1__num:hover {
  opacity: 0.8;
}

/* news module 
========================= */
/* m-news-1 */
.m-news-1__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.m-news-1__item:hover {
  opacity: 0.8;
}
.m-news-1__item:not(:last-child) {
  margin-bottom: 26px;
}
.m-news-1__item__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 30px;
}
.m-news-1__item__cat {
  margin-right: 31px;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-size: 1rem;
  line-height: 1.2;
  background: #fff;
  border: solid 2px #000;
  padding: 2px 5px;
  text-align: center;
  width: 150px;
  box-sizing: border-box;
  border-radius: 5px;
}
.m-news-1__item__date {
  font-size: 0.875rem;
  line-height: 1.28;
  font-weight: 700;
  width: 93px;
}
.m-news-1__item__heading {
  font-size: 0.875rem;
  line-height: 1.28;
  font-weight: 700;
  padding-top: 4px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 768px) {
  .m-news-1__item {
    display: block;
    margin-bottom: 0;
  }
  .m-news-1__item:not(:last-child) {
    margin-bottom: 0;
  }
  .m-news-1__item:not(:first-child) {
    margin-top: 21px;
  }
  .m-news-1__item:nth-child(n+4) {
    /*display: none;*/
  }
  .m-news-1__item__group {
    margin: 0 0 6px;
  }
  .m-news-1__item__cat {
    margin-right: 12px;
    font-size: 0.65rem;
    line-height: 1.2;
    border: solid 2px #000;
    padding: 1px 3px 0;
    width: 61px;
    border-radius: 3px;
  }
  .m-news-1__item__date {
    font-size: 0.75rem;
    width: auto;
  }
  .m-news-1__item__heading {
    font-size: 0.75rem;
    padding: 0 8px;
  }
}

/* m-news-2 */
.m-news-2__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.m-news-2__item:hover {
  opacity: 0.8;
}
.m-news-2__item:not(:last-child) {
  margin-bottom: 71px;
}
.m-news-2__item__image {
  min-width: 277px;
  width: 277px;
  margin-right: 40px;
}
.m-news-2__item__image img {
  width: 100%;
}
.m-news-2__item__group {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.m-news-2__item__cat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: -4px -4px 10px -10px;
}
.m-news-2__item__cat__item {
  font-size: 1rem;
  line-height: 1;
  font-weight: 700;
  background: #fff;
  border: solid 2px #000;
  border-radius: 5px;
  text-align: center;
  padding: 4px 14px 3px;
  min-width: 95px;
  box-sizing: border-box;
  margin: 4px;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
}
.m-news-2__item__date {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 5px;
}
.m-news-2__item__heading {
  font-size: 1.4375rem;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 12px;
}
.m-news-2__item__txt {
  font-size: 1rem;
  line-height: 1.57;
}
@media screen and (max-width: 768px) {
  .m-news-2__item {
    display: block;
  }
  .m-news-2__item:not(:last-child) {
    margin-bottom: 48px;
  }
  .m-news-2__item__image {
    width: auto;
    margin: 0 0 16px;
  }
  .m-news-2__item__cat {
    margin: -4px -4px 4px;
  }
  .m-news-2__item__cat__item {
    font-size: 0.8rem;
    border-width: 2px;
    border-radius: 3px;
    padding: 2px 8px 3px;
    margin: 4px;
    min-width: 1px;
  }
  .m-news-2__item__date {
    font-size: 0.7rem;
    margin-bottom: 4px;
  }
  .m-news-2__item__heading {
    font-size: 1.15rem;
    margin-bottom: 10px;
  }
  .m-news-2__item__txt {
    font-size: 0.8rem;
  }
}

/* slider module 
========================= */
/* m-sliderNav-1 */
.m-sliderNav-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.m-sliderNav-1__pagination {
  bottom: auto;
  left: auto;
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: 12px;
}
.m-sliderNav-1__pagination .swiper-pagination-bullet {
  display: block;
  margin: 0 6px;
  opacity: 1;
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  background: none;
  position: relative;
  cursor: pointer;
}
.m-sliderNav-1__pagination .swiper-pagination-bullet:hover {
  opacity: 0.8;
}
.m-sliderNav-1__pagination .swiper-pagination-bullet::after {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background: #d8d8d8;
}
.m-sliderNav-1__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border: solid 2px #000;
  background: #fff;
}
.m-sliderNav-1__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  background: #000;
}
.m-sliderNav-1__arr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 51px;
}
.m-sliderNav-1__arr__next, .m-sliderNav-1__arr__prev {
  background: url("../img/cmn/cmn_arr04.svg") no-repeat 0 0/100% 100%;
  width: 21px;
  height: 21px;
  cursor: pointer;
}
.m-sliderNav-1__arr__next:hover, .m-sliderNav-1__arr__prev:hover {
  opacity: 0.8;
}
.m-sliderNav-1__arr__prev {
  -webkit-transform: scale(-1, 1);
      -ms-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
@media screen and (min-width: 769px) {
  .m-sliderNav-1.m-sliderNav-1_color-2 .m-sliderNav-1__pagination .swiper-pagination-bullet::after {
    background: #fff;
  }
  .m-sliderNav-1.m-sliderNav-1_color-2 .m-sliderNav-1__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
    background: #000;
  }
  .m-sliderNav-1 .m-sliderNav-1__pagination.m-sliderNav-1__pagination_type-2 {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .m-sliderNav-1 .m-sliderNav-1__pagination.m-sliderNav-1__pagination_type-2 .swiper-pagination-bullet {
    margin: 0 8px;
    width: 28px;
    height: 28px;
  }
  .m-sliderNav-1 .m-sliderNav-1__pagination.m-sliderNav-1__pagination_type-2 .swiper-pagination-bullet::after {
    width: 14px;
    height: 14px;
    border-radius: 7px;
  }
  .m-sliderNav-1 .m-sliderNav-1__pagination.m-sliderNav-1__pagination_type-2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
    border: solid 2px #000;
    background: #fff;
  }
  .m-sliderNav-1 .m-sliderNav-1__pagination.m-sliderNav-1__pagination_type-2 .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
    background: #000;
  }
}
@media screen and (max-width: 768px) {
  .m-sliderNav-1 {
    height: 37px;
    padding: 0 47px;
    position: relative;
  }
  .m-sliderNav-1__pagination {
    margin-right: 0;
  }
  .m-sliderNav-1__pagination .swiper-pagination-bullet {
    margin: 0 6px;
    width: 24px;
    height: 24px;
  }
  .m-sliderNav-1__pagination .swiper-pagination-bullet::after {
    width: 12px;
    height: 12px;
    border-radius: 6px;
  }
  .m-sliderNav-1__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    border: solid 1px #000;
  }
  .m-sliderNav-1__arr {
    display: block;
    width: auto;
  }
  .m-sliderNav-1__arr__next, .m-sliderNav-1__arr__prev {
    width: 37px;
    height: 37px;
    top: 0;
    position: absolute;
  }
  .m-sliderNav-1__arr__next {
    right: 0;
  }
  .m-sliderNav-1__arr__prev {
    left: 0;
  }
}

/* sns module 
========================= */
/* m-sns-1 */
.m-sns-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.m-sns-1__item:not(:last-child) {
  margin-right: 20px;
}
.m-sns-1__item a {
  color: #fff;
  border-radius: 3px;
  position: relative;
  height: 32px;
  min-width: 40px;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.m-sns-1__item a:hover {
  opacity: 0.8;
}
.m-sns-1__item a::before {
  /* position: absolute; */
  content: "";
  display: block;
  margin: auto;
}
.m-sns-1__item a._twi {
  background: #1da1f2;
  font-size: 1.13rem;
  padding: 0 10px 0 42px;
}
.m-sns-1__item a._twi::before {
  width: 22px;
  height: 18px;
  background: url("../img/cmn/cmn_sns03.svg") no-repeat 0 0/100% 100%;
  left: 10px;
}
.m-sns-1__item a._x_logo {
  background: #000;
  font-size: 1.13rem;
  padding: 10px;
}
.m-sns-1__item a._x_logo::before {
  width: 22px;
  height: 18px;
  background: url("../img/cmn/x_logo.svg") no-repeat 0 0/100% 100%;
  left: 10px;
}
.m-sns-1__item a._fb {
  background: #1877f2;
  font-size: 1.13rem;
  padding: 10px;
}
.m-sns-1__item a._fb::before {
  width: 10px;
  height: 19px;
  background: url("../img/cmn/cmn_sns04.svg") no-repeat 0 0/100% 100%;
  left: 10px;
}
.m-sns-1__item a._line {
  background: #31ae36;
  font-size: 1.13rem;
  padding: 10px;
}
.m-sns-1__item a._line::before {
  width: 21px;
  height: 20px;
  background: url("../img/cmn/cmn_sns05.svg") no-repeat 0 0/100% 100%;
  left: 10px;
}
@media screen and (max-width: 768px) {
  .m-sns-1 {
    margin: -5px;
  }
  .m-sns-1__item {
    margin: 5px;
  }
  .m-sns-1__item:not(:last-child) {
    margin-right: 5px;
  }
  .m-sns-1__item a {
    height: 28px;
  }
  .m-sns-1__item a._twi {
    font-size: 0.8125rem;
    padding: 0 7px 0 29px;
  }
  .m-sns-1__item a._twi::before {
    width: 15px;
    height: 13px;
    left: 7px;
  }
  .m-sns-1__item a._x_logo {
    font-size: 0.8125rem;
    padding: 5%;
    /* padding: 0 7px 0 29px; */
  }
  .m-sns-1__item a._x_logo::before {
    width: 15px;
    height: 13px;
    left: 7px;
  }
  .m-sns-1__item a._fb {
    font-size: 0.8125rem;
    padding: 5%;
    /* padding: 0 7px 0 21px; */
  }
  .m-sns-1__item a._fb::before {
    width: 7px;
    height: 13px;
    left: 7px;
  }
  .m-sns-1__item a._line {
    font-size: 0.8125rem;
    padding: 5%;
    /* padding: 0 7px 0 29px; */
  }
  .m-sns-1__item a._line::before {
    width: 15px;
    height: 14px;
    left: 7px;
  }
}

/* tab module 
========================= */
/* m-tab-1 */
.m-tab-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: solid 4px #000;
  box-sizing: border-box;
  border-radius: 12px;
  width: 779px;
  margin: 0 auto 34px;
}
.m-tab-1__item {
  width: 33.333%;
  height: 58px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.375rem;
  line-height: 1.2;
  font-weight: 900;
  box-sizing: border-box;
  cursor: pointer;
}
.m-tab-1__item:hover {
  opacity: 0.8;
}
.m-tab-1__item:last-child {
  width: 33.334%;
}
.m-tab-1__item:not(:last-child) {
  border-right: solid 2px #000;
}
.m-tab-1__item:not(:first-child) {
  border-left: solid 2px #000;
}
.m-tab-1__item:first-child {
  padding-right: 2px;
}
.m-tab-1__item:last-child {
  padding-left: 2px;
}
.m-tab-1__item.is-active {
  background: #000;
  color: #fff;
  position: relative;
}
.m-tab-1__item.is-active::after {
  position: absolute;
  content: "";
  display: block;
  bottom: -20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 31px;
  height: 27px;
  background: url("../img/cmn/cmn_arr06.svg") no-repeat 0 0/100% 100%;
}
@media screen and (max-width: 768px) {
  .m-tab-1 {
    display: block;
    border: solid 2px #000;
    border-radius: 5px;
    width: auto;
    margin-bottom: 24px;
  }
  .m-tab-1__item {
    width: auto;
    height: 40.6px;
    font-size: 0.9625rem;
  }
  .m-tab-1__item:last-child {
    width: auto;
  }
  .m-tab-1__item:not(:last-child) {
    border: solid #000;
    border-width: 0 0 2px;
  }
  .m-tab-1__item:not(:first-child) {
    border-width: 0 0 2px;
  }
  .m-tab-1__item:first-child {
    padding-right: 0;
  }
  .m-tab-1__item:last-child {
    padding-left: 0;
  }
  .m-tab-1__item.is-active::after {
    bottom: 0;
    top: 0;
    left: 16px;
    right: auto;
    margin: auto 0;
    width: 6px;
    height: 13px;
    background: url("../img/cmn/cmn_arr07_2.svg") no-repeat 0 0/100% 100%;
    -webkit-transform: scale(-1, 1);
        -ms-transform: scale(-1, 1);
            transform: scale(-1, 1);
  }
}

/* m-tabDtl-1 */
.m-tabDtl-1 {
  position: relative;
}
.m-tabDtl-1__item {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  top: 0;
  left: 0;
}
.m-tabDtl-1__item.is-active {
  opacity: 1;
  pointer-events: auto;
  position: static;
}

/* table module 
========================= */
/* m-table-1 */
.m-table-1__table {
  width: 100%;
}
.m-table-1__th, .m-table-1__td {
  border-bottom: solid 1px #dcdcdc;
  font-size: 0.9375rem;
  line-height: 1.27;
}
.m-table-1__th {
  width: 100px;
  background: #fff100;
  box-sizing: border-box;
  padding: 15px 10px 15px 20px;
  text-align: left;
  font-weight: 700;
}
.m-table-1__td {
  padding: 15px 22px;
}
.m-table-1__thead-2 .m-table-1__th, .m-table-1__thead-2 .m-table-1__td {
  padding: 8px 22px;
  font-weight: 700;
  text-align: center;
  border-bottom: solid 2px #dcdcdc;
}
.m-table-1__thead .m-table-1__th, .m-table-1__thead .m-table-1__td {
  font-weight: 700;
  background: #eee;
}
.m-table-1.m-table-1_type-2 {
  border-top: solid 1px #dcdcdc;
}
.m-table-1.m-table-1_color-2 .m-table-1__th {
  background: #e9db83;
}
.m-table-1.m-table-1_color-3 .m-table-1__th {
  background: #f2b3bb;
}
.m-table-1.m-table-1_color-4 .m-table-1__th {
  background: #accfe4;
}
.m-table-1.m-table-1_color-5 .m-table-1__th {
  background: #ccdfa0;
}
@media screen and (max-width: 768px) {
  .m-table-1 {
    overflow: auto;
  }
  .m-table-1__table {
    width: 800px;
  }
}

/* m-table-2 */
.m-table-2 colgroup col:nth-child(1) {
  width: 98px;
}
.m-table-2 colgroup col:nth-child(2) {
  width: 563px;
}
.m-table-2__table {
  width: 100%;
  font-size: 0.9375rem;
}
.m-table-2__th, .m-table-2__td, .m-table-2__td-2 {
  border-bottom: solid 1px #e5e5e5;
  box-sizing: border-box;
}
.m-table-2__th {
  text-align: center;
  vertical-align: middle;
  padding: 24px 16px;
}
.m-table-2__td {
  line-height: 1.67;
  padding: 24px 16px;
  letter-spacing: -0.02em;
}
.m-table-2__td a {
  text-decoration: underline;
}
.m-table-2__td a:hover {
  opacity: 0.8;
}
.m-table-2__td-2 {
  line-height: 1.27;
  padding: 24px 16px;
  letter-spacing: -0.02em;
}
.m-table-2__td-2 a {
  text-decoration: none;
  color: inherit;
}
.m-table-2__td-2 a:hover {
  opacity: 0.8;
}
.m-table-2__thead .m-table-2__th {
  background: #e5e5e5;
  padding: 7px 10px 6px;
}
.m-table-2__tbody .m-table-2__tr:nth-child(2n) {
  background: #f5f7e3;
}
@media screen and (max-width: 768px) {
  .m-table-2 {
    overflow: auto;
  }
  .m-table-2 colgroup col:nth-child(1) {
    width: 90px;
  }
  .m-table-2 colgroup col:nth-child(2) {
    width: 500px;
  }
  .m-table-2__table {
    width: 800px;
    font-size: 0.875rem;
  }
  .m-table-2__th {
    padding: 16px;
  }
  .m-table-2__td {
    padding: 16px;
  }
  .m-table-2__td-2 {
    padding: 16px;
  }
  .m-table-2__thead .m-table-2__th {
    padding: 7px 10px 6px;
  }
}

/* m-table-3 */
.m-table-3 {
  max-width: 889px;
  margin: 0 auto;
}
.m-table-3__table {
  width: 100%;
  border-top: solid 1px #8a8f8f;
  border-left: solid 1px #8a8f8f;
}
.m-table-3__th, .m-table-3__td {
  font-size: 1.375rem;
  line-height: 1.64;
  padding: 20px 32px;
  box-sizing: border-box;
  border-bottom: solid 1px #8a8f8f;
  border-right: solid 1px #8a8f8f;
  vertical-align: top;
  word-break: break-all;
}
.m-table-3__th a, .m-table-3__td a {
  word-break: break-all;
}
.m-table-3__th a:hover, .m-table-3__td a:hover {
  opacity: 0.8;
}
.m-table-3__th {
  text-align: center;
  background: #e5e5e5;
  width: 300px;
  border-right: none;
}
@media screen and (max-width: 768px) {
  .m-table-3__table, .m-table-3__tbody, .m-table-3__tr, .m-table-3__th, .m-table-3__td {
    display: block;
  }
  .m-table-3__th, .m-table-3__td {
    font-size: 0.9375rem;
    padding: 16px;
  }
  .m-table-3__th {
    padding: 8px 16px;
    width: auto;
    border-right: solid 1px #8a8f8f;
    border-bottom: none;
  }
}

/* m-table-4 */
.m-table-4__table {
  width: 100%;
}
.m-table-4__table colgroup col:nth-child(1) {
  width: 222px;
}
.m-table-4__table colgroup col:nth-child(2) {
  width: 502px;
}
.m-table-4__th, .m-table-4__td {
  font-size: 0.9375rem;
  line-height: 1.4;
  text-align: center;
  vertical-align: top;
}
.m-table-4__th a, .m-table-4__td a {
  text-decoration: underline;
}
.m-table-4__th a:hover, .m-table-4__td a:hover {
  opacity: 0.8;
}
.m-table-4__th {
  background: #e5e5e5;
  padding: 10px;
}
.m-table-4__td {
  padding: 19px 10px 18px;
  border-bottom: solid 1px #a6a6a6;
}
.m-table-4__link {
  display: block;
  margin: 2px 0 0 20px;
  width: 20px;
  height: 20px;
  background: url("../img/cmn/cmn_arr01.svg") no-repeat 0 0/100% 100%;
}
.m-table-4__link:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .m-table-4 {
    overflow: auto;
  }
  .m-table-4__table {
    width: 768px;
  }
  .m-table-4__table colgroup col:nth-child(1) {
    width: 178px;
  }
  .m-table-4__table colgroup col:nth-child(2) {
    width: 402px;
  }
  .m-table-4__th, .m-table-4__td {
    font-size: 0.875rem;
  }
  .m-table-4__th {
    padding: 10px 5px;
  }
  .m-table-4__td {
    padding: 19px 5px 18px;
  }
  .m-table-4__link {
    margin: 0 0 0 10px;
  }
}

/* m-table-5 */
.m-table-5__table {
  width: 100%;
}
.m-table-5__table colgroup col:nth-child(1) {
  width: 100px;
}
.m-table-5__table colgroup col:nth-child(2) {
  width: 282px;
}
.m-table-5__table colgroup col:nth-child(3) {
  width: 90px;
}
.m-table-5__table colgroup col:nth-child(4) {
  width: 240px;
}
.m-table-5__th, .m-table-5__td {
  font-size: 0.9375rem;
  line-height: 1.67;
  vertical-align: top;
}
.m-table-5__th {
  background: #e5e5e5;
  text-align: center;
  padding: 5px 10px;
}
.m-table-5__td {
  padding: 20px 10px;
  border-bottom: solid 1px #a6a6a6;
  letter-spacing: -0.02em;
}
.m-table-5__td a {
  text-decoration: underline;
}
.m-table-5__td a:hover {
  opacity: 0.8;
}
.m-table-5__td-2 {
  font-size: 0.9375rem;
  line-height: 1.34;
  letter-spacing: -0.02em;
  border-bottom: solid 1px #a6a6a6;
  vertical-align: top;
  padding: 23px 10px;
}
.m-table-5__td-2 a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .m-table-5 {
    overflow: auto;
  }
  .m-table-5__table {
    width: 768px;
  }
  .m-table-5__table colgroup col:nth-child(1) {
    width: 80px;
  }
  .m-table-5__table colgroup col:nth-child(2) {
    width: 226px;
  }
  .m-table-5__table colgroup col:nth-child(3) {
    width: 72px;
  }
  .m-table-5__table colgroup col:nth-child(4) {
    width: 192px;
  }
  .m-table-5__th, .m-table-5__td {
    font-size: 0.875rem;
  }
  .m-table-5__th {
    padding: 10px 5px;
  }
  .m-table-5__td {
    padding: 19px 5px 18px;
  }
  .m-table-5__td-2 {
    font-size: 0.875rem;
    padding: 19px 5px 18px;
    line-height: 1.67;
  }
}

/* text module 
========================= */
/* m-txt-1 */
.m-txt-1 {
  font-size: 1.1875rem;
  line-height: 1.74;
}
.m-txt-1 a {
  color: #00f;
  text-decoration: underline;
}
.m-txt-1 a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .m-txt-1 {
    font-size: 0.9375rem;
    line-height: 1.9;
  }
}

/* m-txt-2 */
.m-txt-2 {
  font-size: 1.1875rem;
  line-height: 1.9;
}
.m-txt-2 em {
  color: #e60012;
}
.m-txt-2 a {
  color: #00f;
  text-decoration: underline;
}
.m-txt-2 a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .m-txt-2 {
    font-size: 0.9375rem;
  }
}

/* m-txt-3 */
.m-txt-3 {
  font-size: 1rem;
  line-height: 1.35;
}
.m-txt-3 a {
  color: #00f;
  text-decoration: underline;
}
.m-txt-3 a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .m-txt-3 {
    font-size: 0.875rem;
  }
}

/* m-txt-4 */
.m-txt-4 {
  font-size: 1.1875rem;
  line-height: 1.69;
}
.m-txt-4 a {
  color: #00f;
  text-decoration: underline;
}
.m-txt-4 a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .m-txt-4 {
    font-size: 0.9375rem;
    line-height: 1.9;
  }
}

/* m-txt-5 */
.m-txt-5 {
  font-size: 1rem;
  line-height: 1.43;
}
.m-txt-5 a {
  color: #00f;
  text-decoration: underline;
}
.m-txt-5 a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .m-txt-5 {
    font-size: 0.875rem;
  }
}

/* m-txt-6 */
.m-txt-6 {
  font-size: 1rem;
  line-height: 1.63;
}
.m-txt-6 a {
  color: #00f;
  text-decoration: underline;
}
.m-txt-6 a:hover {
  opacity: 0.8;
}

/* m-txt-7 */
.m-txt-7 {
  font-size: 0.8125rem;
  line-height: 1.39;
}
.m-txt-7 a {
  color: #00f;
  text-decoration: underline;
}
.m-txt-7 a:hover {
  opacity: 0.8;
}

/* m-txt-8 */
.m-txt-8 {
  font-size: 0.8125rem;
  line-height: 1.54;
}
.m-txt-8 a {
  color: #00f;
  text-decoration: underline;
}
.m-txt-8 a:hover {
  opacity: 0.8;
}

/* m-txt-9 */
.m-txt-9 {
  font-size: 1.1875rem;
  line-height: 1.63;
}
.m-txt-9 a {
  color: #00f;
  text-decoration: underline;
}
.m-txt-9 a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .m-txt-9 {
    font-size: 0.9375rem;
    line-height: 1.9;
  }
}

/* m-txt-10 */
.m-txt-10 {
  font-size: 1.25rem;
  line-height: 1.48;
}
@media screen and (max-width: 768px) {
  .m-txt-10 {
    font-size: 0.9375rem;
    line-height: 1.9;
  }
}

/* m-txt-11 */
.m-txt-11 {
  font-size: 1.5625rem;
  line-height: 1.58;
  font-weight: 700;
}
.m-txt-11 em {
  color: #ffc600;
}
@media screen and (max-width: 768px) {
  .m-txt-11 {
    font-size: 1.125rem;
  }
}

/* m-txt-12 */
.m-txt-12 {
  font-size: 1rem;
  line-height: 1.75;
}
.m-txt-12 a {
  color: #00f;
  text-decoration: underline;
}
.m-txt-12 a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .m-txt-12 {
    font-size: 0.875rem;
  }
}

/* general module 
========================= */
.txtL {
  text-align: left !important;
}

.txtC {
  text-align: center !important;
}

.txtR {
  text-align: right !important;
}

.mid {
  font-weight: 500 !important;
}

.bold {
  font-weight: 700 !important;
}

.nor {
  font-weight: 400 !important;
}

.en {
  font-family: "Montserrat", "Noto Sans JP", sans-serif !important;
}

.red {
  color: #e60012 !important;
}