/*------------------------------------------------------------
  reset.css customized
------------------------------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strong, sub, sup, var,
b, u, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  height: -webkit-fill-available;
}

body {
  min-height: 100vh;
  min-height: -webkit-fill-available;
  -webkit-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
}
h2 {
  font-family: "noto sans" !important;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, picture {
  display: block;
}

audio, canvas, progress, video {
  display: inline-block;
  vertical-align: baseline;
}

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

ul {
  list-style: none;
}

ol {
  margin-left: 1.8em;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

input,
button,
select,
optgroup,
option,
textarea {
  margin: 0;
  font-family: initial;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  cursor: pointer;
}

button, input, select {
  overflow: visible;
}

button, select {
  text-transform: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

img {
  vertical-align: middle;
}

a {
  text-decoration: none;
  background-color: transparent;
}

a:active,
a:hover {
  text-decoration: none;
}

strong {
  font-weight: 700;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

/*------------------------------------------------------------
  setting
------------------------------------------------------------*/
html {
  scroll-padding-top: 4rem;
  font-size: 2.66666666vw;
}

@media screen and (min-width: 1024px) {
  html {
    scroll-padding-top: 7.5rem;
  }
}

@media screen and (min-width: 600px) {
  html {
    font-size: 1.5625vw;
  }
}

@media screen and (min-width: 1024px) {
  html {
    font-size: 0.9765625vw;
  }
}

@media screen and (min-width: 1280px) {
  html {
    font-size: 0.625vw;
  }
}

@media screen and (min-width: 1536px) {
  html {
    font-size: 0.65104166vw;
  }
}

@media screen and (min-width: 1920px) {
  html {
    font-size: 0.52083333vw;
  }
}

@media screen and (min-width: 2560px) {
  html {
    font-size: 0.390625vw;
  }
}

body {
  position: relative;
  color: #000000;
  font-size: 1.5rem;
  font-weight: 400;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.75;
  letter-spacing: 0;
}

body.is-fixed {
  overflow: hidden;
}

@media screen and (min-width: 1024px) {
  body {
    font-size: 1.7rem;
  }
  body.is-fixed {
    overflow: visible;
  }
}

p {
  line-break: strict;
}

a {
  color: #000000;
}

img, video {
  max-width: 100%;
  height: auto;
}

video, iframe {
  display: block;
}

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

figcaption {
  margin-top: .8rem;
}

@media screen and (min-width: 1024px) {
  figcaption {
    margin-top: 1rem;
  }
}

@media screen and (max-width: 599px) {
  .tb, .pc, .pc--small, .pc--medium, .pc--large {
    display: none !important;
  }
  .sp {
    display: revert !important;
  }
}

@media screen and (min-width: 600px) and (max-width: 1023px) {
  .sp, .pc, .pc--small, .pc--medium, .pc--large {
    display: none !important;
  }
  .tb {
    display: revert !important;
  }
}

@media screen and (min-width: 1024px) {
  .sp, .tb {
    display: none !important;
  }
  .pc {
    display: revert !important;
  }
  .pc--small {
    display: revert !important;
  }
  .pc--medium {
    display: none !important;
  }
  .pc--large {
    display: none !important;
  }
}

@media screen and (min-width: 1280px) {
  .pc--small {
    display: none !important;
  }
  .pc--medium {
    display: revert !important;
  }
}

@media screen and (min-width: 1536px) {
  .pc--small {
    display: none !important;
  }
  .pc--medium {
    display: none !important;
  }
  .pc--large {
    display: revert !important;
  }
}

.bg-lazy {
  background-image: none !important;
}

/*
* scroll effect
*/
.fade, .fade--medium, .fade--large {
  opacity: 0;
  transition-property: opacity;
  transition-duration: 1000ms;
  transition-timing-function: ease;
}

.fade--medium {
  transition-duration: 1500ms;
}

.fade--large {
  transition-duration: 2000ms;
}

.is-in .fade, .is-in .fade--medium, .is-in .fade--large, .is-in.fade, .is-in.fade--medium, .is-in.fade--large {
  opacity: 1;
}

.fade--right {
  opacity: 0;
  transform: translate(-1rem, 0);
  transition-property: opacity, transform;
  transition-duration: 1400ms, 1000ms;
  transition-timing-function: ease-out, ease-out;
}

.is-in .fade--right, .is-in.fade--right {
  opacity: 1;
  transform: translate(0, 0);
}

.fade--left {
  opacity: 0;
  transform: translate(1rem, 0);
  transition-property: opacity, transform;
  transition-duration: 1400ms, 1000ms;
  transition-timing-function: ease-out, ease-out;
}

.is-in .fade--left, .is-in.fade--left {
  opacity: 1;
  transform: translate(0, 0);
}

.fade--up, .fade--up--large {
  opacity: 0;
  transform: translate(0, 1rem);
  transition-property: opacity, transform;
  transition-duration: 300ms, 300ms;
  transition-timing-function: ease, ease-out;
}

.fade--up--large {
  transform: translate(0, 6rem);
}

.is-in .fade--up, .is-in .fade--up--large, .is-in.fade--up, .is-in.fade--up--large {
  opacity: 1;
  transform: translate(0, 0);
}

.scale--up {
  opacity: 0;
  transform: scale(0.9);
  transition-property: opacity, transform;
  transition-duration: 1000ms, 1000ms;
  transition-timing-function: ease, ease;
}

.is-in .scale--up, .is-in.scale--up {
  opacity: 1;
  transform: scale(1);
}

.delay--200 {
  transition-delay: 200ms;
  animation-delay: 200ms;
}

.delay--200 span,
.delay--200 span:before,
.delay--200 span:after {
  transition-delay: 200ms;
  animation-delay: 200ms;
}

@media screen and (min-width: 600px) {
  .tb-delay--200 {
    transition-delay: 200ms !important;
    animation-delay: 200ms !important;
  }
}

@media screen and (min-width: 600px) {
  .tb-delay--200 span,
  .tb-delay--200 span:before,
  .tb-delay--200 span:after {
    transition-delay: 200ms !important;
    animation-delay: 200ms !important;
  }
}

@media screen and (min-width: 1024px) {
  .pc-delay--200 {
    transition-delay: 200ms !important;
    animation-delay: 200ms !important;
  }
}

@media screen and (min-width: 1024px) {
  .pc-delay--200 span,
  .pc-delay--200 span:before,
  .pc-delay--200 span:after {
    transition-delay: 200ms !important;
    animation-delay: 200ms !important;
  }
}

.delay--400 {
  transition-delay: 400ms;
  animation-delay: 400ms;
}

.delay--400 span,
.delay--400 span:before,
.delay--400 span:after {
  transition-delay: 400ms;
  animation-delay: 400ms;
}

@media screen and (min-width: 600px) {
  .tb-delay--400 {
    transition-delay: 400ms !important;
    animation-delay: 400ms !important;
  }
}

@media screen and (min-width: 600px) {
  .tb-delay--400 span,
  .tb-delay--400 span:before,
  .tb-delay--400 span:after {
    transition-delay: 400ms !important;
    animation-delay: 400ms !important;
  }
}

@media screen and (min-width: 1024px) {
  .pc-delay--400 {
    transition-delay: 400ms !important;
    animation-delay: 400ms !important;
  }
}

@media screen and (min-width: 1024px) {
  .pc-delay--400 span,
  .pc-delay--400 span:before,
  .pc-delay--400 span:after {
    transition-delay: 400ms !important;
    animation-delay: 400ms !important;
  }
}

