@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap" rel="stylesheet"');
h1, h2, h3, h4, h5, h6 {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

p, dt, dd, li, a {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

img {
  width: 100%;
  vertical-align: middle;
}

a:hover {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

body {
  background: #F8F8F8;
}

.btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  display: inline-block;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: inherit;
  padding: 10px 20px;
  color: #fff;
  text-align: center;
  border: 1px solid #1C3F72;
}
.btn:hover {
  opacity: 0.7;
}
.btn--default {
  background: #1C3F72;
}
.btn--primary {
  background: #2db2b5;
  border: 1px solid #2db2b5;
}
.btn--clear {
  background: transparent;
  color: #111;
}

.util-title {
  font-size: 48px;
  font-weight: bold;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .util-title {
    font-size: 36px;
  }
}
.util-title small {
  font-size: 16px;
  display: block;
  margin-bottom: 16px;
}

.bold {
  font-weight: bold;
}

.defauld-table {
  table-layout: fixed;
  width: 100%;
  min-width: 738px;
}
.defauld-table caption {
  font-weight: bold;
  margin-bottom: 4px;
}
.defauld-table th, .defauld-table td {
  border: 1px solid #ccc;
  padding: 16px 8px;
  vertical-align: middle;
}
.defauld-table th {
  background: #eee;
  font-weight: bold;
}
.defauld-table th:first-child {
  width: 25%;
  min-width: 310px;
}

ul {
  margin: 24px 0;
}
ul li {
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  ul li {
    font-size: 16px;
  }
}

.t-link {
  color: #2db2b5;
  font-weight: bold;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.t-link:hover {
  opacity: 0.7;
}

.header {
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(248, 248, 248, 0.8);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
@media screen and (max-width: 1139px) {
  .header {
    height: 80px;
  }
}
.header__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding: 20px;
}
.header__left {
  text-align: center;
}
.header__logo {
  width: 150px;
  position: relative;
  z-index: 9999;
}
.header__title {
  font-weight: bold;
  font-size: 18px;
}
@media screen and (max-width: 1139px) {
  .header__title {
    font-size: 16px;
  }
}
@media screen and (max-width: 1139px) {
  .header__btn + .header__btn {
    margin-top: 20px;
  }
}
@media screen and (max-width: 1139px) {
  .header__btn a {
    width: 100%;
  }
}
.header #g-nav {
  height: 100%;
}
.header #g-nav-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
  gap: 20px;
}
@media screen and (max-width: 1139px) {
  .header #g-nav-list {
    display: block;
    margin-top: 80px;
    padding: 0 15px;
  }
  .header #g-nav-list > * {
    display: block;
    width: 100%;
  }
}
.header #g-nav-list ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: inherit;
}
@media screen and (max-width: 1139px) {
  .header #g-nav-list ul {
    display: block;
    height: unset;
    margin: 0 auto;
  }
}
.header #g-nav-list ul li {
  height: inherit;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.header #g-nav-list ul li a {
  padding: 0 clamp(4px, 0.66vw, 14px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.header #g-nav-list ul li a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 1139px) {
  .header #g-nav-list ul li a {
    padding: 20px;
  }
}

@media screen and (max-width: 1139px) {
  #g-nav {
    position: fixed;
    z-index: 999;
    top: 0;
    right: -120%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(12px);
            backdrop-filter: blur(12px);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  #g-nav.panelactive {
    right: 0;
  }
  #g-nav.panelactive#g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh; /*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  #g-nav ul {
    /*ナビゲーション天地中央揃え*/
    z-index: 999;
  }
  #g-nav li {
    list-style: none;
    text-align: center;
  }
  #g-nav li a {
    color: #333;
    text-decoration: none;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
  }
  .openbtn {
    position: fixed;
    z-index: 9999;
    top: 15px;
    right: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
  }
  .openbtn span {
    display: inline-block;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #666;
    width: 45%;
  }
  .openbtn span:nth-of-type(1) {
    top: 15px;
  }
  .openbtn span:nth-of-type(2) {
    top: 23px;
  }
  .openbtn span:nth-of-type(3) {
    top: 31px;
  }
  .openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    -webkit-transform: translateY(6px) rotate(-45deg);
            transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }
  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    -webkit-transform: translateY(-6px) rotate(45deg);
            transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }
}
body.fixed {
  height: 100%;
  overflow: hidden;
}

