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

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

body,
body * {
  box-sizing: border-box;
}

em {
  font-style: normal;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

picture {
  display: inline-block;
}

/* ------------------------------------------------------------- */
/* layout                                                        */
/* ------------------------------------------------------------- */
.pc {
  display: block !important;
}
@media screen and (max-width: 599px) {
  .pc {
    display: none !important;
  }
}

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

html {
  font-size: min(1.6vw, 16px);
  overflow-x: hidden;
  scroll-behavior: smooth;
}
@media screen and (max-width: 599px) {
  html {
    font-size: 3.5vw;
  }
}
html.lock {
  overflow-y: hidden;
}

body {
  font-family: "Noto Sans JP", sans-serif !important;
  font-feature-settings: "palt";
  font-weight: 400;
  color: #000000;
  letter-spacing: 0.05em;
  line-height: 1.6;
  outline: none;
  background-color: #fff !important;
  overflow-x: hidden;
}
@media screen and (max-width: 599px) {
  body {
    min-width: auto;
  }
}

body.preload * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}

input,
textarea,
select,
button {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
}

.common-padding {
  padding: min(10vw, 100px) 0;
}
@media screen and (max-width: 599px) {
  .common-padding {
    padding: 15vw 0;
  }
}
.common-padding.first-sec {
  padding: min(5vw, 50px) 0 min(10vw, 100px);
}
@media screen and (max-width: 599px) {
  .common-padding.first-sec {
    padding: 6vw 0 15vw;
  }
}

.inner {
  width: min(95%, 1300px);
  margin: 0 auto;
}
.inner-1000 {
  width: min(95%, 1000px);
  margin: 0 auto;
}

.en {
  letter-spacing: 0;
}

.u-border {
  text-decoration: underline;
}

.indent {
  text-indent: -1em;
  padding-left: 1em;
}

/*-----------------フォントウェイト--------------------*/
.f-regular {
  font-weight: 400;
}

.f-medium {
  font-weight: 500;
}

.f-bold {
  font-weight: 700;
}

.zen {
  font-family: "Zen Old Mincho", serif;
  font-weight: 900;
  font-style: normal;
}

/*-----------------フォント色--------------------*/
.f-white {
  color: #fff;
}

.f-red {
  color: #e60012;
}

/*-----------------フォント色--------------------*/
.bg-beige {
  background-color: #f1ece4;
}

/*-----------------マージン--------------------*/
.m-center {
  display: block;
  margin: 0 auto;
}

.m-left-auto {
  display: block;
  margin-left: auto;
}

.m-right-auto {
  display: block;
  margin-right: auto;
}

/*-----------------画像--------------------*/
img.fit-cover {
  object-fit: cover;
}

img.fit-contain {
  object-fit: contain;
}

img {
  vertical-align: top;
  max-width: 100%;
}

img.pixelated {
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
}

/*-----------------flex--------------------*/
.flex {
  display: flex;
}

.flex.wrap {
  flex-wrap: wrap;
}

.flex.right {
  justify-content: flex-end;
}

.flex.center {
  justify-content: center;
}

.flex.left {
  justify-content: flex-start;
}

.flex.sp-between {
  justify-content: space-between;
}

.flex.vertical {
  flex-direction: column;
  align-items: flex-start;
}

.flex.al-center {
  align-items: center;
}

.flex.al-top {
  align-items: flex-start;
}

.flex.al-bottom {
  align-items: flex-end;
}

.flex.flex-column {
  flex-direction: column;
  align-items: center;
  justify-items: flex-start;
}

.reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 599px) {
  .reverse {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.flex.v-center {
  justify-content: center;
  align-items: center;
}

.d-flex {
  display: flex;
  gap: 1.5em;
}

.d-flex-t-block {
  display: flex;
  gap: 1.5em;
}
@media screen and (max-width: 599px) {
  .d-flex-t-block {
    flex-direction: column;
  }
}

/*-----------------Link--------------------*/
a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
  cursor: pointer;
}
a:hover, a:active {
  opacity: 0.7;
}
@media screen and (max-width: 599px) {
  a:hover, a:active {
    opacity: 1;
  }
}

a.line-link {
  color: #e60012;
  text-decoration: underline;
}

/*----------------text---------------------*/
.txt-c {
  text-align: center;
}

.txt-l {
  text-align: left;
}

.txt-r {
  text-align: right;
}

.txt-vertical {
  writing-mode: vertical-rl;
  text-orientation: upright;
  display: inline-block;
}

/*----------------margin---------------------*/
.m-block-10 {
  margin: 10px 0 !important;
}

.m-block-20 {
  margin: 20px 0 !important;
}

.m-block-30 {
  margin: 30px 0 !important;
}

.m-block-40 {
  margin: 40px 0 !important;
}

.m-block-50 {
  margin: 50px 0 !important;
}

.m-block-100 {
  margin: 100px 0 !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.mt-100 {
  margin-top: 100px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.btn {
  display: inline-block;
  color: #fff !important;
  text-decoration: none !important;
  text-align: center;
  padding: min(1.5vw, 15px) min(2.5vw, 25px) min(1.5vw, 15px) min(5vw, 50px);
  font-size: min(1.6vw, 16px);
  font-weight: 600;
  border-radius: 50px;
  background-color: #e60012;
  outline: 0;
  border: 0;
  box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 599px) {
  .btn {
    width: 55vw;
    font-size: 3.6vw;
    padding: 3.4vw 5vw 3.4vw 7vw;
  }
}
.btn::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: min(1.4vw, 14px);
  aspect-ratio: 1/1;
  background-color: #fff;
  clip-path: polygon(100% 50%, 0 0, 0 100%);
  margin-left: min(2vw, 20px);
}
@media screen and (max-width: 599px) {
  .btn::after {
    width: 2.5vw;
  }
}
.btn.yellow {
  background: rgb(174, 139, 42);
  background: linear-gradient(107deg, rgb(174, 139, 42) 19%, rgb(211, 171, 60) 100%);
}
.btn.beige {
  background: #cfa972;
}
.btn.black-solid {
  background-color: #fff;
  border: solid 2px #000;
  color: #000 !important;
}
.btn.black-solid::after {
  background-color: #000;
}
.btn.gray {
  background-color: #8a8a8a;
}
.btn.w-max {
  width: 100%;
}
.btn.w-half {
  width: 50%;
}

.more-btn {
  font-weight: 500;
  color: #fff;
  margin-top: 1.5em;
  border-radius: 50px;
  background-color: #e60012;
  padding: 5px 20px;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}
.more-btn:hover {
  opacity: 0.5;
}

.hidden-row {
  display: none;
}

.arw-link {
  font-size: min(1.4vw, 14px);
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  .arw-link {
    font-size: 3.4vw;
  }
}
.arw-link::after {
  content: "";
  display: inline-block;
  width: 26px;
  aspect-ratio: 1/1;
  background: url(../img/common/arw_link_icon.png) no-repeat center/contain;
  margin-left: 10px;
  vertical-align: middle;
}
@media screen and (max-width: 599px) {
  .arw-link::after {
    width: 6vw;
  }
}

.ttl-area {
  text-align: center;
  position: relative;
}
.ttl-area::after {
  content: "";
  display: block;
  width: min(12vw, 126px);
  aspect-ratio: 1/1;
  background: url(../img/common/ttl_area_bg.svg) no-repeat center/contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}
@media screen and (max-width: 599px) {
  .ttl-area::after {
    width: 20vw;
  }
}
.ttl-area__ttl {
  font-size: min(3.6vw, 36px);
  font-weight: 700;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 599px) {
  .ttl-area__ttl {
    font-size: 7vw;
  }
  .ttl-area__ttl.txt-vertical {
    font-size: 5.8vw;
  }
}
.ttl-area__lead {
  font-size: min(1.8vw, 18px);
  font-weight: 600;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 599px) {
  .ttl-area__lead {
    font-size: 4vw;
  }
}

.common-style {
  font-size: 14px;
  line-height: 1.7;
}
@media screen and (max-width: 599px) {
  .common-style {
    font-size: 3.4vw;
  }
}
.common-style a {
  color: #e60012;
  text-decoration: underline;
}
.common-style strong {
  font-weight: 600;
}
.common-style iframe {
  max-width: 100%;
  max-height: fit-content;
  aspect-ratio: 16/9;
}
.common-style ol {
  padding-left: 1em;
}
.common-style ol > li {
  padding-left: 1em;
  text-indent: -1.7em;
  line-height: 1.8;
  list-style-type: none;
  counter-increment: cnt;
}
.common-style ol > li::before {
  content: counter(cnt) ".";
  margin-right: 10px;
}
.common-style ul {
  padding-left: 2em;
  margin: 1em 0;
}
.common-style ul li {
  list-style-type: disc;
  padding-left: 0em;
  text-indent: 0em;
}
.common-style .inner {
  width: min(960px, 95%);
}
.common-style__ttl-area {
  font-size: min(3.5vw, 16px);
  padding: min(9vw, 70px) 0;
}
@media screen and (max-width: 599px) {
  .common-style__ttl-area {
    padding: 15vw 0;
  }
}
.common-style__ttl-area h3 {
  font-size: min(7vw, 30px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0;
  text-align: center;
  display: flex;
  align-self: center;
  justify-content: center;
  gap: min(3.4vw, 15px);
  color: #e60012;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (max-width: 599px) {
  .common-style__ttl-area h3 {
    font-size: 6vw;
    flex-direction: column;
  }
}
.common-style__ttl-area .term-tag {
  display: inline-block;
  width: fit-content;
  height: fit-content;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif !important;
  vertical-align: middle;
  margin-top: 8px;
  padding: 2px 11px;
  background-color: #e60012;
  white-space: nowrap;
}
@media screen and (max-width: 599px) {
  .common-style__ttl-area .term-tag {
    margin: 0 auto;
  }
}
.common-style__ttl-area .sub-layer {
  margin-top: 2em;
}
.common-style__ttl-area-contents {
  margin-top: 2em;
}
.common-style__ttl-area p {
  padding-block: 0.8em;
}
.common-style__page-ttl {
  font-size: 30px;
  margin-bottom: 1em;
}
.common-style__inner-ttl {
  font-size: 24px;
  font-weight: 500;
  border-bottom: 1px solid #e3e0e0;
  padding-bottom: 6px;
  margin-block: 0.8em;
}
@media screen and (max-width: 599px) {
  .common-style__inner-ttl {
    font-size: 5vw;
    line-height: 1.5;
  }
}
.common-style__inner-ttl span {
  border-bottom: 1px solid #1a1a1a;
  padding: 11px 15px;
}
.common-style__contents h3:not([class]) {
  font-size: min(6vw, 28px);
  font-weight: 500;
  text-align: center;
  margin-bottom: min(3vw, 1em);
}
@media screen and (max-width: 599px) {
  .common-style__contents h3:not([class]) {
    font-size: 6vw;
    margin-bottom: 3vw;
  }
}
.common-style__contents table {
  width: 100%;
  background-color: #dddddd;
  border-collapse: separate;
  border-spacing: 1px;
  margin: 20px auto 20px auto;
}
@media screen and (max-width: 599px) {
  .common-style__contents table {
    font-size: 3vw;
  }
}
.common-style__contents th {
  background-color: #e5eac7;
  padding: 10px 15px 10px 10px;
  text-align: center;
  vertical-align: middle;
  font-weight: bold;
  white-space: nowrap;
}
@media screen and (max-width: 599px) {
  .common-style__contents th {
    padding: 4vw 2.5vw 4vw 2vw;
  }
}
.common-style__contents td {
  background-color: #ffffff;
  padding: 10px;
  text-align: left;
  vertical-align: middle;
  word-break: auto-phrase;
}
@media screen and (max-width: 599px) {
  .common-style__contents td {
    padding: 4vw 2vw;
  }
}
.common-style__contents td a {
  color: #e60012;
  text-decoration: underline;
}
.common-style__contents p:not([class]) {
  padding-block: 1em;
}
@media screen and (max-width: 599px) {
  .common-style__contents p:not([class]) {
    padding-block: 0.5em;
  }
}
.common-style .shibu-list-table {
  width: 100%;
  background-color: #cccccc;
  border-collapse: separate;
  border-spacing: 0px;
  border-top: 1px solid #cccccc;
}
@media screen and (max-width: 599px) {
  .common-style .shibu-list-table {
    font-size: 2.7vw;
  }
}
.common-style .shibu-list-table th {
  background-color: #f8f8f8;
  padding: 10px;
  white-space: nowrap;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid #cccccc;
}
@media screen and (max-width: 599px) {
  .common-style .shibu-list-table th {
    font-size: 2.6vw;
  }
}
.common-style .shibu-list-table th a {
  color: #e60012;
  text-decoration: underline;
}
.common-style .shibu-list-table th.shibuname {
  background-color: #e5eac7;
  padding: min(1vw, 10px);
  white-space: nowrap;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .common-style .shibu-list-table th.shibuname {
    padding: 3vw 2vw;
    line-height: 1.4;
  }
}
.common-style .shibu-list-table td {
  padding: min(1vw, 10px);
  background-color: #ffffff;
  border-bottom: 1px solid #cccccc;
  vertical-align: middle;
}
@media screen and (max-width: 599px) {
  .common-style .shibu-list-table td {
    padding: 3vw 2vw;
    line-height: 1.5;
  }
}
.common-style .jigyo-pic {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.common-style .net-work__cft-table {
  margin-top: min(6vw, 60px);
}

.single {
  font-size: 16px !important;
}
.single__date {
  display: inline-block;
  margin-bottom: 5px;
}
.single__ttl {
  font-size: 24px;
  text-align: left !important;
}
.single__link-wrap {
  margin-top: 50px;
}
.single .arw-link {
  color: #000;
  text-decoration: none;
}

.header {
  z-index: 999;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
}
.header__inner {
  padding: min(1.5vw, 15px) min(2vw, 20px);
}
@media screen and (max-width: 599px) {
  .header__inner {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 3vw 2vw;
    position: fixed;
    z-index: 999;
    width: 100%;
  }
  .header__inner.top {
    position: absolute;
    background-color: unset;
  }
}
.header__pc-header {
  color: #fff;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}
.header__pc-header.hide {
  opacity: 0;
}
@media screen and (max-width: 599px) {
  .header__pc-header {
    display: none;
  }
}
@media screen and (max-width: 599px) {
  .header__logo-wrap {
    margin: 0 auto;
  }
}
.header__logo {
  width: min(20vw, 280px);
}
@media screen and (max-width: 599px) {
  .header__logo {
    position: relative;
    z-index: 999;
    width: 38vw;
  }
}
@media screen and (max-width: 599px) {
  .header__nav-list {
    margin-bottom: 5vw;
  }
}
.header__nav-link {
  height: 100%;
  padding-inline: min(1.4vw, 22px);
  font-size: min(1vw, 14px);
  gap: 2px;
  word-break: auto-phrase;
  text-align: center;
  line-height: 1.2;
}
@media screen and (max-width: 599px) {
  .header__nav-link {
    display: block;
    font-size: 4vw;
    width: 100%;
    border-bottom: solid 1px #656565;
    padding: 3vw 5vw;
    position: relative;
  }
  .header__nav-link::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    transform: rotate(45deg) translateY(-50%);
    width: 6px;
    height: 6px;
    border-width: 2px 2px 0 0;
    border-style: solid;
    border-color: #fff;
  }
}
.header__nav-item {
  gap: 10px;
}
.header__nav-item:not(:last-child) .header__nav-link {
  border-right: solid 1px #fff;
}
@media screen and (max-width: 599px) {
  .header__nav-item:not(:last-child) .header__nav-link {
    border-right: 0;
  }
}
.header__link-icon {
  max-height: 2.3vw;
  margin-block: auto;
}
.header__sns-wrap {
  gap: 10px;
}
@media screen and (max-width: 599px) {
  .header__sns-wrap {
    gap: 3vw;
    margin-right: 1vw;
  }
}
.header__sns-icon {
  display: block;
  max-width: 3.5vw;
}
@media screen and (max-width: 599px) {
  .header__sns-icon {
    max-width: 10vw;
  }
}
.header__lang-wrap {
  gap: 5px;
  margin-left: 10px;
}
@media screen and (max-width: 599px) {
  .header__lang-wrap {
    font-size: 4vw;
  }
}
.header__lang-change-btn.active {
  color: #e60012;
}
.header__sp-header {
  display: none;
  position: relative;
}
@media screen and (max-width: 599px) {
  .header__sp-header {
    display: block;
    z-index: 999;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
  }
  .header__sp-header.hide {
    opacity: 0;
  }
}
.header__hamburger {
  position: absolute;
  z-index: 999;
  top: 0;
  right: 0;
  width: 15.5vw;
  aspect-ratio: 1/1;
}
.header__hamburger span {
  display: block;
  width: 55%;
  height: 5px;
  background-color: #000;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in-out;
}
.header__hamburger span:nth-child(1) {
  top: 30%;
}
.header__hamburger span:nth-child(3) {
  top: 70%;
}
.header__hamburger.is-open span:nth-child(1) {
  transform: rotate(135deg);
  top: 50%;
  left: 25%;
}
.header__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.header__hamburger.is-open span:nth-child(3) {
  transform: rotate(-135deg);
  top: 50%;
  left: 25%;
}
.header__sp-nav {
  position: fixed;
  z-index: 998;
  width: 100%;
  height: 100vh;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.8);
  transform: translate3d(100%, 0, 0);
  transition: transform 0.5s ease-in-out;
  top: 0;
  right: 0;
}
.header__sp-nav.is-open {
  transform: translate3d(0, 0, 0);
}
.header__sp-nav::before {
  content: "";
  display: block;
  width: 100%;
  height: 16vw;
  background-color: #fff;
}

.footer__nav-area {
  color: #fff;
  padding: min(11vw, 110px) 0 min(5.5vw, 55px);
}
@media screen and (max-width: 599px) {
  .footer__nav-area {
    padding: 15vw 0 7vw;
  }
}
.footer__nav-inner {
  width: min(90%, 2000px);
  margin: 0 auto;
}
.footer__nav-left {
  width: min(40%, 427px);
}
@media screen and (max-width: 599px) {
  .footer__nav-left {
    width: 100%;
  }
}
.footer__nav-logo {
  margin-bottom: min(8vw, 80px);
  max-width: 37vw;
}
@media screen and (max-width: 599px) {
  .footer__nav-logo {
    max-width: 61vw;
    margin-bottom: 5vw;
  }
}
.footer__address {
  width: max-content;
  margin-left: auto;
  line-height: 1.8;
}
@media screen and (max-width: 599px) {
  .footer__address {
    margin-left: 0;
  }
}
.footer__top-area {
  display: flex;
  gap: 8%;
  margin-bottom: 50px;
}
@media screen and (max-width: 599px) {
  .footer__top-area {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 9vw 0;
  }
}
.footer__nav-area {
  background: url(../img/common/footer/footer_nav_area_bg.jpg) no-repeat center/cover;
}
@supports (background: url(../img/common/test_webp.webp)) {
  .footer__nav-area {
    background: url(../img/common/footer/footer_nav_area_bg.webp) no-repeat center/cover;
  }
}
.footer__nav-list {
  line-height: 2.1;
}
.footer__nav-list:not(:last-child) {
  margin-bottom: 20px;
}
.footer__nav-list ul {
  padding-left: 1em;
}
.footer__btm-area {
  text-align: right;
}
@media screen and (max-width: 599px) {
  .footer__btm-area {
    text-align: left;
  }
}
.footer__cta-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  margin-bottom: min(2vw, 20px);
}
@media screen and (max-width: 599px) {
  .footer__cta-wrap {
    margin-bottom: 4vw;
    justify-content: flex-start;
  }
}
.footer__sns-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__copy {
  font-size: min(1.2vw, 12px);
  font-weight: 500;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 599px) {
  .footer__copy {
    font-size: 2.5vw;
  }
}
.footer__support-area {
  padding: 10px;
  background-color: #fff;
}
@media screen and (max-width: 599px) {
  .footer__support-area img {
    width: 50vw;
  }
}

.news__card-list {
  display: flex;
  flex-wrap: wrap;
  gap: min(3.5vw, 44px) 3%;
}
@media screen and (max-width: 599px) {
  .news__card-list {
    flex-direction: column;
    gap: 6vw;
  }
}
.news__card {
  width: 30.3333333333%;
}
@media screen and (max-width: 599px) {
  .news__card {
    width: 100%;
  }
}
.news__card-img {
  width: 100%;
  aspect-ratio: 395/260;
  object-fit: cover;
  display: block;
  margin-bottom: min(2vw, 20px);
}
@media screen and (max-width: 599px) {
  .news__card-img {
    aspect-ratio: 480/260;
  }
}
.news__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: min(2vw, 20px);
}
.news__card-txt {
  font-size: min(1.8vw, 18px);
  letter-spacing: 0.01em;
  margin-bottom: min(1vw, 10px);
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  max-height: 3em;
}
@media screen and (max-width: 599px) {
  .news__card-txt {
    font-size: 4vw;
  }
}
.news__card-btm {
  gap: 10px;
  flex-wrap: wrap;
}
.news__card-tag {
  display: inline-block;
  color: #fff;
  padding: 1px 20px;
  background-color: #9b8a60;
  border-radius: 50px;
  font-size: min(1.3vw, 13px);
}
@media screen and (max-width: 599px) {
  .news__card-tag {
    padding: 1px 4vw;
    font-size: 3vw;
  }
}
.news__card-tag.festival {
  background-color: #c93b2a;
}
.news__card-tag.charity {
  background-color: #c93b2a;
}
.news__card-tag.backup {
  background-color: #749f44;
}
.news__card-tag.univ {
  background-color: #c93b2a;
}
.news__card-tag.senior {
  background-color: #104da2;
}
.news__card-tag.grant {
  background-color: #8887bf;
}
.news__card-tag.asakusa {
  background-color: #c93b2a;
}
.news__card-tag.lecture {
  background-color: #e9ba52;
}
.news__card-tag.abroad {
  background-color: #82949a;
}
.news__card-tag.junior {
  background-color: #104da2;
}
.news__card-tag.shogai {
  background-color: #c93b2a;
}
.news__card-tag.national {
  background-color: #c93b2a;
}
.news__card-tag.concert {
  background-color: #82949a;
}
.news__card-tag.others {
  background-color: #82949a;
}
.news__item:last-child .news__link {
  border: 0;
}
.news__item:last-child .news__date::after {
  content: none;
}
.news__list {
  width: min(100%, 1000px);
  margin: 0 auto;
}
.news__link {
  font-weight: 500;
  display: flex;
  border-bottom: solid 1px #000000;
}
@media screen and (max-width: 599px) {
  .news__link {
    flex-wrap: wrap;
    gap: 2vw 4vw;
  }
}
.news__date, .news__txt {
  padding: min(2.8vw, 28px) min(2vw, 20px);
  display: flex;
  align-items: center;
  position: relative;
}
.news__date {
  letter-spacing: 0;
}
@media screen and (max-width: 599px) {
  .news__date {
    padding: 4vw 0 0;
  }
}
.news__date::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 599px) {
  .news__date::after {
    content: none;
  }
}
.news__txt {
  flex: 1 1;
}
@media screen and (max-width: 599px) {
  .news__txt {
    font-size: 3.8vw;
    flex: auto;
    width: 100%;
    padding: 0 0 4vw;
  }
}
.news__tag {
  display: inline-block;
  height: fit-content;
  margin: auto;
  color: #fff;
  padding: 1px 20px;
  background-color: #9b8a60;
  border-radius: 50px;
  font-size: min(1.3vw, 13px);
}
@media screen and (max-width: 599px) {
  .news__tag {
    padding: 1px 4vw;
    font-size: 3vw;
    margin: 0;
    margin-top: 4vw;
  }
}
.news__tag.report1 {
  background-color: #486a00;
}
.news__tag.report2 {
  background-color: #024999;
}
.news__table {
  width: min(95%, 1000px);
  margin: 0 auto;
  font-size: min(3.3vw, 14px);
  letter-spacing: 0;
}
.news__table tr:not(:last-child) {
  border-bottom: solid 1px #000000;
}
.news__table tr:not(:last-child) td:first-child {
  border-bottom: solid 2px #000000;
}
.news__table tr td:first-child {
  width: 35%;
}
@media screen and (max-width: 599px) {
  .news__table tr td:first-child {
    width: 40%;
  }
}
.news__table tr td:last-child {
  width: 48%;
}
@media screen and (max-width: 599px) {
  .news__table tr td:last-child {
    width: 40%;
  }
}
.news__table td {
  padding: min(4vw, 24px) min(2vw, 20px);
  vertical-align: middle;
}
.news__table td a {
  color: #e60012;
  text-decoration: underline;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: min(1vw, 10px);
  text-align: center;
  margin-top: min(4vw, 40px);
}
.pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  border: solid 1px #e4e4e4;
}
.pagination .page-numbers.current {
  color: #fff;
  background-color: #e60012;
  border: solid 1px #e60012;
}
.pagination .next {
  transform: rotate(180deg);
}

