@charset "UTF-8";
/* stylelint-disable no-invalid-position-at-import-rule */
html {
  font-family: "游ゴシック", yugothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", meiryo, sans-serif;
  font-size: 62.5%;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 100%;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  color: #161616;
  letter-spacing: 0.05em;
}

main {
  padding-top: 80px;
  padding-bottom: 40px;
}

.content-header {
  width: 100%;
  height: 207px;
  background-color: #e1f4ff;
}
.content-header-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: auto;
}
.content-header-title {
  font-size: 3.6rem;
  font-weight: 700;
  color: #004f7a;
}

.breadcrumb-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
  max-width: 970px;
  margin: 0 auto;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 16px 0;
}
.breadcrumb-container span {
  margin-right: 6px;
  font-size: 1.2rem;
  font-weight: 500;
  color: #004f7a;
}
.breadcrumb-container .bread-arrow {
  position: relative;
  top: 4px;
  left: -4px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #004f7a;
  border-right: 1px solid #004f7a;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.sidebar-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  width: 280px;
  min-width: 280px;
}
.sidebar-wrapper .sidebar-banner-title {
  display: none;
}
.sidebar-wrapper .sidebar-banner .image {
  width: 100%;
}
.sidebar-wrapper .column-article-title {
  position: relative;
  padding-left: 38px;
  margin-bottom: 8px;
  font-size: 2rem;
  font-weight: 700;
  color: #004f7a;
}
.sidebar-wrapper .column-article-title::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 17.3px;
  height: 24.25px;
  content: "";
  background-image: url("../img/article_icon.png");
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.sidebar-wrapper .column-article-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.sidebar-wrapper .column-article-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-top: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #c2c2c2;
}
.sidebar-wrapper .column-article-item:last-child {
  border-bottom: none;
}
.sidebar-wrapper .column-article-item__thumbnail {
  width: 100px;
  min-width: 100px;
  height: 80px;
  overflow: hidden;
  border-radius: 8px;
}
.sidebar-wrapper .column-article-item__thumbnail img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sidebar-wrapper .column-article-item__title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #004f7a;
}
.sidebar-wrapper .column-category-title {
  position: relative;
  padding-left: 38px;
  margin-bottom: 8px;
  font-size: 2rem;
  font-weight: 700;
  color: #004f7a;
}
.sidebar-wrapper .column-category-title::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 23px;
  height: 17.25px;
  content: "";
  background-image: url("../img/category_icon.png");
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.sidebar-wrapper .column-category-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.sidebar-wrapper .column-category-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid #c2c2c2;
}
.sidebar-wrapper .column-category-list__item a {
  padding: 8px 0;
  font-size: 1.6rem;
  font-weight: 500;
}
.sidebar-wrapper .column-category-list__item:last-child {
  border-bottom: 1px solid #c2c2c2;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin-top: 40px;
}
.pagination .page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 30px;
  height: 30px;
  color: #228ecf;
  background-color: #fff;
  border: 1px solid #cfeef9;
  border-radius: 4px;
}
.pagination .page-numbers.current {
  color: #fff;
  background-color: #94d6ff;
}
.pagination .page-numbers.prev {
  position: relative;
  background-color: #228ecf;
  border-radius: 50%;
}
.pagination .page-numbers.prev::after {
  position: absolute;
  top: 50%;
  left: 55%;
  width: 8px;
  height: 8px;
  content: "";
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  -webkit-transform: translateY(-50%) translateX(-50%) rotate(45deg);
          transform: translateY(-50%) translateX(-50%) rotate(45deg);
}
.pagination .page-numbers.next {
  position: relative;
  background-color: #228ecf;
  border-radius: 50%;
}
.pagination .page-numbers.next::after {
  position: absolute;
  top: 50%;
  left: 45%;
  width: 8px;
  height: 8px;
  content: "";
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: translateY(-50%) translateX(-50%) rotate(45deg);
          transform: translateY(-50%) translateX(-50%) rotate(45deg);
}

.column-author {
  margin-top: 60px;
}
.column-author__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 28px 32px;
  background-color: #eefaff;
  border: 1px solid #94d6ff;
  border-radius: 8px;
}
.column-author-image {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.column-author-image__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 162px;
  min-width: 162px;
  height: 162px;
  padding: 12px;
  overflow: hidden;
  background-color: #fff;
  border: 1px solid #94d6ff;
  border-radius: 50%;
}
.column-author .author-info-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.column-author .author-info-name {
  font-size: 2rem;
  font-weight: 700;
  color: #004f7a;
}
.column-author .author-info-description {
  font-size: 1.6rem;
  font-weight: 500;
}

