@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Oswald:wght@200..700&display=swap");
/*
Theme Name:
*/
/*----------------------------------------
  reset
-----------------------------------------*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-feature-settings: "palt";
}

html {
  box-sizing: border-box;
}

*:before,
*:after {
  box-sizing: inherit;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

p {
  text-align: justify;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: black;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: black;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
  outline: 0;
}

ul,
li {
  list-style: none;
}

input[type=text],
input[type=button],
input[type=submit],
input[type=tel],
input[type=email] {
  -webkit-appearance: none;
  border: none;
  box-sizing: border-box;
}

input[type=text]:focus,
input[type=button]:focus,
input[type=submit]:focus,
input[type=tel]:focus,
input[type=email]:focus,
textarea:focus {
  outline: 0;
  background-color: #FBFBFB;
}

input:-internal-autofill-selected {
  background-color: #FBFBFB !important;
}

input[type=text]:focus:placeholder-shown,
input[type=button]:focus:placeholder-shown,
input[type=submit]:focus:placeholder-shown,
input[type=tel]:focus:placeholder-shown,
input[type=email]:focus:placeholder-shown,
textarea:focus:placeholder-shown {
  color: #ddd;
}

input[type=text]:focus:-webkit-input-placeholder,
input[type=button]:focus:-webkit-input-placeholder,
input[type=submit]:focus:-webkit-input-placeholder,
input[type=tel]:focus:-webkit-input-placeholder,
input[type=email]:focus:-webkit-input-placeholder,
textarea:focus:-webkit-input-placeholder {
  color: #ddd;
}

input[type=text]:focus:-moz-placeholder,
input[type=button]:focus:-moz-placeholder,
input[type=submit]:focus:-moz-placeholder,
input[type=tel]:focus:-moz-placeholder,
input[type=email]:focus:-moz-placeholder,
textarea:focus:-moz-placeholder {
  color: #ddd;
}

input[type=text]:focus:-ms-input-placeholder,
input[type=button]:focus:-ms-input-placeholder,
input[type=submit]:focus:-ms-input-placeholder,
input[type=tel]:focus:-ms-input-placeholder,
input[type=email]:focus:-ms-input-placeholder,
textarea:focus:-ms-input-placeholder {
  color: #ddd;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  border: 0;
  margin: 0;
  padding: 0;
  background: none transparent;
  vertical-align: middle;
  font-size: inherit;
  color: inherit;
  box-sizing: content-box;
}

input[type=text]:placeholder-shown,
input[type=email]:placeholder-shown,
input[type=tel]:placeholder-shown {
  color: #ddd;
}

input[type=text]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder {
  color: #ddd;
}

input[type=text]:-moz-placeholder,
input[type=email]:-moz-placeholder,
input[type=tel]:-moz-placeholder,
textarea:-moz-placeholder {
  color: #ddd;
}

input[type=text]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #FBFBFB;
}

textarea {
  resize: vertical;
}

textarea:placeholder-shown {
  color: #ddd;
}

textarea::-webkit-input-placeholder {
  color: #ddd;
}

textarea::-moz-placeholder {
  color: #ddd;
}

input:focus::placeholder,
textarea:focus::placeholder {
  color: transparent;
  transition: 0.1s;
}

input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
  color: transparent;
  transition: 0.1s;
}

input:focus:-moz-placeholder,
textarea:focus:-moz-placeholder {
  color: transparent;
  transition: 0.1s;
}

input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
  color: transparent;
  transition: 0.1s;
}

button {
  background-color: transparent;
  outline: 0;
  border: 0;
}

/*スマートフォンサイトでaタグをタップしたときにでるハイライトの色を消す*/
a {
  -webkit-tap-highlight-color: transparent;
  color: #262626;
}
@media screen and (min-width: 896px) {
  a {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }
  a:hover {
    transition: 0.3s;
    cursor: pointer;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }
}

table {
  border-collapse: collapse;
  border: none;
  border-spacing: 0;
  width: 100%;
}

th,
td {
  vertical-align: middle;
  border: solid 1px black;
  font-weight: normal;
  text-align: left;
  border: 0;
}

caption {
  text-align: left;
}

html,
body {
  width: 100%;
  height: 100%;
  font-family: "Noto Sans JP", sans-serif;
  overscroll-behavior-y: none;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.02em;
  font-display: swap;
  color: #262626;
}

body {
  overflow-x: hidden;
}
@media screen and (max-width: 896px) {
  body.sp_fix {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
}

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

svg {
  width: 100%;
  height: auto;
}

.slick-list:focus {
  outline: none !important;
}

.en {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

@media screen and (min-width: 897px) {
  a.tel {
    pointer-events: none;
  }
}

.flx {
  display: flex;
}

.ablt {
  position: absolute;
}

.lead {
  font-size: 1.1428571429vw;
  letter-spacing: 0.03em;
  line-height: 1.8;
}
@media screen and (max-width: 896px) {
  .lead {
    font-size: 3.7333333333vw;
  }
}

body.nav_open {
  overflow: hidden;
}
.basebtn {
  display: flex;
  position: relative;
  min-width: 20.7142857143vw;
  border: 3px solid #000;
  width: max-content;
  padding-inline: 1.6428571429vw 1.2857142857vw;
  height: 5.5714285714vw;
  align-items: center;
  justify-content: space-between;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 1);
}
@media screen and (max-width: 896px) {
  .basebtn {
    height: 16vw;
    border: 2px solid #000;
    gap: 5.5vw;
    padding-inline: 5vw 4vw;
  }
}
.basebtn .txt {
  font-size: 1.1428571429vw;
  z-index: 4;
  position: relative;
  letter-spacing: 0.04em;
  font-weight: 700;
  transition: color 0.35s cubic-bezier(0.25, 0.46, 0.45, 1);
  padding-right: 1.5714285714vw;
}
@media screen and (max-width: 896px) {
  .basebtn .txt {
    font-size: 3.7333333333vw;
    padding-right: 0;
  }
}
.basebtn .arrows {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 1.1428571429vw;
  position: relative;
  z-index: 4;
}
@media screen and (max-width: 896px) {
  .basebtn .arrows {
    padding-left: 4vw;
  }
}
.basebtn .arrows .arrow {
  transition: filter 0.35s cubic-bezier(0.25, 0.46, 0.45, 1);
  width: 1.1428571429vw;
}
@media screen and (max-width: 896px) {
  .basebtn .arrows .arrow {
    width: 2.6666666667vw;
  }
}
.basebtn .arrows .arrow img {
  width: 100%;
}
.basebtn .arrows .arrow:nth-of-type(1) {
  transition-delay: 0s;
}
.basebtn .arrows .arrow:nth-of-type(2) {
  margin-inline: -0.46vw;
  transition-delay: 0.15s;
}
@media screen and (max-width: 896px) {
  .basebtn .arrows .arrow:nth-of-type(2) {
    margin-inline: -0.8vw;
  }
}
.basebtn .arrows .arrow:nth-of-type(3) {
  transition-delay: 0.3s;
}
.basebtn .arrows::before {
  height: 2.6428571429vw;
  width: 2px;
  background: #000;
  transition: background-color 0.35s cubic-bezier(0.25, 0.46, 0.45, 1);
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
}
@media screen and (max-width: 896px) {
  .basebtn .arrows::before {
    height: 6.6666666667vw;
  }
}
.basebtn .bg {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #009DD3;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 1);
  transition-delay: 0.3s;
}
.basebtn .bg::before {
  z-index: 2;
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  background: #008C36;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 1);
  transition-delay: 0.15s;
}
.basebtn .bg::after {
  z-index: 2;
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  background: #F77B00;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 1);
  transition-delay: 0s;
}
@media screen and (min-width: 897px) {
  .basebtn:hover {
    background: #F77B00;
  }
  .basebtn:hover .txt {
    color: white;
  }
  .basebtn:hover .arrows::before {
    background: white;
  }
  .basebtn:hover .arrows .arrow {
    filter: brightness(0) invert(1);
  }
  .basebtn:hover .bg {
    transform: scaleX(1);
    transform-origin: left;
    transition-delay: 0s;
  }
  .basebtn:hover .bg::before {
    transform: scaleX(1);
    transform-origin: left;
    transition-delay: 0.15s;
  }
  .basebtn:hover .bg::after {
    transform: scaleX(1);
    transform-origin: left;
    transition-delay: 0.3s;
  }
}

#scrolly-video {
  width: 100%;
  height: 100vh;
  position: relative;
}

.kari {
  height: 300vh;
}

.common_mynavibtn {
  width: 100%;
  background: #fff;
  border: 3px solid #262626;
  display: flex;
  height: 5.5714285714vw;
  align-items: center;
  padding-inline: 2.0714285714vw 1.6428571429vw;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 1);
  justify-content: space-between;
}
@media screen and (max-width: 896px) {
  .common_mynavibtn {
    height: 20vw;
    padding-inline: 5vw;
  }
}
.common_mynavibtn .txtwrap {
  width: 13.2142857143vw;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 1);
}
@media screen and (max-width: 896px) {
  .common_mynavibtn .txtwrap {
    width: 64%;
  }
}
.common_mynavibtn .external {
  width: 2.6428571429vw;
  height: 2.6428571429vw;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 1);
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 1.4285714286vw;
}
@media screen and (max-width: 896px) {
  .common_mynavibtn .external {
    width: 10vw;
    height: 10vw;
    padding-left: 5vw;
  }
}
.common_mynavibtn .external img {
  width: 1.2142857143vw;
}
@media screen and (max-width: 896px) {
  .common_mynavibtn .external img {
    width: 4.2666666667vw;
  }
}
.common_mynavibtn .external::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  width: 1px;
  height: 2.6428571429vw;
  background-color: #262626;
}
@media screen and (max-width: 896px) {
  .common_mynavibtn .external::before {
    width: 1px;
    height: 6.6666666667vw;
  }
}
@media screen and (min-width: 897px) {
  .common_mynavibtn:hover {
    background: #009DD3;
    border-color: #009DD3;
  }
  .common_mynavibtn:hover .txtwrap {
    filter: brightness(0) invert(1);
  }
  .common_mynavibtn:hover .external {
    filter: brightness(0) invert(1);
  }
}

