@charset "UTF-8";
.common_btn {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .is-pc {
    display: block !important;
  }
  .is-sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .is-pc {
    display: none !important;
  }
  .is-sp {
    display: block !important;
  }
}
.accordion {
  border-radius: 4px;
  background: #f5f5f5;
  display: flex;
  padding: 20px 60px 20px 40px;
  justify-content: flex-start;
  gap: 12px;
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 26px;
  text-align: left;
  color: #9a9a9a;
  outline: none;
  border: none;
  width: 100%;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 767px) {
  .accordion {
    padding: 15px 40px 15px 15px;
    border-radius: 2px;
    font-size: 12px;
    line-height: 20px;
  }
}
.accordion::before {
  content: "Q";
  font-family: "Futura";
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.05em;
  line-height: 26px;
  text-align: right;
  color: #90a5ba;
}
@media screen and (max-width: 767px) {
  .accordion::before {
    font-size: 20px;
  }
}

.accordion:after {
  content: "";
  background: url(../images/icon/arrow_top.png) no-repeat;
  background-size: 100%;
  width: 19px;
  height: 9px;
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  transition: all 0.35s ease;
}
@media screen and (max-width: 767px) {
  .accordion:after {
    width: 16.5px;
    height: 7.5px;
    right: 15px;
  }
}

.active:after {
  transform: translateY(-50%) rotate(180deg);
}

.panel {
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  padding: 0 30px 0 60px;
}
@media screen and (max-width: 767px) {
  .panel {
    padding: 0 5px;
  }
}
.panel p {
  position: relative;
  padding-top: 20px;
  justify-content: flex-start;
  gap: 12px;
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  font-weight: normal;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 29px;
  text-align: left;
  color: #000;
  padding-left: 30px;
}
@media screen and (max-width: 767px) {
  .panel p {
    font-size: 12px;
    line-height: 20px;
    padding-top: 10px;
    padding-left: 45px;
  }
}
.panel p::before {
  content: "A";
  font-family: "Futura";
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.05em;
  line-height: 26px;
  text-align: right;
  color: #ba9090;
  position: absolute;
  left: 0;
  top: 23px;
}
@media screen and (max-width: 767px) {
  .panel p::before {
    font-size: 20px;
    line-height: 1;
    left: 24px;
    top: 10px;
  }
}

.c-free__mv {
  width: 100%;
  height: 200px;
  position: relative;
  z-index: 4;
}
@media screen and (max-width: 767px) {
  .c-free__mv {
    height: 150px;
  }
}
.c-free__mv::before {
  content: "";
  background: url(../images/icon/free_main.png) no-repeat;
  background-size: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 155px;
  width: 180px;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .c-free__mv::before {
    width: 150px;
    height: 130px;
  }
}
.c-free__mv::after {
  content: "";
  background: #edf0f3;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.5;
}
.c-free__mv__ttl {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}
.c-free__mv__ttl .__en {
  font-family: "Futura";
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.2em;
  text-align: center;
  color: #92a8be;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .c-free__mv__ttl .__en {
    font-size: 12px;
  }
}
.c-free__mv__ttl .__jp {
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 30px;
  letter-spacing: 0.2em;
  line-height: 1.5;
  text-align: center;
  color: #151515;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .c-free__mv__ttl .__jp {
    font-size: 20px;
  }
}