.lower-mv {
  padding: min(12vw, 160px) 0 min(4vw, 70px);
  background: url(../img/common/lower_mv_bg.jpg) no-repeat center/cover;
}
@supports (background: url(../img/common/test_webp.webp)) {
  .lower-mv {
    background: url(../img/common/lower_mv_bg.webp) no-repeat center/cover;
  }
}
@media screen and (max-width: 599px) {
  .lower-mv {
    padding: 24vw 0 6vw;
  }
}
.lower-mv__ttl-wrap {
  text-align: center;
}
.lower-mv__ttl {
  width: min(30vw, 302px);
  height: min(30vw, 302px);
  margin: 0 auto;
  padding: 15px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: min(3vw, 32px);
  line-height: 1.3;
  background: url(../img/common/ttl_circle_bg.svg) no-repeat center/contain;
}
.lower-mv__ttl.en {
  text-align: center;
  letter-spacing: 0.05em;
  background: url(../img/common/ttl_circle_bg_en.svg) no-repeat center/contain;
}
.lower-mv__ttl.en.shogai {
  font-size: min(3vw, 27px);
}
@media screen and (max-width: 599px) {
  .lower-mv__ttl {
    width: 50vw;
    height: 50vw;
    font-size: 5vw;
  }
}
@media screen and (max-width: 599px) {
  .lower-mv__ttl.about {
    font-size: 4.5vw;
  }
}
@media screen and (max-width: 599px) {
  .lower-mv__ttl.archive {
    font-size: 4.5vw;
  }
}