.common_entrybtn {
  width: 100%;
  background: #008C36;
  border: 3px solid #008C36;
  display: flex;
  height: 5.5714285714vw;
  align-items: center;
  padding-inline: 1.3571428571vw;
  justify-content: space-between;
}
@media screen and (max-width: 896px) {
  .common_entrybtn {
    height: 20vw;
    padding-inline: 5vw;
  }
}
.common_entrybtn .txtwrap {
  display: flex;
  align-items: center;
  gap: 0.3571428571vw;
}
@media screen and (max-width: 896px) {
  .common_entrybtn .txtwrap {
    gap: 1.6vw;
  }
}
.common_entrybtn .txtwrap .num {
  width: 3vw;
  height: 3vw;
  border-radius: 50%;
  border: 1px dashed white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7142857143vw;
  color: white;
  text-box: trim-both cap alphabetic;
  padding-left: 0.1vw;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 1);
}
@media screen and (max-width: 896px) {
  .common_entrybtn .txtwrap .num {
    font-size: 5.3333333333vw;
    width: 10.6666666667vw;
    height: 10.6666666667vw;
  }
}
.common_entrybtn .txtwrap .txt {
  color: white;
  font-weight: 700;
  font-size: 1.1428571429vw;
  transition: color 0.35s cubic-bezier(0.25, 0.46, 0.45, 1);
}
@media screen and (max-width: 896px) {
  .common_entrybtn .txtwrap .txt {
    font-size: 3.7333333333vw;
  }
}
.common_entrybtn .arrows {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 1.1428571429vw;
  position: relative;
  z-index: 4;
}
@media screen and (max-width: 896px) {
  .common_entrybtn .arrows {
    padding-left: 4vw;
  }
}
.common_entrybtn .arrows .arrow {
  filter: brightness(0) invert(1);
  transition: filter 0.35s cubic-bezier(0.25, 0.46, 0.45, 1);
  width: 1.1428571429vw;
}
@media screen and (max-width: 896px) {
  .common_entrybtn .arrows .arrow {
    width: 2.6666666667vw;
  }
}
.common_entrybtn .arrows .arrow img {
  width: 100%;
}
.common_entrybtn .arrows .arrow:nth-of-type(1) {
  transition-delay: 0s;
}
.common_entrybtn .arrows .arrow:nth-of-type(2) {
  margin-inline: -0.46vw;
  transition-delay: 0.15s;
}
@media screen and (max-width: 896px) {
  .common_entrybtn .arrows .arrow:nth-of-type(2) {
    margin-inline: -0.8vw;
  }
}
.common_entrybtn .arrows .arrow:nth-of-type(3) {
  transition-delay: 0.3s;
}
.common_entrybtn .arrows::before {
  height: 2.6428571429vw;
  width: 1px;
  background: #fff;
  transition: background-color 0.35s cubic-bezier(0.25, 0.46, 0.45, 1);
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
}
@media screen and (max-width: 896px) {
  .common_entrybtn .arrows::before {
    height: 6.6666666667vw;
  }
}
@media screen and (min-width: 897px) {
  .common_entrybtn:hover {
    background: white;
    color: #008C36;
  }
  .common_entrybtn:hover .txtwrap .num {
    border: 1px dashed #008C36;
    color: #008C36;
  }
  .common_entrybtn:hover .txtwrap .txt {
    color: #008C36;
  }
  .common_entrybtn:hover .arrows .arrow {
    filter: brightness(1) invert(0);
  }
  .common_entrybtn:hover .arrows::before {
    background: #008C36;
  }
}

.txt_orange {
  color: #F77B00;
}

.txt_green {
  color: #008C36;
}

.txt_blue {
  color: #009DD3;
}

.under_h2 {
  font-size: 2.4285714286vw;
  letter-spacing: -0.01em;
  line-height: 1.45;
}
@media screen and (max-width: 896px) {
  .under_h2 {
    font-size: 6.4vw;
  }
}

.deco_bracket {
  position: relative;
}
.deco_bracket::before {
  width: 1.2857142857vw;
  height: 105%;
  border: 3px solid #262626;
  border-right: none;
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  content: "";
}
@media screen and (max-width: 896px) {
  .deco_bracket::before {
    width: 3.4666666667vw;
    border-width: 2px;
  }
}
.deco_bracket::after {
  width: 1.2857142857vw;
  height: 105%;
  border: 3px solid #262626;
  border-left: none;
  position: absolute;
  right: 0;
  top: 50%;
  translate: 0 -50%;
  content: "";
}
@media screen and (max-width: 896px) {
  .deco_bracket::after {
    width: 3.4666666667vw;
    border-width: 2px;
  }
}

.under_mv {
  margin-top: 6.7857142857vw;
  position: relative;
  background: white;
  padding-bottom: 1.2857142857vw;
  z-index: 4;
}
@media screen and (max-width: 896px) {
  .under_mv {
    margin-top: 17.0666666667vw;
    margin-bottom: 4vw;
  }
}
.under_mv .mv__ttl {
  padding: 3.8571428571vw 5.5vw 7.5vw;
  display: flex;
  flex-direction: column;
  gap: 0.2857142857vw;
}
@media screen and (max-width: 896px) {
  .under_mv .mv__ttl {
    padding: 6.4vw 5vw 18.6666666667vw;
    gap: 9px;
  }
}
.under_mv .mv__ttl .en {
  font-size: 1.4285714286vw;
  line-height: 1.22;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 896px) {
  .under_mv .mv__ttl .en {
    font-size: 4.8vw;
  }
}
.under_mv .mv__ttl .jp {
  font-size: 7.1428571429vw;
}
@media screen and (max-width: 896px) {
  .under_mv .mv__ttl .jp {
    font-size: 14.4vw;
  }
}
.under_mv .mv__deco {
  position: absolute;
  width: 32.0714285714vw;
  right: 1.9285714286vw;
  bottom: 0;
}
@media screen and (max-width: 896px) {
  .under_mv .mv__deco {
    scale: 1.2;
    transform-origin: right bottom;
  }
}
.under_mv .bread {
  padding-inline: 5.5vw;
}
@media screen and (max-width: 896px) {
  .under_mv .bread {
    padding-inline: 5vw;
  }
}
.under_mv .bread__list {
  display: flex;
  align-items: center;
  gap: 0.5vw;
  flex-wrap: wrap;
}
@media screen and (max-width: 896px) {
  .under_mv .bread__list {
    gap: 1.7vw;
  }
}
.under_mv .bread__list li {
  font-size: 1vw;
}
@media screen and (max-width: 896px) {
  .under_mv .bread__list li {
    line-height: 1.3;
    font-size: 2.9333333333vw;
  }
}
.under_mv .bread__list li a {
  color: #009DD3;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 1);
  display: block;
  position: relative;
  font-size: 1vw;
}
@media screen and (max-width: 896px) {
  .under_mv .bread__list li a {
    font-size: 2.9333333333vw;
  }
}
.under_mv .bread__list li a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #009DD3;
  left: 0;
  bottom: -3px;
  transform: scaleX(0);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 1);
  transform-origin: right;
}
@media screen and (min-width: 897px) {
  .under_mv .bread__list li a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }
}

.deco_dq {
  width: 100%;
  height: 1px;
  position: relative;
}
.deco_dq::after {
  height: 1px;
  width: 93.75%;
  background: #262626;
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  translate: 0 -50%;
}
@media screen and (max-width: 896px) {
  .deco_dq::after {
    width: 87%;
  }
}
.deco_dq::before {
  background: url(../../img/common/svg_dq01.svg) no-repeat center;
  background-size: contain;
  content: "";
  position: absolute;
  width: 3.7142857143vw;
  height: 2.6428571429vw;
  top: 50%;
  left: 0;
  translate: 0 -50%;
}
@media screen and (max-width: 896px) {
  .deco_dq::before {
    width: 8vw;
    height: 5.8666666667vw;
  }
}

.other_linkwrap {
  padding: 6.4285714286vw 10vw;
  background: white;
}
@media screen and (max-width: 896px) {
  .other_linkwrap {
    padding: 18.1333333333vw 5vw;
  }
}
.other_linkwrap .other__wrap {
  display: flex;
}
@media screen and (min-width: 897px) {
  .other_linkwrap .other__wrap {
    justify-content: space-between;
    align-items: center;
  }
}
@media screen and (max-width: 896px) {
  .other_linkwrap .other__wrap {
    gap: 4vw;
    flex-direction: column;
  }
}
.other_linkwrap .other__box {
  position: relative;
  display: block;
}
@media screen and (min-width: 897px) {
  .other_linkwrap .other__box {
    width: 37.8571428571vw;
  }
}
.other_linkwrap .other__box--bg {
  overflow: hidden;
}
.other_linkwrap .other__box--bg .imgwrap {
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 1);
}
.other_linkwrap .other__box--txtbox {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 1.5vw;
  padding-inline: 1.4285714286vw;
}
@media screen and (max-width: 896px) {
  .other_linkwrap .other__box--txtbox {
    padding-inline: 2.6666666667vw;
    bottom: 4vw;
  }
}
.other_linkwrap .other__box--txtbox .ttl {
  display: flex;
  flex-direction: column;
  color: white;
}
.other_linkwrap .other__box--txtbox .ttl .entxt {
  font-size: 0.9285714286vw;
  letter-spacing: 0.07em;
  line-height: 1.8;
}
@media screen and (max-width: 896px) {
  .other_linkwrap .other__box--txtbox .ttl .entxt {
    font-size: 3.4666666667vw;
  }
}
.other_linkwrap .other__box--txtbox .ttl .jp {
  font-size: 3.4285714286vw;
  line-height: 1.22;
}
@media screen and (max-width: 896px) {
  .other_linkwrap .other__box--txtbox .ttl .jp {
    font-size: 6.4vw;
  }
}
.other_linkwrap .other__box--txtbox .arrows {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 4;
  width: 3.2142857143vw;
  height: 3.2142857143vw;
  background: white;
  margin-bottom: 0.5714285714vw;
}
@media screen and (max-width: 896px) {
  .other_linkwrap .other__box--txtbox .arrows {
    width: 8vw;
    height: 8vw;
  }
}
.other_linkwrap .other__box--txtbox .arrows .arrow {
  transition: filter 0.35s cubic-bezier(0.25, 0.46, 0.45, 1);
  width: 0.6428571429vw;
  position: relative;
  z-index: 4;
}
@media screen and (max-width: 896px) {
  .other_linkwrap .other__box--txtbox .arrows .arrow {
    width: 1.6vw;
    display: flex;
    align-items: center;
  }
}
.other_linkwrap .other__box--txtbox .arrows .arrow img {
  width: 100%;
}
@media screen and (max-width: 896px) {
  .other_linkwrap .other__box--txtbox .arrows .arrow img {
    height: auto;
  }
}
.other_linkwrap .other__box--txtbox .arrows .arrow:nth-of-type(1) {
  transition-delay: 0s;
}
.other_linkwrap .other__box--txtbox .arrows .arrow:nth-of-type(2) {
  margin-inline: -0.2vw;
  transition-delay: 0.15s;
}
@media screen and (max-width: 896px) {
  .other_linkwrap .other__box--txtbox .arrows .arrow:nth-of-type(2) {
    margin-inline: -0.5vw;
  }
}
.other_linkwrap .other__box--txtbox .arrows .arrow:nth-of-type(3) {
  transition-delay: 0.3s;
}
.other_linkwrap .other__box--txtbox .arrows .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #009DD3;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 1);
  transition-delay: 0.3s;
}
.other_linkwrap .other__box--txtbox .arrows .bg::before {
  z-index: 2;
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  background: #008C36;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 1);
  transition-delay: 0.15s;
}
.other_linkwrap .other__box--txtbox .arrows .bg::after {
  z-index: 2;
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  background: #F77B00;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 1);
  transition-delay: 0s;
}
.other_linkwrap .other__box:hover .other__box--bg .imgwrap {
  transform: scale(1.1);
  filter: brightness(0.6);
}
@media screen and (min-width: 897px) {
  .other_linkwrap .other__box:hover .other__box--txtbox .arrows .arrow {
    filter: brightness(0) invert(1);
  }
  .other_linkwrap .other__box:hover .other__box--txtbox .arrows .bg {
    transform: scaleX(1);
    transform-origin: left;
    transition-delay: 0s;
  }
  .other_linkwrap .other__box:hover .other__box--txtbox .arrows .bg::before {
    transform: scaleX(1);
    transform-origin: left;
    transition-delay: 0.15s;
  }
  .other_linkwrap .other__box:hover .other__box--txtbox .arrows .bg::after {
    transform: scaleX(1);
    transform-origin: left;
    transition-delay: 0.3s;
  }
}