.p-coordinate__detail {
  margin-top: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 20px;
  background: rgba(144, 165, 186, 0.3333333333);
}
@media screen and (max-width: 767px) {
  .p-coordinate__detail {
    margin-top: 50px;
    padding: 10px;
  }
}
.p-coordinate__detail__image {
  width: 160px;
}
@media screen and (max-width: 767px) {
  .p-coordinate__detail__image {
    margin-left: auto;
    margin-right: auto;
  }
}
.p-coordinate__detail__ctn {
  width: calc(100% - 210px);
}
@media screen and (max-width: 767px) {
  .p-coordinate__detail__ctn {
    width: 100%;
  }
}
.p-coordinate__detail__ctn .__ttl {
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 26px;
  text-align: left;
  color: #000;
}
@media screen and (max-width: 767px) {
  .p-coordinate__detail__ctn .__ttl {
    font-size: 14px;
    margin-top: 14px;
    text-align: center;
  }
}
.p-coordinate__detail__ctn .__des {
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  font-weight: normal;
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 28px;
  text-align: left;
  color: #000;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .p-coordinate__detail__ctn .__des {
    font-size: 12px;
    line-height: 20px;
    margin-top: 20px;
  }
}
.p-coordinate__gallery {
  margin-top: 85px;
}
@media screen and (max-width: 767px) {
  .p-coordinate__gallery {
    margin-top: 50px;
  }
}
.p-coordinate__gallery__ttl .__en {
  font-family: "Futura";
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.2em;
  text-align: center;
  color: #92a8be;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-coordinate__gallery__ttl .__en {
    font-size: 12px;
    line-height: 1.35;
  }
}
.p-coordinate__gallery__ttl .__jp {
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 30px;
  letter-spacing: 0.2em;
  line-height: 60px;
  text-align: center;
  color: #151515;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-coordinate__gallery__ttl .__jp {
    font-size: 22px;
    line-height: 1.5;
  }
}
.p-coordinate__gallery__items {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .p-coordinate__gallery__items {
    margin-top: 25px;
    gap: 24px;
  }
}
.p-coordinate__gallery__item {
  width: calc((100% - 40px) / 3);
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-coordinate__gallery__item {
    width: 100%;
  }
}
.p-coordinate__gallery__item::after {
  content: "";
  background: linear-gradient(rgba(255, 255, 255, 0) 0%, #909090 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 33.3333333333%;
  z-index: 8;
}
.p-coordinate__gallery__item .__des {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 8px;
  z-index: 10;
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 26px;
  text-align: left;
  color: #fff;
  text-shadow: 0px 2px 6px rgba(17, 17, 17, 0.3);
}

.p-faq__form {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.p-faq__search {
  height: 60px;
  position: relative;
  background: #F5F5F5;
  border-radius: 10px;
  text-align: center;
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  font-weight: normal;
  font-size: 16px;
  letter-spacing: 0.2em;
  text-align: center;
  color: black;
}
@media screen and (max-width: 767px) {
  .p-faq__search {
    height: 50px;
    font-size: 12px;
  }
}
.p-faq__search::-moz-placeholder {
  color: #9a9a9a;
}
.p-faq__search::placeholder {
  color: #9a9a9a;
}
.p-faq__submit {
  cursor: pointer;
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  background: none;
  background-image: url(../images/icon/search.png);
  background-size: cover;
}
.p-faq__links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .p-faq__links {
    margin-top: 24px;
    gap: 15px;
  }
}
.p-faq__link {
  width: calc((100% - 60px) / 4);
}
@media screen and (max-width: 767px) {
  .p-faq__link {
    width: calc((100% - 15px) / 2);
  }
}
.p-faq__link__ttl {
  padding: 17px;
  border-radius: 4px;
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .p-faq__link__ttl {
    border-radius: 2px;
  }
}
.p-faq__link__ttl figure img {
  width: 36px;
}
.p-faq__link__ttl .__category {
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 26px;
  text-align: center;
  color: #90a5ba;
}
.p-faq__link__des {
  margin-top: 12px;
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  font-weight: normal;
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 23px;
  text-align: left;
  color: #9a9a9a;
}
.p-faq__items {
  margin-top: 60px;
}
.p-faq__items__ttl {
  padding: 20px 30px;
  border: solid #90A5BA;
  border-width: 1px 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}
@media screen and (max-width: 767px) {
  .p-faq__items__ttl {
    padding: 15px;
  }
}
.p-faq__items__ttl figure img {
  width: 36px;
}
@media screen and (max-width: 767px) {
  .p-faq__items__ttl figure img {
    width: 18px;
  }
}
.p-faq__items__ttl p {
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 26px;
  text-align: left;
  color: #90a5ba;
}
@media screen and (max-width: 767px) {
  .p-faq__items__ttl p {
    font-size: 17px;
  }
}
.p-faq__items__ctn {
  padding-top: 8px;
}
.p-faq__items__ctn li {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .p-faq__items__ctn li {
    margin-top: 18px;
  }
}

.p-article__detail {
  margin-top: 90px;
}
@media screen and (max-width: 767px) {
  .p-article__detail {
    margin-top: 20px;
  }
}
.p-article__detail__ttl {
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 30px;
  letter-spacing: 0.2em;
  line-height: 60px;
  text-align: left;
  color: #151515;
  padding-bottom: 8px;
  border-bottom: solid 1px #D9D9D9;
}
@media screen and (max-width: 767px) {
  .p-article__detail__ttl {
    font-size: 15px;
    line-height: 2;
  }
}
.p-article__detail__thumb {
  margin-top: 28px;
}
@media screen and (max-width: 767px) {
  .p-article__detail__thumb {
    margin-top: 16px;
  }
}
.p-article__detail__info {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-article__detail__info {
    margin-top: 12px;
  }
}
.p-article__detail__info .__category {
  padding: 8px 32px;
  border-radius: 100px;
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  font-weight: normal;
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 23px;
  text-align: center;
  color: #90a5ba;
  border: solid 1px #90A5BA;
}
@media screen and (max-width: 767px) {
  .p-article__detail__info .__category {
    padding: 6px 21px;
    font-size: 10px;
    line-height: 1;
  }
}
.p-article__detail__info .__date {
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 36px;
  text-align: left;
  color: #9a9a9a;
}
@media screen and (max-width: 767px) {
  .p-article__detail__info .__date {
    font-size: 12px;
    line-height: 20px;
  }
}
.p-article__detail__des {
  margin-top: 32px;
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  font-weight: normal;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 32px;
  text-align: left;
  color: #000;
}
@media screen and (max-width: 767px) {
  .p-article__detail__des {
    margin-top: 25px;
    font-size: 14px;
    line-height: 2;
  }
}
.p-article__detail__link {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .p-article__detail__link {
    margin-top: 30px;
  }
}

.p-guide__items {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-guide__items {
    gap: 15px;
  }
}
.p-guide__item {
  width: calc((100% - 52px) / 5);
  height: 160px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  border: 1px solid #90a5ba;
  padding-top: 30px;
}
@media screen and (max-width: 767px) {
  .p-guide__item {
    width: calc((100% - 30px) / 2);
    height: 105px;
    gap: 6px;
    padding-top: 15px;
  }
}
.p-guide__item figure img {
  height: 45px;
}
@media screen and (max-width: 767px) {
  .p-guide__item figure img {
    height: 31px;
  }
}
.p-guide__item p {
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 26px;
  text-align: center;
  color: #90a5ba;
}
@media screen and (max-width: 767px) {
  .p-guide__item p {
    font-size: 12px;
    line-height: 17px;
  }
}
.p-guide__payment__ttl {
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 26px;
  text-align: left;
  color: #000;
  padding-bottom: 8px;
  border-bottom: solid 1px #D9D9D9;
}
@media screen and (max-width: 767px) {
  .p-guide__payment__ttl {
    font-size: 16px;
    line-height: 1.3;
  }
}
.p-guide__payment__ctn {
  margin-top: 32px;
  background: #F5F5F5;
  padding-top: 40px;
  padding-bottom: 150px;
}
@media screen and (max-width: 767px) {
  .p-guide__payment__ctn {
    margin-top: 20px;
    padding-top: 20px;
    padding-bottom: 75px;
  }
}
.p-guide__payment__ctn .__point {
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 26px;
  text-align: left;
  color: #000;
}
@media screen and (max-width: 767px) {
  .p-guide__payment__ctn .__point {
    font-size: 14px;
    line-height: 1.6666666667;
  }
}
.p-guide__payment__ctn__items {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .p-guide__payment__ctn__items {
    gap: 15px;
  }
}
.p-guide__payment__ctn__items li {
  width: calc((100% - 40px) / 3);
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0px 3px 13px rgba(17, 17, 17, 0.15));
}
@media screen and (max-width: 767px) {
  .p-guide__payment__ctn__items li {
    width: calc((100% - 15px) / 2);
  }
}
.p-guide__payment__ctn .__des {
  margin-top: 40px;
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  font-weight: normal;
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 32px;
  text-align: left;
  color: #000;
}
@media screen and (max-width: 767px) {
  .p-guide__payment__ctn .__des {
    margin-top: 32px;
  }
}
.p-guide__delivery__item:not(:first-child) {
  margin-top: 48px;
}
.p-guide__delivery__item .__ttl {
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 1.3;
  text-align: left;
  color: #000;
  padding-bottom: 8px;
  border-bottom: solid 1px #D9D9D9;
}
@media screen and (max-width: 767px) {
  .p-guide__delivery__item .__ttl {
    font-size: 16px;
  }
}
.p-guide__delivery__item .__des {
  margin-top: 16px;
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  font-weight: normal;
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 32px;
  text-align: left;
  color: #9a9a9a;
}
.p-guide__delivery__item figure {
  display: flex;
  justify-content: flex-start;
  margin-right: auto;
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .p-guide__delivery__item figure {
    margin-top: 20px;
  }
}
.p-guide__delivery__item figure img {
  width: 256px;
}
.p-guide__buy__items {
  width: 692px;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}