.text__underline {
  position: relative;
  z-index: 1;
  display: inline;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
}
.text__underline--yellow {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(0%, #ffe47a));
  background: linear-gradient(transparent 60%, #ffe47a 0%);
}
.text__underline--aqua::after {
  bottom: 0;
  height: 2px;
  background-color: #009798;
}
.text__underline--accent {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(0%, #ffcf00));
  background: linear-gradient(transparent 60%, #ffcf00 0%);
}
.text__underline.marker {
  font-weight: 700;
}
.text__underline.marker::after {
  bottom: 0;
  height: 100%;
  background-color: #ffe47a;
}
.text__color--aqua {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  color: #009798;
}
.text__color--blue {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: #228ecf;
}
.text__color--inherit {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
}
.text__color--orange {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: #ffa200;
}
.text__size--x-small {
  font-size: 1rem;
}
.text__size--small {
  font-size: 1.2rem;
}
.text__position--center {
  width: 100%;
  text-align: center;
}
.text__position--right {
  width: 100%;
  text-align: right;
}
.text__position--left {
  width: 100%;
  text-align: left;
}
.text__weight--bold {
  font-weight: 700;
}

.dot-char {
  position: relative;
}
.dot-char::before {
  position: absolute;
  top: -26px;
  right: 0;
  left: 0;
  color: #ffe47a;
  text-align: center;
  content: "・";
}

h1.section-title,
h2.section-title {
  position: relative;
  margin: 0 auto 40px;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.5;
  color: #004f7a;
}
h1.section-title.icon__1::after,
h2.section-title.icon__1::after {
  position: absolute;
  top: -20px;
  right: -15px;
  width: 24px;
  height: 26px;
  content: url("../img/title_icon_1.png");
}
h1.section-title.flow,
h2.section-title.flow {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 421px;
  color: #228ecf;
  background-color: #ebfaff;
  border-top: 1px solid #94d6ff;
  border-bottom: 1px solid #94d6ff;
}
h1.section-title.flow::after,
h2.section-title.flow::after {
  position: absolute;
  top: 50%;
  left: -30px;
  width: 90px;
  height: 129px;
  content: "";
  background-image: url("../img/nagare_image.png");
  background-position: center;
  background-size: cover;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
h1.section-title.qa,
h2.section-title.qa {
  color: #228ecf;
}
h1.section-title.information,
h2.section-title.information {
  color: #228ecf;
}

.sub-title {
  padding: 0 16px;
  font-size: 2.4rem;
  font-weight: 700;
  color: #228ecf;
  border-top: 1px solid #228ecf;
  border-bottom: 1px solid #228ecf;
}

.section-arrow {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 50px;
}
.section-arrow::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  display: block;
  width: 417px;
  height: 40px;
  content: "";
  background-image: url("../img/section_arrow.png");
  background-position: center;
  background-size: cover;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.section-arrow__text {
  position: relative;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.5;
  color: #004f7a;
}
.section-arrow__text::before, .section-arrow__text::after {
  position: absolute;
  top: 50%;
  display: block;
  width: 45px;
  height: 50px;
  content: "";
  background-image: url("../img/section_arrow_icon.png");
  background-position: center;
  background-size: cover;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.section-arrow__text::before {
  left: -45px;
}
.section-arrow__text::after {
  right: -45px;
}
@media (max-width: 768px) {
  .section-arrow {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .section-arrow::after {
    width: 187px;
    height: 38px;
    background-image: url("../img/section_arrow_icon_sp.png");
  }
  .section-arrow__text {
    font-size: 2.4rem;
    text-align: center;
  }
  .section-arrow__text::before {
    left: -60px;
  }
  .section-arrow__text::after {
    right: -60px;
  }
}

.waketoku-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 80px;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}
.waketoku-header .header-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 970px;
  padding: 18px 0;
  margin: 0 auto;
}
.waketoku-header .header-logo {
  width: 130px;
  height: 32px;
}
.waketoku-header .header-menu__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.4rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.waketoku-header .header-menu .menu-item-type-custom > a {
  font-size: 1.6rem;
  font-weight: 500;
}
.waketoku-header .header-menu .menu-item-type-custom.menu-item-has-children {
  position: relative;
}
.waketoku-header .header-menu .menu-item-type-custom.menu-item-has-children::after {
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 6px;
  height: 6px;
  content: "";
  border-right: 1px solid #7a7a7a;
  border-bottom: 1px solid #7a7a7a;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}
.waketoku-header .header-menu .menu-item-type-custom.menu-item-has-children .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 10;
  display: none;
  width: 250px;
  padding: 8px;
  background-color: #fff;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.waketoku-header .header-menu .menu-item-type-custom.menu-item-has-children .sub-menu__item a {
  font-size: 1.6rem;
  font-weight: 500;
}
.waketoku-header .header-menu .menu-item-type-custom.menu-item-has-children:hover .sub-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.waketoku-header .header-btn__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
.waketoku-header .header-btn__cta {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: auto;
  height: 46px;
  padding: 14px 14px 14px 30px;
  font-size: 1.6rem;
  font-weight: 500;
  border-radius: 5px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.waketoku-header .header-btn__cta--form {
  color: #fff;
  background-color: #004f7a;
}
.waketoku-header .header-btn__cta--tel {
  background-color: #ffcf00;
}
.waketoku-header .header-btn__cta::before {
  position: absolute;
  top: 50%;
  left: 14px;
  width: 10px;
  height: 14.7px;
  content: "";
  background-image: url("../img/tel_icon.svg");
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.waketoku-header .header-hamburger {
  display: none;
}

.waketoku-footer {
  z-index: 100;
  width: 100%;
  padding: 24px 0;
  background-color: #f2faff;
}
.waketoku-footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
  max-width: 970px;
  margin: 0 auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.waketoku-footer__container .menu-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.waketoku-footer__container .menu-wrapper .menu-1__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-right: 100px;
}
.waketoku-footer__container .menu-wrapper .menu-1__item a {
  font-size: 1.4rem;
  font-weight: 500;
  color: #004f7a;
}
.waketoku-footer__container .footer-logo {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-right: 5.6rem;
}
.waketoku-footer__container .footer-logo__copy {
  position: absolute;
  bottom: -22px;
  left: 0;
  font-size: 1rem;
  font-weight: 400;
  color: #004f7a;
  white-space: nowrap;
}

/* stylelint-disable block-no-empty */
/* stylelint-disable scss/double-slash-comment-empty-line-before */
@media (max-width: 1100px) {
  main {
    padding-top: 48px;
  }
}
@media (max-width: 970px) {
  .waketoku-header .header-container {
    padding-right: 15px;
    padding-left: 15px;
  }
  .waketoku-header .header-logo {
    margin-right: 0;
  }
  .waketoku-header .header-menu {
    position: fixed;
    top: 80px;
    left: 0;
    display: none;
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    background-color: #fff;
    -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%); /* 初期位置を上に設定 */
  }
  .waketoku-header .header-menu.active {
    display: block;
    -webkit-transform: translateY(0);
            transform: translateY(0); /* オープン時の位置 */
  }
  .waketoku-header .header-menu__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    padding: 20px 24px;
  }
  .waketoku-header .header-menu .menu-item-type-custom {
    width: 100%;
    padding: 32px 0;
    text-align: center;
    border-bottom: 1px solid #808080;
  }
  .waketoku-header .header-menu .menu-item-type-custom:first-child {
    border-top: 1px solid #808080;
  }
  .waketoku-header .header-menu .menu-item-type-custom:last-child {
    margin-bottom: 24px;
  }
  .waketoku-header .header-menu .menu-item-type-custom a {
    display: block;
    padding: 10px 0;
    font-size: 1.6rem;
    font-weight: 700;
  }
  .waketoku-header .header-menu .menu-item-type-custom.menu-item-has-children {
    position: relative;
  }
  .waketoku-header .header-menu .menu-item-type-custom.menu-item-has-children::after {
    content: none;
  }
  .waketoku-header .header-menu .menu-item-type-custom.menu-item-has-children .sub-menu {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    padding: 8px;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .waketoku-header .header-menu .menu-item-type-custom.menu-item-has-children .sub-menu > li {
    padding: 0;
    margin-bottom: 0;
    border: none;
  }
  .waketoku-header .header-menu .menu-item-type-custom.menu-item-has-children .sub-menu > li > a {
    font-size: 1.6rem;
    font-weight: 500;
  }
  .waketoku-header .header-btn-sp__wrap {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 2rem;
  }
  .waketoku-header .header-btn-sp--tel {
    width: 180px;
    padding-left: 36px;
    white-space: nowrap;
  }
  .waketoku-header .header-btn-sp--tel::before {
    position: absolute;
    top: 50%;
    left: calc(50% - 90px);
    width: 26px;
    height: 26px;
    content: "";
    background-image: url("../img/tel_icon.png");
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .waketoku-header .header-hamburger {
    position: relative;
    z-index: 1000;
    display: block;
    padding: 0;
    cursor: pointer;
    background: none;
    border: none;
  }
  .waketoku-header .header-hamburger span {
    display: block;
    width: 25px;
    height: 1px;
    margin: 8px 0;
    background-color: #004f7a;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .waketoku-header .header-hamburger.active span {
    width: 18.4px;
  }
  .waketoku-header .header-hamburger.active span:nth-child(1) {
    -webkit-transform: rotate(45deg) translate(5px, 5px);
            transform: rotate(45deg) translate(5px, 5px);
  }
  .waketoku-header .header-hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .waketoku-header .header-hamburger.active span:nth-child(3) {
    -webkit-transform: rotate(-45deg) translate(8px, -8px);
            transform: rotate(-45deg) translate(8px, -8px);
  }
  .waketoku-footer__container {
    padding-right: 15px;
    padding-left: 15px;
  }
  body.menu-open {
    overflow: hidden;
  }
}
@media (max-width: 970px) and (max-width: 768px) {
  .content-header {
    width: 100%;
    height: 127px;
    background-color: #e1f4ff;
  }
  .content-header-title {
    font-size: 2.4rem;
  }
  .breadcrumb-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
    max-width: 970px;
    margin: 0 auto;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 16px 0;
  }
  .sidebar-wrapper {
    width: 100%;
    min-width: unset;
    height: 100%;
  }
  .sidebar-wrapper .column-category-title {
    position: relative;
    padding-left: 38px;
    margin-bottom: 8px;
    font-size: 2rem;
    font-weight: 700;
    color: #004f7a;
  }
  .sidebar-wrapper .column-category-title::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 23px;
    height: 17.25px;
    content: "";
    background-image: url("../img/category_icon.png");
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .sidebar-wrapper .column-category-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .sidebar-wrapper .column-category-list__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-top: 1px solid #c2c2c2;
  }
  .sidebar-wrapper .column-category-list__item a {
    padding: 8px 0;
    font-size: 1.6rem;
    font-weight: 500;
  }
  .sidebar-wrapper .column-category-list__item:last-child {
    border-bottom: 1px solid #c2c2c2;
  }
  .column-author__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
  .column-author .author-info-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
  }
  .column-author .author-info-name {
    text-align: center;
  }
  .column-author .author-info-description {
    font-size: 1.6rem;
    font-weight: 500;
  }
  h2.section-title {
    margin-bottom: 22px;
    text-align: center;
  }
  h2.section-title.flow {
    position: absolute;
    top: -120px;
    width: 80%;
    font-size: 2.8rem;
  }
  h2.section-title.flow::after {
    top: 30%;
    left: -20px;
    width: 62px;
    height: 88px;
  }
  .sub-title {
    font-size: 2rem;
  }
  .section-arrow__text::before, .section-arrow__text::after {
    width: 4.5rem;
    height: 5rem;
  }
  .waketoku-header {
    height: 60px;
  }
  .waketoku-header .header-container {
    padding: 12px 15px;
  }
  .waketoku-header .header-menu {
    top: 60px;
  }
  .waketoku-header .header-menu__item a {
    font-size: 1.4rem;
  }
  .waketoku-footer__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .waketoku-footer__container .menu-wrapper {
    gap: 64px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 100%;
    margin-bottom: 48px;
  }
  .waketoku-footer__container .menu-wrapper .menu-1__wrap {
    margin-right: 0;
  }
  .waketoku-footer__container .footer-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-right: 0;
  }
}
/* stylelint-disable no-invalid-position-at-import-rule */
/* stylelint-disable scss/double-slash-comment-empty-line-before */
main.waketoku-top {
  background-color: #e1f4ff;
  background-image: url("../img/bg-image.png");
}
main.waketoku-top .campaign {
  width: 100%;
  max-width: 840px;
  padding-top: 0;
  margin: 64px auto 64px;
}
@media (max-width: 1100px) {
  main.waketoku-top .campaign {
    padding-right: 15px;
    padding-left: 15px;
    margin-top: 32px;
    margin-bottom: 32px;
  }
}
main.waketoku-top .campaign-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 970px;
  margin: 64px auto;
}
main.waketoku-top .campaign-container .campaign-img {
  width: 100%;
  height: 100%;
  margin-bottom: 56px;
}
main.waketoku-top .campaign-container .campaign-img__wrap {
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  main.waketoku-top .campaign-container .campaign-img {
    height: auto;
  }
}
main.waketoku-top .campaign-container .campaign-btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: auto;
  min-width: 620px;
  height: 75px;
  padding: 0 8%;
  background: -webkit-gradient(linear, left top, right top, from(#ff7a00), to(#ffd700));
  background: linear-gradient(90deg, #ff7a00 0%, #ffd700 100%);
  border: 2px solid #fff;
  border-radius: 50px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
main.waketoku-top .campaign-container .campaign-btn:hover {
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 122, 0, 0.8)), to(rgba(255, 215, 0, 0.8)));
  background: linear-gradient(90deg, rgba(255, 122, 0, 0.8) 0%, rgba(255, 215, 0, 0.8) 100%);
}
main.waketoku-top .campaign-container .campaign-btn::after {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 8px;
  height: 8px;
  content: "";
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
main.waketoku-top .campaign-container .campaign-btn__text {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
}
main.waketoku-top .campaign-container .campaign-btn--information {
  color: #161616;
  background: none;
  background-color: #f3f3f3;
  border: 2px solid #dbdbdb;
}
main.waketoku-top .campaign-container .campaign-btn--information::after {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 8px;
  height: 8px;
  content: "";
  border-top: 2px solid #161616;
  border-right: 2px solid #161616;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
main.waketoku-top .campaign-container .campaign-btn--information:hover {
  background: none;
  background-color: #e6e6e6;
}
main.waketoku-top .campaign-container .campaign-btn--information__text {
  font-size: 2rem;
  font-weight: bold;
  color: #161616;
}
@media (max-width: 768px) {
  main.waketoku-top .campaign-container .campaign-btn {
    width: calc(100% - 30px);
    min-width: unset;
  }
}
main.waketoku-top .campaign-catch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 90%;
  max-width: 780px;
  padding: 12px;
  margin: 0 auto;
  margin-bottom: 32px;
  background-color: #fff;
  border: 2px solid #ffa200;
  border-radius: 8px;
}
main.waketoku-top .campaign-catch__text {
  font-size: 3.6rem;
  font-weight: 700;
  color: #ffa200;
}
@media (max-width: 768px) {
  main.waketoku-top .campaign-catch {
    padding: 0;
  }
  main.waketoku-top .campaign-catch__text {
    font-size: 1.8rem;
    text-align: center;
  }
}
main.waketoku-top .apply-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
main.waketoku-top .apply-cta__btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 300px;
  height: 64px;
  font-size: 1.6rem;
  font-weight: 700;
  background-color: #ffcf00;
  border-radius: 32px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
main.waketoku-top .apply-cta__btn::before {
  position: absolute;
  top: 50%;
  right: 10%;
  width: 8px;
  height: 8px;
  content: "";
  border-top: 2px solid #161616;
  border-right: 2px solid #161616;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
main.waketoku-top .apply-cta__btn:hover {
  opacity: 0.8;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
main.waketoku-top .mv {
  width: 100%;
  height: 550px;
  background-image: url("../img/mv.png");
  background-position: center;
}
main.waketoku-top .mv-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 970px;
  padding-top: 130px;
  margin: 0 auto;
}
main.waketoku-top .mv-catch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
main.waketoku-top .mv-catch__text-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 48px;
}
main.waketoku-top .mv-catch__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  height: 68px;
  padding: 6px 12px;
  font-size: 4.8rem;
  font-weight: 700;
  color: #004f7a;
  background-color: #fff;
}
main.waketoku-top .mv-catch__text.dark-blue {
  position: relative;
  height: 48px;
  padding: 8px 8px 8px 22px;
  margin-bottom: 22px;
  font-size: 2.4rem;
  font-weight: 500;
  color: #fff;
  background-color: #004f7a;
}
main.waketoku-top .mv-catch__text.dark-blue::after {
  position: absolute;
  bottom: -12px;
  left: 15%;
  width: 0;
  height: 0;
  content: "";
  border-top: 14px solid #004f7a; /* 三角形の高さ */
  border-right: 8px solid transparent; /* 三角形の幅の半分 */
  border-left: 8px solid transparent; /* 三角形の幅の半分 */
}
main.waketoku-top .mv-catch__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
main.waketoku-top .mv-catch__img img {
  position: relative;
  right: -50px;
  width: 333px;
  height: 273px;
}
main.waketoku-top .mv-catch .apply-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
main.waketoku-top .mv-catch .apply-cta__btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 300px;
  height: 64px;
  font-size: 1.6rem;
  font-weight: 700;
  background-color: #ffcf00;
  border-radius: 32px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
main.waketoku-top .mv-catch .apply-cta__btn::before {
  position: absolute;
  top: 50%;
  right: 10%;
  width: 8px;
  height: 8px;
  content: "";
  border-top: 2px solid #161616;
  border-right: 2px solid #161616;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
main.waketoku-top .mv-catch .apply-cta__btn:hover {
  opacity: 0.8;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
main.waketoku-top .why-container {
  width: 100%;
  max-width: 970px;
  padding-top: 0;
  margin: 64px auto 64px;
}
@media (max-width: 1100px) {
  main.waketoku-top .why-container {
    padding-right: 15px;
    padding-left: 15px;
    margin-top: 32px;
    margin-bottom: 32px;
  }
}
main.waketoku-top .why-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 80px 65px;
  margin: 0 auto 0;
  background-color: #fff;
  border-radius: 16px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
@media (max-width: 1100px) {
  main.waketoku-top .why-wrapper {
    padding: 32px 13px;
  }
}
main.waketoku-top .why-intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  gap: 36px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 100px;
}
main.waketoku-top .why-intro__img {
  width: 100%;
}
main.waketoku-top .why-intro__img-wrap {
  width: 205px;
  height: 180px;
}
main.waketoku-top .why-intro__text {
  font-size: 1.6rem;
  line-height: 2;
}
main.waketoku-top .why-intro__text-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
main.waketoku-top .why-problem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
  max-width: 840px;
  margin: 0 auto;
  position: relative;
  gap: 24px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 70px 30px 40px;
  margin-bottom: 48px;
  background-color: #f3f3f3;
  border: 3px dashed #dbdbdb;
  border-radius: 8px;
}
main.waketoku-top .why-problem::before {
  position: absolute;
  top: -61px;
  left: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 275px;
  height: 122px;
  font-size: 3.2rem;
  font-weight: 700;
  color: #404040;
  content: "みんなの不安";
  background-color: transparent;
  background-image: url("../img/cloud.svg");
  background-position: center;
  background-size: cover;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
main.waketoku-top .why-problem__img {
  width: 100%;
}
main.waketoku-top .why-problem__img-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 322px;
  height: 288px;
  overflow: hidden;
}
main.waketoku-top .why-problem__text-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
main.waketoku-top .why-problem__text-wrap .text-bubble {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: auto;
  min-width: 0;
  height: 80px;
  padding: 30px 34px;
  color: #161616;
  white-space: nowrap;
  background-color: #fff;
  border: 3px solid #cae7f1;
  border-radius: 24px;
}
main.waketoku-top .why-solution {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 666px;
  margin: 0 auto;
  position: relative;
  height: 325px;
}
main.waketoku-top .why-solution::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 608px;
  height: 325px;
  content: "";
  background-image: url("../img/why_solution_2.png");
  background-repeat: no-repeat;
}
main.waketoku-top .why-solution::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 153px;
  height: 248px;
  content: "";
  background-image: url("../img/why_solution_1.png");
  background-repeat: no-repeat;
}
main.waketoku-top .why-solution__text {
  position: relative;
  z-index: 1;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  color: #228ecf;
  text-align: center;
}
main.waketoku-top .why-solution__text-check {
  position: absolute;
  top: 60px;
  left: 50%;
  z-index: 2;
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
main.waketoku-top .why-solution__text-wrap {
  position: relative;
  top: 50%;
  left: 180px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 410px;
  white-space: wrap;
}
main.waketoku-top .what-container {
  width: 100%;
  max-width: 970px;
  padding-top: 0;
  margin: 64px auto 64px;
}
@media (max-width: 1100px) {
  main.waketoku-top .what-container {
    padding-right: 15px;
    padding-left: 15px;
    margin-top: 32px;
    margin-bottom: 32px;
  }
}
main.waketoku-top .what-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 80px 65px;
  margin: 0 auto 0;
  background-color: #fff;
  border-radius: 16px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
@media (max-width: 1100px) {
  main.waketoku-top .what-wrapper {
    padding: 32px 13px;
  }
}
main.waketoku-top .what-intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 32px;
  margin-bottom: 40px;
  border: 3px dashed #cae7f1;
  border-radius: 8px;
}
main.waketoku-top .what-intro__text {
  font-size: 1.6rem;
  line-height: 1.5;
}
main.waketoku-top .what-explain {
  margin-bottom: 40px;
}
main.waketoku-top .what-explain__img {
  width: 100%;
  height: auto;
}
main.waketoku-top .what-explain__img img {
  width: 100%;
}
main.waketoku-top .what-sammary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
main.waketoku-top .what-sammary__text {
  font-size: 1.6rem;
  line-height: 1.5;
  text-align: start;
}
main.waketoku-top .benefit-container {
  width: 100%;
  max-width: 970px;
  padding-top: 0;
  margin: 64px auto 64px;
}
@media (max-width: 1100px) {
  main.waketoku-top .benefit-container {
    padding-right: 15px;
    padding-left: 15px;
    margin-top: 32px;
    margin-bottom: 32px;
  }
}
main.waketoku-top .benefit-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 80px 65px;
  margin: 0 auto 0;
  background-color: #fff;
  border-radius: 16px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