.lower-mv-parent {
  padding-bottom: min(7vw, 60px);
  background: url(../img/common/lower_mv_bg.jpg) no-repeat center/cover;
}
@supports (background: url(../img/common/test_webp.webp)) {
  .lower-mv-parent {
    background: url(../img/common/lower_mv_bg.webp) no-repeat center/cover;
  }
}
.lower-mv-parent__ttl-wrap {
  width: min(1300px, 95%);
  margin: 0 auto;
  color: #fff;
  text-shadow: 0px 0px 10px rgb(0, 0, 0), 0px 0px 10px rgb(0, 0, 0);
  padding: min(14vw, 250px) 0 min(9vw, 150px);
  mask: url(../img/common/lower_mv_parent_mask.svg) no-repeat bottom/100%, 100%;
  background-size: cover;
}
@media screen and (max-width: 599px) {
  .lower-mv-parent__ttl-wrap {
    width: 100%;
    mask: url(../img/common/lower_mv_parent_mask_sp.svg) no-repeat bottom/100%, 100%;
    padding: 32vw 0 15vw;
  }
}
.lower-mv-parent__lead {
  font-size: 18px;
}
.lower-mv-parent__ttl {
  font-size: min(5vw, 36px);
}
@media screen and (max-width: 599px) {
  .lower-mv-parent__ttl {
    font-size: 7vw;
  }
}