.p-guide__buy__item {
  padding-top: 40px;
}
@media screen and (max-width: 767px) {
  .p-guide__buy__item {
    padding-top: 27px;
  }
}
.p-guide__buy__item .__ttl {
  display: flex;
  justify-content: flex-start;
  gap: 15px;
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 26px;
  text-align: left;
  color: #000;
  padding-bottom: 4px;
  border-bottom: solid 1px #90A5BA;
}
@media screen and (max-width: 767px) {
  .p-guide__buy__item .__ttl {
    font-size: 16px;
    line-height: 1.4;
    gap: 8px;
  }
}
.p-guide__buy__item .__ttl span {
  font-family: "Futura";
  font-weight: 500;
  font-size: 28px;
  letter-spacing: 0.05em;
  line-height: 26px;
  text-align: left;
  color: #90a5ba;
}
@media screen and (max-width: 767px) {
  .p-guide__buy__item .__ttl span {
    font-size: 24px;
    width: -moz-max-content;
    width: max-content;
    min-width: -moz-max-content;
    min-width: max-content;
  }
}
.p-guide__buy__item .__image {
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .p-guide__buy__item .__image {
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-guide__buy__item .__image--wide {
    overflow-x: auto;
    display: block !important;
  }
  .p-guide__buy__item .__image--wide img {
    width: 180%;
    max-width: none;
  }
}
.p-guide__buy__item .__des {
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  font-weight: normal;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 26px;
  text-align: left;
  color: #000;
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .p-guide__buy__item .__des {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.4;
  }
}
.p-guide__buy__contact {
  background: #EDF0F3;
  margin-top: 80px;
  padding: 55px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .p-guide__buy__contact {
    margin-top: 50px;
    padding: 24px 0 70px;
    gap: 20px;
  }
}
.p-guide__buy__contact p {
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  font-weight: normal;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 31px;
  text-align: center;
  color: #90a5ba;
}
@media screen and (max-width: 767px) {
  .p-guide__buy__contact p {
    font-size: 14px;
    line-height: 1.8;
  }
}
.p-guide__invoice__sample .__ttl {
  margin-top: 25px;
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.625;
  text-align: center;
  color: #90a5ba;
}
@media screen and (max-width: 767px) {
  .p-guide__invoice__sample .__ttl {
    font-size: 14px;
  }
}
.p-guide__invoice__sample ul {
  margin-top: 40px;
  width: 790px;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .p-guide__invoice__sample ul {
    gap: 15px;
  }
}
.p-guide__invoice__sample ul li {
  width: calc(50% - 10px);
  background: #edf0f3;
  height: 160px;
  padding-top: 40px;
}
@media screen and (max-width: 767px) {
  .p-guide__invoice__sample ul li {
    width: calc(50% - 7.5px);
    height: 105px;
    padding-top: 25px;
  }
}
.p-guide__invoice__sample ul li figure img {
  height: 45px;
  width: auto;
}
@media screen and (max-width: 767px) {
  .p-guide__invoice__sample ul li figure img {
    height: 30px;
  }
}
.p-guide__invoice__sample ul li p {
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 26px;
  text-align: center;
  color: #90a5ba;
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .p-guide__invoice__sample ul li p {
    margin-top: 7.5px;
  }
}
.p-guide__invoice__sample ul li h5 {
  font-family: "Futura";
  font-weight: 500;
  font-size: 37px;
  letter-spacing: 0.05em;
  line-height: 60px;
  text-align: center;
  color: #90a5ba;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
}
@media screen and (max-width: 767px) {
  .p-guide__invoice__sample ul li h5 {
    height: 30px;
  }
}
.p-guide__invoice__sample ul li h5 span {
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  line-height: 60px;
}
.p-guide__invoice__sample .__subttl {
  margin-top: 28px;
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 26px;
  text-align: center;
  color: #151515;
}
@media screen and (max-width: 767px) {
  .p-guide__invoice__sample .__subttl {
    margin-top: 22px;
    line-height: 1;
  }
}
.p-guide__invoice__sample .__des {
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  font-weight: normal;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 32px;
  text-align: center;
  color: #9a9a9a;
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .p-guide__invoice__sample .__des {
    font-size: 12px;
    line-height: 2;
    text-align: left;
  }
}
.p-guide__invoice__about {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .p-guide__invoice__about {
    margin-top: 60px;
  }
}
.p-guide__invoice__about__ctn {
  margin-top: 45px;
}
@media screen and (max-width: 767px) {
  .p-guide__invoice__about__ctn {
    margin-top: 35px;
  }
}
.p-guide__invoice__about__ctn .__ttl {
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 26px;
  text-align: left;
  color: #000;
  padding-bottom: 8px;
  border-bottom: 1px solid #D9D9D9;
}
@media screen and (max-width: 767px) {
  .p-guide__invoice__about__ctn .__ttl {
    font-size: 15px;
    line-height: 2;
  }
}
.p-guide__invoice__about__ctn .__des {
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  font-weight: normal;
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 32px;
  text-align: left;
  color: #9a9a9a;
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .p-guide__invoice__about__ctn .__des {
    font-size: 12px;
    line-height: 1.8333333333;
  }
}
.p-guide__invoice__flow {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .p-guide__invoice__flow {
    margin-top: 60px;
  }
}
.p-guide__invoice__flow__steps {
  margin-top: 60px;
  position: relative;
  padding-left: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-left: 25px;
}
@media screen and (max-width: 767px) {
  .p-guide__invoice__flow__steps {
    margin-left: 20px;
  }
}
.p-guide__invoice__flow__steps::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 2px;
  background: #90A5BA;
}
.p-guide__invoice__flow__step {
  position: relative;
  display: flex;
  justify-content: flex-start;
  gap: 25px;
}
@media screen and (max-width: 767px) {
  .p-guide__invoice__flow__step {
    flex-direction: column;
    gap: 16px;
  }
}
.p-guide__invoice__flow__step::before {
  content: "";
  position: absolute;
  top: 0;
  left: -40px;
  transform: translateX(-50%);
  width: 25px;
  height: 25px;
  background: #90a5ba;
  border-radius: 100px;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .p-guide__invoice__flow__step::before {
    width: 32px;
    height: 32px;
  }
}
.p-guide__invoice__flow__step.is-active::before {
  top: 8px;
  width: 35px;
  height: 35px;
}
@media screen and (max-width: 767px) {
  .p-guide__invoice__flow__step.is-active::before {
    width: 32px;
    height: 32px;
    top: 4px;
  }
}
.p-guide__invoice__flow__step.is-active::after {
  content: "";
  position: absolute;
  top: 0;
  left: -40px;
  transform: translateX(-50%);
  width: 47px;
  height: 47px;
  background: white;
  border: 2px solid #90a5ba;
  border-radius: 100px;
  z-index: 9;
}
@media screen and (max-width: 767px) {
  .p-guide__invoice__flow__step.is-active::after {
    width: 38px;
    height: 38px;
    border: 1px solid #90a5ba;
  }
}
.p-guide__invoice__flow__step .__step {
  width: -moz-max-content;
  width: max-content;
  font-family: "Futura";
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.3em;
  line-height: 1.8;
  text-align: left;
  color: #90a5ba;
}
@media screen and (max-width: 1050px) {
  .p-guide__invoice__flow__step .__step {
    font-size: 16px;
  }
}
.p-guide__invoice__flow__step .__ctn {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .p-guide__invoice__flow__step .__ctn {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .p-guide__invoice__flow__step .__ctn figure {
    justify-content: flex-start;
  }
}
.p-guide__invoice__flow__step .__ctn figure img {
  width: 156px;
}
@media screen and (max-width: 767px) {
  .p-guide__invoice__flow__step .__ctn figure img {
    width: 100%;
  }
}
.p-guide__invoice__flow__step .__ctn .__ttl {
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 28px;
  text-align: left;
  color: #151515;
}
@media screen and (max-width: 767px) {
  .p-guide__invoice__flow__step .__ctn .__ttl {
    line-height: 1.2;
    padding-bottom: 12px;
  }
}
.p-guide__invoice__flow__step .__ctn .__des {
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 24px;
  text-align: left;
  color: #9a9a9a;
  margin-top: 10px;
}
.p-guide__exchange__ctn:not(:first-child) {
  margin-top: 48px;
}
@media screen and (max-width: 767px) {
  .p-guide__exchange__ctn:not(:first-child) {
    margin-top: 40px;
  }
}
.p-guide__exchange__ctn .__ttl {
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 26px;
  text-align: left;
  color: #000;
  padding-bottom: 8px;
  border-bottom: 1px solid #D9D9D9;
}
@media screen and (max-width: 767px) {
  .p-guide__exchange__ctn .__ttl {
    font-size: 15px;
    line-height: 2;
  }
}
.p-guide__exchange__ctn .__des {
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  font-weight: normal;
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 32px;
  text-align: left;
  color: #9a9a9a;
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .p-guide__exchange__ctn .__des {
    font-size: 12px;
    line-height: 1.8333333333;
  }
}

.p-law__ttl {
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.05em;
  line-height: 26px;
  text-align: left;
  color: #000;
  padding: 12px 24px;
  background: #edf0f3;
  margin: 80px 0 48px;
}
@media screen and (max-width: 767px) {
  .p-law__ttl {
    margin: 50px 0 30px;
    padding: 16px 12px;
    font-size: 15px;
    line-height: 24px;
  }
}
.p-law__ctn__item:not(:first-child) {
  margin-top: 48px;
}
@media screen and (max-width: 767px) {
  .p-law__ctn__item:not(:first-child) {
    margin-top: 40px;
  }
}
.p-law__ctn__item .__ttl {
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 26px;
  text-align: left;
  color: #000;
  padding-bottom: 8px;
  border-bottom: 1px solid #D9D9D9;
}
@media screen and (max-width: 767px) {
  .p-law__ctn__item .__ttl {
    font-size: 15px;
    line-height: 2;
  }
}
.p-law__ctn__item .__des {
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  font-weight: normal;
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 32px;
  text-align: left;
  color: #9a9a9a;
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .p-law__ctn__item .__des {
    font-size: 12px;
    line-height: 1.8333333333;
  }
}

.p-feature {
  margin-top: -30px;
}
@media screen and (max-width: 767px) {
  .p-feature {
    margin-top: -20px;
  }
}
.p-feature__mv {
  background-color: #A2BAC7;
}
.p-feature__mv figure {
  overflow: hidden;
}
.p-feature__mv figure img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: 100%;
}
.p-feature__mv__items {
  display: flex;
  justify-content: center;
  gap: 18px;
}
@media screen and (max-width: 767px) {
  .p-feature__mv__items {
    gap: 9px;
  }
}
.p-feature__mv p {
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.7142857143;
  text-align: left;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-feature__mv p {
    font-size: 8px;
  }
}
.p-feature__mv__01 {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 21%;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-feature__mv__01 {
    width: 40%;
    gap: 8px;
  }
  .p-feature__mv__01 figure {
    height: 75%;
    width: 100%;
  }
}
.p-feature__mv__02 {
  width: 23%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-feature__mv__02 {
    width: 22%;
    gap: 7.5px;
  }
  .p-feature__mv__02 figure {
    height: 50%;
  }
}
.p-feature__mv__03 {
  width: 40%;
  display: flex;
  gap: 30px;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-feature__mv__03 {
    gap: 11px;
    width: 37%;
  }
}
.p-feature__mv__03 svg {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .p-feature__mv__03 svg {
    height: -moz-max-content;
    height: max-content;
    margin-top: 15px;
  }
}
.p-feature__mv__03 figure {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-feature__mv__03 figure {
    height: 95%;
  }
}
.p-feature__wrap {
  padding: 50px 0 75px;
}
@media screen and (max-width: 767px) {
  .p-feature__wrap {
    padding: 20px 0 50px;
  }
}
.p-feature__wrap__02 {
  background-color: #F5F7F9;
}
.p-feature__wrap__des {
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  font-weight: normal;
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 23px;
  text-align: center;
  color: #000;
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .p-feature__wrap__des {
    font-size: 12px;
    margin-top: 16px;
  }
}
.p-feature__wrap__ctn {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 48px;
}
@media screen and (max-width: 767px) {
  .p-feature__wrap__ctn {
    margin-top: 36px;
    gap: 22px;
  }
}
.p-feature__wrap__ctn p {
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  font-weight: normal;
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 23px;
  text-align: left;
  color: #000;
}
@media screen and (max-width: 767px) {
  .p-feature__wrap__ctn p {
    font-size: 12px;
  }
}
.p-feature__wrap__items {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 90px;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-feature__wrap__items {
    gap: 15px;
    margin-top: 35px;
  }
}
.p-feature__wrap__item {
  padding: 12px 12px 30px;
  background: #EDF0F3;
  width: calc((100% - 60px) / 4);
}
@media screen and (max-width: 767px) {
  .p-feature__wrap__item {
    width: calc((100% - 15px) / 2);
    padding: 8px 8px 16px;
  }
}
.p-feature__wrap__item:hover figure img {
  transform: scale(1.06);
}
.p-feature__wrap__item figure {
  overflow: hidden;
  height: 155px;
}
@media screen and (max-width: 767px) {
  .p-feature__wrap__item figure {
    height: 105px;
  }
}
.p-feature__wrap__item figure img {
  transition: all 0.35s ease;
}
.p-feature__wrap__item .__ttl {
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.625;
  text-align: left;
  color: #90a5ba;
  padding-left: 10px;
  border-left: 2px solid #90A5BA;
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .p-feature__wrap__item .__ttl {
    font-size: 14px;
    padding-left: 8px;
  }
}
.p-feature__wrap__item .__des {
  margin-top: 8px;
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  font-weight: normal;
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 1.7692307692;
  text-align: left;
  color: #90a5ba;
}
@media screen and (max-width: 767px) {
  .p-feature__wrap__item .__des {
    font-size: 10px;
  }
}
.p-feature__wrap__item svg {
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-feature__wrap__item svg {
    margin-top: 12px;
  }
}
.p-feature__wrap__products {
  margin-top: 50px;
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-feature__wrap__products {
    margin-top: 32px;
    gap: 32px;
  }
}
.p-feature__wrap__product {
  width: calc(50% - 30px);
}
@media screen and (max-width: 767px) {
  .p-feature__wrap__product {
    width: 100%;
  }
}
.p-feature__wrap__product .__points {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  gap: 16px;
}
.p-feature__wrap__product .__point {
  width: 12px;
  height: 12px;
  position: relative;
  border-radius: 10px;
}
.p-feature__wrap__product .__point.is-active::before {
  content: "";
  width: 18px;
  height: 18px;
  background: transparent;
  border-radius: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.p-feature__wrap__product .__point:first-child {
  background: #ba90b0;
}
.p-feature__wrap__product .__point:first-child.is-active::before {
  border: solid 1px #ba90b0;
}
.p-feature__wrap__product .__point:nth-child(2) {
  background-color: #90BAA2;
}
.p-feature__wrap__product .__point:nth-child(2).is-active::before {
  border: solid 1px #90BAA2;
}
.p-feature__wrap__product .__ttl {
  margin-top: 16px;
  padding-left: 14px;
  border-left: 2px solid #90A5BA;
  font-family: "Futura";
  font-weight: 500;
  font-size: 32px;
  letter-spacing: 0.05em;
  text-align: left;
  color: #90a5ba;
}
.p-feature__wrap__product .__ttl span {
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-align: left;
  color: #90a5ba;
  margin-left: 32px;
}
@media screen and (max-width: 767px) {
  .p-feature__wrap__product .__ttl span {
    margin-left: 20px;
  }
}
.p-feature__wrap__product .__des {
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  font-weight: normal;
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 23px;
  text-align: left;
  color: #9a9a9a;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .p-feature__wrap__product .__des {
    margin-top: 12px;
  }
}
.p-feature__wrap__product .__price {
  font-family: "Futura";
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.05em;
  line-height: 26px;
  text-align: right;
  color: #000;
  margin-top: 15px;
}
.p-feature__wrap__product .__price span {
  font-size: 13px;
}
.p-feature__wrap__product .__link {
  margin-top: 28px;
  width: 280px;
  height: 60px;
  background: #fff;
  border: 1px solid #92a8be;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  font-weight: normal;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 50px;
  text-align: center;
  color: #90a5ba;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .p-feature__wrap__product .__link {
    width: 100%;
  }
}
.p-feature__wrap__product .__link::after {
  content: "";
  width: 30px;
  height: 1px;
  background-color: #90a5ba;
  position: absolute;
  top: 50%;
  right: 0;
}
.p-feature__wrap .product_slider {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .p-feature__wrap .product_slider {
    margin-top: 32px;
  }
}
.p-feature__wrap .product_slider .name {
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.625;
  text-align: left;
  color: #000;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .p-feature__wrap .product_slider .name {
    font-size: 12px;
  }
}
.p-feature__wrap .product_slider aside {
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.625;
  text-align: right;
  color: #000;
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  .p-feature__wrap .product_slider aside {
    font-size: 12px;
  }
}
.p-feature__wrap .slick-initialized .slick-slide {
  padding: 0 10px;
}