.footer {
  background: #eee;
}
.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px;
  padding-top: 80px;
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .footer__inner {
    padding-top: 40px;
  }
}
.footer__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 68px;
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .footer__content {
    padding-bottom: 40px;
    gap: 34px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer__logo {
  width: 150px;
}
.footer__nav {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.footer__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .footer__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.footer__item {
  width: calc((100% - 160px) / 5);
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .footer__item {
    width: 100%;
  }
}
.footer__child-list {
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .footer__child-list {
    margin-top: 8px;
    margin-left: 1em;
  }
}
.footer__child-item {
  padding: 8px 0;
}
@media screen and (max-width: 767px) {
  .footer__child-item {
    padding: 4px 0;
  }
}
.footer__child-item a {
  font-size: 14px;
  line-height: 1.5;
}
.footer__content2 {
  border-top: 1px solid #000;
  padding-top: 32px;
  padding-bottom: 32px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .footer__content2 {
    padding-top: 16px;
    padding-bottom: 16px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.footer__body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .footer__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
}
.footer__body > * {
  font-size: 14px;
}
.footer__body a {
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .footer__copy {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
        -ms-flex-order: 4;
            order: 4;
  }
}
@media screen and (max-width: 767px) {
  .footer__link:nth-child(2) {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media screen and (max-width: 767px) {
  .footer__link:nth-child(3) {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media screen and (max-width: 767px) {
  .footer__link:nth-child(4) {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
  }
}
.footer__sns-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .footer__sns-box {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
}
.footer__icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
}
.footer__icon--x {
  background: #000;
}
.footer__icon--facebook {
  background: #1877f2;
}
.footer__icon--line {
  background: #06C755;
}

.fv__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px;
  padding-top: 150px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .fv__inner {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.fv__title {
  font-size: 56px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .fv__title {
    font-size: 40px;
  }
}
.fv__lead {
  margin-top: 24px;
  text-align: center;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .fv__lead {
    font-size: 16px;
  }
}
.fv__content {
  max-width: 800px;
  margin: 80px auto 0;
  background: #eeeeee;
  padding: 30px 40px;
}
@media screen and (max-width: 767px) {
  .fv__content {
    margin-top: 40px;
    padding: 30px 20px;
  }
}
.fv__sub-title {
  font-weight: bold;
  font-size: 18px;
}
.fv__text {
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .fv__text {
    font-size: 16px;
  }
}
.fv__btns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .fv__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 20px;
  }
}

.mv__inner {
  max-width: 1440px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .mv__inner {
    padding: 0 15px;
  }
}

.history__inner {
  max-width: 768px;
  margin: 0 auto;
  padding: 225px 15px 112px;
}
@media screen and (max-width: 767px) {
  .history__inner {
    padding: 100px 15px 50px;
  }
}
.history__lead {
  margin-top: 24px;
}
.history .btn {
  margin-top: 32px;
}
.history__content {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .history__content {
    margin-top: 40px;
  }
}

.time-line {
  position: relative;
  padding-top: 10px;
}
.time-line::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 16px;
  background: #111;
  width: 3px;
  height: 30px;
}
@media screen and (max-width: 767px) {
  .time-line::before {
    left: 11px;
  }
}
.time-line__item {
  position: relative;
  padding-left: 80px;
  padding-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .time-line__item {
    padding-left: 40px;
    padding-bottom: 25px;
  }
}
.time-line__item::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 10px;
  width: 15px;
  height: 15px;
  background: #111;
  border-radius: 100px;
}
@media screen and (max-width: 767px) {
  .time-line__item::before {
    left: 5px;
  }
}
.time-line__item::after {
  content: "";
  position: absolute;
  top: 41px;
  left: 16px;
  background: #111;
  width: 3px;
  height: calc(100% - 35px);
}
@media screen and (max-width: 767px) {
  .time-line__item::after {
    left: 11px;
  }
}
.time-line__item:last-child {
  padding-bottom: 10px;
}
.time-line__title {
  font-size: 40px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .time-line__title {
    font-size: 35px;
  }
}
.time-line__wrap {
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .time-line__wrap {
    margin-top: 16px;
  }
}
.time-line__wrap > * + * {
  margin-top: 1em;
}
.time-line__wrap ul {
  list-style: disc;
  margin-left: 1.3em;
  margin-top: 6px;
}
.time-line__text {
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .time-line__text {
    font-size: 16px;
  }
}

.beyond__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px;
  padding-top: 112px;
  padding-bottom: 112px;
}
@media screen and (max-width: 767px) {
  .beyond__inner {
    padding-top: 56px;
    padding-bottom: 56px;
  }
}
.beyond__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
}
@media screen and (max-width: 767px) {
  .beyond__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
.beyond__body {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.beyond__img {
  width: 45%;
}
@media screen and (max-width: 767px) {
  .beyond__img {
    width: 100%;
  }
}
.beyond__wrap {
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .beyond__wrap {
    margin-top: 12px;
  }
}
.beyond__wrap > * + * {
  margin-top: 1em;
}
.beyond .btn {
  margin-top: 24px;
}

.value__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px;
  padding-top: 112px;
  padding-bottom: 112px;
}
@media screen and (max-width: 767px) {
  .value__inner {
    padding-top: 56px;
    padding-bottom: 56px;
  }
}
.value__title {
  text-align: center;
  margin: 0 auto;
}
.value__lead {
  margin-top: 24px;
  text-align: center;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .value__lead {
    font-size: 16px;
    margin-top: 12px;
  }
}
.value__content {
  margin-top: 76px;
}
@media screen and (max-width: 767px) {
  .value__content {
    margin-top: 38px;
  }
}
.value__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 48px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .value__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.value__list li {
  width: calc((100% - 96px) / 3);
}
@media screen and (max-width: 767px) {
  .value__list li {
    width: 100%;
  }
}
.value__list li a {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .value__list li a {
    margin-top: 20px;
  }
}
.value__icon {
  height: 70px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .value__icon {
    width: 35px;
    height: auto;
  }
}
.value__icon svg {
  height: 100%;
  width: auto;
}
@media screen and (max-width: 767px) {
  .value__icon svg {
    width: 100%;
    height: auto;
  }
}
.value__sub-title {
  margin-top: 16px;
  font-size: 32px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .value__sub-title {
    font-size: 24px;
    margin-top: 8px;
  }
}
.value__text {
  margin-top: 24px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .value__text {
    margin-top: 12px;
  }
}

.future__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px;
  padding-top: 112px;
  padding-bottom: 112px;
}
@media screen and (max-width: 767px) {
  .future__inner {
    padding-top: 56px;
    padding-bottom: 56px;
  }
}
.future__title {
  text-align: center;
  margin: 0 auto;
}
.future__lead {
  margin-top: 24px;
  text-align: center;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .future__lead {
    margin-top: 12px;
    font-size: 16px;
  }
}
.future__content {
  margin-top: 76px;
}
@media screen and (max-width: 767px) {
  .future__content {
    margin-top: 38px;
  }
}
.future__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .future__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
}
.future__list li {
  width: calc((100% - 32px) / 2);
}
@media screen and (max-width: 767px) {
  .future__list li {
    width: 100%;
  }
}
.future__body {
  background: #fff;
  padding: 52px 48px;
}
@media screen and (max-width: 767px) {
  .future__body {
    padding: 24px;
  }
}
.future__sub-title {
  font-size: 40px;
}
@media screen and (max-width: 767px) {
  .future__sub-title {
    font-size: 32px;
  }
}
.future__sub-title small {
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .future__sub-title small {
    margin-top: 4px;
  }
}
.future__text {
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .future__text {
    margin-top: 12px;
  }
}
.future__btn {
  text-align: center;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .future__btn {
    margin-top: 20px;
  }
}

