@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul,
ol {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.5;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

ul,
ol {
  list-style: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
}

article > * + * {
  margin-top: 1em;
}

input,
button,
textarea,
select {
  font: inherit;
}

img:not([alt]) {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

input,
button,
select,
textarea {
  font: inherit;
  border: none;
  border-radius: 0;
  outline: none;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  resize: none;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 400;
}
/*****************************************
 * vw(数値,幅)の計算
******************************************/
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  font-size: 10px;
  font-synthesis: none; /* 擬似の太字/斜体を作らせない */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: YuGothic, "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", "ヒラギノ角ゴ Pro W3", sans-serif;
  font-weight: 400;
  color: #1e2b2f;
  line-height: 1.6;
  background: #e7ecef;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
}

strong, b {
  font-weight: 600;
}

body.no-scroll {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

img {
  width: 100%;
}

ol {
  counter-reset: listnum;
}

address {
  font: inherit;
}

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

.tb-only {
  display: none;
}
@media screen and (max-width: 840px) {
  .tb-only {
    display: block;
  }
}

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

.header {
  z-index: 500;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 840px) {
  .header {
    height: 137px;
  }
}
@media screen and (max-width: 540px) {
  .header {
    height: 63px;
  }
}
@media screen and (max-width: 840px) {
  .header::before {
    z-index: -1;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(10px);
    background: linear-gradient(135deg, rgba(47, 82, 110, 0.2), #3897d0);
    -webkit-filter: brightness(73%) blur(2px);
            filter: brightness(73%) blur(2px);
  }
}

.header__inner {
  margin-inline: auto;
  padding-block: 17px;
  width: 95%;
  max-width: 1280px;
  height: initial;
  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;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}
@media screen and (max-width: 1140px) {
  .header__inner {
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
  }
}
@media screen and (max-width: 840px) {
  .header__inner {
    padding-block: 14px;
    width: 90%;
    max-width: 90%;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
}
@media screen and (max-width: 540px) {
  .header__inner {
    padding-block: 7px;
    width: 90%;
    max-width: 90%;
  }
}

.header__left,
.header__right {
  height: initial;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.header__nav {
  height: initial;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 840px) {
  .header__nav {
    display: none;
  }
}

.header__left {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 840px) {
  .header__left {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media screen and (max-width: 320px) {
  .header__left {
    display: none;
  }
}
.header__left .header__nav {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.header__right {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 840px) {
  .header__right {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.header__right .header__nav {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.header__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: initial;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}
@media screen and (max-width: 1140px) {
  .header__lists {
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
  }
}

.header__lists li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: initial;
}

.header__link {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Kiwi Maru", serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #fff;
}
.header__link::before {
  position: absolute;
  content: "";
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 100%;
  border-bottom: 1px solid #fff;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.header__link:hover::before {
  opacity: 1;
}

.header__logo {
  width: 102px;
  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;
}
@media screen and (max-width: 840px) {
  .header__logo {
    width: 139px;
  }
}
@media screen and (max-width: 540px) {
  .header__logo {
    width: 64px;
  }
}

.header__sub-text p {
  font-family: "Kiwi Maru", serif;
  font-size: 14px;
  font-weight: 500;
  height: auto;
  line-height: 1.7;
  text-align: left;
  color: #fff;
}
@media screen and (max-width: 540px) {
  .header__sub-text p {
    font-size: 10px;
    line-height: 1.4;
  }
}

/* ------------------------------------------------
hamburger
--------------------------------------------------- */
@media screen and (max-width: 840px) {
  .hamburger {
    width: 48px;
    height: 28px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    cursor: pointer;
  }
}
@media screen and (max-width: 840px) and (max-width: 540px) {
  .hamburger {
    width: 32px;
    height: 18px;
  }
}
.hamburger span {
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: 4px;
}
@media screen and (max-width: 540px) {
  .hamburger span {
    height: 2px;
  }
}

/* ------------------------------------------------
drawer
--------------------------------------------------- */
.l-drawer {
  position: fixed;
  z-index: 5000;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  display: none;
  opacity: 0;
  overflow-y: auto;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
}
.l-drawer::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0px 6px 15px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 6px 15px 0px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  background: linear-gradient(135deg, rgba(47, 82, 110, 0.2), #3897d0);
  -webkit-filter: brightness(73%) blur(2px);
          filter: brightness(73%) blur(2px);
}
@media screen and (max-width: 540px) {
  .l-drawer::before {
    backdrop-filter: blur(24px);
    -webkit-filter: brightness(80%) saturate(100%) contrast(100%) blur(2px);
            filter: brightness(80%) saturate(100%) contrast(100%) blur(2px);
  }
}

.l-drawer__bg {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.16);
}

.l-drawer.is-open {
  display: block;
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.l-drawer__inner {
  z-index: 1;
  position: relative;
  margin-inline: auto;
  width: 90%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 64px;
}

.l-drawer__head {
  height: 137px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-block: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 540px) {
  .l-drawer__head {
    height: 63px;
  }
}

.drawer__button {
  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: 48px;
  height: 28px;
  cursor: pointer;
}
@media screen and (max-width: 540px) {
  .drawer__button {
    width: 32px;
    height: 18px;
  }
}
.drawer__button span {
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 4px;
}
@media screen and (max-width: 540px) {
  .drawer__button span {
    height: 2px;
  }
}
.drawer__button span:nth-child(1) {
  position: absolute;
  top: 13px;
  right: 0px;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}
@media screen and (max-width: 540px) {
  .drawer__button span:nth-child(1) {
    top: auto;
    bottom: 8px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}
.drawer__button span:nth-child(2) {
  position: relative;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}
@media screen and (max-width: 540px) {
  .drawer__button span:nth-child(2) {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}

.l-drawer__menu {
  width: 100%;
}

.l-drawer__nav {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.l-drawer__lists {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 46px 0;
}
@media screen and (max-width: 540px) {
  .l-drawer__lists {
    gap: 32px 0;
  }
}
.l-drawer__lists li {
  width: 100%;
}
.l-drawer__lists a {
  display: block;
  width: 100%;
  font-family: "ヒラギノ角ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", YuGothic, "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  color: #fff;
}
@media screen and (max-width: 540px) {
  .l-drawer__lists a {
    font-size: 13px;
  }
}

.l-drawer-main__sub-menu {
  width: 100%;
}

.l-drawer-main__sns-lists {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 38px;
}
@media screen and (max-width: 540px) {
  .l-drawer-main__sns-lists {
    gap: 24px;
  }
}

.l-drawer-main__sns-link {
  display: block;
  width: 100%;
  max-width: 54px;
}
@media screen and (max-width: 540px) {
  .l-drawer-main__sns-link {
    max-width: 32px;
  }
}

.footer {
  z-index: 1;
  position: relative;
  background-image: url(../images/common/footer-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 840px) {
  .footer {
    background-image: url(../images/common/footer-bg-sp.webp);
  }
}
.footer::before {
  z-index: 1;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(47, 82, 110, 0.6);
}

.footer__inner {
  z-index: 1;
  position: relative;
}

.footer-cta {
  padding-block: 87px 40px;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 840px) {
  .footer-cta {
    padding-block: 48px 56px;
  }
}

.footer-cta__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 117px;
}
@media screen and (max-width: 1140px) {
  .footer-cta__body {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0;
  }
}
@media screen and (max-width: 840px) {
  .footer-cta__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 44px;
  }
}

.footer-cta__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 29px;
}

@media screen and (max-width: 840px) {
  .footer-cta__link {
    margin-top: 44px;
  }
}

.footer-cta__texts {
  width: auto;
}
@media screen and (max-width: 840px) {
  .footer-cta__texts {
    width: 100%;
  }
}

.footer-cta__text {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 2.33;
  color: #fff;
}
@media screen and (max-width: 1140px) {
  .footer-cta__text {
    font-size: 16px;
  }
}
@media screen and (max-width: 840px) {
  .footer-cta__text {
    font-size: 24px;
    font-weight: 400;
    line-height: 2;
  }
}
@media screen and (max-width: 540px) {
  .footer-cta__text {
    font-size: 14px;
  }
}

.footer-main__inner {
  padding-block: 40px 20px;
}
@media screen and (max-width: 840px) {
  .footer-main__inner {
    padding-block: 55px 20px;
  }
}

.footer-main__body {
  width: 95%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 840px) {
  .footer-main__body {
    width: 90%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
    -webkit-box-align: initial;
        -ms-flex-align: initial;
            align-items: initial;
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
  }
}

.footer-main__main {
  padding-bottom: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 56px;
}
@media screen and (max-width: 1140px) {
  .footer-main__main {
    gap: 40px;
  }
}
@media screen and (max-width: 840px) {
  .footer-main__main {
    margin-bottom: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0;
  }
}
@media screen and (max-width: 540px) {
  .footer-main__main {
    -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;
    gap: 40px;
  }
}

.footer-main__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 11px;
}
@media screen and (max-width: 840px) {
  .footer-main__info {
    gap: 20px;
  }
}
@media screen and (max-width: 540px) {
  .footer-main__info {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 11px;
  }
}

.footer-main__logo-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 540px) {
  .footer-main__logo-body {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.footer-main__logo {
  width: 124px;
}
@media screen and (max-width: 840px) {
  .footer-main__logo {
    width: 152px;
  }
}

.footer-main__info-text p {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.67;
  color: #fff;
}
@media screen and (max-width: 840px) {
  .footer-main__info-text p {
    font-size: 16px;
    line-height: 2;
  }
}
@media screen and (max-width: 540px) {
  .footer-main__info-text p {
    width: auto;
    max-width: 100%;
  }
}
.footer-main__info-text a {
  font: inherit;
}
.footer-main__info-text .tb-sm {
  display: none;
}
@media screen and (max-width: 840px) {
  .footer-main__info-text .tb-sm {
    display: block;
  }
}
@media screen and (max-width: 540px) {
  .footer-main__info-text .tb-sm {
    display: none;
  }
}

.footer-main__menu {
  width: 400px;
}
@media screen and (max-width: 1140px) {
  .footer-main__menu {
    width: 324px;
  }
}
@media screen and (max-width: 840px) {
  .footer-main__menu {
    width: 300px;
  }
}
@media screen and (max-width: 540px) {
  .footer-main__menu {
    width: 400px;
    max-width: 100%;
  }
}

.footer-main__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.footer-main__nav-lists {
  width: 50%;
  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;
}
@media screen and (max-width: 840px) {
  .footer-main__nav-lists {
    gap: 30px;
  }
}
@media screen and (max-width: 540px) {
  .footer-main__nav-lists {
    gap: 12px;
  }
}

.footer-main__nav a {
  font-family: YuGothic, "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", "ヒラギノ角ゴ Pro W3", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.84;
  color: #fff;
}

.footer-main__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;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 64px;
}
@media screen and (max-width: 840px) {
  .footer-main__sub-menu {
    gap: 20px;
    -webkit-box-align: initial;
        -ms-flex-align: initial;
            align-items: initial;
  }
}
@media screen and (max-width: 540px) {
  .footer-main__sub-menu {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.footer-main__sns-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 840px) {
  .footer-main__sns-lists {
    gap: 38px;
  }
}
@media screen and (max-width: 540px) {
  .footer-main__sns-lists {
    gap: 24px;
  }
}

.footer-main__sns-link {
  display: block;
  width: 32px;
}
@media screen and (max-width: 840px) {
  .footer-main__sns-link {
    width: 54px;
    max-width: 100%;
  }
}
@media screen and (max-width: 540px) {
  .footer-main__sns-link {
    width: 32px;
    max-width: 100%;
  }
}

.footer-main__copyright {
  display: block;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  text-align: right;
  color: #fff;
}
@media screen and (max-width: 540px) {
  .footer-main__copyright {
    text-align: center;
  }
}

.l-inner {
  margin-inline: auto;
  width: 100%;
  max-width: 1280px;
}
.l-inner > * {
  margin-inline: auto;
  width: 90%;
}

@media screen and (max-width: 840px) {
  .l-tb-inner {
    margin-inline: auto;
    width: 90%;
  }
}

@media screen and (max-width: 1140px) {
  .l-lg-inner {
    margin-inline: auto;
    width: 90%;
  }
}

.l-second-inner {
  margin-inline: auto;
  width: 100%;
  max-width: 1024px;
}
@media screen and (max-width: 1140px) {
  .l-second-inner {
    width: 90%;
  }
}

.l-third-inner {
  margin-inline: auto;
  width: 100%;
  max-width: 848px;
}
@media screen and (max-width: 1140px) {
  .l-third-inner {
    width: 90%;
  }
}

.l-fourth-inner {
  margin-inline: auto;
  width: 100%;
  max-width: 1112px;
}
@media screen and (max-width: 1140px) {
  .l-fourth-inner {
    width: 90%;
  }
}

.l-flow-inner {
  margin-inline: auto;
  width: 100%;
  max-width: 1064px;
}
@media screen and (max-width: 1140px) {
  .l-flow-inner {
    width: 90%;
  }
}

.l-single-inner {
  margin-inline: auto;
  width: 100%;
  max-width: 956px;
}
@media screen and (max-width: 1140px) {
  .l-single-inner {
    width: 90%;
  }
}

.c-button {
  padding: 24px 76px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  border: 1px solid #3897d0;
  border-radius: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  -webkit-transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
}
@media screen and (max-width: 840px) {
  .c-button {
    padding: initial;
    border: none;
    border-radius: 0;
    gap: 32px;
  }
}
.c-button .text {
  font-family: "ヒラギノ角ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", YuGothic, "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: #3897d0;
  -webkit-transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
}
@media screen and (max-width: 840px) {
  .c-button .text {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    color: #1e2b2f;
  }
}
.c-button .icon-arrow {
  -webkit-transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
}
@media screen and (max-width: 840px) {
  .c-button .icon-arrow {
    display: block;
    width: 65px;
    max-width: 100%;
  }
}
.c-button:hover {
  background: #3897d0;
}
@media screen and (max-width: 840px) {
  .c-button:hover {
    background: transparent;
  }
}
.c-button:hover .text {
  color: #fff;
}
@media screen and (max-width: 840px) {
  .c-button:hover .text {
    color: #1e2b2f;
  }
}
@media screen and (max-width: 840px) {
  .c-button:hover .icon-arrow {
    -webkit-transform: translate(20px, 0);
            transform: translate(20px, 0);
  }
}
@media screen and (max-width: 840px) {
  .c-button.pc-only {
    display: none;
  }
}
.c-button.tb-only {
  display: none;
}
@media screen and (max-width: 840px) {
  .c-button.tb-only {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.c-button.lg-none {
  display: block;
}
@media screen and (max-width: 1140px) {
  .c-button.lg-none {
    display: none;
  }
}

.c-noIcon-button {
  padding: 24px 76px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  border: 1px solid #3897d0;
  border-radius: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  font-family: "ヒラギノ角ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", YuGothic, "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: #3897d0;
  -webkit-transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
}
@media screen and (max-width: 840px) {
  .c-noIcon-button {
    font-size: 20px;
  }
}
@media screen and (max-width: 540px) {
  .c-noIcon-button {
    padding: 16px 52px;
    font-size: 18px;
  }
}
.c-noIcon-button:hover {
  background: #3897d0;
  color: #fff;
}

.c-cta-button {
  padding: 24px 48px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  border: 1px solid #fff;
  border-radius: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  -webkit-transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
}
@media screen and (max-width: 840px) {
  .c-cta-button {
    padding: 29px 120px;
  }
}
@media screen and (max-width: 540px) {
  .c-cta-button {
    padding: 24px 60px;
  }
}
@media screen and (max-width: 840px) {
  .c-cta-button__body {
    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;
  }
}
.c-cta-button__body .icon-arrow {
  -webkit-transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
}
@media screen and (max-width: 840px) {
  .c-cta-button__body .icon-arrow {
    margin-left: -32px;
    display: block;
    width: 100%;
    max-width: 65px;
  }
}
@media screen and (max-width: 840px) {
  .c-cta-button__body:hover .icon-arrow {
    -webkit-transform: translate(20px, 0);
            transform: translate(20px, 0);
  }
}
.c-cta-button .text {
  font-family: "ヒラギノ角ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", YuGothic, "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: #fff;
  -webkit-transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
}
@media screen and (max-width: 840px) {
  .c-cta-button .text {
    font-size: 24px;
  }
}
@media screen and (max-width: 540px) {
  .c-cta-button .text {
    font-size: 16px;
  }
}
.c-cta-button:hover {
  background: #fff;
}
.c-cta-button:hover .text {
  color: #223439;
}
@media screen and (max-width: 840px) {
  .c-cta-button .pc-only {
    display: none;
  }
}
.c-cta-button .tb-only {
  display: none;
}
@media screen and (max-width: 840px) {
  .c-cta-button .tb-only {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.c-article-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  padding: 10px 44px 8px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  border: 1px solid #3897d0;
  border-radius: 10px;
  font-family: YuGothic, "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", "ヒラギノ角ゴ Pro W3", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.85;
  color: #3897d0;
  -webkit-transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
}
@media screen and (max-width: 840px) {
  .c-article-button {
    font-size: 24px;
  }
}
@media screen and (max-width: 540px) {
  .c-article-button {
    font-size: 14px;
  }
}
.c-article-button:hover {
  background: #3897d0;
  color: #fff;
}

.c-blog-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  -webkit-transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
}
@media screen and (max-width: 540px) {
  .c-blog-button {
    gap: 16px;
  }
}
.c-blog-button .text {
  font-family: "ヒラギノ角ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", YuGothic, "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  color: #3897d0;
  -webkit-transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
}
@media screen and (max-width: 840px) {
  .c-blog-button .text {
    font-size: 20px;
    font-weight: 400;
  }
}
@media screen and (max-width: 540px) {
  .c-blog-button .text {
    font-size: 16px;
    font-weight: 700;
  }
}
.c-blog-button .icon-arrow {
  width: 65px;
  max-width: 100%;
  -webkit-transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
}
@media screen and (max-width: 540px) {
  .c-blog-button .icon-arrow {
    width: 40px;
  }
}
.c-blog-button:hover .icon-arrow {
  -webkit-transform: translate(20px, 0);
          transform: translate(20px, 0);
}

.c-thanks-button {
  padding: 24px 76px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  border: 1px solid #3897d0;
  border-radius: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
  font-family: "ヒラギノ角ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", YuGothic, "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: #3897d0;
}
@media screen and (max-width: 540px) {
  .c-thanks-button {
    padding: 16px 76px;
  }
}
.c-thanks-button:hover {
  background: #3897d0;
  color: #fff;
}

.dilate,
.dilate-thin {
  -webkit-filter: url(#dilate);
          filter: url(#dilate);
}

.text-svg {
  display: none;
}

.c-heading-row {
  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;
}
@media screen and (max-width: 840px) {
  .c-heading-row {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.c-heading-row .c-button {
  padding-bottom: 32px;
}
@media screen and (max-width: 840px) {
  .c-heading-row .c-button {
    padding-bottom: 0;
  }
}

.c-heading {
  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;
  gap: 21px;
}
.c-heading .--en {
  font-size: 95px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: #4E5D61;
}
@media screen and (max-width: 1140px) {
  .c-heading .--en {
    line-height: 1.1;
    font-size: 84px;
  }
}
@media screen and (max-width: 840px) {
  .c-heading .--en {
    font-size: 10.8vw;
  }
}
.c-heading .--jp {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 9px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: #223439;
}
@media screen and (max-width: 840px) {
  .c-heading .--jp {
    font-size: 24px;
  }
}
@media screen and (max-width: 540px) {
  .c-heading .--jp {
    font-size: 18px;
  }
}
.c-heading .--jp::before {
  content: "";
  margin: -6px 0px 0px 0px;
  width: 20px;
  max-width: 100%;
  height: 1px;
  background: #223439;
}

.c-heading.--sub .--en {
  font-size: 70px;
  line-height: 1.1;
}
@media screen and (max-width: 1140px) {
  .c-heading.--sub .--en {
    font-size: 67px;
  }
}
@media screen and (max-width: 840px) {
  .c-heading.--sub .--en {
    font-size: 8.5vw;
  }
}
@media screen and (max-width: 540px) {
  .c-heading.--sub .--en {
    font-size: 10vw;
  }
}

.voice__heading.c-heading.--sub .--en {
  font-size: 70px;
}
@media screen and (max-width: 1140px) {
  .voice__heading.c-heading.--sub .--en {
    font-size: min(7.77vw, 67px);
  }
}
@media screen and (max-width: 840px) {
  .voice__heading.c-heading.--sub .--en {
    font-size: 7.7vw;
  }
}

.c-heading.--second {
  gap: 16px;
}
.c-heading.--second .--en {
  font-size: 70px;
  line-height: 1;
  color: #FDFEFE;
}
@media screen and (max-width: 1140px) {
  .c-heading.--second .--en {
    font-size: 67px;
  }
}
@media screen and (max-width: 840px) {
  .c-heading.--second .--en {
    font-size: 70px;
  }
}
@media screen and (max-width: 540px) {
  .c-heading.--second .--en {
    font-size: 40px;
  }
}
.c-heading.--second .--jp {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
}
@media screen and (max-width: 840px) {
  .c-heading.--second .--jp {
    font-size: 24px;
  }
}
@media screen and (max-width: 540px) {
  .c-heading.--second .--jp {
    font-size: 18px;
  }
}
.c-heading.--second .--jp::before {
  background: #fff;
}

#archive-voice .mv__title .--en,
#single-voice .mv__title .--en {
  font-size: 70px;
}
@media screen and (max-width: 1140px) {
  #archive-voice .mv__title .--en,
  #single-voice .mv__title .--en {
    font-size: 67px;
  }
}
@media screen and (max-width: 840px) {
  #archive-voice .mv__title .--en,
  #single-voice .mv__title .--en {
    font-size: 8.6vw;
  }
}
@media screen and (max-width: 540px) {
  #archive-voice .mv__title .--en,
  #single-voice .mv__title .--en {
    font-size: 10vw;
  }
}

@media screen and (max-width: 840px) {
  .mv__title.c-heading.--second .--jp {
    color: #1e2b2f;
  }
}
@media screen and (max-width: 840px) {
  .mv__title.c-heading.--second .--jp::before {
    background: #1e2b2f;
  }
}

.c-lower-heading {
  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;
  gap: 16px;
}
.c-lower-heading .--en {
  font-size: 70px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #223439;
}
@media screen and (max-width: 1140px) {
  .c-lower-heading .--en {
    font-size: 67px;
  }
}
@media screen and (max-width: 840px) {
  .c-lower-heading .--en {
    font-size: 70px;
  }
}
@media screen and (max-width: 540px) {
  .c-lower-heading .--en {
    font-size: 54px;
  }
}
.c-lower-heading .--jp {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 9px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 840px) {
  .c-lower-heading .--jp {
    font-size: 24px;
  }
}
@media screen and (max-width: 540px) {
  .c-lower-heading .--jp {
    font-size: 18px;
  }
}
.c-lower-heading .--jp::before {
  content: "";
  margin: -6px 0px 0px 0px;
  width: 20px;
  max-width: 100%;
  height: 1px;
  background: #223439;
}

.c-title {
  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;
  gap: 7px;
}
.c-title .--en {
  font-size: 3vw;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #eaeaea;
}
@media screen and (max-width: 540px) {
  .c-title .--en {
    font-size: 23px;
  }
}
.c-title .--jp {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}
@media screen and (max-width: 840px) {
  .c-title .--jp {
    display: none;
  }
}

.c-title-lower {
  font-size: 70px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.05em;
  color: #eaeaea;
}
@media screen and (max-width: 1140px) {
  .c-title-lower {
    font-size: 67px;
  }
}
@media screen and (max-width: 840px) {
  .c-title-lower {
    font-size: min(13.5vw, 53px);
  }
}

/* ------------------------------------------------
fv, mv, header
--------------------------------------------------- */
.c-fv-fadeIn {
  opacity: 0;
  -webkit-animation: fvFadeIn 0.6s ease-out forwards;
          animation: fvFadeIn 0.6s ease-out forwards;
}

.c-fv-fadeIn.--first {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.c-fv-fadeIn.--first-lower {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.c-fv-fadeIn.--second {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.c-fv-fadeIn.--third {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}

@-webkit-keyframes fvFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fvFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* ------------------------------------------------
下層mv, header
--------------------------------------------------- */
.c-lower-fadeIn {
  opacity: 0;
  -webkit-animation: fadeIn 0.35s ease-out forwards;
          animation: fadeIn 0.35s ease-out forwards;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* ------------------------------------------------
スクロール
--------------------------------------------------- */
/* ------------------------------------------------
ふわっと
--------------------------------------------------- */
.c-fadeIn {
  opacity: 0;
}
@media screen and (max-width: 840px) {
  .c-fadeIn {
    -webkit-animation: fadeIn 0.35s ease-out forwards;
            animation: fadeIn 0.35s ease-out forwards;
  }
}

.c-fadeIn.is-animated {
  opacity: 0;
  -webkit-animation: fadeIn 0.35s ease-out forwards;
          animation: fadeIn 0.35s ease-out forwards;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.c-fadeIn.--second.is-animated {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.c-fadeIn.--third.is-animated {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

/* ------------------------------------------------
下からふわっと
--------------------------------------------------- */
.c-fadeUp {
  opacity: 0;
}
@media screen and (max-width: 840px) {
  .c-fadeUp {
    -webkit-animation: fadeUp 0.5s ease-out 0.5s forwards;
            animation: fadeUp 0.5s ease-out 0.5s forwards;
  }
}

.c-fadeUp.is-animated {
  opacity: 0;
  -webkit-animation: fadeUp 0.5s ease-out 0.5s forwards;
          animation: fadeUp 0.5s ease-out 0.5s forwards;
}

@-webkit-keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* ------------------------------------------------
上からふわっと
--------------------------------------------------- */
.c-fadeDown {
  opacity: 0;
}
@media screen and (max-width: 840px) {
  .c-fadeDown {
    -webkit-animation: fadeDown 0.5s ease-out 0.5s forwards;
            animation: fadeDown 0.5s ease-out 0.5s forwards;
  }
}

.c-fadeDown.is-animated {
  opacity: 0;
  -webkit-animation: fadeDown 0.5s ease-out 0.5s forwards;
          animation: fadeDown 0.5s ease-out 0.5s forwards;
}

@-webkit-keyframes fadeDown {
  0% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeDown {
  0% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* ------------------------------------------------
右からふわっと
--------------------------------------------------- */
.c-fadeRight {
  opacity: 0;
}
@media screen and (max-width: 840px) {
  .c-fadeRight {
    -webkit-animation: fadeRight 0.5s ease-out 0.5s forwards;
            animation: fadeRight 0.5s ease-out 0.5s forwards;
  }
}

.c-fadeRight.is-animated {
  opacity: 0;
  -webkit-animation: fadeRight 0.5s ease-out 0.5s forwards;
          animation: fadeRight 0.5s ease-out 0.5s forwards;
}

@-webkit-keyframes fadeRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}

@keyframes fadeRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
/* ------------------------------------------------
左からふわっと
--------------------------------------------------- */
.c-fadeLeft {
  opacity: 0;
}
@media screen and (max-width: 840px) {
  .c-fadeLeft {
    -webkit-animation: fadeLeft 0.5s ease-out 0.5s forwards;
            animation: fadeLeft 0.5s ease-out 0.5s forwards;
  }
}

.c-fadeLeft.is-animated {
  opacity: 0;
  -webkit-animation: fadeLeft 0.5s ease-out 0.5s forwards;
          animation: fadeLeft 0.5s ease-out 0.5s forwards;
}

@-webkit-keyframes fadeLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}

@keyframes fadeLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
.c-card-num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 10px;
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  line-height: 1.4;
  color: #223439;
}
.c-card-num .num-text {
  margin-bottom: 12px;
  padding-bottom: 6px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 2px solid #647980;
  font-size: 17px;
}
@media screen and (max-width: 540px) {
  .c-card-num .num-text {
    margin-bottom: 6px;
  }
}
.c-card-num .num {
  font-size: 48px;
  color: #333333;
}
@media screen and (max-width: 540px) {
  .c-card-num .num {
    font-size: 36px;
  }
}

.c-card-num.--reverse {
  gap: 21px;
  color: #fff;
}
@media screen and (max-width: 1140px) {
  .c-card-num.--reverse {
    gap: 10px;
  }
}
@media screen and (max-width: 840px) {
  .c-card-num.--reverse {
    gap: 21px;
  }
}
@media screen and (max-width: 540px) {
  .c-card-num.--reverse {
    gap: 6px;
  }
}
.c-card-num.--reverse .num-text {
  margin-bottom: 8px;
  border-bottom: 4px solid #fff;
  font-size: 39px;
}
@media screen and (max-width: 1140px) {
  .c-card-num.--reverse .num-text {
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 540px) {
  .c-card-num.--reverse .num-text {
    margin-bottom: 6px;
    font-size: 20px;
  }
}
.c-card-num.--reverse .num {
  font-size: 108px;
  line-height: 1;
  color: #fff;
}
@media screen and (max-width: 1140px) {
  .c-card-num.--reverse .num {
    font-size: 72px;
  }
}
@media screen and (max-width: 540px) {
  .c-card-num.--reverse .num {
    font-size: 64px;
  }
}

/* ------------------------------------------------
記事
--------------------------------------------------- */
.c-article {
  z-index: 2;
  padding-top: 60px;
  position: relative;
}
.c-article img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-article__inner {
  position: relative;
}

.c-article__heading {
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Barlow", sans-serif;
  font-size: 114px;
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1;
  color: #fff;
}
@media screen and (max-width: 1140px) {
  .c-article__heading {
    font-size: 100px;
  }
}
@media screen and (max-width: 840px) {
  .c-article__heading {
    font-size: 72px;
  }
}
@media screen and (max-width: 540px) {
  .c-article__heading {
    font-size: 42px;
  }
}

.c-article__main {
  z-index: 1;
  position: relative;
  margin-inline: auto;
  width: 100%;
  max-width: 868px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px;
}
@media screen and (max-width: 1140px) {
  .c-article__main {
    width: 95%;
    max-width: initial;
  }
}
@media screen and (max-width: 540px) {
  .c-article__main {
    gap: 24px;
  }
}

.c-article__thumbnail {
  z-index: 1;
  position: relative;
  padding: 0px 20px 20px 0px;
}
.c-article__thumbnail::before {
  z-index: 1;
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  width: 55%;
  height: 55%;
  border-bottom: 2px solid rgba(56, 151, 208, 0.5);
  border-right: 2px solid rgba(56, 151, 208, 0.5);
  border-radius: 0px 0px 30px 0px;
}

.c-article__thumbnail-img {
  width: 100%;
  border-radius: 30px 0px 30px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}

.c-article__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 21px;
}

.c-article__title {
  font-family: YuGothic, "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", "ヒラギノ角ゴ Pro W3", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 2;
  color: #223439;
}
@media screen and (max-width: 540px) {
  .c-article__title {
    font-size: 18px;
  }
}

.c-article__sub-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  color: #223439;
}
@media screen and (max-width: 840px) {
  .c-article__sub-text {
    font-size: 20px;
  }
}
@media screen and (max-width: 540px) {
  .c-article__sub-text {
    font-size: 14px;
  }
}

.c-article__name {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: #223439;
}
@media screen and (max-width: 840px) {
  .c-article__name {
    font-size: 24px;
  }
}
@media screen and (max-width: 540px) {
  .c-article__name {
    font-size: 14px;
  }
}

.c-article__categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.c-article__category {
  position: relative;
  padding-left: 0.7em;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: #959ea7;
}
@media screen and (max-width: 840px) {
  .c-article__category {
    font-size: 20px;
  }
}
@media screen and (max-width: 540px) {
  .c-article__category {
    font-size: 14px;
  }
}
.c-article__category::before {
  position: absolute;
  content: "#";
  top: 0;
  left: 0;
}

.c-article__contents {
  font-family: YuGothic, "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", "ヒラギノ角ゴ Pro W3", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 2.33;
  color: #223439;
}
@media screen and (max-width: 840px) {
  .c-article__contents {
    font-size: 24px;
  }
}
@media screen and (max-width: 540px) {
  .c-article__contents {
    font-size: 14px;
  }
}
.c-article__contents h2 {
  margin-block: 10px;
  font-family: YuGothic, "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", "ヒラギノ角ゴ Pro W3", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 2;
}
@media screen and (max-width: 540px) {
  .c-article__contents h2 {
    font-size: 18px;
  }
}
.c-article__contents h3 {
  position: relative;
  margin-block: 10px;
  padding: 0.2em 0px 0.2em 20px;
  border-bottom: 1px solid #3897d0;
  font-family: YuGothic, "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", "ヒラギノ角ゴ Pro W3", sans-serif;
  font-size: inherit;
  font-weight: 700;
  line-height: 2;
}
.c-article__contents h3::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 10px;
  height: 100%;
  background: #3897d0;
}
.c-article__contents h4,
.c-article__contents h5,
.c-article__contents h6 {
  margin-block: 10px;
  font-family: YuGothic, "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", "ヒラギノ角ゴ Pro W3", sans-serif;
  font-size: inherit;
  font-weight: 700;
  line-height: 2;
}
.c-article__contents p {
  margin-block: 10px;
  min-height: 18px;
}
.c-article__contents strong {
  font-weight: 700;
}
.c-article__contents a {
  font: inherit;
  font-weight: 700;
  color: #3897d0;
  text-decoration: underline;
}

.c-article__button-body.--bottom {
  margin-top: 80px;
}
@media screen and (max-width: 540px) {
  .c-article__button-body.--bottom {
    margin-top: 40px;
  }
}

.c-article-notText {
  font-family: YuGothic, "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", "ヒラギノ角ゴ Pro W3", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 2.33;
  color: #223439;
}
@media screen and (max-width: 840px) {
  .c-article-notText {
    font-size: 24px;
  }
}
@media screen and (max-width: 540px) {
  .c-article-notText {
    font-size: 14px;
  }
}

.c-article__pagination {
  padding-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media screen and (max-width: 540px) {
  .c-article__pagination {
    padding-top: 60px;
    gap: 16px;
  }
}
.c-article__pagination .pagination__arrow {
  display: inline-block;
  width: 8px;
  height: auto;
}
.c-article__pagination .page-numbers {
  padding: 5px;
  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;
  height: 100%;
  font-family: YuGothic, "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", "ヒラギノ角ゴ Pro W3", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  color: #3897d0;
}
@media screen and (max-width: 840px) {
  .c-article__pagination .page-numbers {
    font-size: 24px;
  }
}
@media screen and (max-width: 540px) {
  .c-article__pagination .page-numbers {
    font-size: 14px;
  }
}
.c-article__pagination a.page-numbers::before {
  position: absolute;
  content: "";
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 130%;
  height: 1px;
  background: #3897d0;
  opacity: 0;
  -webkit-transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
}
.c-article__pagination a.page-numbers:hover::before {
  opacity: 1;
}
.c-article__pagination .page-numbers.prev,
.c-article__pagination .page-numbers.next {
  border: none;
}
.c-article__pagination .page-numbers.prev::before,
.c-article__pagination .page-numbers.next::before {
  display: none;
}

.c-article__navigation h2 {
  display: none;
}
.c-article__navigation .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.c-article__navigation .nav-next {
  margin-left: auto;
}
.c-article__navigation .nav-previous a,
.c-article__navigation .nav-next a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 24px 8px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  border: 1px solid #3897d0;
  border-radius: 10px;
  font-family: YuGothic, "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", "ヒラギノ角ゴ Pro W3", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.85;
  color: #3897d0;
  -webkit-transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
}
@media screen and (max-width: 840px) {
  .c-article__navigation .nav-previous a,
  .c-article__navigation .nav-next a {
    font-size: 24px;
  }
}
@media screen and (max-width: 540px) {
  .c-article__navigation .nav-previous a,
  .c-article__navigation .nav-next a {
    padding: 10px 20px 8px;
    font-size: 13px;
  }
}
.c-article__navigation .nav-previous a:hover,
.c-article__navigation .nav-next a:hover {
  background: #3897d0;
  color: #fff;
}

/* ------------------------------------------------
サイドバー
--------------------------------------------------- */
.c-sidebar-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
}
@media screen and (max-width: 1140px) {
  .c-sidebar-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 80px;
  }
}
@media screen and (max-width: 840px) {
  .c-sidebar-container {
    gap: 48px;
  }
}

.c-sidebar-article {
  z-index: 2;
  position: relative;
  padding-top: 60px;
  width: 70% %;
}
@media screen and (max-width: 1140px) {
  .c-sidebar-article {
    width: 100%;
  }
}
.c-sidebar-article img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-sidebar {
  width: calc(30% - 60px);
}
@media screen and (max-width: 1140px) {
  .c-sidebar {
    width: 100%;
  }
}
.c-sidebar img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-sidebar__inner {
  position: sticky;
  top: 0px;
}
@media screen and (max-width: 1140px) {
  .c-sidebar__inner {
    position: initial;
  }
}

.c-sidebar-body {
  margin-top: -60px;
  padding-block: 60px;
  overflow: auto;
  height: 100%;
  max-height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
@media screen and (max-width: 1140px) {
  .c-sidebar-body {
    margin-top: 0;
    padding-block: 0;
    max-height: initial;
    overflow: auto;
  }
}
.c-sidebar-body::-webkit-scrollbar {
  display: none;
}

.c-sidebar__heading {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #959ea7;
  font-family: "Barlow", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.33;
  color: #223439;
}
@media screen and (max-width: 1140px) {
  .c-sidebar__heading {
    font-size: 20px;
  }
}
@media screen and (max-width: 840px) {
  .c-sidebar__heading {
    font-size: 24px;
  }
}
@media screen and (max-width: 540px) {
  .c-sidebar__heading {
    font-size: 18px;
  }
}

/* ------------------------------------------------
banner
--------------------------------------------------- */
.banner {
  z-index: 500;
  position: fixed;
  top: 435px;
  right: 0;
  padding: 10px;
}
@media screen and (max-width: 1140px) {
  .banner {
    top: 560px;
  }
}
@media screen and (max-width: 840px) {
  .banner {
    top: 637px;
  }
}
@media screen and (max-width: 540px) {
  .banner {
    padding: 5px;
    top: 500px;
  }
}

.banner__link {
  display: block;
  width: 225px;
  height: auto;
}
@media screen and (max-width: 540px) {
  .banner__link {
    width: 150px;
  }
}

/* ------------------------------------------------
mv
--------------------------------------------------- */
.mv {
  width: 100%;
}

.mv__inner {
  z-index: 1;
  position: relative;
  width: 100%;
  height: 400px;
}
@media screen and (max-width: 540px) {
  .mv__inner {
    height: 240px;
  }
}

.mv__bg {
  z-index: 1;
  position: relative;
  width: 100%;
  height: 100%;
}
.mv__bg::before {
  z-index: 1;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(56, 151, 208, 0.3019607843);
}
.mv__bg video,
.mv__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.mv__text-container {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0px 0px 82px 98px;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  opacity: 1;
}
@media screen and (max-width: 1140px) {
  .mv__text-container {
    padding: 0px 0px 82px 0px;
  }
}
@media screen and (max-width: 840px) {
  .mv__text-container {
    padding: 0;
  }
}

#archive-voice .mv__text-container,
#single-voice .mv__text-container {
  padding: 0px 0px 33px 98px;
}
@media screen and (max-width: 1140px) {
  #archive-voice .mv__text-container,
  #single-voice .mv__text-container {
    padding: 0px 0px 33px 0px;
  }
}
@media screen and (max-width: 840px) {
  #archive-voice .mv__text-container,
  #single-voice .mv__text-container {
    padding: 0;
  }
}

.mv__title-body {
  width: 100%;
  max-width: 100%;
  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;
}
@media screen and (max-width: 1140px) {
  .mv__title-body {
    margin-inline: auto;
    width: 90%;
    max-width: 90%;
  }
}
@media screen and (max-width: 840px) {
  .mv__title-body {
    margin-bottom: -55px;
  }
}
@media screen and (max-width: 540px) {
  .mv__title-body {
    margin-bottom: -46px;
    gap: 10px;
  }
}

/* ------------------------------------------------
card-menu
--------------------------------------------------- */
.card-menu {
  z-index: 1;
  position: relative;
  padding-block: 120px 143px;
  background: #e7ecef;
}
@media screen and (max-width: 840px) {
  .card-menu {
    padding-block: 160px 240px;
  }
}
@media screen and (max-width: 540px) {
  .card-menu {
    padding-block: 80px 120px;
  }
}

.card-menu__bg {
  z-index: 1;
  position: absolute;
  top: 140px;
  left: 0;
  width: 100%;
  height: 140px;
  background-color: #fff;
}
@media screen and (max-width: 1140px) {
  .card-menu__bg {
    height: 110px;
  }
}
@media screen and (max-width: 840px) {
  .card-menu__bg {
    display: none;
  }
}

.card-menu__inner {
  z-index: 1;
  position: relative;
}

.card-menu__lists {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media screen and (max-width: 1140px) {
  .card-menu__lists {
    gap: 16px;
  }
}
@media screen and (max-width: 840px) {
  .card-menu__lists {
    grid-template-columns: repeat(2, 1fr);
    gap: 45px 32px;
  }
}
@media screen and (max-width: 540px) {
  .card-menu__lists {
    gap: 24px 16px;
  }
}

.card-menu__list {
  width: 100%;
}

.card-menu__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
@media screen and (max-width: 540px) {
  .card-menu__link {
    gap: 12px;
  }
}
.card-menu__link:hover .card-menu__img img {
  -webkit-transform: scale(1.05, 1.05);
          transform: scale(1.05, 1.05);
}

.card-menu__img {
  width: 100%;
  aspect-ratio: 600/337;
  overflow: hidden;
}
.card-menu__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
}

.card-menu__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  color: #223439;
}
@media screen and (max-width: 840px) {
  .card-menu__title {
    font-size: 24px;
  }
}
@media screen and (max-width: 540px) {
  .card-menu__title {
    font-size: 13px;
  }
}

/* ------------------------------------------------
fv-slide
--------------------------------------------------- */
.main {
  z-index: 1;
  position: relative;
}

.fv-slide {
  z-index: -1;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
  overflow: hidden;
  background: #e7ecef;
}

.fv-slide__swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 1240px;
}
@media screen and (max-width: 840px) {
  .fv-slide__swiper-wrapper {
    height: 905px;
  }
}
@media screen and (max-width: 540px) {
  .fv-slide__swiper-wrapper {
    height: 550px;
  }
}

.fv-slide__slide {
  width: 100%;
  height: 100%;
}

.fv-slide__slide img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.main-container {
  position: relative;
  z-index: 1;
}

/* ------------------------------------------------
fv
--------------------------------------------------- */
.fv {
  min-height: 100svh;
}

.fv-main {
  position: relative;
  height: 800px;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 840px) {
  .fv-main {
    padding-top: 105px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    height: 905px;
  }
}
@media screen and (max-width: 540px) {
  .fv-main {
    padding-top: 0;
    height: 550px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.fv-main__title {
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 446px;
}
@media screen and (max-width: 1140px) {
  .fv-main__title {
    width: 380px;
  }
}
@media screen and (max-width: 540px) {
  .fv-main__title {
    width: 280px;
  }
}

.fv-main__sub-title {
  margin-top: -100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 840px) {
  .fv-main__sub-title {
    margin-top: -50px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media screen and (max-width: 540px) {
  .fv-main__sub-title {
    margin-top: 0;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.fv-main__sub-blank {
  width: 450px;
}
@media screen and (max-width: 840px) {
  .fv-main__sub-blank {
    width: auto;
  }
}

.fv-main__sub-text {
  font-family: "Kiwi Maru", serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
}
@media screen and (max-width: 840px) {
  .fv-main__sub-text {
    font-size: 24px;
  }
}
@media screen and (max-width: 540px) {
  .fv-main__sub-text {
    font-size: 16px;
  }
}

.fv-main__text-body {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
@media screen and (max-width: 840px) {
  .fv-main__text-body {
    margin-top: 80px;
    position: initial;
  }
}
@media screen and (max-width: 540px) {
  .fv-main__text-body {
    margin-top: 0;
    position: absolute;
  }
}

.fv-main__text-body p {
  font-family: "Barlow", sans-serif;
  font-size: 60px;
  font-weight: 100;
  line-height: 1.3;
  color: #fff;
  text-transform: uppercase;
  overflow-wrap: break-word;
}
@media screen and (max-width: 1140px) {
  .fv-main__text-body p {
    font-size: 48px;
  }
}
@media screen and (max-width: 840px) {
  .fv-main__text-body p {
    font-size: 35px;
  }
}
@media screen and (max-width: 540px) {
  .fv-main__text-body p {
    font-size: 21px;
  }
}

.fv-news {
  padding-block: 120px 87px;
}
@media screen and (max-width: 840px) {
  .fv-news {
    padding-block: 72px 160px;
    background: #e7ecef;
  }
}
@media screen and (max-width: 540px) {
  .fv-news {
    padding-block: 72px 80px;
  }
}

.fv-news__inner {
  margin-inline: auto;
  width: 90%;
  max-width: 1280px;
}

.fv-news__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 840px) {
  .fv-news__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}

.fv-news__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 840px) {
  .fv-news__heading {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.fv-news__heading .--en {
  font-family: "Barlow", sans-serif;
  font-size: 60px;
  font-weight: 100;
  line-height: 1;
  color: #fff;
}
@media screen and (max-width: 840px) {
  .fv-news__heading .--en {
    font-size: 48px;
    color: #000000;
  }
}
.fv-news__heading .--jp {
  font-family: "Barlow", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}
@media screen and (max-width: 840px) {
  .fv-news__heading .--jp {
    font-size: 28px;
    font-weight: 500;
    color: #333333;
  }
}

.fv-news__lists {
  padding-inline: 85px;
  background-color: rgba(12, 20, 29, 0.2);
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 1140px) {
  .fv-news__lists {
    padding-inline: 40px;
  }
}
@media screen and (max-width: 840px) {
  .fv-news__lists {
    margin-top: 35px;
    padding-inline: 0;
    background-color: initial;
  }
}

.fv-news__list {
  padding-block: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 840px) {
  .fv-news__list {
    padding-block: 16px;
    border-bottom: 1px dotted #999999;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 38px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (max-width: 540px) {
  .fv-news__list {
    padding-block: 16px;
    gap: 24px;
  }
}
.fv-news__list:not(:first-child) {
  border-top: 1px dotted rgba(255, 255, 255, 0.3019607843);
}
@media screen and (max-width: 840px) {
  .fv-news__list:not(:first-child) {
    border-top: none;
  }
}

.fv-news__list-heading {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 242px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 42px;
  height: auto;
  font-family: "Barlow", sans-serif;
  font-size: 16px;
  line-height: 1;
}
@media screen and (max-width: 840px) {
  .fv-news__list-heading {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 18px;
  }
}
@media screen and (max-width: 540px) {
  .fv-news__list-heading {
    gap: 24px;
  }
}

.fv-news__date {
  width: auto;
  max-width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-family: "Barlow", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  color: #fff;
}
@media screen and (max-width: 840px) {
  .fv-news__date {
    font-size: 20px;
    font-weight: 500;
    color: #000000;
  }
}
@media screen and (max-width: 540px) {
  .fv-news__date {
    font-size: 12px;
  }
}

.fv-news__category {
  width: auto;
  max-width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-family: "Barlow", sans-serif;
  font-size: 16px;
  font-weight: 100;
  line-height: 1;
}
@media screen and (max-width: 840px) {
  .fv-news__category {
    font-size: 32px;
    color: #000000;
  }
}

.fv-news__list h3 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 100%;
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.4;
  width: auto;
  color: #fff;
}
@media screen and (max-width: 840px) {
  .fv-news__list h3 {
    font-size: 24px;
    font-weight: 400;
    color: #000000;
  }
}
@media screen and (max-width: 540px) {
  .fv-news__list h3 {
    font-size: 14px;
  }
}

/* ------------------------------------------------
about
--------------------------------------------------- */
.about {
  padding-top: 80px;
  background: #e7ecef;
}
@media screen and (max-width: 840px) {
  .about {
    padding-top: 0;
  }
}

.about__container {
  z-index: 1;
  position: relative;
}

.about__bg {
  z-index: -1;
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 8px;
}
@media screen and (max-width: 840px) {
  .about__bg {
    position: absolute;
    top: 0;
    right: 0;
  }
}

.about__bg-movie {
  width: 66.6%;
  height: 463px;
}
@media screen and (max-width: 840px) {
  .about__bg-movie {
    width: 100%;
    height: auto;
  }
}
.about__bg-movie video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 840px) {
  .about__bg-movie video {
    height: auto;
  }
}

.about__bg-img {
  width: 48.75%;
  height: 306px;
}
@media screen and (max-width: 840px) {
  .about__bg-img {
    width: 81.2%;
    height: auto;
  }
}
.about__bg-img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 840px) {
  .about__bg-img img {
    height: auto;
  }
}

.about__bg-imgContainer.tb-only {
  display: none;
}
@media screen and (max-width: 840px) {
  .about__bg-imgContainer.tb-only {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.about__inner {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
@media screen and (max-width: 840px) {
  .about__inner {
    position: initial;
  }
}

.about__head {
  z-index: 1;
  position: relative;
  padding-top: 80px;
}
@media screen and (max-width: 840px) {
  .about__head {
    padding-top: 90px;
  }
}
@media screen and (max-width: 540px) {
  .about__head {
    padding-top: 48px;
  }
}

.about__contents {
  z-index: 1;
  position: relative;
  padding-top: 40px;
  height: 777px;
}
@media screen and (max-width: 840px) {
  .about__contents {
    padding-top: 0;
    height: auto;
  }
}

.about__contents-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 840px) {
  .about__contents-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.about__text-bg {
  padding-inline: 128px 48px;
  width: 48.75%;
  background: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 1140px) {
  .about__text-bg {
    padding-inline: 64px 48px;
  }
}
@media screen and (max-width: 840px) {
  .about__text-bg {
    margin: 40px 32px 0px 0px;
    padding-inline: 48px;
    width: calc(100% - 32px);
  }
}
@media screen and (max-width: 540px) {
  .about__text-bg {
    margin: 24px 32px 0px 0px;
    padding-inline: 32px;
  }
}

.about__texts {
  padding-block: 43px 88px;
  position: relative;
}
@media screen and (max-width: 1140px) {
  .about__texts {
    padding-block: 43px 64px;
  }
}
@media screen and (max-width: 840px) {
  .about__texts {
    padding-block: 60px;
  }
}

.about__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 2.8;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 840px) {
  .about__text {
    font-size: 24px;
    line-height: 2;
  }
}
@media screen and (max-width: 540px) {
  .about__text {
    font-size: 14px;
  }
}

.about__link {
  position: absolute;
  bottom: -50px;
  left: 0;
}
@media screen and (max-width: 840px) {
  .about__link {
    position: initial;
    margin-top: 149px;
  }
}
@media screen and (max-width: 540px) {
  .about__link {
    margin-top: 53px;
  }
}

/* ------------------------------------------------
product list
--------------------------------------------------- */
.products {
  padding-top: 80px;
  background: #e7ecef;
}
@media screen and (max-width: 840px) {
  .products {
    padding-top: 120px;
  }
}
@media screen and (max-width: 540px) {
  .products {
    padding-top: 80px;
  }
}

.products__inner {
  z-index: 1;
  position: relative;
}

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

.products__bg-body {
  z-index: -1;
  position: relative;
  margin-top: 10px;
  width: 100%;
}
@media screen and (max-width: 1140px) {
  .products__bg-body {
    margin-top: 34px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media screen and (max-width: 840px) {
  .products__bg-body {
    position: initial;
    margin-top: -20px;
  }
}

.products__bg {
  z-index: 1;
  position: relative;
  width: 100%;
  height: 270px;
}
@media screen and (max-width: 1140px) {
  .products__bg {
    width: 95%;
  }
}
@media screen and (max-width: 840px) {
  .products__bg {
    width: 100%;
  }
}
@media screen and (max-width: 540px) {
  .products__bg {
    width: 100%;
    height: 200px;
  }
}

.products__bg-road {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.products__bg-road img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 840px) {
  .products__bg-road img {
    width: 150%;
  }
}

.products__bg-car {
  z-index: 1;
  position: absolute;
  bottom: 0;
  right: 98px;
  width: 100%;
  max-width: 527px;
}
@media screen and (max-width: 1140px) {
  .products__bg-car {
    right: 50px;
    max-width: 440px;
  }
}
@media screen and (max-width: 840px) {
  .products__bg-car {
    bottom: 0;
    right: 15px;
    max-width: 500px;
  }
}
@media screen and (max-width: 540px) {
  .products__bg-car {
    width: 75%;
    max-width: initial;
  }
}

.products__contents {
  z-index: 1;
  position: absolute;
  top: 220px;
  left: 0;
  width: 100%;
}
@media screen and (max-width: 1140px) {
  .products__contents {
    top: 210px;
  }
}
@media screen and (max-width: 840px) {
  .products__contents {
    position: initial;
  }
}

.products__text-body {
  z-index: 1;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 840px) {
  .products__text-body {
    margin: 40px 32px 0px 0px;
    width: calc(100% - 32px);
    height: auto;
  }
}
@media screen and (max-width: 540px) {
  .products__text-body {
    margin: 24px 32px 0px 0px;
  }
}

.products__text-bg {
  padding-inline: 128px 48px;
  width: 48.75%;
  background-color: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 1140px) {
  .products__text-bg {
    padding-inline: 64px 48px;
  }
}
@media screen and (max-width: 840px) {
  .products__text-bg {
    padding-inline: 48px;
    width: 100%;
  }
}
@media screen and (max-width: 840px) {
  .products__text-bg {
    padding-inline: 32px;
  }
}

.products__texts {
  padding-block: 27px 64px;
}
@media screen and (max-width: 1140px) {
  .products__texts {
    padding-block: 27px 48px;
  }
}
@media screen and (max-width: 840px) {
  .products__texts {
    padding-block: 60px;
  }
}

.products__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 2.28;
  letter-spacing: -0.05em;
}

@media screen and (max-width: 840px) {
  .products__button {
    margin-top: 53px;
  }
}

.products-slide {
  margin-top: 40px;
  padding-bottom: 80px;
}
@media screen and (max-width: 840px) {
  .products-slide {
    margin-top: 60px;
  }
}
@media screen and (max-width: 840px) {
  .products-slide {
    margin-top: 20px;
    padding-bottom: 0;
  }
}

.products-slide__body {
  width: 100%;
}

.js-swiper-products {
  pointer-events: none;
}

.products-slide__swiper-wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}

.products-slide__slide-wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.products-slide__slide {
  padding-inline: 10px;
  width: 350px;
  min-height: 88px;
  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;
}
@media screen and (max-width: 840px) {
  .products-slide__slide {
    width: 300px;
  }
}
@media screen and (max-width: 540px) {
  .products-slide__slide {
    width: 260px;
  }
}

.products-slide__slide-img {
  width: 100%;
}
.products-slide__slide-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.products-slide__slide-title {
  font-family: "Barlow", sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 840px) {
  .products-slide__slide-title {
    font-size: 18px;
  }
}
@media screen and (max-width: 540px) {
  .products-slide__slide-title {
    font-size: 16px;
  }
}

/* ------------------------------------------------
flow
--------------------------------------------------- */
.flow {
  padding-top: 120px;
  background: #e7ecef;
}
@media screen and (max-width: 540px) {
  .flow {
    padding-top: 80px;
  }
}

.flow__head {
  position: relative;
}

.flow__button {
  width: auto;
}
@media screen and (max-width: 540px) {
  .flow__button {
    position: absolute;
    top: 140px;
    left: auto;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.flow__contents {
  margin-top: 40px;
}
@media screen and (max-width: 540px) {
  .flow__contents {
    margin-top: 80px;
  }
}

.flow__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 840px) {
  .flow__lists {
    height: 240px;
  }
}
@media screen and (max-width: 540px) {
  .flow__lists {
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.flow__list {
  z-index: 1;
  position: relative;
  padding: 40px 24px;
  width: 20%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 1140px) {
  .flow__list {
    padding: 25px 15px;
  }
}
@media screen and (max-width: 840px) {
  .flow__list {
    height: 100%;
  }
}
@media screen and (max-width: 540px) {
  .flow__list {
    width: 100%;
    height: 80px;
  }
}
.flow__list::before {
  z-index: 1;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(34, 52, 57, 0.6);
}
.flow__list .flow__list-body {
  z-index: 1;
  position: relative;
}
.flow__list:nth-child(1) {
  background-image: url(../images/top/flow-bg01.webp);
}
.flow__list:nth-child(2) {
  background-image: url(../images/top/flow-bg02.webp);
}
.flow__list:nth-child(3) {
  background-image: url(../images/top/flow-bg03.webp);
}
.flow__list:nth-child(4) {
  background-image: url(../images/top/flow-bg04.webp);
}
.flow__list:nth-child(5) {
  background-image: url(../images/top/flow-bg05.webp);
}

.flow__list-text {
  margin-top: 28px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 2.28;
  color: #fff;
}

/* ------------------------------------------------
voice & gallery
--------------------------------------------------- */
.voice {
  padding-block: 120px;
  background: #e7ecef;
}
@media screen and (max-width: 540px) {
  .voice {
    padding-top: 80px;
  }
}

.voice__contents {
  margin-top: 67px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 840px) {
  .voice__contents {
    margin-top: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}

.voice-instagram {
  width: 55%;
  height: 487px;
}
@media screen and (max-width: 840px) {
  .voice-instagram {
    width: 100%;
    height: auto;
  }
}

.voice-instagram__body {
  z-index: 1;
  position: relative;
}

.voice-instagram__slides {
  z-index: 1;
  position: relative;
  width: 100%;
  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;
}
@media screen and (max-width: 540px) {
  .voice-instagram__slides {
    gap: 4px;
  }
}

.voice-instagram__swiper {
  width: 100%;
}

.voice-instagram__swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}

.voice-instagram__swiper-slide {
  width: 209px;
  height: 157px;
}
.voice-instagram__swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.voice-instagram__texts {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.voice-instagram__bg-left {
  width: 40px;
  background: -webkit-gradient(linear, left top, right top, color-stop(7%, #e7ecef), to(transparent));
  background: linear-gradient(90deg, #e7ecef 7%, transparent 100%);
}
@media screen and (max-width: 540px) {
  .voice-instagram__bg-left {
    width: 50px;
  }
}

.voice-instagram__bg-right {
  width: 40px;
  background: -webkit-gradient(linear, right top, left top, color-stop(8%, #e7ecef), to(transparent));
  background: linear-gradient(270deg, #e7ecef 8%, transparent 100%);
}
@media screen and (max-width: 540px) {
  .voice-instagram__bg-right {
    width: 50px;
  }
}

.voice-instagram__button {
  width: auto;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.voice-instagram__link {
  padding-top: 20px;
  background: #d66161;
  width: 186px;
  height: 186px;
  border-radius: 50%;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.4, 0.4, 0, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.4, 0.4, 0, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0.4, 0, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0.4, 0, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0.4, 0, 1);
  will-change: transform;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
@media screen and (max-width: 840px) {
  .voice-instagram__link {
    padding-top: 10px;
    width: 160px;
    height: 160px;
  }
}
.voice-instagram__link:hover {
  -webkit-transform: scale(1.05, 1.05);
          transform: scale(1.05, 1.05);
}

.voice-instagram__link-icon,
.voice-instagram__link-text,
.voice-instagram__link-arrow {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.voice-instagram__link-icon {
  width: 31.5px;
}
@media screen and (max-width: 840px) {
  .voice-instagram__link-icon {
    width: 28px;
  }
}

.voice-instagram__link-text {
  margin-top: 5px;
  font-family: "Barlow", sans-serif;
  font-size: 25px;
  font-weight: 500;
  height: auto;
  letter-spacing: normal;
  line-height: 1.2;
  color: #fff;
}
@media screen and (max-width: 840px) {
  .voice-instagram__link-text {
    font-size: 22px;
  }
}

.voice-instagram__link-arrow {
  margin-top: 19px;
  width: 19.8px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 840px) {
  .voice-instagram__link-arrow {
    width: 17.32px;
  }
}
.voice-instagram__link-arrow svg {
  width: 100%;
  height: auto;
}

.voice__border {
  display: block;
  width: 1px;
  height: 100%;
  background-color: #707070;
}
@media screen and (max-width: 840px) {
  .voice__border {
    width: 100%;
    height: 1px;
  }
}

.voice-gallery {
  width: 43%;
}
@media screen and (max-width: 840px) {
  .voice-gallery {
    width: 100%;
  }
}

.voice-gallery__inner {
  height: 100%;
}
@media screen and (max-width: 840px) {
  .voice-gallery__inner {
    height: auto;
  }
}

.voice-gallery__body {
  height: 100%;
}
@media screen and (max-width: 840px) {
  .voice-gallery__body {
    height: auto;
  }
}

.voice-gallery__link {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 840px) {
  .voice-gallery__link {
    height: auto;
  }
}
.voice-gallery__link:hover img {
  -webkit-transform: scale(1.05, 1.05);
          transform: scale(1.05, 1.05);
}

.voice-gallery__img-container {
  width: 100%;
}

.voice-gallery__img {
  width: 100%;
  height: 258px;
  overflow: hidden;
}
@media screen and (max-width: 840px) {
  .voice-gallery__img {
    height: 352px;
  }
}
@media screen and (max-width: 540px) {
  .voice-gallery__img {
    height: 220px;
  }
}
.voice-gallery__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  will-change: transform;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.4, 0.4, 0, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.4, 0.4, 0, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0.4, 0, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0.4, 0, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0.4, 0, 1);
}

.voice-gallery__texts {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0px 24px 30px 24px;
  background-color: #fff;
  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;
}
@media screen and (max-width: 840px) {
  .voice-gallery__texts {
    padding: 0px 34px 39px 34px;
  }
}
@media screen and (max-width: 540px) {
  .voice-gallery__texts {
    padding: 0px 24px 30px 24px;
  }
}

.voice-gallery__num-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.voice-gallery__title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.5;
  color: #223439;
  text-align: right;
}
@media screen and (max-width: 1140px) {
  .voice-gallery__title {
    font-size: 16px;
  }
}
@media screen and (max-width: 840px) {
  .voice-gallery__title {
    margin-bottom: 65px;
    font-size: 24px;
  }
}
@media screen and (max-width: 540px) {
  .voice-gallery__title {
    margin-block: 8px 24px;
    font-size: 14px;
  }
}

.voice-gallery__name {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 2;
  color: #223439;
}
@media screen and (max-width: 840px) {
  .voice-gallery__name {
    font-size: 22px;
  }
}
@media screen and (max-width: 540px) {
  .voice-gallery__name {
    font-size: 13px;
  }
}

.voice-gallery__sub-text {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 2;
  color: #959ea7;
}
@media screen and (max-width: 840px) {
  .voice-gallery__sub-text {
    font-size: 20px;
  }
}
@media screen and (max-width: 540px) {
  .voice-gallery__sub-text {
    font-size: 12px;
  }
}

/* ------------------------------------------------
pg-about
--------------------------------------------------- */
/* ------------------------------------------------
message
--------------------------------------------------- */
.message {
  padding-top: 80px;
  background: #e7ecef;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px;
}
@media screen and (max-width: 840px) {
  .message {
    padding-top: 120px;
    gap: 60px;
  }
}
@media screen and (max-width: 540px) {
  .message {
    padding-top: 80px;
    gap: 40px;
  }
}
.message p {
  color: #223439;
  font-family: YuGothic, "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", "ヒラギノ角ゴ Pro W3", sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.08em;
  line-height: 2.33;
}
@media screen and (max-width: 840px) {
  .message p {
    font-size: 24px;
    line-height: 2;
  }
}
@media screen and (max-width: 540px) {
  .message p {
    font-size: 14px;
  }
}

.message-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
}
@media screen and (max-width: 540px) {
  .message-head {
    gap: 40px;
  }
}

.message-head__inner {
  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;
}
@media screen and (max-width: 840px) {
  .message-head__inner {
    width: 100%;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

.message-head__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}
@media screen and (max-width: 840px) {
  .message-head__body {
    width: 95%;
  }
}

.message-head__texts {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  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;
}
@media screen and (max-width: 840px) {
  .message-head__texts {
    width: 95%;
  }
}

@media screen and (max-width: 840px) {
  .message-head__heading-body {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 32px;
  }
}
@media screen and (max-width: 540px) {
  .message-head__heading-body {
    gap: 8px;
  }
}

@media screen and (max-width: 840px) {
  .message-head__heading-container {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 48px;
  }
}
@media screen and (max-width: 540px) {
  .message-head__heading-container {
    gap: 24px;
  }
}

.message-head__heading {
  font-family: "Kiwi Maru", serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.46;
  color: #000000;
}
@media screen and (max-width: 840px) {
  .message-head__heading {
    font-size: 3.5vw;
  }
}
@media screen and (max-width: 540px) {
  .message-head__heading {
    font-size: 4.5vw;
  }
}

@media screen and (max-width: 840px) {
  .message-head__text-body {
    margin-inline: auto;
    width: 90%;
  }
}

.message-head__bg-container {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  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;
}
@media screen and (max-width: 840px) {
  .message-head__bg-container.pc-only {
    display: none;
  }
}

.message-head__bg-wrapper.--first {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.message-head__bg-wrapper.--second {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.message-head__bg-wrapper.tb-only {
  display: none;
}
@media screen and (max-width: 840px) {
  .message-head__bg-wrapper.tb-only {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.message-head__bg.--first {
  width: 82.2%;
  height: 450px;
}
@media screen and (max-width: 840px) {
  .message-head__bg.--first {
    width: 40%;
    height: auto;
  }
}
@media screen and (max-width: 540px) {
  .message-head__bg.--first {
    width: 35%;
    height: auto;
  }
}
.message-head__bg.--second {
  width: 76.6%;
  height: 212px;
}
@media screen and (max-width: 840px) {
  .message-head__bg.--second {
    width: 63%;
    height: auto;
  }
}
.message-head__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 840px) {
  .message-head__bg img {
    height: auto;
  }
}

.message-bg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 840px) {
  .message-bg {
    margin-top: 92px;
  }
}
@media screen and (max-width: 540px) {
  .message-bg {
    margin-top: 0;
  }
}

.message-bg__img {
  width: 92.3%;
}

.message-bottom__second-heading {
  font-family: YuGothic, "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", "ヒラギノ角ゴ Pro W3", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 2.33;
  color: #223439;
}
@media screen and (max-width: 840px) {
  .message-bottom__second-heading {
    font-size: 24px;
    line-height: 2;
  }
}
@media screen and (max-width: 540px) {
  .message-bottom__second-heading {
    font-size: 12px;
  }
}

/* ------------------------------------------------
company
--------------------------------------------------- */
.company {
  padding-top: 116px;
  background: #e7ecef;
}
@media screen and (max-width: 840px) {
  .company {
    padding-top: 296px;
  }
}
@media screen and (max-width: 540px) {
  .company {
    padding-top: 80px;
  }
}

.company__body {
  margin-top: 40px;
}

.company__items dl {
  padding-block: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px dotted #647980;
}
@media screen and (max-width: 840px) {
  .company__items dl {
    padding-block: 31px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
@media screen and (max-width: 540px) {
  .company__items dl {
    padding-block: 20px;
    gap: 10px;
  }
}
.company__items dl:first-child {
  border-top: 1px dotted #647980;
}
.company__items dt {
  width: 176px;
}
@media screen and (max-width: 840px) {
  .company__items dt {
    width: 100%;
  }
}
.company__items dt p {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: #647980;
}
@media screen and (max-width: 840px) {
  .company__items dt p {
    font-size: 32px;
    font-weight: 500;
    line-height: 2;
  }
}
@media screen and (max-width: 540px) {
  .company__items dt p {
    font-size: 16px;
  }
}
.company__items dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.company__items dd p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  color: #223439;
}
@media screen and (max-width: 840px) {
  .company__items dd p {
    font-size: 24px;
    line-height: 2;
  }
}
@media screen and (max-width: 540px) {
  .company__items dd p {
    font-size: 16px;
  }
}

.company__map-link {
  margin-top: 13px;
  padding: 10px 31px;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid #3897d0;
  border-radius: 10px;
  font-family: "Barlow", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: normal;
  line-height: 1.85;
  color: #3897d0;
  -webkit-transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
}
@media screen and (max-width: 840px) {
  .company__map-link {
    margin-top: 24px;
  }
}
@media screen and (max-width: 540px) {
  .company__map-link {
    margin-top: 10px;
  }
}
.company__map-link:hover {
  background: #3897d0;
  color: #fff;
}

.company__tel-link {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  font: inherit;
}
@media screen and (max-width: 840px) {
  .company__tel-link {
    font-family: "ヒラギノ角ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", YuGothic, "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", sans-serif;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0.2em;
    line-height: 2;
    color: #3897d0;
    text-decoration: underline;
  }
}
@media screen and (max-width: 540px) {
  .company__tel-link {
    font-size: 14px;
  }
}

.company__tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 840px) {
  .company__tel {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-family: "ヒラギノ角ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", YuGothic, "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", sans-serif;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0.2em;
    line-height: 2;
    color: #223439;
  }
}
@media screen and (max-width: 540px) {
  .company__tel {
    font-size: 14px;
  }
}

/* ------------------------------------------------
archive-products
--------------------------------------------------- */
.pg-products {
  padding-top: 80px;
  background: #e7ecef;
  overflow: hidden;
}
@media screen and (max-width: 840px) {
  .pg-products {
    padding-top: 120px;
  }
}
@media screen and (max-width: 540px) {
  .pg-products {
    padding-top: 80px;
  }
}

.pg-products__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
}
@media screen and (max-width: 840px) {
  .pg-products__head {
    -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;
    gap: 72px;
  }
}
@media screen and (max-width: 540px) {
  .pg-products__head {
    gap: 40px;
  }
}

.pg-products__heading-area {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.pg-products__text-area {
  margin-bottom: -100px;
  width: 672px;
}
@media screen and (max-width: 1140px) {
  .pg-products__text-area {
    width: auto;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
@media screen and (max-width: 840px) {
  .pg-products__text-area {
    margin-bottom: 0;
    width: 100%;
  }
}
.pg-products__text-area p {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 2.33;
  color: #223439;
}
@media screen and (max-width: 1140px) {
  .pg-products__text-area p {
    font-size: 16px;
  }
}
@media screen and (max-width: 840px) {
  .pg-products__text-area p {
    font-size: 24px;
  }
}
@media screen and (max-width: 540px) {
  .pg-products__text-area p {
    font-size: 14px;
  }
}

.pg-products__body {
  margin-top: 120px;
}
@media screen and (max-width: 840px) {
  .pg-products__body {
    margin-top: 40px;
  }
}

.pg-products__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 80px;
}
@media screen and (max-width: 840px) {
  .pg-products__lists {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    row-gap: 40px;
  }
}

.pg-products__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 72px;
     -moz-column-gap: 72px;
          column-gap: 72px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pg-products__list:not(:first-child) {
  margin-top: -200px;
}
@media screen and (max-width: 840px) {
  .pg-products__list:not(:first-child) {
    margin-top: 0;
  }
}
.pg-products__list:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.pg-products__blank {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 840px) {
  .pg-products__blank {
    display: none;
  }
}

.pg-products__card {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.pg-products__img-container {
  z-index: 1;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.pg-products__bg {
  z-index: -1;
  position: absolute;
  width: 250%;
  height: 198px;
  background-color: #fff;
}
@media screen and (max-width: 1140px) {
  .pg-products__bg {
    height: 150px;
  }
}
@media screen and (max-width: 840px) {
  .pg-products__bg {
    height: 198px;
  }
}
@media screen and (max-width: 540px) {
  .pg-products__bg {
    height: 150px;
  }
}

@media screen and (max-width: 840px) {
  .pg-products__list:nth-child(odd) .pg-products__card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.pg-products__list:nth-child(odd) .pg-products__card-body {
  width: 100%;
  max-width: 400px;
}
@media screen and (max-width: 840px) {
  .pg-products__list:nth-child(odd) .pg-products__card-body {
    margin-inline: 20px;
    max-width: 514px;
    width: calc(100% - 40px);
  }
}
.pg-products__list:nth-child(odd) .pg-products__bg {
  top: 68px;
  left: 0;
  border-radius: 30px 0px 0px 30px;
}
@media screen and (max-width: 1140px) {
  .pg-products__list:nth-child(odd) .pg-products__bg {
    top: 82px;
  }
}
@media screen and (max-width: 840px) {
  .pg-products__list:nth-child(odd) .pg-products__bg {
    top: 90px;
  }
}
@media screen and (max-width: 540px) {
  .pg-products__list:nth-child(odd) .pg-products__bg {
    top: 55px;
  }
}
.pg-products__list:nth-child(odd) .pg-products__img {
  opacity: 0;
  width: 100%;
  max-width: 480px;
}
@media screen and (max-width: 840px) {
  .pg-products__list:nth-child(odd) .pg-products__img {
    opacity: 1;
  }
}
.pg-products__list:nth-child(odd) .pg-products__img.js-fade.is-animated {
  opacity: 0;
  -webkit-animation: fadeRight 0.5s ease-out 0.5s forwards;
          animation: fadeRight 0.5s ease-out 0.5s forwards;
}
@media screen and (max-width: 840px) {
  .pg-products__list:nth-child(odd) .pg-products__img.js-fade.is-animated {
    opacity: 1;
    -webkit-animation: initial;
            animation: initial;
  }
}
.pg-products__list:nth-child(odd) .pg-products__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.pg-products__list:nth-child(even) .pg-products__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 840px) {
  .pg-products__list:nth-child(even) .pg-products__card {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.pg-products__list:nth-child(even) .pg-products__card-body {
  width: 100%;
  max-width: 370px;
}
@media screen and (max-width: 840px) {
  .pg-products__list:nth-child(even) .pg-products__card-body {
    margin-inline: 20px;
    max-width: 514px;
    width: calc(100% - 40px);
  }
}
.pg-products__list:nth-child(even) .pg-products__img-container {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.pg-products__list:nth-child(even) .pg-products__bg {
  top: 55px;
  right: -5px;
  border-radius: 0px 30px 30px 0px;
}
@media screen and (max-width: 840px) {
  .pg-products__list:nth-child(even) .pg-products__bg {
    top: 63px;
  }
}
@media screen and (max-width: 840px) {
  .pg-products__list:nth-child(even) .pg-products__bg {
    top: 90px;
    right: 0;
  }
}
@media screen and (max-width: 540px) {
  .pg-products__list:nth-child(even) .pg-products__bg {
    top: 55px;
  }
}
.pg-products__list:nth-child(even) .pg-products__img {
  opacity: 0;
  width: 100%;
  max-width: 460px;
}
@media screen and (max-width: 840px) {
  .pg-products__list:nth-child(even) .pg-products__img {
    opacity: 1;
    max-width: 480px;
  }
}
.pg-products__list:nth-child(even) .pg-products__img.js-fade.is-animated {
  opacity: 0;
  -webkit-animation: fadeLeft 0.5s ease-out 0.1s forwards;
          animation: fadeLeft 0.5s ease-out 0.1s forwards;
}
@media screen and (max-width: 840px) {
  .pg-products__list:nth-child(even) .pg-products__img.js-fade.is-animated {
    opacity: 1;
    -webkit-animation: initial;
            animation: initial;
  }
}
.pg-products__list img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.pg-products__card-texts {
  z-index: 1;
  position: relative;
  margin-top: -80px;
}
@media screen and (max-width: 1140px) {
  .pg-products__card-texts {
    margin-top: -60px;
  }
}
@media screen and (max-width: 540px) {
  .pg-products__card-texts {
    margin-top: -50px;
  }
}

.pg-products__num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Barlow", sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.33;
  color: #647980;
}
@media screen and (max-width: 540px) {
  .pg-products__num {
    font-size: 20px;
  }
}

.pg-products__card-title {
  margin-top: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
}
@media screen and (max-width: 540px) {
  .pg-products__card-title {
    margin-top: 0;
    padding-inline: 2px;
    row-gap: 0;
  }
}
.pg-products__card-title .--en {
  font-family: "Barlow", sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.33;
  color: #647980;
}
@media screen and (max-width: 1140px) {
  .pg-products__card-title .--en {
    font-size: 24px;
  }
}
@media screen and (max-width: 840px) {
  .pg-products__card-title .--en {
    font-size: 36px;
  }
}
@media screen and (max-width: 540px) {
  .pg-products__card-title .--en {
    font-size: 20px;
  }
}
.pg-products__card-title .--jp {
  font-family: YuGothic, "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", "ヒラギノ角ゴ Pro W3", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 2;
  color: #223439;
}
@media screen and (max-width: 840px) {
  .pg-products__card-title .--jp {
    font-size: 20px;
  }
}
@media screen and (max-width: 540px) {
  .pg-products__card-title .--jp {
    font-size: 15px;
  }
}

.pg-products__card-link {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  -webkit-transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
}
@media screen and (max-width: 540px) {
  .pg-products__card-link {
    gap: 16px;
  }
}
.pg-products__card-link .text {
  font-family: "ヒラギノ角ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", YuGothic, "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: #3897d0;
}
@media screen and (max-width: 840px) {
  .pg-products__card-link .text {
    font-size: 20px;
    font-weight: 400;
  }
}
@media screen and (max-width: 540px) {
  .pg-products__card-link .text {
    font-size: 16px;
    font-weight: 700;
  }
}
.pg-products__card-link .icon-arrow {
  width: 65px;
  max-width: 100%;
  -webkit-transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
}
@media screen and (max-width: 540px) {
  .pg-products__card-link .icon-arrow {
    width: 40px;
  }
}
.pg-products__card-link:hover .icon-arrow {
  -webkit-transform: translate(20px, 0);
          transform: translate(20px, 0);
}

.pg-products__button {
  margin-top: 60px;
  margin-inline: auto;
  width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 72px;
     -moz-column-gap: 72px;
          column-gap: 72px;
}
@media screen and (max-width: 1140px) {
  .pg-products__button {
    margin-top: 40px;
  }
}
@media screen and (max-width: 840px) {
  .pg-products__button {
    margin-top: 60px;
  }
}
@media screen and (max-width: 540px) {
  .pg-products__button {
    margin-top: 50px;
  }
}
.pg-products__button.--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.pg-products__button-blank {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 840px) {
  .pg-products__button-blank {
    display: none;
  }
}

.pg-products__button-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 840px) {
  .pg-products__button-body {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.pg-products__button.--reverse .pg-products__button-body {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 840px) {
  .pg-products__button.--reverse .pg-products__button-body {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.pg-products__bottom {
  margin-top: -130px;
}
@media screen and (max-width: 840px) {
  .pg-products__bottom {
    margin-top: 60px;
  }
}

.pg-products_bottom-bg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 8px;
}
@media screen and (max-width: 540px) {
  .pg-products_bottom-bg {
    gap: 4px;
  }
}

.pg-products__bottom-img.--first {
  width: 41.8%;
  border-radius: 60px 60px 0px 60px;
  overflow: hidden;
}
@media screen and (max-width: 540px) {
  .pg-products__bottom-img.--first {
    border-radius: 30px 30px 0px 30px;
  }
}
.pg-products__bottom-img.--second {
  width: 57.5%;
  border-radius: 60px 60px 60px 0px;
  overflow: hidden;
}
@media screen and (max-width: 540px) {
  .pg-products__bottom-img.--second {
    border-radius: 30px 30px 30px 0px;
  }
}
.pg-products__bottom-img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.pg-products_bottom-bg.--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 840px) {
  .pg-products_bottom-bg.--reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.pg-products_bottom-bg.--reverse .pg-products__bottom-img.--first {
  border-radius: 60px 60px 60px 0px;
}
@media screen and (max-width: 840px) {
  .pg-products_bottom-bg.--reverse .pg-products__bottom-img.--first {
    border-radius: 60px 60px 0px 60px;
  }
}
@media screen and (max-width: 540px) {
  .pg-products_bottom-bg.--reverse .pg-products__bottom-img.--first {
    border-radius: 30px 30px 0px 30px;
  }
}
.pg-products_bottom-bg.--reverse .pg-products__bottom-img.--second {
  border-radius: 60px 60px 0px 60px;
}
@media screen and (max-width: 840px) {
  .pg-products_bottom-bg.--reverse .pg-products__bottom-img.--second {
    border-radius: 60px 60px 60px 0px;
  }
}
@media screen and (max-width: 540px) {
  .pg-products_bottom-bg.--reverse .pg-products__bottom-img.--second {
    border-radius: 30px 30px 30px 0px;
  }
}

/* ------------------------------------------------
single-blog
--------------------------------------------------- */
/* ------------------------------------------------
記事
--------------------------------------------------- */
.detail-blog {
  padding-top: 80px;
  background: #e7ecef;
}
@media screen and (max-width: 840px) {
  .detail-blog {
    padding-top: 120px;
  }
}
@media screen and (max-width: 540px) {
  .detail-blog {
    padding-top: 80px;
  }
}
.detail-blog .c-article__main {
  padding-top: 60px;
}

.detail-blog__heading.c-article__heading {
  font-size: 74px;
}
@media screen and (max-width: 1140px) {
  .detail-blog__heading.c-article__heading {
    font-size: 64px;
  }
}
@media screen and (max-width: 840px) {
  .detail-blog__heading.c-article__heading {
    font-size: 72px;
  }
}
@media screen and (max-width: 540px) {
  .detail-blog__heading.c-article__heading {
    font-size: 42px;
  }
}

/* ------------------------------------------------
サイドバー
--------------------------------------------------- */
.blog-sidebar__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 1140px) {
  .blog-sidebar__lists {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }
}
@media screen and (max-width: 840px) {
  .blog-sidebar__lists {
    margin-inline: auto;
    width: 100%;
    max-width: 514px;
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 540px) {
  .blog-sidebar__lists {
    gap: 32px;
  }
}

.blog-sidebar__list {
  width: 100%;
}

.blog-sidebar__card-link {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.blog-sidebar__card-link:hover .icon-arrow {
  -webkit-transform: translate(20px, 0);
          transform: translate(20px, 0);
}

.blog-sidebar__img-container {
  z-index: 1;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.blog-sidebar__bg {
  z-index: -1;
  position: absolute;
  bottom: 50%;
  left: 0;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  width: 100%;
  height: 90%;
  background-color: #fff;
  border-radius: 30px;
}

.blog-sidebar__img {
  width: 100%;
}
.blog-sidebar__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog-sidebar__card-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 540px) {
  .blog-sidebar__card-title {
    row-gap: 0;
  }
}
.blog-sidebar__card-title .--en {
  font-family: "Barlow", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.33;
  color: #647980;
}
@media screen and (max-width: 1140px) {
  .blog-sidebar__card-title .--en {
    font-size: 20px;
  }
}
@media screen and (max-width: 840px) {
  .blog-sidebar__card-title .--en {
    font-size: 24px;
  }
}
@media screen and (max-width: 540px) {
  .blog-sidebar__card-title .--en {
    font-size: 18px;
  }
}
.blog-sidebar__card-title .--jp {
  font-family: YuGothic, "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", "ヒラギノ角ゴ Pro W3", sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 2;
  color: #223439;
}
@media screen and (max-width: 840px) {
  .blog-sidebar__card-title .--jp {
    font-size: 20px;
  }
}
@media screen and (max-width: 540px) {
  .blog-sidebar__card-title .--jp {
    font-size: 15px;
  }
}

.blog-sidebar__button {
  margin-top: 10px;
}

/* ------------------------------------------------
pg-blog
--------------------------------------------------- */
/* ------------------------------------------------
記事
--------------------------------------------------- */
.pg-blog {
  padding-top: 150px;
  background: #e7ecef;
}
@media screen and (max-width: 840px) {
  .pg-blog {
    padding-top: 120px;
  }
}
@media screen and (max-width: 540px) {
  .pg-blog {
    padding-top: 80px;
  }
}
.pg-blog .c-article__main {
  padding-top: 60px;
}

.pg-blog__lists {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 48px;
}
@media screen and (max-width: 1140px) {
  .pg-blog__lists {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 840px) {
  .pg-blog__lists {
    margin-inline: auto;
    width: 100%;
    max-width: 514px;
    grid-template-columns: repeat(1, 1fr);
    gap: 48px;
  }
}
@media screen and (max-width: 540px) {
  .pg-blog__lists {
    gap: 32px;
  }
}

.pg-blog__list {
  width: 100%;
}

.pg-blog__card-link {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.pg-blog__card-link:hover .icon-arrow {
  -webkit-transform: translate(20px, 0);
          transform: translate(20px, 0);
}

.pg-blog__button {
  margin-top: 10px;
}

.pg-blog__img-container {
  z-index: 1;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.pg-blog__bg {
  z-index: -1;
  position: absolute;
  bottom: 50%;
  left: 0;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  width: 100%;
  height: 90%;
  background-color: #fff;
  border-radius: 30px;
}

.pg-blog__img {
  width: 100%;
}
.pg-blog__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.pg-blog__card-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 540px) {
  .pg-blog__card-title {
    row-gap: 0;
  }
}
.pg-blog__card-title .--en {
  font-family: "Barlow", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.33;
  color: #647980;
}
@media screen and (max-width: 1140px) {
  .pg-blog__card-title .--en {
    font-size: 20px;
  }
}
@media screen and (max-width: 840px) {
  .pg-blog__card-title .--en {
    font-size: 24px;
  }
}
@media screen and (max-width: 540px) {
  .pg-blog__card-title .--en {
    font-size: 18px;
  }
}
.pg-blog__card-title .--jp {
  font-family: YuGothic, "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", "ヒラギノ角ゴ Pro W3", sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 2;
  color: #223439;
}
@media screen and (max-width: 840px) {
  .pg-blog__card-title .--jp {
    font-size: 20px;
  }
}
@media screen and (max-width: 540px) {
  .pg-blog__card-title .--jp {
    font-size: 15px;
  }
}

.pg-blog__button {
  margin-top: 10px;
}

/* ------------------------------------------------
voice
--------------------------------------------------- */
/* ------------------------------------------------
voice
--------------------------------------------------- */
.pg-voice {
  padding-top: 80px;
  background: #e7ecef;
}
@media screen and (max-width: 840px) {
  .pg-voice {
    padding-top: 120px;
  }
}
@media screen and (max-width: 540px) {
  .pg-voice {
    padding-top: 80px;
  }
}

@media screen and (max-width: 840px) {
  .pg-voice__heading.c-lower-heading .--en {
    font-size: 8.5vw;
  }
}
@media screen and (max-width: 540px) {
  .pg-voice__heading.c-lower-heading .--en {
    font-size: 10vw;
  }
}

.pg-voice__contents {
  margin-top: 72px;
}
@media screen and (max-width: 840px) {
  .pg-voice__contents {
    margin-top: 119px;
  }
}
@media screen and (max-width: 540px) {
  .pg-voice__contents {
    margin-top: 40px;
  }
}

.pg-voice__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 840px) {
  .pg-voice__lists {
    gap: 48px;
  }
}

.pg-voice__list-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}
@media screen and (max-width: 840px) {
  .pg-voice__list-link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
.pg-voice__list-link:hover .pg-voice__img img {
  -webkit-transform: scale(1.05, 1.05);
          transform: scale(1.05, 1.05);
}

.pg-voice__img-body {
  z-index: 1;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 840px) {
  .pg-voice__img-body {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.pg-voice__img {
  width: 496px;
  height: 291px;
  border-radius: 30px 0px 30px 0px;
  overflow: hidden;
}
@media screen and (max-width: 840px) {
  .pg-voice__img {
    width: 84.7%;
  }
}
@media screen and (max-width: 540px) {
  .pg-voice__img {
    width: 90%;
  }
}
.pg-voice__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
}

.pg-voice__num-body {
  z-index: 1;
  position: absolute;
  bottom: 0px;
  left: 20px;
}
@media screen and (max-width: 840px) {
  .pg-voice__num-body {
    bottom: 10px;
  }
}

.pg-voice__text-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 840px) {
  .pg-voice__text-body {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.pg-voice__texts {
  padding: 31px 38px 31px 0px;
  border-bottom: 2px solid #3897d0;
  border-right: 2px solid #3897d0;
  border-radius: 0px 0px 30px 0px;
}
@media screen and (max-width: 840px) {
  .pg-voice__texts {
    padding: 40px 38px 22px 0px;
    width: 84.7%;
  }
}
@media screen and (max-width: 540px) {
  .pg-voice__texts {
    padding: 22px 22px 22px 0px;
    width: 90%;
  }
}

.pg-voice__title {
  font-family: YuGothic, "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", "ヒラギノ角ゴ Pro W3", sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 2;
  color: #223439;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
@media screen and (max-width: 1140px) {
  .pg-voice__title {
    font-size: 20px;
  }
}
@media screen and (max-width: 840px) {
  .pg-voice__title {
    font-size: 24px;
  }
}
@media screen and (max-width: 540px) {
  .pg-voice__title {
    font-size: 14px;
  }
}

.pg-voice__sub-text {
  margin: 16px 0px;
  font-family: YuGothic, "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", "ヒラギノ角ゴ Pro W3", sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1.4;
  color: #223439;
}
@media screen and (max-width: 1140px) {
  .pg-voice__sub-text {
    font-size: 14px;
  }
}
@media screen and (max-width: 840px) {
  .pg-voice__sub-text {
    margin: 68px 0px 21px;
    font-size: 20px;
  }
}
@media screen and (max-width: 540px) {
  .pg-voice__sub-text {
    margin: 32px 0px 10px;
    font-size: 12px;
  }
}

.pg-voice__name {
  font-family: YuGothic, "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", "ヒラギノ角ゴ Pro W3", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.4;
  color: #223439;
}
@media screen and (max-width: 1140px) {
  .pg-voice__name {
    font-size: 16px;
  }
}
@media screen and (max-width: 840px) {
  .pg-voice__name {
    font-size: 24px;
  }
}
@media screen and (max-width: 540px) {
  .pg-voice__name {
    font-size: 13px;
  }
}

/* ------------------------------------------------
gallery
--------------------------------------------------- */
.pg-gallery {
  padding-top: 80px;
  background: #e7ecef;
}

.pg-gallery__contents {
  margin-top: 32px;
}
@media screen and (max-width: 540px) {
  .pg-gallery__contents {
    margin-top: 40px;
  }
}

.pg-gallery__lists {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
@media screen and (max-width: 840px) {
  .pg-gallery__lists {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 540px) {
  .pg-gallery__lists {
    gap: 4px;
  }
}

.pg-gallery__img {
  width: 100%;
}
.pg-gallery__img img {
  height: auto;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ------------------------------------------------
single-voice
--------------------------------------------------- */
.detail-voice {
  padding-top: 80px;
  background: #e7ecef;
}
@media screen and (max-width: 840px) {
  .detail-voice {
    padding-top: 120px;
  }
}
@media screen and (max-width: 540px) {
  .detail-voice {
    padding-top: 80px;
  }
}

.detail-voice__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
}

.detail-voice__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.detail-voice__heading .num-title {
  text-transform: uppercase;
}
.detail-voice__heading .num-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
/* ------------------------------------------------
flow
--------------------------------------------------- */
.pg-flow {
  padding-top: 80px;
  background: #e7ecef;
}
@media screen and (max-width: 840px) {
  .pg-flow {
    padding-top: 150px;
  }
}
@media screen and (max-width: 540px) {
  .pg-flow {
    padding-top: 80px;
  }
}

.pg-flow__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 840px) {
  .pg-flow__lists {
    gap: 32px;
  }
}

.pg-flow__list {
  z-index: 1;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 840px) {
  .pg-flow__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.pg-flow__text-body {
  padding-top: 40px;
  width: 67%;
}
@media screen and (max-width: 840px) {
  .pg-flow__text-body {
    padding-top: 0;
    width: 100%;
  }
}

.pg-flow__texts {
  padding: 13px 40px 34px 176px;
  background-color: #fff;
  min-height: 270px;
}
@media screen and (max-width: 1140px) {
  .pg-flow__texts {
    padding: 13px 40px 34px 100px;
  }
}
@media screen and (max-width: 840px) {
  .pg-flow__texts {
    padding: 13px 32px 45px;
    min-height: auto;
  }
}
@media screen and (max-width: 540px) {
  .pg-flow__texts {
    padding: 13px 20px 24px 20px;
  }
}

.pg-flow__title {
  z-index: 1;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.pg-flow__title-texts {
  z-index: 1;
  position: absolute;
  bottom: 16px;
  left: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5em;
  font-family: YuGothic, "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", "ヒラギノ角ゴ Pro W3", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.75;
  color: #223439;
}
@media screen and (max-width: 540px) {
  .pg-flow__title-texts {
    bottom: 12px;
    font-size: 18px;
  }
}

.pg-flow__num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.pg-flow__num::before {
  counter-increment: listnum;
  content: counter(listnum, decimal-leading-zero);
}

.pg-flow__text {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 2.33;
  color: #223439;
}
@media screen and (max-width: 840px) {
  .pg-flow__text {
    margin-top: 10px;
    font-size: 24px;
    line-height: 2;
  }
}
@media screen and (max-width: 540px) {
  .pg-flow__text {
    font-size: 14px;
  }
}
.pg-flow__text .strong-text {
  font-weight: 700;
}

.pg-flow__buttons {
  margin-top: 27px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 1140px) {
  .pg-flow__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 840px) {
  .pg-flow__buttons {
    margin-top: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 540px) {
  .pg-flow__buttons {
    margin-top: 10px;
    gap: 8px;
  }
}

.pg-flow__link {
  padding: 9px 5px;
  width: 100%;
  max-width: 210px;
  border: 1px solid #3897d0;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
@media screen and (max-width: 840px) {
  .pg-flow__link {
    max-width: 325px;
  }
}
@media screen and (max-width: 540px) {
  .pg-flow__link {
    max-width: 210px;
  }
}
.pg-flow__link .text {
  font-family: YuGothic, "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", "ヒラギノ角ゴ Pro W3", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.75;
  color: #3897d0;
}
@media screen and (max-width: 840px) {
  .pg-flow__link .text {
    font-size: 24px;
  }
}
@media screen and (max-width: 540px) {
  .pg-flow__link .text {
    font-size: 14px;
  }
}
.pg-flow__link .icon {
  width: 20px;
}
@media screen and (max-width: 840px) {
  .pg-flow__link .icon {
    width: 24px;
  }
}

.pg-flow__img-body {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 46.7%;
  height: auto;
}
@media screen and (max-width: 1140px) {
  .pg-flow__img-body {
    width: 42%;
  }
}
@media screen and (max-width: 840px) {
  .pg-flow__img-body {
    position: initial;
    width: 100%;
  }
}
.pg-flow__img-body img {
  width: 100%;
  height: auto;
  aspect-ratio: 497/296;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ------------------------------------------------
contact
--------------------------------------------------- */
.pg-contact {
  padding-block: 80px;
  background: #e7ecef;
}
@media screen and (max-width: 840px) {
  .pg-contact {
    padding-top: 120px;
  }
}

.pg-contact__head {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 2.33;
  color: #223439;
}
@media screen and (max-width: 840px) {
  .pg-contact__head {
    font-size: 24px;
  }
}
@media screen and (max-width: 540px) {
  .pg-contact__head {
    font-size: 14px;
  }
}
.pg-contact__head p {
  font: inherit;
}
.pg-contact__head p:not(:first-child) {
  margin-top: 42px;
}
@media screen and (max-width: 840px) {
  .pg-contact__head p:not(:first-child) {
    margin-top: 56px;
  }
}
@media screen and (max-width: 540px) {
  .pg-contact__head p:not(:first-child) {
    margin-top: 32px;
  }
}
.pg-contact__head p .link-text-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.pg-contact__head p a {
  font-family: inherit;
  font-size: inherit;
  font-weight: 700;
  color: #3897d0;
}

.pg-contact__form-body {
  margin-top: 80px;
}

.form__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: 16px;
}

.form__field {
  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;
}

.form__label label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  font-family: YuGothic, "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", "ヒラギノ角ゴ Pro W3", sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.2;
  color: #223439;
}
@media screen and (max-width: 540px) {
  .form__label label {
    font-size: 14px;
  }
}

.required {
  font-family: YuGothic, "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", "ヒラギノ角ゴ Pro W3", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  color: #f23a3c;
}

.form__input,
textarea.form__textarea {
  padding: 10px;
  width: 100%;
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 4px;
  font-family: YuGothic, "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", "ヒラギノ角ゴ Pro W3", sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0em;
  line-height: 1.4;
  color: #223439;
}

.form__input {
  height: 50px;
}

textarea.form__textarea {
  height: 250px;
}

.wpcf7-not-valid-tip {
  margin-top: 0.2em;
  color: #f23a3c;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}

.wpcf7-response-output {
  margin-top: 0.2em;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}

.form__button {
  margin-top: 20px;
}
@media screen and (max-width: 540px) {
  .form__button {
    margin-top: 24px;
  }
}

.form__submit-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.form__submit-input {
  padding: 16px 20px 18px;
  width: 100%;
  max-width: 242px;
  height: auto;
  border: 1px solid #3897d0;
  border-radius: 16px;
  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;
  -webkit-transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
  font-family: "ヒラギノ角ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", YuGothic, "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: #3897d0;
}
@media screen and (max-width: 540px) {
  .form__submit-input {
    max-width: 236px;
    font-size: 14px;
  }
}
.form__submit-input:hover {
  background: #3897d0;
  color: #fff;
}

/* ------------------------------------------------
thanks
--------------------------------------------------- */
.pg-thanks {
  padding-block: 200px;
  background: #e7ecef;
}
@media screen and (max-width: 540px) {
  .pg-thanks {
    padding-block: 120px 80px;
  }
}

.pg-thanks__body {
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}

.pg-thanks__text {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  font-family: YuGothic, "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", "ヒラギノ角ゴ Pro W3", sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 2.33;
  text-align: center;
  color: #223439;
}
@media screen and (max-width: 540px) {
  .pg-thanks__text {
    font-size: 14px;
  }
}

.pg-thanks__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* ------------------------------------------------
privacy-policy
--------------------------------------------------- */
.privacy {
  padding-block: 80px;
  background: #e7ecef;
}
@media screen and (max-width: 840px) {
  .privacy {
    padding-top: 120px;
  }
}

#pg-privacy {
  font-family: YuGothic, "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", "ヒラギノ角ゴ Pro W3", sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 2.33;
  color: #223439;
}
@media screen and (max-width: 540px) {
  #pg-privacy {
    font-size: 14px;
  }
}
#pg-privacy h2 {
  margin-block: 10px;
  font-family: YuGothic, "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", "ヒラギノ角ゴ Pro W3", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 2.33;
  color: #223439;
}
@media screen and (max-width: 540px) {
  #pg-privacy h2 {
    font-size: 14px;
  }
}
#pg-privacy p {
  font-family: YuGothic, "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", "ヒラギノ角ゴ Pro W3", sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 2.33;
  color: #223439;
}
@media screen and (max-width: 540px) {
  #pg-privacy p {
    font-size: 14px;
  }
}
#pg-privacy li {
  font-family: YuGothic, "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", "ヒラギノ角ゴ Pro W3", sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 2.33;
  color: #223439;
}
@media screen and (max-width: 540px) {
  #pg-privacy li {
    font-size: 14px;
  }
}
#pg-privacy .privacy__lists > li {
  position: relative;
  padding-left: 1em;
  width: 100%;
}
#pg-privacy .privacy__lists > li::before {
  position: absolute;
  top: 0;
  left: 0;
  counter-increment: listnum;
  content: counter(listnum) ".";
}
#pg-privacy .privacy__lists.--second > li::before {
  margin-right: 0.5em;
}
#pg-privacy .privacy__lists.--third > li::before {
  content: "・";
}

.privacy__items {
  margin-top: 1em;
}
.privacy__items:not(:first-child) {
  margin-top: 1em;
}

.u-inner-pl {
  padding-left: 98px;
}
@media screen and (max-width: 1140px) {
  .u-inner-pl {
    padding-left: initial;
  }
}
.u-inner-p {
  padding-inline: 98px 81px;
}
@media screen and (max-width: 1140px) {
  .u-inner-p {
    padding-inline: initial;
  }
}/*# sourceMappingURL=style.css.map */