.delay--600 {
  transition-delay: 600ms;
  animation-delay: 600ms;
}

.delay--600 span,
.delay--600 span:before,
.delay--600 span:after {
  transition-delay: 600ms;
  animation-delay: 600ms;
}

@media screen and (min-width: 600px) {
  .tb-delay--600 {
    transition-delay: 600ms !important;
    animation-delay: 600ms !important;
  }
}

@media screen and (min-width: 600px) {
  .tb-delay--600 span,
  .tb-delay--600 span:before,
  .tb-delay--600 span:after {
    transition-delay: 600ms !important;
    animation-delay: 600ms !important;
  }
}

@media screen and (min-width: 1024px) {
  .pc-delay--600 {
    transition-delay: 600ms !important;
    animation-delay: 600ms !important;
  }
}

@media screen and (min-width: 1024px) {
  .pc-delay--600 span,
  .pc-delay--600 span:before,
  .pc-delay--600 span:after {
    transition-delay: 600ms !important;
    animation-delay: 600ms !important;
  }
}

.delay--800 {
  transition-delay: 800ms;
  animation-delay: 800ms;
}

.delay--800 span,
.delay--800 span:before,
.delay--800 span:after {
  transition-delay: 800ms;
  animation-delay: 800ms;
}

@media screen and (min-width: 600px) {
  .tb-delay--800 {
    transition-delay: 800ms !important;
    animation-delay: 800ms !important;
  }
}

@media screen and (min-width: 600px) {
  .tb-delay--800 span,
  .tb-delay--800 span:before,
  .tb-delay--800 span:after {
    transition-delay: 800ms !important;
    animation-delay: 800ms !important;
  }
}

@media screen and (min-width: 1024px) {
  .pc-delay--800 {
    transition-delay: 800ms !important;
    animation-delay: 800ms !important;
  }
}

@media screen and (min-width: 1024px) {
  .pc-delay--800 span,
  .pc-delay--800 span:before,
  .pc-delay--800 span:after {
    transition-delay: 800ms !important;
    animation-delay: 800ms !important;
  }
}

.delay--1000 {
  transition-delay: 1000ms;
  animation-delay: 1000ms;
}

.delay--1000 span,
.delay--1000 span:before,
.delay--1000 span:after {
  transition-delay: 1000ms;
  animation-delay: 1000ms;
}

@media screen and (min-width: 600px) {
  .tb-delay--1000 {
    transition-delay: 1000ms !important;
    animation-delay: 1000ms !important;
  }
}

@media screen and (min-width: 600px) {
  .tb-delay--1000 span,
  .tb-delay--1000 span:before,
  .tb-delay--1000 span:after {
    transition-delay: 1000ms !important;
    animation-delay: 1000ms !important;
  }
}

@media screen and (min-width: 1024px) {
  .pc-delay--1000 {
    transition-delay: 1000ms !important;
    animation-delay: 1000ms !important;
  }
}

@media screen and (min-width: 1024px) {
  .pc-delay--1000 span,
  .pc-delay--1000 span:before,
  .pc-delay--1000 span:after {
    transition-delay: 1000ms !important;
    animation-delay: 1000ms !important;
  }
}

.delay--1200 {
  transition-delay: 1200ms;
  animation-delay: 1200ms;
}

.delay--1200 span,
.delay--1200 span:before,
.delay--1200 span:after {
  transition-delay: 1200ms;
  animation-delay: 1200ms;
}

@media screen and (min-width: 600px) {
  .tb-delay--1200 {
    transition-delay: 1200ms !important;
    animation-delay: 1200ms !important;
  }
}

@media screen and (min-width: 600px) {
  .tb-delay--1200 span,
  .tb-delay--1200 span:before,
  .tb-delay--1200 span:after {
    transition-delay: 1200ms !important;
    animation-delay: 1200ms !important;
  }
}

@media screen and (min-width: 1024px) {
  .pc-delay--1200 {
    transition-delay: 1200ms !important;
    animation-delay: 1200ms !important;
  }
}

@media screen and (min-width: 1024px) {
  .pc-delay--1200 span,
  .pc-delay--1200 span:before,
  .pc-delay--1200 span:after {
    transition-delay: 1200ms !important;
    animation-delay: 1200ms !important;
  }
}

.delay--1400 {
  transition-delay: 1400ms;
  animation-delay: 1400ms;
}

.delay--1400 span,
.delay--1400 span:before,
.delay--1400 span:after {
  transition-delay: 1400ms;
  animation-delay: 1400ms;
}

@media screen and (min-width: 600px) {
  .tb-delay--1400 {
    transition-delay: 1400ms !important;
    animation-delay: 1400ms !important;
  }
}

@media screen and (min-width: 600px) {
  .tb-delay--1400 span,
  .tb-delay--1400 span:before,
  .tb-delay--1400 span:after {
    transition-delay: 1400ms !important;
    animation-delay: 1400ms !important;
  }
}

@media screen and (min-width: 1024px) {
  .pc-delay--1400 {
    transition-delay: 1400ms !important;
    animation-delay: 1400ms !important;
  }
}

@media screen and (min-width: 1024px) {
  .pc-delay--1400 span,
  .pc-delay--1400 span:before,
  .pc-delay--1400 span:after {
    transition-delay: 1400ms !important;
    animation-delay: 1400ms !important;
  }
}

.delay--1600 {
  transition-delay: 1600ms;
  animation-delay: 1600ms;
}

.delay--1600 span,
.delay--1600 span:before,
.delay--1600 span:after {
  transition-delay: 1600ms;
  animation-delay: 1600ms;
}

@media screen and (min-width: 600px) {
  .tb-delay--1600 {
    transition-delay: 1600ms !important;
    animation-delay: 1600ms !important;
  }
}

@media screen and (min-width: 600px) {
  .tb-delay--1600 span,
  .tb-delay--1600 span:before,
  .tb-delay--1600 span:after {
    transition-delay: 1600ms !important;
    animation-delay: 1600ms !important;
  }
}

@media screen and (min-width: 1024px) {
  .pc-delay--1600 {
    transition-delay: 1600ms !important;
    animation-delay: 1600ms !important;
  }
}

@media screen and (min-width: 1024px) {
  .pc-delay--1600 span,
  .pc-delay--1600 span:before,
  .pc-delay--1600 span:after {
    transition-delay: 1600ms !important;
    animation-delay: 1600ms !important;
  }
}

.delay--1800 {
  transition-delay: 1800ms;
  animation-delay: 1800ms;
}

.delay--1800 span,
.delay--1800 span:before,
.delay--1800 span:after {
  transition-delay: 1800ms;
  animation-delay: 1800ms;
}

@media screen and (min-width: 600px) {
  .tb-delay--1800 {
    transition-delay: 1800ms !important;
    animation-delay: 1800ms !important;
  }
}

@media screen and (min-width: 600px) {
  .tb-delay--1800 span,
  .tb-delay--1800 span:before,
  .tb-delay--1800 span:after {
    transition-delay: 1800ms !important;
    animation-delay: 1800ms !important;
  }
}

@media screen and (min-width: 1024px) {
  .pc-delay--1800 {
    transition-delay: 1800ms !important;
    animation-delay: 1800ms !important;
  }
}

@media screen and (min-width: 1024px) {
  .pc-delay--1800 span,
  .pc-delay--1800 span:before,
  .pc-delay--1800 span:after {
    transition-delay: 1800ms !important;
    animation-delay: 1800ms !important;
  }
}

.delay--2000 {
  transition-delay: 2000ms;
  animation-delay: 2000ms;
}