.common_mvunder_img__wrap {
  background: white;
}

.common_mvunder_img {
  clip-path: inset(0 0% 0 0%);
}
@media screen and (max-width: 896px) {
  .common_mvunder_img {
    padding-inline: 2.6666666667vw;
  }
}
@media screen and (max-width: 896px) {
  .common_mvunder_img .imgwrap img {
    height: 70vw;
    width: 100%;
    object-fit: cover;
    object-position: top;
  }
}

.common_head {
  position: relative;
}
.common_head__txtbox {
  display: flex;
  flex-direction: column;
  padding: 4.2857142857vw 5vw 0;
}
@media screen and (max-width: 896px) {
  .common_head__txtbox {
    padding: 5.6vw 5vw 0;
  }
}
.common_head__txtbox--ttl {
  line-height: 1.1;
  letter-spacing: 0.01em;
  font-size: 6vw;
}
@media screen and (max-width: 896px) {
  .common_head__txtbox--ttl {
    font-size: 9.6vw;
    line-height: 1.24;
  }
}
.common_head__txtbox .lead {
  margin-top: 3.7142857143vw;
}
@media screen and (min-width: 897px) {
  .common_head__txtbox .lead {
    width: 60vw;
    font-size: 1.4285714286vw;
    line-height: 1.79;
    letter-spacing: 0.03em;
  }
}
@media screen and (max-width: 896px) {
  .common_head__txtbox .lead {
    margin-top: 4vw;
  }
}

.talk__link {
  position: relative;
  display: block;
  border: 1px solid #000;
}
.talk__link .link__index {
  position: absolute;
  top: 2.8571428571vw;
  left: 2.8571428571vw;
  display: flex;
  flex-direction: column;
  z-index: 6;
  color: #009DD3;
  width: max-content;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 1);
  gap: 0.7142857143vw;
}
@media screen and (max-width: 896px) {
  .talk__link .link__index {
    gap: 0.5333333333vw;
  }
}
.talk__link .link__index.type_green {
  color: #008C36;
}
.talk__link .link__index.type_green .num {
  border-color: #008C36;
}
.talk__link .link__index .num {
  font-size: 6.8571428571vw;
  line-height: 1.05;
  font-weight: 500;
  border-bottom: 1px solid #009DD3;
  padding-bottom: 0.2857142857vw;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 1);
}
@media screen and (max-width: 896px) {
  .talk__link .link__index .num {
    font-size: 7.4666666667vw;
    padding-bottom: 0.5333333333vw;
  }
}
.talk__link .link__index .txt {
  letter-spacing: 0.07em;
  line-height: 1.22;
  font-size: 1.7142857143vw;
  text-transform: uppercase;
}
@media screen and (max-width: 896px) {
  .talk__link .link__index .txt {
    font-size: 2.6666666667vw;
  }
}
.talk__link .link__ttl {
  position: absolute;
  left: 2.8571428571vw;
  bottom: 2.8571428571vw;
  display: flex;
  flex-direction: column;
  gap: 0.2857142857vw;
  color: white;
}
.talk__link .link__ttl .entxt {
  letter-spacing: 0.07em;
  line-height: 1.8;
  font-size: 0.9285714286vw;
}
@media screen and (max-width: 896px) {
  .talk__link .link__ttl .entxt {
    font-size: 2.6666666667vw;
  }
}
.talk__link .link__ttl .jp {
  letter-spacing: -0.05em;
  line-height: 1.15;
  font-size: 6.8571428571vw;
}
@media screen and (max-width: 896px) {
  .talk__link .link__ttl .jp {
    font-size: 8vw;
  }
}
.talk__link .link__ttl .jp .deco_underline {
  position: relative;
  display: inline-block;
}
.talk__link .link__ttl .jp .deco_underline::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 0.4285714286vw;
  background: #008C36;
  left: 50%;
  translate: -50% 0;
  bottom: 0.2142857143vw;
  z-index: -1;
}
.talk__link .link__ttl .jp .deco_underline.type_blue::after {
  background: #009DD3;
}
.talk__link .link__bg {
  overflow: hidden;
}
.talk__link .link__bg .imgwrap {
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 1);
}
.talk__link .arrows {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 4;
  width: 4.2857142857vw;
  height: 4.2857142857vw;
  background: white;
  bottom: 2.2142857143vw;
  right: 1.6428571429vw;
  position: absolute;
}
@media screen and (max-width: 896px) {
  .talk__link .arrows {
    width: 8vw;
    height: 8vw;
    right: 2.6666666667vw;
    bottom: 2.6666666667vw;
  }
}
.talk__link .arrows .arrow {
  transition: filter 0.35s cubic-bezier(0.25, 0.46, 0.45, 1);
  width: 0.7142857143vw;
  position: relative;
  z-index: 4;
}
@media screen and (max-width: 896px) {
  .talk__link .arrows .arrow {
    width: 1.6vw;
    display: flex;
    align-items: center;
  }
}
.talk__link .arrows .arrow img {
  width: 100%;
}
@media screen and (max-width: 896px) {
  .talk__link .arrows .arrow img {
    height: auto;
  }
}
.talk__link .arrows .arrow:nth-of-type(1) {
  transition-delay: 0s;
}
.talk__link .arrows .arrow:nth-of-type(2) {
  margin-inline: -0.24vw;
  transition-delay: 0.15s;
}
@media screen and (max-width: 896px) {
  .talk__link .arrows .arrow:nth-of-type(2) {
    margin-inline: -0.5vw;
  }
}
.talk__link .arrows .arrow:nth-of-type(3) {
  transition-delay: 0.3s;
}
.talk__link .arrows .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #009DD3;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 1);
  transition-delay: 0.3s;
}
.talk__link .arrows .bg::before {
  z-index: 2;
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  background: #008C36;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 1);
  transition-delay: 0.15s;
}
.talk__link .arrows .bg::after {
  z-index: 2;
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  background: #F77B00;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 1);
  transition-delay: 0s;
}
@media screen and (min-width: 897px) {
  .talk__link:hover .arrows .arrow {
    filter: brightness(0) invert(1);
  }
  .talk__link:hover .arrows .bg {
    transform: scaleX(1);
    transform-origin: left;
    transition-delay: 0s;
  }
  .talk__link:hover .arrows .bg::before {
    transform: scaleX(1);
    transform-origin: left;
    transition-delay: 0.15s;
  }
  .talk__link:hover .arrows .bg::after {
    transform: scaleX(1);
    transform-origin: left;
    transition-delay: 0.3s;
  }
}
@media screen and (min-width: 897px) {
  .talk__link:hover .link__index {
    color: white;
  }
  .talk__link:hover .link__index.type_green {
    color: white;
  }
  .talk__link:hover .link__index.type_green .num {
    border-bottom: 1px solid white;
  }
  .talk__link:hover .link__index .num {
    border-bottom: 1px solid white;
  }
  .talk__link:hover .link__bg .imgwrap {
    transform: scale(1.1);
    filter: brightness(0.6);
  }
}

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

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999999999;
}
.header::before {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  border-bottom: 1px solid #BBBBBB;
}
.header__wrap {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 6.7857142857vw;
  padding-inline: 2.1428571429vw;
}
@media screen and (max-width: 896px) {
  .header__wrap {
    padding-inline: 2vw;
    height: 16.5333333333vw;
  }
}
.header__logowrap {
  display: flex;
  align-items: center;
  gap: 1.1428571429vw;
  transition: opacity 0.3s ease;
}
.header__logowrap .logo {
  width: 16.4285714286vw;
}
@media screen and (max-width: 896px) {
  .header__logowrap .logo {
    width: 37.3333333333vw;
  }
}
.header__logowrap .txt {
  letter-spacing: 0.05em;
  font-size: 1vw;
}
@media screen and (max-width: 896px) {
  .header__logowrap .txt {
    font-size: 2.6666666667vw;
  }
}
@media screen and (min-width: 897px) {
  .header__logowrap:hover {
    opacity: 0.7;
  }
}
.header__body {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.header__body--list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.7142857143vw;
  transition: all 0.3s ease;
}
@media screen and (max-width: 896px) {
  .header__body--list {
    display: none;
  }
}
.header__body--list.hide {
  opacity: 0;
  visibility: hidden;
}
.header__body--list li a {
  font-size: 1vw;
  font-weight: 700;
  letter-spacing: 0.04em;
  position: relative;
}
.header__body--list li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #F77B00;
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: right;
}
@media screen and (min-width: 897px) {
  .header__body--list li a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }
}
.header__body--entry {
  background: #008C36;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border: 1px solid #008C36;
  width: 9.2857142857vw;
  height: 2.8571428571vw;
  transition: all 0.3s ease;
}
@media screen and (min-width: 897px) {
  .header__body--entry {
    margin-left: 2vw;
  }
}
@media screen and (max-width: 896px) {
  .header__body--entry {
    width: 20.5333333333vw;
    height: 8.5333333333vw;
  }
}
.header__body--entry .txt {
  font-weight: 700;
  font-size: 1vw;
}
@media screen and (max-width: 896px) {
  .header__body--entry .txt {
    font-size: 3.2vw;
  }
}
@media screen and (min-width: 897px) {
  .header__body--entry:hover {
    background: white;
    color: #008C36;
  }
}
.header__body .menu-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.8571428571vw;
  height: 2.8571428571vw;
  position: relative;
  margin-left: 0.7857142857vw;
  cursor: pointer;
}
@media screen and (max-width: 896px) {
  .header__body .menu-trigger {
    width: 11.2vw;
    height: 11.2vw;
  }
}
.header__body .menu-trigger svg path {
  transition: all 0.3s ease;
}
@media screen and (min-width: 897px) {
  .header__body .menu-trigger:hover svg path {
    stroke: #F77B00;
  }
}
.header__body .menu-trigger .type_default {
  width: 1.1428571429vw;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 896px) {
  .header__body .menu-trigger .type_default {
    width: 5.3333333333vw;
  }
}
.header__body .menu-trigger .type_close {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 1.0714285714vw;
  transition: opacity 0.3s ease;
  opacity: 0;
}
@media screen and (max-width: 896px) {
  .header__body .menu-trigger .type_close {
    width: 4.8vw;
  }
}
.header__body .menu-trigger.active .type_default {
  opacity: 0;
}
.header__body .menu-trigger.active .type_close {
  opacity: 1;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999999;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.nav.show {
  opacity: 1;
  visibility: visible;
}
.nav__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.nav__content {
  background: #fff;
  overflow-x: hidden;
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 2.6315789474vh;
  translate: -50% 0;
  padding: 3.6428571429vw 5.6428571429vw 3.6428571429vw 8.8571428571vw;
  display: flex;
}
@media screen and (min-width: 897px) {
  .nav__content {
    justify-content: space-between;
    align-items: center;
    width: 97.1428571429vw;
    height: calc(100vh - 6.7857142857vw - 5.2631578947vh);
  }
}
@media screen and (max-width: 896px) {
  .nav__content {
    width: 90%;
    height: calc(100vh - 16.5333333333vw - 5.2631578947vh);
    height: calc(100dvh - 16.5333333333vw - 5.2631578947dvh);
    flex-direction: column;
    padding: 15vw 5vw 20vw;
    bottom: 2.6315789474dvh;
  }
}
.nav__content--listwrap {
  width: 43.1428571429vw;
  display: flex;
  gap: 4.2857142857vw;
}
@media screen and (max-width: 896px) {
  .nav__content--listwrap {
    flex-direction: column;
    width: 100%;
    gap: 12vw;
  }
}
.nav__content--wrap {
  display: flex;
  flex-direction: column;
  gap: 3.5714285714vw;
}
@media screen and (max-width: 896px) {
  .nav__content--wrap {
    gap: 12vw;
  }
}
.nav__content--block {
  display: flex;
  flex-direction: column;
  gap: 2.0714285714vw;
}
@media screen and (min-width: 897px) {
  .nav__content--block {
    min-width: 18.5714285714vw;
  }
}
@media screen and (max-width: 896px) {
  .nav__content--block {
    gap: 6vw;
  }
}
.nav__content--block .block__ttl {
  font-size: 1.2857142857vw;
  width: 100%;
  font-weight: 700;
  padding-bottom: 0.5vw;
  border-bottom: 1px solid #262626;
}
@media screen and (max-width: 896px) {
  .nav__content--block .block__ttl {
    font-size: 4.2666666667vw;
    padding-bottom: 2.1333333333vw;
  }
}
.nav__content--list {
  display: flex;
  flex-direction: column;
  gap: 1.4285714286vw;
}
@media screen and (max-width: 896px) {
  .nav__content--list {
    gap: 4vw;
  }
}
.nav__content--list li .baselink {
  font-size: 1.1428571429vw;
  letter-spacing: 0.01em;
  position: relative;
  padding-left: 0.8571428571vw;
}
@media screen and (max-width: 896px) {
  .nav__content--list li .baselink {
    font-size: 4vw;
    padding-left: 4vw;
  }
}
.nav__content--list li .baselink::before {
  background: url(../../img/common/nav/svg_link01.svg) no-repeat center;
  background-size: contain;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  width: 0.5vw;
  height: 0.7142857143vw;
}
@media screen and (max-width: 896px) {
  .nav__content--list li .baselink::before {
    width: 2.6666666667vw;
    height: 2.6666666667vw;
  }
}
.nav__content--list li .baselink::after {
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 0;
  content: "";
  position: absolute;
  background-color: #008C36;
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: right;
}
@media screen and (min-width: 897px) {
  .nav__content--list li .baselink:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }
}
.nav__content--list .childlist {
  padding-left: 0.8571428571vw;
  margin-top: 1.0714285714vw;
  margin-bottom: 0.7142857143vw;
  display: flex;
  flex-direction: column;
  gap: 0.8571428571vw;
}
@media screen and (max-width: 896px) {
  .nav__content--list .childlist {
    gap: 4vw;
    margin-block: 4vw;
    padding-left: 5vw;
    flex-wrap: wrap;
    flex-direction: row;
  }
}
.nav__content--list .childlist li.type_sphalf {
  width: 35%;
}
.nav__content--list .childlist li .childlink {
  position: relative;
  padding-left: 0.8571428571vw;
  white-space: nowrap;
  color: #7C7C7C;
  transition: color 0.3s ease;
}
@media screen and (max-width: 896px) {
  .nav__content--list .childlist li .childlink {
    font-size: 3.4666666667vw;
    padding-left: 3.2vw;
  }
}
.nav__content--list .childlist li .childlink::before {
  content: "- ";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
}
.nav__content--list .childlist li .childlink::after {
  width: 100%;
  height: 1px;
  bottom: -1px;
  left: 0;
  content: "";
  position: absolute;
  background-color: #F77B00;
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: right;
}
@media screen and (min-width: 897px) {
  .nav__content--list .childlist li .childlink:hover {
    color: #262626;
  }
}
@media screen and (min-width: 897px) {
  .nav__content--list .childlist li .childlink:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }
}
.nav__content--other {
  padding-block: 2.7142857143vw;
  padding-left: 7.6428571429vw;
  border-left: 1px solid #BBBBBB;
}
@media screen and (min-width: 897px) {
  .nav__content--other {
    width: 31.2857142857vw;
  }
}
@media screen and (max-width: 896px) {
  .nav__content--other {
    padding-left: 0;
    padding-top: 14vw;
    border-left: none;
    border-top: 1px solid #BBBBBB;
    margin-top: 14vw;
  }
}
.nav__content--other .other__ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2.1428571429vw;
  width: 100%;
}
@media screen and (max-width: 896px) {
  .nav__content--other .other__ttl {
    gap: 5vw;
  }
}
.nav__content--other .other__ttl .en {
  font-size: 1.4285714286vw;
  position: relative;
  display: block;
  width: 100%;
}
.nav__content--other .other__ttl .en::before {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 0;
  width: 8.9285714286vw;
  height: 1px;
  background-color: #262626;
}
@media screen and (max-width: 896px) {
  .nav__content--other .other__ttl .en::before {
    width: 30vw;
  }
}
.nav__content--other .other__ttl .en::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 0;
  width: 8.9285714286vw;
  height: 1px;
  background-color: #262626;
}
@media screen and (max-width: 896px) {
  .nav__content--other .other__ttl .en::after {
    width: 30vw;
  }
}
@media screen and (max-width: 896px) {
  .nav__content--other .other__ttl .en {
    font-size: 4.2666666667vw;
  }
}
.nav__content--other .other__ttl .jp {
  width: 100%;
}
@media screen and (max-width: 896px) {
  .nav__content--other .other__ttl .jp {
    width: 90%;
  }
}
.nav__content--other .other__cvs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.0714285714vw;
  margin-top: 3.5714285714vw;
}
@media screen and (max-width: 896px) {
  .nav__content--other .other__cvs {
    margin-top: 6vw;
    gap: 4vw;
  }
}
.nav__content--other .other__cvs li {
  width: 23.5714285714vw;
}
@media screen and (max-width: 896px) {
  .nav__content--other .other__cvs li {
    width: 100%;
  }
}
.nav__content--other .other__list {
  display: flex;
  justify-content: center;
  width: 100%;
  gap: 2.8571428571vw;
  align-items: center;
  margin-top: 2.6428571429vw;
}
@media screen and (max-width: 896px) {
  .nav__content--other .other__list {
    margin-top: 10vw;
    gap: 8vw;
  }
}
.nav__content--other .other__list li a {
  position: relative;
  display: block;
  color: #008C36;
  font-size: 0.9285714286vw;
}
@media screen and (max-width: 896px) {
  .nav__content--other .other__list li a {
    font-size: 2.9333333333vw;
  }
}
.nav__content--other .other__list li a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -0.9285714286vw;
  translate: 0 -50%;
  width: 0.5vw;
  height: 0.7142857143vw;
  background: url(../../img/common/nav/svg_link01.svg) no-repeat center;
  background-size: contain;
}
@media screen and (max-width: 896px) {
  .nav__content--other .other__list li a::before {
    width: 1.8666666667vw;
    height: 2.6666666667vw;
    left: -2.6666666667vw;
  }
}
.nav__content--other .other__list li a::after {
  width: 100%;
  height: 1px;
  bottom: -5px;
  left: 0;
  content: "";
  position: absolute;
  background-color: #008C36;
  transform: scaleX(1);
  transition: transform 0.3s ease;
  transform-origin: left;
}
@media screen and (min-width: 897px) {
  .nav__content--other .other__list li a:hover::after {
    transform: scaleX(0);
    transform-origin: right;
  }
}
.nav.show__bg {
  opacity: 1;
}

