@charset "UTF-8";
/**
 * styles.scss
 */
/* Color
-----------------------------*/
/* Contentsize
-----------------------------*/
/* Breakpoint
-----------------------------*/
/* Fontweight
-----------------------------*/
/* Font
-----------------------------*/
/* Valiable set
-----------------------------*/
/**
 * styles.scss
 */
:root {
  --10px: 0.625rem;
  --11px: 0.6875rem;
  --12px: 0.75rem;
  --13px: 0.8125rem;
  --14px: 0.875rem;
  --15px: 0.9375rem;
  --16px: 1rem;
  --17px: 1.0625rem;
  --18px: 1.125rem;
  --18_5px: 1.15625rem;
  --19px: 1.1875rem;
  --20px: 1.25rem;
  --21px: 1.3125rem;
  --22px: 1.375rem;
  --22_5px: 1.40625rem;
  --24px: 1.5rem;
  --26px: 1.625rem;
  --28px: 1.75rem;
  --30px: 1.875rem;
  --32px: 2rem;
  --36px: 2.25rem;
  --40px: 2.5rem;
  --48px: 3rem;
  --50px: 3.125rem;
  --56px: 3.5rem;
  --64px: 4rem;
  --72px: 4.5rem;
  --80px: 5rem;
  --88px: 5.5rem;
  --96px: 6rem;
  --100px: 6.25rem;
  --140px: 8.75rem;
  --170px: 10.625rem;
  --180px: 11.25rem;
  --200px: 12.5rem;
}

html {
  font-size: 100%;
}
@media screen and (max-width: 959px) {
  html {
    font-size: 90%;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 95%;
  }
}