.delay--2000 span,
.delay--2000 span:before,
.delay--2000 span:after {
  transition-delay: 2000ms;
  animation-delay: 2000ms;
}

@media screen and (min-width: 600px) {
  .tb-delay--2000 {
    transition-delay: 2000ms !important;
    animation-delay: 2000ms !important;
  }
}

@media screen and (min-width: 600px) {
  .tb-delay--2000 span,
  .tb-delay--2000 span:before,
  .tb-delay--2000 span:after {
    transition-delay: 2000ms !important;
    animation-delay: 2000ms !important;
  }
}

@media screen and (min-width: 1024px) {
  .pc-delay--2000 {
    transition-delay: 2000ms !important;
    animation-delay: 2000ms !important;
  }
}

@media screen and (min-width: 1024px) {
  .pc-delay--2000 span,
  .pc-delay--2000 span:before,
  .pc-delay--2000 span:after {
    transition-delay: 2000ms !important;
    animation-delay: 2000ms !important;
  }
}

.delay--2200 {
  transition-delay: 2200ms;
  animation-delay: 2200ms;
}

.delay--2200 span,
.delay--2200 span:before,
.delay--2200 span:after {
  transition-delay: 2200ms;
  animation-delay: 2200ms;
}

@media screen and (min-width: 600px) {
  .tb-delay--2200 {
    transition-delay: 2200ms !important;
    animation-delay: 2200ms !important;
  }
}

@media screen and (min-width: 600px) {
  .tb-delay--2200 span,
  .tb-delay--2200 span:before,
  .tb-delay--2200 span:after {
    transition-delay: 2200ms !important;
    animation-delay: 2200ms !important;
  }
}

@media screen and (min-width: 1024px) {
  .pc-delay--2200 {
    transition-delay: 2200ms !important;
    animation-delay: 2200ms !important;
  }
}

@media screen and (min-width: 1024px) {
  .pc-delay--2200 span,
  .pc-delay--2200 span:before,
  .pc-delay--2200 span:after {
    transition-delay: 2200ms !important;
    animation-delay: 2200ms !important;
  }
}

.delay--2400 {
  transition-delay: 2400ms;
  animation-delay: 2400ms;
}

.delay--2400 span,
.delay--2400 span:before,
.delay--2400 span:after {
  transition-delay: 2400ms;
  animation-delay: 2400ms;
}

@media screen and (min-width: 600px) {
  .tb-delay--2400 {
    transition-delay: 2400ms !important;
    animation-delay: 2400ms !important;
  }
}

@media screen and (min-width: 600px) {
  .tb-delay--2400 span,
  .tb-delay--2400 span:before,
  .tb-delay--2400 span:after {
    transition-delay: 2400ms !important;
    animation-delay: 2400ms !important;
  }
}

@media screen and (min-width: 1024px) {
  .pc-delay--2400 {
    transition-delay: 2400ms !important;
    animation-delay: 2400ms !important;
  }
}

@media screen and (min-width: 1024px) {
  .pc-delay--2400 span,
  .pc-delay--2400 span:before,
  .pc-delay--2400 span:after {
    transition-delay: 2400ms !important;
    animation-delay: 2400ms !important;
  }
}

.delay--2600 {
  transition-delay: 2600ms;
  animation-delay: 2600ms;
}

.delay--2600 span,
.delay--2600 span:before,
.delay--2600 span:after {
  transition-delay: 2600ms;
  animation-delay: 2600ms;
}

@media screen and (min-width: 600px) {
  .tb-delay--2600 {
    transition-delay: 2600ms !important;
    animation-delay: 2600ms !important;
  }
}

@media screen and (min-width: 600px) {
  .tb-delay--2600 span,
  .tb-delay--2600 span:before,
  .tb-delay--2600 span:after {
    transition-delay: 2600ms !important;
    animation-delay: 2600ms !important;
  }
}

@media screen and (min-width: 1024px) {
  .pc-delay--2600 {
    transition-delay: 2600ms !important;
    animation-delay: 2600ms !important;
  }
}

@media screen and (min-width: 1024px) {
  .pc-delay--2600 span,
  .pc-delay--2600 span:before,
  .pc-delay--2600 span:after {
    transition-delay: 2600ms !important;
    animation-delay: 2600ms !important;
  }
}

.delay--2800 {
  transition-delay: 2800ms;
  animation-delay: 2800ms;
}

.delay--2800 span,
.delay--2800 span:before,
.delay--2800 span:after {
  transition-delay: 2800ms;
  animation-delay: 2800ms;
}

@media screen and (min-width: 600px) {
  .tb-delay--2800 {
    transition-delay: 2800ms !important;
    animation-delay: 2800ms !important;
  }
}

@media screen and (min-width: 600px) {
  .tb-delay--2800 span,
  .tb-delay--2800 span:before,
  .tb-delay--2800 span:after {
    transition-delay: 2800ms !important;
    animation-delay: 2800ms !important;
  }
}

@media screen and (min-width: 1024px) {
  .pc-delay--2800 {
    transition-delay: 2800ms !important;
    animation-delay: 2800ms !important;
  }
}

@media screen and (min-width: 1024px) {
  .pc-delay--2800 span,
  .pc-delay--2800 span:before,
  .pc-delay--2800 span:after {
    transition-delay: 2800ms !important;
    animation-delay: 2800ms !important;
  }
}

.delay--3000 {
  transition-delay: 3000ms;
  animation-delay: 3000ms;
}

.delay--3000 span,
.delay--3000 span:before,
.delay--3000 span:after {
  transition-delay: 3000ms;
  animation-delay: 3000ms;
}

@media screen and (min-width: 600px) {
  .tb-delay--3000 {
    transition-delay: 3000ms !important;
    animation-delay: 3000ms !important;
  }
}

@media screen and (min-width: 600px) {
  .tb-delay--3000 span,
  .tb-delay--3000 span:before,
  .tb-delay--3000 span:after {
    transition-delay: 3000ms !important;
    animation-delay: 3000ms !important;
  }
}

@media screen and (min-width: 1024px) {
  .pc-delay--3000 {
    transition-delay: 3000ms !important;
    animation-delay: 3000ms !important;
  }
}

@media screen and (min-width: 1024px) {
  .pc-delay--3000 span,
  .pc-delay--3000 span:before,
  .pc-delay--3000 span:after {
    transition-delay: 3000ms !important;
    animation-delay: 3000ms !important;
  }
}

.delay--3200 {
  transition-delay: 3200ms;
  animation-delay: 3200ms;
}

.delay--3200 span,
.delay--3200 span:before,
.delay--3200 span:after {
  transition-delay: 3200ms;
  animation-delay: 3200ms;
}

@media screen and (min-width: 600px) {
  .tb-delay--3200 {
    transition-delay: 3200ms !important;
    animation-delay: 3200ms !important;
  }
}

@media screen and (min-width: 600px) {
  .tb-delay--3200 span,
  .tb-delay--3200 span:before,
  .tb-delay--3200 span:after {
    transition-delay: 3200ms !important;
    animation-delay: 3200ms !important;
  }
}

@media screen and (min-width: 1024px) {
  .pc-delay--3200 {
    transition-delay: 3200ms !important;
    animation-delay: 3200ms !important;
  }
}

@media screen and (min-width: 1024px) {
  .pc-delay--3200 span,
  .pc-delay--3200 span:before,
  .pc-delay--3200 span:after {
    transition-delay: 3200ms !important;
    animation-delay: 3200ms !important;
  }
}