@media (max-width: 1100px) {
  main.waketoku-top .benefit-wrapper {
    padding: 32px 13px;
  }
}
main.waketoku-top .benefit-merit__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 970px;
  margin: 0 auto;
  gap: 22px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 40px;
}
main.waketoku-top .benefit-merit__number {
  position: relative;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 122px;
  height: 43px;
  font-size: 1.8rem;
  font-weight: 700;
  color: #228ecf;
  border: 1px solid #228ecf;
  border-radius: 21.5px;
}
main.waketoku-top .benefit-merit__number::after {
  position: absolute;
  bottom: -8px;
  left: 30%;
  width: 16px;
  height: 8px;
  content: "";
  background-color: #fff;
  border: 1px solid #fff;
  border-bottom: 1px solid #228ecf;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
main.waketoku-top .benefit-merit__text-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 44px;
}
main.waketoku-top .benefit-merit__text-catch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
}
main.waketoku-top .benefit-merit__text-catch-wrap {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
main.waketoku-top .benefit-merit__text-description {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  font-size: 1.6rem;
  line-height: 1.8;
}
main.waketoku-top .benefit-merit__text-description-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 44px;
}
main.waketoku-top .benefit-explain {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  margin-bottom: 40px;
}
main.waketoku-top .benefit-explain__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: auto;
}
main.waketoku-top .benefit-explain__img img {
  width: 100%;
}
main.waketoku-top .benefit-explain__img.img-3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  padding: 0 32px;
}
main.waketoku-top .benefit-explain__img.img-3 .img-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
main.waketoku-top .benefit-explain__img.img-3 .img-wrap img {
  width: auto;
  height: 170px;
}
main.waketoku-top .benefit-explain__img.img-3 .img-wrap p {
  font-size: 2rem;
  font-weight: 700;
  color: #ffa200;
  text-align: center;
}
main.waketoku-top .benefit-explain__text-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 33px;
}
main.waketoku-top .benefit-explain__text-description {
  margin-bottom: 12px;
  font-size: 1.4rem;
  font-weight: 500;
  color: #228ecf;
}
main.waketoku-top .benefit-explain__text-description.small {
  font-size: 1rem;
  color: #161616;
}
main.waketoku-top .benefit-point {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 24px;
  margin-bottom: 40px;
  background-color: #eefaff;
  border: 3px dashed #cae7f1;
  border-radius: 8px;
}
main.waketoku-top .benefit-point:not(:last-of-type) {
  margin-bottom: 40px;
}
main.waketoku-top .benefit-point__text {
  position: relative;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  color: #228ecf;
}
main.waketoku-top .benefit-point__text::before {
  position: absolute;
  top: 50%;
  left: -60px;
  width: 44px;
  height: 63px;
  content: url("../img/merit_point.png");
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
main.waketoku-top .commit-container {
  width: 100%;
  max-width: 970px;
  padding-top: 0;
  margin: 64px auto 64px;
}
@media (max-width: 1100px) {
  main.waketoku-top .commit-container {
    padding-right: 15px;
    padding-left: 15px;
    margin-top: 32px;
    margin-bottom: 32px;
  }
}
main.waketoku-top .commit-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 80px 65px;
  margin: 0 auto 0;
  background-color: #fff;
  border-radius: 16px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
@media (max-width: 1100px) {
  main.waketoku-top .commit-wrapper {
    padding: 32px 13px;
  }
}
main.waketoku-top .commit-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  gap: 48px;
  margin-bottom: 64px;
}
main.waketoku-top .commit-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
main.waketoku-top .commit-item__head {
  position: relative;
  padding-left: 36px;
  font-size: 2.8rem;
  font-weight: 700;
  color: #228ecf;
}
main.waketoku-top .commit-item__head::before {
  position: absolute;
  left: 0;
  width: 10px;
  height: 40px;
  content: "";
  background-color: #94d6ff;
}
main.waketoku-top .commit-item__text {
  padding-left: 36px;
  font-size: 2rem;
  line-height: 1.5;
}
main.waketoku-top .commit-img {
  width: 100%;
}
main.waketoku-top .commit-img-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  width: auto;
  height: auto;
  margin-bottom: 64px;
}
main.waketoku-top .commit-community__title {
  margin-bottom: 40px;
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffa200;
  text-align: center;
}
main.waketoku-top .commit-community__description {
  font-size: 1.6rem;
  line-height: 1.5;
  color: #004f7a;
  text-align: left;
}
main.waketoku-top .commit-community__description-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  height: auto;
  padding: 60px 0;
  background-image: url("../img/commit_community_bg.png");
  background-repeat: no-repeat;
  background-position: 20px top;
  background-size: 576px 373px;
}
main.waketoku-top .target-container {
  width: 100%;
  max-width: 970px;
  padding-top: 0;
  margin: 64px auto 64px;
}
@media (max-width: 1100px) {
  main.waketoku-top .target-container {
    padding-right: 15px;
    padding-left: 15px;
    margin-top: 32px;
    margin-bottom: 32px;
  }
}
main.waketoku-top .target-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 80px 65px;
  margin: 0 auto 0;
  background-color: #fff;
  border-radius: 16px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding-top: 94px;
}
@media (max-width: 1100px) {
  main.waketoku-top .target-wrapper {
    padding: 32px 13px;
  }
}
main.waketoku-top .target-criteria__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 48px 34px;
  background-color: #eefaff;
  border-radius: 8px;
}
main.waketoku-top .target-criteria__wrap.target {
  padding-top: 78px;
}
main.waketoku-top .target-criteria__wrap.area {
  margin-bottom: 40px;
  background-color: #fff;
}
main.waketoku-top .target-criteria__wrap.other {
  padding-top: 78px;
  background-color: #fff;
  border: 2px dashed #94d6ff;
}
main.waketoku-top .target-criteria__title {
  position: absolute;
  top: -31px;
  left: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 330px;
  height: 62px;
  font-size: 3.2rem;
  font-weight: 700;
  color: #fff;
  background-color: #228ecf;
  border-radius: 8px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
main.waketoku-top .target-criteria__title.other {
  font-size: 2.4rem;
}
main.waketoku-top .target-criteria__title-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 3.2rem;
  font-weight: 700;
  color: #228ecf;
}
main.waketoku-top .target-criteria__maker-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  gap: 16px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
main.waketoku-top .target-criteria__maker-list .maker-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
main.waketoku-top .target-criteria__maker-list .maker-item__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: auto;
  height: 68px;
  padding: 0 42px;
}
main.waketoku-top .target-criteria__maker-list .maker-item__head.green {
  background-color: #86cdce;
}
main.waketoku-top .target-criteria__maker-list .maker-item__head.blue {
  background-color: #bde6f3;
}
main.waketoku-top .target-criteria__maker-list .maker-item__head-text.white {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}
main.waketoku-top .target-criteria__maker-list .maker-item__head-text.blue {
  font-size: 1.4rem;
  font-weight: 700;
  color: #228ecf;
}
main.waketoku-top .target-criteria__maker-list .maker-item__description-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 26px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 450px;
  padding: 32px 16px;
  background-color: #fff;
}
main.waketoku-top .target-criteria__maker-list .maker-item__description-text {
  font-size: 1.3rem;
  font-weight: 700;
  color: #228ecf;
  text-align: center;
}
main.waketoku-top .target-criteria__maker-list .maker-item__description-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
main.waketoku-top .target-criteria__maker-list .maker-item__description-image > .name {
  font-size: 1.3rem;
  font-weight: 500;
  color: #161616;
}
main.waketoku-top .target-criteria__maker-list .maker-item__description-image > .image {
  width: 100%;
}
main.waketoku-top .target-area__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  border: 1px solid #228ecf;
}
main.waketoku-top .target-area__img {
  width: 100%;
}
main.waketoku-top .target-other__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 28px;
}
main.waketoku-top .target-other__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
main.waketoku-top .target-other__item-text {
  position: relative;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
}
main.waketoku-top .target-other__item-text::before {
  position: absolute;
  top: -6px;
  left: -48px;
  display: inline-block;
  width: 33px;
  height: 33px;
  content: "";
  background-image: url("../img/check.png");
  background-repeat: no-repeat;
  background-size: 100%;
}
main.waketoku-top .target-other__item-text.caution {
  font-size: 1.4rem;
  font-weight: 500;
}
main.waketoku-top .flow-container {
  width: 100%;
  max-width: 970px;
  padding-top: 0;
  margin: 64px auto 64px;
}
@media (max-width: 1100px) {
  main.waketoku-top .flow-container {
    padding-right: 15px;
    padding-left: 15px;
    margin-top: 32px;
    margin-bottom: 32px;
  }
}
main.waketoku-top .flow-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 80px 65px;
  margin: 0 auto 0;
  background-color: #fff;
  border-radius: 16px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