.breadcrumb {
  position: absolute;
  top: min(9vw, 110px);
  padding-inline: 16px;
  font-size: min(1.4vw, 14px);
  font-weight: 500;
  z-index: 800;
  text-shadow: 0px 0px 2px rgba(241, 236, 228, 0.89), 0px 0px 2px rgba(241, 236, 228, 0.89), 0px 0px 2px rgba(241, 236, 228, 0.89), 0px 0px 2px rgba(241, 236, 228, 0.89), 0px 0px 2px rgba(241, 236, 228, 0.89);
}
@media screen and (max-width: 599px) {
  .breadcrumb {
    font-size: 2.8vw;
    top: 17vw;
    width: 100%;
    overflow-x: scroll;
  }
}
@media screen and (max-width: 599px) {
  .breadcrumb__inner {
    width: max-content;
  }
}
.breadcrumb #breadcrumbs > span {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.4375rem;
  color: rgba(0, 0, 0, 0.4);
  font-weight: 900;
}
.breadcrumb #breadcrumbs > span > span {
  color: #000000;
  font-weight: 500;
}
.breadcrumb strong {
  font-weight: 600;
}

.youtube-list {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 599px) {
  .youtube-list {
    flex-direction: column;
  }
}
.youtube-list__item:nth-child(1) {
  width: 100%;
  aspect-ratio: 16/9;
}
.youtube-list__item:nth-child(2), .youtube-list__item:nth-child(3), .youtube-list__item:nth-child(4) {
  width: calc(33.3333333333% - 10px);
  aspect-ratio: 16/9;
}
@media screen and (max-width: 599px) {
  .youtube-list__item:nth-child(1), .youtube-list__item:nth-child(2), .youtube-list__item:nth-child(3), .youtube-list__item:nth-child(4) {
    width: 100%;
    height: 71vw;
  }
}
.youtube-list iframe {
  width: 100%;
  height: 100%;
}

.error {
  text-align: center;
}
.error p {
  font-size: min(3.5vw, 16px);
  margin-bottom: min(4vw, 40px);
}

/*     フェードイン    */
.fadeIn {
  opacity: 0;
  transition-delay: 100ms;
  transition-duration: 1000ms;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.23, 0.76, 0.73, 0.97);
}

.fadeIn-up {
  opacity: 0;
  transition-delay: 100ms;
  transition-duration: 1000ms;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.23, 0.76, 0.73, 0.97);
  transform: translate(0, 50px);
}

.fadeIn-down {
  opacity: 0;
  transition-delay: 100ms;
  transition-duration: 1000ms;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.23, 0.76, 0.73, 0.97);
  transform: translate(0, -80px);
}

.fadeIn-left {
  opacity: 0;
  transition-delay: 100ms;
  transition-duration: 1000ms;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.23, 0.76, 0.73, 0.97);
  transform: translate(-50px, 0);
}

.fadeIn-right {
  opacity: 0;
  transition-delay: 100ms;
  transition-duration: 1000ms;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.23, 0.76, 0.73, 0.97);
  transform: translate(50px, 0);
}

/*     スライドイン    */
.slideIn {
  opacity: 0;
  transition-delay: 0ms;
  transition-duration: 1000ms;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.23, 0.76, 0.73, 0.97);
}

.slideIn-up {
  opacity: 1;
  transform: translate(0, 80px);
}

.slideIn-down {
  opacity: 1;
  transform: translate(0, -80px);
}

.slideIn-left {
  opacity: 1;
  transform: translate(-80px, 0);
}

.slideIn-right {
  opacity: 1;
  transform: translate(80px, 0);
}

.scroll-in {
  opacity: 1;
  transform: translate(0);
}

/*-------------------------------------*/
/* top-mv                              */
/*-------------------------------------*/
@media screen and (max-width: 599px) {
  .top-mv {
    background: url(../img/top/top-mv/top_mv_bg_sp.jpg) no-repeat center top/contain;
  }
}
.top-mv__inner {
  gap: min(5vw, 80px);
  justify-content: right;
}
@media screen and (max-width: 599px) {
  .top-mv__inner {
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding-top: 16vw;
  }
}
.top-mv__inner.en {
  gap: min(3vw, 80px);
}
.top-mv__ttl-wrap {
  justify-content: end;
  gap: min(2vw, 30px);
  margin-bottom: min(2vw, 40px);
}
@media screen and (max-width: 599px) {
  .top-mv__ttl-wrap {
    flex-direction: column;
    margin-top: 3vw;
  }
}
.top-mv__ttl-wrap.en {
  gap: min(3vw, 80px);
}
.top-mv__ttl {
  font-size: min(1.3vw, 26px);
  line-height: 1.8;
}
@media screen and (max-width: 599px) {
  .top-mv__ttl {
    font-size: 4.5vw;
    letter-spacing: -0.02em;
    line-height: 1.5;
    text-align: center;
    writing-mode: inherit;
  }
}
.top-mv__ttl.en {
  padding-left: min(8vw, 80px);
  font-size: min(1.3vw, 18px);
  width: min(28vw, 353px);
  line-height: 2;
  margin-bottom: min(2vw, 50px);
}
@media screen and (max-width: 599px) {
  .top-mv__ttl.en {
    width: 90%;
    padding: 0;
    font-size: 4.5vw;
    letter-spacing: -0.02em;
    line-height: 1.5;
    text-align: center;
  }
}
.top-mv__logo-wrap {
  width: min(5.5vw, 105px);
}
@media screen and (max-width: 599px) {
  .top-mv__logo-wrap {
    display: none;
  }
}
.top-mv__logo-wrap.en {
  width: min(20vw, 360px);
}
.top-mv__btm-area {
  gap: min(1.6vw, 16px);
}
@media screen and (max-width: 599px) {
  .top-mv__btm-area {
    display: none;
  }
}
.top-mv__btm-area.en {
  gap: min(1.5vw, 30px);
  padding-left: min(8vw, 80px);
  flex-direction: column;
}
.top-mv__sns-wrap {
  gap: min(0.8vw, 8px);
}
.top-mv__sns-link {
  display: inline-block;
  width: min(3.2vw, 50px);
  height: min(2.9vw, 42px);
}
.top-mv__lang-wrap {
  gap: min(1vw, 7px);
}
.top-mv__lang-change-btn {
  font-size: min(1.2vw, 16px);
}
.top-mv__lang-change-btn.active {
  color: #e60012;
}
.top-mv .splide {
  width: 74%;
}
@media screen and (max-width: 599px) {
  .top-mv .splide {
    width: 92%;
  }
}
.top-mv .splide__slide {
  mask: url(../img/top/top-mv/top_mv_mask.svg) no-repeat bottom left/100%, 100%;
}
@media screen and (max-width: 599px) {
  .top-mv .splide__slide {
    mask: url(../img/top/top-mv/top_mv_mask_sp.svg) no-repeat center/contain;
  }
}
.top-mv .splide__slide img {
  width: 100%;
}
@media screen and (min-width: 2100px) {
  .top-mv .splide__slide img {
    height: 790px;
    object-fit: cover;
  }
}
@media screen and (max-width: 599px) {
  .top-mv .splide__slide img {
    height: 101vw;
    object-fit: cover;
  }
}