#stage {
  overflow-x: hidden;
}

/* フッターのスタイル */
.common_cv {
  position: relative;
  background: white;
  z-index: 6;
  overflow: hidden;
}
.common_cv__txtbox {
  position: absolute;
  left: 50%;
  bottom: 4.4285714286vw;
  translate: -50% 0;
}
@media screen and (max-width: 896px) {
  .common_cv__txtbox {
    width: 90%;
    bottom: 10.6666666667vw;
  }
}
.common_cv__ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 896px) {
  .common_cv__ttl {
    gap: 3vw;
  }
}
.common_cv__ttl .en {
  color: white;
  font-size: 2.5714285714vw;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 896px) {
  .common_cv__ttl .en {
    font-size: 5.3333333333vw;
  }
}
.common_cv__ttl .jp {
  width: 92.6428571429vw;
}
@media screen and (max-width: 896px) {
  .common_cv__ttl .jp {
    width: 100%;
  }
}
.common_cv__cvs {
  display: flex;
  margin-top: 2.2857142857vw;
  justify-content: center;
  gap: 1vw;
}
@media screen and (max-width: 896px) {
  .common_cv__cvs {
    flex-direction: column;
    gap: 4vw;
    width: 100%;
    margin-top: 6vw;
  }
}
@media screen and (min-width: 897px) {
  .common_cv__cvs li {
    width: 26.7142857143vw;
    height: 6.7857142857vw;
  }
}
@media screen and (min-width: 897px) {
  .common_cv__cvs li a {
    height: 6.7857142857vw;
  }
}
.common_cv__cvs li .common_entrybtn {
  border: none;
}
@media screen and (min-width: 897px) {
  .common_cv__cvs li .common_entrybtn .txtwrap .num {
    width: 4.4285714286vw;
    height: 4.4285714286vw;
    font-size: 2.5vw;
  }
}
@media screen and (min-width: 897px) {
  .common_cv__cvs li .common_entrybtn .txt {
    font-size: 1.3571428571vw;
  }
}
@media screen and (min-width: 897px) {
  .common_cv__cvs li .common_entrybtn .arrows {
    padding-left: 1.9285714286vw;
  }
}
@media screen and (min-width: 897px) {
  .common_cv__cvs li .common_entrybtn .arrows::before {
    height: 3.1428571429vw;
  }
}
@media screen and (min-width: 897px) {
  .common_cv__cvs li .common_entrybtn .arrows .arrow {
    width: 0.7142857143vw;
  }
}
@media screen and (min-width: 897px) {
  .common_cv__cvs li .common_entrybtn .arrows .arrow:nth-of-type(2n) {
    margin-inline: -0.25vw;
  }
}
.common_cv__cvs li .common_mynavibtn {
  border: none;
}
@media screen and (min-width: 897px) {
  .common_cv__cvs li .common_mynavibtn {
    padding-inline: 4vw 2.7857142857vw;
  }
}
@media screen and (min-width: 897px) {
  .common_cv__cvs li .common_mynavibtn .txtwrap {
    width: 14.3571428571vw;
  }
}
@media screen and (min-width: 897px) {
  .common_cv__cvs li .common_mynavibtn .external {
    width: auto;
    padding-left: 1.9285714286vw;
  }
}
@media screen and (min-width: 897px) {
  .common_cv__cvs li .common_mynavibtn .external::before {
    height: 3.1428571429vw;
  }
}
@media screen and (min-width: 897px) {
  .common_cv__cvs li .common_mynavibtn .external img {
    width: 1.2142857143vw;
  }
}