@media (max-width: 1100px) {
  main.waketoku-top .flow-wrapper {
    padding: 32px 13px;
  }
}
main.waketoku-top .flow-preparation__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
main.waketoku-top .flow-preparation__text {
  font-size: 1.4rem;
}
main.waketoku-top .flow-preparation__text-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
main.waketoku-top .flow-preparation__text.small {
  font-size: 1.2rem;
}
main.waketoku-top .flow-preparation__img {
  width: 100%;
}
main.waketoku-top .flow-preparation__img-wrap {
  width: 100%;
  max-width: 700px;
}
main.waketoku-top .flow-toggle__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
main.waketoku-top .flow-toggle__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 200px;
  height: 53px;
  color: #228ecf;
  background-color: #fff;
  border: 1px solid #228ecf;
  border-radius: 28px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
main.waketoku-top .flow-toggle__btn:hover {
  color: #fff;
  cursor: pointer;
  background-color: #228ecf;
}
main.waketoku-top .flow-toggle__btn-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: inherit;
}
main.waketoku-top .flow-toggle__btn.active {
  position: relative;
  color: #fff;
  background-color: #228ecf;
}
main.waketoku-top .flow-toggle__btn.active::before {
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 14px;
  height: 14px;
  content: "";
  background-color: #228ecf;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}
main.waketoku-top .flow-photo__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  gap: 24px;
}
main.waketoku-top .flow-photo__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  border: 1px solid #94d6ff;
}
main.waketoku-top .flow-photo__item .item-head {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  height: auto;
  min-height: 40px;
  padding-left: 24px;
  background-color: #cfeef9;
}
main.waketoku-top .flow-photo__item .item-head__text {
  font-size: 1.8rem;
  font-weight: 700;
  color: #228ecf;
}
main.waketoku-top .flow-photo__item .item-head__text-number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 34px;
  height: 34px;
  margin-right: 12px;
  font-size: 1.8rem;
  font-weight: 500;
  color: #228ecf;
  background-color: #fff;
  border-radius: 50%;
}
main.waketoku-top .flow-photo__item .item-description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 16px 32px;
}
main.waketoku-top .flow-photo__item .item-description__img {
  max-width: 100%;
}
main.waketoku-top .flow-photo__item .item-description__img-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 150px;
  min-width: 150px;
}
main.waketoku-top .flow-photo__item .item-description__text-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
main.waketoku-top .flow-photo__item .item-description__text {
  font-size: 1.6rem;
  font-weight: 500;
}
main.waketoku-top .flow-photo__item .item-description__text.bg-blue {
  max-width: 240px;
  padding: 4px 8px;
  background-color: #cfeef9;
}
main.waketoku-top .flow-photo__item .item-description__text.list {
  font-size: 1.6rem;
}
main.waketoku-top .flow-photo__item .item-description__text.small {
  font-size: 1.4rem;
}
main.waketoku-top .flow-step__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  gap: 48px;
}
main.waketoku-top .flow-step__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
main.waketoku-top .flow-step__item::before {
  position: absolute;
  top: -32px;
  left: 65px;
  width: 30px;
  height: 16px;
  content: "";
  background-image: url("../img/step_triangle.png");
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
main.waketoku-top .flow-step__item:first-child::before {
  display: none;
}
main.waketoku-top .flow-step__item-img {
  width: 100%;
}
main.waketoku-top .flow-step__item-img-wrap {
  position: relative;
  width: 130px;
  min-width: 130px;
  height: auto;
}
main.waketoku-top .flow-step__item-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
main.waketoku-top .flow-step__item-text .step-num__wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
main.waketoku-top .flow-step__item-text .step-num__wrap::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  border-bottom: 1px solid #cae7f1;
}
main.waketoku-top .flow-step__item-text .step-num__wrap::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 1px;
  content: "";
  border-bottom: 1px solid #228ecf;
}
main.waketoku-top .flow-step__item-text .step-num__head {
  font-size: 2.4rem;
  font-weight: 700;
  color: #228ecf;
}
main.waketoku-top .flow-step__item-text .step-num__number {
  font-size: 3.6rem;
  font-weight: 400;
  color: #94d6ff;
}
main.waketoku-top .flow-step__item-text .step-text {
  font-size: 1.6rem;
  font-weight: 500;
}
main.waketoku-top .flow-step__item-text .step-text.small {
  font-size: 1.2rem;
}
main.waketoku-top .qa-container {
  width: 100%;
  max-width: 970px;
  padding-top: 0;
  margin: 64px auto 64px;
}
@media (max-width: 1100px) {
  main.waketoku-top .qa-container {
    padding-right: 15px;
    padding-left: 15px;
    margin-top: 32px;
    margin-bottom: 32px;
  }
}
main.waketoku-top .qa-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 80px 65px;
  margin: 0 auto 0;
  background-color: #fff;
  border-radius: 16px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