.p-merit__links {
  background-color: #F5F5F5;
  padding: 28px 42px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-merit__links {
    padding: 16px 21px;
  }
}
.p-merit__links__ttl {
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 1.3;
  text-align: left;
  color: #000;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .p-merit__links__ttl {
    font-size: 15px;
    margin-bottom: 0;
  }
}
.p-merit__link {
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 26px;
  text-align: left;
  color: #000;
  padding: 12px 0;
  border-bottom: 1px solid #D9D9D9;
}
@media screen and (max-width: 767px) {
  .p-merit__link {
    font-size: 12px;
    line-height: 20px;
    padding: 15px 0;
  }
}
.p-merit__items {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media screen and (max-width: 767px) {
  .p-merit__items {
    gap: 30px;
  }
}
.p-merit__item .__ttl {
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 30px;
  letter-spacing: 0.2em;
  line-height: 60px;
  text-align: left;
  color: #151515;
  padding-bottom: 8px;
  border-bottom: 1px solid #D9D9D9;
}
@media screen and (max-width: 767px) {
  .p-merit__item .__ttl {
    font-size: 20px;
    line-height: 1.5;
  }
}
.p-merit__item figure {
  margin-top: 28px;
}
@media screen and (max-width: 767px) {
  .p-merit__item figure {
    font-size: 16px;
  }
}
.p-merit__item .__des {
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 36px;
  text-align: left;
  color: #9a9a9a;
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .p-merit__item .__des {
    margin-top: 16px;
    font-size: 14px;
    line-height: 2;
  }
}
.p-merit .common_btn {
  margin-top: 50px;
}

.p-order .__ttl {
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 1.3;
  text-align: left;
  color: #90a5ba;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-order .__ttl {
    font-size: 18px;
  }
}
.p-order .__ttl span {
  font-family: "Futura";
  font-weight: 500;
  font-size: 32px;
  letter-spacing: 0.05em;
  text-align: center;
  color: #90a5ba;
  margin-right: 13px;
}
@media screen and (max-width: 767px) {
  .p-order .__ttl span {
    font-size: 24px;
  }
}
.p-order .__des {
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  font-weight: normal;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 32px;
  text-align: left;
  color: #000;
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .p-order .__des {
    font-size: 14px;
    line-height: 1.6;
    margin-top: 12px;
  }
}
.p-order__links {
  margin-top: 48px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-order__links {
    margin-top: 28px;
    gap: 10px;
  }
}
.p-order__link {
  width: calc((100% - 45px) / 4);
  height: 60px;
  background: #92a8be;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  font-weight: normal;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 50px;
  text-align: center;
  color: #fff;
  padding-right: 30px;
}
@media screen and (max-width: 767px) {
  .p-order__link {
    width: calc(50% - 5px);
    font-size: 12px;
    padding-right: 20px;
  }
}
.p-order__link:hover {
  color: white;
}
.p-order__link svg {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-order__link svg {
    right: 8px;
    width: 25px;
  }
}
.p-order__video {
  margin-top: 70px;
  background-color: #EDF0F3;
  padding: 28px 40px 60px;
}
@media screen and (max-width: 767px) {
  .p-order__video {
    margin-top: 50px;
    padding: 28px 20px 45px;
  }
}
.p-order__video .__video {
  margin-top: 24px;
}
.p-order__video__wrap {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media screen and (max-width: 767px) {
  .p-order__video__wrap {
    gap: 30px;
  }
}
.p-order__video__items {
  margin-top: 60px;
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-order__video__items {
    margin-top: 25px;
    gap: 19px;
  }
}
.p-order__video__item {
  width: calc(50% - 18px);
}
@media screen and (max-width: 767px) {
  .p-order__video__item {
    width: 100%;
  }
}
.p-order__video__item figure {
  margin-top: 12px;
}
@media screen and (max-width: 767px) {
  .p-order__video__item figure {
    margin-top: 7.5px;
  }
}
.p-order__method {
  border: solid 2px #EDF0F3;
  background-color: white;
  margin-top: 48px;
  padding: 28px 40px 60px;
}
@media screen and (max-width: 767px) {
  .p-order__method {
    margin-top: 50px;
    padding: 28px 20px 45px;
  }
}

.p-intro__ctn {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .p-intro__ctn {
    margin-top: 10px;
  }
}
.p-intro__ctn .__ttl {
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 1.3;
  text-align: left;
  color: #000;
}
@media screen and (max-width: 767px) {
  .p-intro__ctn .__ttl {
    font-size: 18px;
  }
}
.p-intro__ctn .__wrap {
  margin-top: 20px;
  display: flex;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  .p-intro__ctn .__wrap {
    margin-top: 16px;
  }
}
@media screen and (max-width: 767px) {
  .p-intro__ctn .__wrap {
    flex-wrap: wrap-reverse;
    gap: 0;
  }
}
.p-intro__ctn .__wrap__ctn {
  width: calc(55% - 50px);
}
@media screen and (max-width: 767px) {
  .p-intro__ctn .__wrap__ctn {
    width: 100%;
  }
}
.p-intro__ctn .__wrap__ctn .__des {
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  font-weight: normal;
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 28px;
  text-align: left;
  color: #9a9a9a;
}
@media screen and (max-width: 767px) {
  .p-intro__ctn .__wrap__ctn .__des {
    margin-top: 16px;
  }
}
.p-intro__ctn .__wrap__ctn .__categories {
  margin-top: 28px;
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  border-top: 1px solid #d9d9d9;
}
.p-intro__ctn .__wrap__ctn .__categories li {
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 1.3;
  text-align: center;
  color: #000;
}
@media screen and (max-width: 767px) {
  .p-intro__ctn .__wrap__ctn .__categories li {
    font-size: 18px;
  }
}
.p-intro__ctn .__wrap__ctn .__categories a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 1.3;
  text-align: center;
  color: #90a5ba;
  padding: 6px 12px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #90a5ba;
}
@media screen and (max-width: 767px) {
  .p-intro__ctn .__wrap__ctn .__categories a {
    font-size: 18px;
  }
}
.p-intro__ctn .__wrap figure {
  width: 55%;
}
@media screen and (max-width: 767px) {
  .p-intro__ctn .__wrap figure {
    width: 100%;
  }
}
.p-intro__category {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .p-intro__category {
    margin-top: 50px;
  }
}
.p-intro__category__items {
  margin-top: 40px;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .p-intro__category__items {
    margin-top: 25px;
    gap: 24px;
    flex-wrap: wrap;
  }
}
.p-intro__category__item {
  width: calc((100% - 40px) / 3);
}
@media screen and (max-width: 767px) {
  .p-intro__category__item {
    width: 100%;
  }
}
.p-intro__category__item .__ttl {
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 26px;
  text-align: left;
  color: #000;
  margin-top: 14px;
}
@media screen and (max-width: 767px) {
  .p-intro__category__item .__ttl {
    font-size: 14px;
    line-height: 1.6;
  }
}
.p-intro__category__item .common_btn {
  margin-top: 20px;
  max-width: 100%;
  width: 100%;
  height: 60px;
}
.p-intro__styling {
  margin-top: 80px;
  background-color: #EDF0F3;
  padding: 28px 30px;
}
@media screen and (max-width: 767px) {
  .p-intro__styling {
    margin-top: 48px;
    padding: 28px 20px 30px;
  }
}
.p-intro__styling .__ttl {
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 1.3;
  text-align: left;
  color: #151515;
}
@media screen and (max-width: 767px) {
  .p-intro__styling .__ttl {
    font-size: 18px;
  }
}
.p-intro__styling__ctn {
  margin-top: 24px;
  display: flex;
  align-items: flex-end;
  gap: 20px;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-intro__styling__ctn {
    margin-top: 16px;
    gap: 25px;
    flex-wrap: wrap;
  }
}
.p-intro__styling__ctn .__wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  width: 60%;
}
@media screen and (max-width: 767px) {
  .p-intro__styling__ctn .__wrap {
    width: 100%;
    flex-wrap: wrap;
    gap: 12px;
  }
}
@media screen and (max-width: 767px) {
  .p-intro__styling__ctn .__wrap div {
    width: 100%;
  }
}
.p-intro__styling__ctn .__wrap__ttl {
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 26px;
  text-align: left;
  color: #000;
}
.p-intro__styling__ctn .__wrap figure {
  min-width: 80px;
}
@media screen and (max-width: 767px) {
  .p-intro__styling__ctn .__wrap figure {
    margin-left: auto;
    margin-right: auto;
  }
}
.p-intro__styling__ctn .__wrap__des {
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  font-weight: normal;
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 23px;
  text-align: left;
  color: #9a9a9a;
  margin-top: 12px;
}
@media screen and (max-width: 767px) {
  .p-intro__styling__ctn .__wrap__des {
    margin-top: 8px;
  }
}
.p-intro__styling__ctn .__link {
  width: 330px;
  height: 60px;
  background: #fff;
  border: 1px solid #92a8be;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  font-weight: normal;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 50px;
  text-align: center;
  color: #90a5ba;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .p-intro__styling__ctn .__link {
    width: 100%;
  }
}
.p-intro__styling__ctn .__link::after {
  content: "";
  width: 30px;
  height: 1px;
  background-color: #90a5ba;
  position: absolute;
  top: 50%;
  right: 0;
}

