@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
/* タッチデバイス用の設定を追加 */
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

/* ページ全体のタッチ操作を改善 */
.wrapper {
  min-height: 100vh;
  touch-action: pan-y; /* 縦スクロールのみ許可 */
}

body {
  font-family: "Hiragino Kaku Gothic Pro", "Meiryo UI", "Hiragino Sans", "Yu Gothic UI", "MS PGothic", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  color: #111111;
  line-height: 1.4;
  min-width: 1200px;
  position: relative;
  margin-inline: auto;
  -webkit-overflow-scrolling: touch;
  background-color: #f5f5f5;
}
body.show {
  overflow: hidden;
}
@media (width < 1440px) {
  body {
    background-position: top left;
    background-size: auto !important;
    background-repeat: repeat-x !important;
  }
}
@media (width < 768px) {
  body {
    min-width: 100%;
    padding-top: 56px;
  }
}

a {
  text-decoration: none;
  transition: all 0.5s ease;
}
a:hover {
  opacity: 0.5;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

img {
  width: 100%;
  height: auto;
}

.onlyPC {
  display: block !important;
}

.onlySP {
  display: none !important;
}

@media (width < 768px) {
  .onlyPC {
    display: none !important;
  }
  .onlySP {
    display: block !important;
  }
}
.section {
  margin-top: 100px;
}
.section__headline {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.25;
  color: #354556;
}
@media (width < 768px) {
  .section__headline {
    font-size: 22px;
  }
}

.notice__item {
  font-size: 14px;
  color: #707070;
  line-height: 1.86;
}
.notice__item-link {
  color: #0077a5;
  text-decoration: underline;
}

.anchor__target-wrap {
  position: relative;
}
.anchor__target {
  position: absolute;
  top: 0;
  left: 0;
}

.btn {
  display: block;
  margin-top: 40px;
  width: 100%;
  max-width: 320px;
  height: 49px;
  margin-inline: auto;
  color: #fff;
  border-radius: 38px;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  align-content: center;
  background: #f56f15 url("../img/common/icon_arrow_right_white.svg") no-repeat right 22px center/18px;
}
.btn:hover {
  opacity: 1;
}
.btn--contents {
  border: 1px solid #f56f15;
  background-color: #f56f15;
  background-image: url("../img/common/icon_arrow_right_white.svg");
}
.btn--contents:hover {
  opacity: 1;
  background-color: #fff;
  background-image: url("../img/common/icon_arrow_right_orange.svg");
  color: #f56f15;
}
.btn--plan, .btn--bottom {
  border: 1px solid #6c7883;
  background-color: #6c7883;
  background-image: url("../img/common/icon_arrow_right_white.svg");
}
.btn--plan:hover, .btn--bottom:hover {
  opacity: 1;
  background-color: #fff;
  background-image: url("../img/common/icon_arrow_right_gray.svg");
  color: #6c7883;
}
.btn--bottom {
  max-width: 270px;
}
@media (width < 768px) {
  .btn {
    max-width: 343px;
  }
  .btn--plan {
    margin-top: 36px;
  }
  .btn--bottom {
    max-width: 270px;
  }
}

.nav-bottom {
  background-color: #fff;
  padding: 24px 16px;
}
.nav-bottom__list {
  max-width: 1200px;
  margin-inline: auto;
  line-height: 1;
}
.nav-bottom__link {
  position: relative;
  font-size: 14px;
  line-height: 1;
  color: #0077a5;
}
.nav-bottom__link--prev {
  padding-left: 12px;
}
.nav-bottom__link--prev::before {
  content: "";
  width: 6px;
  height: 11px;
  background: url("../img/common/icon_arrow_narrow.svg") no-repeat center left/6px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(180deg);
}
@media (width < 768px) {
  .nav-bottom__link {
    font-size: 14px;
  }
  .nav-bottom__link--prev {
    padding-left: 12px;
  }
  .nav-bottom__link--prev::before {
    width: 6px;
    height: 11px;
    background-size: 6px;
  }
}

.topicpath {
  width: 100%;
  background-color: #f5f5f5;
  padding: 12px 16px;
}
.topicpath__list {
  max-width: 1200px;
  margin-inline: auto;
  color: #707070;
  display: flex;
  flex-wrap: wrap;
}
.topicpath__item {
  position: relative;
  font-size: 13px;
  font-weight: bold;
  line-height: 2.2;
}
.topicpath__item + .topicpath__item {
  margin-left: 27px;
}
.topicpath__item + .topicpath__item::before {
  width: 13px;
  height: 13px;
  content: "";
  margin: 0 8px;
  background: url("../img/common/icon_arrow_topicpath.svg") no-repeat center center/13px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -26px;
}
.topicpath__link {
  color: #707070;
  font-weight: normal;
  text-decoration: underline;
}
@media (width < 769px) {
  .topicpath {
    width: 100%;
    background-color: #f5f5f5;
  }
  .topicpath__list {
    width: 100%;
    margin-inline: auto;
    color: #707070;
    display: flex;
    flex-wrap: wrap;
  }
  .topicpath__item {
    position: relative;
    font-size: 13px;
    font-weight: bold;
    line-height: 2.2;
  }
  .topicpath__item + .topicpath__item {
    margin-left: 27px;
  }
  .topicpath__item + .topicpath__item::before {
    width: 13px;
    height: 13px;
    content: "";
    margin: 0 8px;
    background: url("../img/common/icon_arrow_topicpath.svg") no-repeat center center/13px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -26px;
  }
  .topicpath__link {
    color: #707070;
    font-weight: normal;
    text-decoration: underline;
  }
}

.header {
  background-color: #fff;
  border-bottom: 1px solid #d7d7d7;
  padding-left: 16px;
  padding-right: 16px;
  box-sizing: border-box;
}
.header__inner {
  position: relative;
  max-width: 1200px;
  height: 73px;
  align-content: center;
  margin-inline: auto;
}
.header__logo {
  width: 123px;
  margin-inline: auto;
}
.header__btn {
  display: block;
  font-size: 15px;
  width: 220px;
  height: 36px;
  background-color: #eaeaea;
  text-align: center;
  align-content: center;
  border-radius: 38px;
  color: #111111;
  transition: all 0.3s ease;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.header__btn:hover {
  opacity: 1;
  background-color: #d7d7d7;
}
.header__btn-text {
  padding-left: 26px;
  background: url("../img/common/icon_arrow_black.svg") no-repeat left center/18px;
}
@media (width < 768px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transform: translateY(0);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
  }
  .header.header-hidden {
    transform: translateY(-100%);
  }
  .header__inner {
    width: 100%;
    height: 56px;
  }
  .header__logo {
    width: 104px;
  }
  .header__btn {
    font-size: 0;
    width: 36px;
    height: 36px;
    border-radius: 100%;
  }
  .header__btn-text {
    display: block;
    padding-left: 0;
    width: 100%;
    height: 100%;
    background: url("../img/common/icon_arrow_black.svg") no-repeat center/18px;
  }
}

.footer__top {
  padding: 24px 13px 22px;
  background-color: #6c7883;
}
.footer__top-inner {
  width: 100%;
  margin-inline: auto;
}
.footer__top-link {
  width: 134px;
  display: block;
  margin-inline: auto;
}
.footer__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 21px;
  margin-top: 13px;
}
.footer__item-link {
  font-size: 12px;
  line-height: 2;
  color: #fff;
}
.footer__item-link:hover {
  text-decoration: underline;
}
.footer__bottom {
  background-color: #fff;
  padding-left: 16px;
  padding-right: 16px;
}
.footer__bottom-inner {
  max-width: 1200px;
  margin-inline: auto;
  height: 77px;
  align-content: center;
  display: flex;
  align-items: center;
  gap: 26px;
}
.footer__bottom-logo {
  width: 144px;
}
.footer__copyright {
  font-size: 14px;
  color: #111;
}
@media (width < 768px) {
  .footer__top {
    padding: 30px 30px 40px;
    border-top: 1px solid #c1c1c1;
  }
  .footer__top-inner {
    width: 100%;
  }
  .footer__top-link {
    width: 100px;
  }
  .footer__list {
    gap: 12px 24px;
    margin-top: 20px;
  }
  .footer__item-link {
    font-size: 13px;
  }
  .footer__bottom {
    margin-bottom: 70px;
  }
  .footer__bottom-inner {
    width: 100%;
    height: 92px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding-top: 20px;
    padding-bottom: 14px;
  }
  .footer__bottom-inner__bottom-logo {
    width: 184px;
  }
  .footer__bottom-inner__copyright {
    font-size: 12px;
    line-height: 1;
  }
}