@media (max-width: 1100px) {
  main.waketoku-top .qa-wrapper {
    padding: 32px 13px;
  }
}
main.waketoku-top .qa-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  gap: 24px;
  width: 100%;
  margin-bottom: 56px;
}
main.waketoku-top .qa-items__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  height: auto;
  padding: 16px 40px;
  background-color: #f5f7f8;
  border-radius: 8px;
}
main.waketoku-top .qa-items__item-text {
  position: relative;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  height: auto;
  padding-left: 48px;
  font-size: 1.6rem;
}
main.waketoku-top .qa-items__item-text-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
main.waketoku-top .qa-items__item-text .qa-small {
  font-size: 1.2rem;
}
main.waketoku-top .qa-items__item-text .qa-link {
  color: #2393d6;
  text-decoration: underline;
}
main.waketoku-top .qa-items__item-text::before {
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 33px;
  height: 33px;
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  border-radius: 50%;
}
main.waketoku-top .qa-items__item-text.q {
  font-weight: 700;
}
main.waketoku-top .qa-items__item-text.q::before {
  content: "Q";
  background-color: #228ecf;
}
main.waketoku-top .qa-items__item-text.a {
  font-weight: 500;
}
main.waketoku-top .qa-items__item-text.a::before {
  content: "A";
  background-color: #86cdce;
}
main.waketoku-top .qa-contact__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
}
main.waketoku-top .qa-contact__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 8px 0;
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  background-color: #228ecf;
}
main.waketoku-top .qa-contact__info-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 24px 0;
  border: 2px solid #cae7f1;
  border-top: none;
  border-radius: 0 0 8px 8px;
}
main.waketoku-top .qa-contact__info-text {
  font-size: 1.8rem;
  font-weight: 500;
  color: #004f7a;
  text-align: center;
}
main.waketoku-top .qa-contact__info-text-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
main.waketoku-top .qa-contact__info-text.small {
  font-size: 1.6rem;
}
main.waketoku-top .qa-contact__info-tel {
  position: relative;
  padding-left: 64px;
  font-size: 4.8rem;
  font-weight: 700;
  color: #228ecf;
}
main.waketoku-top .qa-contact__info-tel::before {
  position: absolute;
  top: 50%;
  left: 0;
  display: inline-block;
  width: 46px;
  height: 46px;
  content: "";
  background-image: url("../img/phone_icon.png");
  background-repeat: no-repeat;
  background-size: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
main.waketoku-top .qa-contact__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 300px;
  height: 48px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #004f7a;
  background-color: #e1f4ff;
  border-radius: 8px;
}
main.waketoku-top .qa-contact__btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