.footer {
  background: white;
  border-top: 1px solid #bbb;
  position: relative;
  z-index: 6;
  display: flex;
}
@media screen and (min-width: 897px) {
  .footer {
    justify-content: space-between;
  }
}
@media screen and (max-width: 896px) {
  .footer {
    flex-direction: column;
    padding-top: 8.2666666667vw;
  }
}
.footer__info {
  border-right: 1px solid #ACACAC;
}
@media screen and (min-width: 897px) {
  .footer__info {
    width: 19.7142857143%;
    padding: 4.2142857143vw 2.3571428571vw 4vw;
  }
}
@media screen and (max-width: 896px) {
  .footer__info {
    display: flex;
    align-items: center;
    gap: 8.2666666667vw;
  }
}
.footer__info--logo {
  width: 100%;
}
@media screen and (max-width: 896px) {
  .footer__info--logo {
    border-right: 1px solid #95958F;
    width: 35.2vw;
  }
}
.footer__info--logo a {
  transition: all 0.35s ease;
  display: block;
}
@media screen and (min-width: 897px) {
  .footer__info--logo a:hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 897px) {
  .footer__info--contact {
    margin-top: 2.7857142857vw;
    padding-top: 1.0714285714vw;
    border-top: 1px solid #95958F;
  }
}
.footer__info--contact .lead {
  width: max-content;
  margin-inline: auto;
  font-size: 0.8571428571vw;
  line-height: 1.47;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 896px) {
  .footer__info--contact .lead {
    font-size: 3.7333333333vw;
    line-height: 1.6;
  }
}
@media screen and (min-width: 897px) {
  .footer__body {
    width: 80.2857142857%;
  }
}
.footer__body--foot {
  display: flex;
}
@media screen and (min-width: 897px) {
  .footer__body--foot {
    justify-content: space-between;
    align-items: center;
    padding-left: 6.2857142857vw;
  }
}
@media screen and (max-width: 896px) {
  .footer__body--foot {
    flex-direction: column;
  }
}
.footer__body--foot .copyr_wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2.4285714286vw;
}
@media screen and (max-width: 896px) {
  .footer__body--foot .copyr_wrap {
    justify-content: space-between;
    border-top: 1px solid #ACACAC;
  }
}
.footer__body--foot .copyr_wrap__txt {
  color: #ABABAB;
  font-size: 0.9285714286vw;
  white-space: nowrap;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 896px) {
  .footer__body--foot .copyr_wrap__txt {
    font-size: 3.2vw;
    padding-left: 5vw;
  }
}
.footer__body--foot .copyr_wrap__pagetop {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.5714285714vw;
  height: 5.5714285714vw;
  border: 2px solid #008C36;
  border-right: none;
  border-bottom: none;
  background: #008C36;
  transition: all 0.3s ease;
}
@media screen and (max-width: 896px) {
  .footer__body--foot .copyr_wrap__pagetop {
    width: 13.3333333333vw;
    height: 13.3333333333vw;
  }
}
.footer__body--foot .copyr_wrap__pagetop img {
  width: 2.1428571429vw;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}
@media screen and (max-width: 896px) {
  .footer__body--foot .copyr_wrap__pagetop img {
    width: 4.8vw;
  }
}
@media screen and (min-width: 897px) {
  .footer__body--foot .copyr_wrap__pagetop:hover {
    background: white;
  }
  .footer__body--foot .copyr_wrap__pagetop:hover img {
    filter: none;
  }
}
.footer__body--foot .other__list {
  display: flex;
  gap: 2.8571428571vw;
  align-items: center;
}
@media screen and (max-width: 896px) {
  .footer__body--foot .other__list {
    margin-top: 8vw;
    margin-left: 8vw;
    margin-bottom: 8vw;
    gap: 8vw;
  }
}
.footer__body--foot .other__list li a {
  position: relative;
  display: block;
  color: #008C36;
  font-size: 0.9285714286vw;
}
@media screen and (max-width: 896px) {
  .footer__body--foot .other__list li a {
    font-size: 2.9333333333vw;
  }
}
.footer__body--foot .other__list li a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -0.9285714286vw;
  translate: 0 -50%;
  width: 0.5vw;
  height: 0.7142857143vw;
  background: url(../../img/common/nav/svg_link01.svg) no-repeat center;
  background-size: contain;
}
@media screen and (max-width: 896px) {
  .footer__body--foot .other__list li a::before {
    width: 1.8666666667vw;
    height: 2.6666666667vw;
    left: -2.6666666667vw;
  }
}
.footer__body--foot .other__list li a::after {
  width: 100%;
  height: 1px;
  bottom: -5px;
  left: 0;
  content: "";
  position: absolute;
  background-color: #008C36;
  transform: scaleX(1);
  transition: transform 0.3s ease;
  transform-origin: left;
}
@media screen and (min-width: 897px) {
  .footer__body--foot .other__list li a:hover::after {
    transform: scaleX(0);
    transform-origin: right;
  }
}
.footer__body .footer__content--listwrap {
  padding: 4.1428571429vw 0 4.1428571429vw 6.2857142857vw;
  display: flex;
  gap: 4.2857142857vw;
}
@media screen and (max-width: 896px) {
  .footer__body .footer__content--listwrap {
    flex-direction: column;
    width: 90%;
    margin-top: 7.4666666667vw;
    margin-inline: auto;
    gap: 12vw;
    padding-left: 0;
    padding-top: 9.3333333333vw;
    border-top: 1px solid #ACACAC;
  }
}
.footer__body .footer__content--wrap {
  display: flex;
  flex-direction: column;
  gap: 3.5714285714vw;
}
@media screen and (max-width: 896px) {
  .footer__body .footer__content--wrap {
    gap: 12vw;
  }
}
.footer__body .footer__content--block {
  display: flex;
  flex-direction: column;
  gap: 2.0714285714vw;
}
@media screen and (min-width: 897px) {
  .footer__body .footer__content--block {
    min-width: 18.5714285714vw;
  }
}
@media screen and (max-width: 896px) {
  .footer__body .footer__content--block {
    gap: 6vw;
  }
}
.footer__body .footer__content--block .block__ttl {
  font-size: 1.2857142857vw;
  width: 100%;
  font-weight: 700;
  padding-bottom: 0.5vw;
  border-bottom: 1px solid #262626;
}
@media screen and (max-width: 896px) {
  .footer__body .footer__content--block .block__ttl {
    font-size: 4.2666666667vw;
    padding-bottom: 2.1333333333vw;
  }
}
.footer__body .footer__content--list {
  display: flex;
  flex-direction: column;
  gap: 1.4285714286vw;
}
@media screen and (max-width: 896px) {
  .footer__body .footer__content--list {
    gap: 4vw;
  }
}
.footer__body .footer__content--list li .baselink {
  font-size: 1.1428571429vw;
  letter-spacing: 0.01em;
  position: relative;
  padding-left: 0.8571428571vw;
}
@media screen and (max-width: 896px) {
  .footer__body .footer__content--list li .baselink {
    font-size: 4vw;
    padding-left: 4vw;
  }
}
.footer__body .footer__content--list li .baselink::before {
  background: url(../../img/common/nav/svg_link01.svg) no-repeat center;
  background-size: contain;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  width: 0.5vw;
  height: 0.7142857143vw;
}
@media screen and (max-width: 896px) {
  .footer__body .footer__content--list li .baselink::before {
    width: 2.6666666667vw;
    height: 2.6666666667vw;
  }
}
.footer__body .footer__content--list li .baselink::after {
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 0;
  content: "";
  position: absolute;
  background-color: #008C36;
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: right;
}
@media screen and (min-width: 897px) {
  .footer__body .footer__content--list li .baselink:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }
}
.footer__body .footer__content--list .childlist {
  padding-left: 0.8571428571vw;
  margin-top: 1.0714285714vw;
  margin-bottom: 0.7142857143vw;
  display: flex;
  flex-direction: column;
  gap: 0.8571428571vw;
}
@media screen and (max-width: 896px) {
  .footer__body .footer__content--list .childlist {
    gap: 4vw;
    margin-block: 4vw;
    padding-left: 5vw;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.footer__body .footer__content--list .childlist li .childlink {
  position: relative;
  padding-left: 0.8571428571vw;
  white-space: nowrap;
  color: #7C7C7C;
  transition: color 0.3s ease;
}
@media screen and (max-width: 896px) {
  .footer__body .footer__content--list .childlist li .childlink {
    font-size: 3.4666666667vw;
    padding-left: 3.2vw;
  }
}
.footer__body .footer__content--list .childlist li .childlink::before {
  content: "- ";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
}
.footer__body .footer__content--list .childlist li .childlink::after {
  width: 100%;
  height: 1px;
  bottom: -1px;
  left: 0;
  content: "";
  position: absolute;
  background-color: #F77B00;
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: right;
}
@media screen and (min-width: 897px) {
  .footer__body .footer__content--list .childlist li .childlink:hover {
    color: #262626;
  }
}
@media screen and (min-width: 897px) {
  .footer__body .footer__content--list .childlist li .childlink:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }
}

.common_bnr {
  position: fixed;
  z-index: 999999998;
  bottom: 0.7142857143vw;
  right: 1.4285714286vw;
  width: 27.6428571429vw;
  transition: all 0.3s ease;
}
@media screen and (max-width: 896px) {
  .common_bnr {
    width: calc(100% - 2.6666666667vw);
    right: 1.3333333333vw;
    bottom: 1.3333333333vw;
  }
}
.common_bnr.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.common_bnr.close {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none;
}
.common_bnr__close {
  position: absolute;
  width: 2.5vw;
  z-index: 5;
  top: 0;
  cursor: pointer;
  right: -0.7142857143vw;
  transition: all 0.3s ease;
}
@media screen and (min-width: 897px) and (min-width: 897px) {
  .common_bnr__close:hover {
    transform: rotate(90deg);
  }
}
@media screen and (max-width: 896px) {
  .common_bnr__close {
    width: 9vw;
    z-index: 5;
    top: -4.2vw;
    cursor: pointer;
    right: 1.8vw;
  }
}
.common_bnr__link {
  transition: all 0.3s ease;
  box-shadow: 5px 5px 4px rgba(0, 0, 0, 0.2);
  transform-origin: right bottom;
  display: block;
}
@media screen and (min-width: 897px) and (min-width: 897px) {
  .common_bnr__link:hover {
    transform: scale(0.97);
  }
}

.underline {
  position: relative;
}
.underline::after {
  content: "";
  background: #dadada;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: -4px;
  left: 0;
  transform: scale(0, 1);
  transition: transform 0.3s;
  transform-origin: right top;
}
@media screen and (min-width: 897px) {
  .underline:hover::after {
    transform-origin: left top;
    transform: scale(1, 1);
  }
}

.svg_anim svg {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  width: 100%;
  height: auto;
}
.svg_anim svg path {
  fill: none;
  stroke: #F38200;
  stroke-width: 1px;
}
.svg_anim.on svg {
  transition: stroke-dashoffset 1s;
  stroke-dashoffset: 2000;
}

.fade_y {
  transform: translateY(10px);
  opacity: 0;
}
.fade_y.on {
  opacity: 1;
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 1), transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 1);
  transform: translateY(0%);
}