.main {
  width: 100%;
  height: 400px;
  background-color: #cadcf1;
  padding-left: 16px;
  padding-right: 16px;
}
.main__inner {
  width: 100%;
  max-width: 1168px;
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main__headline {
  font-size: 40px;
  font-weight: bold;
  color: #354556;
}
.main__lead {
  font-size: 16px;
  line-height: 1.6;
  margin-top: 17px;
  color: #111111;
}
.main__picture {
  width: 483px;
  margin-top: auto;
}
@media (width < 769px) {
  .main {
    height: 400px;
    padding-left: 23px;
    padding-right: 23px;
  }
  .main__inner {
    width: 100%;
    position: relative;
    flex-direction: column;
  }
  .main__headline, .main__lead {
    position: relative;
    margin-left: 0;
    z-index: 1;
  }
  .main__headline {
    font-size: 26px;
    line-height: 1.4;
    margin-top: 32px;
  }
  .main__headline-inline {
    display: inline-block;
  }
  .main__lead {
    font-size: 13px;
    line-height: 1.5;
    margin-top: 10px;
  }
  .main__picture {
    width: 280px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
  }
}

.contents {
  margin-top: 40px;
}
.contents__inner {
  width: 1200px;
  margin-inline: auto;
  display: flex;
  gap: 30px;
}
.contents__side {
  width: 300px;
}
.contents__main {
  width: 870px;
}
.contents__section {
  padding: 32px 24px;
}
.contents__lead {
  font-size: 16px;
  line-height: 1.6;
  margin-top: 16px;
}
.contents__list--bottom {
  border-bottom: 1px solid #d7d7d7;
  padding-bottom: 80px;
}
.contents__item {
  position: relative;
  display: grid;
  grid-template-columns: auto auto;
  -moz-column-gap: 36px;
       column-gap: 36px;
  padding-top: 40px;
}
.contents__item + .contents__item {
  margin-top: 80px;
  padding-top: 80px;
  border-top: 1px solid #d7d7d7;
}
.contents__item--first {
  -moz-column-gap: 46px;
       column-gap: 46px;
}
.contents__item--left .contents__title {
  grid-column: 1/2;
}
.contents__item--left .contents__image {
  grid-column: 2/3;
}
.contents__item--left .contents__block {
  grid-column: 1/2;
}
.contents__item--right .contents__title {
  grid-column: 2/3;
}
.contents__item--right .contents__image {
  grid-column: 1/2;
}
.contents__item--right .contents__block {
  grid-column: 2/3;
}
.contents__item .anchor__target-wrap {
  position: absolute;
  top: 0;
}
.contents__title {
  color: #354556;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.25;
  padding-left: 29px;
  position: relative;
  grid-row: 1/2;
  padding-top: 7px;
  padding-bottom: 7px;
  margin-bottom: 24px;
}
.contents__title::before {
  content: "";
  width: 13px;
  height: 13px;
  background-color: #0f9cc4;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.contents__title--margin {
  margin-left: -2px;
}
.contents__title--plan, .contents__title--faq {
  margin-bottom: 0;
}
.contents__title--key {
  width: -moz-max-content;
  width: max-content;
  padding-right: 26px;
  background: url("../img/common/icon_key.svg") no-repeat right top 10px/18px;
}
.contents__block {
  grid-row: 2/3;
}
.contents__image {
  width: 430px;
  grid-row: 1/5;
  border-radius: 8px;
  border: 1px solid #d7d7d7;
}
.contents__text {
  font-size: 16px;
  line-height: 1.6;
}
.contents__text-link {
  color: #0077a5;
  text-decoration: underline;
}
.contents__note-list--margin {
  margin-top: 24px;
}
.contents__link-list {
  margin-top: 24px;
  display: grid;
  row-gap: 16px;
}
.contents__link {
  color: #0077a5;
  font-size: 16px;
  padding-right: 12px;
  background: url("../img/contents/icon_arrow_color_right.svg") no-repeat right center/6px;
}
.contents__link:hover {
  text-decoration: underline;
}
@media (width < 769px) {
  .contents {
    margin-top: 32px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .contents__inner {
    width: 100%;
    display: block;
  }
  .contents__side {
    display: none;
    flex-shrink: 0;
  }
  .contents__main {
    width: 100%;
  }
  .contents__section {
    padding: 10px 0;
    margin-top: 50px;
  }
  .contents__lead {
    margin-top: 8px;
    font-size: 16px;
  }
  .contents__text {
    font-size: 16px;
  }
  .contents__list--bottom {
    padding-bottom: 40px;
  }
  .contents__item {
    display: block;
    padding-top: 40px;
  }
  .contents__item + .contents__item {
    margin-top: 40px;
    padding-top: 40px;
  }
  .contents__item--first {
    padding-top: 16px;
  }
  .contents__block {
    margin-top: 16px;
  }
  .contents__title {
    font-size: 18px;
    padding-left: 25px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 16px;
  }
  .contents__title--margin {
    margin-left: 0;
  }
  .contents__title--plan, .contents__title--faq {
    margin-bottom: 0;
  }
  .contents__title--key {
    background-position: right top 12px;
  }
  .contents__title::before {
    width: 13px;
    height: 13px;
  }
  .contents__image {
    width: 100%;
    margin-inline: auto;
    border-radius: 4px;
    display: block;
  }
  .contents__note-list {
    margin-top: 6px;
    margin-bottom: 6px;
  }
  .contents__note-list--margin {
    margin-top: 0;
    margin-bottom: 0;
  }
  .contents__link {
    font-size: 16px;
    padding-right: 12px;
    background-size: 6px;
  }
  .contents__link:hover {
    text-decoration: underline;
  }
}

.side {
  width: 300px;
  position: sticky;
  top: 40px;
}
.side__list {
  border-radius: 6px;
  border: 1px solid #d7d7d7;
  padding: 24px;
  background-color: #fff;
}
.side__item + .side__item {
  border-top: 1px solid #d7d7d7;
}
.side__item-link {
  display: block;
  width: 100%;
  padding-top: 16px;
  padding-right: 20px;
  padding-bottom: 16px;
  font-size: 16px;
  line-height: 1;
  align-content: center;
  color: #111111;
  background: url("../img/common/icon_arrow_down_black.svg") no-repeat right center/20px;
}
.side__item-link:hover {
  opacity: 1;
  color: #0f9cc4;
  background-image: url("../img/common/icon_arrow_down_color.svg");
  text-decoration: underline;
 .side__item-inline{
    text-decoration: inherit;
  }
}
.side__item-inline {
  display: inline-block;
  
}
.side__link-wrap {
  margin-top: 32px;
  display: grid;
  row-gap: 16px;
}
.side__link-wrap--fixed {
  display: none;
}
.side__link {
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  border-radius: 4px;
  width: 100%;
  max-width: 300px;
  height: 46px;
  align-content: center;
  text-align: center;
}
.side__link:hover {
  opacity: 1;
}
.side__link--01 {
  border: 1px solid #6c7883;
  background-color: #fff;
  color: #6c7883;
}
.side__link--01:hover {
  border: 1px solid #6c7883;
  background-color: #6c7883;
  color: #fff;
}
.side__link--02 {
  border: 1px solid #f56f15;
  background-color: #f56f15;
  color: #fff;
}
.side__link--02:hover {
  border: 1px solid #f56f15;
  background-color: #fff;
  color: #f56f15;
}
@media (width < 769px) {
  .side {
    display: none;
  }
}

@media (width < 769px) {
  .side__link-wrap--fixed {
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    padding: 12px 16px;
    background-color: #eaeaea;
  }
  .side__link-wrap {
    margin-top: 0;
    display: flex;
    justify-content: center;
    -moz-column-gap: 21px;
         column-gap: 21px;
  }
  .side__link {
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
    border-radius: 4px;
    width: 161px;
    max-width: 100%;
    height: 46px;
    align-content: center;
    text-align: center;
  }
  .side__link:hover {
    opacity: 1;
  }
  .side__link--01 {
    border: 1px solid #6c7883;
    background-color: #fff;
    color: #6c7883;
  }
  .side__link--01:hover {
    border: 1px solid #6c7883;
    background-color: #6c7883;
    color: #fff;
  }
  .side__link--02 {
    border: 1px solid #f56f15;
    background-color: #f56f15;
    color: #fff;
  }
  .side__link--02:hover {
    border: 1px solid #f56f15;
    background-color: #fff;
    color: #f56f15;
  }
}
.nav__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.nav__item {
  border-radius: 4px;
  border: 1px solid #d7d7d7;
  width: 100%;
  max-width: 282px;
  height: 116px;
  background-color: #fff;
}
.nav__item-text {
  text-align: center;
  padding-bottom: 20px;
  background: url("../img/common/icon_arrow_down_black.svg") no-repeat center bottom/20px;
  transition: all 0.3s ease;
}
.nav__item-inline {
  display: inline-block;
}
.nav__item-link {
  width: 100%;
  height: 100%;
  font-size: 15px;
  font-weight: bold;
  padding-top: 19px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #111111;
}
.nav__item-link:hover {
  opacity: 1;
  color: #0f9cc4;
}
.nav__item-link:hover .nav__item-text {
  background-image: url("../img/common/icon_arrow_down_color.svg");
}
.nav__item-image {
  width: 30px;
  margin-bottom: 8px;
}
.nav__item-image--small {
  width: 28px;
}
@media (width < 769px) {
  .nav__list {
    gap: 12px;
  }
  .nav__item {
    height: 100px;
  }
  .nav__item-text {
    padding-bottom: 18px;
    background-size: 16px;
  }
  .nav__item-text--margin {
    margin-top: -4px;
  }
  .nav__item-link {
    font-size: 12px;
    padding-top: 12px;
  }
  .nav__item-image {
    width: 26px;
  }
  .nav__item-image--small {
    width: 24px;
  }
}

.intro .border-radious-top-left {
  border-top-left-radius: 4px;
}
.intro__headline {
  margin-bottom: 40px;
}
.intro__text {
  font-size: 16px;
  line-height: 1.6;
}
.intro__note-list {
  margin-top: 6px;
  margin-bottom: 6px;
}
.intro__table {
  margin-top: 40px;
  width: 100%;
  background-color: transparent;
}
.intro__table-head {
  background-color: #6c7883;
  height: 46px;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  align-content: center;
}
.intro__table-head--first {
  border-top-left-radius: 4px;
  border-right: 1px solid #c1c1c1;
}
.intro__table-head--last {
  border-top-right-radius: 4px;
  border-left: 1px solid #c1c1c1;
}
.intro__table-tbody td {
  border: 1px solid #c1c1c1;
}
.intro__table-body {
  min-width: 124px;
  text-align: center;
  height: 50px;
  align-content: center;
  font-size: 16px;
}
.intro__table-body-title {
  width: 100%;
  max-width: 500px;
  text-align: left;
}
.intro__table-body-link {
  color: #111111;
  display: block;
  width: 100%;
  height: 100%;
  align-content: center;
  padding: 8px 24px;
}
.intro__table-body-link:hover {
  opacity: 1;
  color: #0f9cc4;
  text-decoration: underline;
}
.intro__table-body-link-text--key {
  padding-right: 20px;
  background: url("../img/common/icon_key.svg") no-repeat right top/16px;
}
.intro__table-body-bg {
  background-color: #fffcdf;
}
@media (width < 769px) {
  .intro {
    margin-top: 60px;
  }
  .intro__headline {
    margin-bottom: 16px;
  }
  .intro__text {
    font-size: 16px;
  }
  .intro__table {
    margin-top: 16px;
  }
  .intro__table-head {
    font-size: 12px;
    height: 46px;
  }
  .intro__table-body {
    min-width: 64px;
    height: 46px;
    font-size: 12px;
  }
  .intro__table-body-title {
    font-size: 12px;
  }
  .intro__table-body-link {
    padding: 13px 12px;
  }
  .intro__table-body-link-text--key {
    padding-right: 15px;
    background-size: 12px;
  }
  .intro__note-list {
    margin-top: 6px;
    margin-bottom: 6px;
  }
}

.plan {
  margin-top: 100px;
  background-color: #fff;
  border-radius: 6px;
  padding: 32px 24px;
}
.plan__lead {
  font-size: 16px;
  line-height: 1.6;
  margin-top: 12px;
}
.plan__list {
  margin-top: 24px;
  display: flex;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
.plan__item {
  border: 1px solid #d7d7d7;
  border-radius: 4px;
  padding: 24px;
}
.plan__catch {
  color: #354556;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.3;
}
.plan__text {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.6;
}
@media (width < 769px) {
  .plan {
    margin-top: 74px;
    border-radius: 4px;
    padding: 24px;
  }
  .plan__lead {
    margin-top: 8px;
    font-size: 16px;
  }
  .plan__list {
    margin-top: 24px;
    row-gap: 18px;
    flex-direction: column;
  }
  .plan__item {
    padding: 24px;
  }
  .plan__catch {
    font-size: 16px;
  }
  .plan__text {
    font-size: 14px;
    margin-top: 10px;
  }
}

.newsletter {
  margin-top: 100px;
}
.newsletter__lead {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.6;
}
.newsletter__list {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 21px;
}
.newsletter__item {
  background-color: #fff;
  border-radius: 4px;
  width: calc((100% - 42px) / 3);
}
.newsletter__item-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  pointer-events: none;
  cursor: default;
  color: #111;
  padding: 16px;
}
.newsletter__image {
  width: 100%;
}
.newsletter__catch {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.3;
  margin-top: 20px;
  min-height: 2.5em;
}
.newsletter__text {
  font-size: 16px;
  line-height: 1.6;
  margin-top: 12px;
  margin-bottom: 20px;
}
.newsletter__sup {
  display: block;
  font-size: 16px;
  line-height: 1.6;
  margin-top: 20px;
  text-align: right;
  margin-top: auto;
}
.newsletter__link-list {
  text-align: right;
  margin-top: 21px;
}
@media (width < 769px) {
  .newsletter {
    margin-top: 60px;
  }
  .newsletter__lead {
    margin-top: 8px;
    font-size: 16px;
  }
  .newsletter__list {
    margin-top: 16px;
    flex-direction: column;
    gap: 24px;
  }
  .newsletter__item, .newsletter__item-link {
    min-height: auto;
  }
  .newsletter__item {
    width: 100%;
    height: 413px;
  }
  .newsletter__item-link {
    padding: 16px;
  }
  .newsletter__catch {
    min-height: auto;
    font-size: 18px;
    margin-top: 20px;
  }
  .newsletter__text {
    font-size: 16px;
    line-height: 1.6;
    margin-top: 12px;
    margin-bottom: 20px;
  }
  .newsletter__sup {
    display: block;
    font-size: 16px;
    line-height: 1.6;
    margin-top: 20px;
    text-align: right;
    margin-top: auto;
  }
  .newsletter__link-list {
    text-align: right;
    margin-top: 21px;
  }
}

.faq {
  margin-top: 100px;
  background-color: #fff;
  border-radius: 8px;
  padding: 32px;
}
.faq__list {
  margin-top: 8px;
  padding-top: 16px;
  display: grid;
  row-gap: 12px;
}
.faq__link {
  font-size: 16px;
  color: #111;
  padding-left: 22px;
  background: url("../img/common/icon_arrow_narrow.svg") no-repeat left center/6px;
}
.faq__link:hover {
  text-decoration: underline;
}
.faq__link-list {
  text-align: right;
  margin-top: 16px;
}
@media (width < 769px) {
  .faq {
    margin-top: 60px;
    border-radius: 4px;
    padding: 32px 16px;
  }
  .faq__link {
    font-size: 16px;
    padding-left: 17px;
    display: block;
    background-size: 6px;
  }
  .faq__link-list {
    margin-top: 24px;
  }
}

.bottom {
  margin-top: 80px;
  background-color: #d6ecf3;
  padding: 80px 16px;
}
.bottom__inner {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
}
.bottom__lead {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 32px;
}
@media (width < 769px) {
  .bottom {
    margin-top: 40px;
    padding: 40px 16px;
  }
  .bottom__inner {
    width: 100%;
  }
  .bottom__lead {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
  }
}/*# sourceMappingURL=style.css.map */