/*-------------------------------------*/
/* top-gronavi                         */
/*-------------------------------------*/
.top-gronavi {
  padding: 20px 0;
  background: url(../img/top/top-gronavi/top_gronavi_bg.png) no-repeat center/cover;
}
@supports (background: url(../img/common/test_webp.webp)) {
  .top-gronavi {
    background: url(../img/top/top-gronavi/top_gronavi_bg.webp) no-repeat center/cover;
  }
}
@media screen and (max-width: 599px) {
  .top-gronavi {
    display: none;
  }
}
.top-gronavi .inner {
  width: min(95%, 1400px);
}
.top-gronavi__list {
  gap: 1.5%;
}
.top-gronavi__item {
  position: relative;
  width: 15.1666666667%;
}
.top-gronavi__item:hover .top-gronavi__megamenu, .top-gronavi__item:focus-within .top-gronavi__megamenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.top-gronavi__link {
  height: min(11vw, 125px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: min(1vw, 10px);
  background-color: #e7e4e4;
  border-radius: 10px;
  padding: min(2vw, 20px) 0;
  transition: all 0.3s ease-in-out;
}
.top-gronavi__link:hover {
  background-color: #fff;
  opacity: 1;
}
.top-gronavi__txt {
  font-size: min(1.3vw, 17px);
}
.top-gronavi__icon {
  max-width: 5.5vw;
  max-height: 4vw;
  aspect-ratio: 67/41;
  object-fit: contain;
}
.top-gronavi__icon.movie, .top-gronavi__icon.contact {
  margin-top: 0.2em;
}
.top-gronavi__megamenu {
  width: 300px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out, visibility 0.3s ease-out;
  position: absolute;
  top: 101%;
  left: 0;
  background: #d9d8d8;
  padding: min(1vw, 10px) min(1.3vw, 15px);
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  z-index: 100;
}
.top-gronavi__megamenu-list {
  display: block;
  width: 100%;
}
.top-gronavi__megamenu-item:not(:last-child) {
  width: 100%;
  border-bottom: solid 1px #878787;
}
.top-gronavi__megamenu-link {
  display: block;
  padding: min(1vw, 10px) min(1.3vw, 15px);
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}
.top-gronavi__megamenu-link:hover {
  background-color: #fff;
  opacity: 1;
}

/*-------------------------------------*/
/* top-topics                          */
/*-------------------------------------*/
.top-topics {
  padding: 30px 0;
  background-color: #d5c6a3;
}
@media screen and (max-width: 599px) {
  .top-topics {
    margin-top: 5vw;
  }
}
.top-topics .inner {
  display: flex;
  align-items: center;
  gap: min(7vw, 70px);
  width: min(90%, 1300px);
}
@media screen and (max-width: 599px) {
  .top-topics .inner {
    flex-direction: column;
    gap: 1vw;
  }
}
.top-topics__ttl {
  font-size: 20px;
  white-space: nowrap;
}
@media screen and (max-width: 599px) {
  .top-topics__ttl {
    font-size: 4.5vw;
  }
}
.top-topics__list {
  flex-grow: 1;
}
.top-topics__link, .top-topics__txt-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.top-topics__link {
  display: block;
  width: 100%;
  position: relative;
  padding-right: 60px;
}
@media screen and (max-width: 599px) {
  .top-topics__link {
    padding-right: 11vw;
  }
}
.top-topics__link:hover {
  text-decoration: underline;
}
.top-topics__link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: block;
  width: 50px;
  aspect-ratio: 1/1;
  background: url(../img/top/top-topics/top_topics_arw.png) no-repeat center/contain;
}
@supports (background: url(../img/common/test_webp.webp)) {
  .top-topics__link::after {
    background: url(../img/top/top-topics/top_topics_arw.webp) no-repeat center/contain;
  }
}
@media screen and (max-width: 599px) {
  .top-topics__link::after {
    width: 10vw;
  }
}
.top-topics__post-ttl {
  font-size: min(2.5vw, 22px);
  font-weight: 600;
}
@media screen and (max-width: 599px) {
  .top-topics__post-ttl {
    font-size: 4.5vw;
  }
}
.top-topics__post-except {
  font-size: min(1.6vw, 16px);
}
@media screen and (max-width: 599px) {
  .top-topics__post-except {
    font-size: 3.5vw;
  }
}