.delay--2000 {
  transition-delay: 2000ms;
  animation-delay: 2000ms;
}

.delay--5000 {
  transition-delay: 5000ms;
  animation-delay: 5000ms;
}

.text-animation span {
  opacity: 0;
}

.text-animation span:nth-child(1) {
  --nth-child: 1;
}

.text-animation span:nth-child(2) {
  --nth-child: 2;
}

.text-animation span:nth-child(3) {
  --nth-child: 3;
}

.text-animation span:nth-child(4) {
  --nth-child: 4;
}

.text-animation span:nth-child(5) {
  --nth-child: 5;
}

.text-animation span:nth-child(6) {
  --nth-child: 6;
}

.text-animation span:nth-child(7) {
  --nth-child: 7;
}

.text-animation span:nth-child(8) {
  --nth-child: 8;
}

.text-animation span:nth-child(9) {
  --nth-child: 9;
}

.text-animation span:nth-child(10) {
  --nth-child: 10;
}

.text-animation span:nth-child(11) {
  --nth-child: 11;
}

.text-animation span:nth-child(12) {
  --nth-child: 12;
}

.text-animation span:nth-child(13) {
  --nth-child: 13;
}

.text-animation span:nth-child(14) {
  --nth-child: 14;
}

.text-animation span:nth-child(15) {
  --nth-child: 15;
}

.text-animation span:nth-child(16) {
  --nth-child: 16;
}

.text-animation span:nth-child(17) {
  --nth-child: 17;
}

.text-animation span:nth-child(18) {
  --nth-child: 18;
}

.text-animation span:nth-child(19) {
  --nth-child: 19;
}

.text-animation span:nth-child(20) {
  --nth-child: 20;
}

.text-animation span:nth-child(21) {
  --nth-child: 21;
}

.text-animation span:nth-child(22) {
  --nth-child: 22;
}

.text-animation span:nth-child(23) {
  --nth-child: 23;
}

.text-animation span:nth-child(24) {
  --nth-child: 24;
}

.text-animation span:nth-child(25) {
  --nth-child: 25;
}

.text-animation span:nth-child(26) {
  --nth-child: 26;
}

.text-animation span:nth-child(27) {
  --nth-child: 27;
}

.text-animation span:nth-child(28) {
  --nth-child: 28;
}

.text-animation span:nth-child(29) {
  --nth-child: 29;
}

.text-animation span:nth-child(30) {
  --nth-child: 30;
}

.text-animation span:nth-child(31) {
  --nth-child: 31;
}

.text-animation span:nth-child(32) {
  --nth-child: 32;
}

.text-animation span:nth-child(33) {
  --nth-child: 33;
}

.text-animation span:nth-child(34) {
  --nth-child: 34;
}

.text-animation span:nth-child(35) {
  --nth-child: 35;
}

.text-animation span:nth-child(36) {
  --nth-child: 36;
}

.text-animation span:nth-child(37) {
  --nth-child: 37;
}

.text-animation span:nth-child(38) {
  --nth-child: 38;
}

.text-animation span:nth-child(39) {
  --nth-child: 39;
}

.text-animation span:nth-child(40) {
  --nth-child: 40;
}

.is-in.text-animation span,
.is-in .text-animation span {
  animation: 1000ms ease both text-in;
  animation-delay: calc(var(--nth-child) * 60ms - 60ms);
}

.is-in.text-animation--slow span,
.is-in .text-animation--slow span {
  animation: 1000ms ease both text-in;
  animation-delay: calc(var(--nth-child) * 70ms - 70ms);
}

.is-in.text-animation--fast span,
.is-in .text-animation--fast span {
  animation: 800ms ease both text-in;
  animation-delay: calc(var(--nth-child) * 40ms - 40ms);
}

.is-in.text-animation--delay--1400 span,
.is-in .text-animation--delay--1400 span {
  animation: 1400ms ease both text-in;
  animation-delay: calc(var(--nth-child) * 60ms - 60ms + 1400ms);
}

.is-in.text-animation--slow--delay--1000 span,
.is-in .text-animation--slow--delay--1000 span {
  animation: 1000ms ease both text-in;
  animation-delay: calc(var(--nth-child) * 70ms - 70ms + 1000ms);
}

.is-in.text-animation--fast--delay--400 span,
.is-in .text-animation--fast--delay--400 span {
  animation: 800ms ease both text-in;
  animation-delay: calc(var(--nth-child) * 40ms - 40ms + 400ms);
}

.is-in.text-animation--fast--delay--800 span,
.is-in .text-animation--fast--delay--800 span {
  animation: 800ms ease both text-in;
  animation-delay: calc(var(--nth-child) * 40ms - 40ms + 800ms);
}

@keyframes text-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes text-out-in {
  0% {
    opacity: 1;
    transform: translate(0, 0%);
  }
  40% {
    opacity: 0;
  }
  45% {
    transform: translate(0, -110%);
  }
  46% {
    transform: translate(0, -110%);
  }
  80% {
    transform: translate(0, 100%);
  }
  85% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translate(0, 0%);
  }
}

/*------------------------------------------------------------
  layout first
------------------------------------------------------------*/
.l-container, .l-container--pt-0, .l-container--pb-0 {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

@media screen and (min-width: 1024px) {
  .l-container, .l-container--pt-0, .l-container--pb-0 {
    padding-top: 14rem;
    padding-bottom: 14rem;
  }
}

.l-container--pt-0 {
  padding-top: 0;
}

.l-container--pb-0 {
  padding-bottom: 0;
}

.l-sp-container, .l-sp-container--pt-0, .l-sp-container--pb-0 {
  padding-top: 4rem;
  padding-bottom: 6rem;
}

@media screen and (min-width: 1024px) {
  .l-sp-container, .l-sp-container--pt-0, .l-sp-container--pb-0 {
    padding-top: 0;
    padding-bottom: 0;
  }
}

.l-sp-container--pt-0 {
  padding-top: 0;
}

.l-sp-container--pb-0 {
  padding-bottom: 0;
}

.l-center, .l-center--small, .l-center--medium, .l-center--large, .l-center--sp-small {
  padding-right: 2rem;
  padding-left: 2rem;
}

@media screen and (min-width: 1024px) {
  .l-center, .l-center--small, .l-center--medium, .l-center--large, .l-center--sp-small {
    width: 100%;
    max-width: calc(94rem + 10rem);
    margin-right: auto;
    margin-left: auto;
    padding-right: 5rem;
    padding-left: 5rem;
  }
}

@media screen and (min-width: 1024px) {
  .l-center--small {
    max-width: calc(85rem + 10rem);
  }
}

@media screen and (min-width: 1024px) {
  .l-center--medium {
    max-width: calc(152rem + 10rem);
  }
}

@media screen and (min-width: 1024px) {
  .l-center--large {
    max-width: calc(190rem + 10rem);
  }
}

.l-center--sp-small {
  padding-right: 4rem;
  padding-left: 4rem;
}

@media screen and (min-width: 1024px) {
  .l-center--sp-small {
    padding-right: 5rem;
    padding-left: 5rem;
  }
}

.l-sp-center {
  padding-right: 2rem;
  padding-left: 2rem;
}

@media screen and (min-width: 1024px) {
  .l-sp-center {
    padding-right: 0;
    padding-left: 0;
  }
}

@media screen and (min-width: 1024px) {
  .l-pc-center {
    width: 100%;
    max-width: calc(94rem + 10rem);
    margin-right: auto;
    margin-left: auto;
    padding-right: 5rem;
    padding-left: 5rem;
  }
}

@media screen and (min-width: 1536px) {
  .l-pc-center {
    width: calc(94rem + 10rem);
  }
}

/* ---------------------------
  header
--------------------------- */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 300;
  width: 100%;
  height: 6rem;
  transition: height .3s ease, background .3s ease, box-shadow .3s ease;
}