.txt_y {
  overflow: hidden;
  display: block;
}
@media screen and (max-width: 896px) {
  .txt_y.pc {
    display: none;
  }
}
@media screen and (min-width: 897px) {
  .txt_y.sp {
    display: none;
  }
}
.txt_y > span {
  transform: translateY(100%);
  opacity: 0;
  display: block;
}
.txt_y.on span {
  transition: 0.7s cubic-bezier(0.25, 0.46, 0.45, 1);
  opacity: 1;
  transform: translateY(0%);
}

.img_anim {
  overflow: hidden;
}
.img_anim img {
  transform: scale(1.07);
  opacity: 0;
}
.img_anim.on img {
  transition: all 0.75s cubic-bezier(0.25, 0.46, 0.45, 1);
  opacity: 1;
  transform: scale(1);
}

.anim_dive {
  transform: translate(0, -20%) scale(1.3);
  opacity: 0;
  display: block;
  filter: blur(10px);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 1);
}
.anim_dive.on {
  filter: blur(0);
  opacity: 1;
  transform: scale(1) translate(0, 0%);
}

.scr_cvr {
  overflow: hidden;
  width: max-content;
  position: relative;
  display: block;
  color: #FBFBFB;
  opacity: 0;
  padding: 0.1em 0.15em;
  transition: 0.5s;
  background: #F38200;
  font-weight: bold;
}
.scr_cvr::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
  z-index: 1;
  background-color: #F38200;
  transition: all 0.6s cubic-bezier(0.5, 0, 0.3, 1);
  transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
}
.scr_cvr.on {
  opacity: 1;
}
.scr_cvr.on::before {
  translate: 100% 0;
  transition-delay: 0.3s;
}

.bgroop {
  animation: bgroop 30s linear infinite;
}

@keyframes bgroop {
  from {
    background-position: 0 -10vh;
  }
  to {
    background-position: 100vw -100vh;
  }
}
.bgroop_y {
  animation: bgMoveY 400s linear infinite;
}

@keyframes bgMoveY {
  0% {
    background-position-Y: 0;
  }
  100% {
    background-position-Y: 12000px;
  }
}
@keyframes bgMove {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: -30000px;
  }
}
.txt_loop {
  overflow: hidden;
}
.txt_loop_box {
  width: 100%;
  width: 100%;
  background: url(../../img/top/loop_specon.webp) repeat-x;
  background-size: auto 100%;
  animation: bgMove 600s infinite linear;
  height: 11.5714285714vw;
}
@media screen and (max-width: 896px) {
  .txt_loop_box {
    height: 17vw;
  }
}

.anim_y {
  display: inline-block;
  clip-path: inset(0 0 100% 0);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 1);
}
.anim_y .txt {
  display: block;
  transform: translateY(100%) scaleY(1.5);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 1);
  width: max-content;
  transform-origin: bottom;
  padding-bottom: 0.03em;
}
.anim_y.on {
  clip-path: inset(0 0 0 0);
}
.anim_y.on .txt {
  transform: translateY(0%) scaleY(1);
}

.anim_x {
  display: inline-block;
  clip-path: inset(0 100% 0 0);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 1);
}
.anim_x .txt {
  display: block;
  transform: translateX(clamp(-50px, -100%, 0px)) scaleX(1.5);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 1);
  width: max-content;
  transform-origin: right;
}
.anim_x.on {
  clip-path: inset(0 0 0 0);
}
.anim_x.on .txt {
  transform: translateX(0%) scaleX(1);
}

@keyframes growDown {
  0% {
    transform: scaleY(0);
    opacity: 1;
  }
  30% {
    transform: scaleY(1);
    opacity: 1; /* ← 常に完全表示 */
  }
  60% {
    transform: scaleY(1);
    opacity: 1; /* ← 表示を少し維持 */
  }
  80% {
    transform: scaleY(1);
    opacity: 0; /* ← 最後に消える */
  }
  100% {
    transform: scaleY(1);
    opacity: 0; /* ← 最後に消える */
  }
}
#stage {
  overflow: visible;
}