/* stylelint-disable block-no-empty */
/* stylelint-disable scss/double-slash-comment-empty-line-before */
@media (max-width: 1100px) {
  main.waketoku-top .mv-catch__text {
    font-size: 4.2rem;
  }
}
@media (max-width: 1100px) and (max-width: 970px) {
  main.waketoku-top .mv-catch__img img {
    right: 0;
  }
}
@media (max-width: 1100px) {
  main.waketoku-top .why-problem__text-wrap .text-bubble {
    white-space: normal;
  }
  main.waketoku-top .benefit-merit__wrap {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  main.waketoku-top .benefit-merit__text-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  main.waketoku-top .benefit-explain__img.img-3 {
    gap: 16px;
  }
  main.waketoku-top .target-wrapper {
    padding-top: 72px;
  }
}
@media (max-width: 970px) {
  main.waketoku-top .mv {
    height: 700px;
  }
  main.waketoku-top .mv-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0;
    margin-top: 0;
  }
  main.waketoku-top .mv-catch__text-wrap {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  main.waketoku-top .mv-catch__text {
    font-size: 4.2rem;
  }
  main.waketoku-top .mv-catch__img img {
    right: 0;
  }
  main.waketoku-top .mv-catch .apply-cta {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  main.waketoku-top .why-problem {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  main.waketoku-top .why-problem__text-wrap .text-bubble {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 768px) {
  main.waketoku-top .mv {
    height: 560px;
  }
  main.waketoku-top .mv-container {
    padding-right: 15px;
    padding-left: 15px;
  }
  main.waketoku-top .mv-catch {
    width: 100%;
  }
  main.waketoku-top .mv-catch__text-wrap {
    margin-bottom: 22px;
  }
  main.waketoku-top .mv-catch__text {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    height: 40px;
    font-size: 2.4rem;
  }
  main.waketoku-top .mv-catch__text.dark-blue {
    width: 80%;
    height: 42px;
    padding: 0;
    margin-bottom: 16px;
    font-size: 1.8rem;
  }
  main.waketoku-top .mv-catch__text.dark-blue::after {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  main.waketoku-top .mv-catch .apply-cta {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  main.waketoku-top .why-intro {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  main.waketoku-top .why-problem {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding-bottom: 22px;
    margin-top: 24px;
  }
  main.waketoku-top .why-problem::before {
    top: -37px;
    width: 175px;
    height: 75px;
    font-size: 2rem;
  }
  main.waketoku-top .why-problem__img {
    max-width: 258px;
  }
  main.waketoku-top .why-problem__img-wrap {
    width: 100%;
    min-width: unset;
    height: auto;
  }
  main.waketoku-top .why-problem__text-wrap .text-bubble {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 12px 40px;
    white-space: wrap;
    border-radius: 24px;
  }
  main.waketoku-top .why-solution {
    height: 350px;
  }
  main.waketoku-top .why-solution::before {
    right: unset;
    left: 50%;
    width: 329px;
    height: 278px;
    background-image: url("../img/why_solution_2_sp.png");
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  main.waketoku-top .why-solution::after {
    bottom: -130px;
    left: 50%;
    background-image: url("../img/why_solution_1_sp.png");
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  main.waketoku-top .why-solution__text {
    font-size: 1.8rem;
  }
  main.waketoku-top .why-solution__text-check {
    top: 46px;
    font-size: 2rem;
  }
  main.waketoku-top .why-solution__text-wrap {
    top: 120px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  main.waketoku-top .what-intro {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 16px 20px;
  }
  main.waketoku-top .what-sammary {
    text-align: center;
  }
  main.waketoku-top .benefit-merit__text {
    font-size: 1.4rem;
  }
  main.waketoku-top .benefit-merit__text-wrap {
    gap: 16px;
    overflow: hidden;
  }
  main.waketoku-top .benefit-merit__text-catch {
    white-space: wrap;
  }
  main.waketoku-top .benefit-merit__text-catch-wrap {
    max-width: 100%;
  }
  main.waketoku-top .benefit-explain__img.img-3 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  main.waketoku-top .benefit-explain__img.img-3 .img-wrap {
    margin-bottom: 16px;
  }
  main.waketoku-top .benefit-explain__text-wrap {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  main.waketoku-top .benefit-explain__text-description.small {
    margin-bottom: 0;
  }
  main.waketoku-top .benefit-point {
    padding-left: 82px;
  }
  main.waketoku-top .benefit-point__text {
    font-size: 1.8rem;
    text-align: center;
  }
  main.waketoku-top .commit-items {
    gap: 32px;
  }
  main.waketoku-top .commit-item {
    gap: 8px;
  }
  main.waketoku-top .commit-item__head {
    padding-left: 16px;
    font-size: 2rem;
  }
  main.waketoku-top .commit-item__head::before {
    width: 6px;
    height: 26px;
  }
  main.waketoku-top .commit-item__text {
    padding-left: 16px;
    font-size: 1.6rem;
  }
  main.waketoku-top .commit-community__title {
    margin-bottom: 16px;
    font-size: 1.8rem;
  }
  main.waketoku-top .commit-community__description-wrap {
    max-width: 100%;
    background-image: url("../img/commit_community_bg_sp.png");
  }
  main.waketoku-top .target-criteria__wrap {
    padding: 0 8px;
    padding-bottom: 24px;
  }
  main.waketoku-top .target-criteria__wrap.target {
    gap: 24px;
    padding-top: 48px;
  }
  main.waketoku-top .target-criteria__wrap.other {
    gap: 16px;
    padding-top: 62px;
    padding-bottom: 40px;
  }
  main.waketoku-top .target-criteria__title {
    top: -25px;
    width: 90%;
    height: 50px;
    font-size: 2.4rem;
  }
  main.waketoku-top .target-criteria__maker-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  main.waketoku-top .target-criteria__maker-list .maker-item__head {
    height: auto;
    padding: 12px 0;
  }
  main.waketoku-top .target-criteria__maker-list .maker-item__head-label {
    padding: 0 8px;
    margin-bottom: 4px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
  }
  main.waketoku-top .target-criteria__maker-list .maker-item__head-label.maker {
    background-color: #228ecf;
  }
  main.waketoku-top .target-criteria__maker-list .maker-item__head-label.device {
    background-color: #86cdce;
  }
  main.waketoku-top .target-criteria__maker-list .maker-item__description-wrap {
    gap: 12px;
    height: auto;
  }
  main.waketoku-top .target-other__list {
    gap: 16px;
  }
  main.waketoku-top .target-other__item-text {
    padding-left: 42px;
  }
  main.waketoku-top .target-other__item-text::before {
    left: 0;
  }
  main.waketoku-top .flow-wrapper {
    margin-top: 140px;
  }
  main.waketoku-top .flow-preparation__img {
    height: 240px;
  }
  main.waketoku-top .flow-toggle__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
  main.waketoku-top .flow-toggle__btn-text {
    font-size: 1.4rem;
  }
  main.waketoku-top .flow-photo__item .item-head {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: auto;
    padding-left: 0;
  }
  main.waketoku-top .flow-photo__item .item-head__text-number {
    left: 40%;
    min-width: 34px;
  }
  main.waketoku-top .flow-photo__item .item-description {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 26px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  main.waketoku-top .flow-photo__item .item-description__text-wrap {
    width: 100%;
  }
  main.waketoku-top .flow-step__item::before {
    left: 28px;
  }
  main.waketoku-top .flow-step__item-img-wrap {
    width: 54px;
    min-width: 54px;
    height: 59px;
  }
  main.waketoku-top .qa-items__item {
    position: relative;
    gap: 0;
  }
  main.waketoku-top .qa-items__item.show::after {
    background-image: url("../img/qa_m.png");
    -webkit-transition: background-image 0.3s ease;
    transition: background-image 0.3s ease;
  }
  main.waketoku-top .qa-items__item::after {
    position: absolute;
    top: 12px;
    right: 12px;
    display: block;
    width: 21px;
    height: 21px;
    content: "";
    background-color: #fff;
    background-image: url("../img/qa_p.png");
    background-size: 100% 100%;
    border-radius: 50%;
  }
  main.waketoku-top .qa-items__item-text-wrap {
    display: block;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    -webkit-transition: max-height 0.3s ease, margin-top 0.3s ease, opacity 0.3s ease;
    transition: max-height 0.3s ease, margin-top 0.3s ease, opacity 0.3s ease;
  }
  main.waketoku-top .qa-items__item-text-wrap.show {
    max-height: 500px;
    margin-top: 12px;
    opacity: 1;
  }
  main.waketoku-top .qa-items__item-text::before {
    font-size: 16px;
  }
  main.waketoku-top .qa-items__item-text.q::before {
    width: 24px;
    height: 24px;
  }
  main.waketoku-top .qa-items__item-text.a::before {
    width: 24px;
    height: 24px;
  }
  main.waketoku-top .qa-contact__info-wrap {
    padding: 32px 12px;
  }
  main.waketoku-top .qa-contact__info-tel {
    padding-left: 40px;
    font-size: 2.4rem;
    font-weight: 500;
  }
  main.waketoku-top .qa-contact__info-tel::before {
    width: 28px;
    height: 28px;
  }
  main.waketoku-top .qa-contact__btn-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
/* stylelint-disable no-invalid-position-at-import-rule */
/* stylelint-disable scss/double-slash-comment-empty-line-before */
main.information {
  background-color: #e1f4ff;
  background-image: url("../img/bg-image.png");
}
main.information .information-container {
  width: 100%;
  max-width: 970px;
  padding-top: 0;
  margin: 64px auto 64px;
}
@media (max-width: 1100px) {
  main.information .information-container {
    padding-right: 15px;
    padding-left: 15px;
    margin-top: 32px;
    margin-bottom: 32px;
  }
}
main.information .information-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 80px 65px;
  margin: 0 auto 0;
  background-color: #fff;
  border-radius: 16px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
@media (max-width: 1100px) {
  main.information .information-wrapper {
    padding: 32px 13px;
  }
}
main.information .information-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 40px;
  margin-bottom: 64px;
  border: 2px dashed #94d6ff;
  border-radius: 8px;
}
main.information .information-content:last-child {
  margin-bottom: 0;
}
main.information .information-content .info-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #004f7a;
}
main.information .information-content .info-title__wrap {
  position: absolute;
  left: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 12px 100px;
  background-color: #fff;
  border: 2px solid #94d6ff;
  border-radius: 8px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
main.information .information-content .info-title__wrap.price::before, main.information .information-content .info-title__wrap.price::after {
  position: absolute;
  width: 31px;
  height: 31px;
  content: "";
  background-image: url("../img/info_price.png");
}
main.information .information-content .info-title__wrap.price::before {
  left: calc(50% - 90px);
}
main.information .information-content .info-title__wrap.price::after {
  right: calc(50% - 90px);
}
main.information .information-content .info-title__wrap.date::before, main.information .information-content .info-title__wrap.date::after {
  position: absolute;
  width: 27px;
  height: 27px;
  content: "";
  background-image: url("../img/info_date.png");
}
main.information .information-content .info-title__wrap.date::before {
  left: calc(50% - 90px);
}
main.information .information-content .info-title__wrap.date::after {
  right: calc(50% - 90px);
}
main.information .information-content .info-title__wrap.achievement::before, main.information .information-content .info-title__wrap.achievement::after {
  position: absolute;
  width: 35px;
  height: 24px;
  content: "";
  background-image: url("../img/info_achievement.png");
}
main.information .information-content .info-title__wrap.achievement::before {
  left: calc(50% - 100px);
}
main.information .information-content .info-title__wrap.achievement::after {
  right: calc(50% - 100px);
}
main.information .information-content .info-subtitle {
  position: relative;
  display: inline-block;
  padding: 0 12px;
  margin-top: 60px;
  margin-bottom: 24px;
  font-size: 2rem;
  font-weight: 700;
  color: #228ecf;
  background-color: #fff;
}
main.information .information-content .info-subtitle::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -10;
  width: 140%;
  height: 1px;
  content: "";
  background-color: #228ecf;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
main.information .information-content .info-text {
  margin-bottom: 24px;
  font-size: 1.4rem;
  text-align: center;
}
main.information .information-content .info-table__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
main.information .information-content .info-table__price-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 200px;
}
main.information .information-content .info-table__date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
main.information .information-content .info-table__date-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 480px;
}
main.information .information-content .info-table__achievement {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
  row-gap: 4px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 90%;
}
main.information .information-content .info-table__achievement-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 48%;
}
main.information .information-content .info-table__achievement-item .item-dot {
  font-size: 24px;
  line-height: 1;
  color: #228ecf;
}
main.information .information-content .info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 12px;
}
main.information .information-content .info-item.head {
  width: 100%;
  background-color: #81cde8;
}
main.information .information-content .info-item.data {
  width: 100%;
  background-color: #ebfaff;
}
main.information .information-content .info-item__text {
  color: #004f7a;
}
main.information .information-content .info-item__text.head {
  font-size: 1.6rem;
}
main.information .information-content .info-item__text.data {
  font-size: 1.4rem;
}

/* stylelint-disable block-no-empty */
/* stylelint-disable no-invalid-position-at-import-rule */
/* stylelint-disable scss/double-slash-comment-empty-line-before */
@media (max-width: 1100px) {
  main.information .information-container {
    width: 100%;
    max-width: 970px;
    padding-top: 0;
    margin: 64px auto 64px;
  }
}
@media (max-width: 1100px) and (max-width: 1100px) {
  main.information .information-container {
    padding-right: 15px;
    padding-left: 15px;
    margin-top: 32px;
    margin-bottom: 32px;
  }
}
@media (max-width: 1100px) {
  main.information .information-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 80px 65px;
    margin: 0 auto 0;
    background-color: #fff;
    border-radius: 16px;
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  }
}
@media (max-width: 1100px) and (max-width: 1100px) {
  main.information .information-wrapper {
    padding: 32px 13px;
  }
}
@media (max-width: 1100px) {
  main.information .information-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    max-width: 780px;
    margin: 0 auto;
    margin-bottom: 48px;
  }
}
@media (max-width: 970px) {
  main.information .information-container {
    width: 100%;
    max-width: 970px;
    padding-top: 0;
    margin: 64px auto 64px;
  }
}
@media (max-width: 970px) and (max-width: 1100px) {
  main.information .information-container {
    padding-right: 15px;
    padding-left: 15px;
    margin-top: 32px;
    margin-bottom: 32px;
  }
}
@media (max-width: 970px) {
  main.information .information-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 80px 65px;
    margin: 0 auto 0;
    background-color: #fff;
    border-radius: 16px;
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  }
}
@media (max-width: 970px) and (max-width: 1100px) {
  main.information .information-wrapper {
    padding: 32px 13px;
  }
}
@media (max-width: 970px) {
  main.information .information-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    max-width: 780px;
    margin: 0 auto;
    margin-bottom: 64px;
  }
}
@media (max-width: 768px) {
  main.information .information-container {
    width: 100%;
    max-width: 970px;
    padding-top: 0;
    margin: 64px auto 64px;
  }
}
@media (max-width: 768px) and (max-width: 1100px) {
  main.information .information-container {
    padding-right: 15px;
    padding-left: 15px;
    margin-top: 32px;
    margin-bottom: 32px;
  }
}
@media (max-width: 768px) {
  main.information .information-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 80px 65px;
    margin: 0 auto 0;
    background-color: #fff;
    border-radius: 16px;
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  }
}
@media (max-width: 768px) and (max-width: 1100px) {
  main.information .information-wrapper {
    padding: 32px 13px;
  }
}
@media (max-width: 768px) {
  main.information .information-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    max-width: 780px;
    margin: 0 auto;
    padding: 0 12px;
    padding-bottom: 24px;
    margin-bottom: 64px;
  }
  main.information .information-content .info-title {
    font-size: 2rem;
    white-space: nowrap;
  }
  main.information .information-content .info-title__wrap {
    width: 90%;
    padding-right: 12px;
    padding-left: 12px;
  }
  main.information .information-content .info-title__wrap.price::before, main.information .information-content .info-title__wrap.price::after {
    width: 24px;
    height: 24px;
    background-size: contain;
  }
  main.information .information-content .info-title__wrap.date::before, main.information .information-content .info-title__wrap.date::after {
    width: 24px;
    height: 24px;
    background-size: contain;
  }
  main.information .information-content .info-title__wrap.achievement::before, main.information .information-content .info-title__wrap.achievement::after {
    width: 24px;
    height: 16px;
    background-size: contain;
  }
  main.information .information-content .info-subtitle {
    margin-top: 48px;
    margin-bottom: 16px;
  }
  main.information .information-content .info-text {
    margin-bottom: 24px;
    text-align: left;
  }
  main.information .information-content .info-table__price {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  main.information .information-content .info-table__price-items {
    width: 100%;
  }
  main.information .information-content .info-table__date-items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  main.information .information-content .info-table__achievement {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  main.information .information-content .info-table__achievement-item {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    font-size: 1.6rem;
  }
  main.information .information-content .info-item.head {
    padding: 8px;
  }
  main.information .information-content .info-item.data {
    padding: 8px;
  }
}
/* stylelint-disable no-invalid-position-at-import-rule */
/* stylelint-disable scss/double-slash-comment-empty-line-before */
main.column-archive .carousel-container {
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
  margin-top: 80px;
}
main.column-archive .carousel-container .carousel__wrapper .carousel__item {
  max-width: 300px;
  text-align: center;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
main.column-archive .carousel-container .carousel__wrapper .carousel__item:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
main.column-archive .carousel-container .carousel__wrapper .carousel__item .carousel__item-link {
  color: inherit;
  text-decoration: none;
}
main.column-archive .carousel-container .carousel__wrapper .carousel__item .carousel__item-thumbnail {
  width: 300px;
  height: 200px;
  margin-bottom: 10px;
}
main.column-archive .carousel-container .carousel__wrapper .carousel__item .carousel__item-thumbnail img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
main.column-archive .carousel-container .carousel__wrapper .carousel__item .carousel__item-title {
  font-size: 1.2rem;
  font-weight: bold;
}
main.column-archive .carousel-container .slick-list {
  overflow: hidden;
}
main.column-archive .carousel-container .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
main.column-archive .carousel-container .slick-prev,
main.column-archive .carousel-container .slick-next {
  background-repeat: no-repeat;
}
main.column-archive .carousel-container .slick-prev::before,
main.column-archive .carousel-container .slick-next::before {
  content: "";
}
main.column-archive .carousel-container .slick-prev {
  background-image: url("../img/carousel_allow_left.png");
}
main.column-archive .carousel-container .slick-next {
  background-image: url("../img/carousel_allow_right.png");
}
main.column-archive .carousel-container .slick-dots {
  bottom: -25px;
}
main.column-archive .carousel-container .slick-dots li {
  margin: 0 5px;
}
main.column-archive .carousel-container .slick-dots li button::before {
  font-size: 12px;
  color: #000;
}
main.column-archive .carousel-container .slick-dots li.slick-active button::before {
  color: #228ecf;
}
main.column-archive .archive-field-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  width: 100%;
  max-width: 970px;
  margin: 80px auto;
}
main.column-archive .archive-field .column-list__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
  gap: 40px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  height: 100%;
}
main.column-archive .archive-field .column-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  width: 100%;
  height: 100%;
  max-height: 180px;
}
main.column-archive .archive-field .column-list__item .item-thumbnail {
  width: 218px;
  min-width: 218px;
  height: 145px;
}
main.column-archive .archive-field .column-list__item .item-thumbnail__img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
main.column-archive .archive-field .column-list__item .item-content__title {
  max-height: 55px;
  margin-bottom: 16px;
  overflow: hidden;
  font-size: 2rem;
  font-weight: 700;
  color: #004f7a;
  text-overflow: clip;
  white-space: wrap;
}
main.column-archive .archive-field .column-list__item .item-content__description {
  overflow: hidden;
  font-size: 1.6rem;
  text-overflow: clip;
  white-space: wrap;
}

main.column-single .column-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 970px;
  margin: 0 auto;
}
main.column-single .content__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 970px;
  margin: 0 auto;
  gap: 40px;
  margin-top: 40px;
}
main.column-single .content__head .column-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #004f7a;
}
main.column-single .content__field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
main.column-single .content__field .column-content {
  width: 100%;
}
main.column-single .content__field .column-content .item-thumbnail {
  width: 100%;
  height: 100%;
  max-height: 320px;
  margin-bottom: 40px;
  overflow: hidden;
  border-radius: 8px;
}
main.column-single .content__field .column-content .item-thumbnail__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
main.column-single .content__field .column-content__body {
  font-size: 1.6rem;
}
main.column-single .content__field .column-content__body > h2 {
  position: relative;
  padding-left: 20px;
  margin-top: 16px;
  margin-bottom: 16px;
  font-size: 2rem;
  font-weight: 700;
  color: #004f7a;
}
main.column-single .content__field .column-content__body > h2::before {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 4px;
  height: 90%;
  content: "";
  background-color: #004f7a;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
main.column-single .content__field .column-content__body > h3 {
  position: relative;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 16px;
  font-size: 1.8rem;
  font-weight: 700;
  color: #004f7a;
}
main.column-single .content__field .column-content__body > h3::before {
  position: absolute;
  bottom: -4px;
  left: 0;
  display: block;
  width: 40%;
  height: 2px;
  content: "";
  background-color: #004f7a;
}
main.column-single .content__field .column-content__body > p {
  /* stylelint-disable-next-line no-descending-specificity */
}
main.column-single .content__field .column-content__body > p > img {
  width: 100%;
  height: auto;
  margin-bottom: 16px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
main.column-single .content__field .column-content__body > ul {
  padding: 0 20px;
  margin-top: 12px;
  margin-bottom: 12px;
  list-style: disc outside;
}
main.column-single .content__field .column-content__body > ol {
  padding: 0 20px;
  margin-top: 12px;
  margin-bottom: 12px;
  list-style: decimal outside;
}
main.column-single .content__field .column-content__body > ul li, main.column-single .content__field .column-content__body > ol li {
  margin-bottom: 4px;
  line-height: 1.6;
}

/* stylelint-disable block-no-empty */
/* stylelint-disable no-invalid-position-at-import-rule */
/* stylelint-disable scss/double-slash-comment-empty-line-before */
@media (max-width: 1100px) {
  main.column-archive .archive-field-container {
    padding: 0 15px;
  }
  main.column-archive .archive-field .column-list__item {
    max-height: 100%;
  }
  main.column-archive .archive-field .column-list__item .item-thumbnail {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 768px) {
  main.column-archive .carousel-container {
    width: 100%;
    padding: 0 15px;
    margin-top: 40px;
  }
  main.column-archive .carousel-container .carousel__wrapper .carousel__item {
    width: 100%;
    max-width: unset;
  }
  main.column-archive .carousel-container .carousel__wrapper .carousel__item .carousel__item-thumbnail {
    width: 100%;
    height: auto;
  }
  main.column-archive .carousel-container .slick-prev,
  main.column-archive .carousel-container .slick-next {
    display: none !important;
  }
  main.column-archive .archive-field-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 0;
  }
  main.column-archive .archive-field .column-list__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 1100px) {
  main.column-single {
    padding-top: 80px;
  }
  main.column-single .column-container {
    padding: 0 15px;
  }
}
@media (max-width: 970px) {
  main.column-single .content__field {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  main.column-single .content__field .column-content .item-thumbnail {
    width: 100%;
    height: 100%;
  }
  main.column-single .content__field .column-content .item-thumbnail > img {
    width: 100%;
    max-height: 212px;
  }
}
/* stylelint-disable no-invalid-position-at-import-rule */
/* stylelint-disable scss/double-slash-comment-empty-line-before */
.download-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin-top: 48px;
}
.download-button__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 408px;
  height: 64px;
  padding: 22px 76px;
  padding-left: 108px;
  background-color: #228ecf;
  border-radius: 32px;
  -webkit-box-shadow: 0 0 6px 3px rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 6px 3px rgba(0, 0, 0, 0.16);
}
.download-button__link {
  position: relative;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
}
.download-button__link::before {
  position: absolute;
  top: 50%;
  left: -32px;
  width: 20px;
  height: 24px;
  content: "";
  background-image: url("../img/download_icon.png");
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

main.documents .documents-container {
  width: 100%;
  max-width: 970px;
  padding-top: 0;
  margin: 64px auto 64px;
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}
@media (max-width: 1100px) {
  main.documents .documents-container {
    padding-right: 15px;
    padding-left: 15px;
    margin-top: 32px;
    margin-bottom: 32px;
  }
}
main.documents .documents-top {
  width: 100%;
  max-width: 970px;
  padding-top: 0;
  margin: 64px auto 64px;
  padding: 64px 90px;
  background-color: #eefaff;
  border-radius: 8px;
}
@media (max-width: 1100px) {
  main.documents .documents-top {
    padding-right: 15px;
    padding-left: 15px;
    margin-top: 32px;
    margin-bottom: 32px;
  }
}
main.documents .documents-top__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 56px;
}
main.documents .documents-top__title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #004f7a;
}
main.documents .documents-top__title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
main.documents .documents-top .top-info-wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
main.documents .documents-top .top-info-text {
  font-size: 1.6rem;
  font-weight: 500;
}
main.documents .documents-top .top-info-text-wrap {
  max-width: 50%;
}
main.documents .documents-top .top-info-image-wrap {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 40%;
}
main.documents .documents-top .top-info-image-img {
  width: 100%;
}
main.documents .documents-top .download-button {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 0;
}
main.documents .documents-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 300px;
  overflow: hidden;
  border-radius: 8px;
  -webkit-box-shadow: 0 0 6px 3px rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 6px 3px rgba(0, 0, 0, 0.16);
}
main.documents .documents-item__image-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
}
main.documents .documents-item__image-img {
  width: 100%;
  max-height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
main.documents .documents-item__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #004f7a;
}
main.documents .documents-item__title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 16px 20px 34px;
  text-overflow: ellipsis;
}