@media screen and (min-width: 1024px) {
  .l-header {
    height: 15rem;
    background: none;
    box-shadow: none;
  }
}

.is-scroll .l-header {
  height: 4rem;
  background: #FFF;
  box-shadow: 0 0 1rem 1rem rgba(0, 0, 0, 0.3);
}

@media screen and (min-width: 1024px) {
  .is-scroll .l-header {
    height: 7.5rem;
  }
}

.is-scroll .l-header .logo {
  box-shadow: none;
}

.is-scroll .l-header .logo img {
  width: 3rem;
}

@media screen and (min-width: 1024px) {
  .is-scroll .l-header .logo img {
    transform: translate(0.5rem, 0rem) skew(40deg);
    width: 5rem;
  }
}

.is-scroll .l-header .contact {
  width: 8rem;
}

@media screen and (min-width: 1024px) {
  .is-scroll .l-header .contact {
    width: 16.5rem;
    height: 7.5rem;
  }
}

.is-menu-open .l-header {
  background: #FFF;
}

.l-header > .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

@media screen and (min-width: 1024px) {
  .l-header > .inner {
    align-items: flex-start;
  }
}

.l-header .logo {
  display: grid;
  place-items: center;
  transform: translate(-6rem, 0) skew(-40deg);
  width: 15rem;
  height: 100%;
  margin-left: 0;
  background: #FFF;
  box-shadow: 0 0 1rem 1rem rgba(0, 0, 0, 0.3);
  transition: box-shadow .3s ease;
}

@media screen and (min-width: 1024px) {
  .l-header .logo {
    transform: translate(-6rem, 0) skew(-40deg);
    width: 26rem;
    height: 100%;
    box-shadow: 0 0 1rem 1rem rgba(0, 0, 0, 0.3);
  }
}

.l-header .logo img {
  transition: width .3s ease, transform .3s ease;
  transform: translate(2rem, -0.1rem) skew(40deg);
  width: 4rem;
}

@media screen and (min-width: 1024px) {
  .l-header .logo img {
    transform: translate(0.5rem, -0.5rem) skew(40deg);
    width: 8.3rem;
  }
}

.l-header .contact {
  display: grid;
  place-items: center;
  width: 6rem;
  height: 100%;
  border: .1rem solid #636262;
  background: #636262;
  color: #FFF;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: .12em;
  transition: width .3s ease, height .3s ease, background .3s ease, color .3s ease;
}

@media screen and (min-width: 1024px) {
  .l-header .contact {
    width: 10rem;
    height: 10rem;
    font-size: 1.4rem;
  }
}

.l-header .contact > span {
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  gap: .4rem;
  height: auto;
}

@media screen and (min-width: 1024px) {
  .l-header .contact > span {
    gap: .8rem;
  }
}

.l-header .contact:active:not(:disabled), .l-header .contact:hover:not(:disabled) {
  background: #FFF;
  color: #636262;
}

.l-header .contact:active:not(:disabled) path, .l-header .contact:hover:not(:disabled) path {
  fill: #636262;
}

.l-header .contact svg {
  display: inline-block;
  width: 2rem;
  margin-right: .5rem;
  margin-left: .5rem;
}

@media screen and (min-width: 1024px) {
  .l-header .contact svg {
    width: 3.6rem;
  }
}

.l-header .contact path {
  transition: fill .3s ease;
}

.l-main {
  overflow: hidden;
  position: relative;
}

@media screen and (min-width: 1024px) {
  .l-main {
    padding-top: 0;
  }
}

/*------------------------------------------------------------
  compornent first
------------------------------------------------------------*/
/*------------------------------------------------------------
  index first
------------------------------------------------------------*/
.style-index .p-mv {
  position: relative;
}

.style-index .p-mv video {
  object-fit: cover;
  width: 100%;
  max-width: none;
  height: 50vh;
}

@media screen and (min-width: 1024px) {
  .style-index .p-mv video {
    height: calc(100vh - 4.5rem);
  }
}

@media screen and (min-width: 1024px) and (orientation: portrait) {
  .style-index .p-mv video {
    height: 50vh;
  }
}

.style-index .p-mv h1 {
  position: absolute;
  top: 48%;
  left: 52%;
  transform: translate(-50%, -50%);
  color: #FFF;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.36758489;
  letter-spacing: 1.2rem;
  white-space: nowrap;
  text-align: center;
  text-shadow: 0.2rem 0.2rem 0.5rem rgba(0, 0, 0, 0.5);
}

@media screen and (min-width: 1024px) {
  .style-index .p-mv h1 {
    font-size: 7.4rem;
    letter-spacing: 3.2rem;
    text-shadow: 0.5rem 0.5rem 0.7rem rgba(0, 0, 0, 0.5);
  }
}

.style-index .p-mv a {
  position: absolute;
  bottom: -2.5rem;
  right: 1rem;
  z-index: 1;
  height: 8.5rem;
  padding-left: .5rem;
  writing-mode: vertical-rl;
  color: #FFF;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: .18em;
}

@media screen and (min-width: 1024px) {
  .style-index .p-mv a {
    bottom: -4.5rem;
    right: auto;
    left: 6rem;
    height: 16rem;
    padding-left: 1rem;
    font-size: 1.7rem;
  }
}

@media screen and (min-width: 1366px) {
  .style-index .p-mv a {
    left: 11rem;
  }
}

.style-index .p-mv a:before {
  display: block;
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: .1rem;
  height: 100%;
  background: #FFF;
}

@media screen and (min-width: 1024px) {
  .style-index .p-mv a:before {
    width: .2rem;
  }
}

.style-index .p-mv a:after {
  display: block;
  position: absolute;
  content: '';
  top: 6rem;
  left: 0;
  width: .1rem;
  height: 2.5rem;
  background: #1a5ea8;
}

@media screen and (min-width: 1024px) {
  .style-index .p-mv a:after {
    top: 11.5rem;
    width: .2rem;
    height: 4.5rem;
  }
}

.style-index .p-topics {
  position: relative;
  padding: 2.5rem 3rem;
  background: #FFF;
  box-shadow: 0.1rem 0.1rem 0.2rem 0.2rem rgba(0, 0, 0, 0.3);
}

@media screen and (min-width: 1024px) {
    .style-index .p-topics {
        display: grid;
        grid-template-columns: 11rem 1fr;
        grid-template-rows: 5rem 5rem 5rem;
        align-items: center;
        gap: 0 3rem;
        width: 68vw;
        height: 17rem;
        margin-top: -4.5rem;
        margin-left: auto;
        padding-top: 12px;
        padding-bottom: 0;
        padding-right: 4vw;
        padding-left: 4rem;
    }
}
@media (min-width: 1024px) and (max-width: 1280px) {
  .style-index .p-topics {
    display: grid;
    grid-template-columns: 11rem 1fr;
    grid-template-rows: 5rem 5rem 5rem;
    align-items: center;
    gap: 0 3rem;
    width: 80vw;
    height: 17rem;
    margin-top: -4.5rem;
    margin-left: auto;
    padding-top: 12px;
    padding-bottom: 0;
    padding-right: 4vw;
    padding-left: 4rem;
}
}
@media screen and (min-width: 1366px) {
  .style-index .p-topics {
    padding-right: 2vw;
  }
}
.p-topics article {
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
}
.p-topics article:last-child {
  border-bottom: 1px solid #fff;
  padding-bottom: 10px;
}
.style-index .p-topics h2 {
  position: relative;
  margin-bottom: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: .1rem solid #3b3b3b;
  line-height: 1;
}