.top .scrollwrap {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 555;
  display: flex;
  width: 5.7142857143vw;
  background: #262626;
  display: flex;
  justify-content: center;
  gap: 0.7142857143vw;
  align-items: flex-start;
  padding-top: 1.5vw;
  transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 1);
}
@media screen and (max-width: 896px) {
  .top .scrollwrap {
    width: 16vw;
    gap: 2.1333333333vw;
    padding-top: 4vw;
  }
}
.top .scrollwrap.hide {
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
}
.top .scrollwrap .line {
  background: white;
  width: 2px;
  height: 12.0714285714vw;
  transform-origin: top;
  transform: scaleY(0);
  animation: growDown 3s ease-in-out infinite;
}
@media screen and (max-width: 896px) {
  .top .scrollwrap .line {
    height: 37.3333333333vw;
  }
}
.top .scrollwrap .txt {
  width: 1vw;
}
@media screen and (max-width: 896px) {
  .top .scrollwrap .txt {
    width: 3.2vw;
  }
}
.top .video-container {
  position: relative;
}
.top .video-container video {
  object-fit: cover;
  top: calc(50% + 6.7857142857vw) !important;
}
@media screen and (max-width: 896px) {
  .top .video-container video {
    top: calc(50% + 17.0666666667vw) !important;
  }
}
.top__mv {
  position: relative;
  z-index: 5;
  margin-top: calc(-100vh + 6.7857142857vw);
  padding-bottom: 150vh;
  overflow: hidden;
}
@media screen and (max-width: 896px) {
  .top__mv {
    margin-top: calc(-100vh + 17.0666666667vw);
  }
}
.top__mv .mv__filter {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 3;
  transition: all 0.5s;
  opacity: 0;
}
.top__mv .mv__filter.show {
  opacity: 1;
}
.top__mv .mv__ttl {
  padding-top: 6.3157894737vh;
  width: 95%;
  margin-inline: auto;
  margin-bottom: 90vh;
  display: block;
  position: relative;
  z-index: 4;
}
.top__mv .mv__ttl .txt {
  display: block;
  width: 100%;
}
@media screen and (max-width: 896px) {
  .top__mv .mv__ttl {
    width: 89.0666666667vw;
    padding-top: 5.8666666667vw;
  }
}
.top__mv .lead {
  font-size: 2.7142857143vw;
  line-height: 1.88;
  letter-spacing: 0;
  width: 80vw;
  margin-inline: auto;
  position: relative;
  z-index: 4;
  color: #7E7E7E;
}
@media screen and (max-width: 896px) {
  .top__mv .lead {
    font-size: 5.8666666667vw;
    width: 100%;
    padding-inline: 2.6666666667vw;
  }
}
.top__about {
  position: relative;
  overflow: hidden;
  z-index: 5;
}
@media screen and (min-width: 897px) {
  .top__about .about__ttl {
    width: 17.5714285714vw;
    position: absolute;
    top: 0vw;
    right: 6.9vw;
  }
}
@media screen and (max-width: 896px) {
  .top__about .about__ttl {
    width: 73.6vw;
    margin-left: 2.6666666667vw;
    clip-path: inset(0 0 100% 0);
  }
}
.top__about .about__ttl .txt {
  width: 100%;
}
@media screen and (max-width: 896px) {
  .top__about .about__ttl .txt {
    transform: translateY(100%) scaleY(1.5);
  }
}
@media screen and (max-width: 896px) {
  .top__about .about__ttl.on {
    clip-path: inset(0 0 0 0);
  }
}
@media screen and (max-width: 896px) {
  .top__about .about__ttl.on .txt {
    transform: translateY(0%) scaleY(1);
  }
}
.top__about .about__box--imgbox {
  position: relative;
  z-index: 5;
}
@media screen and (min-width: 897px) {
  .top__about .about__box--imgbox {
    width: 70vw;
  }
}
@media screen and (max-width: 896px) {
  .top__about .about__box--imgbox {
    width: 91.4666666667vw;
    margin-top: 3.7333333333vw;
  }
}
.top__about .about__box--imgbox .deco {
  position: absolute;
  width: 19.0714285714vw;
  bottom: -13.6428571429vw;
  right: -1vw;
  z-index: 3;
}
@media screen and (max-width: 896px) {
  .top__about .about__box--imgbox .deco {
    width: 32vw;
    right: -11.933333vw;
    bottom: -18vw;
  }
}
.top__about .about__box--imgbox .decotxt {
  position: absolute;
  width: 47.8571428571vw;
  bottom: 3.2857142857vw;
  right: 1.3571428571vw;
  z-index: 3;
}
@media screen and (max-width: 896px) {
  .top__about .about__box--imgbox .decotxt {
    width: 64vw;
    bottom: 8.8vw;
    right: 0;
  }
}
.top__about .about__box--imgbox .decotxt img {
  width: 100%;
}
.top__about .about__box--txtbox {
  padding: 5.7857142857vw 5vw 0;
  width: 100%;
}
@media screen and (min-width: 897px) {
  .top__about .about__box--txtbox {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }
}
@media screen and (max-width: 896px) {
  .top__about .about__box--txtbox {
    padding: 8vw 2.6666666667vw 0;
    flex-direction: column;
    gap: 5.3333333333vw;
  }
}
@media screen and (min-width: 897px) {
  .top__about .about__box--txtbox .innerwrap {
    width: 61.3571428571vw;
  }
}
.top__about .about__box--txtbox .innerwrap .deco_dq {
  width: 100%;
}
.top__about .about__box--txtbox .innerwrap .deco_dq::after {
  width: 91.75%;
}
@media screen and (max-width: 896px) {
  .top__about .about__box--txtbox .innerwrap .deco_dq::before {
    width: 5.3333333333vw;
    height: 3.7333333333vw;
  }
}
.top__about .about__box--txtbox .innerwrap .lead {
  margin-top: 2.5vw;
}
@media screen and (min-width: 897px) {
  .top__about .about__box--txtbox .innerwrap .lead {
    width: 44.8571428571vw;
  }
}
.top__about .about__box--txtbox .innerwrap .ttl {
  font-size: 2.8571428571vw;
  line-height: 1.4;
  letter-spacing: 0.05em;
  padding-top: 3.7142857143vw;
}
@media screen and (max-width: 896px) {
  .top__about .about__box--txtbox .innerwrap .ttl {
    font-size: 6.4vw;
    padding-top: 5.3333333333vw;
    letter-spacing: 0;
  }
}
.top__about .about__box--txtbox .btnwrap {
  display: flex;
  flex-direction: column;
  gap: 1.4285714286vw;
}
@media screen and (max-width: 896px) {
  .top__about .about__box--txtbox .btnwrap {
    margin-top: 5.3333333333vw;
    width: 72vw;
    gap: 2.6666666667vw;
  }
  .top__about .about__box--txtbox .btnwrap .basebtn {
    width: 100%;
  }
}
.top__before {
  position: relative;
  margin-block: 21.0714285714vw 19vw;
  overflow: hidden;
  z-index: 5;
}
@media screen and (max-width: 896px) {
  .top__before {
    margin-block: 20.8vw;
  }
}
@media screen and (min-width: 897px) {
  .top__before .before__ttl {
    width: 17.2857142857vw;
    position: absolute;
    top: 0;
    left: 5vw;
  }
}
@media screen and (max-width: 896px) {
  .top__before .before__ttl {
    width: 73.6vw;
    margin-left: 2.6666666667vw;
    clip-path: inset(0 0 100% 0);
  }
}
.top__before .before__ttl .txt {
  width: 100%;
}
@media screen and (max-width: 896px) {
  .top__before .before__ttl .txt {
    transform: translateY(100%) scaleY(1.5);
  }
}
@media screen and (max-width: 896px) {
  .top__before .before__ttl.on {
    clip-path: inset(0 0 0 0);
  }
}
@media screen and (max-width: 896px) {
  .top__before .before__ttl.on .txt {
    transform: translateY(0%) scaleY(1);
  }
}
@media screen and (min-width: 897px) {
  .top__before .before__box {
    padding-top: 9.6428571429vw;
  }
}
@media screen and (max-width: 896px) {
  .top__before .before__box {
    padding-top: 12.5333333333vw;
  }
}
.top__before .before__box--imgbox {
  position: relative;
  z-index: 5;
}
@media screen and (min-width: 897px) {
  .top__before .before__box--imgbox {
    width: 59.9285714286vw;
    margin-inline: auto 10vw;
  }
}
@media screen and (max-width: 896px) {
  .top__before .before__box--imgbox {
    width: 78.4vw;
    margin-top: 3.7333333333vw;
    margin-inline: 8.5333333333vw auto;
  }
}
.top__before .before__box--imgbox .deco {
  position: absolute;
  width: 30vw;
  top: -9.6428571429vw;
  right: -10vw;
  z-index: 3;
}
@media screen and (max-width: 896px) {
  .top__before .before__box--imgbox .deco {
    width: 38.9333333333vw;
    right: -13.0666666667vw;
    top: -12.5333333333vw;
  }
}
.top__before .before__box--imgbox .decotxt {
  position: absolute;
  width: 29.6428571429vw;
  top: -3.1428571429vw;
  left: -4.5714285714vw;
  z-index: 3;
}
@media screen and (max-width: 896px) {
  .top__before .before__box--imgbox .decotxt {
    width: 40.5333333333vw;
    top: -6.9333333333vw;
    left: -7.2vw;
  }
}
.top__before .before__box--imgbox .decotxt img {
  width: 100%;
}
.top__before .before__box--txtbox {
  padding: 5.7857142857vw 5vw 0;
  width: 100%;
  display: flex;
}
@media screen and (min-width: 897px) {
  .top__before .before__box--txtbox {
    justify-content: space-between;
  }
}
@media screen and (max-width: 896px) {
  .top__before .before__box--txtbox {
    padding: 8vw 2.6666666667vw 0;
    flex-direction: column-reverse;
  }
}
@media screen and (min-width: 897px) {
  .top__before .before__box--txtbox .innerwrap {
    width: 61.3571428571vw;
  }
}
.top__before .before__box--txtbox .innerwrap .deco_dq {
  width: 100%;
}
.top__before .before__box--txtbox .innerwrap .deco_dq::after {
  width: 91.75%;
}
@media screen and (max-width: 896px) {
  .top__before .before__box--txtbox .innerwrap .deco_dq::before {
    width: 5.3333333333vw;
    height: 3.7333333333vw;
  }
}
.top__before .before__box--txtbox .innerwrap .lead {
  margin-top: 2.5vw;
}
@media screen and (min-width: 897px) {
  .top__before .before__box--txtbox .innerwrap .lead {
    width: 44.8571428571vw;
  }
}
.top__before .before__box--txtbox .innerwrap .ttl {
  font-size: 2.8571428571vw;
  line-height: 1.4;
  letter-spacing: 0.05em;
  padding-top: 3.7142857143vw;
}
@media screen and (max-width: 896px) {
  .top__before .before__box--txtbox .innerwrap .ttl {
    font-size: 6.4vw;
    padding-top: 5.3333333333vw;
    letter-spacing: 0;
  }
}
.top__before .before__box--txtbox .btnwrap {
  display: flex;
  flex-direction: column;
  gap: 1.4285714286vw;
}
@media screen and (max-width: 896px) {
  .top__before .before__box--txtbox .btnwrap {
    margin-top: 5.3333333333vw;
    width: 72vw;
    gap: 2.6666666667vw;
  }
  .top__before .before__box--txtbox .btnwrap .basebtn {
    width: 100%;
  }
}
.top__guide {
  background: #F6F6F6;
  overflow: hidden;
  border-block: 3px solid #262626;
  position: relative;
  z-index: 5;
}
.top__guide::before {
  height: 1px;
  width: 100%;
  left: 0;
  top: 0.8571428571vw;
  content: "";
  position: absolute;
  background: #262626;
  z-index: 2;
}
@media screen and (max-width: 896px) {
  .top__guide::before {
    top: 3.2vw;
  }
}
.top__guide .guide__entxt {
  text-align: center;
  padding-block: 2.5714285714vw;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #262626;
  margin-top: 0.8571428571vw;
}
@media screen and (max-width: 896px) {
  .top__guide .guide__entxt {
    padding-block: 5.3333333333vw;
    margin-top: 3.2vw;
  }
}
.top__guide .guide__entxt .txt {
  width: max-content;
  margin-inline: auto;
  display: block;
  text-transform: uppercase;
  position: relative;
  position: relative;
  font-size: 1.4285714286vw;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 896px) {
  .top__guide .guide__entxt .txt {
    font-size: 3.4666666667vw;
  }
}
.top__guide .guide__entxt .txt::before {
  border: 1px solid #262626;
  border-radius: 50%;
  top: 50%;
  left: -5.9285714286vw;
  width: 1.5vw;
  height: 1.5vw;
  content: "";
  position: absolute;
  transform: translateY(-50%);
}
@media screen and (max-width: 896px) {
  .top__guide .guide__entxt .txt::before {
    left: -6.6666666667vw;
    width: 3.4666666667vw;
    height: 3.4666666667vw;
  }
}
.top__guide .guide__entxt .txt::after {
  border: 1px solid #262626;
  border-radius: 50%;
  top: 50%;
  right: -5.9285714286vw;
  width: 1.5vw;
  height: 1.5vw;
  content: "";
  position: absolute;
  transform: translateY(-50%);
}
@media screen and (max-width: 896px) {
  .top__guide .guide__entxt .txt::after {
    right: -6.6666666667vw;
    width: 3.4666666667vw;
    height: 3.4666666667vw;
  }
}
.top__guide .guide__wrap {
  margin-inline: auto 0;
  border-left: 1px solid #262626;
}
@media screen and (min-width: 897px) {
  .top__guide .guide__wrap {
    width: 94.2857142857vw;
  }
}
@media screen and (max-width: 896px) {
  .top__guide .guide__wrap {
    width: calc(100% - 10.1333333333vw);
  }
}
.top__guide .guide__head {
  padding: 5.5vw 5vw 9.0714285714vw;
  position: relative;
  border-bottom: 1px solid #262626;
  margin-bottom: 0.8571428571vw;
}
@media screen and (max-width: 896px) {
  .top__guide .guide__head {
    padding: 5.8666666667vw 2.6666666667vw 25.8666666667vw;
    margin-bottom: 3.2vw;
  }
}
.top__guide .guide__head .deco {
  position: absolute;
  width: 29.4285714286vw;
  bottom: -3.2857142857vw;
  right: 1.6428571429vw;
}
@media screen and (max-width: 896px) {
  .top__guide .guide__head .deco {
    width: 41.3333333333vw;
  }
}
.top__guide .guide__head--txtbox {
  display: flex;
  flex-direction: column;
  gap: 2.0714285714vw;
}
@media screen and (max-width: 896px) {
  .top__guide .guide__head--txtbox {
    gap: 3.7333333333vw;
  }
}
.top__guide .guide__head--txtbox .ttl {
  font-size: 8.5714285714vw;
}
@media screen and (max-width: 896px) {
  .top__guide .guide__head--txtbox .ttl {
    font-size: 14.4vw;
    text-align: center;
    margin-inline: auto;
    display: block;
    line-height: 1.1;
  }
}
@media screen and (min-width: 897px) {
  .top__guide .guide__head--txtbox .lead {
    width: 36.7142857143vw;
  }
}
.top__guide .guide__body {
  border-top: 3px solid #262626;
  margin-inline: auto 0;
}
@media screen and (min-width: 897px) {
  .top__guide .guide__body {
    width: 94.2857142857vw;
  }
}
.top__guide .guide__body--outer {
  position: relative;
  padding: 7.1428571429vw;
}
@media screen and (max-width: 896px) {
  .top__guide .guide__body--outer {
    padding: 8vw 4.2666666667vw 17.0666666667vw;
  }
}
.top__guide .guide__body--outer.type_guide02 {
  border-top: 1px solid #262626;
}
.top__guide .guide__body--outer .tag {
  position: absolute;
  width: 3.9285714286vw;
  right: calc(100% + 1px);
  top: 5vw;
}
.top__guide .guide__body--outer .tag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
@media screen and (min-width: 897px) {
  .top__guide .guide__body--outer .tag {
    height: 16.2142857143vw;
  }
}
@media screen and (max-width: 896px) {
  .top__guide .guide__body--outer .tag {
    width: 10.1333333333vw;
    height: 33.3333333333vw;
  }
}
@media screen and (min-width: 897px) {
  .top__guide .guide__body--outer .basebtn {
    display: none;
  }
}
@media screen and (max-width: 896px) {
  .top__guide .guide__body--outer .basebtn {
    margin-top: 4vw;
  }
}
.top__guide .guide__box {
  position: relative;
  display: block;
}
@media screen and (max-width: 896px) {
  .top__guide .guide__box {
    pointer-events: none;
  }
}
.top__guide .guide__box--bg {
  overflow: hidden;
}
@media screen and (max-width: 896px) {
  .top__guide .guide__box--bg {
    margin-top: 5.6vw;
  }
}
.top__guide .guide__box--bg .imgwrap {
  transition: all 0.5s;
}
@media screen and (min-width: 897px) {
  .top__guide .guide__box:hover .guide__box--bg .imgwrap {
    transform: scale(1.1);
    filter: brightness(0.7);
  }
}
.top__guide .guide__box--index {
  font-size: 1.4285714286vw;
  line-height: 1.22;
  letter-spacing: 0.07em;
  padding-bottom: 1.9285714286vw;
  border-bottom: 2px solid #262626;
  text-transform: uppercase;
  z-index: 5;
}
@media screen and (min-width: 897px) {
  .top__guide .guide__box--index {
    width: 10.7142857143vw;
    position: absolute;
    top: -2.5714285714vw;
    left: -3.0714285714vw;
  }
}
@media screen and (max-width: 896px) {
  .top__guide .guide__box--index {
    width: max-content;
    font-size: 3.7333333333vw;
  }
}
.top__guide .guide__box--txtbox {
  width: 100%;
}
@media screen and (min-width: 897px) {
  .top__guide .guide__box--txtbox {
    position: absolute;
    bottom: 3.4285714286vw;
    left: 3.4285714286vw;
  }
}
@media screen and (max-width: 896px) {
  .top__guide .guide__box--txtbox {
    margin-top: 4vw;
  }
}
.top__guide .guide__box--txtbox .ttl_h3 {
  font-size: 6.7142857143vw;
  line-height: 1.15;
}
@media screen and (min-width: 897px) {
  .top__guide .guide__box--txtbox .ttl_h3 {
    color: white;
  }
}
@media screen and (max-width: 896px) {
  .top__guide .guide__box--txtbox .ttl_h3 {
    font-size: 11.2vw;
  }
}
.top__guide .guide__box--txtbox .lead {
  margin-top: 1.1428571429vw;
}
@media screen and (min-width: 897px) {
  .top__guide .guide__box--txtbox .lead {
    color: white;
    width: 56.7142857143vw;
  }
}
@media screen and (max-width: 896px) {
  .top__guide .guide__box--txtbox .lead {
    margin-top: 4vw;
  }
}
.top__more {
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 5;
}
.top__more .more__head {
  position: relative;
  padding-block: 17.9285714286vw 8.9285714286vw;
}
@media screen and (max-width: 896px) {
  .top__more .more__head {
    padding-block: 46.1333333333vw 9.0666666667vw;
  }
}
.top__more .more__head--imgbox {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.top__more .more__head--imgbox .imgwrap {
  position: absolute;
  width: 100px;
}
.top__more .more__head--imgbox .imgwrap.img01 {
  width: 25.0714285714vw;
  top: 5.9285714286vw;
  left: 8.9285714286vw;
}
@media screen and (max-width: 896px) {
  .top__more .more__head--imgbox .imgwrap.img01 {
    width: 37.3333333333vw;
    top: 12.5333333333vw;
    left: 8vw;
  }
}
.top__more .more__head--imgbox .imgwrap.img02 {
  width: 32.6428571429vw;
  right: 0;
  top: 12.4285714286vw;
}
@media screen and (max-width: 896px) {
  .top__more .more__head--imgbox .imgwrap.img02 {
    width: 27.7333333333vw;
    height: 29.3333333333vw;
    top: 34.9333333333vw;
  }
  .top__more .more__head--imgbox .imgwrap.img02 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.top__more .more__head--imgbox .imgwrap.img03 {
  width: 30.7142857143vw;
  top: 32.5vw;
  left: 0;
}
@media screen and (max-width: 896px) {
  .top__more .more__head--imgbox .imgwrap.img03 {
    width: 26.6666666667vw;
    height: 29.3333333333vw;
    top: 72.8vw;
  }
  .top__more .more__head--imgbox .imgwrap.img03 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.top__more .more__head--imgbox .imgwrap.img04 {
  width: 34.7857142857vw;
  right: -9.7857142857vw;
  bottom: 2.2857142857vw;
}
@media screen and (max-width: 896px) {
  .top__more .more__head--imgbox .imgwrap.img04 {
    width: 45.785714vw;
    right: -13.785714vw;
    bottom: 55.285714vw;
  }
}
.top__more .more__head--txtbox {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10.7142857143vw;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 896px) {
  .top__more .more__head--txtbox {
    gap: 9.6vw;
  }
}
.top__more .more__head--txtbox .deco {
  position: absolute;
  width: 40.3571428571vw;
  top: 23.5vw;
  right: 9.5714285714vw;
}
@media screen and (max-width: 896px) {
  .top__more .more__head--txtbox .deco {
    display: none;
  }
}
.top__more .more__head--txtbox .ttl {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 2.2142857143vw;
}
.top__more .more__head--txtbox .ttl .subtxt {
  width: 3.2142857143vw;
}
@media screen and (max-width: 896px) {
  .top__more .more__head--txtbox .ttl .subtxt {
    width: 5.3333333333vw;
  }
}
.top__more .more__head--txtbox .ttl .subtxt .txt {
  width: 100%;
}
.top__more .more__head--txtbox .ttl .maintxt {
  width: 17.2142857143vw;
}
@media screen and (max-width: 896px) {
  .top__more .more__head--txtbox .ttl .maintxt {
    width: 29.3333333333vw;
  }
}
.top__more .more__head--txtbox .ttl .maintxt .txt {
  width: 100%;
}
.top__more .more__head--txtbox .lead {
  text-align: center;
}
.top__more .more__body {
  padding: 0 10vw 10vw;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3.7142857143vw;
}
@media screen and (max-width: 896px) {
  .top__more .more__body {
    gap: 2.6666666667vw;
    padding: 0 2.6666666667vw 18.1333333333vw;
  }
}
.top__more .more__body .other__wrap {
  display: flex;
}
@media screen and (min-width: 897px) {
  .top__more .more__body .other__wrap {
    justify-content: space-between;
    align-items: center;
  }
}
@media screen and (max-width: 896px) {
  .top__more .more__body .other__wrap {
    gap: 4vw;
    flex-direction: column;
  }
}
.top__more .more__body .other__box {
  position: relative;
  display: block;
}
@media screen and (min-width: 897px) {
  .top__more .more__body .other__box {
    width: 37.8571428571vw;
  }
}
.top__more .more__body .other__box--bg {
  overflow: hidden;
}
.top__more .more__body .other__box--bg .imgwrap {
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 1);
}
.top__more .more__body .other__box--txtbox {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 1.5vw;
  padding-inline: 1.4285714286vw;
}
@media screen and (max-width: 896px) {
  .top__more .more__body .other__box--txtbox {
    padding-inline: 2.6666666667vw;
    bottom: 4vw;
  }
}
.top__more .more__body .other__box--txtbox .ttl {
  display: flex;
  flex-direction: column;
  color: white;
}
.top__more .more__body .other__box--txtbox .ttl .entxt {
  font-size: 0.9285714286vw;
  letter-spacing: 0.07em;
  line-height: 1.8;
}
@media screen and (max-width: 896px) {
  .top__more .more__body .other__box--txtbox .ttl .entxt {
    font-size: 3.4666666667vw;
  }
}
.top__more .more__body .other__box--txtbox .ttl .jp {
  font-size: 3.4285714286vw;
  line-height: 1.22;
}
@media screen and (max-width: 896px) {
  .top__more .more__body .other__box--txtbox .ttl .jp {
    font-size: 11.2vw;
    line-height: 1.1;
  }
}
.top__more .more__body .other__box--txtbox .arrows {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 4;
  width: 3.2142857143vw;
  height: 3.2142857143vw;
  background: white;
  margin-bottom: 0.5714285714vw;
}
@media screen and (max-width: 896px) {
  .top__more .more__body .other__box--txtbox .arrows {
    width: 8vw;
    height: 8vw;
  }
}
.top__more .more__body .other__box--txtbox .arrows .arrow {
  transition: filter 0.35s cubic-bezier(0.25, 0.46, 0.45, 1);
  width: 0.6428571429vw;
  position: relative;
  z-index: 4;
}
@media screen and (max-width: 896px) {
  .top__more .more__body .other__box--txtbox .arrows .arrow {
    width: 1.6vw;
    display: flex;
    align-items: center;
  }
}
.top__more .more__body .other__box--txtbox .arrows .arrow img {
  width: 100%;
}
@media screen and (max-width: 896px) {
  .top__more .more__body .other__box--txtbox .arrows .arrow img {
    height: auto;
  }
}
.top__more .more__body .other__box--txtbox .arrows .arrow:nth-of-type(1) {
  transition-delay: 0s;
}
.top__more .more__body .other__box--txtbox .arrows .arrow:nth-of-type(2) {
  margin-inline: -0.2vw;
  transition-delay: 0.15s;
}
@media screen and (max-width: 896px) {
  .top__more .more__body .other__box--txtbox .arrows .arrow:nth-of-type(2) {
    margin-inline: -0.5vw;
  }
}
.top__more .more__body .other__box--txtbox .arrows .arrow:nth-of-type(3) {
  transition-delay: 0.3s;
}
.top__more .more__body .other__box--txtbox .arrows .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #009DD3;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 1);
  transition-delay: 0.3s;
}
.top__more .more__body .other__box--txtbox .arrows .bg::before {
  z-index: 2;
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  background: #008C36;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 1);
  transition-delay: 0.15s;
}
.top__more .more__body .other__box--txtbox .arrows .bg::after {
  z-index: 2;
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  background: #F77B00;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 1);
  transition-delay: 0s;
}
.top__more .more__body .other__box:hover .other__box--bg .imgwrap {
  transform: scale(1.1);
  filter: brightness(0.6);
}
@media screen and (min-width: 897px) {
  .top__more .more__body .other__box:hover .other__box--txtbox .arrows .arrow {
    filter: brightness(0) invert(1);
  }
  .top__more .more__body .other__box:hover .other__box--txtbox .arrows .bg {
    transform: scaleX(1);
    transform-origin: left;
    transition-delay: 0s;
  }
  .top__more .more__body .other__box:hover .other__box--txtbox .arrows .bg::before {
    transform: scaleX(1);
    transform-origin: left;
    transition-delay: 0.15s;
  }
  .top__more .more__body .other__box:hover .other__box--txtbox .arrows .bg::after {
    transform: scaleX(1);
    transform-origin: left;
    transition-delay: 0.3s;
  }
}
.top__more .more__body--wide .other__box {
  width: 100%;
}
@media screen and (min-width: 897px) {
  .top__more .more__body--wide .other__box--txtbox .ttl .entxt {
    font-size: 0.9285714286vw;
  }
  .top__more .more__body--wide .other__box--txtbox .ttl .jp {
    font-size: 7.5vw;
    line-height: 1.15;
    letter-spacing: -0.05em;
  }
  .top__more .more__body--wide .other__box--txtbox .arrows {
    width: 4.2857142857vw;
    height: 4.2857142857vw;
  }
  .top__more .more__body--wide .other__box--txtbox .arrows .arrow {
    width: 0.7142857143vw;
  }
}
.top__bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: white;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 1);
}
.top__bg.show {
  opacity: 1;
}