main.document {
  background-color: #e1f4ff;
}
main.document .document-container {
  width: 100%;
  max-width: 970px;
  padding-top: 0;
  margin: 64px auto 64px;
}
@media (max-width: 1100px) {
  main.document .document-container {
    padding-right: 15px;
    padding-left: 15px;
    margin-top: 32px;
    margin-bottom: 32px;
  }
}
main.document .document-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  padding: 64px;
  background-color: #fff;
  border-radius: 8px;
  -webkit-box-shadow: 0 0 6px 3px rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 6px 3px rgba(0, 0, 0, 0.16);
}
main.document .document-item__title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #004f7a;
  white-space: wrap;
}
main.document .document-item__title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50%;
}
main.document .document-item .document-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
main.document .document-item .document-info__image {
  max-width: 456px;
}
main.document .document-item .document-info__image-wrap {
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
}
main.document .document-item .document-info-text__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  max-width: 50%;
}
main.document .document-item .document-info-text__title {
  font-size: 1.6rem;
  font-weight: 700;
}
main.document .document-item .document-info-text__text {
  font-size: 1.6rem;
  font-weight: 500;
}

/* stylelint-disable block-no-empty */
/* stylelint-disable no-invalid-position-at-import-rule */
/* stylelint-disable scss/double-slash-comment-empty-line-before */
.download-button {
  margin-top: 16px;
}
.download-button__wrap {
  width: 100%;
  padding-right: 12px;
  padding-left: 44px;
}
.download-button__link {
  padding: 0;
  font-size: 1.6rem;
  white-space: nowrap;
}
@media (max-width: 768px) {
  main.documents .documents-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  main.documents .documents-top {
    padding: 48px 15px;
    margin-top: 0;
  }
  main.documents .documents-top .top-info-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  main.documents .documents-top .top-info-text-wrap {
    width: 100%;
    max-width: 100%;
  }
  main.documents .documents-top .top-info-image-wrap {
    position: relative;
    top: 0;
    right: 0;
    max-width: 100%;
  }
  main.documents .documents-item {
    width: 100%;
    max-width: unset;
  }
  main.documents .documents-item__image-wrap {
    height: auto;
  }
  main.document .document-item {
    width: 100%;
    padding: 48px 12px;
  }
  main.document .document-item__title-wrap {
    width: 100%;
    max-width: unset;
  }
  main.document .document-item .document-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  main.document .document-item .document-info__image {
    width: 100%;
    max-width: unset;
  }
  main.document .document-item .document-info-text__wrap {
    gap: 16px;
    width: 100%;
    max-width: unset;
  }
}
/* stylelint-disable no-invalid-position-at-import-rule */
/* stylelint-disable scss/double-slash-comment-empty-line-before */
main.partner .partner-container {
  width: 100%;
  max-width: 780px;
  padding-top: 0;
  margin: 64px auto 64px;
}
@media (max-width: 1100px) {
  main.partner .partner-container {
    padding-right: 15px;
    padding-left: 15px;
    margin-top: 32px;
    margin-bottom: 32px;
  }
}
main.partner .partner-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
main.partner .partner-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 38px 46px;
  background-color: #fff;
  border-radius: 8px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