@media screen and (min-width: 1024px) {
  .style-index .p-topics h2 {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
}

/* @media screen and (min-width: 1024px) {
  .style-index .p-topics h2:before {
    display: block;
    position: absolute;
    content: '';
    top: 50%;
    right: -7.1rem;
    transform: translate(-50%, -50%);
    width: 2.8rem;
    height: 2.8rem;
    border: .1rem solid #808080;
    border-radius: 2.8rem;
  }
}

@media screen and (min-width: 1024px) {
  .style-index .p-topics h2:after {
    display: block;
    position: absolute;
    content: '';
    top: 50%;
    right: -5rem;
    transform: translate(-50%, -50%) rotate(45deg);
    width: .9rem;
    height: .9rem;
    border-top: .1rem solid #808080;
    border-right: .1rem solid #808080;
  }
} */
.display_content {
  display: contents;
}
.style-index .p-topics h2 .en {
  background: #00a1dd;
  background: linear-gradient(135deg, #00a1dd 0%, #1a5ea8 70%, #1a5ea8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 3.6rem;
  font-weight: 900;
}

@media screen and (min-width: 1024px) {
  .style-index .p-topics h2 .en {
    font-size: 4.2rem;
  }
}

.style-index .p-topics h2 .en span {
  font-size: 2rem;
}

@media screen and (min-width: 1024px) {
  .style-index .p-topics h2 .en span {
    font-size: 2.6rem;
  }
}

.style-index .p-topics h2 .ja {
  display: inline-block;
  margin-left: .6rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .25em;
}

@media screen and (min-width: 1024px) {
  .style-index .p-topics h2 .ja {
    display: block;
    margin-top: .2rem;
    font-size: 1.2rem;
    text-align: right;
  }
}

@media screen and (min-width: 1024px) {
  .style-index .p-topics article > * {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
}

.style-index .p-topics p {
  position: relative;
  padding-left: 7rem;
  font-size: 1.5rem;
  font-weight: 600;
}

@media screen and (min-width: 1024px) {
  .style-index .p-topics p {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 0;
  }
}

.style-index .p-topics .category {
  display: grid;
  place-items: center;
  position: absolute;
  top: .5rem;
  left: 0;
  width: 5.5rem;
  height: 4.5rem;
  background: #1a5ea8;
  color: #FFF;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: .2em;
}

@media screen and (min-width: 1024px) {
  .style-index .p-topics .category {
    position: relative;
    top: auto;
    left: auto;
    width: fit-content;
    height: 2.5rem;
    margin-right: 2.5rem;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}

.style-index .p-topics h3 {
  position: relative;
  padding-left: 7rem;
  font-size: 1.5rem;
  letter-spacing: .15em;
}

@media screen and (min-width: 1024px) {
  .style-index .p-topics h3 {
    margin-left: 2rem;
    padding-left: 0;
  }
}

@media screen and (min-width: 1024px) {
  .style-index .p-topics h3:before {
    display: none;
    position: absolute;
    content: '';
    top: 52%;
    left: -5.5rem;
    transform: translate(-50%, -50%);
    width: 6rem;
    height: 4.5rem;
    background: url(../images/index/topics_dot.svg) center/100% no-repeat;
  }
}

.style-index .p-business {
  padding-top: 5rem;
  background: #dbedf8;
}

@media screen and (min-width: 1024px) {
  .style-index .p-business {
    margin-top: -4.5rem;
    padding-top: 10rem;
  }
}

.style-index .p-business h2 {
  display: grid;
  place-items: center;
  position: relative;
  height: 15rem;
  line-height: 1;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .style-index .p-business h2 {
    justify-items: start;
    align-items: center;
    height: 21.5rem;
    text-align: left;
  }
}

.style-index .p-business h2:before {
  display: block;
  position: absolute;
  content: '';
  top: 50%;
  left: 0;
  transform: translate(0%, -50%);
  width: 100%;
  height: 15rem;
  background: linear-gradient(135deg, #00a1dd 0%, #1a5ea8 70%, #1a5ea8 100%);
}

@media screen and (min-width: 1024px) {
  .style-index .p-business h2:before {
    left: -6%;
    width: 76vw;
    height: 21.5rem;
  }
}

@media screen and (min-width: 1280px) {
  .style-index .p-business h2:before {
    left: -19%;
  }
}

@media screen and (min-width: 1536px) {
  .style-index .p-business h2:before {
    left: -32%;
    width: 74vw;
  }
}

@media screen and (min-width: 1920px) {
  .style-index .p-business h2:before {
    left: -53%;
    width: 69vw;
  }
}

@media screen and (min-width: 2560px) {
  .style-index .p-business h2:before {
    left: -87%;
    width: 64vw;
  }
}

.style-index .p-business h2 > span {
  transform: translate(0, -0.6rem);
}

@media screen and (min-width: 1024px) {
  .style-index .p-business h2 > span {
    transform: none;
  }
}

.style-index .p-business h2 .en {
  opacity: .5;
  position: relative;
  color: #c4d3d8;
  font-size: 3.3rem;
}

@media screen and (min-width: 1024px) {
  .style-index .p-business h2 .en {
    font-size: 5.4rem;
  }
}

.style-index .p-business h2 .ja {
  display: block;
  position: relative;
  margin-top: -.6rem;
  color: #FFF;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-shadow: 0.4rem 0.4rem 0.6rem rgba(0, 0, 0, 0.3);
}

@media screen and (min-width: 1024px) {
  .style-index .p-business h2 .ja {
    margin-top: -1.2rem;
    font-size: 4rem;
  }
}

.style-index .p-business .business_01 {
  position: relative;
  margin-top: -5rem;
}

@media screen and (min-width: 600px) {
  .style-index .p-business .business_01 {
    width: 36rem;
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (min-width: 1024px) {
  .style-index .p-business .business_01 {
    transform: translate(5rem, 0);
    width: 48.6rem;
    margin-top: -18rem;
    margin-right: 0;
  }
}

.style-index .p-business .business_02 {
  margin-top: 7rem;
}

@media screen and (min-width: 600px) {
  .style-index .p-business .business_02 {
    width: 30rem;
    margin-left: 3rem;
  }
}

@media screen and (min-width: 1024px) {
  .style-index .p-business .business_02 {
    width: 48.5rem;
    margin-top: 4rem;
    margin-left: 4.5rem;
  }
}

@media screen and (min-width: 600px) {
  .style-index .p-business .business_02 + .text-wrap {
    margin-right: 3rem;
    margin-left: auto;
  }
}

@media screen and (min-width: 1024px) {
  .style-index .p-business .business_02 + .text-wrap {
    margin-right: 4.5rem;
  }
}

.style-index .p-business .text-wrap {
  display: grid;
  place-items: center;
  height: 14rem;
  background: linear-gradient(135deg, #00a1dd 0%, #1a5ea8 70%, #1a5ea8 100%);
}

@media screen and (min-width: 600px) {
  .style-index .p-business .text-wrap {
    width: 30rem;
    margin-top: -5rem;
  }
}

@media screen and (min-width: 1024px) {
  .style-index .p-business .text-wrap {
    width: 40rem;
    height: 15rem;
    margin-top: -10rem;
  }
}

.style-index .p-business .text-wrap p {
  color: #FFF;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.75;
}

@media screen and (min-width: 1024px) {
  .style-index .p-business .text-wrap p {
    font-size: 1.7rem;
  }
}

.style-index .p-business .business_03 {
  margin-top: 7rem;
}

@media screen and (min-width: 600px) {
  .style-index .p-business .business_03 {
    width: 30rem;
    margin-right: 3rem;
    margin-left: auto;
  }
}

@media screen and (min-width: 1024px) {
  .style-index .p-business .business_03 {
    width: 48.5rem;
    margin-right: 4.5rem;
  }
}

@media screen and (min-width: 600px) {
  .style-index .p-business .business_03 + .text-wrap {
    margin-left: 3rem;
  }
}

@media screen and (min-width: 1024px) {
  .style-index .p-business .business_03 + .text-wrap {
    margin-left: 4.5rem;
  }
}

.style-index .p-business img {
  width: 100%;
}

/*
  first load end
*/
/*------------------------------------------------------------
  layout
------------------------------------------------------------*/
/* ---------------------------
  footer
--------------------------- */
.l-footer {
  position: relative;
  padding-top: 2rem;
  padding-bottom: 2rem;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .l-footer {
    text-align: left;
  }
}

.l-footer .inner {
  position: relative;
}

@media screen and (min-width: 1024px) {
  .l-footer .inner {
    padding-left: 5rem;
  }
}

.l-footer .logo {
  display: inline-block;
  width: 7rem;
}

@media screen and (min-width: 1024px) {
    .l-footer .logo {
        width: 6.3rem;
    }
}

.l-footer .logo img {
  width: 100%;
}

.l-footer small {
  display: block;
  margin-top: .8rem;
  color: #9c9c9c;
  font-size: 1.3rem;
}

@media screen and (min-width: 1024px) {
  .l-footer small {
    position: absolute;
    bottom: 10px;
    right: 5rem;
    width: fit-content;
    margin-top: -3rem;
    margin-left: auto;
    line-height: 1;
    font-size: 1.7rem;
  }
}

/*------------------------------------------------------------
  index
------------------------------------------------------------*/
.style-index .p-freedom {
  background: #dbedf8;
}

.style-index .p-freedom h2 {
  position: relative;
  margin-bottom: 3rem;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: .26em;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .style-index .p-freedom h2 {
    margin-bottom: 5rem;
    font-size: 3.4rem;
  }
}

@media screen and (min-width: 1024px) {
  .style-index .p-freedom h2:before {
    display: block;
    position: absolute;
    content: '';
    top: 54%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72rem;
    height: .3rem;
    background: #000000;
  }
}

.style-index .p-freedom h2 span {
  display: inline-block;
  position: relative;
  background: #dbedf8;
}

@media screen and (min-width: 1024px) {
  .style-index .p-freedom h2 span {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

.style-index .p-freedom .grid {
  display: grid;
  grid-template-columns: 1fr 33% 33% 1fr;
  gap: 1.4rem;
  max-width: 81rem;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 1024px) {
  .style-index .p-freedom .grid {
    grid-template-columns: 1fr 58%;
    gap: 1.7rem;
  }
}

.style-index .p-freedom figure:nth-child(1) {
  grid-row: 1 / 2;
  grid-column: 2 / 4;
}

@media screen and (min-width: 1024px) {
  .style-index .p-freedom figure:nth-child(1) {
    grid-row: 1 / 3;
    grid-column: 2 / 3;
  }
}

.style-index .p-freedom figure:nth-child(2) {
  grid-row: 2 / 3;
  grid-column: 1 / 3;
}

@media screen and (min-width: 1024px) {
  .style-index .p-freedom figure:nth-child(2) {
    grid-row: 1 / 2;
    grid-column: 1 / 2;
  }
}

.style-index .p-freedom figure:nth-child(3) {
  grid-row: 2 / 3;
  grid-column: 3 / 5;
}

@media screen and (min-width: 1024px) {
  .style-index .p-freedom figure:nth-child(3) {
    grid-row: 2 / 3;
    grid-column: 1 / 2;
  }
}

.style-index .p-freedom img {
  width: 100%;
}

@media screen and (min-width: 1024px) {
  .style-index .p-freedom img {
    object-fit: cover;
    max-width: 100%;
    height: 100%;
  }
}

@media screen and (min-width: 1024px) {
  .style-index .p-freedom picture {
    height: 100%;
  }
}

.style-index .p-company {
  background: #dbedf8;
}

.style-index .p-company h2 {
  position: relative;
  margin-bottom: 5rem;
  padding-top: 3.2rem;
  line-height: 1;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .style-index .p-company h2 {
    margin-bottom: 7rem;
    padding-top: 4.2rem;
  }
}

.style-index .p-company h2:before {
  display: block;
  position: absolute;
  content: '';
  top: 0%;
  left: 50%;
  transform: translate(-50%, 0);
  width: .2rem;
  height: 2.4rem;
  background: #1a5ea8;
}

@media screen and (min-width: 1024px) {
  .style-index .p-company h2:before {
    height: 3.2rem;
  }
}

.style-index .p-company h2 .en {
  background: #00a1dd;
  background: linear-gradient(135deg, #00a1dd 0%, #1a5ea8 70%, #1a5ea8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 3.6rem;
  font-weight: 900;
  letter-spacing: .02em;
}

@media screen and (min-width: 1024px) {
  .style-index .p-company h2 .en {
    font-size: 4.2rem;
  }
}

.style-index .p-company h2 .ja {
  display: inline-block;
  margin-left: 1rem;
  color: #1a5ea8;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: .2em;
}

@media screen and (min-width: 1024px) {
  .style-index .p-company h2 .ja {
    margin-left: 2rem;
    font-size: 2.4rem;
  }
}

.style-index .p-company .flex {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  max-width: 33.5rem;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 1024px) {
  .style-index .p-company .flex {
    max-width: none;
  }
}

.style-index .p-company .flex:before {
  display: block;
  position: absolute;
  content: '';
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140%;
  height: 110%;
  border-radius: 100%;
  background: rgba(255, 255, 255, 0.4);
  filter: blur(2rem);
}

@media screen and (min-width: 1024px) {
  .style-index .p-company .flex:before {
    width: 85rem;
    height: 50rem;
  }
}

.style-index .p-company .flex div {
  position: relative;
  width: 48%;
  padding: 2rem 1.5rem 1.5rem;
  border-radius: 1.4rem;
  background: #FFF;
  box-shadow: 0.2rem 0.2rem 0.3rem 0.1rem rgba(0, 0, 0, 0.3);
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .style-index .p-company .flex div {
    width: 40%;
    padding: 3.5rem 5rem 2.5rem;
    border-radius: 2.8rem;
    box-shadow: 0.4rem 0.4rem 0.7rem 0.3rem rgba(0, 0, 0, 0.3);
  }
}

.style-index .p-company .flex div + div {
  margin-top: 2rem;
}

@media screen and (min-width: 1024px) {
  .style-index .p-company .flex div + div {
    margin-top: 5rem;
  }
}

.style-index .p-company .flex div:nth-child(2n) {
  margin-left: 4%;
}

@media screen and (min-width: 1024px) {
  .style-index .p-company .flex div:nth-child(2n) {
    margin-left: 20%;
  }
}

.style-index .p-company .flex div:nth-child(2) {
  margin-top: 0;
}

@media screen and (min-width: 1024px) {
  .style-index .p-company .flex div:nth-child(3) {
    width: 25rem;
    padding-right: 2rem;
    padding-left: 2rem;
  }
}

.style-index .p-company .flex div:nth-child(3):before {
  display: block;
  position: absolute;
  content: '';
  top: 30%;
  left: -4rem;
  transform: translate(-50%, -50%);
  width: 4.1rem;
  height: 5.3rem;
  background: url(../images/index/company_arrow.svg) center/100% no-repeat;
}

@media screen and (min-width: 1024px) {
  .style-index .p-company .flex div:nth-child(3):before {
    top: 25%;
    left: -10rem;
    width: 7.1rem;
    height: 9.6rem;
  }
}

.style-index .p-company .flex div:nth-child(3):after {
  display: block;
  position: absolute;
  content: '';
  top: 30%;
  right: -4rem;
  transform: translate(50%, -50%) scale(-1, 1);
  width: 4.1rem;
  height: 5.3rem;
  background: url(../images/index/company_arrow.svg) center/100% no-repeat;
}

@media screen and (min-width: 1024px) {
  .style-index .p-company .flex div:nth-child(3):after {
    top: 25%;
    right: -10rem;
    width: 7.1rem;
    height: 9.6rem;
  }
}

.style-index .p-company .flex div p {
  font-size: 1.1rem;
}

@media screen and (min-width: 1024px) {
  .style-index .p-company .flex div p {
    font-size: 1.7rem;
  }
}

.style-index .p-company figure {
  margin-bottom: 1.2rem;
}

@media screen and (min-width: 1024px) {
  .style-index .p-company figure {
    margin-bottom: 2rem;
  }
}

.style-index .p-company img {
  max-height: 8.5rem;
}

@media screen and (min-width: 1024px) {
  .style-index .p-company img {
    max-height: 13.8rem;
  }
}

.style-index .p-company ul {
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
}

.style-index .p-company li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 1.1rem;
  text-align: left;
}

@media screen and (min-width: 1024px) {
  .style-index .p-company li {
    padding-left: 2.6rem;
    font-size: 1.7rem;
  }
}

.style-index .p-company li:before {
  display: block;
  position: absolute;
  content: '';
  top: .7rem;
  left: 0;
  width: .65rem;
  height: .65rem;
  background: #bbbcbc;
}

@media screen and (min-width: 1024px) {
  .style-index .p-company li:before {
    top: 1.1rem;
    width: 1rem;
    height: 1rem;
  }
}

.style-index .p-company .about {
  margin-top: 5rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
  background: #1a5ea8 url(../images/index/company_bg.svg) right -9rem bottom 5rem/85% no-repeat;
}

@media screen and (min-width: 600px) {
  .style-index .p-company .about {
    background-position: right -7rem bottom 3rem;
    background-size: 40%;
  }
}

@media screen and (min-width: 1024px) {
  .style-index .p-company .about {
    background-position: right -12rem bottom 4rem;
    background-size: 32%;
    margin-top: 11rem;
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}

.style-index .p-company table {
  width: 100%;
}

@media screen and (min-width: 600px) {
  .style-index .p-company table {
    width: auto;
    margin-right: auto;
    margin-left: auto;
  }
}

.style-index .p-company tr + tr th {
  border-top: 0.1rem solid #FFF;
}

@media screen and (min-width: 600px) {
  .style-index .p-company tr + tr th {
    border-top: none;
  }
}

.style-index .p-company th, .style-index .p-company td {
  display: block;
  color: #FFF;
  line-height: 1.3;
  text-align: left;
}

@media screen and (min-width: 600px) {
  .style-index .p-company th, .style-index .p-company td {
    display: table-cell;
    padding-top: .3rem;
    padding-bottom: .3rem;
  }
}

@media screen and (min-width: 1024px) {
  .style-index .p-company th, .style-index .p-company td {
    padding-top: .4rem;
    padding-bottom: .4rem;
  }
}

.style-index .p-company th {
  padding-top: 1rem;
  font-size: 1.6rem;
  font-weight: 700;
}

@media screen and (min-width: 600px) {
  .style-index .p-company th {
    padding-top: 0;
    padding-right: 3rem;
    font-size: 1.5rem;
    font-weight: 400;
  }
}

@media screen and (min-width: 1024px) {
  .style-index .p-company th {
    padding-right: 4.5rem;
    font-size: 2.1rem;
  }
}

.style-index .p-company td {
  padding-bottom: 1rem;
}

@media screen and (min-width: 600px) {
  .style-index .p-company td {
    padding-bottom: 0;
  }
}

@media screen and (min-width: 1024px) {
  .style-index .p-company td {
    font-size: 2.1rem;
  }
}

.style-index .p-company .name {
  display: inline-block;
  position: relative;
  min-width: 24rem;
}

@media screen and (min-width: 1024px) {
  .style-index .p-company .name {
    min-width: 33rem;
  }
}

.style-index .p-company .name:before {
  display: block;
  position: absolute;
  content: '';
  top: 55%;
  left: 0;
  transform: translate(0%, -50%);
  width: 100%;
  height: .1rem;
  background: #FFF;
}

.style-index .p-company .name span {
  display: inline-block;
  position: relative;
  padding-right: .5rem;
  background: #1a5ea8;
}

@media screen and (min-width: 1024px) {
  .style-index .p-company .name span {
    padding-right: 1rem;
  }
}

.style-index .p-company .num {
  display: inline-block;
  padding-left: .5rem;
}

@media screen and (min-width: 1024px) {
  .style-index .p-company .num {
    padding-left: 1rem;
  }
}

_::-webkit-full-page-media, _:future, :root .p-company .flex:before {
  content: none;
}

/*# sourceMappingURL=style.css.map */

.visible_none {
  display: none;
}
@media screen and (max-width: 1023px) {
  .for_pc {
    display: none;
  }
  .visible_none {
    display: none;
  }
}
@media screen and (min-width: 1025px) {
  .for_pc {
    display: block;
  }
}
@media screen and (max-width: 1024px) {
  .sp_topics_title_bnr {
    width: 25vw;
    margin: 0 auto 10px;
  }
  .sp_topics_title_bnr__btn {
    padding: 16px 20px !important;
  }
  .l-footer .logo {
    display: inline-block;
    width: 6rem;
}
}
@media screen and (min-width: 1024px) {
  .for_sp {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .sp_topics_title_bnr {
    width: 40vw;
  }
}
@media screen and (max-width: 1023px) {
    .for_sp {
      display: block;
    }
}
.entry-title {
    font-size: 23px !important;
}
.entry-header small {
    font-size: small;
}
#testtest {
    grid-row: 1/4;
    grid-column: 1/1;
}
.list_Wrap_date {
    display: flex;
    align-items: center;
}
.news_list_class li .post_date {
    font-size: 13px;
    margin-right: 30px;
}
@media screen and (max-width: 1025px) {
    .list_Wrap_date {
        display: block;
        align-items: center;
    }
  }
.post_list_wrap {
    background-color: aliceblue;
}
.post-thumbnail, .entry-content .wp-audio-shortcode, .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator), *[class*=inner-container] > *:not(.entry-content):not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator), .default-max-width {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}
.alignwide {
  clear: both;
  max-width: 850px;
  width: 94%;
}
.single_wrap {
  background: #dbedf8;
}
.category-news {
  border-top: 30px solid #dbedf8;
  border-bottom: 50px solid #dbedf8;
  background: #fff;
  max-width: 950px;
  margin: 0 auto 0;
  width: 94%;
}
.pankuzu {
  width: 94%;
  max-width: 950px;
  margin: auto;
  font-size: 13px;
  padding-top: 2%;
}