.p-support__mv {
  height: 280px;
  width: 100%;
  background: url(../images/support/mv.png) no-repeat;
  background-size: cover;
  margin-top: -40px;
}
@media screen and (max-width: 767px) {
  .p-support__mv {
    margin-top: -10px;
    height: 200px;
  }
}
.p-support__mv .wrap {
  position: relative;
  height: 100%;
}
.p-support__mv__ctn {
  width: 100%;
  height: 171px;
  border-radius: 8px;
  background: #dfe5ec;
  position: absolute;
  bottom: -70px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-support__mv__ctn {
    height: 150px;
  }
}
.p-support__mv__container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding-top: 30px;
}
@media screen and (max-width: 767px) {
  .p-support__mv__container {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
  }
}
.p-support__mv__container::before {
  content: "";
  width: 370px;
  height: 200px;
  background: #dfe5ec;
  -webkit-clip-path: ellipse(50% 50% at 50% 50%);
          clip-path: ellipse(50% 50% at 50% 50%);
  z-index: 1;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -45%);
}
@media screen and (max-width: 767px) {
  .p-support__mv__container::before {
    width: 320px;
  }
}
.p-support__mv__container figure {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -60%);
  z-index: 2;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-support__mv__container figure {
    transform: translate(-50%, -70%);
  }
}
.p-support__mv__container figure img {
  width: 370px;
  height: 145px;
}
@media screen and (max-width: 767px) {
  .p-support__mv__container figure img {
    width: 323px;
    height: 113px;
  }
}
.p-support__mv__container .c-free__mv__ttl .__jp,
.p-support__mv__container .c-free__mv__ttl .__en {
  color: #90a5ba;
}
.p-support__des {
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  font-weight: normal;
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 2;
  text-align: center;
  color: #000;
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .p-support__des {
    font-size: 16px;
  }
}
.p-support__gallery {
  margin-top: 60px;
}
.p-support__coordinator {
  padding: 60px 0 80px;
  background: #EDF0F3;
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .p-support__coordinator {
    margin-top: 60px;
    padding: 40px 0;
  }
}
.p-support__coordinator__items {
  display: flex;
  flex-wrap: wrap;
  margin-top: 108px;
  gap: 80px 20px;
}
@media screen and (max-width: 767px) {
  .p-support__coordinator__items {
    gap: 45px 16px;
    margin-top: 60px;
  }
}
.p-support__coordinator__item {
  position: relative;
  width: calc((100% - 40px) / 3);
  padding: 88px 20px 40px;
  background-color: white;
}
@media screen and (max-width: 767px) {
  .p-support__coordinator__item {
    width: calc(50% - 8px);
    padding: 44px 10px 20px;
  }
}
.p-support__coordinator__item figure {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
.p-support__coordinator__item figure img {
  width: 120px;
  height: 120px;
}
@media screen and (max-width: 767px) {
  .p-support__coordinator__item figure img {
    width: 60px;
    height: 60px;
  }
}
.p-support__coordinator__item .__name {
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 1.4;
  text-align: left;
  color: #151515;
}
@media screen and (max-width: 767px) {
  .p-support__coordinator__item .__name {
    font-size: 18px;
  }
}
.p-support__coordinator__item .__kata {
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  font-weight: normal;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-align: left;
  color: #9a9a9a;
  margin-top: 12px;
}
.p-support__coordinator__item .__des {
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  font-weight: normal;
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: 28px;
  text-align: left;
  color: #9a9a9a;
  margin-top: 12px;
  padding-top: 12px;
  border-top: dashed 1px #90a5ba;
}
.p-support__coordinator__item .__link {
  margin-top: 23px;
  width: 100%;
  height: 60px;
  background: #fff;
  border: 1px solid #92a8be;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  font-weight: normal;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 50px;
  text-align: center;
  color: #90a5ba;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .p-support__coordinator__item .__link {
    width: 100%;
  }
}
.p-support__coordinator__item .__link::after {
  content: "";
  width: 30px;
  height: 1px;
  background-color: #90a5ba;
  position: absolute;
  top: 50%;
  right: 0;
}
.p-support__flow {
  background-color: #F5F5F5;
  padding: 60px 0 80px;
  margin-bottom: -120px;
}
@media screen and (max-width: 767px) {
  .p-support__flow {
    padding: 30px 0 60px;
    margin-bottom: -60px;
  }
}
.p-support__flow__items {
  margin-top: 48px;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .p-support__flow__items {
    overflow-x: auto;
  }
}
.p-support__flow__item {
  width: calc((100% - 40px) / 3);
  background: white;
}
@media screen and (max-width: 767px) {
  .p-support__flow__item {
    width: 60%;
    min-width: 60%;
  }
}
.p-support__flow__item figure {
  overflow: hidden;
}
.p-support__flow__item figure img {
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.35s ease;
}
.p-support__flow__item:hover figure img {
  transform: scale(1.08);
}
.p-support__flow__item .__ctn {
  padding: 20px 20px 40px;
}
.p-support__flow__item .__ctn .__step {
  font-family: "Futura";
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.05em;
  line-height: 1.4;
  text-align: left;
  color: #151515;
}
@media screen and (max-width: 767px) {
  .p-support__flow__item .__ctn .__step {
    font-size: 20px;
  }
}
.p-support__flow__item .__ctn .__des {
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  font-weight: normal;
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: 28px;
  text-align: left;
  color: #9a9a9a;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed #90A5BA;
}
.p-support__flow__links {
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .p-support__flow__links {
    margin-top: 30px;
    gap: 15px;
    flex-wrap: wrap;
  }
}
.p-support__flow__links .__line {
  width: 280px;
  height: 60px;
  background: #06c755;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .p-support__flow__links .__line {
    width: 100%;
    height: 72px;
    gap: 12px;
  }
}
.p-support__flow__links .__line figure img {
  width: 31px;
  height: 31px;
}
@media screen and (max-width: 767px) {
  .p-support__flow__links .__line figure img {
    width: 35px;
    height: 35px;
  }
}
.p-support__flow__links .__line p {
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  font-weight: normal;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.4;
  text-align: center;
  color: #fff;
}
.p-support__flow__links .__qr {
  width: 280px;
  height: 104px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 12px 10px;
}
@media screen and (max-width: 767px) {
  .p-support__flow__links .__qr {
    width: 100%;
    height: 108px;
    padding: 14px;
    justify-content: flex-start;
    gap: 20px;
  }
}
.p-support__flow__links .__qr figure {
  padding-right: 12px;
  border-right: 1px solid #d9d9d9;
}
@media screen and (max-width: 767px) {
  .p-support__flow__links .__qr figure {
    padding-right: 20px;
  }
}
.p-support__flow__links .__qr figure img {
  width: 80px;
  height: 80px;
}
.p-support__flow__links .__qr p {
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.05em;
  line-height: 183px;
  text-align: left;
  color: #000;
}