main.partner .partner-item__info-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 400px;
}
main.partner .partner-item__name {
  position: relative;
  width: 400px;
  font-size: 1.8rem;
  font-weight: bold;
  color: #004f7a;
}
main.partner .partner-item__name::before {
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #c2c2c2;
}
main.partner .partner-item__url {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.6rem;
  color: #004f7a;
  white-space: wrap;
}
main.partner .partner-item__image {
  width: 200px;
  height: auto;
}
main.partner .content {
  padding-block: 100px 120px;
}

/* stylelint-disable block-no-empty */
/* stylelint-disable no-invalid-position-at-import-rule */
/* stylelint-disable scss/double-slash-comment-empty-line-before */
main.partner .partner-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
main.partner .partner-item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
main.partner .partner-item__info-wrapper {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
main.partner .partner-item__name {
  position: relative;
  width: 100%;
  padding-bottom: 22px;
  text-align: center;
}
main.partner .partner-item__name::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #c2c2c2;
}
main.partner .partner-item__url {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.4rem;
  color: #004f7a;
  white-space: wrap;
}
main.partner .partner-item__image {
  width: 220px;
  height: auto;
}

/* stylelint-disable no-invalid-position-at-import-rule */
/* stylelint-disable scss/double-slash-comment-empty-line-before */
main.campaign {
  background-color: #e1f4ff;
}
main.campaign .campaign-container {
  width: 100%;
  max-width: 970px;
  padding-top: 0;
  margin: 64px auto 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 64px 95px;
  background-color: #fff;
  border-radius: 8px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
@media (max-width: 1100px) {
  main.campaign .campaign-container {
    padding-right: 15px;
    padding-left: 15px;
    margin-top: 32px;
    margin-bottom: 32px;
  }
}
main.campaign .apply-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin-top: 64px;
}
main.campaign .apply-cta__btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 300px;
  height: 64px;
  font-size: 1.6rem;
  font-weight: 700;
  background-color: #ffcf00;
  border-radius: 32px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
main.campaign .apply-cta__btn::before {
  position: absolute;
  top: 50%;
  right: 10%;
  width: 8px;
  height: 8px;
  content: "";
  border-top: 2px solid #161616;
  border-right: 2px solid #161616;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
main.campaign .apply-cta__btn:hover {
  opacity: 0.8;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
main.campaign .campaign-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
main.campaign .campaign-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
main.campaign .campaign-intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  max-width: 685px;
  margin-top: 64px;
}
main.campaign .campaign-intro__text > p {
  font-size: 2rem;
  font-weight: 700;
  color: #004f7a;
}
main.campaign .campaign-overview__wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  max-width: 780px;
  padding: 76px 18px 40px;
  margin-top: 104px;
  background-color: #e1f4ff;
  border: 2px dashed #94d6ff;
  border-radius: 8px;
}
main.campaign .campaign-overview .campaign-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
}
main.campaign .campaign-overview .campaign-title__wrap {
  position: absolute;
  top: -31px;
  left: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 308px;
  height: 62px;
  background-color: #228ecf;
  border-radius: 8px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
main.campaign .campaign-overview .campaign-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
}
main.campaign .campaign-overview .campaign-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  width: 100%;
}
main.campaign .campaign-overview .campaign-list__item-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 160px;
  overflow: hidden;
  font-size: 1.8rem;
  font-weight: 700;
  color: #004f7a;
  white-space: nowrap;
}
main.campaign .campaign-overview .campaign-list__item-head::after {
  content: "・・・・・";
}
main.campaign .campaign-overview .campaign-list__item-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  font-size: 1.4rem;
}
main.campaign .campaign-overview .campaign-list__item-text p {
  color: #004f7a;
}
main.campaign .campaign-overview .campaign-list__item-text p > strong {
  font-weight: 700;
  background-color: #ffe47a;
}
main.campaign .campaign-caution {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  margin-top: 24px;
}
main.campaign .campaign-caution p {
  font-size: 1.4rem;
}

/* stylelint-disable no-invalid-position-at-import-rule */
/* stylelint-disable scss/double-slash-comment-empty-line-before */
main.campaign .campaign-overview .campaign-title {
  font-size: 1.8rem;
}
main.campaign .campaign-overview .campaign-title__wrap {
  top: -25px;
  width: 250px;
  height: 50px;
}
main.campaign .campaign-overview .campaign-list__item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  width: 100%;
}
main.campaign .campaign-overview .campaign-list__item-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  padding: 2px 0;
  background-color: #cae7f1;
}
main.campaign .campaign-overview .campaign-list__item-head::after {
  content: "";
}
main.campaign .campaign-overview .campaign-list__item-text p {
  line-height: 1.5;
}
[class^=is-] {
  display: none !important;
}

.is-sp {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .is-sp {
    display: block !important;
  }
}
.is-lt-md {
  display: none !important;
}
@media screen and (max-width: 970px) {
  .is-lt-md {
    display: block !important;
  }
}
.is-lt-lg {
  display: none !important;
}
@media screen and (max-width: 1100px) {
  .is-lt-lg {
    display: block !important;
  }
}
.is-gt-sp {
  display: none !important;
}
@media screen and (min-width: 769px) {
  .is-gt-sp {
    display: block !important;
  }
}
.is-gt-md {
  display: none !important;
}
@media screen and (min-width: 971px) {
  .is-gt-md {
    display: block !important;
  }
}
.is-gt-lg {
  display: none !important;
}
@media screen and (min-width: 1100px) {
  .is-gt-lg {
    display: block !important;
  }
}
.is-pc {
  display: none !important;
}
@media screen and (min-width: 1101px) {
  .is-pc {
    display: block !important;
  }
}/*# sourceMappingURL=toho-gas-style.css.map */