body {
  color: #fff;
  font-size: var(--16px);
  line-height: 1.5;
  background: #333;
  background-image: url(../img/bg.png);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", meiryo, メイリオ, "ms pgothic", sans-serif;
  font-weight: 400;
  letter-spacing: 0.04em;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 400;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

h2 {
  font-family: din-condensed, "Helvetica Neue", "Helvetica", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 400;
}

a {
  color: #fff;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}

p {
  line-height: 1.75;
}

svg {
  vertical-align: top;
  width: 100%;
  height: auto;
}

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

strong {
  font-weight: bold;
}

main, .main {
  display: block;
}

input,
select {
  vertical-align: middle;
}

.lazy,
.lazy2 {
  opacity: 0;
  position: relative;
  -webkit-transform: translate(0%, 50px);
  transform: translate(0%, 50px);
}
.lazy-show,
.lazy2-show {
  opacity: 1;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -ms-transition: all 0.8s;
  -o-transition: all 0.8s;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

@-webkit-keyframes rotating {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotating {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/**
 * styles.scss
 */
.disp-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .disp-sp {
    display: block;
  }
}
.disp-pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .disp-pc {
    display: none;
  }
}

.content-area-SS {
  max-width: calc(800px + 2.5rem);
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: relative;
}
.content-area-S {
  max-width: calc(1080px + 2.5rem);
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: relative;
}
.err__title {
  width: 17.125rem;
  height: auto;
  margin: 14.375rem auto 6.25rem;
}
@media screen and (max-width: 959px) {
  .err__title {
    margin-top: 13.75rem;
    margin-bottom: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .err__title {
    width: 15.625rem;
    margin-top: 9.375rem;
  }
}
.pp__head {
  max-width: calc(1160px + 2.5rem);
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: relative;
}
.pp__head .title {
  color: #C40001;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  height: 355px;
  padding-bottom: 0.9375rem;
}
@media screen and (max-width: 959px) {
  .pp__head .title {
    height: 320px;
  }
}
@media screen and (max-width: 767px) {
  .pp__head .title {
    -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: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 280px;
    gap: 0.3125rem;
  }
}
.pp__head .title__ja {
  font-size: var(--20px);
  line-height: 1.4;
  letter-spacing: 0.04em;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media screen and (max-width: 767px) {
  .pp__head .title__ja {
    font-size: var(--15px);
  }
}
.pp__head .title__en {
  font-size: var(--200px);
  font-family: din-condensed, "Helvetica Neue", "Helvetica", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media screen and (width < 960px) {
  .pp__head .title__en {
    font-size: var(--140px);
  }
}
@media screen and (width < 768px) {
  .pp__head .title__en {
    font-size: var(--88px);
  }
}
.pp__main p:not([class]) {
  font-size: var(--20px);
  line-height: 1.4;
  letter-spacing: 0.04em;
  margin: 1.7em 0;
  font-weight: 300;
}
@media screen and (max-width: 959px) {
  .pp__main p:not([class]) {
    font-size: var(--18_5px);
  }
}
@media screen and (max-width: 767px) {
  .pp__main p:not([class]) {
    font-size: var(--17px);
  }
}
.pp__main ul {
  margin: 2.5em 0;
  font-weight: 300;
}
.pp__main :where(.wp-block-columns.is-layout-flex) {
  gap: 4em;
}
.pp .def__head .time {
  font-family: din-condensed, "Helvetica Neue", "Helvetica", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-size: var(--20px);
}
@media screen and (max-width: 767px) {
  .pp .def__head .time {
    font-size: var(--18px);
  }
}
.pp .def__head .heading {
  font-size: var(--50px);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-top: 0.25em;
  margin-bottom: 1.25em;
}
@media screen and (width < 960px) {
  .pp .def__head .heading {
    font-size: var(--36px);
  }
}
@media screen and (width < 768px) {
  .pp .def__head .heading {
    font-size: var(--22_5px);
  }
}
@media screen and (max-width: 959px) {
  .pp .def__head .heading {
    font-size: var(--40px);
  }
}
@media screen and (max-width: 767px) {
  .pp .def__head .heading {
    font-size: var(--32px);
  }
}
.pp .def__content h2.wp-block-heading {
  font-size: var(--40px);
  letter-spacing: 0.04em;
  margin: 2.5em 0 0.75em;
  font-weight: bold;
}
.pp .def__content h2.wp-block-heading:first-child {
  margin-top: 0;
}
@media screen and (max-width: 959px) {
  .pp .def__content h2.wp-block-heading {
    font-size: var(--32px);
  }
}
@media screen and (max-width: 767px) {
  .pp .def__content h2.wp-block-heading {
    font-size: var(--26px);
  }
}
.pp .def__content h3.wp-block-heading {
  font-size: var(--30px);
  letter-spacing: 0.04em;
  margin: 2.5em 0 0.5em;
  font-weight: bold;
}
@media screen and (max-width: 959px) {
  .pp .def__content h3.wp-block-heading {
    font-size: var(--26px);
  }
}
@media screen and (max-width: 767px) {
  .pp .def__content h3.wp-block-heading {
    font-size: var(--22_5px);
  }
}
.pp .def__content h4.wp-block-heading {
  font-size: var(--24px);
  letter-spacing: 0.04em;
  margin-top: 1em;
  margin-bottom: 0.25em;
  font-weight: bold;
}
@media screen and (max-width: 959px) {
  .pp .def__content h4.wp-block-heading {
    font-size: var(--22_5px);
  }
}
@media screen and (max-width: 767px) {
  .pp .def__content h4.wp-block-heading {
    font-size: var(--19px);
  }
}
.pp .def__btn {
  max-width: 32.5rem;
  margin: 10rem auto 0;
  width: 100%;
}
@media screen and (max-width: 959px) {
  .pp .def__btn {
    margin-top: 7.5rem;
  }
}
@media screen and (max-width: 767px) {
  .pp .def__btn {
    margin-top: 5.625rem;
  }
}

@media screen and (max-width: 767px) {
  .wp-block-columns {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
}
@media screen and (min-width: 768px) {
  .wp-block-columns {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
}

@media screen and (max-width: 767px) {
  .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column {
    -ms-flex-preferred-size: 100% !important;
        flex-basis: 100% !important;
  }
}
@media screen and (min-width: 768px) {
  .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column {
    -ms-flex-preferred-size: 0 !important;
        flex-basis: 0 !important;
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
}

.wp-block-group:has(h2.wp-block-heading) {
  margin-top: 0;
  padding-top: 14em;
  margin-bottom: 5em;
}
@media screen and (max-width: 767px) {
  .wp-block-group:has(h2.wp-block-heading) {
    padding-top: 9em;
    margin-bottom: 2em;
    -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: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0.3125rem;
  }
}
.wp-block-group:has(h2.wp-block-heading):first-child {
  padding-top: 7.25em;
}
@media screen and (max-width: 767px) {
  .wp-block-group:has(h2.wp-block-heading):first-child {
    padding-top: 5em;
  }
}
.wp-block-group h2.wp-block-heading {
  font-size: var(--140px);
  font-family: din-condensed, "Helvetica Neue", "Helvetica", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}
@media screen and (width < 960px) {
  .wp-block-group h2.wp-block-heading {
    font-size: var(--96px);
  }
}
@media screen and (width < 768px) {
  .wp-block-group h2.wp-block-heading {
    font-size: var(--64px);
  }
}
.wp-block-group h2.wp-block-heading + p {
  margin-left: 0.625rem;
}
@media screen and (max-width: 767px) {
  .wp-block-group h2.wp-block-heading + p {
    font-size: var(--15px);
    margin: 0;
  }
}

h3.wp-block-heading {
  font-size: var(--100px);
  font-family: din-condensed, "Helvetica Neue", "Helvetica", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  margin-top: 2.1em;
  margin-bottom: 0.84em;
}
@media screen and (width < 960px) {
  h3.wp-block-heading {
    font-size: var(--80px);
  }
}
@media screen and (width < 768px) {
  h3.wp-block-heading {
    font-size: var(--48px);
  }
}
@media screen and (max-width: 767px) {
  h3.wp-block-heading {
    margin-top: 1.75em;
    margin-bottom: 0.5em;
  }
}

h4.wp-block-heading {
  font-size: var(--50px);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-top: 0.8em;
  margin-bottom: 0.25em;
}
@media screen and (width < 960px) {
  h4.wp-block-heading {
    font-size: var(--36px);
  }
}
@media screen and (width < 768px) {
  h4.wp-block-heading {
    font-size: var(--22_5px);
  }
}
@media screen and (max-width: 767px) {
  h4.wp-block-heading {
    margin-top: 0.75em;
    margin-bottom: 0.15em;
  }
}

h4.wp-block-heading.en {
  font-size: var(--50px);
  font-family: din-condensed, "Helvetica Neue", "Helvetica", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-top: 0;
  padding-top: 0.1em;
  margin-bottom: -0.55em;
}
@media screen and (width < 960px) {
  h4.wp-block-heading.en {
    font-size: var(--40px);
  }
}
@media screen and (width < 768px) {
  h4.wp-block-heading.en {
    font-size: var(--24px);
  }
}
.has-medium-font-size {
  font-size: var(--26px) !important;
  line-height: 2;
  letter-spacing: 0.04em;
  margin: 0.3em 0;
  font-weight: 300;
}
@media screen and (max-width: 959px) {
  .has-medium-font-size {
    font-size: var(--22_5px) !important;
  }
}
@media screen and (max-width: 767px) {
  .has-medium-font-size {
    font-size: var(--18px) !important;
  }
}

.wp-block-table.is-style-border {
  margin: 1.75em 0;
}
.wp-block-table.is-style-border th,
.wp-block-table.is-style-border td {
  font-size: var(--18px);
  font-weight: bold;
  line-height: 1.78;
  letter-spacing: 0.04em;
  font-weight: 400;
  border: none;
  padding: 2em 1.25rem;
}
@media screen and (width < 768px) {
  .wp-block-table.is-style-border th,
  .wp-block-table.is-style-border td {
    font-size: var(--16px);
  }
}
@media screen and (max-width: 767px) {
  .wp-block-table.is-style-border th,
  .wp-block-table.is-style-border td {
    padding: 1.25em 0.5em;
  }
}
.wp-block-table.is-style-border th,
.wp-block-table.is-style-border td:first-child {
  color: #ABABAC;
  width: 8.5em;
}
@media screen and (max-width: 767px) {
  .wp-block-table.is-style-border th,
  .wp-block-table.is-style-border td:first-child {
    width: 7em;
  }
}
.wp-block-table.is-style-border tr {
  border-bottom: 1px solid #777777;
}
.wp-block-table.is-style-border table {
  border-top: 1px solid #777777;
}

.nform__btn input, .btnlink {
  font-size: var(--18px);
  font-weight: bold;
  line-height: 1.78;
  letter-spacing: 0.04em;
  font-weight: 600;
  border-radius: 5px;
  text-decoration: none;
  width: 100%;
  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: 3.75rem;
  margin: 3.4em auto;
}
@media screen and (width < 768px) {
  .nform__btn input, .btnlink {
    font-size: var(--16px);
  }
}
@media screen and (max-width: 767px) {
  .nform__btn input, .btnlink {
    height: 3.125rem;
  }
}

.btnlink--black {
  background: #1C1C1C;
  color: #fff;
  border: 1px solid #1C1C1C;
}
@media screen and (min-width: 768px) {
  .btnlink--black:hover {
    opacity: 1;
    color: #222;
    background: #fff;
  }
}

.snslink {
  list-style: none;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
  margin-top: 2em !important;
  margin-bottom: 2em !important;
}
.snslink__ig img {
  width: 2.5rem;
  height: 2.5rem;
}
.snslink__tktk img {
  width: 2.1875rem;
  height: 2.5rem;
}
.snslink__x img {
  width: 2.3125rem;
  height: 2.375rem;
}
.snslink__yt img {
  width: 3.1875rem;
  height: 2.25rem;
}

.newslist__main .item {
  border-bottom: 1px solid #777777;
}
.newslist__main .item:first-child {
  border-top: 1px solid #777777;
}
.newslist__main .item a {
  position: relative;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.625rem 4.0625rem 1.625rem 0;
}
.newslist__main .item a::after {
  display: block;
  position: absolute;
  content: "";
}
@media screen and (max-width: 767px) {
  .newslist__main .item a {
    display: block;
    padding: 1.25em 1.75em 1.25em 0.5em;
  }
}
.newslist__main .item a::after {
  width: 0.875rem;
  height: 0.875rem;
  background: url(../img/icon_arrow-right.svg) no-repeat center center/contain;
  right: 2.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .newslist__main .item a::after {
    width: 0.625rem;
    height: 0.625rem;
    right: 0.625rem;
  }
}
.newslist__main .item__time {
  font-family: din-condensed, "Helvetica Neue", "Helvetica", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-size: var(--16px);
  letter-spacing: 0.02em;
  display: block;
  width: 10rem;
  padding: 0 1.25rem;
  text-align: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .newslist__main .item__time {
    padding: 0;
    width: 100%;
    text-align: left;
  }
}
.newslist__main .item__title {
  font-size: var(--18px);
  font-weight: bold;
  line-height: 1.78;
  letter-spacing: 0.04em;
  font-weight: 400;
  padding: 0 1.25rem 0 0;
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
}
@media screen and (width < 768px) {
  .newslist__main .item__title {
    font-size: var(--16px);
  }
}
@media screen and (max-width: 767px) {
  .newslist__main .item__title {
    padding: 0.5rem 0 0 0;
  }
}
.newslist__pager {
  padding: 0;
  list-style: none;
  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;
  gap: 0.625rem;
  font-size: var(--20px);
  margin-top: 5.625rem !important;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .newslist__pager {
    font-size: var(--18px);
    margin-top: 3.75rem !important;
  }
}
.newslist__pager .item a,
.newslist__pager .item span {
  padding: 0.5em;
  display: block;
  text-decoration: none;
}
.newslist__pager .item .current {
  color: #C40001;
}

.nform {
  border-radius: 5px;
  background: #222222;
  padding-top: 6.25rem;
  padding-bottom: 2.5rem;
}
@media screen and (max-width: 959px) {
  .nform {
    padding-top: 3.75rem;
    padding-bottom: 1.5625rem;
  }
}
@media screen and (max-width: 767px) {
  .nform {
    padding-top: 1.875rem;
    padding-bottom: 0.9375rem;
  }
}
.nform__main {
  max-width: calc(880px + 2.5rem);
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.25rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .nform__main {
    display: block;
  }
}
.nform__main .selectarw {
  position: relative;
}
.nform__main .selectarw::after {
  content: "";
  display: block;
  position: absolute;
  width: 0.875rem;
  height: 0.5rem;
  background: url(../img/icon_arrow2.svg) no-repeat center/contain rgba(0, 0, 0, 0);
  right: 1.25rem;
  top: 50%;
  -webkit-transform: translateY(-30%);
          transform: translateY(-30%);
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .nform__main .selectarw::after {
    width: 0.75rem;
    height: 0.375rem;
    right: 0.9375rem;
  }
}
.nform__main dt {
  font-weight: bold;
  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: 0.625rem;
  width: 15.125rem;
  padding: 0.81em 0;
}
@media screen and (max-width: 767px) {
  .nform__main dt {
    width: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-top: 1.5625rem;
  }
}
.nform__main dt::after {
  display: block;
  font-size: var(--12px);
  letter-spacing: 0;
  width: 2.125rem;
  height: 1.1875rem;
  text-align: center;
  line-height: 1.5em;
  margin-top: 0.18em;
}
.nform__main dt:not(.req)::after {
  content: "任意";
  background: #777;
}
.nform__main dt.req::after {
  content: "必須";
  background: #E11F21;
}
.nform__main dd {
  width: calc(100% - 15.125rem - 1.25rem);
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .nform__main dd {
    width: 100%;
  }
}
.nform__main input:not([type=checkbox]),
.nform__main select,
.nform__main textarea {
  border-radius: 5px;
  padding: 0.7em 0.9375rem;
  width: 100%;
  background: #fff;
}
.nform__main select {
  color: #333;
}
.nform__main select option {
  color: #333;
}
.nform__main select.off, .nform__main select:invalid,
.nform__main select option[value=""] {
  color: #ABABAC;
}
.nform__main span[data-name=c-consent] {
  display: block;
  padding: 0.81em 0;
}
.nform__main span[data-name=c-consent] input[type=checkbox] {
  display: none;
}
.nform__main span[data-name=c-consent] label::after {
  display: block;
  position: absolute;
  content: "";
}
.nform__main span[data-name=c-consent] label::before {
  position: absolute;
  content: "";
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 3px;
  background-color: #fff;
  position: relative;
  display: inline-block;
  vertical-align: text-top;
  margin-right: 0.625rem;
  cursor: pointer;
}
.nform__main span[data-name=c-consent] label::after {
  width: 1.0625rem;
  height: 1.0625rem;
  background: url(../img/icon_check.svg) no-repeat center/contain rgba(0, 0, 0, 0);
  left: 0.4375rem;
  top: 1.0625rem;
  opacity: 0;
  -webkit-transition: opacity 0.1s ease;
  transition: opacity 0.1s ease;
  cursor: pointer;
}
.nform__main span[data-name=c-consent] label:has(> input[type=checkbox]:checked):after {
  opacity: 1;
}
.nform__main span[data-name=c-consent] .wpcf7-list-item {
  margin-left: 0;
}
.nform__main span[data-name=c-consent] a {
  font-weight: bold;
}
.nform__main .wpcf7-not-valid-tip {
  font-size: 85%;
  margin-top: 0.25em;
}
@media screen and (max-width: 767px) {
  .nform__main .wpcf7-not-valid-tip {
    font-size: 80%;
  }
}
.nform__btn {
  max-width: calc(880px + 2.5rem);
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: relative;
}
.nform__btn input {
  background: #C40001;
  color: #222;
  margin-bottom: 0;
  cursor: pointer;
  border: 1px solid #C40001;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.nform__btn input[disabled] {
  background: #999;
  color: #666;
  border-color: #999;
}
@media screen and (min-width: 768px) {
  .nform__btn input:not([disabled]):hover {
    background: #222;
    color: #C40001;
  }
}
.nform__btn .wpcf7-spinner {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin: 1em;
}
.nform .wpcf7-response-output {
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 1.875rem !important;
  padding: 0.5em 1em !important;
}
@media screen and (max-width: 767px) {
  .nform .wpcf7-response-output {
    width: calc(100% - 2.5rem);
    margin-left: 1.25rem !important;
    margin-right: 1.25rem !important;
  }
}

/**
 * styles.scss
 */
.header {
  /* 親セレクタを参照し、変数に */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}
.header__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 2.5rem;
  height: 140px;
}
@media screen and (max-width: 959px) {
  .header__main {
    padding: 0 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .header__main {
    height: 90px;
  }
}
.header__main .logo {
  position: relative;
  width: 10rem;
  height: auto;
  z-index: 102;
}
@media screen and (max-width: 767px) {
  .header__main .logo {
    width: 10rem;
  }
}
.header__main .gnavi ul {
  list-style: none;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
}
.header__main .gnavi ul li.current a {
  color: #C40001;
}
.header__main .gnavi ul a {
  font-size: var(--20px);
  font-family: din-condensed, "Helvetica Neue", "Helvetica", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  font-size: var(--24px);
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .header__main .gnavi ul a:hover {
    color: #fff;
    opacity: 0.8;
  }
}
.header__sp .btn {
  position: absolute;
  left: 1.5625rem;
  top: 1.5625rem;
  cursor: pointer;
}
.header__sp .gnavi {
  z-index: 99;
  position: fixed;
  top: 0px;
  bottom: 0px;
  right: 0px;
  left: 0px;
  background-color: #333;
  background-image: url(../img/bg.png);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.6s, visibility 0.6s;
  transition: opacity 0.6s, visibility 0.6s;
}
.open .header__sp .gnavi {
  visibility: visible;
  opacity: 1;
  z-index: 101;
}
.header__sp .gnavi__btn {
  position: absolute;
  left: 1.5625rem;
  top: 1.25rem;
  cursor: pointer;
}
.header__sp .gnavi__menu {
  padding: 5.625rem 1.5625rem 1.5625rem;
}
.header__sp .gnavi__menu ul {
  padding: 0;
  margin: 0 2.5rem;
  list-style: none;
}
.header__sp .gnavi__menu li {
  margin-bottom: 0.625rem;
}
.header__sp .gnavi__menu li.current a {
  background: #C40001;
}
.header__sp .gnavi__menu a {
  font-size: var(--20px);
  font-family: din-condensed, "Helvetica Neue", "Helvetica", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  font-size: var(--28px);
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  border-radius: 3px;
  color: #333;
  background: #fff;
  padding: 1.25rem;
}

/**
 * styles.scss
 */
.footer {
  margin-top: 15.625rem;
  padding: 2.5rem 2.5rem 0;
  background: #222;
}
@media screen and (max-width: 959px) {
  .footer {
    margin-top: 12.5rem;
    padding: 2.5rem 1.25rem 0;
  }
}
@media screen and (max-width: 767px) {
  .footer {
    margin-top: 9.375rem;
    padding: 2.5rem 0 0;
  }
}
.footer__contact {
  background-color: #333;
  border-radius: 4px;
  display: block;
  text-decoration: none;
  height: 460px;
}
@media screen and (max-width: 959px) {
  .footer__contact {
    height: 340px;
  }
}
@media screen and (max-width: 767px) {
  .footer__contact {
    height: 200px;
  }
}
@media screen and (min-width: 768px) {
  .footer__contact:hover .inner::after {
    opacity: 0.5;
  }
}
.footer__contact .inner {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.footer__contact .inner::after {
  display: block;
  position: absolute;
  content: "";
}
.footer__contact .inner::after {
  width: 6.25rem;
  height: 6.25rem;
  background: url(../img/icon_arrow.svg) no-repeat center right/100% auto;
  right: 1.25rem;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media screen and (max-width: 767px) {
  .footer__contact .inner::after {
    width: 3.125rem;
    height: 3.125rem;
  }
}
.footer__contact .title {
  font-size: var(--140px);
  font-family: din-condensed, "Helvetica Neue", "Helvetica", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}
@media screen and (width < 960px) {
  .footer__contact .title {
    font-size: var(--96px);
  }
}
@media screen and (width < 768px) {
  .footer__contact .title {
    font-size: var(--64px);
  }
}
@media screen and (max-width: 767px) {
  .footer__contact .title {
    margin-right: 4.0625rem;
  }
}
.footer__contact .text {
  font-size: var(--20px);
  letter-spacing: 0.04em;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .footer__contact .text {
    font-size: var(--15px);
    margin-right: 4.0625rem;
    margin-top: 0.625rem;
  }
}
.footer__info .inner {
  padding-top: 4.6875rem;
  padding-bottom: 4.6875rem;
}
@media screen and (max-width: 767px) {
  .footer__info .inner {
    padding-top: 3.75rem;
    padding-bottom: 1.25rem;
  }
}
.footer__info .info__link {
  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;
}
@media screen and (max-width: 767px) {
  .footer__info .info__link {
    display: block;
  }
}
.footer__info .info__link .logo {
  width: 15rem;
  height: 3.0625rem;
}
@media screen and (max-width: 767px) {
  .footer__info .info__link .logo {
    width: 12.5rem;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .footer__info .info__link .gnavi {
    margin-top: 1.875rem;
    margin-bottom: 2.8125rem;
  }
}
.footer__info .info__link .gnavi ul {
  list-style: none;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .footer__info .info__link .gnavi ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0.9375rem;
  }
}
.footer__info .info__link .gnavi ul li.current a {
  color: #C40001;
}
.footer__info .info__link .gnavi ul a {
  font-size: var(--20px);
  font-family: din-condensed, "Helvetica Neue", "Helvetica", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .footer__info .info__link .gnavi ul a:hover {
    color: #fff;
    opacity: 0.5;
  }
}
.footer__info .info__copy {
  margin-top: 1.625rem;
}
.footer__info .info__copy .address {
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .footer__info .info__copy .address {
    font-size: var(--14px);
    text-align: center;
  }
}
.footer__info .info__copy .tel {
  font-family: din-condensed, "Helvetica Neue", "Helvetica", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  letter-spacing: 0.02em;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .footer__info .info__copy .tel {
    text-align: center;
  }
}
.footer__info .info__copy .end {
  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;
  margin-top: 3.25rem;
}
@media screen and (max-width: 767px) {
  .footer__info .info__copy .end {
    margin-top: 1.5625rem;
  }
}
.footer__info .info__copy .end__copy {
  color: #777;
  font-size: var(--14px);
  font-family: din-condensed, "Helvetica Neue", "Helvetica", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.footer__info .info__copy .end__link {
  font-family: din-condensed, "Helvetica Neue", "Helvetica", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.footer__info .info__copy .end__link a {
  text-decoration: none;
}

/**
 * styles.scss
 */
.main {
  padding-top: 140px;
}
@media screen and (max-width: 767px) {
  .main {
    padding-top: 90px;
  }
}

/**
 * styles.scss
 */
.top .load {
  width: 100vw;
  height: 100vh;
  position: fixed;
  background-color: #222;
  z-index: 9999;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.top .load.loaded {
  opacity: 0;
  visibility: hidden;
}
.top .load__logo {
  width: 12.5rem;
  opacity: 0;
  animation: fade-in 2s ease-in-out forwards;
}

/* keyframes */
@keyframes fade-in {
  0%   { opacity: 0; transform: scale(0.95); }
  100%  { opacity: 1; transform: scale(1); }
}
@media screen and (max-width: 767px) {
  .top .load__logo {
    width: 9.375rem;
  }
}
.top__sv, .top__news, .top__comp, .top__join {
  padding-bottom: 5.3125rem;
}
@media screen and (max-width: 767px) {
  .top__sv, .top__news, .top__comp, .top__join {
    padding-bottom: 3.75rem;
  }
}
.top__mv {
  max-width: calc(1520px + 2.5rem);
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: relative;
  height: max(600px, 100vh - 140px);
  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;
}
@media screen and (max-width: 767px) {
  .top__mv {
    height: max(600px, 100vh - 90px);
  }
}
.top__mv .catch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.75rem;
  padding-bottom: 150px;
}
@media screen and (max-width: 767px) {
  .top__mv .catch {
    padding-bottom: 160px;
  }
}
.top__mv .catch__logo {
  width: clamp(250px, 35vw, 27.9375rem);
}
.top__mv .catch__copy {
  font-size: clamp(var(--24px), 3.2vw, var(--40px));
  font-weight: bold;
  letter-spacing: 0.04em;
  /*line-height: 1;*/
}
.top__mv .news {
  position: absolute;
  left: 1.25rem;
  bottom: 0.9375rem;
  max-width: 700px;
  width: 100%;
}
@media screen and (max-width: 959px) {
  .top__mv .news {
    max-width: 70%;
  }
}
@media screen and (max-width: 767px) {
  .top__mv .news {
    max-width: none;
    width: calc(100% - 2.5rem);
  }
}
.top__mv .news a {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px;
  background: #1C1C1C;
  padding: 0.6875rem 0;
  position: relative;
}
.top__mv .news a::after {
  display: block;
  position: absolute;
  content: "";
}
.top__mv .news a::after {
  width: 0.875rem;
  height: 0.875rem;
  background: url(../img/icon_arrow-right.svg) no-repeat center center/contain;
  right: 0.9375rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .top__mv .news a::after {
    width: 0.625rem;
    height: 0.625rem;
    right: 0.625rem;
  }
}
.top__mv .news__time {
  font-size: var(--14px);
  font-family: din-condensed, "Helvetica Neue", "Helvetica", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: bold;
  letter-spacing: 0.02em;
  border-right: 1px solid #535353;
  padding: 0 0.9375rem;
}
.top__mv .news__title {
  font-size: var(--16px);
  letter-spacing: 0.04em;
  color: #C40001;
  padding: 0 2.25rem 0 0.9375rem;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top__mv .news__title {
    padding-right: 1.875rem;
  }
}
.top__mv .scroll {
  position: absolute;
  right: 1.25rem;
  bottom: 0.9375rem;
	display:none !important
}
@media screen and (max-width: 767px) {
  .top__mv .scroll {
    bottom: 5.3125rem;
  }
}
.top__mv .scroll__arrow {
  width: clamp(1.75rem, 3vw, 2.5rem);
  height: clamp(1.75rem, 3vw, 2.5rem);
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transform-origin: center;
          transform-origin: center;
}
.top__mv .scroll__rolling {
  width: clamp(9.375rem, 18vw, 12.5rem);
  height: clamp(9.375rem, 18vw, 12.5rem);
  -webkit-animation: rotating 20s linear infinite;
          animation: rotating 20s linear infinite;
}
.top__sv {
  padding-top: 4.375rem;
}
@media screen and (max-width: 767px) {
  .top__sv {
    padding-top: 2.5rem;
  }
}
.top__sv .svboxes {
  counter-reset: numcountup; /* カウンターをリセット */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .top__sv .svboxes {
    gap: 2.625rem;
  }
}
.top__sv .svboxes__item {
  border-top: 1px solid #777;
  width: calc(50% - 1.25rem);
  padding-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .top__sv .svboxes__item {
    width: 100%;
    padding-top: 1.125rem;
  }
}
.top__sv .svboxes__item .head {
  position: relative;
  height: 8.75rem;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 959px) {
  .top__sv .svboxes__item .head {
    height: 7.5rem;
  }
}
@media screen and (max-width: 767px) {
  .top__sv .svboxes__item .head {
    height: 7.5rem;
  }
}
.top__sv .svboxes__item .head::before {
  font-size: var(--200px);
  font-family: din-condensed, "Helvetica Neue", "Helvetica", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  counter-increment: numcountup; /* counter-resetと同じ文字列 */
  content: counter(numcountup, decimal-leading-zero); /* カウントした数に応じて番号を表示 */
  display: block;
  opacity: 0.1;
  position: absolute;
  top: -2.1875rem;
}
@media screen and (width < 960px) {
  .top__sv .svboxes__item .head::before {
    font-size: var(--140px);
  }
}
@media screen and (width < 768px) {
  .top__sv .svboxes__item .head::before {
    font-size: var(--88px);
  }
}
@media screen and (max-width: 959px) {
  .top__sv .svboxes__item .head::before {
    font-size: var(--180px);
    top: -1.875rem;
  }
}
@media screen and (max-width: 767px) {
  .top__sv .svboxes__item .head::before {
    font-size: var(--140px);
    top: -0.625rem;
  }
}
.top__sv .svboxes__item .head span {
  font-size: var(--26px);
  font-family: din-condensed, "Helvetica Neue", "Helvetica", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 959px) {
  .top__sv .svboxes__item .head span {
    font-size: var(--24px);
  }
}
@media screen and (max-width: 767px) {
  .top__sv .svboxes__item .head span {
    font-size: var(--20px);
  }
}
.top__sv .svboxes__item .head h3 {
  font-size: var(--40px);
  font-weight: bold;
  letter-spacing: 0.04em;
  margin-top: 0.5rem;
}
@media screen and (max-width: 959px) {
  .top__sv .svboxes__item .head h3 {
    font-size: var(--36px);
  }
}
@media screen and (max-width: 767px) {
  .top__sv .svboxes__item .head h3 {
    margin-top: 0.3125rem;
    font-size: var(--28px);
  }
}
.top__sv .svboxes__item .text {
  font-size: var(--18px);
  font-weight: bold;
  line-height: 1.78;
  letter-spacing: 0.04em;
  font-weight: 300;
  margin-top: 1.125rem;
}
@media screen and (width < 768px) {
  .top__sv .svboxes__item .text {
    font-size: var(--16px);
  }
}
@media screen and (max-width: 767px) {
  .top__sv .svboxes__item .text {
    margin-top: 0.5rem;
  }
}
.top__sv .svboxes__item .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0.625rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .top__sv .svboxes__item .btn {
    margin-top: 1.75rem;
  }
}
.top__sv .svboxes__item .btn__item {
  font-weight: bold;
  line-height: 1.78;
  letter-spacing: 0.04em;
  border-radius: 2px;
  border: 1px solid #707070;
  display: block;
  text-decoration: none;
  width: 12.5rem;
  height: 3.125rem;
  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;
}
@media screen and (width < 768px) {
  .top__sv .svboxes__item .btn__item {
    font-size: var(--16px);
  }
}
.top__sv .svboxes__item .btn__item--black {
  background: #1C1C1C;
}
@media screen and (min-width: 768px) {
  .top__sv .svboxes__item .btn__item--black:hover {
    opacity: 1;
    color: #222;
    background: #fff;
  }
}
.top__sv .svboxes__item .btn__item--white {
  background: #fff;
  color: #222;
}
@media screen and (min-width: 768px) {
  .top__sv .svboxes__item .btn__item--white:hover {
    opacity: 1;
    background: #222;
    color: #fff;
  }
}
.top__sv .svboxes__item .btn__item--yellow {
  background: #C40001;
  color: #fff;
  border: 1px solid #C40001;
}
@media screen and (min-width: 768px) {
  .top__sv .svboxes__item .btn__item--yellow:hover {
    opacity: 1;
    background: #222;
    color: #fff;
  }
}
.top__comp .compboxes {
  list-style: none;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .top__comp .compboxes {
    gap: 1.5625rem;
    margin-top: 3.125rem;
  }
}
.top__comp .compboxes__item {
  width: calc(50% - 1.25rem);
}
@media screen and (max-width: 767px) {
  .top__comp .compboxes__item {
    width: 100%;
  }
}
.top__comp .compboxes a {
  position: relative;
  text-decoration: none;
  font-size: var(--24px);
  letter-spacing: 0.04em;
  border-radius: 4px;
  border: 1px solid #777;
  height: 10.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 3.75rem;
}
.top__comp .compboxes a::after {
  display: block;
  position: absolute;
  content: "";
}
@media screen and (max-width: 959px) {
  .top__comp .compboxes a {
    font-size: var(--22_5px);
    height: 8.75rem;
    padding-left: 2.8125rem;
  }
}
@media screen and (max-width: 767px) {
  .top__comp .compboxes a {
    font-size: var(--19px);
    height: 6.25rem;
    padding-left: 1.875rem;
  }
}
.top__comp .compboxes a::after {
  width: 1.25rem;
  height: 1.25rem;
  background: url(../img/icon_arrow-right.svg) no-repeat center center/contain;
  right: 3.125rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .top__comp .compboxes a::after {
    width: 0.9375rem;
    height: 0.9375rem;
    right: 1.25rem;
  }
}
.top__comp .compboxes a::before {
  font-size: var(--100px);
  font-family: din-condensed, "Helvetica Neue", "Helvetica", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  content: attr(data-entitle);
  display: block;
  opacity: 0.04;
  position: absolute;
  left: 2.5rem;
}
@media screen and (width < 960px) {
  .top__comp .compboxes a::before {
    font-size: var(--80px);
  }
}
@media screen and (width < 768px) {
  .top__comp .compboxes a::before {
    font-size: var(--48px);
  }
}
@media screen and (max-width: 959px) {
  .top__comp .compboxes a::before {
    font-size: var(--80px);
    left: 1.875rem;
  }
}
@media screen and (max-width: 767px) {
  .top__comp .compboxes a::before {
    font-size: var(--80px);
    left: 0.9375rem;
  }
}
.top .heading2 {
  margin: 0 0 5rem;
  padding-top: 11.25rem;
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .top .heading2 {
    margin: 0 0 2.5rem;
    padding-top: 5.625rem;
  }
}
.top .heading2__more a {
  position: relative;
  font-size: var(--30px);
  font-family: din-condensed, "Helvetica Neue", "Helvetica", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding-right: 1.5rem;
}
.top .heading2__more a::after {
  display: block;
  position: absolute;
  content: "";
}
@media screen and (max-width: 767px) {
  .top .heading2__more a {
    font-size: var(--20px);
  }
}
.top .heading2__more a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background: #FFFFFF;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s; /*変形の時間*/
}
@media screen and (min-width: 768px) {
  .top .heading2__more a:hover::before {
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
  }
}
.top .heading2__more a::after {
  width: 0.875rem;
  height: 0.875rem;
  background: url(../img/icon_arrow-right.svg) no-repeat center center/contain;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .top .heading2__more a::after {
    width: 0.625rem;
    height: 0.625rem;
  }
}
.top .heading2 h2 {
  font-size: var(--140px);
  font-family: din-condensed, "Helvetica Neue", "Helvetica", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}
@media screen and (width < 960px) {
  .top .heading2 h2 {
    font-size: var(--96px);
  }
}
@media screen and (width < 768px) {
  .top .heading2 h2 {
    font-size: var(--64px);
  }
}
.top .heading3 {
  font-size: var(--50px);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 2.125rem;
}
@media screen and (width < 960px) {
  .top .heading3 {
    font-size: var(--36px);
  }
}
@media screen and (width < 768px) {
  .top .heading3 {
    font-size: var(--22_5px);
  }
}
.top p:not([class]) {
  font-size: var(--20px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .top p:not([class]) {
    font-size: var(--17px);
  }
}/*# sourceMappingURL=style.css.map */


/*追記*/
.heading2.lazy h2 {
  position: relative;
}
.heading2.lazy h2 span {
  opacity: 0;
}
.heading2.lazy.lazy-show h2 span {
  animation: fade 0.4s 0.8s forwards;
}
.heading2.lazy h2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
}
.heading2.lazy.lazy-show h2::before {
  animation: wipe 1.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.header__main .gnavi ul li {
  position: relative;
  z-index: 2;
}
.header__main .gnavi ul li::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
}
.header__main .gnavi ul li::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
}
body.home .header.loaded .header__main .gnavi ul li::before {
  animation: wipe 1.6s 5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
body:not(.home) .header.loaded .header__main .gnavi ul li::before {
  animation: wipe 1.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.header.loaded .header__main .gnavi ul li:hover::after {
  transform: scaleX(1);
}
.header__main .gnavi ul li a {
  opacity: 0;
}
body.home .header.loaded .header__main .gnavi ul li a {
  animation: fade 0.4s 5.8s forwards;
}
body:not(.home) .header.loaded .header__main .gnavi ul li a {
  animation: fade 0.4s .8s forwards;
}
.header:not(.loaded) .header__main .gnavi ul li a {
  pointer-events: none;
}
.header.loaded .header__main .gnavi ul li:hover a {
  transition: 0.8s 0.1s cubic-bezier(0.16, 1, 0.3, 1);
  color: #C40001;
}
body .header.loaded .logo {
  position: relative;
  z-index: 2;
}
body.home .header .logo a,
body:not(.home) .header .logo a {
  opacity: 0;
}
body.home .header.loaded .logo a {
  animation: fade 0.4s 5.8s forwards;
}
body:not(.home) .header.loaded .logo a {
  animation: fade 0.4s .8s forwards;
}
body .header.loaded .logo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  z-index: 2;
}
body.home .header.loaded .logo::before {
  animation: wipe 1.6s 5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
body:not(.home) .header.loaded .logo::before {
  animation: wipe 1.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
body.home .catch.lazy2.lazy-show .catch__logo {
  animation: fade 1.3s 1.5s cubic-bezier(.34,1.56,.64,1) forwards;
  transform-origin: center;
  opacity: 0;
}
body:not(.home) .catch.lazy2.lazy-show .catch__logo {
  animation: fade 0.8s 0.5s cubic-bezier(.34,1.56,.64,1) forwards;
  transform-origin: center;
  opacity: 0;
}
body.home .news::before {
  animation: wipe 1.6s 5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
body.home .catch.lazy2 .catch__copy {
  position: relative;
}
body.home .catch .catch__copy::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  width: 100%;
  height: 100%;
  z-index: 2;
}
body.home .catch .catch__copy::before {
  animation: wipe 1.6s 5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
body.home .catch.lazy2.lazy-show .catch__copy span {
  display: block;
  opacity: 0;
  animation: fade 0.4s 3.3s forwards;
}
body.home .news::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  z-index: 2;
}
body.home .news::before {
  animation: wipe 1.6s 5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
body.home .news.lazy2.lazy-show a {
  opacity: 0;
  animation: fade 0.4s 3.3s forwards;
  /*animation: scale-in 0.8s 1.5s cubic-bezier(.34,1.56,.64,1) forwards;
  transform-origin: center;
  opacity: 0;*/
}
body.home .scroll.lazy2 {
  transition-delay: 3.2s;
  /*animation: scale-in 0.8s 2s cubic-bezier(.34,1.56,.64,1) forwards;
  transform-origin: center;
  opacity: 0;*/
}
@keyframes fade {
  0%   { opacity: 0; filter: blur(4px)}
  100% { opacity: 1; filter: blur(0px)}
}
@keyframes wipe {
  0%   { transform: scaleX(0); transform-origin: left; }
  50%  { transform: scaleX(1); transform-origin: left; }
  51%  { transform: scaleX(1); transform-origin: right; }
  100% { transform: scaleX(0); transform-origin: right; }
}
@keyframes scale-in {
  0%   { transform: scale(0.9); opacity: 0; }
  60%  { transform: scale(1.1); opacity: 1; }
  80%  { transform: scale(0.95); opacity: 1; }
  100% { transform: scale(1);opacity: 1; }
}