.stalker_link_box {
  position: fixed;
  top: 0;
  left: 0;
  width: 164px;
  height: 164px;
  pointer-events: none;
  transition: transform 1.05s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 111111111;
}
@media screen and (max-width: 896px) {
  .stalker_link_box {
    display: none;
  }
}
.stalker_link_box::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  background: url(../../img/top/guide/stalker_circle01.webp) no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0;
  scale: 0.5;
  transition: opacity 0.35s cubic-bezier(0.25, 0.46, 0.45, 1), scale 0.35s cubic-bezier(0.25, 0.46, 0.45, 1);
}
.stalker_link_box::after {
  content: "";
  display: block;
  position: absolute;
  width: 38px;
  height: 35px;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  background: url(../../img/top/guide/stalker_arrow01.svg) no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0;
  filter: brightness(0) invert(1);
  scale: 0.5;
  transition: opacity 0.35s cubic-bezier(0.25, 0.46, 0.45, 1), scale 0.35s cubic-bezier(0.25, 0.46, 0.45, 1);
}
.stalker_link_box.is-active::before {
  scale: 1;
  opacity: 1;
  animation: rotateTxt1 10s linear infinite forwards;
}
.stalker_link_box.is-active::after {
  scale: 1;
  opacity: 1;
}

@keyframes rotateTxt1 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

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