/*-------------------------------------*/
/* top-news                            */
/*-------------------------------------*/
.top-news {
  position: relative;
  overflow: hidden;
}
.top-news__brush01, .top-news__brush02 {
  position: absolute;
  z-index: -1;
  transition: opacity 2s cubic-bezier(0.17, 0.67, 0.53, 0.94), transform 2s cubic-bezier(0.17, 0.67, 0.53, 0.94);
  opacity: 0;
  backface-visibility: hidden;
  perspective: 1000;
  will-change: transform, opacity;
  max-width: 60%;
}
.top-news__brush01.scrollIn, .top-news__brush02.scrollIn {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
@media screen and (min-width: 2000px) {
  .top-news__brush01, .top-news__brush02 {
    width: auto;
  }
}
@media screen and (max-width: 599px) {
  .top-news__brush01, .top-news__brush02 {
    max-width: 80%;
  }
}
.top-news__brush01 img, .top-news__brush02 img {
  width: 100%;
}
.top-news__brush01 {
  left: 0;
  top: 10%;
  transform-origin: left;
  transform: translate3d(-10%, 0, 0);
}
@media screen and (max-width: 599px) {
  .top-news__brush01 {
    top: 7%;
  }
}
.top-news__brush02 {
  right: 0;
  bottom: 10%;
  transform-origin: right;
  transform: translate3d(10%, 0, 0);
}
.top-news .news__card-list {
  margin-top: 30px;
}
.top-news__ctr-wrap {
  margin-top: min(6vw, 60px);
}
@media screen and (max-width: 599px) {
  .top-news__ctr-wrap {
    margin-top: 8vw;
  }
}
.top-news__ctr-ttl-wrap {
  text-align: center;
  position: relative;
  padding-bottom: min(1vw, 10px);
  margin-bottom: min(1.6vw, 16px);
}
@media screen and (max-width: 599px) {
  .top-news__ctr-ttl-wrap {
    padding-bottom: 3.6vw;
    margin-bottom: 3vw;
  }
}
.top-news__ctr-ttl-wrap::after {
  content: "";
  display: block;
  width: 100vw;
  height: 1px;
  background-color: #000000;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.top-news__ctr:not(:last-child) {
  margin-bottom: min(9vw, 90px);
}
@media screen and (max-width: 599px) {
  .top-news__ctr:not(:last-child) {
    margin-bottom: 15vw;
  }
}
.top-news__ctr-ttl {
  font-size: min(1.7vw, 27px);
  font-weight: 600;
  line-height: 1.2;
}
@media screen and (max-width: 599px) {
  .top-news__ctr-ttl {
    font-size: 6vw;
    line-height: 1;
  }
}
.top-news__ctr-lead {
  font-size: 21px;
}
.top-news__news-list-inner {
  width: min(85%, 1000px);
  margin: 0 auto;
}

/*-------------------------------------*/
/* top-business                        */
/*-------------------------------------*/
.top-business {
  position: relative;
  overflow: hidden;
  padding: min(10vw, 80px) 0;
}
@media screen and (max-width: 599px) {
  .top-business {
    padding: 0 0 17vw;
  }
}
.top-business__bg {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: -1;
  transition: opacity 1.2s ease-in-out;
  opacity: 0;
  backface-visibility: hidden;
  perspective: 1000;
  will-change: opacity;
}
.top-business__bg.scrollIn {
  opacity: 1;
}
.top-business__bg-img {
  width: 100%;
}
.top-business .inner {
  width: min(85%, 1300px);
}
.top-business__card-wrap {
  gap: min(4vw, 40px) 2%;
  margin: min(6vw, 60px) auto 0;
}
@media screen and (max-width: 599px) {
  .top-business__card-wrap {
    flex-direction: column;
    margin: 8vw auto 0;
  }
}
.top-business__card {
  width: 48%;
}
@media screen and (max-width: 599px) {
  .top-business__card {
    width: 100%;
  }
}
.top-business__card-bg {
  transition: transform 0.3s ease-in-out;
}
.top-business__card-bg:hover {
  transform: scale(1.2);
}
@media screen and (max-width: 599px) {
  .top-business__card-bg img {
    height: 40vw;
    object-fit: cover;
  }
}
.top-business__card-link {
  display: inline-block;
  position: relative;
  border-radius: min(2vw, 15px);
  overflow: hidden;
  margin-bottom: min(2vw, 20px);
}
.top-business__card-link:hover {
  opacity: 1;
}
.top-business__link-txt {
  width: max-content;
  color: #fff;
  font-size: min(2.4vw, 24px);
  text-align: center;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}
@media screen and (max-width: 599px) {
  .top-business__link-txt {
    font-size: 6vw;
  }
}
.top-business__application {
  width: min(100%, 1000px);
  text-align: center;
  margin: min(8.5vw, 85px) auto 0;
  padding: min(4vw, 39px) min(4vw, 70px);
  mask: url(../img/top/top-business/top_musk.svg) no-repeat top center/100% auto add, linear-gradient(white, white) no-repeat center/100% 88% add, url(../img/top/top-business/btm_musk.svg) no-repeat bottom center/100% auto add;
  background: url(../img/top/top-business/top_business_application_bg.jpg) no-repeat center/cover;
}
@supports (background: url(../img/common/test_webp.webp)) {
  .top-business__application {
    background: url(../img/top/top-business/top_business_application_bg.webp) no-repeat center/cover;
  }
}
@media screen and (max-width: 599px) {
  .top-business__application {
    padding: 8vw 6vw;
    margin: 10vw auto 0;
    background: url(../img/top/top-business/top_business_application_bg_sp.jpg) no-repeat center/cover;
    mask: url(../img/top/top-business/top_musk_sp.svg) no-repeat top center/100% auto add, linear-gradient(white, white) no-repeat center/100% 88% add, url(../img/top/top-business/btm_musk_sp.svg) no-repeat bottom center/100% auto add;
  }
  @supports (background: url(../img/common/test_webp.webp)) {
    .top-business__application {
      background: url(../img/top/top-business/top_business_application_bg_sp.webp) no-repeat center/cover;
    }
  }
}
.top-business__application-ttl-wrap {
  color: #fff;
  text-shadow: 0px 0px 3px rgb(125, 101, 57), 0px 0px 3px rgb(125, 101, 57);
}
.top-business__application-ttl {
  font-size: min(3.5vw, 36px);
  line-height: 1;
  margin-bottom: min(1vw, 10px);
}
@media screen and (max-width: 599px) {
  .top-business__application-ttl {
    font-size: 6vw;
    margin-bottom: 2vw;
  }
}
.top-business__application-lead {
  font-size: min(1.8vw, 18px);
  margin-bottom: min(2.5vw, 30px);
}
@media screen and (max-width: 599px) {
  .top-business__application-lead {
    font-size: 3.8vw;
    margin-bottom: 4vw;
  }
}
.top-business__box {
  width: 32.3333333333%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: min(2vw, 20px);
  padding: min(2.8vw, 28px) 10px;
  border-radius: 18px;
  background-color: #fff;
  border: solid 1px #cfa972;
}
@media screen and (max-width: 599px) {
  .top-business__box {
    width: 100%;
    padding: 3vw 8vw;
  }
}
.top-business__box-wrap {
  gap: 3%;
}
@media screen and (max-width: 599px) {
  .top-business__box-wrap {
    flex-direction: column;
    gap: 3vw;
  }
}
.top-business__box-ttl {
  color: #996c33;
  font-size: min(2.2vw, 24px);
}
@media screen and (max-width: 599px) {
  .top-business__box-ttl {
    font-size: 5vw;
  }
}
.top-business__box-icon img {
  width: 100%;
  max-height: 8vw;
}
@media screen and (max-width: 599px) {
  .top-business__box-icon img {
    max-height: unset;
    height: 18vw;
  }
}
.top-business .btn {
  font-size: min(1.5vw, 15px);
  width: 100%;
  padding: min(1.5vw, 15px) min(1.5vw, 15px) min(1.5vw, 15px) min(2.5vw, 25px);
}
@media screen and (max-width: 599px) {
  .top-business .btn {
    font-size: 3.6vw;
    padding: 3.4vw 5vw 3.4vw 7vw;
  }
}

/*-------------------------------------*/
/* top-sibu                           */
/*-------------------------------------*/
.top-sibu__ttl-wrap {
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.4));
}