.pro__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px;
  padding-top: 112px;
  padding-bottom: 112px;
}
@media screen and (max-width: 767px) {
  .pro__inner {
    padding-top: 56px;
    padding-bottom: 56px;
  }
}
.pro__title {
  text-align: center;
  margin: 0 auto;
}
.pro__lead {
  margin-top: 24px;
  text-align: center;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .pro__lead {
    font-size: 16px;
    margin-top: 12px;
  }
}
.pro__btn {
  margin-top: 32px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .pro__btn {
    margin-top: 16px;
  }
}
.pro__img {
  width: 100%;
  margin: 80px auto 0;
}
@media screen and (max-width: 767px) {
  .pro__img {
    margin-top: 40px;
  }
}

.voice__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px;
  padding-top: 112px;
  padding-bottom: 200px;
}
@media screen and (max-width: 767px) {
  .voice__inner {
    padding-top: 56px;
    padding-bottom: 100px;
  }
}
.voice__content {
  margin-top: 76px;
}
@media screen and (max-width: 767px) {
  .voice__content {
    margin-top: 38px;
  }
}
.voice__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 48px;
}
@media screen and (max-width: 767px) {
  .voice__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.voice__list li {
  width: calc((100% - 96px) / 3);
}
@media screen and (max-width: 767px) {
  .voice__list li {
    width: 100%;
  }
}
.voice__icon {
  width: 56px;
}
@media screen and (max-width: 767px) {
  .voice__icon {
    margin: 0 auto;
  }
}
.voice__type {
  margin-top: 16px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .voice__type {
    margin-top: 8px;
  }
}
.voice__text {
  margin-top: 32px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .voice__text {
    margin-top: 16px;
    font-size: 16px;
  }
}

.history-index__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px;
  padding-top: 225px;
  padding-bottom: 112px;
}
@media screen and (max-width: 767px) {
  .history-index__inner {
    padding-top: 100px;
    padding-bottom: 50px;
  }
}
.history-index__content {
  margin-top: 76px;
}
@media screen and (max-width: 767px) {
  .history-index__content {
    margin-top: 38px;
  }
}
.history-index__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .history-index__list {
    gap: 0;
  }
}
.history-index__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}
@media screen and (max-width: 1139px) {
  .history-index__item {
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .history-index__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}
@media screen and (max-width: 767px) {
  .history-index__item:first-child {
    gap: 30px;
  }
}
.history-index__item:first-child .history-index__title {
  top: -0.5em;
}
@media screen and (max-width: 767px) {
  .history-index__item:first-child .history-index__title {
    top: auto;
  }
}
.history-index__item:last-child .history-index__body::before {
  content: none;
}
.history-index__title-box {
  width: 50%;
  min-width: 379px;
  position: relative;
}
.history-index__title {
  position: absolute;
}
@media screen and (max-width: 1139px) {
  .history-index__title {
    font-size: 34px;
  }
}
@media screen and (max-width: 767px) {
  .history-index__title {
    position: relative;
  }
}
.history-index__icon {
  width: 50px;
  text-align: center;
}
.history-index__icon svg {
  height: 50px;
}
.history-index__body {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  position: relative;
  padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .history-index__body {
    gap: 15px;
  }
}
.history-index__body::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 24px;
  width: 2px;
  height: calc(100% - 60px);
  background: #333;
}
.history-index__sub-title a {
  font-size: 22px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .history-index__sub-title a {
    font-size: 20px;
  }
}
.history-index__sub-title a:hover {
  opacity: 0.7;
}
.history-index__text {
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .history-index__text {
    font-size: 16px;
  }
}

.default-content:last-child .default-content__inner {
  padding-bottom: 200px;
}
.default-content__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 112px 15px;
}
@media screen and (max-width: 767px) {
  .default-content__inner {
    padding: 56px 15px;
  }
}
.default-content__content {
  margin-top: 76px;
}
@media screen and (max-width: 767px) {
  .default-content__content {
    margin-top: 38px;
  }
}
.default-content__content > .default-content__text + .default-content__text {
  margin-top: 1.4em;
}
.default-content__sub-title {
  margin-top: 16px;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .default-content__sub-title {
    font-size: 24px;
  }
}
.default-content__text {
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .default-content__text {
    font-size: 16px;
  }
}
.default-content__img {
  margin-top: 200px;
}
@media screen and (max-width: 767px) {
  .default-content__img {
    margin-top: 100px;
  }
}
.default-content__table {
  margin-top: 24px;
}
.default-content__list {
  list-style: disc;
  margin-left: 1.5em;
}
.default-content__btn {
  margin-top: 40px;
}
.default-content__btn--center {
  text-align: center;
}
.default-content__mini-title {
  margin-bottom: 10px;
  display: inline-block;
}/*# sourceMappingURL=style.css.map */