.p-news__list__items {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-news__list__items {
    gap: 25px;
  }
}
.p-news__list__item {
  padding: 28px 36px;
  background-color: #EDF0F3;
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .p-news__list__item {
    padding: 15px;
    gap: 12px;
    flex-wrap: wrap;
  }
}
.p-news__list__item figure {
  width: 237px;
  height: 116px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-news__list__item figure {
    width: 100%;
    height: 150px;
  }
}
.p-news__list__item figure img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
  transition: all 0.35s ease;
}
.p-news__list__item:hover figure img {
  transform: scale(1.08);
}
.p-news__list__item .__ctn {
  width: calc(100% - 237px - 24px);
}
@media screen and (max-width: 767px) {
  .p-news__list__item .__ctn {
    width: 100%;
  }
}
.p-news__list__item .__ctn .__ttl {
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  font-weight: normal;
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 26px;
  text-align: left;
  color: #000;
}
@media screen and (max-width: 767px) {
  .p-news__list__item .__ctn .__ttl {
    font-size: 15px;
    line-height: 21px;
  }
}
.p-news__list__item .__ctn .__cat {
  padding: 8px 32px;
  border-radius: 100px;
  margin-top: 16px;
  border: solid 1px #90A5BA;
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  font-weight: normal;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-align: center;
  color: #90a5ba;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 767px) {
  .p-news__list__item .__ctn .__cat {
    padding: 6px 20px;
    font-size: 10px;
  }
}
.p-news__list__item .__ctn .__date {
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.2em;
  line-height: 26px;
  text-align: left;
  color: #9a9a9a;
  margin-top: 12px;
}
@media screen and (max-width: 767px) {
  .p-news__list__item .__ctn .__date {
    font-size: 12px;
    line-height: 20px;
  }
}
.p-news__list__pagination {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .p-news__list__pagination {
    margin-top: 30px;
  }
}
.p-news__list__pagination .__page {
  width: 35px;
  height: 35px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  font-weight: normal;
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 23px;
  text-align: center;
  color: #000;
}
@media screen and (max-width: 767px) {
  .p-news__list__pagination .__page {
    width: 32px;
    height: 32px;
  }
}
.p-news__list__pagination .__page.is-current {
  background-color: #90A5BA;
  color: white;
}
.p-news__list__pagination .__quote {
  padding: 0 4px;
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
  font-weight: normal;
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 23px;
  text-align: center;
  color: #000;
}
.p-news__list__pagination .__prev,
.p-news__list__pagination .__next {
  width: 35px;
  height: 35px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-news__list__pagination .__prev,
  .p-news__list__pagination .__next {
    width: 32px;
    height: 32px;
  }
}

header.globalmenu .main_header .logo {
  width: 160px;
}
@media screen and (max-width: 767px) {
  header.globalmenu .main_header .logo {
    width: 105px;
  }
}/*# sourceMappingURL=custom.css.map */