/*-------------------------------------*/
/* top-movie                           */
/*-------------------------------------*/
@media screen and (max-width: 599px) {
  .top-movie {
    padding: 12vw 0 15vw;
  }
}
.top-movie__ttl-wrap {
  display: block;
  width: min(100%, 1000px);
  padding: min(7.5vw, 90px) 0;
  margin: 0 auto min(12vw, 120px);
  text-align: center;
  mask: url(../img/top/top-movie/ttl_musk.svg) no-repeat 0 0/100% 100%;
  transition: transform 0.4s ease-in-out;
  background: url(../img/top/top-movie/ttl_bg.jpg) no-repeat center/cover;
}
@supports (background: url(../img/common/test_webp.webp)) {
  .top-movie__ttl-wrap {
    background: url(../img/top/top-movie/ttl_bg.webp) no-repeat center/cover;
  }
}
.top-movie__ttl-wrap:hover {
  transform: scale(1.03);
  opacity: 1;
}
@media screen and (max-width: 599px) {
  .top-movie__ttl-wrap {
    width: calc(100vw + 5%);
    margin: 0 0 25vw -5%;
    padding: 12vw 10vw;
    mask: unset;
    background: url(../img/top/top-movie/ttl_bg_sp.jpg) no-repeat center/cover;
  }
  @supports (background: url(../img/common/test_webp.webp)) {
    .top-movie__ttl-wrap {
      background: url(../img/top/top-movie/ttl_bg_sp.webp) no-repeat center/cover;
    }
  }
}
.top-movie__ttl span {
  text-shadow: 0 0 5px black;
  color: #fff;
  font-size: min(3vw, 30px);
  font-weight: 600;
  padding: 0 10px;
  border-right: solid 1px #fff;
  border-left: solid 1px #fff;
  position: relative;
}
@media screen and (max-width: 599px) {
  .top-movie__ttl span {
    font-size: 6vw;
  }
}
.top-movie__ttl span::before, .top-movie__ttl span::after {
  content: "";
  display: block;
  width: 100vw;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.top-movie__ttl span::before {
  left: 100%;
}
.top-movie__ttl span::after {
  right: 100%;
}
.top-movie__youtube-list-inner {
  width: min(100%, 836px);
  margin: 50px auto 0;
}
@media screen and (max-width: 599px) {
  .top-movie__youtube-list-inner {
    margin: 7vw auto 0;
  }
}

/*-------------------------------------*/
/* top-about                           */
/*-------------------------------------*/
.top-about {
  padding: min(8vw, 80px) 0;
  background: url(../img/top/top_about/top_about_bg.jpg) no-repeat center/cover;
}
@supports (background: url(../img/common/test_webp.webp)) {
  .top-about {
    background: url(../img/top/top_about/top_about_bg.webp) no-repeat center/cover;
  }
}
@media screen and (max-width: 599px) {
  .top-about {
    padding: 15vw 0 8vw;
  }
}
.top-about .inner {
  display: flex;
  gap: 3%;
  width: min(88%, 1110px);
}
@media screen and (max-width: 599px) {
  .top-about .inner {
    flex-direction: column-reverse;
  }
}
.top-about .front {
  position: relative;
  z-index: 2;
}
.top-about__img {
  width: min(70vw, 750px);
  margin-top: -140px;
  margin-left: -100px;
}
@media screen and (max-width: 599px) {
  .top-about__img {
    width: 65%;
    margin: -19vw -14vw 0 auto;
  }
}
.top-about__ctr {
  width: min(96%, 900px);
}
.top-about__ttl {
  font-size: min(3.6vw, 36px);
  margin-bottom: min(3vw, 30px);
}
@media screen and (max-width: 599px) {
  .top-about__ttl {
    font-size: 7vw;
    padding-left: 5vw;
  }
}
.top-about__txt-wrap {
  padding: min(5vw, 50px) 0;
  position: relative;
}
@media screen and (max-width: 599px) {
  .top-about__txt-wrap {
    padding: 8vw 5vw;
  }
}
.top-about__txt-wrap::after {
  content: "";
  display: block;
  width: 175%;
  height: 100%;
  background: rgb(255, 255, 255);
  background: linear-gradient(90deg, rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  top: 0;
  left: -27%;
  z-index: 1;
}
@media screen and (max-width: 599px) {
  .top-about__txt-wrap::after {
    width: 100%;
    left: 0%;
    background: linear-gradient(90deg, rgb(255, 255, 255) 80%, rgba(255, 255, 255, 0) 100%);
  }
}
.top-about__lead {
  font-size: min(2vw, 20px);
  font-weight: 600;
}
@media screen and (max-width: 599px) {
  .top-about__lead {
    font-size: 4vw;
  }
}
.top-about__txt {
  font-size: min(1.8vw, 18px);
  margin-bottom: min(2.4vw, 24px);
}
@media screen and (max-width: 599px) {
  .top-about__txt {
    font-size: 3.8vw;
    margin: 3vw 0 5vw;
  }
}
.top-about__table {
  width: min(100%, 500px);
  font-size: min(1.5vw, 15px);
  margin-bottom: 30px;
}
@media screen and (max-width: 599px) {
  .top-about__table {
    font-size: 3.5vw;
  }
}
.top-about__table-row {
  border-bottom: solid 1px #000;
}
@media screen and (max-width: 599px) {
  .top-about__table-row {
    flex-direction: column;
  }
}
.top-about__table dt,
.top-about__table dd {
  padding: 5px 10px;
}
.top-about__table dt {
  font-weight: 500;
  width: 66%;
  border-bottom: solid 1.5px #000;
}
@media screen and (max-width: 599px) {
  .top-about__table dt {
    font-size: 3vw;
    width: 100%;
    border: 0;
    padding: 3vw 1vw 0;
  }
}
.top-about__table dd {
  text-align: center;
  width: 30%;
}
@media screen and (max-width: 599px) {
  .top-about__table dd {
    text-align: left;
    width: 100%;
    padding: 0 1vw 3vw;
  }
}
.top-about__table.en dt {
  display: flex;
  align-items: center;
  font-weight: 500;
  width: 40%;
  border-bottom: solid 1.5px #000;
}
@media screen and (max-width: 599px) {
  .top-about__table.en dt {
    font-size: 3vw;
    width: 100%;
    border: 0;
    padding: 3vw 1vw 0;
  }
}
.top-about__table.en dd {
  text-align: left;
  width: 66%;
}
@media screen and (max-width: 599px) {
  .top-about__table.en dd {
    text-align: left;
    width: 100%;
    padding: 0 1vw 3vw;
  }
}
