@charset "UTF-8";
:root {
  --black: 0,0,0;
  --main: 0,154,255;
  --accent: 0,255,0;
  --base: 235,234,232;
  --base_gray: 229,229,229;
  --border: 205,208,214;
  --subtxt: 159,159,159;
  --darkgray: 77,77,77;
  --gray: 112,112,112;
  --gray02: 164,164,164;
  --gray03: 235,234,232;
  --gray04: 235,245,255;
  --white: 255,255,255;
  --border: 205,208,214;
  --contents_width: 1100px;
  --contents_width_wide: 1580px;
  --body_padding_side: 160px;
  --contents_width_with_padding: 1260px;
  --contents_width_wide_with_padding: 1740px;
  --sidebar_width: 250px;
  --header_height_sp: 50px;
  --header_height_pc: 50px;
  --line_height_def: 2;
  --line_height_head: 1.5;
  --line_height_tight: 1.1;
  --letter_spacing_def: 0em;
  --letter_spacing_wide: 0.02em;
  --easeInQuart: cubic-bezier(0.5, 0, 0.75, 0);
  --easeOutQuart: cubic-bezier(0.25, 1, 0.5, 1);
  --easeInOutQuart: cubic-bezier(0.76, 0, 0.24, 1);
}

/* 可変フォントサイズ（remで出力します。）
 * $min: 最小フォントサイズ（px）
 * $max: 最大フォントサイズ（px）
 * $viewportMin: 最小ビューポートサイズ（px）
 * $viewportMax: 最大ビューポートサイズ（px）
 * https://min-max-calculator.9elements.com/
================================================ */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, a, 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, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

html {
  font-size: 62.5%;
  word-break: break-word;
}

body {
  -webkit-text-size-adjust: 100%;
}

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

h1, h2, h3, h4, h5, h6 {
  word-break: break-word;
  line-break: strict;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

ul:not([class]),
ol:not([class]) {
  padding-left: 1.25em;
}

ul[class],
ol[class] {
  list-style: none;
}

span {
  font-weight: inherit;
}

blockquote, q {
  quotes: none;
}

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

a {
  color: inherit;
}
@media all and (min-width: 768px) {
  a:hover {
    text-decoration: none;
  }
}

a[class] {
  text-decoration: none;
}

ins {
  background-color: #ff9;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

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

address {
  font-style: normal;
}

sup {
  vertical-align: text-top;
  font-size: 0.75em;
}

sub {
  vertical-align: text-bottom;
  font-size: 0.75em;
}

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid rgb(var(--border));
  margin: 1em 0;
  padding: 0;
}

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

iframe {
  max-width: 100%;
}

/* form
================================================== */
input[type=text], input[type=email], input[type=tel], textarea, button, select, option {
  display: block;
  width: 100%;
  max-width: 100%;
  font-family: inherit;
  outline: none;
  border: 1px solid;
  border-radius: 0;
  background: none;
}
@media all and (max-width: 767px) {
  input[type=text], input[type=email], input[type=tel], textarea, button, select, option {
    font-size: 1.6rem;
  }
}

input[type=text], input[type=email], input[type=tel], textarea, button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
}

input[type=radio], input[type=checkbox] {
  margin: 0;
  padding: 0;
  vertical-align: middle;
}

select {
  color: inherit;
}

textarea {
  resize: vertical;
}

button {
  color: inherit;
  font-weight: normal;
  cursor: pointer;
}

/* 02_base
================================================ */
body {
  min-width: 320px;
  padding-top: var(--header_height_sp) !important;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
  color: rgb(var(--black));
  font-size: 1.3rem;
  line-height: var(--line_height_def);
  letter-spacing: var(--letter_spacing_def);
  opacity: 0;
  transition: opacity 0.3s;
}
body.is-on {
  opacity: 1;
}
@media all and (min-width: 768px) {
  body {
    font-size: 1.5rem;
    min-width: auto;
  }
  body.has-minwidth {
    min-width: var(--contents_width_with_padding);
  }
}
@media all and (min-width: 1260px) {
  body {
    padding-top: var(--header_height_pc) !important;
  }
}

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

@media all and (min-width: 768px) {
  .l-container.is-col2 {
    display: grid;
    grid-template-columns: var(--sidebar_width) auto;
    gap: 0 20px;
    width: var(--contents_width);
    margin: 0 auto;
  }
  .l-container.is-col2 .l-contents {
    flex: 1;
  }
  .l-container.is-col2 .l-sidebar {
    order: -1;
    flex-basis: var(--sidebar_width);
  }
}

/* sp <--> tb <--> pc
-------------------------------------- */
.u-media-query {
  display: none;
  font-family: "sp";
}
@media all and (min-width: 768px) {
  .u-media-query {
    font-family: "tb";
  }
}
@media all and (min-width: 1260px) {
  .u-media-query {
    font-family: "pc";
  }
}

@media all and (max-width: 1259px) {
  .u-view-pc {
    display: none !important;
  }
}

@media all and (max-width: 767px) {
  .u-view-tb {
    display: none !important;
  }
}
@media all and (min-width: 1260px) {
  .u-view-tb {
    display: none !important;
  }
}

@media all and (min-width: 768px) {
  .u-view-sp {
    display: none !important;
  }
}

@media all and (min-width: 1260px) {
  .u-view-under-tb {
    display: none !important;
  }
}

@media all and (max-width: 767px) {
  .u-view-upper-tb {
    display: none !important;
  }
}

/* overflow
-------------------------------------- */
.u-overflow-wrap {
  overflow: auto;
}
.u-overflow-wrap .u-overflow-sec {
  overflow: hidden;
}

/* text
-------------------------------------- */
.u-uppercase {
  text-transform: uppercase;
}

.u-capitarize {
  text-transform: capitarize;
}

.u-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* link
-------------------------------------- */
a.u-alpha {
  display: block;
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  a.u-alpha {
    transition: all 0.3s ease;
  }
  a.u-alpha:hover {
    opacity: 0.7;
  }
}

a.u-zoom {
  display: block;
  text-decoration: none;
}
a.u-zoom .u-zoom__img {
  display: block;
}
a.u-zoom .u-zoom__img-wrap {
  display: block;
  overflow: hidden;
}
@media (hover: hover) and (pointer: fine) {
  a.u-zoom .u-zoom__img {
    transition: all 0.3s ease;
  }
  a.u-zoom:hover .u-zoom__img {
    transform: scale(1.1);
  }
}

a.u-link-blue {
  display: block;
  text-decoration: none;
}
a.u-link-blue .u-link-blue__img-wrap {
  display: block;
  position: relative;
}
a.u-link-blue .u-link-blue__img-wrap::after {
  content: "";
  background: rgba(var(--main), 0.5);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  a.u-link-blue:hover .u-link-blue__img-wrap::after {
    opacity: 1;
  }
}

.u-iframe {
  position: relative;
  aspect-ratio: 16/9;
}
.u-iframe iframe, .u-iframe video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

/* layout
-------------------------------------- */
.u-inner {
  box-sizing: border-box;
  padding-left: 25px;
  padding-right: 25px;
}
@media all and (min-width: 768px) {
  .u-inner {
    width: 100%;
    max-width: var(--contents_width_with_padding);
    margin-right: auto;
    margin-left: auto;
    padding-left: 50px;
    padding-right: 50px;
  }
  .u-inner.is-wide {
    max-width: var(--contents_width_wide_with_padding);
  }
}
@media all and (min-width: 1260px) {
  .u-inner {
    padding-left: calc(var(--body_padding_side) / 2);
    padding-right: calc(var(--body_padding_side) / 2);
  }
}

/* font
-------------------------------------- */
.u-font-en {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  letter-spacing: 0em;
}

/* background
-------------------------------------- */
.u-back-white {
  background: rgb(var(--white));
}

/* c-archive-sec01
===================== */
.c-archive-sec01__inner {
  padding-top: 35px;
  padding-bottom: 80px;
}
@media all and (min-width: 768px) {
  .c-archive-sec01__inner {
    padding-top: 78px;
    padding-bottom: 100px;
  }
}

/*  .c-archive01
================================================== */
.c-archive01__item {
  border-bottom: 1px solid rgb(var(--border));
}
.c-archive01__item + .c-archive01__item {
  margin-top: 15px;
}
.c-archive01__item-in {
  display: block;
  padding-bottom: 16px;
  position: relative;
}
.c-archive01__item-in::before {
  content: "";
  border-top: 1px solid rgb(var(--main));
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 100% 0;
  width: 100%;
  transition: transform 0.3s cubic-bezier(0.45, 0.12, 0.04, 0.96);
  bottom: -1px;
}
@media (hover: hover) and (pointer: fine) {
  .c-archive01__item-in:hover .c-archive01__item-head {
    color: rgb(var(--main));
  }
  .c-archive01__item-in:hover::before {
    transform: scaleX(1);
    transform-origin: 0 0;
  }
}
.c-archive01__item-meta {
  display: flex;
  flex-wrap: wrap;
}
.c-archive01__item-date {
  white-space: nowrap;
  font-size: 1.1rem;
  line-height: var(--line_height_head);
  margin: 0 10px 3px 0;
}
.c-archive01__item-tag {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  vertical-align: middle;
  box-sizing: border-box;
  margin: 0 0 3px 0;
  padding: 2px 5px;
  line-height: 1.1;
  font-size: 1rem;
  background: rgb(var(--accent));
}
.c-archive01__item-head {
  display: -webkit-box;
  font-size: 1.3rem;
  line-height: 1.5;
  transition: color 0.3s ease;
}
@media all and (min-width: 1260px) {
  .c-archive01__item {
    display: grid;
    text-align: left;
    min-height: 95px;
  }
  .c-archive01__item + .c-archive01__item {
    margin-top: 0;
  }
  .c-archive01__item-in {
    display: flex;
    align-items: center;
    padding: 0;
  }
  .c-archive01__item-meta {
    flex-shrink: 0;
    margin-right: 10px;
    width: 130px;
  }
  .c-archive01__item-date {
    font-size: 1.5rem;
    margin: 0 10px 0 0;
  }
  .c-archive01__item-tag {
    margin: 0;
  }
  .c-archive01__item-head {
    display: flex;
    align-items: center;
    height: auto;
    flex: 1;
    font-size: 1.4rem;
  }
}

/*  .c-archive02
================================================== */
.c-archive02 {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 -30px;
}
.c-archive02__item {
  margin: 0 0 30px;
  width: 100%;
}
.c-archive02__in {
  color: #fff;
}
@media (hover: hover) and (pointer: fine) {
  .c-archive02__in:hover .c-archive02__img {
    border-radius: 6px;
    transform: scale(0.96);
  }
  .c-archive02__in:hover .c-archive02__img::after {
    opacity: 1;
  }
  .c-archive02__in:hover .c-archive02__img img {
    transform: scale(1.1);
  }
}
.c-archive02__img {
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}
.c-archive02__img::before {
  content: "";
  display: block;
  padding-top: 38.0519480519%;
}
.c-archive02__img::after {
  content: "";
  background: rgba(var(--main), 0.5);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.c-archive02__img img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.c-archive02__head {
  font-size: 1.8rem;
  font-size: clamp(1.8rem, 1.4270718232rem + 0.9944751381vw, 2.7rem);
  font-weight: 700;
  line-height: var(--line_height_head);
  margin-top: 0.8em;
}
.c-archive02__sub {
  font-size: 1.2rem;
  font-size: clamp(1.2rem, 1.1171270718rem + 0.2209944751vw, 1.4rem);
  font-weight: 700;
  line-height: var(--line_height_head);
  margin-top: 0.8em;
}
@media all and (max-width: 1259px) {
  .c-archive02 {
    margin: 0 auto;
    max-width: 600px;
  }
}
@media all and (min-width: 1260px) {
  .c-archive02 {
    margin: 0 -20px -90px;
  }
  .c-archive02__item {
    margin: 0 20px 90px;
    width: calc(50% - 40px);
  }
  .c-archive02__head {
    margin-top: 0.2em;
  }
  .c-archive02__sub {
    margin-top: 0;
  }
}

/*  .c-archive03
================================================== */
.c-archive03 {
  display: grid;
  gap: 15px;
}
.c-archive03__item {
  box-sizing: border-box;
  background: rgb(var(--base_gray));
  display: flex;
  flex-direction: column;
  padding: 30px 15px;
}
.c-archive03__img {
  margin: 0 auto;
  position: relative;
  width: 81%;
  max-width: 240px;
  transition: all 0.3s ease;
}
.c-archive03__img::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.c-archive03__img img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.c-archive03__area-txt {
  margin-top: 26px;
  flex: 1;
}
.c-archive03__head {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: var(--line_height_head);
  word-break: normal;
}
.c-archive03-platform {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px 2px;
  margin-top: 20px;
}
.c-archive03-platform__in {
  box-sizing: border-box;
  border: 1px solid transparent;
  background: rgb(var(--black));
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  line-height: 1;
  padding: 3px 4px 2px;
  text-align: center;
  height: 100%;
}
.c-archive03-platform__in:not(a) {
  opacity: 0.7;
}
.c-archive03-platform + .c-archive03-spec, .c-archive03-platform + .c-archive03__txt {
  border-top: 1px solid rgb(var(--border));
  margin-top: 20px;
  padding-top: 20px;
}
.c-archive03-spec {
  font-size: 1.2rem;
  line-height: var(--line_height_head);
  margin-top: 20px;
}
.c-archive03-spec__in {
  display: flex;
}
.c-archive03-spec__head::after {
  content: "：";
}
.c-archive03__txt {
  font-size: 1.2rem;
  line-height: var(--line_height_head);
  margin-top: 8px;
}
.c-archive03-btn {
  margin-top: 20px;
  width: 100%;
}
.c-archive03-btn__in {
  box-sizing: border-box;
  background: #fff;
  border: 1px solid rgb(var(--black));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: var(--line_height_head);
  min-height: 35px;
  padding: 4px 20px;
  text-align: center;
  width: 100%;
  transition: all 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .c-archive03-btn__in:hover {
    border-color: rgb(var(--main));
    background: rgb(var(--main));
    color: #fff;
  }
}
@media all and (min-width: 768px) {
  .c-archive03 {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 20px;
  }
  .c-archive03__item {
    height: 100%;
    padding: 15px 15px 25px;
  }
  .c-archive03__img {
    width: 100%;
  }
  .c-archive03-platform {
    margin-top: 12px;
    grid-template-columns: repeat(2, 1fr);
  }
  .c-archive03-platform + .c-archive03-spec, .c-archive03-platform + .c-archive03__txt {
    margin-top: 16px;
    padding-top: 16px;
  }
  .c-archive03-spec {
    margin-top: 16px;
  }
  .c-archive03-spec__in {
    display: flex;
  }
  .c-archive03-spec__head::after {
    content: "：";
  }
}

/* bg-main
------------------------------ */
.c-bg-main {
  background: rgb(var(--main));
}

/* .c-bnr01.is-large
================================================== */
.c-bnr01.is-large {
  margin: 0 -25px;
  width: auto;
  max-width: none;
}
.c-bnr01.is-large .c-bnr01__img::before {
  padding-top: 93.3333333333%;
}
.c-bnr01.is-large .c-bnr01__img.is-left img {
  -o-object-position: left center;
  object-position: left center;
}
@media all and (min-width: 768px) {
  .c-bnr01.is-large {
    margin: 0 -50px;
  }
  .c-bnr01.is-large .c-bnr01__img::before {
    padding-top: 65.1041666667%;
  }
  .c-bnr01.is-large .c-bnr01__area-txt {
    padding: 40px 50px;
  }
}
@media all and (min-width: 1260px) {
  .c-bnr01.is-large {
    margin: 0 calc(50% - var(--vw, 1vw) * 50);
  }
  .c-bnr01.is-large .c-bnr01__img::before {
    padding-top: 39.0625%;
  }
  .c-bnr01.is-large .c-bnr01__area-txt {
    padding: 90px calc((var(--vw, 1vw) * 100 - var(--contents_width)) / 2);
  }
}

/* .c-bnr01
================================================== */
.c-bnr01 {
  width: 100%;
}
.c-bnr01__in {
  border-radius: 6px;
  display: block;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.c-bnr01__in[target] .c-bnr01__btn-ico {
  height: 8px;
  width: 10px;
}
.c-bnr01__in[target] .c-bnr01__btn-ico::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 8px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10.26 8.04"><g fill="currentColor"><path d="M3.13 0h7.13v4.92H3.13z"/><path d="M7.88 8.04H0v-6h1.48v4.52h6.4v1.48Z"/></g></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10.26 8.04"><g fill="currentColor"><path d="M3.13 0h7.13v4.92H3.13z"/><path d="M7.88 8.04H0v-6h1.48v4.52h6.4v1.48Z"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
@media (hover: hover) and (pointer: fine) {
  .c-bnr01__in .c-bnr01__img-layer {
    transition: background 0.6s ease;
  }
  .c-bnr01__in.is-hover .c-bnr01__img-layer {
    background-position: 0% 100%;
  }
}
.c-bnr01__img {
  overflow: hidden;
  position: relative;
}
.c-bnr01__img::before {
  content: "";
  display: block;
  padding-top: 95.9102902375%;
}
.c-bnr01__img img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.c-bnr01__img-layer {
  background: linear-gradient(to right top, rgba(0, 100, 192, 0.9), rgba(0, 100, 192, 0.9) 20%, rgba(0, 100, 192, 0.4) 40%, rgba(11, 205, 220, 0.1) 50%, rgba(11, 205, 220, 0) 60%);
  background-position: 80% 100%;
  background-size: 200% 200%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.c-bnr01__area-txt {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.c-bnr01__en {
  color: #fff;
  font-size: clamp(2.2rem, 1.7856353591rem + 1.1049723757vw, 3.2rem);
  line-height: var(--line_height_tight);
}
.c-bnr01__txt {
  color: #fff;
  font-size: clamp(1.4rem, 1.0685082873rem + 0.8839779006vw, 2.2rem);
  line-height: var(--line_height_head);
  margin-top: 0.5em;
}
.c-bnr01__btn {
  margin-top: 16px;
  width: 200px;
  max-width: 100%;
}
.c-bnr01__btn-in {
  box-sizing: border-box;
  background: rgb(var(--main));
  border: 1px solid #fff;
  border-radius: 8px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 40px;
  overflow: hidden;
  padding: 10px 16px;
  position: relative;
  z-index: 1;
}
.c-bnr01__btn-in::before {
  content: "";
  background: linear-gradient(to right, transparent, rgb(var(--black)) 100px, rgb(var(--black)) calc(100% - 100px), transparent 100%);
  border-radius: 8px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -200%;
  width: 200%;
  z-index: -1;
}
@media (hover: hover) and (pointer: fine) {
  .c-bnr01__btn-in:hover::before {
    -webkit-animation: Btn01Bg 0.6s forwards;
    animation: Btn01Bg 0.6s forwards;
  }
  .c-bnr01__btn-in:hover .c-bnr01__img-layer {
    background-position: 0% 100%;
  }
  .c-bnr01__btn-in:hover .c-bnr01__btn-ico::before {
    -webkit-animation: Btn01Arw 0.6s cubic-bezier(0.59, 0.55, 0.52, 1.23);
    animation: Btn01Arw 0.6s cubic-bezier(0.59, 0.55, 0.52, 1.23);
  }
}
.c-bnr01__btn-txt {
  font-size: 1.3rem;
  line-height: var(--line_height_tight);
}
.c-bnr01__btn-ico {
  display: block;
  flex-shrink: 0;
  overflow: hidden;
  margin-left: 10px;
  position: relative;
  height: 13px;
  width: 12px;
}
.c-bnr01__btn-ico::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 17px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 17"><path fill="currentColor" d="M6.73 0 5.36 1.42l5.91 6.07H0v2h11.28l-5.92 6.09L6.73 17 15 8.5 6.73 0z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 17"><path fill="currentColor" d="M6.73 0 5.36 1.42l5.91 6.07H0v2h11.28l-5.92 6.09L6.73 17 15 8.5 6.73 0z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
@media (hover: hover) and (pointer: fine) {
  .c-bnr01 .c-bnr01__img-layer {
    transition: background 0.6s ease;
  }
  .c-bnr01 a.c-bnr01__in:hover .c-bnr01__img-layer {
    background-position: 0% 100%;
  }
  .c-bnr01 a.c-bnr01__in:hover .c-bnr01__btn-in::before {
    -webkit-animation: Btn01Bg 0.6s forwards;
    animation: Btn01Bg 0.6s forwards;
  }
  .c-bnr01 a.c-bnr01__in:hover .c-bnr01__btn-ico::before {
    -webkit-animation: Btn01Arw 0.6s cubic-bezier(0.59, 0.55, 0.52, 1.23);
    animation: Btn01Arw 0.6s cubic-bezier(0.59, 0.55, 0.52, 1.23);
  }
}
@media all and (max-width: 1259px) {
  .c-bnr01 {
    margin: 0 auto;
    max-width: 668px;
  }
}
@media all and (min-width: 1260px) {
  .c-bnr01__area-txt {
    padding: 7%;
  }
  .c-bnr01__btn {
    margin-top: 24px;
  }
  .c-bnr01__btn-in {
    min-height: 45px;
    padding: 10px 20px;
  }
  .c-bnr01__btn-txt {
    font-size: 1.5rem;
  }
  .c-bnr01__btn-ico {
    margin-left: 16px;
  }
}

.c-bnr01-list {
  display: grid;
  gap: 18px;
}
@media all and (min-width: 960px) {
  .c-bnr01-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 4%;
  }
  .c-bnr01-list .c-bnr01 {
    margin: 0;
    max-width: 100%;
  }
}

/* .c-bnr02
================================================== */
.c-bnr02__in {
  display: block;
}
.c-bnr02__img {
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}
.c-bnr02__img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.c-bnr02__txt {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: var(--line_height_head);
  margin-top: 8px;
  text-align: center;
  word-break: normal;
}
@media all and (min-width: 1260px) {
  .c-bnr02__txt {
    font-size: 1.5rem;
  }
}

.c-bnr02-list {
  display: grid;
  gap: 30px;
}
@media all and (min-width: 768px) {
  .c-bnr02-list {
    grid-template-columns: repeat(auto-fit, 31.33%);
    gap: 48px 3%;
  }
}

/* .c-btn01.is-green
================================================== */
.c-btn01.is-green .c-btn01__link {
  background: rgb(var(--accent));
  color: rgb(var(--black));
}
.c-btn01.is-green .c-btn01__link::before {
  background: linear-gradient(to right, transparent, rgb(var(--white)) 100px, rgb(var(--white)) calc(100% - 100px), transparent 100%);
}

/* .c-btn01.is-large
================================================== */
.c-btn01.is-large {
  width: 325px;
}
.c-btn01.is-large .c-btn01__link {
  height: 54px;
}
.c-btn01.is-large .c-btn01__txt {
  font-size: 1.5rem;
}
@media all and (min-width: 1260px) {
  .c-btn01.is-large {
    width: 400px;
  }
  .c-btn01.is-large .c-btn01__link {
    height: 64px;
    padding-inline: 30px;
  }
  .c-btn01.is-large .c-btn01__txt {
    font-size: 1.8rem;
  }
}

/* .c-btn01.is-thin-sp
================================================== */
@media all and (max-width: 767px) {
  .c-btn01.is-thin-sp .c-btn01__link {
    min-height: 46px;
  }
}

/* .c-btn01.is-white-border
================================================== */
.c-btn01.is-white-border .c-btn01__link {
  background: none;
  border: 1px solid #fff;
}
.c-btn01.is-white-border .c-btn01__link::before {
  background: transparent;
}
.c-btn01.is-white-border .c-btn01__link::after {
  background: transparent;
}

/* .c-btn01
================================================== */
@-webkit-keyframes Btn01Arw {
  0% {
    transform: scale(1, 1) translateX(0);
  }
  75% {
    transform: scale(1, 1) translateX(120%);
  }
  75.01% {
    transform: scale(1, 0) translateX(-120%);
  }
  75.02% {
    transform: scale(1, 1) translateX(-120%);
  }
  100% {
    transform: scale(1, 1) translateX(0);
  }
}
@keyframes Btn01Arw {
  0% {
    transform: scale(1, 1) translateX(0);
  }
  75% {
    transform: scale(1, 1) translateX(120%);
  }
  75.01% {
    transform: scale(1, 0) translateX(-120%);
  }
  75.02% {
    transform: scale(1, 1) translateX(-120%);
  }
  100% {
    transform: scale(1, 1) translateX(0);
  }
}
@-webkit-keyframes Btn01Bg {
  0% {
    left: -200%;
  }
  100% {
    left: 100%;
  }
}
@keyframes Btn01Bg {
  0% {
    left: -200%;
  }
  100% {
    left: 100%;
  }
}
.c-btn01 {
  margin: 26px auto 0;
  width: 200px;
  max-width: 100%;
}
.c-btn01__link {
  box-sizing: border-box;
  background: rgb(var(--main));
  border-radius: 8px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 40px;
  overflow: hidden;
  padding: 10px 16px;
  position: relative;
  z-index: 1;
}
.c-btn01__link::before {
  content: "";
  background: linear-gradient(to right, transparent, rgb(var(--black)) 100px, rgb(var(--black)) calc(100% - 100px), transparent 100%);
  border-radius: 8px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -200%;
  width: 200%;
  z-index: -1;
}
.c-btn01__link[target] .c-btn01__ico {
  height: 8px;
  width: 10px;
}
.c-btn01__link[target] .c-btn01__ico::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 8px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10.26 8.04"><g fill="currentColor"><path d="M3.13 0h7.13v4.92H3.13z"/><path d="M7.88 8.04H0v-6h1.48v4.52h6.4v1.48Z"/></g></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10.26 8.04"><g fill="currentColor"><path d="M3.13 0h7.13v4.92H3.13z"/><path d="M7.88 8.04H0v-6h1.48v4.52h6.4v1.48Z"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
@media (hover: hover) and (pointer: fine) {
  .c-btn01__link:hover .c-btn01__ico::before {
    -webkit-animation: Btn01Arw 0.6s cubic-bezier(0.59, 0.55, 0.52, 1.23);
    animation: Btn01Arw 0.6s cubic-bezier(0.59, 0.55, 0.52, 1.23);
  }
  .c-btn01__link:hover::before {
    -webkit-animation: Btn01Bg 0.6s forwards;
    animation: Btn01Bg 0.6s forwards;
  }
}
.c-btn01__txt {
  font-size: clamp(1.3rem, 1.1666666667rem + 0.1736111111vw, 1.5rem);
  line-height: var(--line_height_tight);
}
.c-btn01__ico {
  display: block;
  flex-shrink: 0;
  overflow: hidden;
  margin-left: 10px;
  position: relative;
  height: 13px;
  width: 12px;
}
.c-btn01__ico::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 17px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 17"><path fill="currentColor" d="M6.73 0 5.36 1.42l5.91 6.07H0v2h11.28l-5.92 6.09L6.73 17 15 8.5 6.73 0z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 17"><path fill="currentColor" d="M6.73 0 5.36 1.42l5.91 6.07H0v2h11.28l-5.92 6.09L6.73 17 15 8.5 6.73 0z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
@media all and (min-width: 1260px) {
  .c-btn01 {
    margin-top: 45px;
  }
  .c-btn01__link {
    min-height: 45px;
  }
  .c-btn01__ico {
    margin-left: 16px;
  }
}

.c-btn01-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, 200px);
  gap: 10px;
  justify-content: center;
}
.c-btn01-list .c-btn01 {
  margin: 0;
  width: 100%;
}
@media all and (min-width: 768px) {
  .c-btn01-list {
    gap: 15px;
  }
}

/* .c-color-black
================================================== */
.c-color-black {
  color: rgb(var(--black));
}

/* .c-color-main
================================================== */
.c-color-main {
  color: rgb(var(--main));
}

/* .c-color-subtxt
================================================== */
.c-color-subtxt {
  color: rgb(var(--subtxt));
}

/* .c-color-white
================================================== */
.c-color-white {
  color: #fff;
}

/* .c-faq01
================================================== */
.c-faq01 + .c-faq01 {
  margin-top: 4px;
}
.c-faq01__head {
  box-sizing: border-box;
  background: rgb(var(--base_gray));
  cursor: pointer;
  font-weight: 700;
  line-height: var(--line_height_head);
  padding: 18px 15px;
  position: relative;
  transition: all 0.3s ease;
}
.c-faq01__head[class*=toggle] {
  padding-right: 50px;
}
.c-faq01__head[class*=toggle] .c-faq01__head-ico {
  border-radius: 50%;
  background: rgb(var(--main));
  height: 20px;
  width: 20px;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}
.c-faq01__head[class*=toggle] .c-faq01__head-ico::before, .c-faq01__head[class*=toggle] .c-faq01__head-ico::after {
  content: "";
  background: #fff;
  display: block;
  margin-top: -1px;
  position: absolute;
  top: 50%;
  right: 5px;
  height: 2px;
  width: 10px;
  transition: all 0.3s ease;
}
.c-faq01__head[class*=toggle] .c-faq01__head-ico::before {
  transform: rotate(-90deg);
}
.c-faq01__head[class*=toggle].is-active {
  background: rgb(var(--main));
  color: #fff;
}
.c-faq01__head[class*=toggle].is-active .c-faq01__head-ico {
  background: #fff;
}
.c-faq01__head[class*=toggle].is-active .c-faq01__head-ico::before, .c-faq01__head[class*=toggle].is-active .c-faq01__head-ico::after {
  background: rgb(var(--main));
}
.c-faq01__head[class*=toggle].is-active .c-faq01__head-ico::before {
  transform: rotate(0deg);
}
.c-faq01__content {
  box-sizing: border-box;
  background: rgb(var(--gray04));
  padding: 20px;
}
@media all and (min-width: 768px) {
  .c-faq01__head {
    padding: 28px 30px;
  }
  .c-faq01__head[class*=toggle] {
    padding-right: 80px;
  }
  .c-faq01__head[class*=toggle] .c-faq01__head-ico {
    height: 24px;
    width: 24px;
    right: 26px;
  }
  .c-faq01__head[class*=toggle] .c-faq01__head-ico::before, .c-faq01__head[class*=toggle] .c-faq01__head-ico::after {
    right: 6px;
    width: 12px;
  }
  .c-faq01__content {
    padding: 40px;
  }
}

/* .c-form
================================================== */
input.c-form-parts, select.c-form-parts, textarea.c-form-parts, button.c-form-parts {
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 40px;
  padding: 5px 10px;
  font-size: 1.6rem;
  border: 1px solid #ccc;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
}
input.c-form-parts[type=file], select.c-form-parts[type=file], textarea.c-form-parts[type=file], button.c-form-parts[type=file] {
  border: none;
}

textarea.c-form-parts {
  height: 200px;
  resize: vertical;
}

select.c-form-parts {
  width: 100%;
  padding-right: 24px;
  background: no-repeat right 15px top 50%/8px;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAOCAYAAAAmL5yKAAAAzUlEQVQokZ2RsQ3CMBBFfxxaS9RXMQIlJSV0pKTMCIyQDWACYAM2wBvACFRXW3IDHTrJRlZiRyZXnHLWfz+n+xURnQEsMK26GYArgPsE3DCzUdJkmGDQSVN+aP+EL/7HqKU556zWeg5gVQBbAHth4g3CSrbA4MTMrzDU4cM599ZafwBsRmABW9GGh6qvIKIHgGXGoGHmW/ygEqJDBjZ9OGngrzsQ5oxTG6TEEtszJfwdMS4fq9xn7ZPZxocr2UDq6GGJrSTeYRHRblQA4Av4tkvSJ5wq3wAAAABJRU5ErkJggg==");
}

.c-form-parts-list {
  display: flex;
  flex-wrap: wrap;
  margin-right: -20px;
}
.c-form-parts-list .c-form-parts {
  margin-right: 20px;
}
.c-form-parts-list.is-flex-enb {
  justify-content: flex-end;
}

/* .c-form.is-default
================================================== */
.c-form.is-default th, .c-form.is-default td {
  box-sizing: border-box;
  padding: 20px 0;
  border-color: rgb(var(--border));
  border-style: solid;
  border-width: 1px 0 0;
}
.c-form.is-default th {
  font-weight: 700;
  line-height: var(--line_height_head);
  text-align: left;
}
@media all and (max-width: 767px) {
  .c-form.is-default table, .c-form.is-default thead, .c-form.is-default tbody, .c-form.is-default tr, .c-form.is-default th, .c-form.is-default td {
    display: block;
  }
  .c-form.is-default th {
    padding-bottom: 0;
  }
  .c-form.is-default td {
    border-top-width: 0;
    padding-top: 15px;
  }
}
@media all and (min-width: 768px) {
  .c-form.is-default th, .c-form.is-default td {
    padding: 30px;
    border-width: 1px 0;
  }
  .c-form.is-default th {
    background: #f4f4f6;
    padding-right: 90px;
    position: relative;
    vertical-align: top;
    width: 270px;
  }
}

/* .c-form-label
================================================== */
.c-form-label {
  background: rgb(var(--subtxt));
  color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 44px;
  height: 23px;
  margin-left: 15px;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: var(--line_height_tight);
  vertical-align: middle;
}
.c-form-label.is-required {
  background: rgb(var(--main));
}
@media all and (min-width: 768px) {
  .c-form-label {
    position: absolute;
    top: 30px;
    right: 30px;
  }
}

/* .c-form-note
================================================== */
.c-form-note {
  display: block;
  font-size: 1.3rem;
  font-weight: 400;
  color: rgb(var(--subtxt));
}

td .c-form-note {
  margin-top: 10px;
}

.mw_wp_form_confirm .c-form-note {
  display: none;
}

/* .c-form-postcode
================================================== */
.c-form-postcode {
  display: flex;
  flex-wrap: wrap;
}
.c-form-postcode__prefix {
  max-width: 26px;
  flex-basis: 26px;
  padding-top: 5px;
}
.c-form-postcode__input {
  max-width: 100px;
  flex-basis: 100px;
}

/* 確認画面
================================================ */
.mw_wp_form_confirm .c-form-postcode .c-form-postcode__prefix,
.is-confirm .c-form-postcode .c-form-postcode__prefix {
  max-width: none;
  flex-basis: 0;
  padding-top: 0;
}
.mw_wp_form_confirm .c-form-postcode .c-form-postcode__input,
.is-confirm .c-form-postcode .c-form-postcode__input {
  max-width: none;
  flex-basis: 0;
}

/* .c-form-item
================================================== */
.c-form-item {
  display: flex;
}
.c-form-item + .c-form-item {
  margin-top: 10px;
}
.c-form-item-list {
  display: flex;
}
.c-form-item-list .c-form-item + .c-form-item {
  margin-top: 0;
  margin-left: 14px;
}
.c-form-item__prefix {
  min-width: 20px;
  margin-right: 10px;
  padding-top: 5px;
}
.c-form-item__suffix {
  min-width: 20px;
  margin-left: 10px;
  padding-top: 5px;
}
.c-form-item__input {
  flex: 1;
}
.c-form-item .c-form-item__input [name*=year] {
  width: 80px;
}
.c-form-item .c-form-item__input [name*=month] {
  width: 64px;
}
.c-form-item .c-form-item__input [name*=day] {
  width: 64px;
}
@media all and (max-width: 374px) {
  .c-form-item .c-form-item__input [name*=year] {
    width: 58px;
  }
  .c-form-item .c-form-item__input [name*=month] {
    width: 50px;
    padding: 5px;
    background-position: right 8px top 50%;
  }
  .c-form-item .c-form-item__input [name*=day] {
    width: 50px;
    padding: 5px;
    background-position: right 8px top 50%;
  }
}
@media all and (min-width: 1260px) {
  .c-form-item {
    display: inline-flex;
  }
  .c-form-item + .c-form-item {
    margin: 0 0 0 20px;
  }
  .c-form-item__input {
    width: 200px;
  }
  .c-form-item-list .c-form-item__input {
    width: auto;
  }
  .c-form-item .c-form-item__input [name*=year] {
    width: 82px;
  }
  .c-form-item .c-form-item__input [name*=month] {
    width: 62px;
  }
  .c-form-item .c-form-item__input [name*=day] {
    width: 62px;
  }
}

/* 確認画面
================================================ */
.mw_wp_form_confirm .c-form-item .c-form-item__prefix,
.mw_wp_form_confirm .c-form-item .c-form-item__suffix,
.is-confirm .c-form-item .c-form-item__prefix,
.is-confirm .c-form-item .c-form-item__suffix {
  min-width: 0;
  padding-top: 0;
}
.mw_wp_form_confirm .c-form-item .c-form-item__input,
.is-confirm .c-form-item .c-form-item__input {
  width: auto;
}

/* .c-form-address
================================================== */
.c-form-address {
  margin-top: 15px;
}

/* .c-form-agreement
================================================== */
.c-form-agreement {
  margin-top: 30px;
  text-align: center;
}
.c-form-agreement__txt a {
  color: rgb(var(--main));
}
.c-form-agreement__checkbox {
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media all and (min-width: 768px) {
  .c-form-agreement {
    margin-top: 40px;
  }
}

.mw_wp_form_confirm .c-form-agreement {
  display: none;
}

/* .c-form-attention
================================================== */
.c-form-attention {
  box-sizing: border-box;
  border: 1px solid rgb(var(--border));
  height: 268px;
  overflow: auto;
}
.c-form-attention__con {
  box-sizing: border-box;
  width: 100%;
  padding: 20px;
}
.c-form-attention__head {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: var(--line_height_head);
  margin-bottom: 10px;
}
.c-form-attention-list__item {
  color: rgb(var(--subtxt));
  font-size: 1.1rem;
  line-height: var(--line_height_head);
  padding-left: 1em;
  text-indent: -1em;
}
.c-form-attention strong {
  color: rgb(var(--black));
  font-size: 1.4rem;
  font-weight: 700;
  line-height: var(--line_height_head);
  margin-bottom: 10px;
}
.c-form-attention ul, .c-form-attention ol {
  list-style: none;
  padding-left: 0;
}
.c-form-attention li {
  color: rgb(var(--subtxt));
  font-size: 1.1rem;
  line-height: var(--line_height_head);
  padding-left: 1em;
  text-indent: -1em;
}
.c-form-attention p {
  color: rgb(var(--subtxt));
  font-size: 1.1rem;
  line-height: var(--line_height_head);
  margin: 1em 0;
}
@media all and (min-width: 768px) {
  .c-form-attention {
    height: 300px;
  }
  .c-form-attention__con {
    padding: 40px;
  }
}

.mw_wp_form_confirm .c-form-attention {
  display: none;
}

/* .c-form-btn
================================================== */
.c-form-area-btn {
  margin-top: 30px;
}
@media all and (min-width: 768px) {
  .c-form-area-btn {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;
  }
}

.c-form-btn {
  box-sizing: border-box;
  background: rgb(var(--main));
  border-radius: 8px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: var(--line_height_tight);
  overflow: hidden;
  padding: 12px 45px;
  position: relative;
  text-align: center;
  z-index: 1;
  transition: background 0.3s ease;
}
.c-form-btn::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 17px;
  vertical-align: middle;
  color: #fff;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 17"><path fill="currentColor" d="M6.73 0 5.36 1.42l5.91 6.07H0v2h11.28l-5.92 6.09L6.73 17 15 8.5 6.73 0z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 17"><path fill="currentColor" d="M6.73 0 5.36 1.42l5.91 6.07H0v2h11.28l-5.92 6.09L6.73 17 15 8.5 6.73 0z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.c-form-btn.is-back {
  background-color: rgb(var(--subtxt));
}
.c-form-btn.is-back::after {
  left: 20px;
  right: auto;
  transform: translateY(-50%) scale(-1, 1);
}
.c-form-btn + .c-form-btn {
  margin-top: 10px;
}
@media (hover: hover) and (pointer: fine) {
  .c-form-btn:hover {
    background: rgb(var(--black));
  }
}
@media all and (min-width: 768px) {
  .c-form-btn {
    font-size: 1.8rem;
    width: 300px;
  }
  .c-form-btn + .c-form-btn {
    margin-top: 0;
    margin-left: 20px;
  }
}

/* .c-form .mwform-radio-field
================================================ */
.c-form .mwform-radio-field,
.c-form .c-radio {
  display: block;
}
.c-form .mwform-radio-field + .mwform-radio-field,
.c-form .mwform-radio-field + .c-radio,
.c-form .c-radio + .mwform-radio-field,
.c-form .c-radio + .c-radio {
  margin-top: 10px;
}
.c-form .mwform-radio-field label,
.c-form .c-radio label {
  display: block;
  cursor: pointer;
}
.c-form .mwform-radio-field input,
.c-form .c-radio input {
  display: none;
}
.c-form .mwform-radio-field .mwform-radio-field-text,
.c-form .mwform-radio-field .c-radio__text,
.c-form .c-radio .mwform-radio-field-text,
.c-form .c-radio .c-radio__text {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  vertical-align: top;
}
.c-form .mwform-radio-field .mwform-radio-field-text::before,
.c-form .mwform-radio-field .c-radio__text::before,
.c-form .c-radio .mwform-radio-field-text::before,
.c-form .c-radio .c-radio__text::before {
  box-sizing: border-box;
  position: absolute;
  top: 3px;
  left: 0;
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid rgb(var(--border));
  border-radius: 50%;
}
.c-form .mwform-radio-field input:checked + .mwform-radio-field-text::after,
.c-form .mwform-radio-field input:checked + .c-radio__text::after,
.c-form .c-radio input:checked + .mwform-radio-field-text::after,
.c-form .c-radio input:checked + .c-radio__text::after {
  box-sizing: border-box;
  position: absolute;
  top: 4px;
  left: 1px;
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: rgb(var(--main));
}

.c-radio-list {
  display: flex;
  flex-wrap: wrap;
}
.c-radio-list .mwform-radio-field,
.c-radio-list .c-radio {
  display: inline-block;
  margin-right: 20px;
}
.c-radio-list .mwform-radio-field + .mwform-radio-field, .c-radio-list .mwform-radio-field + .c-radio,
.c-radio-list .c-radio + .mwform-radio-field,
.c-radio-list .c-radio + .c-radio {
  margin-top: 0;
}

/* .c-form .mwform-checkbox-field
================================================ */
.c-form .mwform-checkbox-field,
.c-form .c-checkbox {
  display: block;
}
.c-form .mwform-checkbox-field + .mwform-checkbox-field,
.c-form .mwform-checkbox-field + .c-checkbox,
.c-form .c-checkbox + .mwform-checkbox-field,
.c-form .c-checkbox + .c-checkbox {
  margin-top: 10px;
}
.c-form .mwform-checkbox-field label,
.c-form .c-checkbox label {
  display: block;
  cursor: pointer;
}
.c-form .mwform-checkbox-field input,
.c-form .c-checkbox input {
  display: none;
}
.c-form .mwform-checkbox-field .mwform-checkbox-field-text,
.c-form .mwform-checkbox-field .c-checkbox__text,
.c-form .c-checkbox .mwform-checkbox-field-text,
.c-form .c-checkbox .c-checkbox__text {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  vertical-align: top;
}
.c-form .mwform-checkbox-field .mwform-checkbox-field-text::before,
.c-form .mwform-checkbox-field .c-checkbox__text::before,
.c-form .c-checkbox .mwform-checkbox-field-text::before,
.c-form .c-checkbox .c-checkbox__text::before {
  box-sizing: border-box;
  position: absolute;
  top: 3px;
  left: 0;
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid rgb(var(--border));
}
.c-form .mwform-checkbox-field input:checked + .mwform-checkbox-field-text::after,
.c-form .mwform-checkbox-field input:checked + .c-checkbox__text::after,
.c-form .c-checkbox input:checked + .mwform-checkbox-field-text::after,
.c-form .c-checkbox input:checked + .c-checkbox__text::after {
  box-sizing: border-box;
  position: absolute;
  top: 4px;
  left: 1px;
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  border: 3px solid #fff;
  background: rgb(var(--main));
}

.c-checkbox-list {
  display: flex;
  flex-wrap: wrap;
}
.c-checkbox-list .mwform-checkbox-field,
.c-checkbox-list .c-checkbox {
  display: inline-block;
  margin-right: 20px;
}
.c-checkbox-list .mwform-checkbox-field + .mwform-checkbox-field, .c-checkbox-list .mwform-checkbox-field + .c-checkbox,
.c-checkbox-list .c-checkbox + .mwform-checkbox-field,
.c-checkbox-list .c-checkbox + .c-checkbox {
  margin-top: 0;
}

/* .mw_wp_form リセット
================================================ */
.mw_wp_form .c-form .horizontal-item + .horizontal-item {
  margin-left: 0;
}

/* .c-form-thanks
================================================ */
.c-form-thanks__txt {
  margin-bottom: 10px;
}

/* .c-head01
================================================== */
.c-head01 {
  margin-bottom: 30px;
}
.c-head01.js-c-anime-elem .c-head01__label {
  -webkit-clip-path: inset(0 100% 0 0 round 50px);
  clip-path: inset(0 100% 0 0 round 50px);
  transition: -webkit-clip-path 0.6s ease;
  transition: clip-path 0.6s ease;
  transition: clip-path 0.6s ease, -webkit-clip-path 0.6s ease;
}
.c-head01.js-c-anime-elem .c-head01__label.is-delay {
  transition-delay: 1.7s;
}
.c-head01.js-c-anime-elem.is-animated .c-head01__label {
  -webkit-clip-path: inset(0 0 0 0 round 50px);
  clip-path: inset(0 0 0 0 round 50px);
}
.c-head01__label {
  box-sizing: border-box;
  background: #fff;
  border-radius: 50px;
  font-size: 1.1rem;
  line-height: var(--line_height_tight);
  margin-bottom: 6px;
  overflow: hidden;
  padding: 4px 15px 4px 52px;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-height: 1.5em;
  max-width: 100%;
}
.c-head01__label::before, .c-head01__label::after {
  content: "";
  border-radius: 50px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}
.c-head01__label::before {
  background: rgb(var(--accent));
  width: 44px;
}
.c-head01__label::after {
  background: rgb(var(--main));
  width: 34px;
}
.c-head01__en {
  font-size: 3.2rem;
  line-height: var(--line_height_head);
}
.c-head01__main {
  font-size: 1.3rem;
  font-weight: 400;
  line-height: var(--line_height_head);
}
@media all and (min-width: 1260px) {
  .c-head01 {
    margin-bottom: 40px;
  }
  .c-head01__label {
    font-size: 1.3rem;
    margin-bottom: 8px;
    padding: 2px 20px 2px 52px;
  }
  .c-head01__en {
    display: inline-block;
    font-size: 3.6rem;
    margin-right: 20px;
    vertical-align: baseline;
  }
  .c-head01__main {
    display: inline-block;
    font-size: 2rem;
    transform: translateY(-3px);
    vertical-align: baseline;
  }
}

/* .c-head02
================================================== */
.c-head02 {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: var(--line_height_head);
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 28px;
  padding-top: 25px;
  box-sizing: border-box;
}
.c-head02::before, .c-head02::after {
  content: "";
  width: 24px;
  height: 14px;
  border-radius: 50px;
  position: absolute;
  top: 0;
  left: 0;
}
.c-head02::before {
  background: rgb(var(--accent));
  left: 6px;
}
.c-head02::after {
  background: rgb(var(--main));
}
@media all and (min-width: 768px) {
  .c-head02 {
    font-size: 2.4rem;
    margin-bottom: 27px;
    padding-top: 0;
    padding-left: 45px;
  }
  .c-head02::before, .c-head02::after {
    top: 50%;
    transform: translateY(-50%);
  }
}

/* .c-head03 青背景
================================================== */
.c-head03 {
  margin-bottom: 30px;
  padding: 14px;
  border-radius: 6px;
  line-height: 1.5;
  font-weight: 600;
  font-size: 1.7rem;
}
@media all and (min-width: 768px) {
  .c-head03 {
    margin-bottom: 54px;
    padding: 23px 30px;
    font-size: 2.4rem;
  }
}

/* .c-ico
================================================== */
.c-ico {
  display: inline-block;
  vertical-align: middle;
}
.c-ico svg {
  display: block;
}

/* c-links01 年アーカイブリンク
============================================ */
.c-links01 {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -19px 44px 0;
}
.c-links01__item {
  display: inline-block;
  margin-right: 19px;
  margin: 0 19px 4px 0;
}
.c-links01__link {
  position: relative;
  display: inline-block;
  padding: 0 4px 8px 17px;
  border-bottom: 2px solid rgb(var(--black));
  font-size: 1.4rem;
  line-height: 1.1;
  font-weight: 600;
  color: rgb(var(--main));
}
.c-links01__ico {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  margin-right: 5px;
  content: "";
  display: inline-block;
  width: 12px;
  height: 13px;
  vertical-align: middle;
  color: rgb(var(--black));
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 17"><path fill="currentColor" d="M6.73 0 5.36 1.42l5.91 6.07H0v2h11.28l-5.92 6.09L6.73 17 15 8.5 6.73 0z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 17"><path fill="currentColor" d="M6.73 0 5.36 1.42l5.91 6.07H0v2h11.28l-5.92 6.09L6.73 17 15 8.5 6.73 0z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
@media all and (min-width: 768px) {
  .c-links01 {
    margin: 10px -10px 67px 0;
  }
  .c-links01__item {
    margin: 10px 30px 10px 0;
  }
  .c-links01__link {
    padding: 0 7px 6px 21px;
    font-size: 2rem;
    transition: opacity 0.3s ease;
  }
  .c-links01__link:hover {
    opacity: 0.7;
  }
  .c-links01__ico {
    top: 2px;
    width: 14px;
    height: 15px;
  }
}

/* .c-list01
================================================== */
.c-list01__item {
  position: relative;
  padding-left: 20px;
}
.c-list01__item::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgb(var(--main));
  position: absolute;
  top: 10px;
  left: 0;
}
@media all and (min-width: 768px) {
  .c-list01__item::before {
    top: 12px;
  }
}

/* .c-list02
================================================== */
.c-list02__item {
  list-style-type: none;
  counter-increment: auto-increment-numbers;
}
.c-list02__txt {
  display: flex;
}
.c-list02__txt::before {
  content: counter(auto-increment-numbers) ".";
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  white-space: nowrap;
  color: rgb(var(--main));
  letter-spacing: 0em;
  margin-right: 12px;
}
@media all and (min-width: 768px) {
  .c-list02__txt::before {
    margin-right: 14px;
  }
}

/* .c-message01
================================================== */
@-webkit-keyframes cMessageMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes cMessageMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@-webkit-keyframes messageBtn {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.25);
  }
}
@keyframes messageBtn {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.25);
  }
}
.c-message01 {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 100;
}
.c-message01.is-active .c-message01__btn {
  pointer-events: none;
}
.c-message01.is-active .c-message01__btn svg path:first-child {
  -webkit-animation: messageBtn 3s infinite;
  animation: messageBtn 3s infinite;
}
.c-message01.is-active .c-message01__close {
  transition-delay: 0.3s;
}
.c-message01:not(.is-active) .c-message01__close,
.c-message01:not(.is-active) .c-message01-balloon {
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.c-message01:not(.is-active) .c-message01__close {
  transform: translateY(20px);
}
.c-message01:not(.is-active) .c-message01-balloon {
  transform: translateY(30px);
}
.c-message01:not(.is-active) .c-message01__btn {
  pointer-events: auto;
}
.c-message01__close {
  background: rgba(var(--darkgray), 0.6);
  border: none;
  border-radius: 50%;
  color: #fff;
  height: 30px;
  width: 30px;
  margin: 0 0 0 auto;
  position: absolute;
  bottom: 102px;
  right: 6px;
  transition: all 0.3s ease, transform 0.3s cubic-bezier(0.07, 0.76, 0.19, 1.2);
}
.c-message01__close::before, .c-message01__close::after {
  content: "";
  background: #fff;
  display: block;
  height: 1px;
  width: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-32deg);
}
.c-message01__close::after {
  transform: translate(-50%, -50%) rotate(32deg);
}
.c-message01__btn {
  border: none;
  padding: 0;
  height: 57px;
  width: 58px;
  transform-origin: bottom right;
  transition: transform 0.3s;
}
.c-message01__btn svg {
  display: block;
  height: 100%;
  width: 100%;
}
.c-message01-balloon {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  height: 40px;
  width: 347px;
  max-width: calc(100% - 20px);
  margin: 0 -46px 56px 0;
  padding: 8px 12px 14px 4px;
  position: relative;
  transition: all 0.3s ease, transform 0.3s cubic-bezier(0.07, 0.76, 0.19, 1.5);
}
.c-message01-balloon__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.c-message01-balloon__bg svg {
  display: block;
}
.c-message01-balloon__ico {
  height: 14px;
  width: 18px;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-40%, -50%) scale(2);
}
.c-message01-balloon__ico svg {
  display: block;
  height: 100%;
  width: 100%;
}
.c-message01-list {
  height: 100%;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.c-message01-list::before {
  content: "";
  background: linear-gradient(to right, white, rgba(255, 255, 255, 0));
  position: absolute;
  height: 100%;
  left: 0;
  width: 10px;
  z-index: 1;
}
.c-message01-list__item {
  display: flex;
  align-items: center;
  overflow: hidden;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateY(30px);
  transition: transform 0.3s ease;
}
.c-message01-list__item.is-active {
  opacity: 1;
  transform: translateY(0);
}
.c-message01-list__item.is-active .c-message01-list__item-txt {
  -webkit-animation: cMessageMarquee 10s 3s forwards linear;
  animation: cMessageMarquee 10s 3s forwards linear;
}
.c-message01-list__item-txt {
  font-size: 1.3rem;
  line-height: 1;
  white-space: nowrap;
  padding-left: 10px;
  padding-right: 3em;
  padding-bottom: 4px;
}
.c-message01-list__item-txt-link {
  position: relative;
  text-decoration: none;
  transition: all 0.3s ease;
}
.c-message01-list__item-txt-link::before {
  content: "";
  border-top: 1px solid rgb(var(--main));
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 100% 0;
  width: 100%;
  transition: transform 0.3s cubic-bezier(0.45, 0.12, 0.04, 0.96);
  bottom: -1px;
}
@media (hover: hover) and (pointer: fine) {
  .c-message01-list__item-txt-link:hover {
    color: rgb(var(--main));
  }
  .c-message01-list__item-txt-link:hover::before {
    transform: scaleX(1);
    transform-origin: 0 0;
  }
}

/*  .c-modal01
================================================== */
@-webkit-keyframes ModalFadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes ModalFadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes ModalFadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes ModalFadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.c-modal01 {
  display: none;
  position: relative;
  z-index: 3000;
}
.c-modal01.is-open {
  display: block;
}
.c-modal01[aria-hidden=false] .c-modal01__overlay {
  -webkit-animation: ModalFadein 0.3s cubic-bezier(0, 0, 0.2, 1);
  animation: ModalFadein 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.c-modal01[aria-hidden=true] .c-modal01__overlay {
  -webkit-animation: ModalFadeout 0.3s cubic-bezier(0, 0, 0.2, 1);
  animation: ModalFadeout 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.c-modal01__overlay {
  box-sizing: border-box;
  padding: 60px 25px 120px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 22, 47, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.c-modal01__container {
  position: relative;
  width: 100%;
  max-width: 1100px;
}
.c-modal01__close {
  background: rgb(var(--main));
  border: none;
  border-radius: 50%;
  color: #fff;
  height: 40px;
  width: 40px;
  margin: 0 0 0 auto;
  position: absolute;
  top: -20px;
  right: -20px;
  z-index: 1;
}
.c-modal01__close::before, .c-modal01__close::after {
  content: "";
  background: #fff;
  display: block;
  height: 2px;
  width: 14px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-32deg);
}
.c-modal01__close::after {
  transform: translate(-50%, -50%) rotate(32deg);
}
.c-modal01__content {
  box-sizing: border-box;
  position: relative;
}
@media all and (min-width: 1260px) {
  .c-modal01__overlay {
    padding: 60px 150px;
  }
  .c-modal01__close {
    height: 60px;
    width: 60px;
    top: -25px;
    right: -25px;
    transition: 0.3s ease;
  }
}
@media (min-width: 1260px) and (hover: hover) and (pointer: fine) {
  .c-modal01__close:hover {
    background-color: #000;
    transition: 0.3s ease;
  }
}
@media all and (min-width: 1260px) {
  .c-modal01__close::before, .c-modal01__close::after {
    width: 20px;
  }
}

/* .c-pager01
================================================ */
.c-pager01 {
  overflow: hidden;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
}
.c-pager01 li {
  margin: 0 2px 4px;
}
.c-pager01 li.current span {
  color: #fff;
  border-color: rgb(var(--main));
  background-color: rgb(var(--main));
}
.c-pager01 li a,
.c-pager01 li span {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  box-sizing: border-box;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  line-height: 1.1;
  font-size: 1.1rem;
  text-decoration: none;
  border: 1px solid;
  border-radius: 50%;
}
.c-pager01 li.pages {
  display: none;
}
.c-pager01 li.last a:after, .c-pager01 li.first a:after {
  position: absolute;
  top: calc(50% - 7px);
  left: calc(50% - 4px);
  content: "";
  display: inline-block;
  width: 7px;
  height: 13px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 3.6 7"><path d="M.51 7 0 6.42 2.57 3.5 0 .58.51 0 3.6 3.5.51 7Z" fill="currentColor" /></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 3.6 7"><path d="M.51 7 0 6.42 2.57 3.5 0 .58.51 0 3.6 3.5.51 7Z" fill="currentColor" /></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.c-pager01 li.first a:after {
  transform: translateX(-50%) rotate(180deg);
}
.c-pager01 li.last a:after {
  left: calc(50% + 1px);
}
.c-pager01 li.first a, .c-pager01 li.last a, .c-pager01 li.previous a, .c-pager01 li.next a {
  display: block;
  position: relative;
  min-width: 10px;
  max-width: 20px;
  border: none;
  text-indent: -999px;
  overflow: hidden;
}
.c-pager01 li.first a:before, .c-pager01 li.last a:before, .c-pager01 li.previous a:before, .c-pager01 li.next a:before {
  position: absolute;
  top: calc(50% - 7px);
  left: 50%;
  transform: translateX(-50%);
  content: "";
  display: inline-block;
  width: 7px;
  height: 13px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 3.6 7"><path d="M.51 7 0 6.42 2.57 3.5 0 .58.51 0 3.6 3.5.51 7Z" fill="currentColor" /></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 3.6 7"><path d="M.51 7 0 6.42 2.57 3.5 0 .58.51 0 3.6 3.5.51 7Z" fill="currentColor" /></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.c-pager01 li.first a:before, .c-pager01 li.previous a:before {
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
}
.c-pager01 li.previous {
  margin-right: 20px;
}
.c-pager01 li.next {
  margin-left: 20px;
}
.c-pager01 li.extend span {
  min-width: 16px;
  padding: 0 4px 10px;
  border: none;
  font-weight: 700;
  font-size: 1.6rem;
  vertical-align: middle;
}
@media all and (min-width: 768px) {
  .c-pager01 {
    margin-bottom: 40px;
  }
  .c-pager01 li a,
.c-pager01 li span {
    padding: 0 14px;
    min-width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  .c-pager01 li a {
    transition: all 0.3s ease;
  }
  .c-pager01 li a:hover {
    color: rgb(var(--main));
  }
  .c-pager01 li.first a:hover, .c-pager01 li.last a:hover, .c-pager01 li.previous a:hover, .c-pager01 li.next a:hover {
    opacity: 0.7;
  }
}

/*  .c-pager02
================================================== */
.c-pager02 {
  position: relative;
  overflow: hidden;
  margin-top: 30px;
  line-height: 1;
}
.c-pager02 a {
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  height: 50px;
  padding: 15px;
  border: 1px solid;
  text-decoration: none;
}
.c-pager02__previous, .c-pager02__next {
  width: calc(50% - 10px);
}
.c-pager02__previous {
  float: left;
}
.c-pager02__previous a {
  justify-content: flex-start;
  padding-left: 30px;
}
.c-pager02__next {
  float: right;
}
.c-pager02__next a {
  justify-content: flex-end;
  padding-right: 30px;
}
.c-pager02__all {
  width: 100%;
  clear: both;
  padding-top: 20px;
}
.c-pager02__all a {
  justify-content: center;
}
@media all and (min-width: 768px) {
  .c-pager02 a {
    transition: all 0.3s ease;
  }
  .c-pager02 a:hover {
    background: rgb(var(--black));
    color: #fff;
    border-color: rgb(var(--black));
  }
}

/*  .c-search01
================================================== */
.c-search01 {
  display: flex;
  justify-content: space-between;
}
.c-search01__input {
  flex-basis: calc(100% - 55px);
  max-width: calc(100% - 55px);
}
.c-search01__input input {
  box-sizing: border-box;
  background: #fff;
  display: block;
  height: 50px;
  padding: 0 15px;
  font-size: 1.6rem;
}
.c-search01__btn {
  box-sizing: border-box;
  flex-basis: 50px;
  max-width: 50px;
  height: 50px;
}
.c-search01__btn input, .c-search01__btn button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: rgb(var(--main));
  border: 0;
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  height: 100%;
  width: 100%;
  font-size: 1.2rem;
  font-weight: 700;
  transition: opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .c-search01__btn input:hover, .c-search01__btn button:hover {
    opacity: 0.7;
  }
}
@media all and (min-width: 768px) {
  .c-search01__input {
    flex-basis: calc(100% - 130px);
    max-width: calc(100% - 130px);
  }
  .c-search01__btn {
    flex-basis: 120px;
    max-width: 120px;
  }
  .c-search01__btn input, .c-search01__btn button {
    font-size: 1.7rem;
    padding-bottom: 4px;
  }
}

/* .c-search02
================================================== */
.c-search02-term-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -4px -4px 0;
}
.c-search02-term-list .c-search02-term {
  margin: 0 4px 4px 0;
}
.c-search02-term-list .c-search02-term + .c-search02-term {
  margin-top: 0;
}
.c-search02-term {
  display: block;
}
.c-search02-term + .c-search02-term {
  margin-top: 4px;
}
.c-search02-term__label {
  display: block;
  cursor: pointer;
}
.c-search02-term__label input {
  border-width: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
}
.c-search02-term__label span {
  box-sizing: border-box;
  background: rgb(var(--subtxt));
  border-radius: 50px;
  color: #fff;
  display: block;
  padding: 4px 15px;
  font-size: 1.1rem;
  line-height: var(--line_height_head);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.3s ease;
}
.c-search02-term__label input:checked + span {
  background: rgb(var(--main));
}
@media all and (min-width: 768px) {
  .c-search02-term-list {
    margin: 0 -6px -8px 0;
  }
  .c-search02-term-list .c-search02-term {
    margin: 0 6px 8px 0;
  }
  .c-search02-term + .c-search02-term {
    margin-top: 8px;
  }
  .c-search02-term__label span {
    padding: 4px 20px;
    font-size: 1.4rem;
  }
}

/* c-single01
============================================= */
.c-single01__inner {
  padding-top: 40px;
  padding-bottom: 80px;
}
.c-single01__eyecatch {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 10px;
}
.c-single01__link {
  padding: 15px;
  background: #ebeae8;
  text-align: center;
  line-height: 1.5;
}
.c-single01__link-head {
  line-height: 1.5;
  font-weight: 600;
  font-size: 1.3rem;
}
.c-single01__link-url-in {
  display: inline-block;
  text-decoration: underline;
  line-height: 1.5;
  color: rgb(var(--main));
  font-size: 1.2rem;
}
.c-single01__link-url-in[target=_blank]:after {
  content: "";
  display: inline-block;
  margin-left: 10px;
  content: "";
  display: inline-block;
  width: 10px;
  height: 8px;
  vertical-align: middle;
  color: rgb(var(--black));
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10.26 8.04"><g fill="currentColor"><path d="M3.13 0h7.13v4.92H3.13z"/><path d="M7.88 8.04H0v-6h1.48v4.52h6.4v1.48Z"/></g></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10.26 8.04"><g fill="currentColor"><path d="M3.13 0h7.13v4.92H3.13z"/><path d="M7.88 8.04H0v-6h1.48v4.52h6.4v1.48Z"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
@media all and (min-width: 768px) {
  .c-single01__inner {
    padding-top: 80px;
    padding-bottom: 147px;
  }
  .c-single01__eyecatch {
    margin-bottom: 10px;
  }
  .c-single01__link {
    padding: 31px;
  }
  .c-single01__link-head {
    display: inline-block;
    margin: 0 20px;
    font-size: 1.8rem;
  }
  .c-single01__link-url {
    display: inline-block;
  }
  .c-single01__link-url-in {
    font-size: 1.6rem;
  }
  .c-single01__link-url-in[target=_blank]:after {
    width: 15px;
    height: 12px;
    margin-left: 20px;
  }
}

/* c-single01-header
============================================ */
.c-single01-header {
  position: relative;
  margin-bottom: 30px;
}
.c-single01-header__in {
  display: flex;
  flex-direction: column;
}
.c-single01-header__meta {
  order: -1;
  margin-bottom: 30px;
}
.c-single01-header__cat {
  display: inline-block;
  margin: 0 0 -5px 0;
}
.c-single01-header__cat-item {
  display: inline-block;
  margin: 0 5px 5px 0;
  padding: 1px 10px;
  border-radius: 9999px;
  line-height: 1.5;
}
.c-single01-header__date {
  display: block;
  font-size: 1.5rem;
  text-align: center;
}
.c-single01-header .c-head01__main {
  margin: 10px 0 9px;
  font-size: 1.8rem;
  text-align: center;
}
@media all and (min-width: 768px) {
  .c-single01-header__in {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .c-single01-header__meta {
    order: unset;
    margin-bottom: 0;
  }
  .c-single01-header__cat-item {
    padding: 4px 20px;
    font-size: 1.4rem;
  }
  .c-single01-header__date {
    margin-bottom: 0;
  }
  .c-single01-header .c-head01__main {
    display: block;
    margin: 20px 0 9px;
    font-size: 3rem;
  }
  .c-single01-header .c-head01__label {
    margin-bottom: 0;
  }
}

/* c-single01-info
---------------------------- */
.c-single01-info {
  margin-top: 30px;
}
.c-single01-info__sec + .c-single01-info__sec {
  margin-top: 50px;
}
.c-single01-info__sec-head {
  position: relative;
  margin-bottom: 12px;
  padding-top: 22px;
  line-height: 1.5;
  font-weight: 600;
  font-size: 1.6rem;
}
.c-single01-info__sec-head::before, .c-single01-info__sec-head::after {
  content: "";
  border-radius: 50px;
  position: absolute;
  top: 0;
  left: 0;
  height: 14px;
}
.c-single01-info__sec-head::before {
  background: rgb(var(--accent));
  width: 30px;
}
.c-single01-info__sec-head::after {
  background: rgb(var(--main));
  width: 24px;
}
@media all and (min-width: 768px) {
  .c-single01-info {
    margin-top: 50px;
  }
  .c-single01-info__sec + .c-single01-info__sec {
    margin-top: 77px;
  }
  .c-single01-info__sec-head {
    margin-bottom: 15px;
    padding: 0 0 0 45px;
    font-size: 2.4rem;
  }
  .c-single01-info__sec-head::before, .c-single01-info__sec-head::after {
    top: 8px;
  }
}

/* c-single01-note
------------------------------- */
.c-single01-note {
  padding: 20px 0;
}
.c-single01-note__txt {
  line-height: 1.7;
  font-size: 1.1rem;
}
@media all and (min-width: 768px) {
  .c-single01-note {
    padding: 25px 0;
  }
  .c-single01-note__txt {
    line-height: 1.5;
    font-size: 1.3rem;
  }
}

/* c-single01-crop-contact
------------------------------- */
.c-single01-crop-contact {
  border: 1px solid rgb(var(--border));
  padding: 10px;
  margin-top: 38px;
}
.c-single01-crop-contact__lead {
  font-size: 1.6rem;
  color: #fff;
  text-align: center;
  background: #808080;
  padding: 12px;
  margin-bottom: 12px;
  line-height: 1.1;
}
.c-single01-crop-contact__info {
  display: flex;
  flex-direction: column;
}
.c-single01-crop-contact__name {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.6;
}
.c-single01-crop-contact__mail {
  text-align: center;
  font-size: 1.5rem;
  text-decoration: underline;
  color: rgb(var(--main));
  font-weight: 700;
}
@media all and (min-width: 768px) {
  .c-single01-crop-contact {
    margin-top: 100px;
    padding: 20px;
  }
  .c-single01-crop-contact__name {
    font-size: 2.1rem;
    padding: 15px;
    margin-bottom: 25px;
  }
  .c-single01-crop-contact__info {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  .c-single01-crop-contact__name {
    font-size: 1.8rem;
    margin-right: 30px;
    margin-bottom: 0;
  }
  .c-single01-crop-contact__mail {
    font-size: 1.8rem;
    transition: all 0.3s ease;
  }
  .c-single01-crop-contact__mail:hover {
    text-align: none;
    opacity: 0.7;
  }
}

/* .c-single01-sns
------------------------------- */
.c-single01-sns {
  margin-top: 30px;
}
.c-single01-sns__txt {
  font-size: 1.5rem;
  color: rgb(var(--main));
  font-weight: 700;
  line-height: 1.5;
}
.c-single01-sns__list {
  margin-top: 15px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}
@media all and (min-width: 768px) {
  .c-single01-sns {
    margin-top: 10px;
    padding: 20px;
    border: 1px solid rgb(var(--main));
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: center;
  }
  .c-single01-sns__txt {
    font-size: 1.8rem;
  }
  .c-single01-sns__list {
    margin-top: 0;
    gap: 10px;
  }
  .c-single01-sns__item-in {
    transition: all 0.3s ease;
  }
  .c-single01-sns__item-in:hover {
    opacity: 0.7;
  }
}

/* c-single02
============================================= */
.c-single02-content::after {
  content: "";
  display: block;
  clear: both;
}
.c-single02-content *:first-child {
  margin-top: 0;
}
.c-single02-content *:last-child {
  margin-bottom: 0;
}
.c-single02-content h1,
.c-single02-content h2,
.c-single02-content h3,
.c-single02-content h4,
.c-single02-content ul,
.c-single02-content ol {
  clear: both;
}
.c-single02-content p {
  margin: 2em 0;
}
.c-single02-content a {
  color: rgb(var(--main));
}
.c-single02-content strong {
  font-weight: 600;
}
.c-single02-content ol, .c-single02-content ul {
  margin: 1em 0;
}

/* .c-single-content
================================================== */
.c-single-content {
  overflow: hidden;
  padding-bottom: 20px;
}
.c-single-content:after {
  content: "";
  display: block;
  clear: both;
}
.c-single-content *:first-child {
  margin-top: 0;
}
.c-single-content *:last-child:not(img) {
  margin-bottom: 0;
}
.c-single-content h1,
.c-single-content h2,
.c-single-content h3,
.c-single-content h4,
.c-single-content ul,
.c-single-content ol {
  clear: both;
}
.c-single-content div,
.c-single-content p {
  max-width: 100%;
}
.c-single-content strong {
  font-weight: 600;
  color: rgb(var(--main));
}
.c-single-content h2 {
  margin-top: 1em;
  margin-bottom: 1em;
  padding: 14px;
  background: rgb(var(--main));
  border-radius: 6px;
  line-height: 1.5;
  color: #fff;
  font-weight: 600;
  font-size: 1.7rem;
}
.c-single-content h3 {
  position: relative;
  margin-top: 1em;
  margin-bottom: 15px;
  padding-top: 22px;
  line-height: 1.5;
  font-weight: 600;
  font-size: 1.6rem;
}
.c-single-content h3::before, .c-single-content h3::after {
  content: "";
  border-radius: 50px;
  position: absolute;
  top: 0;
  left: 0;
  height: 14px;
}
.c-single-content h3::before {
  background: rgb(var(--accent));
  width: 30px;
}
.c-single-content h3::after {
  background: rgb(var(--main));
  width: 24px;
}
.c-single-content h4 {
  margin-top: 1em;
  margin-bottom: 10px;
  line-height: 1.5;
  font-weight: 600;
  font-size: 1.6rem;
}
.c-single-content a {
  text-decoration: underline;
  color: rgb(var(--main));
  font-weight: 500;
}
.c-single-content ol, .c-single-content ul {
  margin: 10px 0;
}
.c-single-content ol {
  padding-left: 0;
  text-indent: -1.4em;
  counter-reset: number 0;
}
.c-single-content ol li {
  position: relative;
  margin-left: 1.4em;
  box-sizing: border-box;
  counter-increment: number 1;
  list-style-type: none;
}
.c-single-content ol li::before {
  content: counter(number) ".";
  margin-right: 6px;
  font-weight: 600;
  color: rgb(var(--main));
}
.c-single-content ul {
  padding-left: 0;
}
.c-single-content ul li {
  position: relative;
  padding-left: 17px;
  list-style-type: none;
}
.c-single-content ul li::before {
  position: absolute;
  top: 9px;
  left: 0;
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgb(var(--main));
}
.c-single-content img {
  display: block;
  margin-bottom: 15px;
}
.c-single-content img.aligncenter {
  margin-bottom: 0;
}
.c-single-content blockquote {
  position: relative;
  box-sizing: border-box;
  padding: 50px 20px 40px;
  background: #ebf5ff;
  border: 2px solid rgb(var(--main));
  border-radius: 6px;
}
.c-single-content blockquote:before {
  content: "”";
  position: absolute;
  top: 13px;
  left: 20px;
  line-height: 1.1;
  font-size: 8rem;
  font-weight: 600;
  color: rgba(var(--main), 0.2);
}
.c-single-content blockquote p:last-child {
  margin-top: 30px;
  font-size: 1.1rem;
}
.c-single-content .wp-caption-text {
  font-size: 1.2rem;
}
.c-single-content .c-single-content-note {
  margin: 10px 0;
}
.c-single-content .c-single-content-note li {
  padding-left: 1em;
  text-indent: -1em;
  list-style-type: none;
}
.c-single-content .c-single-content-note li::before {
  content: none;
}
@media all and (min-width: 768px) {
  .c-single-content {
    padding-bottom: 30px;
  }
  .c-single-content a:hover {
    text-decoration: none;
  }
  .c-single-content ol li:before {
    margin-right: 8px;
  }
  .c-single-content ul li:before {
    top: 10px;
  }
  .c-single-content .alignleft {
    float: left;
    margin: 0;
    box-sizing: border-box;
  }
  .c-single-content .alignleft + .alignleft {
    margin: 0 0 0 40px;
  }
  .c-single-content .alignright {
    float: right;
    margin: 0;
    box-sizing: border-box;
  }
  .c-single-content .alignright + .alignright {
    margin: 0 40px 0 0;
  }
  .c-single-content .aligncenter {
    margin-left: auto;
    margin-right: auto;
  }
  .c-single-content .alignnone {
    margin-top: 60px;
  }
  .c-single-content h2 {
    margin-bottom: 1.5em;
    padding: 23px 30px;
    font-size: 2.4rem;
  }
  .c-single-content h3 {
    margin-bottom: 15px;
    padding: 0 0 0 45px;
    font-size: 2.4rem;
  }
  .c-single-content h3::before, .c-single-content h3::after {
    top: 8px;
  }
  .c-single-content h4 {
    font-size: 1.8rem;
  }
  .c-single-content img.alignleft {
    margin-right: 50px;
  }
  .c-single-content img.alignright {
    margin-left: 50px;
  }
  .c-single-content blockquote {
    margin: 30px 0;
    padding: 60px 40px 55px;
  }
  .c-single-content blockquote:before {
    top: 15px;
    left: 26px;
  }
  .c-single-content blockquote p:last-child {
    font-size: 1.2rem;
  }
  .c-single-content .wp-caption-text {
    font-size: 1.4rem;
  }
}

#pressSingle .intro h1 {
  margin: 0 0 10px;
  font-size: 1.8rem !important;
  text-align: center;
  line-height: 1.5;
}
@media all and (min-width: 768px) {
  #pressSingle .intro h1 {
    margin: 0 0 20px;
    font-size: 3rem !important;
  }
}

/* .c-slider01
================================================== */
.c-slider01 {
  padding-top: 40px !important;
  position: relative;
}
.c-slider01.swiper {
  overflow: visible;
}
.c-slider01__item-in {
  display: block;
}
@media (hover: hover) and (pointer: fine) {
  .c-slider01__item-in:hover .c-slider01__item-img {
    transform: scale(0.9);
  }
  .c-slider01__item-in:hover .c-slider01__item-img::after {
    opacity: 1;
  }
  .c-slider01__item-in:hover .c-slider01__item-img img {
    transform: scale(1.1);
  }
  .c-slider01__item-in:hover .c-slider01__item-head {
    color: rgb(var(--main));
  }
}
.c-slider01__item-img {
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}
.c-slider01__item-img::after {
  content: "";
  background: rgba(var(--main), 0.5);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.c-slider01__item-img img {
  transition: transform 0.3s ease;
}
.c-slider01__item-area-txt {
  margin-top: 15px;
}
.c-slider01__item-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.c-slider01__item-cat {
  box-sizing: border-box;
  background: rgb(var(--main));
  border-radius: 50px;
  color: #fff;
  font-size: 1rem;
  line-height: var(--line_height_head);
  margin: 0 5px 5px 0;
  padding: 0 9px;
  text-align: center;
  min-width: 52px;
}
.c-slider01__item-date {
  font-size: 1rem;
  line-height: var(--line_height_head);
  margin-right: 5px;
  margin-bottom: 5px;
}
.c-slider01__item-tag {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  vertical-align: middle;
  box-sizing: border-box;
  margin: 0 0 5px auto;
  padding: 2px 5px;
  line-height: 1.1;
  font-size: 1rem;
  background: rgb(var(--accent));
}
.c-slider01__item-head {
  font-size: 1.2rem;
  line-height: var(--line_height_head);
  margin-top: 8px;
  word-break: break-word;
  transition: color 0.3s ease;
}
.c-slider01__arrows {
  display: flex;
  align-items: center;
  position: absolute;
  right: -10px;
  top: 0;
}
.c-slider01__arrows .swiper-button-next,
.c-slider01__arrows .swiper-button-prev {
  color: #B1C0C8;
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 30px;
  width: 30px;
}
.c-slider01__arrows .swiper-button-next::after,
.c-slider01__arrows .swiper-button-prev::after {
  content: "";
  display: inline-block;
  width: 25px;
  height: 9px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24.63 8.61"><path d="M23.75 8.61H.79C.35 8.6 0 8.24 0 7.8c0-.18.07-.36.18-.5l6-7.09c.32-.3.83-.28 1.13.04.25.27.28.68.08.99L2.5 7.02h21.24c.44-.05.83.27.88.71s-.27.83-.71.88h-.18Z" fill="currentColor"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24.63 8.61"><path d="M23.75 8.61H.79C.35 8.6 0 8.24 0 7.8c0-.18.07-.36.18-.5l6-7.09c.32-.3.83-.28 1.13.04.25.27.28.68.08.99L2.5 7.02h21.24c.44-.05.83.27.88.71s-.27.83-.71.88h-.18Z" fill="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
@media (hover: hover) and (pointer: fine) {
  .c-slider01__arrows .swiper-button-next:hover,
.c-slider01__arrows .swiper-button-prev:hover {
    color: rgb(var(--main));
  }
}
.c-slider01__arrows .swiper-button-next {
  margin-left: 25px;
}
.c-slider01__arrows .swiper-button-next::before {
  content: "";
  border-left: 1px solid rgb(var(--border));
  height: 80%;
  position: absolute;
  top: 50%;
  left: -13px;
  transform: translateY(-50%);
}
.c-slider01__arrows .swiper-button-next::after {
  transform: scale(-1, 1);
}
@media all and (min-width: 1260px) {
  .c-slider01.swiper {
    width: 120.5%;
  }
  .c-slider01.swiper.js-slide-over {
    margin: 0 41.3%;
  }
  .c-slider01.swiper.js-slide-over .c-slider01__arrows {
    right: 51%;
  }
  .c-slider01.swiper .c-slider01__arrows {
    right: 17%;
  }
  .c-slider01__item-area-txt {
    margin-top: 20px;
  }
  .c-slider01__item-cat {
    margin: 0 7px 5px 0;
    padding: 3px 10px;
  }
  .c-slider01__item-date {
    line-height: var(--line_height_head);
  }
  .c-slider01__item-head {
    font-size: 1.2rem;
  }
}

/*  .c-tab01
================================================== */
.c-tab01 {
  position: relative;
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  position: relative;
  border-bottom: 1px solid rgb(var(--base_gray));
}
.c-tab01__item {
  box-sizing: border-box;
  background: rgb(var(--base_gray));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 5px 0 0;
  min-height: 60px;
  padding: 10px 20px;
  text-align: center;
}
.c-tab01__item.is-active {
  background: rgb(var(--main));
  color: #fff;
  min-height: 80px;
}

/*  .c-table01
================================================== */
.c-table01 th, .c-table01 td {
  padding: 17px 0;
  border-bottom: 1px solid rgb(var(--border));
  line-height: 1.5;
  letter-spacing: 0;
}
.c-table01 th {
  box-sizing: border-box;
  padding-right: 5px;
  font-weight: 600;
  text-align: left;
  width: 26.1538461538%;
}
@media all and (min-width: 768px) {
  .c-table01 th, .c-table01 td {
    padding: 29px 0;
  }
  .c-table01 th {
    padding-right: 10px;
    width: 21.8181818182%;
  }
}

/* .c-toggle01
================================================== */
.c-toggle01 + .c-toggle01 {
  margin-top: 4px;
}
.c-toggle01__head {
  box-sizing: border-box;
  background: rgb(var(--base_gray));
  cursor: pointer;
  font-weight: 700;
  line-height: var(--line_height_head);
  padding: 18px 15px;
  position: relative;
  transition: all 0.3s ease;
}
.c-toggle01__head[class*=toggle] {
  padding-right: 50px;
}
.c-toggle01__head[class*=toggle] .c-toggle01__head-ico {
  border-radius: 50%;
  background: rgb(var(--main));
  height: 20px;
  width: 20px;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}
.c-toggle01__head[class*=toggle] .c-toggle01__head-ico::before, .c-toggle01__head[class*=toggle] .c-toggle01__head-ico::after {
  content: "";
  background: #fff;
  display: block;
  margin-top: -1px;
  position: absolute;
  top: 50%;
  right: 5px;
  height: 2px;
  width: 10px;
  transition: all 0.3s ease;
}
.c-toggle01__head[class*=toggle] .c-toggle01__head-ico::before {
  transform: rotate(-90deg);
}
.c-toggle01__head[class*=toggle].is-active {
  background: rgb(var(--main));
  color: #fff;
}
.c-toggle01__head[class*=toggle].is-active .c-toggle01__head-ico {
  background: #fff;
}
.c-toggle01__head[class*=toggle].is-active .c-toggle01__head-ico::before, .c-toggle01__head[class*=toggle].is-active .c-toggle01__head-ico::after {
  background: rgb(var(--main));
}
.c-toggle01__head[class*=toggle].is-active .c-toggle01__head-ico::before {
  transform: rotate(0deg);
}

/* .l-breadcrumb
================================================ */
.l-breadcrumb-list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 39px;
  z-index: 10;
}
.l-breadcrumb-list__item {
  display: inline-block;
  vertical-align: top;
  line-height: 1.5;
}
.l-breadcrumb-list__item + .l-breadcrumb-list__item {
  margin-left: 8px;
  position: relative;
  padding-left: 25px;
}
.l-breadcrumb-list__item + .l-breadcrumb-list__item:before {
  content: "";
  width: 15px;
  height: 1px;
  background-color: rgb(var(--border));
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media all and (max-width: 767px) {
  .l-breadcrumb-list {
    white-space: nowrap;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    overflow: auto;
  }
  .l-breadcrumb-list::-webkit-scrollbar {
    display: none;
  }
}
@media all and (min-width: 768px) {
  .l-breadcrumb-list {
    padding-top: 60px;
    padding-bottom: 30px;
  }
  .l-breadcrumb-list a.l-breadcrumb-list__txt {
    color: rgb(var(--black));
    text-decoration: underline;
    transition: all 0.3s ease;
  }
  .l-breadcrumb-list a.l-breadcrumb-list__txt:hover {
    text-decoration: none;
    color: rgb(var(--main));
  }
  .l-breadcrumb-list__txt {
    font-size: 1.2rem;
    color: rgb(var(--subtxt));
  }
}
@media all and (min-width: 1740px ) {
  .l-breadcrumb-list {
    padding-top: 125px;
  }
}

/* .l-cursor
================================================== */
.l-cursor {
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .l-cursor {
    background: rgb(var(--main));
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    height: 50px;
    width: 50px;
    opacity: 0.7;
    transform: translate(-60%, -60%);
    transition: 0.5s ease transform, 0.5s ease width, 0.5s ease height, 0.3s ease opacity, 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) left, 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) top;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    pointer-events: none;
    z-index: 10000;
  }
  .l-cursor:not(.is-shown) {
    height: 8px;
    width: 8px;
  }
  .l-cursor:not(.is-shown)::after {
    opacity: 0;
  }
  .l-cursor::after {
    content: "";
    display: inline-block;
    width: 17px;
    height: 19px;
    vertical-align: middle;
    color: currentColor;
    background: currentColor;
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 17"><path fill="currentColor" d="M6.73 0 5.36 1.42l5.91 6.07H0v2h11.28l-5.92 6.09L6.73 17 15 8.5 6.73 0z"/></svg>');
    mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 17"><path fill="currentColor" d="M6.73 0 5.36 1.42l5.91 6.07H0v2h11.28l-5.92 6.09L6.73 17 15 8.5 6.73 0z"/></svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
    transform: rotate(-45deg);
    transition: opacity 0.3s ease;
  }
  .l-cursor-view {
    display: none;
  }
  .l-cursor[data-type=view] {
    height: 120px;
    width: 120px;
  }
  .l-cursor[data-type=view] .l-cursor-view {
    display: inline-block;
    font-size: 1.2rem;
    line-height: var(--line_height_tight);
    margin-right: 4px;
  }
}

/* .l-footer
================================================ */
.l-footer-main {
  background: rgb(var(--base_gray));
  position: relative;
  z-index: 10;
}
.l-footer-main__inner {
  padding-top: 60px;
  padding-bottom: 60px;
}
.l-footer-info {
  background: #fff;
}
.l-footer-info__inner {
  padding-top: 50px;
  padding-bottom: 50px;
}
.l-footer-info__logo {
  margin: 0 auto;
  width: 230px;
}
.l-footer-info__logo-link {
  display: block;
}
.l-footer-info__cr {
  color: rgb(var(--subtxt));
  font-size: 1.2rem;
  margin-top: 30px;
  text-align: center;
}
@media all and (min-width: 1260px) {
  .l-footer-main__inner {
    padding-top: 100px;
    padding-bottom: 112px;
    gap: 40px;
  }
  .l-footer-info {
    background: #fff;
  }
  .l-footer-info__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .l-footer-info__logo {
    margin: 0 34px 0 0;
    width: 397px;
  }
  .l-footer-info__cr {
    font-size: 1.2rem;
    margin-top: 0;
  }
}
@media all and (min-width: 1400px ) {
  .l-footer-main__inner {
    padding-top: 140px;
    padding-bottom: 132px;
    gap: min(5.06%, 80px);
  }
}
@media screen and (min-width: 1260px) and (max-width: 1579px) {
  .l-footer-main {
    gap: 40px;
  }
}

/* .l-footer-sns
================================================== */
.l-footer-sns__head {
  font-size: 2.6rem;
  line-height: var(--line_height_tight);
  margin-bottom: 18px;
  text-align: center;
}
.l-footer-sns-list {
  display: grid;
  gap: 8px;
  margin: 0 auto;
  max-width: 400px;
}
.l-footer-sns-list__item-link {
  box-sizing: border-box;
  background: #fff;
  border: 1px solid rgb(var(--border));
  border-radius: 6px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 18px 20px;
}
.l-footer-sns-list__item-ico {
  margin-right: 16px;
  height: 25px;
  width: 25px;
}
.l-footer-sns-list__item-ico svg {
  display: block;
  height: 100%;
  width: 100%;
}
.l-footer-sns-list__item-head {
  font-size: 2rem;
  line-height: var(--line_height_tight);
}
.l-footer-sns-list__item-txt {
  font-size: 1rem;
  line-height: var(--line_height_tight);
}
.l-footer-sns-list__item-txt.is-center {
  text-align: center;
}
.l-footer-sns-list__item-img {
  height: 25px;
}
.l-footer-sns-list__item-img img {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
@media all and (min-width: 768px) {
  .l-footer-sns-list {
    gap: 12px;
  }
  .l-footer-sns-list__item-link {
    padding: 10px;
    min-height: 72px;
  }
  .l-footer-sns-list__item-ico {
    margin-right: 14px;
    height: 30px;
    width: 30px;
  }
  .l-footer-sns-list__item-head {
    font-size: 1.8rem;
  }
  .l-footer-sns-list__item-txt {
    font-size: 1.2rem;
    margin-top: 4px;
  }
  .l-footer-sns-list__item-img {
    height: 30px;
  }
}
@media all and (min-width: 1260px) {
  .l-footer-sns {
    order: 1;
  }
  .l-footer-sns__head {
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-align: left;
  }
  .l-footer-sns-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 100%;
  }
  .l-footer-sns-list__item-link {
    padding: 10px 20px;
  }
  .l-footer-sns-list__item-ico {
    margin-right: 14px;
    height: 20px;
    width: 20px;
  }
  .l-footer-sns-list__item-img {
    height: 20px;
  }
}
@media all and (min-width: 1400px ) {
  .l-footer-sns-list__item-link {
    padding: 14px 20px;
  }
  .l-footer-sns-list__item-ico {
    margin-right: 28px;
    height: 30px;
    width: 30px;
  }
  .l-footer-sns-list__item-head {
    font-size: 2rem;
  }
  .l-footer-sns-list__item-txt {
    font-size: 1.4rem;
    margin-top: 4px;
  }
  .l-footer-sns-list__item-img {
    height: 30px;
  }
}
@media screen and (min-width: 1260px) and (max-width: 1579px) {
  .l-footer-sns__head {
    font-size: 2rem;
  }
  .l-footer-sns-list__item-head {
    font-size: 1.6rem;
  }
  .l-footer-sns-list__item-link {
    padding: 20px 5px;
  }
  .l-footer-sns-list__item-ico {
    margin-right: 10px;
  }
  .l-footer-sns-list__item-txt {
    font-size: 1.2rem;
  }
}
/* .l-footer-nav
================================================== */
.l-footer-nav {
  margin-top: 80px;
}
.l-footer-nav-list {
  display: grid;
  gap: 30px;
}
.l-footer-nav-list__item-head {
  box-sizing: border-box;
  border: none;
  border-bottom: 1px solid rgb(var(--black));
  padding: 0 0 20px;
  position: relative;
  text-align: left;
}
.l-footer-nav-list__item-head-en {
  display: block;
  font-size: 2.4rem;
  line-height: var(--line_height_tight);
}
.l-footer-nav-list__item-head-ja {
  display: block;
  color: rgb(var(--main));
  font-size: 1.2rem;
  line-height: var(--line_height_head);
}
.l-footer-nav-list__child-wrap {
  padding-top: 24px;
}
.l-footer-nav-list__child-item + .l-footer-nav-list__child-item {
  margin-top: 8px;
}
.l-footer-nav-list__child-item.is-grandchild .l-footer-nav-list__child-item-link {
  font-size: 1.2rem;
}
.l-footer-nav-list__child-item-link {
  display: block;
  line-height: var(--line_height_head);
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
}
.l-footer-nav-list__child-item-link::before {
  content: "";
  border-top: 1px solid currentColor;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 100% 0;
  width: 100%;
  transition: transform 0.3s cubic-bezier(0.45, 0.12, 0.04, 0.96);
}
.l-footer-nav-list__child-item-link.is-inline {
  display: inline-block;
}
@media (hover: hover) and (pointer: fine) {
  .l-footer-nav-list__child-item-link[href]:hover {
    color: rgb(var(--main));
  }
  .l-footer-nav-list__child-item-link[href]:hover::before {
    transform: scaleX(1);
    transform-origin: 0 0;
  }
}
@media all and (max-width: 1259px) {
  .l-footer-nav-list__item-head {
    padding-right: 42px;
  }
  .l-footer-nav-list__item-head[class*=toggle] .l-footer-nav-list__item-head-ico {
    height: 22px;
    width: 22px;
    position: absolute;
    top: calc(50% - 11px);
    right: 10px;
    transform: translateY(-50%);
  }
  .l-footer-nav-list__item-head[class*=toggle] .l-footer-nav-list__item-head-ico::before, .l-footer-nav-list__item-head[class*=toggle] .l-footer-nav-list__item-head-ico::after {
    content: "";
    border: 1px solid rgb(var(--black));
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    transition: transform 0.3s ease;
  }
  .l-footer-nav-list__item-head[class*=toggle] .l-footer-nav-list__item-head-ico::after {
    transform: translate(-50%, -50%) rotate(-90deg);
  }
  .l-footer-nav-list__item-head.is-active[class*=toggle] .l-footer-nav-list__item-head-ico::after {
    transform: translate(-50%, -50%) rotate(0);
  }
}
@media all and (min-width: 1260px) {
  .l-footer-nav {
    margin-top: 70px;
  }
  .l-footer-nav-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }
  .l-footer-nav-list__item-head {
    pointer-events: none;
  }
  .l-footer-nav-list__item-head-en {
    font-size: 2.4rem;
    margin-right: 12px;
  }
  .l-footer-nav-list__item-head-ja {
    font-size: 1.3rem;
    margin-top: 2px;
  }
  .l-footer-nav-list__child-wrap {
    display: block !important;
    padding-top: 20px;
  }
  .l-footer-nav-list__child-item.is-pc-mt0 {
    margin-top: 0 !important;
  }
  .l-footer-nav-list__child-item.is-grandchild .l-footer-nav-list__child-item-link {
    font-size: 1.3rem;
  }
  .l-footer-nav-list__child-item-link {
    font-size: 1.5rem;
  }
}
@media all and (min-width: 1400px ) {
  .l-footer-nav {
    margin-top: 90px;
  }
  .l-footer-nav-list {
    gap: min(6.66%, 80px);
  }
}
@media screen and (min-width: 1260px) and (max-width: 1579px) {
  .l-footer-nav-list__item-head {
    padding: 0 0 15px;
  }
  .l-footer-nav-list__item-head-ja {
    margin-top: 5px;
    font-size: 1.2rem;
  }
  .l-footer-nav-list__item-head-en {
    font-size: 1.6rem;
    line-height: var(--line_height_tight);
  }
  .l-footer-nav-list__child-item.is-pc-mt0 {
    margin-top: 0 !important;
  }
  .l-footer-nav-list__child-item + .l-footer-nav-list__child-item {
    margin-top: 15px;
  }
  .l-footer-nav-list__child-item-link {
    font-size: 1.2rem;
  }
}
/* .l-footer-page-top
================================================ */
.l-footer-page-top {
  height: 60px;
  width: 60px;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.3s;
}
.l-footer-page-top.is-shown {
  opacity: 1;
}
.l-footer-page-top__link {
  box-sizing: border-box;
  background: #fff;
  border: 1px solid;
  border-radius: 50%;
  color: rgb(var(--black));
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
  text-decoration: none;
  overflow: hidden;
  position: relative;
  text-indent: 999px;
  white-space: nowrap;
  height: 100%;
  width: 100%;
}
.l-footer-page-top__link::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 17px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 17"><path fill="currentColor" d="M6.73 0 5.36 1.42l5.91 6.07H0v2h11.28l-5.92 6.09L6.73 17 15 8.5 6.73 0z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 17"><path fill="currentColor" d="M6.73 0 5.36 1.42l5.91 6.07H0v2h11.28l-5.92 6.09L6.73 17 15 8.5 6.73 0z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
}
@media all and (min-width: 768px) {
  .l-footer-page-top {
    right: auto;
    left: 20px;
  }
  .l-footer-page-top__link {
    transition: 0.3s ease;
  }
  .l-footer-page-top__link:hover {
    background-color: rgb(var(--black));
    color: rgb(var(--white));
    transition: 0.3s ease;
  }
  .l-footer-page-top__link:hover::after {
    content: "";
    display: inline-block;
    width: 15px;
    height: 17px;
    vertical-align: middle;
    color: #fff;
    background: currentColor;
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 17"><path fill="currentColor" d="M6.73 0 5.36 1.42l5.91 6.07H0v2h11.28l-5.92 6.09L6.73 17 15 8.5 6.73 0z"/></svg>');
    mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 17"><path fill="currentColor" d="M6.73 0 5.36 1.42l5.91 6.07H0v2h11.28l-5.92 6.09L6.73 17 15 8.5 6.73 0z"/></svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
  }
  .l-footer-page-top.is-hidden {
    opacity: 0;
  }
}
/* .l-header
================================================ */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 320px;
  z-index: 2000;
}
@media all and (min-width: 768px) {
  .l-header.is-nav-open .l-megamenu,
.l-header.is-nav-open .l-header-lang {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

@media all and (min-width: 768px) {
  body.has-minwidth .l-header {
    min-width: var(--contents_width_with_padding);
  }
}

/* .l-header-info
================================================== */
.l-header-info {
  background: #fff;
  display: flex;
  align-items: center;
  height: var(--header_height_sp);
  position: relative;
  padding: 0 65px 0 15px;
  z-index: 3;
}
.l-header-info__logo {
  width: 90px;
}
.l-header-info__logo svg {
  display: block;
  width: 97px;
}
@media all and (min-width: 768px) {
  .l-header-info {
    padding: 0 22px;
  }
  .l-header-info__logo {
    width: 6%;
    min-width: 72px;
    max-width: 108px;
  }
}
@media all and (min-width: 1260px) {
  .l-header-info {
    height: var(--header_height_pc);
    padding: 0 34px;
  }
}

/* .l-header-lang
================================================ */
.l-header-lang {
  margin-left: auto;
  position: relative;
  transition: all 0.3s ease;
}
.l-header-lang__head {
  border: none;
  color: rgb(var(--main));
  display: flex;
  align-items: center;
  padding: 0;
}
.l-header-lang__head::before {
  content: "";
  border-color: rgb(var(--main)) transparent transparent;
  border-style: solid;
  border-width: 7px 4px 0;
  margin-right: 9px;
  transition: all 0.3s ease;
}
.l-header-lang__head-ico {
  width: 1.4vw;
  min-width: 18px;
}
.l-header-lang__head.is-open::before {
  transform: scale(1, -1);
}
.l-header-lang__content {
  box-shadow: 0 10px 20px rgba(var(--black), 0.3);
  position: absolute;
  top: 34px;
  right: -20px;
  width: 80px;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s ease;
}
.l-header-lang__content.is-open {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
}
.l-header-lang__list {
  background: rgb(var(--main));
  color: #fff;
  padding: 8px 0;
}
.l-header-lang__list-item {
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  height: 36px;
}
.l-header-lang__list-item-in {
  font-size: clamp(1.2rem, 1.1514563107rem + 0.1294498382vw, 1.4rem);
  font-weight: 400;
  position: relative;
}
.l-header-lang__list-item-in.is-current::after {
  transform: scaleX(1);
  transform-origin: 0 0;
}
.l-header-lang__list-item-in::after {
  content: "";
  border-top: 1px solid currentColor;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 100% 0;
  width: 100%;
  transition: transform 0.3s cubic-bezier(0.45, 0.12, 0.04, 0.96);
}
@media (hover: hover) and (pointer: fine) {
  .l-header-lang__list-item-in:not(.is-current):hover::after {
    transform: scaleX(1);
    transform-origin: 0 0;
  }
}
@media all and (min-width: 768px) {
  .l-header-lang {
    margin-left: 2%;
  }
}

/* .l-megamenu
================================================ */
.l-megamenu {
  flex: 1;
  align-self: stretch;
  transition: all 0.3s ease;
}

.l-megamenu-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  height: 100%;
}
.l-megamenu-list__item + .l-megamenu-list__item {
  margin-left: 2.25%;
}
.l-megamenu-list__item-head {
  box-sizing: border-box;
  border: none;
  color: rgb(var(--darkgray));
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: clamp(1.2rem, 1.1029126214rem + 0.2588996764vw, 1.6rem);
  line-height: var(--line_height_head);
  height: 100%;
  padding: 0;
  position: relative;
}
.l-megamenu-list__item-head::before {
  content: "";
  border-top: 3px solid rgb(var(--main));
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 100% 0;
  width: 100%;
  transition: transform 0.3s cubic-bezier(0.45, 0.12, 0.04, 0.96);
}
.l-megamenu-list__item-head[target]::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 8px;
  vertical-align: middle;
  color: rgb(var(--gray));
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10.26 8.04"><g fill="currentColor"><path d="M3.13 0h7.13v4.92H3.13z"/><path d="M7.88 8.04H0v-6h1.48v4.52h6.4v1.48Z"/></g></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10.26 8.04"><g fill="currentColor"><path d="M3.13 0h7.13v4.92H3.13z"/><path d="M7.88 8.04H0v-6h1.48v4.52h6.4v1.48Z"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  margin: 0 0 0 5px;
}
@media (hover: hover) and (pointer: fine) {
  .l-megamenu-list__item-head:hover::before {
    transform: scaleX(1);
    transform-origin: 0 0;
  }
}
.l-megamenu-list__item-head.is-open::before {
  transform: scaleX(1);
  transform-origin: 0 0;
}
.l-megamenu-list__item-head.is-open .l-megamenu-list__item-head-arw::before {
  transform: scale(1, -1);
}
.l-megamenu-list__item-head-arw::before {
  content: "";
  border-color: rgb(var(--main)) transparent transparent;
  border-style: solid;
  border-width: 7px 4px 0;
  display: block;
  margin-right: 9px;
  transition: all 0.3s ease;
}
.l-megamenu-list__item:nth-child(1) .l-megamenu-list__content-head {
  opacity: 0;
}
.l-megamenu-list__item:nth-child(1) .l-megamenu-list__child {
  will-change: transform;
}
.l-megamenu-list__item:nth-child(1) .l-megamenu-list__child-item {
  opacity: 0;
  transform: translateX(-30px);
}
.l-megamenu-list__item:nth-child(1) .l-megamenu-list__content.is-open .l-megamenu-list__content-head {
  opacity: 1;
  transition: opacity 0.6s ease;
  transition-delay: 0.4s;
}
.l-megamenu-list__item:nth-child(1) .l-megamenu-list__content.is-open .l-megamenu-list__child-item {
  opacity: 1;
  transform: translateX(0);
  transition: all 0.6s var(--easeOutQuart);
}
.l-megamenu-list__item:nth-child(1) .l-megamenu-list__content.is-open .l-megamenu-list__child-item:nth-child(1) {
  transition-delay: 0.7s;
}
.l-megamenu-list__item:nth-child(1) .l-megamenu-list__content.is-open .l-megamenu-list__child-item:nth-child(2) {
  transition-delay: 0.9s;
}
.l-megamenu-list__item:nth-child(1) .l-megamenu-list__content.is-open .l-megamenu-list__child-item:nth-child(3) {
  transition-delay: 1.1s;
}
.l-megamenu-list__content {
  background: rgba(var(--black), 0.9);
  position: fixed;
  top: var(--header_height_sp);
  left: 0;
  width: 100%;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s ease;
}
.l-megamenu-list__content.is-open {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
}
.l-megamenu-list__content-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-block: 30px;
  max-width: 1300px;
  box-sizing: border-box;
}
.l-megamenu-list__content-head {
  margin-right: 2.4%;
  width: 22.5%;
}
.l-megamenu-list__content-detail {
  flex: 1;
}
.l-megamenu-list__child {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.l-megamenu-list__child-item-link {
  overflow: hidden;
}
.l-megamenu-list__child-item-link img {
  transform: scale(1.01);
}
@media all and (min-width: 1260px) {
  .l-megamenu-list__content {
    top: var(--header_height_pc);
  }
}

/* .l-nav-btn
================================================== */
.l-nav-btn {
  border: none;
  padding: 0;
  position: absolute;
  top: 0;
  right: 8px;
  width: 50px;
  height: 50px;
  cursor: pointer;
}
.l-nav-btn__line {
  background: rgb(var(--black));
  position: absolute;
  left: 7.5px;
  width: 35px;
  height: 1px;
  content: "";
  transition: all 0.3s ease;
}
.l-nav-btn__line:nth-child(1) {
  top: 18px;
}
.l-nav-btn__line:nth-child(2) {
  top: 24px;
}
.l-nav-btn__line:nth-child(3) {
  top: 30px;
}
.l-nav-btn.is-open .l-nav-btn__line:nth-child(1) {
  top: 24px;
  transform: rotate(-32deg);
}
.l-nav-btn.is-open .l-nav-btn__line:nth-child(2) {
  opacity: 0;
}
.l-nav-btn.is-open .l-nav-btn__line:nth-child(3) {
  top: 24px;
  transform: rotate(32deg);
}
@media all and (min-width: 768px) {
  .l-nav-btn {
    position: absolute;
    right: auto;
    left: 120px;
  }
}
@media all and (min-width: 1260px) {
  .l-nav-btn {
    left: 150px;
  }
  .l-nav-btn__line {
    left: 5px;
    width: 40px;
  }
}

/* .l-nav
================================================ */
.l-nav {
  box-sizing: border-box;
  background: #fff;
  position: absolute;
  top: var(--header_height_sp);
  left: 0;
  z-index: 2;
  height: calc(var(--vh, 1vh) * 100 - var(--header_height_sp));
  width: 100%;
  min-width: 320px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10%);
  transition: all 0.3s ease;
}
.l-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.l-nav__inner {
  display: grid;
  grid-template-rows: -webkit-max-content;
  grid-template-rows: max-content;
  height: 100%;
  padding-top: 34px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.l-nav__inner::-webkit-scrollbar {
  display: none;
}
@media all and (min-width: 768px) {
  .l-nav__inner {
    padding-top: 48px;
    padding-bottom: 124px;
  }
}

/* .l-nav-list
================================================== */
.l-nav-list {
  display: grid;
  gap: 30px;
}
.l-nav-list__item-head {
  box-sizing: border-box;
  border: none;
  padding: 0;
  position: relative;
  text-align: left;
}
.l-nav-list__item-head-en {
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: var(--line_height_tight);
}
.l-nav-list__item-head-ja {
  display: block;
  color: rgb(var(--main));
  font-size: 1.2rem;
  line-height: var(--line_height_head);
}
.l-nav-list__child-wrap {
  padding-top: 24px;
}
.l-nav-list__child-item + .l-nav-list__child-item {
  margin-top: 8px;
}
.l-nav-list__child-item.is-grandchild {
  display: flex;
  align-items: center;
  color: rgb(var(--subtxt));
}
.l-nav-list__child-item.is-grandchild .l-nav-list__child-item-link {
  font-size: 1.2rem;
}
.l-nav-list__child-item.is-grandchild .l-nav-list__child-item-link:not(:hover) {
  color: rgb(var(--subtxt));
}
.l-nav-list__child-item.is-grandchild .l-nav-list__child-item-link:nth-child(1) {
  margin-right: 5px;
}
.l-nav-list__child-item.is-grandchild .l-nav-list__child-item-link:nth-child(2) {
  margin-left: 5px;
}
.l-nav-list__child-item-link {
  display: block;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
}
.l-nav-list__child-item-link::before {
  content: "";
  border-top: 1px solid currentColor;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 100% 0;
  width: 100%;
  transition: transform 0.3s cubic-bezier(0.45, 0.12, 0.04, 0.96);
}
.l-nav-list__child-item-link:not([href]) {
  color: rgb(var(--subtxt));
}
@media (hover: hover) and (pointer: fine) {
  .l-nav-list__child-item-link:is(a):hover {
    color: rgb(var(--main));
  }
  .l-nav-list__child-item-link:is(a):hover::before {
    transform: scaleX(1);
    transform-origin: 0 0;
  }
}
@media all and (max-width: 1259px) {
  .l-nav-list__item-head {
    border-bottom: 1px solid rgb(var(--black));
    padding: 0 42px 20px 0;
  }
  .l-nav-list__item-head[class*=toggle] .l-nav-list__item-head-ico {
    height: 22px;
    width: 22px;
    position: absolute;
    top: calc(50% - 11px);
    right: 10px;
    transform: translateY(-50%);
  }
  .l-nav-list__item-head[class*=toggle] .l-nav-list__item-head-ico::before, .l-nav-list__item-head[class*=toggle] .l-nav-list__item-head-ico::after {
    content: "";
    border: 1px solid rgb(var(--black));
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    transition: transform 0.3s ease;
  }
  .l-nav-list__item-head[class*=toggle] .l-nav-list__item-head-ico::after {
    transform: translate(-50%, -50%) rotate(-90deg);
  }
  .l-nav-list__item-head.is-active[class*=toggle] .l-nav-list__item-head-ico::after {
    transform: translate(-50%, -50%) rotate(0);
  }
}
@media all and (min-width: 768px) {
  .l-nav-list {
    gap: 40px;
  }
  .l-nav-list__item-head {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
  }
  .l-nav-list__item-head-en {
    font-size: clamp(2.4rem, 2.2786407767rem + 0.3236245955vw, 2.9rem);
    margin-right: 0.42em;
  }
  .l-nav-list__item-head-ja {
    font-size: clamp(1.2rem, 1.1029126214rem + 0.2588996764vw, 1.6rem);
  }
  .l-nav-list__child-item.is-grandchild .l-nav-list__child-item-link {
    font-size: 1.3rem;
  }
  .l-nav-list__child-item-link {
    font-size: clamp(1.4rem, 1.3514563107rem + 0.1294498382vw, 1.6rem);
  }
}
@media all and (min-width: 1260px) {
  .l-nav-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 6%;
  }
  .l-nav-list__item.is-full {
    grid-column: span 3;
  }
  .l-nav-list__item.is-game .l-nav-list__child {
    display: flex;
  }
  .l-nav-list__item.is-game .l-nav-list__child-item {
    margin: 0;
  }
  .l-nav-list__item.is-game .l-nav-list__child-item + .l-nav-list__child-item {
    margin-left: 20px;
  }
  .l-nav-list__item.is-about {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px 6%;
  }
  .l-nav-list__item.is-about .l-nav-list__child-wrap {
    display: contents !important;
  }
  .l-nav-list__item.is-about .l-nav-list__child {
    justify-content: flex-end;
    grid-column: 2/3;
    grid-row: 1/2;
    margin: 0;
  }
  .l-nav-list__item.is-about .l-nav-list__bnr {
    grid-column: 1/3;
    grid-row: 2/3;
  }
  .l-nav-list__item-head {
    pointer-events: none;
  }
  .l-nav-list__child-wrap {
    display: block !important;
    padding-top: 14px;
  }
  .l-nav-list__child {
    margin-top: 14px;
  }
  .l-nav-list__child.is-inline {
    display: flex;
    flex-wrap: wrap;
  }
  .l-nav-list__child.is-inline .l-nav-list__child-item {
    display: flex;
  }
  .l-nav-list__child.is-inline .l-nav-list__child-item + .l-nav-list__child-item {
    margin: 0;
  }
  .l-nav-list__child.is-inline .l-nav-list__child-item + .l-nav-list__child-item::before {
    content: "/";
    margin: 0 1em;
  }
  .l-nav-list__bnr.is-col3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4% 6%;
  }
}

/* .l-nav-links
================================================ */
.l-nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 40px -14px -14px;
}
.l-nav-links__item {
  margin: 0 14px 14px;
}
.l-nav-links__item-link {
  color: rgb(var(--darkgray));
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: var(--line_height_head);
}
.l-nav-links__item-link[target]::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 8px;
  vertical-align: middle;
  color: rgb(var(--gray));
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10.26 8.04"><g fill="currentColor"><path d="M3.13 0h7.13v4.92H3.13z"/><path d="M7.88 8.04H0v-6h1.48v4.52h6.4v1.48Z"/></g></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10.26 8.04"><g fill="currentColor"><path d="M3.13 0h7.13v4.92H3.13z"/><path d="M7.88 8.04H0v-6h1.48v4.52h6.4v1.48Z"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  margin: 0 0 0 3px;
}

/* .l-nav-lang
================================================ */
.l-nav-lang {
  align-self: end;
  margin: 40px -25px 0;
}
.l-nav-lang__head {
  box-sizing: border-box;
  background: rgb(var(--main));
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: var(--line_height_head);
  padding: 8px 25px;
  text-align: center;
}
.l-nav-lang__head-ico {
  margin: 0 6px 4px 0;
  width: 18px;
}
.l-nav-lang__list {
  display: flex;
}
.l-nav-lang__list-item {
  box-sizing: border-box;
  width: 20%;
}
.l-nav-lang__list-item + .l-nav-lang__list-item {
  border-left: 1px solid #cdd0d6;
}
.l-nav-lang__list-item-in {
  background: #fff;
  color: rgb(var(--main));
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  height: 50px;
}
.l-nav-lang__list-item-in.is-current {
  background: rgb(var(--base_gray));
  color: rgb(var(--subtxt));
}

/* .l-nav-overlay
================================================ */
.l-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

/* .l-ie-attention
================================================ */
.l-ie-attention {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  font-weight: 700;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  box-sizing: border-box;
}
.l-ie-attention__txt {
  font-size: 3rem;
  margin-bottom: 18px;
}
.l-ie-attention__note {
  color: #989898;
}
.l-ie-attention__note .l-ie-attention__note-link {
  display: inline-block;
}
.l-ie-attention__note-link {
  font-size: 1.8rem;
  border-bottom: 1px solid;
  position: relative;
  margin-right: 25px;
  display: inline-block;
}
.l-ie-attention__note-link::after {
  content: "";
  position: absolute;
  right: -18px;
  top: 13px;
  width: 11px;
  height: 11px;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2012%2012%22%3E%20%3Cg%20id%3D%22link%22%20transform%3D%22translate(0.5%200.5)%22%3E%20%3Crect%20id%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2_23829%22%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%2023829%22%20width%3D%228%22%20height%3D%228%22%20transform%3D%22translate(3)%22%20fill%3D%22none%22%20stroke%3D%22%23989898%22%20stroke-width%3D%221%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_4323%22%20data-name%3D%22%E3%83%91%E3%82%B9%204323%22%20d%3D%22M688%2C718.025h-6v-6%22%20transform%3D%22translate(-682%20-707.025)%22%20fill%3D%22none%22%20stroke%3D%22%23989898%22%20stroke-width%3D%221%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center/100%;
}

/* .l-loading
================================================== */
.l-loading {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}
.l-loading.is-animated {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
.l-loading__bg {
  height: 100%;
  width: 100%;
}
.l-loading__bg-in {
  display: block;
  background: #fff;
  position: absolute;
  top: 0;
  bottom: -10%;
  transform: skewX(15deg);
  width: 100%;
}
.l-loading__bg-in.is-left {
  left: -48%;
}
.l-loading__bg-in.is-right {
  right: -48%;
}
.l-loading__line {
  background: #fff;
  position: absolute;
  top: 0;
  left: 24%;
  bottom: -50%;
  transform-origin: top center;
  transform: rotate(-15deg) scaleY(0);
  width: 1px;
}
.l-loading__logo {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 202px;
}
@media all and (min-width: 768px) {
  .l-loading__logo {
    width: 404px;
  }
}
@media all and (min-width: 1260px) {
  .l-loading__bg-in {
    transform: skewX(46deg);
  }
  .l-loading__line {
    left: 18%;
    transform: rotate(-46deg) scaleY(0);
  }
}

/* .l-loading-bgfade
================================================== */
.l-loading-bgfade {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  transition: all 0s ease 3s;
}
.l-loading-bgfade.is-animated {
  visibility: hidden;
  pointer-events: none;
}
.l-loading-bgfade__bg {
  position: absolute;
  inset: 0;
  background: #fff;
  transition: opacity 0.8s ease;
}
.l-loading-bgfade__bg.is-animated {
  opacity: 0;
}

/* .l-progress
================================================== */
.l-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  text-align: center;
  color: #fff;
}
.l-progress__txt {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 9999;
  transform: translate(-50%, -50%);
  max-width: 500px;
  width: calc(100% - 40px);
  margin: 0 auto;
  font-size: clamp(2rem, 1.4198895028rem + 1.546961326vw, 3.4rem);
  color: #fff;
  font-weight: bold;
}
.l-progress__txt span {
  font-size: clamp(1.4rem, 1.1513812155rem + 0.6629834254vw, 2rem);
  font-weight: normal;
}
.l-progress__txt svg {
  width: 0;
  margin: 0 auto;
  height: 10px;
  border: 3px solid rgb(var(--white));
  border-radius: 20px;
  background: rgb(var(--white));
  box-sizing: border-box;
}
.l-progress__txt svg path:nth-child(2) {
  stroke: rgb(var(--main));
}
.l-progress .progressbar-text {
  top: calc(50% - 35px) !important;
}
.l-progress__cover {
  height: 100%;
  width: 100%;
  display: block;
  background: #fff;
  position: absolute;
  top: 0;
  bottom: -10%;
  background-color: rgb(var(--main));
  transition: all 0.2s cubic-bezier(0.04, 0.435, 0.315, 0.9);
  transform: skewX(15deg) scaleY(1);
}
.l-progress__cover.is-up {
  left: -48%;
  transition: all 0.6s;
}
.l-progress__cover.is-up.coveranime {
  left: -150%;
}
.l-progress__cover.is-down {
  right: -48%;
  transition: all 0.6s;
}
.l-progress__cover.is-down.coveranime {
  right: -150%;
}
@media all and (min-width: 1260px) {
  .l-progress__cover {
    transform: skewX(46deg);
  }
}

/* .l-main-img HOME
================================================ */
.l-main-img {
  position: relative;
}
.l-main-img__inner {
  position: relative;
  overflow: hidden;
}
.l-main-img-slider {
  --swiper-pagination-color: #fff;
  --swiper-pagination-bullet-size: 16px;
  --swiper-pagination-bullet-width: 16px;
  --swiper-pagination-bullet-height: 2px;
  --swiper-pagination-bullet-inactive-color: #fff;
  --swiper-pagination-bullet-horizontal-gap: 6px;
  --swiper-pagination-bullet-vertical-gap: 4px;
}
.l-main-img-slider.is-hide-img .l-main-img-slider__item-img {
  opacity: 0;
}
.l-main-img-slider .swiper-pagination {
  bottom: 4px !important;
}
.l-main-img-slider .swiper-pagination .swiper-pagination-bullet {
  border-radius: 0;
}
.l-main-img-slider__item.swiper-slide-active .l-main-img-slider__item-area-txt {
  opacity: 1;
}
.l-main-img-slider__item.is-animated .js-c-split-txt span {
  opacity: 1;
  transform: translateX(0);
}
.l-main-img-slider__item.is-animated .l-main-img-slider__item-en-in {
  -webkit-clip-path: inset(0 0 0 1px round 50px);
  clip-path: inset(0 0 0 1px round 50px);
  transition: -webkit-clip-path 0.53s ease 0.3s;
  transition: clip-path 0.53s ease 0.3s;
  transition: clip-path 0.53s ease 0.3s, -webkit-clip-path 0.53s ease 0.3s;
}
.l-main-img-slider__item.is-animated .l-main-img-slider__item-en::before {
  opacity: 1;
  max-width: 3.5em;
  transition-delay: 0.1s;
  transition: opacity 0s ease 0.3s, max-width 0.3s ease 0.3s;
}
.l-main-img-slider__item.is-animated .l-main-img-slider__item-en::after {
  opacity: 1;
  max-width: 2.9em;
  transition: opacity 0.3s ease, max-width 0.29s ease 0.3s;
}
.l-main-img-slider__item.is-animated .l-main-img-slider__item-head {
  opacity: 1;
  transform: translateX(0);
}
.l-main-img-slider__item.is-animated .l-main-img-slider__item-txt {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.6s ease 1.5s, transform 0.6s ease 1.5s;
}
.l-main-img-slider__item.is-animated .l-main-img-slider__item-txt.is-early {
  transition-delay: 1.1s;
}
.l-main-img-slider__item.is-animated .l-main-img-slider__item-lbl {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}
.l-main-img-slider__item.is-animated .l-main-img-slider__item-lbl.is-early {
  transition-delay: 1.1s;
}
.l-main-img-slider__item.is-animated .l-main-img-slider__item-copy {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.6s ease 1.1s, transform 0.6s ease 1.1s;
}
.l-main-img-slider__item.is-animated .l-main-img-slider__item-copy.is-early {
  transition-delay: 1.1s;
}
.l-main-img-slider__item.is-animated .l-main-img-slider__item-btn {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.6s ease 1.5s, transform 0.6s ease 1.5s;
}
.l-main-img-slider__item.is-animated .l-main-img-slider__item-btn.is-early {
  transition-delay: 1.1s;
}
.l-main-img-slider__item:not(.is-animated) .js-c-split-txt span {
  transition-delay: 0s;
}
.l-main-img-slider__item.is-garou .l-main-img-slider__item-area-txt {
  padding: 25px;
  top: 0;
  transform: none;
}
.l-main-img-slider__item.is-garou .l-main-img-slider__item-txt {
  margin-top: 0;
  width: 40%;
  max-width: 260px;
}
.l-main-img-slider__item.is-fancontents .l-main-img-slider__item-area-txt {
  top: calc(50% - 11px);
}
.l-main-img-slider__item.is-fancontents .l-main-img-slider__item-head {
  font-size: clamp(3rem, 2.1712707182rem + 2.2099447514vw, 5rem);
  margin: 10px 0;
}
.l-main-img-slider__item.is-fancontents .l-main-img-slider__item-copy {
  transition-delay: 2.6;
}
.l-main-img-slider__item-in {
  position: relative;
  display: block;
}
.l-main-img-slider__item-img {
  position: relative;
}
.l-main-img-slider__item-img::before {
  content: "";
  display: block;
  padding-top: 106.7708333333%;
}
.l-main-img-slider__item-img img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.l-main-img-slider__item-area-txt {
  box-sizing: border-box;
  padding: 20px 25px 25px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.l-main-img-slider__item-en {
  position: relative;
  box-sizing: border-box;
  font-size: clamp(1.1rem, 1.0171270718rem + 0.2209944751vw, 1.3rem);
  line-height: 1.05;
  margin-bottom: 1.4em;
  padding-left: 1px;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
}
.l-main-img-slider__item-en-in {
  background: #fff;
  display: block;
  border-radius: 999px;
  padding: 5px 15px 4px 4em;
  -webkit-clip-path: inset(0 100% 0 2px round 999px);
  clip-path: inset(0 100% 0 2px round 999px);
}
.l-main-img-slider__item-en::before, .l-main-img-slider__item-en::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  border-radius: 999px;
  transition: all 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.l-main-img-slider__item-en::before {
  left: 1px;
  background: rgb(var(--accent));
  max-width: 1.7em;
  opacity: 0;
}
.l-main-img-slider__item-en::after {
  background: rgb(var(--main));
  max-width: 1.8em;
  opacity: 0;
}
.l-main-img-slider__item-head {
  color: #fff;
  font-size: clamp(3rem, 2.7099447514rem + 0.773480663vw, 3.7rem);
  font-weight: 700;
  line-height: 1.5;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0s ease 0.6s;
}
.l-main-img-slider__item-head.is-en {
  font-size: clamp(3.2rem, 2.9099447514rem + 0.773480663vw, 3.9rem);
  line-height: 1;
}
.l-main-img-slider__item-txt {
  color: #fff;
  font-size: clamp(1.2rem, 1.1171270718rem + 0.2209944751vw, 1.4rem);
  letter-spacing: var(--letter_spacing_wide);
  margin-top: 1.23em;
  line-height: var(--line_height_head);
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0s ease 0.6s;
}
.l-main-img-slider__item-lbl {
  display: inline-block;
  padding: 0 14px;
  font-size: 1rem;
  border-radius: 8px;
  border: 1px solid rgb(var(--white));
  text-align: center;
  color: rgb(var(--white));
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0s ease 0.6s;
}
.l-main-img-slider__item-copy {
  width: 260px;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0s ease 0.6s;
}
.l-main-img-slider__item-btn {
  margin-left: 0;
  width: 170px;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0s ease 0.6s;
}
.l-main-img-bnr {
  box-sizing: border-box;
  background: rgba(var(--black), 0.7);
  color: #fff;
  height: 48px;
  position: absolute;
  top: 14px;
  right: 0;
  z-index: 5;
  width: 56px;
  transform: translateX(calc(100% - 10px));
  transition: width 0.6s, transform 0.6s 0.8s var(--easeOutQuart);
}
.l-main-img-bnr.is-animated {
  transform: translateX(0);
}
.l-main-img-bnr.is-open {
  width: 196px;
}
.l-main-img-bnr.is-open .l-main-img-bnr__arw::after {
  transform: translate(-50%, -50%) scale(1, 1);
}
.l-main-img-bnr__arw {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.l-main-img-bnr__arw::before {
  content: "";
  background: rgb(var(--main));
  display: block;
  height: 100%;
  width: 10px;
}
.l-main-img-bnr__arw::after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 7px;
  vertical-align: middle;
  color: rgb(var(--white));
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 3.6 7"><path d="M.51 7 0 6.42 2.57 3.5 0 .58.51 0 3.6 3.5.51 7Z" fill="currentColor" /></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 3.6 7"><path d="M.51 7 0 6.42 2.57 3.5 0 .58.51 0 3.6 3.5.51 7Z" fill="currentColor" /></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.l-main-img-bnr__sub {
  cursor: pointer;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 8px 0 16px;
  transition: opacity 0.3s ease;
  transition-delay: 0.3s;
}
.l-main-img-bnr__sub-txt {
  font-size: 1rem;
  font-weight: 700;
  line-height: var(--line_height_tight);
  text-align: center;
}
.l-main-img-bnr__main {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  height: 100%;
}
.l-main-img-bnr__main-link {
  box-sizing: border-box;
  display: flex;
  align-items: flex-end;
  height: 100%;
  padding-left: 22px;
  position: relative;
}
.l-main-img-bnr__main-txt {
  font-size: 1rem;
  line-height: var(--line_height_head);
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(calc(100% + 2px));
  text-shadow: 0 0 5px rgb(var(--black));
  text-align: center;
  width: 100%;
}
@media all and (min-width: 768px) {
  .l-main-img-slider {
    --swiper-pagination-bullet-size: 30px;
    --swiper-pagination-bullet-width: 30px;
    --swiper-pagination-bullet-height: 4px;
  }
  .l-main-img-slider .swiper-pagination {
    bottom: 6px !important;
  }
  .l-main-img-slider__item-area-txt {
    padding-inline: 80px;
  }
}
@media all and (min-width: 960px) {
  .l-main-img-slider__item.is-garou .l-main-img-slider__item-area-txt {
    top: 12%;
    transform: translate(-50%, -50%);
  }
  .l-main-img-slider__item.is-garou .l-main-img-slider__item-txt {
    width: 14%;
    max-width: 260px;
  }
  .l-main-img-slider__item.is-history .l-main-img-slider__item-txt {
    width: 50.6%;
    max-width: 800px;
  }
  .l-main-img-slider__item-img {
    min-height: 400px;
  }
  .l-main-img-slider__item-img::before {
    padding-top: 32.5520833333%;
  }
  .l-main-img-slider__item-img img {
    -o-object-position: left center;
    object-position: left center;
  }
  .l-main-img-slider__item-area-txt {
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: var(--contents_width_with_padding);
  }
  .l-main-img-slider__item-copy {
    width: 426px;
  }
  .l-main-img-slider__item-en {
    margin-bottom: 1.5em;
  }
  .l-main-img-slider__item-btn {
    margin-top: 40px;
  }
  .l-main-img-bnr {
    height: 82px;
    top: 50px;
    width: 94px;
  }
  .l-main-img-bnr.is-open {
    width: 352px;
  }
  .l-main-img-bnr__arw::before {
    width: 16px;
  }
  .l-main-img-bnr__sub {
    padding: 0 16px 0 30px;
  }
  .l-main-img-bnr__sub-txt {
    font-size: 1.6rem;
  }
  .l-main-img-bnr__main-link {
    padding-left: 36px;
  }
  .l-main-img-bnr__main-txt {
    font-size: 1.3rem;
  }
}
@media all and (min-width: 1260px) {
  .l-main-img-bnr.is-animated .l-main-img-bnr__main-img {
    opacity: 1;
    transform: translateX(0);
  }
  .l-main-img-bnr.is-animated .l-main-img-bnr__main-txt {
    opacity: 1;
    transform: translate(0, calc(100% + 2px));
  }
  .l-main-img-bnr__main-img {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s var(--easeOutQuart);
    transition-delay: 1.1s;
  }
  .l-main-img-bnr__main-txt {
    opacity: 0;
    transform: translate(-30px, calc(100% + 2px));
    transition: all 0.6s var(--easeOutQuart);
    transition-delay: 1.1s;
  }
}

/* .l-sub-img
================================================ */
.l-sub-img__inner {
  padding-top: 30px;
}
.l-sub-img__label {
  box-sizing: border-box;
  background: #fff;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: var(--line_height_tight);
  margin-bottom: 6px;
  overflow: hidden;
  padding: 4px 15px 4px 52px;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
}
.l-sub-img__label::before, .l-sub-img__label::after {
  content: "";
  border-radius: 50px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}
.l-sub-img__label::before {
  background: rgb(var(--accent));
  width: 44px;
}
.l-sub-img__label::after {
  background: rgb(var(--main));
  width: 34px;
}
.l-sub-img__label.js-c-anime-elem {
  -webkit-clip-path: inset(0 100% 0 0 round 0 50px 50px 0);
  clip-path: inset(0 100% 0 0 round 0 50px 50px 0);
  transition: -webkit-clip-path 0.6s 0.3s;
  transition: clip-path 0.6s 0.3s;
  transition: clip-path 0.6s 0.3s, -webkit-clip-path 0.6s 0.3s;
}
.l-sub-img__label.is-animated {
  -webkit-clip-path: inset(0 0 0 0 round 0);
  clip-path: inset(0 0 0 0 round 0);
}
.l-sub-img__wrap.js-c-anime-elem {
  -webkit-clip-path: inset(0 100% 0 0 round 0 50px 50px 0);
  clip-path: inset(0 100% 0 0 round 0 50px 50px 0);
  transition: -webkit-clip-path 1.2s 0.3s;
  transition: clip-path 1.2s 0.3s;
  transition: clip-path 1.2s 0.3s, -webkit-clip-path 1.2s 0.3s;
}
.l-sub-img__wrap.is-animated {
  -webkit-clip-path: inset(0 0 0 0 round 0);
  clip-path: inset(0 0 0 0 round 0);
}
.l-sub-img__en {
  font-size: 3.2rem;
  line-height: var(--line_height_head);
}
.l-sub-img__head {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: var(--line_height_head);
}
@media all and (min-width: 1260px) {
  .l-sub-img__inner {
    padding-top: 125px;
  }
  .l-sub-img__label {
    font-size: 1.3rem;
    margin-bottom: 8px;
    padding: 2px 20px 2px 52px;
  }
  .l-sub-img__wrap {
    display: flex;
    align-items: center;
  }
  .l-sub-img__en {
    font-size: 3.6rem;
    margin-right: 25px;
  }
  .l-sub-img__head {
    font-size: 2rem;
  }
}

/* l-sub2-img
================================================ */
@-webkit-keyframes sub2-img-txt {
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes sub2-img-txt {
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.l-sub2-img {
  position: relative;
  color: #fff;
}
.l-sub2-img__en {
  line-height: 1.1;
  font-size: 2.2rem;
  font-size: clamp(2.2rem, 1.499rem + 1.8vw, 3.6rem);
}
.l-sub2-img__head {
  letter-spacing: 0;
  font-weight: 400;
  font-size: 1.3rem;
  font-size: clamp(1.3rem, 1.05rem + 0.8vw, 1.8rem);
}
.l-sub2-img__copy-en {
  margin-top: 24px;
  margin-bottom: 10px;
  line-height: 1.1;
  font-size: clamp(3rem, 2.7099447514rem + 0.773480663vw, 3.7rem);
}
.l-sub2-img__copy-txt {
  font-weight: 600;
  letter-spacing: 0;
  font-size: clamp(1.2rem, 1.1171270718rem + 0.2209944751vw, 1.4rem);
}
.l-sub2-img__en, .l-sub2-img__head, .l-sub2-img__copy-en, .l-sub2-img__copy-txt {
  -webkit-animation: sub2-img-txt 0.6s 0.6s forwards;
  animation: sub2-img-txt 0.6s 0.6s forwards;
  transform: translateX(-20px);
  opacity: 0;
}
.l-sub2-img__area-txt {
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 5.3333333333vw;
  padding-right: 6.6666666667vw;
  padding-left: 6.6666666667vw;
  padding-bottom: 12vw;
}
.l-sub2-img__area-txt.is-service .l-sub2-img__copy-txt, .l-sub2-img__area-txt.is-company .l-sub2-img__copy-txt, .l-sub2-img__area-txt.is-fancontents .l-sub2-img__copy-txt {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}
.l-sub2-img__img img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media all and (min-width: 960px) {
  .l-sub2-img__area-txt {
    left: 50%;
    transform: translateX(-50%);
    justify-content: flex-start;
    max-width: var(--contents_width_wide_with_padding);
    padding-top: 3.59375vw;
    padding-bottom: 3.59375vw;
    padding-right: calc(var(--body_padding_side) / 2);
    padding-left: calc(var(--body_padding_side) / 2);
  }
  .l-sub2-img__area-txt.is-service, .l-sub2-img__area-txt.is-company, .l-sub2-img__area-txt.is-fancontents {
    max-width: var(--contents_width_with_padding);
  }
  .l-sub2-img__area-txt.is-fancontents .l-sub2-img__copy-en {
    font-size: clamp(3rem, 2.1712707182rem + 2.2099447514vw, 5rem);
    margin: 10px 0;
  }
  .l-sub2-img__en {
    font-size: clamp(2.2rem, 1.8vw, 3.6rem);
  }
  .l-sub2-img__head {
    font-size: clamp(1.3rem, 0.9vw, 1.8rem);
  }
  .l-sub2-img__copy-en {
    margin-top: 5.2083333333vw;
    margin-bottom: 1.0416666667vw;
  }
  .l-sub2-img__en, .l-sub2-img__head, .l-sub2-img__copy-en, .l-sub2-img__copy-txt {
    transform: translateX(-50px);
  }
}
@media all and (min-width: 1740px ) {
  .l-sub2-img__area-txt {
    padding-top: 69px;
    padding-bottom: 69px;
  }
  .l-sub2-img__head {
    margin-bottom: 100px;
  }
  .l-sub2-img__copy-en {
    margin-bottom: 20px;
  }
  .l-sub2-img__en, .l-sub2-img__head, .l-sub2-img__copy-en, .l-sub2-img__copy-txt {
    transform: translateX(-60px);
  }
}

/* .l-sidebar
================================================== */
.js-c-anime-elem[data-anime=fadein-up], .js-c-anime-elem [data-anime=fadein-up] {
  opacity: 0;
  transform: translateY(45px);
  transition: all 1.2s ease;
}

.js-c-anime-elem[data-anime=fadein-left], .js-c-anime-elem [data-anime=fadein-left] {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease;
}

.js-c-anime-elem[data-anime=fadein-right], .js-c-anime-elem [data-anime=fadein-right] {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.6s ease;
}

.js-c-anime-elem[data-anime=fadein], .js-c-anime-elem [data-anime=fadein] {
  opacity: 0;
  transition: all 0.6s ease;
}

.js-c-anime-elem[data-anime=img-zoomout], .js-c-anime-elem [data-anime=img-zoomout] {
  overflow: hidden;
}
.js-c-anime-elem[data-anime=img-zoomout] img, .js-c-anime-elem [data-anime=img-zoomout] img {
  transform: scale(1.05);
  transition: transform 1s ease-out;
}
.js-c-anime-elem[data-anime=img-zoomout][data-anime-delay="0.1"] img, .js-c-anime-elem [data-anime=img-zoomout][data-anime-delay="0.1"] img {
  transition-delay: 0.1s;
}
.js-c-anime-elem[data-anime=img-zoomout][data-anime-delay="0.2"] img, .js-c-anime-elem [data-anime=img-zoomout][data-anime-delay="0.2"] img {
  transition-delay: 0.2s;
}
.js-c-anime-elem[data-anime=img-zoomout][data-anime-delay="0.3"] img, .js-c-anime-elem [data-anime=img-zoomout][data-anime-delay="0.3"] img {
  transition-delay: 0.3s;
}
.js-c-anime-elem[data-anime=img-zoomout][data-anime-delay="0.4"] img, .js-c-anime-elem [data-anime=img-zoomout][data-anime-delay="0.4"] img {
  transition-delay: 0.4s;
}
.js-c-anime-elem[data-anime=img-zoomout][data-anime-delay="0.5"] img, .js-c-anime-elem [data-anime=img-zoomout][data-anime-delay="0.5"] img {
  transition-delay: 0.5s;
}
.js-c-anime-elem[data-anime=img-zoomout][data-anime-delay="0.6"] img, .js-c-anime-elem [data-anime=img-zoomout][data-anime-delay="0.6"] img {
  transition-delay: 0.6s;
}
.js-c-anime-elem[data-anime=img-zoomout][data-anime-delay="0.7"] img, .js-c-anime-elem [data-anime=img-zoomout][data-anime-delay="0.7"] img {
  transition-delay: 0.7s;
}
.js-c-anime-elem[data-anime=img-zoomout][data-anime-delay="0.8"] img, .js-c-anime-elem [data-anime=img-zoomout][data-anime-delay="0.8"] img {
  transition-delay: 0.8s;
}
.js-c-anime-elem[data-anime=img-zoomout][data-anime-delay="0.9"] img, .js-c-anime-elem [data-anime=img-zoomout][data-anime-delay="0.9"] img {
  transition-delay: 0.9s;
}
.js-c-anime-elem[data-anime=img-zoomout][data-anime-delay="1"] img, .js-c-anime-elem [data-anime=img-zoomout][data-anime-delay="1"] img {
  transition-delay: 1s;
}
.js-c-anime-elem[data-anime=img-zoomout][data-anime-delay="1.1"] img, .js-c-anime-elem [data-anime=img-zoomout][data-anime-delay="1.1"] img {
  transition-delay: 1.1s;
}
.js-c-anime-elem[data-anime=img-zoomout][data-anime-delay="1.2"] img, .js-c-anime-elem [data-anime=img-zoomout][data-anime-delay="1.2"] img {
  transition-delay: 1.2s;
}
.js-c-anime-elem[data-anime=img-zoomout][data-anime-delay="1.3"] img, .js-c-anime-elem [data-anime=img-zoomout][data-anime-delay="1.3"] img {
  transition-delay: 1.3s;
}
.js-c-anime-elem[data-anime=img-zoomout][data-anime-delay="1.4"] img, .js-c-anime-elem [data-anime=img-zoomout][data-anime-delay="1.4"] img {
  transition-delay: 1.4s;
}
.js-c-anime-elem[data-anime=img-zoomout][data-anime-delay="1.5"] img, .js-c-anime-elem [data-anime=img-zoomout][data-anime-delay="1.5"] img {
  transition-delay: 1.5s;
}
.js-c-anime-elem[data-anime=img-zoomout][data-anime-delay="1.6"] img, .js-c-anime-elem [data-anime=img-zoomout][data-anime-delay="1.6"] img {
  transition-delay: 1.6s;
}
.js-c-anime-elem[data-anime=img-zoomout][data-anime-delay="1.7"] img, .js-c-anime-elem [data-anime=img-zoomout][data-anime-delay="1.7"] img {
  transition-delay: 1.7s;
}
.js-c-anime-elem[data-anime=img-zoomout][data-anime-delay="1.8"] img, .js-c-anime-elem [data-anime=img-zoomout][data-anime-delay="1.8"] img {
  transition-delay: 1.8s;
}
.js-c-anime-elem[data-anime=img-zoomout][data-anime-delay="1.9"] img, .js-c-anime-elem [data-anime=img-zoomout][data-anime-delay="1.9"] img {
  transition-delay: 1.9s;
}
.js-c-anime-elem[data-anime=img-zoomout][data-anime-delay="2"] img, .js-c-anime-elem [data-anime=img-zoomout][data-anime-delay="2"] img {
  transition-delay: 2s;
}

.js-c-anime-elem[data-anime-delay="0.1"], .js-c-anime-elem [data-anime-delay="0.1"] {
  transition-delay: 0.1s;
}
.js-c-anime-elem[data-anime-delay="0.2"], .js-c-anime-elem [data-anime-delay="0.2"] {
  transition-delay: 0.2s;
}
.js-c-anime-elem[data-anime-delay="0.3"], .js-c-anime-elem [data-anime-delay="0.3"] {
  transition-delay: 0.3s;
}
.js-c-anime-elem[data-anime-delay="0.4"], .js-c-anime-elem [data-anime-delay="0.4"] {
  transition-delay: 0.4s;
}
.js-c-anime-elem[data-anime-delay="0.5"], .js-c-anime-elem [data-anime-delay="0.5"] {
  transition-delay: 0.5s;
}
.js-c-anime-elem[data-anime-delay="0.6"], .js-c-anime-elem [data-anime-delay="0.6"] {
  transition-delay: 0.6s;
}
.js-c-anime-elem[data-anime-delay="0.7"], .js-c-anime-elem [data-anime-delay="0.7"] {
  transition-delay: 0.7s;
}
.js-c-anime-elem[data-anime-delay="0.8"], .js-c-anime-elem [data-anime-delay="0.8"] {
  transition-delay: 0.8s;
}
.js-c-anime-elem[data-anime-delay="0.9"], .js-c-anime-elem [data-anime-delay="0.9"] {
  transition-delay: 0.9s;
}
.js-c-anime-elem[data-anime-delay="1"], .js-c-anime-elem [data-anime-delay="1"] {
  transition-delay: 1s;
}
.js-c-anime-elem[data-anime-delay="1.1"], .js-c-anime-elem [data-anime-delay="1.1"] {
  transition-delay: 1.1s;
}
.js-c-anime-elem[data-anime-delay="1.2"], .js-c-anime-elem [data-anime-delay="1.2"] {
  transition-delay: 1.2s;
}
.js-c-anime-elem[data-anime-delay="1.3"], .js-c-anime-elem [data-anime-delay="1.3"] {
  transition-delay: 1.3s;
}
.js-c-anime-elem[data-anime-delay="1.4"], .js-c-anime-elem [data-anime-delay="1.4"] {
  transition-delay: 1.4s;
}
.js-c-anime-elem[data-anime-delay="1.5"], .js-c-anime-elem [data-anime-delay="1.5"] {
  transition-delay: 1.5s;
}
.js-c-anime-elem[data-anime-delay="1.6"], .js-c-anime-elem [data-anime-delay="1.6"] {
  transition-delay: 1.6s;
}
.js-c-anime-elem[data-anime-delay="1.7"], .js-c-anime-elem [data-anime-delay="1.7"] {
  transition-delay: 1.7s;
}
.js-c-anime-elem[data-anime-delay="1.8"], .js-c-anime-elem [data-anime-delay="1.8"] {
  transition-delay: 1.8s;
}
.js-c-anime-elem[data-anime-delay="1.9"], .js-c-anime-elem [data-anime-delay="1.9"] {
  transition-delay: 1.9s;
}
.js-c-anime-elem[data-anime-delay="2"], .js-c-anime-elem [data-anime-delay="2"] {
  transition-delay: 2s;
}
.js-c-anime-elem[data-anime-delay="2.1"], .js-c-anime-elem [data-anime-delay="2.1"] {
  transition-delay: 2.1s;
}
.js-c-anime-elem[data-anime-delay="2.2"], .js-c-anime-elem [data-anime-delay="2.2"] {
  transition-delay: 2.2s;
}
.js-c-anime-elem[data-anime-delay="2.3"], .js-c-anime-elem [data-anime-delay="2.3"] {
  transition-delay: 2.3s;
}
.js-c-anime-elem[data-anime-delay="2.4"], .js-c-anime-elem [data-anime-delay="2.4"] {
  transition-delay: 2.4s;
}
.js-c-anime-elem[data-anime-delay="2.5"], .js-c-anime-elem [data-anime-delay="2.5"] {
  transition-delay: 2.5s;
}
.js-c-anime-elem[data-anime-delay="2.6"], .js-c-anime-elem [data-anime-delay="2.6"] {
  transition-delay: 2.6s;
}
.js-c-anime-elem[data-anime-delay="2.7"], .js-c-anime-elem [data-anime-delay="2.7"] {
  transition-delay: 2.7s;
}
.js-c-anime-elem[data-anime-delay="2.8"], .js-c-anime-elem [data-anime-delay="2.8"] {
  transition-delay: 2.8s;
}
.js-c-anime-elem[data-anime-delay="2.9"], .js-c-anime-elem [data-anime-delay="2.9"] {
  transition-delay: 2.9s;
}
.js-c-anime-elem[data-anime-delay="3"], .js-c-anime-elem [data-anime-delay="3"] {
  transition-delay: 3s;
}

.js-c-anime-elem.is-animated[data-anime=fadein-up], .js-c-anime-elem.is-animated [data-anime=fadein-up] {
  opacity: 1;
  transform: translateY(0);
}
.js-c-anime-elem.is-animated[data-anime=fadein-left], .js-c-anime-elem.is-animated [data-anime=fadein-left] {
  opacity: 1;
  transform: translateX(0);
}
.js-c-anime-elem.is-animated[data-anime=fadein-right], .js-c-anime-elem.is-animated [data-anime=fadein-right] {
  opacity: 1;
  transform: translateX(0);
}
.js-c-anime-elem.is-animated[data-anime=fadein], .js-c-anime-elem.is-animated [data-anime=fadein] {
  opacity: 1;
}
.js-c-anime-elem.is-animated[data-anime=img-zoomout] img, .js-c-anime-elem.is-animated [data-anime=img-zoomout] img {
  transform: scale(1);
}

/* .js-c-split-txt
================================================== */
.js-c-anime-elem.is-animated .js-c-split-txt span,
.js-c-split-txt.is-animated span {
  opacity: 1;
  transform: translateX(0);
}

.js-c-split-txt span {
  display: inline-block;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.3s;
  min-width: 0.25em;
}

.js-c-switch-tab {
  cursor: pointer;
}

.js-c-switch-content {
  display: none;
}
.js-c-switch-content.is-active {
  display: block;
}

.js-c-toggle-trigger {
  cursor: pointer;
}

.js-c-toggle-content {
  display: none;
}

/**
 * Swiper 8.4.6
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: January 17, 2023
 */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
  touch-action: pan-y;
}
.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d, .swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  width: var(--swiper-centered-offset-after);
}
.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  height: var(--swiper-centered-offset-after);
}
.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}
.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}
.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-fade .swiper-slide-active, .swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-vertical > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

/* .about-main
================================================== */
.about-main__inner {
  padding-top: 40px;
  padding-bottom: 60px;
}
.about-main__desc {
  margin-bottom: 56px;
}
.about-main-sec + .about-main-sec {
  margin-top: 56px;
}
.about-main-sec__txt + .about-main-sec__txt {
  margin-top: 30px;
}
.about-main-sec__link {
  color: rgb(var(--main));
  text-decoration: underline !important;
}
.about-main-sec__list {
  margin: 40px 0;
}
.about-main-sec__list-item + .about-main-sec__list-item {
  margin-top: 28px;
}
.about-main-sec__list-item.is-234 {
  width: 234px;
}
.about-main-sec__list-item.is-200 {
  width: 200px;
}
.about-main-sec__list-img {
  margin-bottom: 13px;
}
.about-main-sec__list-txt {
  text-align: center;
}
.about-main-sec__list02 {
  margin-top: 38px;
}
.about-main-sec__btn {
  margin-left: 0;
  margin-top: 38px;
}
@media all and (min-width: 768px) {
  .about-main__inner {
    padding-top: 80px;
    padding-bottom: 148px;
  }
  .about-main__desc {
    margin-bottom: 97px;
  }
  .about-main__txt + .about-main__txt {
    margin-top: 40px;
  }
  .about-main-sec + .about-main-sec {
    margin-top: 60px;
  }
  .about-main-sec__txt + .about-main-sec__txt {
    margin-top: 40px;
  }
  .about-main-sec__link:hover {
    text-decoration: underline !important;
  }
  .about-main-sec__list {
    display: grid;
    grid-template-columns: 234px 200px;
    align-items: end;
    gap: 0 15px;
  }
  .about-main-sec__list-item + .about-main-sec__list-item {
    margin-top: 0;
  }
  .about-main-sec__btn {
    margin-left: 0;
    margin-top: 38px;
  }
}

/* .boardmember-mv
================================================== */
.boardmember-mv {
  padding-top: 40px;
}
.boardmember-mv img {
  width: 100%;
}
@media all and (min-width: 768px) {
  .boardmember-mv {
    padding-top: 80px;
  }
}

/* .boardmember-main
================================================== */
.boardmember-main__inner {
  padding-top: 40px;
  padding-bottom: 60px;
}
.boardmember-main-sec + .boardmember-main-sec {
  margin-top: 43px;
}
.boardmember-main-sec__img {
  max-width: 175px;
  width: 100%;
  margin: 0 auto 23px;
}
.boardmember-main-sec__header {
  line-height: var(--line_height_head);
  padding-bottom: 18px;
  margin-bottom: 26px;
  border-bottom: 1px solid rgba(var(--black), 0.6);
}
.boardmember-main-sec__header-position {
  font-size: 1.2rem;
  margin-bottom: 5px;
}
.boardmember-main-sec__header-name {
  font-size: 2.2rem;
  font-weight: 700;
}
.boardmember-main-sec__header-en {
  display: inline-block;
  font-size: 1rem;
  font-weight: 400;
  margin-left: 10px;
  transform: translateY(-3px);
}
@media all and (min-width: 768px) {
  .boardmember-main__inner {
    padding-top: 130px;
    padding-bottom: 148px;
  }
  .boardmember-main-sec {
    display: flex;
  }
  .boardmember-main-sec + .boardmember-main-sec {
    border-top: 1px solid rgb(var(--border));
    margin-top: 60px;
    padding-top: 60px;
  }
  .boardmember-main-sec__img {
    max-width: 315px;
    margin: 0 50px 0 0;
  }
  .boardmember-main-sec__info {
    flex: 1;
  }
  .boardmember-main-sec__header {
    margin-bottom: 30px;
    padding-bottom: 20px;
  }
  .boardmember-main-sec__header-position {
    font-size: 1.7rem;
    margin-bottom: 6px;
  }
  .boardmember-main-sec__header-name {
    font-size: 3.2rem;
  }
  .boardmember-main-sec__header-en {
    font-size: 1.4rem;
    margin-left: 14px;
  }
}

/* company-philosophy
=============================== */
.company-philosophy__inner {
  padding-top: 65px;
  padding-bottom: 74px;
}
.company-philosophy__lead {
  margin-bottom: 59px;
  line-height: 1.5;
  font-weight: 600;
  font-size: 1.8rem;
  font-size: clamp(1.8rem, 1.3027624309rem + 1.3259668508vw, 3rem);
}
.company-philosophy__img {
  margin: 50px auto 0;
}
.company-philosophy__img-item {
  position: relative;
}
.company-philosophy__img-item:nth-child(1) {
  z-index: 3;
}
.company-philosophy__img-item:nth-child(2) {
  margin-top: -3%;
  z-index: 2;
}
.company-philosophy__img-item:nth-child(3) {
  margin-top: -7%;
  z-index: 1;
}
.company-philosophy__img-item img {
  width: 100%;
}
@media all and (min-width: 768px) {
  .company-philosophy__inner {
    padding-top: 140px;
    padding-bottom: 170px;
  }
  .company-philosophy__lead {
    margin-bottom: 80px;
  }
  .company-philosophy__img {
    max-width: 970px;
    margin: 110px auto 0;
  }
}

/* company-philosophy-list
=============================== */
.company-philosophy-list__item {
  margin-bottom: 45px;
}
.company-philosophy-list__item:last-child {
  margin-bottom: 0;
}
.company-philosophy-list__head {
  margin-bottom: 5px;
  line-height: 1.35;
  color: #0080ff;
  font-weight: 700;
  font-size: 1.8rem;
}
.company-philosophy-list__lead {
  font-size: clamp(1.7rem, 1.6171270718rem + 0.2209944751vw, 1.9rem);
  font-weight: bold;
  margin-bottom: 3px;
  line-height: var(--line_height_head);
}
@media all and (min-width: 1260px) {
  .company-philosophy-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 55px;
  }
  .company-philosophy-list__item {
    margin-bottom: 0;
  }
  .company-philosophy-list__head {
    font-size: 3.3rem;
  }
}

/* company-base
======================== */
.company-base {
  position: relative;
}
.company-base::before {
  position: absolute;
  content: "";
  background: linear-gradient(to right top, rgba(0, 100, 192, 0.9), rgba(0, 100, 192, 0.9) 20%, rgba(0, 100, 192, 0.4) 40%, rgba(11, 205, 220, 0.1) 50%, rgba(11, 205, 220, 0) 60%);
  background-position: 80% 100%;
  background-size: 200% 200%;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.company-base__inner {
  box-sizing: border-box;
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 38px 25px;
  color: #fff;
}
.company-base__en {
  margin-bottom: 0.2em;
  line-height: 1.1;
  font-size: 2.2rem;
  font-size: clamp(2.2rem, 1.7856353591rem + 1.1049723757vw, 3.2rem);
}
.company-base__txt {
  line-height: 1.5;
  font-weight: 600;
  font-size: clamp(1.4rem, 1.0685082873rem + 0.8839779006vw, 2.2rem);
}
.company-base__img img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media all and (min-width: 768px) {
  .company-base::before {
    background: linear-gradient(to right top, rgba(0, 100, 192, 0.9), rgba(0, 100, 192, 0.9) 20%, rgba(0, 100, 192, 0.4) 35%, rgba(11, 205, 220, 0.1) 45%, rgba(11, 205, 220, 0) 60%);
  }
  .company-base__inner {
    left: 50%;
    transform: translateX(-50%);
    max-width: var(--contents_width_with_padding);
    padding-bottom: 38px;
    padding-left: calc(var(--body_padding_side) / 2);
    padding-right: calc(var(--body_padding_side) / 2);
  }
}

/* company-info
====================== */
.company-info__inner {
  padding-top: 80px;
}
.company-info__head .c-head01__en {
  margin-top: 13px;
  margin-bottom: 6px;
  line-height: 1.1;
}
@media all and (min-width: 768px) {
  .company-info__inner {
    padding-top: 150px;
  }
}

/* company-info-sec
------------------------------ */
.company-info-sec:not(:last-child) {
  margin-bottom: 57px;
}
.company-info-sec__head {
  margin-bottom: 28px;
  padding-bottom: 5px;
  line-height: 1.5;
  font-weight: 600;
  font-size: 1.8rem;
  border-bottom: 1px solid rgb(var(--darkgray));
}
.company-info-sec__dl {
  display: grid;
  grid-template-columns: 74px auto;
  gap: 20px 10px;
}
.company-info-sec__dl dt {
  line-height: 1.5;
  font-weight: 600;
}
.company-info-sec__dl dd {
  line-height: 1.5;
}
@media all and (min-width: 768px) {
  .company-info-sec__head {
    margin-bottom: 49px;
    padding-bottom: 10px;
    font-size: 2rem;
  }
  .company-info-sec__dl {
    grid-template-columns: 130px auto;
    gap: 35px 25px;
  }
}
@media all and (min-width: 1260px) {
  .company-info-sec__wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
  }
}

/* company-info-history
---------------------------- */
.company-info-history {
  display: grid;
  gap: 17px 0;
}
.company-info-history__year {
  margin-bottom: 3px;
  line-height: 1.5;
  font-weight: 600;
  font-size: 1.5rem;
}
.company-info-history__detail-item {
  display: grid;
  grid-template-columns: 35px auto;
  gap: 20px 8px;
}
.company-info-history__detail-month {
  line-height: 1.5;
  font-weight: 600;
}
.company-info-history__detail-txt {
  line-height: 1.5;
}
@media all and (min-width: 768px) {
  .company-info-history {
    gap: 36px 0;
  }
  .company-info-history__item {
    display: grid;
    grid-template-columns: 70px auto;
    gap: 0;
  }
  .company-info-history__year {
    margin: 0;
    font-size: 1.7rem;
  }
  .company-info-history__detail-item {
    grid-template-columns: 50px auto;
    gap: 0 40px;
  }
  .company-info-history__detail-month {
    text-align: right;
  }
}

/* company-info-bnr
------------------------------ */
.company-info-bnr {
  max-width: 920px;
  margin: 38px auto 0;
}
.company-info-bnr__link {
  display: flex !important;
  border: 1px solid rgb(var(--gray));
  border-radius: 6px;
  overflow: hidden;
}
.company-info-bnr__area-img {
  width: 35.07%;
  aspect-ratio: 114/112;
}
.company-info-bnr__area-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.6s;
}
.company-info-bnr__area-txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 64.93%;
  padding: 0;
  padding-bottom: 11px;
  box-sizing: border-box;
  text-align: center;
}
.company-info-bnr__logo {
  width: 32%;
  margin: 0 auto 4%;
}
.company-info-bnr__head {
  font-size: clamp(1.8rem, 1.0955801105rem + 1.8784530387vw, 3.5rem);
  font-weight: bold;
  line-height: 1.5;
}
.company-info-bnr__date {
  font-size: clamp(1.4rem, 1.0685082873rem + 0.8839779006vw, 2.2rem);
  line-height: 1.5;
}
@media all and (min-width: 768px) {
  .company-info-bnr {
    margin: 60px auto 0;
  }
  .company-info-bnr__area-img {
    width: 47%;
    aspect-ratio: 432/202;
    overflow: hidden;
  }
  .company-info-bnr__area-txt {
    width: 53%;
    padding-bottom: 7px;
  }
  .company-info-bnr__logo {
    width: 27%;
    margin: 0 auto 2%;
  }
  .company-info-bnr__head {
    margin-bottom: 1%;
  }
}
@media all and (min-width: 1260px) {
  .company-info-bnr {
    margin: 123px auto 0;
  }
}
@media (hover: hover) and (pointer: fine) {
  .company-info-bnr__link:hover .company-info-bnr__area-img img {
    transform: scale(1.05);
  }
}

/* company-recruit
================================== */
.company-recruit {
  overflow: hidden;
}
.company-recruit__inner {
  padding-top: 80px;
}
.company-recruit__area-img {
  position: relative;
  display: flex;
  margin-right: -25px;
  margin-left: -25px;
  overflow: hidden;
}
.company-recruit__area-img.is-animated .company-recruit__img {
  -webkit-animation-play-state: running;
  animation-play-state: running;
}
@media all and (max-width: 767px) {
  .company-recruit__area-img {
    overflow: visible;
  }
}
.company-recruit__img {
  -webkit-animation: companyRecruitAnim 200s linear infinite;
  animation: companyRecruitAnim 200s linear infinite;
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}
@media all and (max-width: 767px) {
  .company-recruit__img {
    display: flex;
  }
  .company-recruit__img img {
    display: inline-block;
    margin-right: 10px;
    width: auto;
    height: 235px;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}
@media all and (min-width: 768px) {
  .company-recruit__inner {
    padding-top: clamp(80px, 9.9vw, 140px);
  }
  .company-recruit__area-img {
    display: block;
    margin: 0;
  }
  .company-recruit__img {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 1.35vw;
    -webkit-animation: none;
    animation: none;
  }
  .company-recruit__img.is-reverse .company-recruit__img-item:nth-child(1) {
    grid-area: 1/1/2/2;
  }
  .company-recruit__img.is-reverse .company-recruit__img-item:nth-child(2) {
    grid-area: 1/2/2/3;
  }
  .company-recruit__img.is-reverse .company-recruit__img-item:nth-child(3) {
    grid-area: 1/3/3/4;
  }
  .company-recruit__img.is-reverse .company-recruit__img-item:nth-child(4) {
    grid-area: 1/4/2/5;
  }
  .company-recruit__img.is-reverse .company-recruit__img-item:nth-child(5) {
    grid-area: 1/5/3/7;
  }
  .company-recruit__img.is-reverse .company-recruit__img-item:nth-child(6) {
    grid-area: 2/1/4/2;
  }
  .company-recruit__img.is-reverse .company-recruit__img-item:nth-child(7) {
    grid-area: 2/2/3/3;
  }
  .company-recruit__img.is-reverse .company-recruit__img-item:nth-child(8) {
    grid-area: 2/4/3/5;
  }
  .company-recruit__img.is-reverse .company-recruit__img-item:nth-child(9) {
    grid-area: 3/2/4/3;
  }
  .company-recruit__img.is-reverse .company-recruit__img-item:nth-child(10) {
    grid-area: 3/3/4/4;
  }
  .company-recruit__img.is-reverse .company-recruit__img-item:nth-child(11) {
    grid-area: 3/4/4/5;
  }
  .company-recruit__img.is-reverse .company-recruit__img-item:nth-child(12) {
    grid-area: 3/5/4/6;
  }
  .company-recruit__img.is-reverse .company-recruit__img-item:nth-child(13) {
    grid-area: 3/6/4/7;
  }
  .company-recruit__img-item {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
  }
  .company-recruit__img-item::before {
    content: "";
    display: block;
    padding-top: 60%;
  }
  .company-recruit__img-item:nth-child(1) {
    grid-area: 1/1/3/3;
  }
  .company-recruit__img-item:nth-child(2) {
    grid-area: 1/3/2/4;
  }
  .company-recruit__img-item:nth-child(3) {
    grid-area: 1/4/2/5;
  }
  .company-recruit__img-item:nth-child(4) {
    grid-area: 1/5/2/6;
  }
  .company-recruit__img-item:nth-child(5) {
    grid-area: 1/6/3/7;
  }
  .company-recruit__img-item:nth-child(6) {
    grid-area: 2/3/3/4;
  }
  .company-recruit__img-item:nth-child(7) {
    grid-area: 2/4/4/5;
  }
  .company-recruit__img-item:nth-child(8) {
    grid-area: 2/5/3/6;
  }
  .company-recruit__img-item:nth-child(9) {
    grid-area: 3/1/4/2;
  }
  .company-recruit__img-item:nth-child(10) {
    grid-area: 3/2/4/3;
  }
  .company-recruit__img-item:nth-child(11) {
    grid-area: 3/3/4/4;
  }
  .company-recruit__img-item:nth-child(12) {
    grid-area: 3/5/4/6;
  }
  .company-recruit__img-item:nth-child(13) {
    grid-area: 3/6/4/7;
  }
  .company-recruit__img img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

@-webkit-keyframes companyRecruitAnim {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes companyRecruitAnim {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
/* company-recruit-message
---------------------------------- */
.company-recruit-message {
  position: relative;
  margin-right: -25px;
  margin-left: -25px;
  padding: 54px 25px 50px 150px;
}
.company-recruit-message__en {
  margin-bottom: 0.8em;
  line-height: 1.1;
  color: #0080ff;
  font-size: clamp(1.2rem, 0.9513812155rem + 0.6629834254vw, 1.8rem);
}
.company-recruit-message__main {
  margin-bottom: 0.3em;
  line-height: 1.1;
  font-size: clamp(2.4rem, 1.3226519337rem + 2.8729281768vw, 5rem);
}
.company-recruit-message__txt {
  display: block;
  font-weight: 600;
  font-size: clamp(1.2rem, 1.0756906077rem + 0.3314917127vw, 1.5rem);
  line-height: 1.8;
  margin-top: 11px;
}
.company-recruit-message__img {
  position: absolute;
  top: -90px;
  left: -80px;
  width: 306px;
  height: 435px;
}
@media screen and (max-width: 450px) {
  .company-recruit-message {
    padding-left: 110px;
  }
  .company-recruit-message__img {
    left: -120px;
  }
}
@media all and (min-width: 768px) {
  .company-recruit-message {
    margin: 0;
    padding-top: 4.6875vw;
    padding-bottom: 4.6875vw;
    padding-right: 0;
    padding-left: 34.8101265823%;
  }
  .company-recruit-message__en {
    margin-bottom: 0;
  }
  .company-recruit-message__img {
    top: -8.8541666667vw;
    left: 2.8481012658%;
    width: 38.4810126582%;
  }
}
@media all and (min-width: 1740px ) {
  .company-recruit-message {
    padding-top: 84px;
    padding-bottom: 90px;
    padding-left: 640px;
  }
  .company-recruit-message__txt {
    position: relative;
    display: inline;
    top: -10px;
    margin-top: 0;
    margin-left: 15px;
  }
  .company-recruit-message__img {
    top: -170px;
  }
}

/* company-links
====================== */
.company-links__inner {
  padding-top: 70px;
  padding-bottom: 70px;
}
@media all and (min-width: 768px) {
  .company-links__inner {
    padding-top: clamp(80px, 9.9vw, 140px);
    padding-bottom: clamp(80px, 9.1vw, 110px);
  }
}

/* company-links-list
----------------------------- */
.company-links-list {
  display: grid;
  gap: 40px 0;
}
.company-links-list__in {
  display: block;
}
.company-links-list__img {
  transition: all 0.3s ease;
  border-radius: 5px;
  overflow: hidden;
}
.company-links-list__txt {
  margin-top: 10px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}
.company-links-list__txt:after {
  content: "";
  display: inline-block;
  margin: 0 0 3px 6px;
  content: "";
  display: inline-block;
  width: 10px;
  height: 8px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10.26 8.04"><g fill="currentColor"><path d="M3.13 0h7.13v4.92H3.13z"/><path d="M7.88 8.04H0v-6h1.48v4.52h6.4v1.48Z"/></g></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10.26 8.04"><g fill="currentColor"><path d="M3.13 0h7.13v4.92H3.13z"/><path d="M7.88 8.04H0v-6h1.48v4.52h6.4v1.48Z"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
@media (hover: hover) and (pointer: fine) {
  .company-links-list__in {
    transition: color 0.3s ease;
  }
  .company-links-list__in:hover {
    color: rgb(var(--main));
  }
  .company-links-list__in:hover .company-links-list__img {
    transform: scale(0.97);
  }
}
@media all and (min-width: 768px) {
  .company-links-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 50px;
  }
  .company-links-list__txt {
    margin-top: 21px;
    font-size: 1.6rem;
  }
}
@media all and (min-width: 1400px ) {
  .company-links-list__txt:after {
    width: 13px;
    height: 10px;
    margin: 0 0 7px 12px;
  }
}

/* company-bnrs
============================ */
.company-bnrs__inner {
  padding-top: 70px;
  padding-bottom: 80px;
}
@media all and (min-width: 768px) {
  .company-bnrs__inner {
    padding-top: clamp(80px, 9.9vw, 140px);
    padding-bottom: 120px;
  }
}
@media all and (min-width: 1260px) {
  .company-bnrs__inner {
    padding-bottom: 140px;
  }
}

/* company-bnrs-list
-------------------------------- */
.company-bnrs-list {
  display: grid;
  gap: 20px 0;
}
.company-bnrs-list__in {
  display: block;
}
.company-bnrs-list__img {
  text-align: center;
  transition: all 0.3s ease;
  border-radius: 5px;
  overflow: hidden;
}
.company-bnrs-list__img img {
  border-radius: 6px;
}
@media all and (min-width: 768px) {
  .company-bnrs-list {
    gap: 40px 0;
  }
}
@media (hover: hover) and (pointer: fine) {
  .company-bnrs-list__in:hover .company-bnrs-list__img {
    transform: scale(0.97);
  }
}
@media all and (min-width: 1260px) {
  .company-bnrs-list {
    gap: 30px 0;
  }
}

/* company-parallax
============================= */
.company-parallax {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 100vw;
  height: 141px;
}
.company-parallax img {
  position: relative;
  width: 100%;
  top: 40px;
}
@media all and (min-width: 768px) {
  .company-parallax {
    height: 37.5vw;
  }
  .company-parallax img {
    top: auto;
  }
}
@media all and (min-width: 1400px ) {
  .company-parallax {
    height: 720px;
  }
}

/* .error-page404
================================================ */
.error-page404__inner {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media all and (min-width: 768px) {
  .error-page404__inner {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

/* l-sub2-img
================================================ */
.l-sub2-img__area-txt.is-fancontents {
  display: flex;
  align-content: center;
  justify-content: center;
  padding-top: 0;
  padding-bottom: 50px;
}
.l-sub2-img__area-txt.is-fancontents img {
  max-width: 76.41%;
  -webkit-animation: sub2-img-txt 0.6s 0.7s forwards;
  animation: sub2-img-txt 0.6s 0.7s forwards;
  transform: translateX(-20px);
  opacity: 0;
}
@media all and (min-width: 960px) {
  .l-sub2-img__area-txt.is-fancontents img {
    max-width: 38.98%;
  }
}

/* l-breadcrumb
================================================ */
body#fancontents .l-breadcrumb {
  margin-top: -179px;
}
body#fancontents .l-breadcrumb-list {
  padding-bottom: 29px;
}
body#fancontents .l-breadcrumb-list__txt {
  color: rgb(var(--white));
}

/* fancontents-intro
================================================ */
.fancontents-intro__inner {
  padding-top: 65px;
  padding-bottom: 53px;
}
.fancontents-intro__head {
  margin-bottom: 15px;
  font-size: clamp(1.8rem, 1.2198895028rem + 1.546961326vw, 3.2rem);
  line-height: 1.4;
  text-align: center;
  font-weight: 700;
}
.fancontents-intro__head-in {
  position: relative;
  display: inline-block;
  padding-top: 10px;
  color: rgb(var(--main));
  letter-spacing: 0.08em;
}
.fancontents-intro__head-in[data-ruby]::before {
  content: attr(data-ruby);
  position: absolute;
  top: 2px;
  left: 0;
  right: 0;
  margin: auto;
  color: rgb(var(--black));
  font-size: clamp(1.1rem, 0.9756906077rem + 0.3314917127vw, 1.4rem);
  font-weight: 400;
  letter-spacing: 0;
}
.fancontents-intro__txt {
  font-size: clamp(1.4rem, 1.2342541436rem + 0.4419889503vw, 1.8rem);
}
@media all and (min-width: 768px) {
  .fancontents-intro__inner {
    padding-bottom: 105px;
  }
  .fancontents-intro__head {
    margin-bottom: 52px;
  }
  .fancontents-intro__head-in {
    margin-left: 7px;
    padding-bottom: 10px;
  }
  .fancontents-intro__txt {
    text-align: center;
  }
}

/* fancontents-main
================================================ */
.fancontents-main__head {
  background: url(https://www.snk-corp.co.jp/zh/wp/wp-content/themes/snk-corp/img/fancontents/bg_head01_sp.jpg) no-repeat center/cover;
  text-align: center;
}
.fancontents-main__head-lbl {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 20px;
  margin: 3px 0;
}
.fancontents-main__head-lbl-large {
  margin-right: 6px;
  font-size: clamp(1.2rem, 0.0397790055rem + 3.0939226519vw, 4rem);
  color: rgb(var(--main));
  white-space: nowrap;
}
.fancontents-main__head-lbl-small {
  font-size: clamp(1.1rem, 0.3127071823rem + 2.0994475138vw, 3rem);
  line-height: 1.45;
  color: rgb(var(--white));
  text-align: left;
  word-break: break-word;
}
@media all and (min-width: 768px) {
  .fancontents-main__head-lbl {
    padding: 27px 40px;
    margin: 4px 0;
  }
  .fancontents-main__head-lbl-large {
    position: relative;
    top: -1px;
    margin-right: 20px;
  }
}

@keyframes Btn01Arw {
  0% {
    transform: scale(1, 1) translateX(0);
  }
  75% {
    transform: scale(1, 1) translateX(120%);
  }
  75.01% {
    transform: scale(1, 0) translateX(-120%);
  }
  75.02% {
    transform: scale(1, 1) translateX(-120%);
  }
  100% {
    transform: scale(1, 1) translateX(0);
  }
}
.fancontents-main-bnr01 {
  display: grid;
  grid-gap: 3px;
}
.fancontents-main-bnr01__item:nth-child(1) .fancontents-main-bnr01__item-img {
  bottom: 2.85%;
  right: 5.33%;
  width: 22.13%;
}
.fancontents-main-bnr01__item:nth-child(2) .fancontents-main-bnr01__item-img {
  bottom: 5.7%;
  right: 5.5%;
  width: 38.13%;
}
.fancontents-main-bnr01__item:nth-child(4) .fancontents-main-bnr01__item-img {
  bottom: 6%;
  right: 5.6%;
  width: 38.66%;
}
.fancontents-main-bnr01__item-link {
  position: relative;
  display: block;
  padding-top: 93.35%;
  color: rgb(var(--white));
}
.fancontents-main-bnr01__item-link::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(to right bottom, #0064c0, #0064c0 20%, rgba(0, 100, 192, 0.5) 40%, rgba(11, 205, 220, 0.1) 50%, rgba(11, 205, 220, 0) 60%);
  background-position: 0 50%;
  background-size: 200% 200%;
  z-index: 2;
}
.fancontents-main-bnr01__item-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.fancontents-main-bnr01__item-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.fancontents-main-bnr01__item-area-txt {
  position: absolute;
  top: 12.96%;
  left: 6.84%;
  z-index: 3;
}
.fancontents-main-bnr01__item-head {
  font-size: clamp(2.5rem, 1.6666666667rem + 2.2222222222vw, 5rem);
  line-height: 1.1;
}
.fancontents-main-bnr01__item-en {
  font-size: clamp(1.3rem, 1.1333333333rem + 0.4444444444vw, 1.8rem);
  line-height: 1.5;
}
.fancontents-main-bnr01__item-en::before {
  margin-right: 7px;
  content: "";
  display: inline-block;
  width: 10px;
  height: 8px;
  vertical-align: middle;
  color: rgb(var(--white));
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10.26 8.04"><g fill="currentColor"><path d="M3.13 0h7.13v4.92H3.13z"/><path d="M7.88 8.04H0v-6h1.48v4.52h6.4v1.48Z"/></g></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10.26 8.04"><g fill="currentColor"><path d="M3.13 0h7.13v4.92H3.13z"/><path d="M7.88 8.04H0v-6h1.48v4.52h6.4v1.48Z"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.fancontents-main-bnr01__item-lbl {
  margin-top: 13px;
}
.fancontents-main-bnr01__item-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 228px;
  margin-top: 25px;
  padding: 19px 15px 19px 21px;
  border: 1px solid rgb(var(--white));
  border-radius: 8px;
  box-sizing: border-box;
}
.fancontents-main-bnr01__item-btn-txt {
  font-size: clamp(1.3rem, 1.2333333333rem + 0.1777777778vw, 1.5rem);
  line-height: var(--line_height_tight);
}
.fancontents-main-bnr01__item-btn-ico {
  display: block;
  flex-shrink: 0;
  overflow: hidden;
  margin-left: 10px;
  position: relative;
  height: 13px;
  width: 12px;
}
.fancontents-main-bnr01__item-btn-ico::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 17px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 17"><path fill="currentColor" d="M6.73 0 5.36 1.42l5.91 6.07H0v2h11.28l-5.92 6.09L6.73 17 15 8.5 6.73 0z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 17"><path fill="currentColor" d="M6.73 0 5.36 1.42l5.91 6.07H0v2h11.28l-5.92 6.09L6.73 17 15 8.5 6.73 0z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.fancontents-main-bnr01__item-img {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 5;
}
.fancontents-main-bnr01__item-img img {
  width: 100%;
}
@media all and (min-width: 768px) {
  .fancontents-main-bnr01 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 4px;
  }
  .fancontents-main-bnr01__item-link {
    padding-top: 133.35%;
    border-radius: 6px;
    overflow: hidden;
  }
}
@media (min-width: 768px) and (hover: hover) and (pointer: fine) {
  .fancontents-main-bnr01__item-link::before {
    transition: background 0.6s ease;
  }
  .fancontents-main-bnr01__item-link:hover::before {
    background-position: 0 0;
  }
  .fancontents-main-bnr01__item-link:hover .fancontents-main-bnr01__item-btn-ico::before {
    -webkit-animation: Btn01Arw 0.6s cubic-bezier(0.59, 0.55, 0.52, 1.23);
    animation: Btn01Arw 0.6s cubic-bezier(0.59, 0.55, 0.52, 1.23);
  }
}
@media screen and (min-width: 1280px) {
  .fancontents-main-bnr01__item:nth-child(1) .fancontents-main-bnr01__item-img {
    bottom: 8.85%;
    right: 4.33%;
    width: 21.73%;
  }
  .fancontents-main-bnr01__item-link {
    padding-top: 0;
    height: calc((100svh - (var(--header_height_sp) + 4px)) / 2);
    min-height: 450px;
  }
  .fancontents-main-bnr01__item-img {
    bottom: 8%;
    right: -1.7%;
  }
  .fancontents-main-bnr01__item-area-txt {
    top: 12.26%;
    left: 10.64%;
  }
  .fancontents-main-bnr01__item-en {
    line-height: 2.1;
  }
  .fancontents-main-bnr01__item-lbl {
    margin-top: 10px;
    line-height: 2;
  }
  .fancontents-main-bnr01__item-btn {
    width: 220px;
    margin-top: 35px;
    padding: 12px 15px 12px 23px;
  }
}

.fancontents-main-bnr02 {
  display: grid;
  grid-gap: 3px;
}
.fancontents-main-bnr02__item-link {
  display: block;
  transition: transform 0.6s;
}
.fancontents-main-bnr02__item-link img {
  width: 100%;
}
@media all and (min-width: 1260px) {
  .fancontents-main-bnr02 {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 4px;
  }
}

/* fancontents-note
================================================ */
.fancontents-note__inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 40px 20px;
}
.fancontents-note__txt {
  font-size: 1.4rem;
  line-height: 1.5;
  word-break: break-word;
}

/* fancontents-outro
================================================ */
.fancontents-outro {
  background: url(https://www.snk-corp.co.jp/zh/wp/wp-content/themes/snk-corp/img/fancontents/bg_outro01_sp.jpg) no-repeat center/cover;
}
.fancontents-outro__inner {
  max-width: 1920px;
  margin: 0 auto;
  padding: 73px 20px 75px;
  color: rgb(var(--white));
  text-align: center;
  word-break: break-word;
}
.fancontents-outro__lead {
  margin-bottom: 19px;
  font-size: clamp(1.6rem, 0.9333333333rem + 1.7777777778vw, 3.6rem);
  font-weight: 600;
  line-height: 1.2;
}
.fancontents-outro__txt {
  font-size: clamp(1.4rem, 1.2666666667rem + 0.3555555556vw, 1.8rem);
  font-weight: 500;
  line-height: 1.5;
}
@media all and (min-width: 768px) {
  .fancontents-outro {
    background-image: url(https://www.snk-corp.co.jp/zh/wp/wp-content/themes/snk-corp/img/fancontents/bg_outro01_pc.jpg);
  }
  .fancontents-outro__inner {
    padding: 138px 20px 135px;
  }
  .fancontents-outro__lead {
    margin-bottom: 30px;
  }
}

/* .faq-intro
================================================== */
.faq-intro__inner {
  padding-top: 35px;
  padding-bottom: 60px;
}
.faq-intro__head {
  margin-bottom: 16px;
  padding: 20px 14px;
}
.faq-intro-search {
  margin-top: 32px;
}
.faq-intro-search__detail {
  box-sizing: border-box;
  background: #fff;
  border: 3px solid rgb(var(--base_gray));
  padding: 21px 17px;
}
@media all and (min-width: 768px) {
  .faq-intro__inner {
    padding-top: 40px;
    padding-bottom: 110px;
  }
  .faq-intro__head {
    margin-bottom: 35px;
    padding: 22px 30px;
  }
  .faq-intro-search {
    margin-top: 52px;
  }
  .faq-intro-search__detail {
    padding: 50px;
  }
}

/* .faq-archive
================================================== */
.faq-archive__inner {
  padding-bottom: 80px;
}
.faq-archive-header {
  margin-bottom: 26px;
}
.faq-archive-header__head {
  margin-bottom: 20px;
}
.faq-archive-header-select {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -4px -4px 0;
  padding-left: 16px;
  position: relative;
}
.faq-archive-header-select::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 12px;
  vertical-align: middle;
  color: rgb(var(--subtxt));
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 3.6 7"><path d="M.51 7 0 6.42 2.57 3.5 0 .58.51 0 3.6 3.5.51 7Z" fill="currentColor" /></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 3.6 7"><path d="M.51 7 0 6.42 2.57 3.5 0 .58.51 0 3.6 3.5.51 7Z" fill="currentColor" /></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  position: absolute;
  top: 8px;
  left: 0;
}
.faq-archive-header-select__item {
  box-sizing: border-box;
  background: rgb(var(--main));
  border-radius: 50px;
  color: #fff;
  display: block;
  margin: 0 4px 4px 0;
  padding: 4px 15px;
  font-size: 1.1rem;
  line-height: var(--line_height_head);
}
.faq-archive-contact {
  margin-top: 40px;
}
.faq-archive-contact__txt {
  font-size: 1.4rem;
}
.faq-archive-contact__list {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 5px 0;
  margin-top: 35px;
}
.faq-archive-contact__list-btn {
  width: 100%;
  margin: 0;
}
.faq-archive-contact__list-link {
  min-height: 60px;
}
.faq-archive-contact__list-link-txt {
  font-size: clamp(1.3rem, 0.9666666667rem + 0.4340277778vw, 1.8rem);
}
@media all and (min-width: 768px) {
  .faq-archive__inner {
    padding-bottom: 140px;
  }
  .faq-archive-header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-bottom: 38px;
  }
  .faq-archive-header__head {
    margin-bottom: 0;
  }
  .faq-archive-header-select {
    display: flex;
    flex-wrap: wrap;
    margin: 4px -4px -4px 14px;
    padding-left: 20px;
  }
  .faq-archive-header-select__item {
    padding: 4px 20px;
    font-size: 1.4rem;
  }
  .faq-archive-contact {
    margin-top: 80px;
  }
  .faq-archive-contact__txt {
    font-size: 1.5rem;
  }
  .faq-archive-contact__list {
    grid-gap: 15px 20px;
    grid-template-columns: 1fr 1fr;
  }
  .faq-archive-contact__list-link {
    min-height: 67px;
  }
}

/* game-mv
================================================ */
.game-mv {
  overflow: hidden;
  position: relative;
}
@media all and (min-width: 768px) {
  .game-mv {
    max-height: calc(100vh - var(--header_height_pc));
    width: 100%;
  }
  .game-mv::before {
    content: "";
    display: block;
    padding-top: 51.3020833333%;
  }
  .game-mv__inner {
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 50px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 78vw;
    max-width: 1400px;
  }
}
@media all and (min-width: 1260px) {
  .game-mv__inner {
    padding: 0 80px;
  }
}

.game-mv-tab__wrap {
  box-sizing: border-box;
  background: rgb(var(--black));
  padding: 12px 15px;
  position: relative;
  z-index: 2;
}
.game-mv-tab__wrap-img {
  margin-bottom: 20px;
  text-align: center;
}
@media all and (min-width: 768px) {
  .game-mv-tab__wrap {
    background: rgba(var(--black), 0.7);
    border-radius: 0 0 6px 6px;
    display: flex;
    align-items: center;
    margin: 0 auto;
    overflow: hidden;
    padding: 12px 20px;
    transform: translateY(-100%);
    opacity: 0;
    transition: opacity 1s, transform 0.3s;
  }
  .game-mv-tab__wrap-img {
    margin: 0 24px 0 0;
  }
}

@media all and (min-width: 768px) {
  .game-mv.is-animated .game-mv-tab__wrap {
    transform: translateY(0);
    opacity: 1;
  }
}

.game-mv-tab {
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(3, minmax(-webkit-min-content, 162px));
  grid-template-columns: repeat(3, minmax(min-content, 162px));
  gap: 8px;
  justify-content: center;
}
.game-mv-tab__item {
  box-sizing: border-box;
  cursor: pointer;
  position: relative;
}
.game-mv-tab__item img {
  box-sizing: border-box;
  border: 2px solid #fff;
  border-radius: 6px;
  transition: opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .game-mv-tab__item:hover img {
    opacity: 0.7;
  }
}
@media all and (min-width: 768px) {
  .game-mv-tab {
    gap: 8px;
    justify-content: end;
  }
}

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

@keyframes bgFadein {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.game-mv-detail {
  box-sizing: border-box;
  overflow: hidden;
  display: none;
  position: relative;
  z-index: 1;
}
.game-mv-detail.is-active {
  display: block;
}
.game-mv-detail__wrap {
  background: url(https://www.snk-corp.co.jp/zh/wp/wp-content/themes/snk-corp/img/game/bg_common01_sp.jpg) no-repeat top center/cover;
  color: #fff;
}
.game-mv-detail__global {
  position: absolute;
  top: 0;
  left: 10px;
  width: 40px;
}
.game-mv-detail__img {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
.game-mv-detail__img img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}
.game-mv-detail__inner {
  box-sizing: border-box;
  padding: 42% 25px 40px;
}
.game-mv-detail__logo-img {
  text-align: center;
}
.game-mv-detail__area-txt {
  box-sizing: border-box;
}
.game-mv-detail__head {
  font-size: clamp(2.2rem, 1.8601941748rem + 0.9061488673vw, 3.6rem);
  line-height: var(--line_height_tight);
  letter-spacing: 0.04em;
  margin-top: 1em;
  text-align: center;
}
.game-mv-detail__video {
  margin: 26px auto 0;
  position: relative;
  width: 85%;
  max-width: 540px;
}
.game-mv-detail__video::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.game-mv-detail__video video, .game-mv-detail__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media all and (min-width: 768px) {
  .game-mv-detail {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  .game-mv-detail.is-active .game-mv-detail__img {
    -webkit-animation: bgFadein 0.3s forwards cubic-bezier(0.5, 1, 0.89, 1);
    animation: bgFadein 0.3s forwards cubic-bezier(0.5, 1, 0.89, 1);
  }
  .game-mv-detail__wrap {
    background: none;
    color: #fff;
    height: 100%;
  }
  .game-mv-detail__global {
    display: none;
  }
  .game-mv-detail__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
  }
  .game-mv-detail__bg::after {
    content: "";
    background: url(https://www.snk-corp.co.jp/zh/wp/wp-content/themes/snk-corp/img/game/bg_common01_pc.png) no-repeat top left/cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  .game-mv-detail__bg img, .game-mv-detail__bg video {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .game-mv-detail__img {
    opacity: 0;
    top: auto;
    bottom: 0;
    width: 44.37%;
  }
  .game-mv-detail__inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    margin: 0 auto;
    padding: min(8vw, 200px) 50px min(5vw, 150px);
    max-width: var(--contents_width_wide_with_padding);
  }
  .game-mv-detail__con {
    width: 60%;
    max-width: 685px;
  }
  .game-mv-detail__logo {
    margin: 0 auto;
    text-align: center;
    width: 80%;
  }
  .game-mv-detail__head {
    display: flex;
    align-items: center;
    font-size: clamp(2rem, 0.9333333333rem + 1.3888888889vw, 3.6rem);
    letter-spacing: 0;
    margin-inline: auto;
    position: relative;
    text-align: left;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .game-mv-detail__head-ico {
    margin-right: 10px;
    width: 30px;
  }
  .game-mv-detail__btn {
    margin-top: 20px;
  }
}
@media all and (min-width: 1260px) {
  .game-mv-detail__inner {
    padding-inline: 80px;
  }
  .game-mv-detail__con {
    width: 50%;
  }
  .game-mv-detail__head-ico {
    margin-right: 20px;
    width: 40px;
  }
  .game-mv-detail__btn {
    margin-top: 40px;
  }
}
@media all and (min-width: 1400px ) {
  .game-mv-detail__logo {
    width: 100%;
  }
}

/* .game-topics
================================================== */
.game-topics__inner {
  padding-top: 20px;
  position: relative;
}
.game-topics__inner::before {
  content: "";
  background: linear-gradient(to right, white 20%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 25px;
  z-index: 2;
}
.game-topics__head {
  margin-bottom: -15px;
}
.game-topics__head-en {
  font-size: 2rem;
  line-height: var(--line_height_head);
  margin: 0 15px 0 0;
}
.game-topics__head-main {
  font-size: 1.3rem;
  font-weight: 400;
  line-height: var(--line_height_head);
}
@media all and (max-width: 767px) {
  .game-topics .c-slider01__arrows {
    margin-top: -25px;
  }
}
@media all and (min-width: 768px) {
  .game-topics__inner {
    padding-top: 30px;
  }
  .game-topics__inner::before {
    width: 50px;
  }
  .game-topics__head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .game-topics__head-en {
    font-size: 2rem;
    margin: 0 20px 0 0;
  }
  .game-topics__head-head {
    font-size: 1.5rem;
  }
  .game-topics .c-slider01__arrows {
    top: -20px;
  }
}
@media all and (min-width: 1260px) {
  .game-topics__inner::before {
    left: calc(50% - 50vw);
    width: 80px;
  }
}
@media all and (min-width: 1740px ) {
  .game-topics__inner::before {
    width: calc((100vw - var(--contents_width_wide)) / 2);
  }
}

/* .game-info
================================================== */
.game-info-header__inner {
  padding-top: 60px;
  padding-bottom: 40px;
}
.game-info__head {
  margin: 0 auto;
  width: 81%;
  max-width: 438px;
}
.game-info-con {
  background: url(https://www.snk-corp.co.jp/zh/wp/wp-content/themes/snk-corp/img/game/bg_info01.jpg) no-repeat left center/cover;
}
.game-info-con__inner {
  padding-top: 80px;
  padding-bottom: 80px;
}
.game-info-con__empty {
  color: #fff;
  text-align: center;
}
@media all and (min-width: 768px) {
  .game-info-header__inner {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media all and (min-width: 1260px) {
  .game-info__head {
    width: 35%;
    max-width: 660px;
  }
  .game-info-con {
    background: url(https://www.snk-corp.co.jp/zh/wp/wp-content/themes/snk-corp/img/game/bg_info01.jpg) no-repeat left center/cover;
  }
  .game-info-con__inner {
    padding-top: 120px;
    padding-bottom: 150px;
  }
  .game-info__btn.is-large {
    margin-top: 118px;
    width: 23.4375vw;
  }
  .game-info .c-archive02__item {
    margin-bottom: 30px;
  }
}
@media all and (min-width: 1400px ) {
  .game-info-header__inner {
    padding-top: 120px;
    padding-bottom: 100px;
  }
  .game-info__head {
    width: 40%;
  }
  .game-info__btn.is-large {
    width: 400px;
  }
}

/* .game-bnrs
================================================== */
.game-bnrs__inner {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media all and (min-width: 1260px) {
  .game-bnrs__inner {
    padding-top: 120px;
    padding-bottom: 80px;
  }
}

/* .home-contents
================================================== */
@-webkit-keyframes rotation {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotation {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.home-contents {
  overflow: hidden;
  position: relative;
}
.home-contents__bg {
  -webkit-animation: rotation 120s infinite linear;
  animation: rotation 120s infinite linear;
  pointer-events: none;
  position: fixed;
  right: -8%;
  bottom: -80px;
  width: 60%;
  max-width: 900px;
  min-width: 255px;
  z-index: -1;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.home-contents__bg::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.home-contents__bg img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media all and (min-width: 1260px) {
  .home-contents {
    margin-bottom: 100px;
  }
  .home-contents__bg {
    bottom: -16%;
    width: 55%;
  }
}

/* .home-pickup
================================================== */
.home-pickup {
  position: relative;
}
.home-pickup::before {
  content: "";
  background: linear-gradient(to right, white 20%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 25px;
  z-index: 2;
}
.home-pickup__inner {
  padding-top: 20px;
  position: relative;
}
.home-pickup__head {
  margin-bottom: -15px;
}
.home-pickup__head-en {
  font-size: 2rem;
  line-height: var(--line_height_head);
  margin: 0 15px 0 0;
}
.home-pickup__head-main {
  font-size: 1.3rem;
  font-weight: 400;
  line-height: var(--line_height_head);
}
.home-pickup .c-slider01__arrows {
  margin-top: -25px;
}
@media all and (min-width: 768px) {
  .home-pickup::before {
    width: 50px;
  }
  .home-pickup__inner {
    padding-top: 30px;
  }
  .home-pickup__head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .home-pickup__head-en {
    font-size: 2rem;
    margin: 0 20px 0 0;
  }
  .home-pickup__head-main {
    font-size: 1.5rem;
  }
  .home-pickup .c-slider01__arrows {
    margin-top: -18px;
  }
}
@media all and (min-width: 1260px) {
  .home-pickup::before {
    width: 80px;
  }
}
@media all and (min-width: 1740px ) {
  .home-pickup::before {
    left: calc(50% - 50vw);
    width: calc((100vw - var(--contents_width_wide)) / 2);
  }
}

/* .home-news
================================================== */
.home-news__inner {
  display: grid;
  gap: 80px;
  padding-top: 80px;
  padding-bottom: 100px;
}
.home-news-sec__head {
  border-bottom: 1px solid rgb(var(--darkgray));
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 15px;
}
.home-news-sec__head-en {
  font-size: 2rem;
  line-height: var(--line_height_head);
  margin: 0 13px 0 0;
}
.home-news-sec__head-main {
  font-size: 1.3rem;
  font-weight: 400;
  line-height: var(--line_height_head);
}
@media all and (min-width: 1260px) {
  .home-news__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 4%;
    padding-top: 80px;
    padding-bottom: 10px;
  }
  .home-news-sec__head {
    margin-bottom: 5px;
  }
  .home-news-sec__head-en {
    font-size: 2rem;
    margin: 0 15px 0 0;
  }
  .home-news-sec__head-main {
    font-size: 1.5rem;
  }
}
@media all and (min-width: 1400px ) {
  .home-news__inner {
    padding-top: 120px;
  }
}

/* .home-company
================================================== */
.home-company__inner {
  padding: 0 10px;
}
.home-company-layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: row dense;
  gap: 8px;
}
.home-company-layout__item.is-item01 {
  grid-column: 1/span 2;
  grid-row: 1/span 2;
}
.home-company-layout__item.is-item02 {
  grid-column: 1/span 4;
  grid-row: 5/span 1;
}
.home-company-layout__item.is-item03 {
  grid-column: 2/span 1;
  grid-row: 7/span 1;
}
.home-company-layout__item.is-item04 {
  grid-column: 3/span 2;
  grid-row: 3/span 2;
}
.home-company-layout__item.is-item05 {
  grid-column: 1/span 1;
  grid-row: 3/span 2;
}
.home-company-layout__item.is-item06 {
  grid-column: 2/span 1;
  grid-row: 3/span 1;
}
.home-company-layout__item.is-item07 {
  grid-column: 1/span 2;
  grid-row: 8/span 2;
}
.home-company-layout__item.is-item08 {
  grid-column: 2/span 1;
  grid-row: 4/span 1;
}
.home-company-layout__item.is-item09 {
  grid-column: 1/span 2;
  grid-row: 6/span 1;
}
.home-company-layout__item.is-item10 {
  grid-column: 3/span 1;
  grid-row: 9/span 1;
}
.home-company-layout__item.is-item11 {
  grid-column: 4/span 1;
  grid-row: 9/span 1;
}
.home-company-layout__item.is-item12 {
  grid-column: 3/span 1;
  grid-row: 1/span 1;
}
.home-company-layout__item.is-item13 {
  grid-column: 4/span 1;
  grid-row: 1/span 2;
}
.home-company-layout__item.is-item14 {
  grid-column: 3/span 2;
  grid-row: 7/span 2;
}
.home-company-layout__item.is-item15 {
  grid-column: 3/span 1;
  grid-row: 2/span 1;
}
.home-company-layout__item.is-item16 {
  grid-column: 1/span 1;
  grid-row: 7/span 1;
}
.home-company-layout__item.is-item17 {
  grid-column: 3/span 2;
  grid-row: 6/span 1;
}
.home-company-layout__item-in {
  display: block;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  border: none;
  padding: 0;
  margin: 0;
}
@media (hover: hover) and (pointer: fine) {
  .home-company-layout__item-in:hover .home-company-layout__item-img-wrap {
    transform: scale(0.9);
  }
  .home-company-layout__item-in:hover .home-company-layout__item-img {
    transform: scale(1.1);
  }
  .home-company-layout__item-in:hover .home-company-layout__item-img::after {
    opacity: 1;
  }
  .home-company-layout__item-in:hover .home-company-layout__item-txt {
    opacity: 1;
    transform: scale(0.9);
  }
}
.home-company-layout__item-img-wrap {
  display: block;
  border-radius: 6px;
  height: 100%;
  width: 100%;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.home-company-layout__item-img {
  display: block;
  border-radius: 6px;
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}
.home-company-layout__item-img::after {
  content: "";
  background: rgba(var(--main), 0.5);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.home-company-layout__item-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.home-company-layout__item-txt {
  display: none;
}
.home-company-sec {
  box-sizing: border-box;
  background: #fff;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px 20px 50px;
}
.home-company-sec__head {
  font-size: clamp(3.2rem, 2.9572815534rem + 0.6472491909vw, 4.2rem);
  line-height: var(--line_height_tight);
  text-align: center;
}
.home-company-sec__txt {
  font-size: clamp(1.3rem, 1.1666666667rem + 0.1736111111vw, 1.5rem);
  margin-top: 1em;
  text-align: center;
  font-weight: 600;
}
.home-company-sec__btns {
  grid-template-columns: repeat(1, minmax(auto, 170px));
  gap: 15px;
  justify-content: center;
  margin-top: 18px;
}
@media all and (min-width: 768px) {
  .home-company__inner {
    padding: 0 15px;
  }
  .home-company-layout {
    gap: 15px;
  }
  .home-company-layout__item-txt {
    box-sizing: border-box;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: var(--line_height_head);
    opacity: 0;
    padding: 10px;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    word-break: normal;
    transition: all 0.3s ease;
  }
  .home-company-sec {
    padding: 30px 20px;
    box-shadow: 0 3px 30px rgba(var(--black), 0.4);
  }
}
@media all and (min-width: 1260px) {
  .home-company__inner {
    padding: 140px 30px 0 30px;
  }
  .home-company-layout {
    grid-template-columns: repeat(6, 1fr);
  }
  .home-company-layout__item-txt {
    font-size: 1.5rem;
    padding: 20px;
  }
  .home-company-layout__item.is-item01 {
    grid-column: 1/span 2;
    grid-row: 1/span 2;
  }
  .home-company-layout__item.is-item02 {
    grid-column: 3/span 2;
    grid-row: 1/span 3;
  }
  .home-company-layout__item.is-item03 {
    grid-column: 5/span 1;
    grid-row: 1/span 1;
  }
  .home-company-layout__item.is-item04 {
    grid-column: 6/span 1;
    grid-row: 1/span 1;
  }
  .home-company-layout__item.is-item05 {
    grid-column: 1/span 1;
    grid-row: 3/span 2;
  }
  .home-company-layout__item.is-item06 {
    grid-column: 2/span 1;
    grid-row: 3/span 1;
  }
  .home-company-layout__item.is-item07 {
    grid-column: 5/span 2;
    grid-row: 2/span 2;
  }
  .home-company-layout__item.is-item08 {
    grid-column: 2/span 1;
    grid-row: 4/span 1;
  }
  .home-company-layout__item.is-item09 {
    grid-column: 3/span 2;
    grid-row: 4/span 2;
  }
  .home-company-layout__item.is-item10 {
    grid-column: 5/span 1;
    grid-row: 4/span 1;
  }
  .home-company-layout__item.is-item11 {
    grid-column: 6/span 1;
    grid-row: 4/span 1;
  }
  .home-company-layout__item.is-item12 {
    grid-column: 1/span 1;
    grid-row: 5/span 1;
  }
  .home-company-layout__item.is-item13 {
    grid-column: 2/span 1;
    grid-row: 5/span 2;
  }
  .home-company-layout__item.is-item14 {
    grid-column: 5/span 2;
    grid-row: 5/span 2;
  }
  .home-company-layout__item.is-item15 {
    grid-column: 1/span 1;
    grid-row: 6/span 1;
  }
  .home-company-layout__item.is-item16 {
    grid-column: 3/span 1;
    grid-row: 6/span 1;
  }
  .home-company-layout__item.is-item17 {
    grid-column: 4/span 1;
    grid-row: 6/span 1;
  }
  .home-company-sec__btns {
    margin-top: 20px;
  }
}
@media all and (min-width: 1400px ) {
  .home-company__inner {
    padding: 140px 30px 70px 30px;
  }
  .home-company-layout {
    gap: 24px;
  }
  .home-company-sec {
    padding: 46px 50px;
  }
  .home-company-sec__btns {
    margin-top: 44px;
  }
}

/* .home-company-modal
================================================== */
@-webkit-keyframes homeModalFadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes homeModalFadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes homeModalFadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes homeModalFadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes homeModalMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes homeModalMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@-webkit-keyframes homeModalHead {
  0% {
    transform: translate3d(0, 0, 0) scale(0, 1);
    transform-origin: left;
  }
  59% {
    transform: translate3d(0, 0, 0) scale(1, 1);
    transform-origin: left;
  }
  60% {
    transform: translate3d(0, 0, 0) scale(1, 1);
    transform-origin: right;
  }
  100% {
    transform: translate3d(0, 0, 0) scale(0, 1);
    transform-origin: right;
  }
}
@keyframes homeModalHead {
  0% {
    transform: translate3d(0, 0, 0) scale(0, 1);
    transform-origin: left;
  }
  59% {
    transform: translate3d(0, 0, 0) scale(1, 1);
    transform-origin: left;
  }
  60% {
    transform: translate3d(0, 0, 0) scale(1, 1);
    transform-origin: right;
  }
  100% {
    transform: translate3d(0, 0, 0) scale(0, 1);
    transform-origin: right;
  }
}
@-webkit-keyframes homeModalHeadIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes homeModalHeadIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes homeModalnoise {
  0% {
    filter: url(#noise01);
  }
  50% {
    filter: url(#noise02);
  }
  100% {
    filter: url(#noise03);
  }
}
@keyframes homeModalnoise {
  0% {
    filter: url(#noise01);
  }
  50% {
    filter: url(#noise02);
  }
  100% {
    filter: url(#noise03);
  }
}
.home-company-modal-bg {
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 22, 47, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  pointer-events: none;
  z-index: 2999;
  transition: opacity 0.3s ease;
  opacity: 0;
}
.home-company-modal-bg.is-active {
  opacity: 1;
}
.home-company-modal-bg.is-active .home-company-modal-bg__en {
  -webkit-animation-play-state: running;
  animation-play-state: running;
  transition-delay: 0.3s;
  opacity: 1;
}
.home-company-modal-bg__en {
  overflow: hidden;
  pointer-events: none;
  display: block;
  position: absolute;
  left: 0;
  background-color: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  width: 2508px;
  padding-top: 108px;
  -webkit-mask-size: 1254px 108px;
  mask-size: 1254px 108px;
  -webkit-mask-repeat: repeat;
  mask-repeat: repeat;
  -webkit-mask-position: left top;
  mask-position: left top;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1928 166"><path d="M91.08 81.27a36.08 36.08 0 0 1 22.31 13.57 39.63 39.63 0 0 1 8.74 25.3 40.77 40.77 0 0 1-6.32 22.66q-6.33 9.77-18.29 15.3t-28.29 5.51H0V3.07h66.24q16.33 0 28.18 5.29t17.94 14.72a38.54 38.54 0 0 1 6.1 21.39q0 14.03-7.48 23.46a40 40 0 0 1-19.9 13.34ZM32.2 69.31h29.44q11.5 0 17.71-5.17t6.21-14.84q0-9.66-6.2-14.95t-17.72-5.29H32.2Zm32.43 68.08q11.73 0 18.29-5.52t6.55-15.64q0-10.35-6.9-16.22t-18.63-5.86H32.2v43.24ZM180.1 29.06v40.25h54.05v25.53H180.1v42.55h60.95v26.22H147.9V2.84h93.15v26.22ZM357.2 3.07v160.54H325V3.07Zm206.77 0v160.54h-32.2V59.19l-43.01 104.42h-24.38L421.13 59.19v104.42h-32.2V3.07h36.57l51.06 119.37L527.62 3.07Zm130.18 129.95H630.2l-10.58 30.59h-33.8L643.53 2.84h37.5l57.72 160.77h-34.04Zm-8.74-25.76L662.17 40.1l-23.23 67.16Zm186.76-55.89a37.7 37.7 0 0 0-15.18-15.41q-9.66-5.29-22.54-5.29a49.28 49.28 0 0 0-25.3 6.44 44.48 44.48 0 0 0-17.25 18.4q-6.2 11.96-6.2 27.6 0 16.1 6.32 28.06a44.78 44.78 0 0 0 17.6 18.4q11.27 6.44 26.22 6.44 18.4 0 30.13-9.78t15.4-27.25h-55.2V74.37h86.95v28.06a75.42 75.42 0 0 1-13.8 31.05 77.92 77.92 0 0 1-27.26 22.89q-16.68 8.62-37.38 8.62-23.23 0-41.97-10.46a76.14 76.14 0 0 1-29.44-29.1q-10.7-18.63-10.7-42.32t10.7-42.44a75.92 75.92 0 0 1 29.44-29.21A84.16 84.16 0 0 1 834.44 1q27.14 0 47.15 13.22t27.6 37.15Zm97.06-48.3v160.54h-32.2V3.07Zm169.05 160.54h-32.2l-72.9-110.17v110.17h-32.2V2.84h32.2l72.9 110.4V2.84h32.2Zm130.18-30.59h-63.94l-10.58 30.59h-33.8l57.72-160.77h37.49l57.73 160.77h-34.04Zm-8.74-25.76-23.23-67.16-23.23 67.16ZM1443.94 3.07v25.99h-42.78v134.55h-32.2V29.06h-42.78V3.07Zm55.66 0v160.54h-32.2V3.07Zm175.95 0-58.88 160.54h-39.1L1518.7 3.07h34.5l44.16 127.65 43.93-127.65Zm51.52 25.99v40.25h54.05v25.53h-54.05v42.55h60.95v26.22h-93.15V2.84h93.15v26.22Zm104.42 136.16q-8.74 0-14.37-5.4a17.88 17.88 0 0 1-5.64-13.46 17.88 17.88 0 0 1 5.64-13.46q5.63-5.4 14.37-5.4a19.22 19.22 0 0 1 14.03 5.4 18.07 18.07 0 0 1 5.53 13.46 18.07 18.07 0 0 1-5.53 13.45 19.22 19.22 0 0 1-14.03 5.41Z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1928 166"><path d="M91.08 81.27a36.08 36.08 0 0 1 22.31 13.57 39.63 39.63 0 0 1 8.74 25.3 40.77 40.77 0 0 1-6.32 22.66q-6.33 9.77-18.29 15.3t-28.29 5.51H0V3.07h66.24q16.33 0 28.18 5.29t17.94 14.72a38.54 38.54 0 0 1 6.1 21.39q0 14.03-7.48 23.46a40 40 0 0 1-19.9 13.34ZM32.2 69.31h29.44q11.5 0 17.71-5.17t6.21-14.84q0-9.66-6.2-14.95t-17.72-5.29H32.2Zm32.43 68.08q11.73 0 18.29-5.52t6.55-15.64q0-10.35-6.9-16.22t-18.63-5.86H32.2v43.24ZM180.1 29.06v40.25h54.05v25.53H180.1v42.55h60.95v26.22H147.9V2.84h93.15v26.22ZM357.2 3.07v160.54H325V3.07Zm206.77 0v160.54h-32.2V59.19l-43.01 104.42h-24.38L421.13 59.19v104.42h-32.2V3.07h36.57l51.06 119.37L527.62 3.07Zm130.18 129.95H630.2l-10.58 30.59h-33.8L643.53 2.84h37.5l57.72 160.77h-34.04Zm-8.74-25.76L662.17 40.1l-23.23 67.16Zm186.76-55.89a37.7 37.7 0 0 0-15.18-15.41q-9.66-5.29-22.54-5.29a49.28 49.28 0 0 0-25.3 6.44 44.48 44.48 0 0 0-17.25 18.4q-6.2 11.96-6.2 27.6 0 16.1 6.32 28.06a44.78 44.78 0 0 0 17.6 18.4q11.27 6.44 26.22 6.44 18.4 0 30.13-9.78t15.4-27.25h-55.2V74.37h86.95v28.06a75.42 75.42 0 0 1-13.8 31.05 77.92 77.92 0 0 1-27.26 22.89q-16.68 8.62-37.38 8.62-23.23 0-41.97-10.46a76.14 76.14 0 0 1-29.44-29.1q-10.7-18.63-10.7-42.32t10.7-42.44a75.92 75.92 0 0 1 29.44-29.21A84.16 84.16 0 0 1 834.44 1q27.14 0 47.15 13.22t27.6 37.15Zm97.06-48.3v160.54h-32.2V3.07Zm169.05 160.54h-32.2l-72.9-110.17v110.17h-32.2V2.84h32.2l72.9 110.4V2.84h32.2Zm130.18-30.59h-63.94l-10.58 30.59h-33.8l57.72-160.77h37.49l57.73 160.77h-34.04Zm-8.74-25.76-23.23-67.16-23.23 67.16ZM1443.94 3.07v25.99h-42.78v134.55h-32.2V29.06h-42.78V3.07Zm55.66 0v160.54h-32.2V3.07Zm175.95 0-58.88 160.54h-39.1L1518.7 3.07h34.5l44.16 127.65 43.93-127.65Zm51.52 25.99v40.25h54.05v25.53h-54.05v42.55h60.95v26.22h-93.15V2.84h93.15v26.22Zm104.42 136.16q-8.74 0-14.37-5.4a17.88 17.88 0 0 1-5.64-13.46 17.88 17.88 0 0 1 5.64-13.46q5.63-5.4 14.37-5.4a19.22 19.22 0 0 1 14.03 5.4 18.07 18.07 0 0 1 5.53 13.46 18.07 18.07 0 0 1-5.53 13.45 19.22 19.22 0 0 1-14.03 5.41Z"/></svg>');
  -webkit-animation: homeModalMarquee 40s infinite linear;
  animation: homeModalMarquee 40s infinite linear;
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
  transition: opacity 0.3s ease;
  opacity: 0;
}
@media all and (min-width: 768px) {
  .home-company-modal-bg__en {
    width: 200%;
    padding-top: 8.61%;
    -webkit-mask-size: 50% auto;
    mask-size: 50% auto;
  }
}

.home-company-modal {
  display: none;
  position: relative;
  z-index: 3000;
}
.home-company-modal.is-open {
  display: block;
}
.home-company-modal.is-open .home-company-modal__content-img,
.home-company-modal.is-open .home-company-modal__content-iframe {
  filter: url(#home-modal-noise);
}
.home-company-modal.is-open .home-company-modal__content-head::after {
  -webkit-animation: homeModalHead 0.8s 0.6s var(--easeInOutQuart) both;
  animation: homeModalHead 0.8s 0.6s var(--easeInOutQuart) both;
}
.home-company-modal.is-open .home-company-modal__content-head-in {
  -webkit-animation: homeModalHeadIn 0s 1s ease both;
  animation: homeModalHeadIn 0s 1s ease both;
}
.home-company-modal[aria-hidden=false] .home-company-modal__overlay {
  -webkit-animation: homeModalFadein 0.3s cubic-bezier(0, 0, 0.2, 1);
  animation: homeModalFadein 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.home-company-modal[aria-hidden=true] .home-company-modal__overlay {
  -webkit-animation: homeModalFadeout 0.3s cubic-bezier(0, 0, 0.2, 1);
  animation: homeModalFadeout 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.home-company-modal__overlay {
  box-sizing: border-box;
  padding: 60px 25px 120px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.home-company-modal__close {
  background: rgb(var(--main));
  border: none;
  border-radius: 50%;
  color: #fff;
  height: 40px;
  width: 40px;
  margin: 0 0 0 auto;
  position: absolute;
  top: 10px;
  right: 10px;
}
.home-company-modal__close::before, .home-company-modal__close::after {
  content: "";
  background: #fff;
  display: block;
  height: 2px;
  width: 14px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-32deg);
}
.home-company-modal__close::after {
  transform: translate(-50%, -50%) rotate(32deg);
}
.home-company-modal__arrow {
  background: no-repeat center/cover;
  border: none;
  border-radius: 50%;
  color: #fff;
  height: 60px;
  width: 60px;
  overflow: hidden;
  position: absolute;
  bottom: 25px;
}
.home-company-modal__arrow::before {
  content: "";
  background: rgb(var(--main));
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.home-company-modal__arrow::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 17px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 17"><path fill="currentColor" d="M6.73 0 5.36 1.42l5.91 6.07H0v2h11.28l-5.92 6.09L6.73 17 15 8.5 6.73 0z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 17"><path fill="currentColor" d="M6.73 0 5.36 1.42l5.91 6.07H0v2h11.28l-5.92 6.09L6.73 17 15 8.5 6.73 0z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.home-company-modal__arrow.is-prev {
  left: 25px;
}
.home-company-modal__arrow.is-prev::after {
  transform: scale(-1, 1);
}
.home-company-modal__arrow.is-next {
  right: 25px;
}
.home-company-modal__arrow.is-hide {
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .home-company-modal__arrow:hover::before {
    opacity: 0.9;
  }
}
.home-company-modal__container {
  width: 100%;
  max-width: 700px;
}
.home-company-modal__container:not(.is-iframe) .home-company-modal__content {
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-company-modal__content {
  box-sizing: border-box;
  position: relative;
}
.home-company-modal__content-img {
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  max-width: 700px;
  max-height: calc(100vh - 180px);
}
.home-company-modal__content-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.home-company-modal__content-iframe + .home-company-modal__content-head {
  transform: translateY(0);
}
.home-company-modal__content-head {
  transform: translateY(-200%);
  position: absolute;
}
.home-company-modal__content-head::after {
  content: "";
  background: #4f5e7b;
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  transform: translate3d(0, 0, 0) scale(0, 1);
  transform-origin: left;
  z-index: 5;
}
.home-company-modal__content-head-in {
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  background: rgb(var(--black));
  color: #fff;
  display: inline;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2.3;
  padding: 6px 12px;
  opacity: 0;
}
.home-company-modal__content-video {
  width: 100%;
  max-width: 1100px;
  position: relative;
}
.home-company-modal__content-video::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.home-company-modal__content-video video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media all and (min-width: 768px) {
  .home-company-modal__content-img {
    max-height: calc(100vh - 120px);
  }
  .home-company-modal__content-head-in {
    font-size: 2rem;
  }
  .home-company-modal__close {
    transition: 0.3s ease;
  }
}
@media (min-width: 768px) and (hover: hover) and (pointer: fine) {
  .home-company-modal__close:hover {
    background: #000;
    transition: 0.3s ease;
  }
}
@media all and (min-width: 1260px) {
  .home-company-modal__overlay {
    padding: 60px 150px;
  }
  .home-company-modal__close {
    height: 60px;
    width: 60px;
    top: 25px;
    right: 25px;
  }
  .home-company-modal__close::before, .home-company-modal__close::after {
    width: 20px;
  }
  .home-company-modal__arrow {
    height: 100px;
    width: 100px;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
  }
  .home-company-modal__arrow::after {
    height: 20px;
    width: 18px;
  }
  .home-company-modal__container {
    width: 43.5%;
  }
  .home-company-modal__container.is-video, .home-company-modal__container.is-iframe {
    width: 100%;
  }
}

/* .home-game
================================================== */
.home-game__inner {
  padding-top: 80px;
}
.home-game-info {
  position: relative;
}
.home-game-info-img {
  overflow: hidden;
  position: relative;
}
.home-game-info-img::before {
  content: "";
  display: block;
  padding-top: 73.3333333333%;
}
.home-game-info-img.is-animated .home-game-info-img__layer01 img,
.home-game-info-img.is-animated .home-game-info-img__layer02 img {
  opacity: 1;
  transform: translateY(0);
}
.home-game-info-img__bg {
  position: absolute;
  top: -30%;
  left: -1px;
  transform: translate(0, 0);
  width: calc(100% + 1px);
}
.home-game-info-img__bg img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.home-game-info-img__layer01 {
  position: absolute;
  top: 0;
  width: 100%;
}
.home-game-info-img__layer01 img {
  transition: all 0.6s cubic-bezier(0.5, 1, 0.89, 1);
  opacity: 0;
  transform: translateY(20px);
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.home-game-info-img__layer02 {
  position: absolute;
  bottom: -24%;
  left: 50%;
  transform: translateX(-50%);
  width: 50.4%;
  max-width: 970px;
}
.home-game-info-img__layer02 img {
  transition: all 0.6s cubic-bezier(0.5, 1, 0.89, 1);
  transition-delay: 0.2s;
  opacity: 0;
  transform: translateY(20px);
}
.home-game-info-detail {
  background: url(https://www.snk-corp.co.jp/zh/wp/wp-content/themes/snk-corp/img/home/bg_gameinfo02.jpg) no-repeat center/cover;
  color: #fff;
}
.home-game-info-detail__inner {
  padding-top: 42px;
  padding-bottom: 60px;
  position: relative;
}
.home-game-info-detail__video {
  margin: 50px auto 0;
  position: relative;
}
.home-game-info-detail__video-wrapper {
  position: relative;
}
.home-game-info-detail__video-loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.home-game-info-detail__video::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.home-game-info-detail__video video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.home-game-info-detail__video video:first-child {
  z-index: 10;
}
.home-game-info-detail__video.js_active video:first-child {
  display: none;
}
.home-game-info-detail__logo {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -71%);
  z-index: 1;
  width: 45.2%;
  max-width: 686px;
}
.home-game-info-detail__logo img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.home-game-info-detail__logo + .home-game-info-detail__header {
  margin-top: 6px;
}
.home-game-info-detail__header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
}
.home-game-info-detail__header-ico {
  width: 25px;
}
.home-game-info-detail__title {
  font-size: clamp(2rem, 1.5145631068rem + 1.2944983819vw, 4rem);
  line-height: 0.9;
}
.home-game-info-detail__title small {
  font-size: 80%;
}
.home-game-info-detail__platform {
  grid-column: 1/3;
  display: flex;
  flex-wrap: wrap;
  margin: 0 -4px -4px 0;
}
.home-game-info-detail__platform-item {
  box-sizing: border-box;
  background: #fff;
  border-radius: 50px;
  color: rgb(var(--black));
  font-size: 1rem;
  line-height: var(--line_height_tight);
  margin: 0 4px 4px 0;
  padding: 3px 10px 2px;
  text-align: center;
  min-width: 63px;
}
.home-game-info-detail__txt {
  font-size: clamp(1.4rem, 1.3757281553rem + 0.0647249191vw, 1.5rem);
  margin-top: 30px;
}
.home-game-info-detail__area-btn {
  margin-top: 34px;
}
.home-game-bnrs__item-in {
  display: block;
}
.home-game-bnrs__item-in img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.home-game-bnrs__arrows {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  right: 0;
  top: calc(50% - 15px);
  width: 100%;
  z-index: 10;
}
.home-game-bnrs__arrows .swiper-button-next,
.home-game-bnrs__arrows .swiper-button-prev {
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 30px;
  width: 30px;
  background: rgba(var(--main), 0.9) url(https://www.snk-corp.co.jp/zh/wp/wp-content/themes/snk-corp/img/common/ico_arrow01_left.svg) no-repeat center/8px;
  border-radius: 50%;
}
.home-game-bnrs__arrows .swiper-button-next::after,
.home-game-bnrs__arrows .swiper-button-prev::after {
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .home-game-bnrs__arrows .swiper-button-next:hover,
.home-game-bnrs__arrows .swiper-button-prev:hover {
    color: rgb(var(--main));
  }
}
.home-game-bnrs__arrows .swiper-button-prev {
  left: 10px;
}
.home-game-bnrs__arrows .swiper-button-next {
  margin-left: 0;
  right: 10px;
  background-image: url(https://www.snk-corp.co.jp/zh/wp/wp-content/themes/snk-corp/img/common/ico_arrow01_right.svg);
}
.home-game-all {
  box-sizing: border-box;
  background: #0049a4;
  overflow: hidden;
  padding: 30px 25px 70px 25px;
  position: relative;
}
.home-game-all__bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 343px;
}
.home-game-all__light {
  background: radial-gradient(circle at center, #009bff 0%, #007ed8 40%, #007ad6 55%, #0049a4 70%);
  display: block;
  width: 740px;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
.home-game-all__light::before {
  content: "";
  display: block;
  padding-top: 100%;
}
@media all and (min-width: 768px) {
  .home-game-info-detail__video {
    width: 668px;
  }
  .home-game-info-detail__area-btn {
    grid-template-columns: repeat(auto-fit, 220px);
  }
  .home-game-bnrs:not(.swiper-initialized) .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, 33.33%);
    justify-content: center;
  }
  .home-game-bnrs__arrows {
    display: none;
  }
  .home-game-all {
    padding: 60px 50px;
  }
  .home-game-all__btn-link {
    padding: 0 28px;
  }
}
@media all and (min-width: 1260px) {
  .home-game-info-img::before {
    padding-top: 73.4375%;
  }
  .home-game-info-img__layer01 {
    bottom: -2%;
  }
  .home-game-info-img__layer02 {
    bottom: -14%;
    width: 50.6%;
  }
  .home-game-info-detail {
    background: rgba(var(--black), 0.6);
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
  }
  .home-game-info-detail__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    padding-top: 3%;
    padding-bottom: 3.6%;
  }
  .home-game-info-detail__area-txt {
    flex: 1;
  }
  .home-game-info-detail__video {
    align-self: center;
    margin: 0 0 0 4%;
    width: 34.6%;
  }
  .home-game-info-detail__logo {
    width: 35.7291666667vw;
  }
  .home-game-info-detail__logo + .home-game-info-detail__header {
    margin-top: 6px;
  }
  .home-game-info-detail__header {
    gap: 18px 18px;
  }
  .home-game-info-detail__header-ico {
    width: 36px;
  }
  .home-game-info-detail__platform {
    grid-column: 2/3;
    margin: 0 -13px -13px 0;
  }
  .home-game-info-detail__platform-item {
    font-size: 1.3rem;
    margin: 0 13px 13px 0;
    padding: 3px 16px 2px;
    min-width: 82px;
  }
  .home-game-info-detail__txt {
    margin-top: 32px;
  }
  .home-game-info-detail__area-btn {
    grid-template-columns: repeat(auto-fit, 260px);
    justify-content: start;
    margin-top: 30px;
  }
  .home-game-info-detail__btn .c-btn01__link {
    height: 45px;
  }
  .home-game-all {
    padding: 90px 50px 140px;
  }
  .home-game-all__bg {
    width: 560px;
  }
  .home-game-all__light {
    width: 1000px;
  }
  .home-game-all__light.is-active {
    left: 0;
    transform: none;
    margin: -200px 0 0;
  }
}
@media screen and (min-width: 1260px) and (max-width: 1580px) {
  .home-game-info-detail__area-btn {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    width: 460px;
  }
}

/* .home-about
================================================== */
@-webkit-keyframes homeAboutScrollImg {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes homeAboutScrollImg {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.home-about__inner {
  padding-top: 80px;
  padding-bottom: 80px;
}
.home-about-member {
  box-sizing: border-box;
  background: #fff;
  border: 1px solid;
  border-radius: 6px;
  margin-top: 20px;
  padding: 20px;
}
.home-about-member__picture {
  text-align: center;
}
.home-about-member__area-img {
  font-size: 0;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}
.home-about-member__img {
  -webkit-animation: homeAboutScrollImg 50s linear infinite;
  animation: homeAboutScrollImg 50s linear infinite;
  display: inline-block;
  height: 144px;
}
.home-about-member__img img {
  height: 100%;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  -o-object-fit: cover;
  object-fit: cover;
}
.home-about-member__area-txt {
  margin-top: 20px;
}
.home-about-member__en {
  font-size: clamp(2rem, 1.5856353591rem + 1.1049723757vw, 3rem);
  line-height: var(--line_height_tight);
  text-align: center;
}
.home-about-member__head {
  font-size: clamp(1.3rem, 1.1756906077rem + 0.3314917127vw, 1.6rem);
  font-weight: 400;
  line-height: var(--line_height_head);
  margin-top: 0.1em;
  text-align: center;
}
@media all and (max-width: 767px) {
  .home-about__bnrs {
    margin: 0 -10px;
  }
  .home-about-member {
    margin-inline: -10px;
  }
}
@media all and (min-width: 768px) {
  .home-about-member__img {
    height: 255px;
  }
}
@media all and (min-width: 1260px) {
  .home-about__inner {
    padding-top: 140px;
    padding-bottom: 140px;
  }
  .home-about-member {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 60px;
    padding: 24px;
  }
  .home-about-member__picture {
    width: 65.6%;
  }
  .home-about-member__area-img {
    width: 65.6%;
  }
  .home-about-member__area-txt {
    margin: 0 0 0 24px;
    flex: 1;
  }
  .home-about-member__btn {
    margin-top: 30px;
  }
}

/* .home-esports
================================================== */
@-webkit-keyframes homeEsportsReady {
  0% {
    filter: url("#squiggly01");
  }
  2% {
    filter: url("#squiggly02");
  }
  4% {
    filter: url("#squiggly03");
  }
  6% {
    filter: url("#squiggly04");
  }
  8% {
    filter: url("#squiggly05");
  }
  10% {
    filter: none;
  }
}
@keyframes homeEsportsReady {
  0% {
    filter: url("#squiggly01");
  }
  2% {
    filter: url("#squiggly02");
  }
  4% {
    filter: url("#squiggly03");
  }
  6% {
    filter: url("#squiggly04");
  }
  8% {
    filter: url("#squiggly05");
  }
  10% {
    filter: none;
  }
}
.home-esports {
  position: relative;
}
.home-esports.is-animated .home-esports-header__head, .home-esports.is-animated .home-esports-header__logo {
  opacity: 1;
  transform: translate(0);
}
.home-esports.is-animated .home-esports__ready {
  opacity: 1;
  transform: scale(1);
}
.home-esports.is-animated .home-esports__ready svg {
  -webkit-animation: homeEsportsReady 5.6s 2s infinite;
  animation: homeEsportsReady 5.6s 2s infinite;
}
.home-esports.is-animated .home-esports__video,
.home-esports.is-animated .home-esports__img,
.home-esports.is-animated .home-esports__area-btn {
  opacity: 1;
}
.home-esports__bg {
  height: 100%;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: -1;
  overflow: hidden;
  border-radius: 6px;
}
.home-esports__bg-in {
  background: url(https://www.snk-corp.co.jp/zh/wp/wp-content/themes/snk-corp/img/home/bg_esports01.jpg) no-repeat center top/100% rgb(var(--black));
  margin: 0 auto;
  width: 100%;
  height: 100%;
  transform: scale(1.1);
  border-radius: 6px;
}
.home-esports__inner {
  padding-top: 0;
  padding-bottom: 60px;
}
.home-esports-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 auto 30px;
  padding: 60px 25px 0;
  max-width: 1980px;
}
.home-esports-header__head {
  flex: 1;
  margin-right: 20px;
  width: 20%;
  max-width: 300px;
  transition: all 0.6s ease;
  opacity: 0;
  transform: translateX(-30px);
}
.home-esports-header__logo {
  width: 107px;
  transition: all 0.6s ease;
  opacity: 0;
  transform: translateX(30px);
  transition-delay: 0.2s;
}
.home-esports__ready {
  color: #fff;
  filter: drop-shadow(0 0 1px #fff) drop-shadow(0 0 5px #fff) drop-shadow(0 0 2px rgb(var(--main))) drop-shadow(0 0 20px rgb(var(--main))) drop-shadow(0 0 13px rgb(var(--main)));
  margin: 65px auto 0;
  width: 70%;
  max-width: 350px;
  opacity: 0;
  transform: scale(2.4);
  transition: all 0.6s var(--easeInOutQuart);
  transition-delay: 0.7s;
}
.home-esports__img {
  margin: 12px auto 0;
  text-align: center;
  transition: all 0.6s ease;
  opacity: 0;
  transition-delay: 0.3s;
  max-width: 506px;
}
.home-esports__col2 {
  display: grid;
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto;
  padding-bottom: 80px;
}
.home-esports__col2-btn {
  position: relative;
  z-index: 10;
}
.home-esports__txt {
  margin: 50px 0 40px;
  font-size: clamp(1.6rem, 1.4342541436rem + 0.4419889503vw, 2rem);
  text-align: center;
  color: rgb(var(--white));
  font-weight: bold;
}
@media all and (min-width: 768px) {
  .home-esports__bg {
    max-width: calc(var(--vw, 1vw) * 100 - 40px);
    border-radius: 10px;
  }
  .home-esports__bg-in {
    width: 80%;
    border-radius: 15px;
  }
  .home-esports__inner {
    padding-top: 0;
    padding-bottom: 0;
  }
  .home-esports__ready {
    width: 100%;
    max-width: 530px;
    margin-top: 210px;
  }
  .home-esports__img {
    max-width: 766px;
    margin-top: 30px;
  }
  .home-esports__txt {
    margin: 45px 0 60px;
  }
  .home-esports__btn {
    width: 250px !important;
  }
  .home-esports-header {
    padding-left: calc(var(--body_padding_side) / 2);
    padding-right: calc(var(--body_padding_side) / 2);
    padding-top: 60px;
    margin-bottom: 60px;
  }
  .home-esports-header__head {
    max-width: 440px;
    margin-right: 60px;
    width: 20%;
  }
  .home-esports-header__logo {
    width: 207px;
  }
  .home-esports__col2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin: 60px auto 0;
    padding-bottom: 160px;
  }
  .home-esports__col2-item:nth-child(2) .home-esports__col2-btn {
    margin-top: 5px;
  }
  .home-esports__col2-btn {
    margin-top: 0;
    width: 250px !important;
  }
}
@media all and (min-width: 1260px) {
  .home-esports__bg-in {
    background-size: 100vw auto;
  }
  .home-esports-header {
    margin-bottom: 24px;
  }
  .home-esports-header__logo {
    width: 254px;
  }
}

/* .home-recruit
================================================== */
.home-recruit__inner {
  padding-top: 80px;
}
.home-recruit-bnr__in {
  border-radius: 0;
}
@media all and (min-width: 1260px) {
  .home-recruit__inner {
    padding-top: 160px;
  }
}

/* .home-bnrs
================================================== */
.home-bnrs + .home-bnrs .home-bnrs__inner::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  width: calc(100% - 40px);
  height: 1px;
  border-top: 1px dotted rgb(var(--black));
  margin: 0 auto;
}
.home-bnrs__inner {
  position: relative;
  padding-top: 50px;
  padding-bottom: 40px;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 20px;
}
.home-bnrs__inner.is-col1 {
  padding-top: 40px;
  padding-bottom: 60px;
}
.home-bnrs__item {
  position: relative;
}
.home-bnrs__item-link {
  border-radius: 10px;
  overflow: hidden;
  display: block;
}
@media (hover: hover) and (pointer: fine) {
  .home-bnrs__item-link:hover .home-bnrs__item-link-img {
    transform: scale(0.97);
  }
}
.home-bnrs__item-link-img {
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.3s;
}
.home-bnrs__item-btn {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translate(-50%, 0);
  margin: 0;
}
@media all and (max-width: 767px) {
  .home-bnrs__item {
    margin-inline: -10px;
  }
}
@media all and (min-width: 768px) {
  .home-bnrs + .home-bnrs .home-bnrs__inner::before {
    width: calc(100% - var(--body_padding_side));
  }
  .home-bnrs__inner {
    gap: 30px;
    padding-bottom: 80px;
  }
  .home-bnrs__inner.is-col1 {
    padding-top: 80px;
    padding-bottom: 40px;
    grid-template-columns: 1fr;
  }
  .home-bnrs__item-link {
    display: block;
    overflow: hidden;
    position: relative;
  }
}
@media (min-width: 768px) and (hover: hover) and (pointer: fine) {
  .home-bnrs__item-link:hover .home-bnrs__item-img-wrap {
    transform: scale(0.97);
  }
  .home-bnrs__item-link:hover .home-bnrs__item-img {
    transform: scale(1);
  }
  .home-bnrs__item-link:hover .home-bnrs__item-img::after {
    opacity: 1;
  }
}
@media all and (min-width: 768px) {
  .home-bnrs__item-img-wrap {
    border-radius: 10px;
    height: 100%;
    width: 100%;
    overflow: hidden;
    transition: transform 0.3s ease;
  }
}
@media all and (min-width: 768px) {
  .home-bnrs__item-img {
    border-radius: 10px;
    height: 100%;
    width: 100%;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
  }
  .home-bnrs__item-img::after {
    content: "";
    background: rgba(var(--main), 0.5);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .home-bnrs__item-img img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
@media all and (min-width: 1260px) {
  .home-bnrs__inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    justify-items: stretch;
  }
  .home-bnrs__item-btn {
    bottom: 3.125vw;
  }
  .home-bnrs__item-btn .c-btn01__link {
    height: 66px;
  }
}
@media screen and (min-width: 1580px) {
  .home-bnrs__inner {
    grid-template-columns: repeat(2, 1fr);
    box-sizing: border-box;
  }
}

/* .home-gallery
================================================== */
.home-gallery__img {
  position: relative;
  max-height: 492px;
  border-radius: 10px 10px 0 0;
}
.home-gallery__img::before {
  content: "";
  display: block;
  padding-top: 67.7333333333%;
}
.home-gallery__img img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: left 0 bottom 10%;
  object-position: left 0 bottom 10%;
}
.home-gallery__area-txt {
  box-sizing: border-box;
  background: url(https://www.snk-corp.co.jp/zh/wp/wp-content/themes/snk-corp/img/home/bg_gallery01.jpg) no-repeat top center/cover;
  padding: 22px 25px 50px;
  border-radius: 0 0 10px 10px;
  position: relative;
}
.home-gallery__area-txt::before {
  content: "";
  display: inline-block;
  width: 42px;
  height: 153px;
  background: url(https://www.snk-corp.co.jp/zh/wp/wp-content/themes/snk-corp/img/home/txt_gallery02_pc.png) no-repeat top center/contain;
  position: absolute;
  top: -206px;
  right: 20px;
}
.home-gallery__head {
  margin: 0 auto;
  width: 72%;
  max-width: 536px;
}
.home-gallery__btn {
  margin-top: 30px;
}
@media all and (min-width: 768px) {
  .home-gallery__area-txt {
    max-height: 461px;
  }
  .home-gallery__area-txt::before {
    width: 81px;
    height: 296px;
    top: -450px;
    right: 0;
    transform: translate(-50%, 0);
  }
  .home-gallery__head {
    padding-top: 5px;
    max-width: 406px;
    width: 26.5625vw;
  }
  .home-gallery__btn {
    margin-top: 35px;
  }
  .home-gallery__btn.c-btn01 {
    width: 255px !important;
  }
  .home-gallery__btn-link.c-btn01__link {
    height: 67px !important;
  }
}
@media (min-width: 960px) and (hover: hover) and (pointer: fine) {
  .home-gallery__link .home-gallery__img-wrap {
    position: relative;
    transition: all 0.3s ease;
  }
  .home-gallery__link .home-gallery__img-wrap::after {
    content: "";
    background: rgba(var(--main), 0.5);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    border-radius: 10px;
    transition: opacity 0.3s ease;
  }
  .home-gallery__link:hover .home-gallery__img-wrap {
    transform: scale(0.97);
  }
  .home-gallery__link:hover .home-gallery__img-wrap::after {
    opacity: 1;
  }
}
@media all and (min-width: 960px) {
  .home-gallery__img {
    margin: 0;
    width: 48%;
    border-radius: 10px 0 0 10px;
  }
}
@media all and (min-width: 960px) {
  .home-gallery__area-txt {
    margin: 0;
    box-sizing: border-box;
    padding: 44px 50px 70px;
    border-radius: 0 10px 10px 0;
    position: relative;
    max-height: 473px;
  }
  .home-gallery__area-txt::before {
    content: "";
    display: inline-block;
    width: 4.84375vw;
    height: 17.4479166667vw;
    position: absolute;
    top: 0.78125vw;
    left: 0;
    transform: translate(-50%, 0);
  }
}
@media all and (min-width: 960px) {
  .home-gallery__head {
    max-width: 406px;
    width: 21.1458333333vw;
  }
}
@media all and (min-width: 960px) {
  .home-gallery__btn {
    margin-top: 60px;
  }
}
@media all and (min-width: 960px) {
  .home-gallery__img {
    max-height: 473px;
    width: 50.6060606061%;
  }
  .home-gallery__img-wrap {
    display: flex !important;
    flex-wrap: wrap;
  }
  .home-gallery__img img {
    -o-object-position: left top;
    object-position: left top;
  }
}
@media all and (min-width: 960px) {
  .home-gallery__area-txt {
    flex: 1;
  }
}
@media all and (min-width: 960px) {
  .home-gallery__btn {
    margin-top: 2.34375vw;
  }
  .home-gallery__btn .c-btn01__link {
    min-height: 66px;
  }
}
@media all and (min-width: 1260px) {
  .home-gallery__img {
    width: 48%;
  }
  .home-gallery__area-txt::before {
    width: 6.25vw;
  }
}
@media screen and (min-width: 1580px) {
  .home-gallery__img {
    width: 54%;
  }
  .home-gallery__area-txt::before {
    width: 3.6458333333vw;
  }
}

/* .l-footer-page-top
================================================ */
/* .inquiry-article
================================================== */
.inquiry-article__inner {
  padding-top: 40px;
}
@media all and (min-width: 768px) {
  .inquiry-article__inner {
    padding-top: 80px;
  }
}

/* .inquiry-form
================================================== */
.inquiry-form__inner {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media all and (min-width: 768px) {
  .inquiry-form__inner {
    padding-bottom: 140px;
  }
}

/* .inquiry-attention
================================================== */
.inquiry-attention__inner {
  padding-bottom: 80px;
}
/* .policy-main
================================================== */
.policy-main__inner {
  padding-top: 40px;
  padding-bottom: 28px;
}
.policy-main__txt {
  margin-bottom: 51px;
}
.policy-main-sec + .policy-main-sec {
  margin-top: 55px;
}
.policy-main-sec.is-06 .policy-main-sec__list02 {
  margin-top: 16px;
}
.policy-main-sec.is-13 .policy-main-sec__list02 {
  margin-top: 16px;
}
.policy-main-sec.is-13 .policy-main-sec__list02-link {
  text-decoration: underline;
}
.policy-main-sec__list {
  margin-top: 31px;
}
.policy-main-sec__list-item + .policy-main-sec__list-item {
  margin-top: 35px;
}
.policy-main-sec__list02 {
  margin-top: 8px;
}
.policy-main-sec__list02-txt {
  margin-top: 35px;
}
.policy-main-sec__list02-link {
  color: rgb(var(--main));
  text-decoration: underline;
}
.policy-main-sec__note {
  font-size: 1.1rem;
  line-height: 1.5454545455;
  color: rgb(var(--subtxt));
  margin-top: 12px;
  position: relative;
  padding-left: 17px;
}
.policy-main-sec__note::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
.policy-main-eea {
  margin-top: 31px;
}
.policy-main-eea__header {
  min-height: 53px;
  display: flex;
  align-items: center;
  background-color: rgb(var(--main));
  color: #fff;
  border-radius: 6px;
  padding: 10px 15px;
  box-sizing: border-box;
  font-size: 1.7rem;
  font-weight: 600;
  line-height: var(--line_height_head);
  margin-bottom: 20px;
}
.policy-main-eea-sec + .policy-main-eea-sec {
  margin-top: 40px;
}
.policy-main-eea-sec__head {
  min-height: 45px;
  display: flex;
  align-items: center;
  background-color: rgb(var(--gray03));
  border-radius: 6px;
  padding: 10px 20px;
  box-sizing: border-box;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: var(--line_height_head);
  margin-bottom: 20px;
}
.policy-main-eea-sec__head-num {
  font-size: 1.6rem;
  margin-right: 10px;
  color: rgb(var(--main));
}
.policy-main-eea-sec__txt {
  margin-bottom: 31px;
}
.policy-main-eea-sec__list-item + .policy-main-eea-sec__list-item {
  margin-top: 31px;
}
.policy-main-eea-sec__list02 {
  margin-top: 10px;
}
@media all and (min-width: 768px) {
  .policy-main__inner {
    padding-top: 80px;
    padding-bottom: 145px;
  }
  .policy-main__txt {
    margin-bottom: 132px;
  }
  .policy-main-sec + .policy-main-sec {
    margin-top: 115px;
  }
  .policy-main-sec.is-06 .policy-main-sec__list02 {
    margin-top: 32px;
  }
  .policy-main-sec.is-13 .policy-main-sec__list02 {
    margin-top: 32px;
  }
  .policy-main-sec.is-13 .policy-main-sec__list02-link:hover {
    text-decoration: none;
  }
  .policy-main-sec__list {
    margin-top: 52px;
  }
  .policy-main-sec__list-item + .policy-main-sec__list-item {
    margin-top: 52px;
  }
  .policy-main-sec__list02 {
    margin-top: 14px;
  }
  .policy-main-sec__list02-txt {
    margin-top: 45px;
  }
  .policy-main-sec__list02-link:hover {
    text-decoration: none;
  }
  .policy-main-sec__note {
    font-size: 1.3rem;
    line-height: 1.5384615385;
    padding-left: 21px;
  }
  .policy-main-eea {
    margin-top: 87px;
  }
  .policy-main-eea__header {
    min-height: 82px;
    padding: 20px 30px;
    font-size: 2.4rem;
    margin-bottom: 40px;
  }
  .policy-main-eea-sec + .policy-main-eea-sec {
    margin-top: 80px;
  }
  .policy-main-eea-sec__head {
    min-height: 70px;
    padding: 10px 20px;
    font-size: 1.7rem;
    margin-bottom: 40px;
  }
  .policy-main-eea-sec__head-num {
    font-size: 1.8rem;
    margin-right: 13px;
  }
  .policy-main-eea-sec__txt {
    margin-bottom: 52px;
  }
  .policy-main-eea-sec__list-item + .policy-main-eea-sec__list-item {
    margin-top: 55px;
  }
  .policy-main-eea-sec__list02 {
    margin-top: 15px;
  }
}

/* .products-search
================================================== */
.products-search__inner {
  padding-top: 38px;
}
.products-search__con {
  box-sizing: border-box;
  background: rgb(var(--base_gray));
  margin: 0 -25px;
  padding: 30px 25px;
}
.products-search__col + .products-search__col {
  margin-top: 30px;
}
.products-search-set + .products-search-set {
  margin-top: 30px;
}
.products-search-set__head {
  box-sizing: border-box;
  border-left: 6px solid rgb(var(--main));
  font-size: 1.5rem;
  font-weight: 700;
  line-height: var(--line_height_head);
  margin-bottom: 18px;
  padding-left: 6px;
}
.products-search-cat {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}
.products-search-cat__in {
  box-sizing: border-box;
  background: #fff;
  border: 1px solid rgb(var(--black));
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  line-height: var(--line_height_tight);
  height: 100%;
  min-height: 40px;
  padding: 4px 6px;
  text-align: center;
  word-break: normal;
  transition: all 0.3s ease;
}
.products-search-cat__in.is-current {
  pointer-events: none;
  background: rgb(var(--main));
  border-color: rgb(var(--main));
  color: #fff;
}
@media (hover: hover) and (pointer: fine) {
  .products-search-cat__in:hover {
    background: rgb(var(--main));
    border-color: rgb(var(--main));
    color: #fff;
  }
}
.products-search-cat__label input[type=checkbox] {
  border-width: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
}
.products-search-cat__label input[type=checkbox]:focus-visible + span, .products-search-cat__label input[type=checkbox]:checked + span {
  background: rgb(var(--main));
  border-color: rgb(var(--main));
  color: #fff;
}
.products-search-cat__label input[type=checkbox] + span {
  box-sizing: border-box;
  background: #fff;
  border: 1px solid rgb(var(--black));
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  line-height: var(--line_height_tight);
  height: 100%;
  min-height: 40px;
  padding: 4px 6px;
  text-align: center;
  word-break: normal;
  transition: all 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .products-search-cat__label input[type=checkbox] + span:hover {
    background: rgb(var(--main));
    border-color: rgb(var(--main));
    color: #fff;
  }
}
@media all and (min-width: 768px) {
  .products-search__con {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 55px 30px;
  }
  .products-search__col {
    width: calc(50% - 20px);
  }
  .products-search__col + .products-search__col {
    margin: 0 0 0 40px;
  }
  .products-search-set + .products-search-set {
    margin-top: 25px;
  }
  .products-search-set__head {
    font-size: 1.9rem;
    margin-bottom: 12px;
    padding-left: 8px;
  }
  .products-search-cat {
    gap: 6px;
  }
  .products-search-cat__in {
    font-size: 1.4rem;
    min-height: 50px;
  }
  .products-search-cat__label input[type=checkbox] + span {
    font-size: 1.4rem;
    min-height: 50px;
  }
}

/* .products-archive
================================================== */
.products-archive__inner {
  padding-top: 40px;
  padding-bottom: 80px;
}
@media all and (min-width: 768px) {
  .products-archive__inner {
    padding-top: 60px;
    padding-bottom: 70px;
  }
}
@media all and (min-width: 1400px ) {
  .products-archive__inner {
    padding-top: 80px;
    padding-bottom: 140px;
  }
}

@media all and (max-width: 1259px) {
  #business .l-sub2-img__area-txt {
    padding-bottom: calc(12vw + 60px);
  }
}

/* .service-anchor
================================================== */
.service-anchor {
  padding-bottom: 45px;
  position: relative;
  z-index: 1;
}
.service-anchor-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.service-anchor-list__item {
  width: 47.5%;
  max-width: 330px;
  margin-bottom: 19px;
}
.service-anchor-list__item:nth-child(2n) {
  margin-left: 4.61%;
}
.service-anchor-list__img {
  box-sizing: border-box;
  border: 2px solid #fff;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}
.service-anchor-list__img::before {
  content: "";
  display: block;
  padding-top: 63.6363636364%;
}
.service-anchor-list__img img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.3s ease;
}
.service-anchor-list__txt {
  font-size: clamp(1.1rem, 0.9300970874rem + 0.4530744337vw, 1.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-top: 0.6em;
  text-align: center;
}
@media all and (min-width: 768px) {
  .service-anchor {
    padding-bottom: 100px;
  }
  .service-anchor-list {
    flex-wrap: nowrap;
  }
  .service-anchor-list__in:hover .service-anchor-list__img img {
    opacity: 0.7;
  }
  .service-anchor-list__item {
    width: 33.5%;
  }
  .service-anchor-list__item:not(:nth-child(3n+1)) {
    margin-left: 4.533%;
  }
}
@media all and (min-width: 960px) {
  .service-anchor {
    margin-top: -48px;
  }
}
/* .service-intro
================================================== */
.service-intro__inner {
  padding-top: 50px;
  padding-bottom: 30px;
}
.service-intro__head {
  font-size: clamp(1.8rem, 1.1784530387rem + 1.6574585635vw, 3.3rem);
  line-height: 1.75;
  margin-bottom: 1.1em;
}
.service-intro__area-txt {
  margin-bottom: 30px;
}
.service-intro__area-img img {
  display: block;
  margin: 0 auto;
}
@media all and (min-width: 1260px) {
  .service-intro__inner {
    display: flex;
    justify-content: space-between;
    padding-top: 80px;
    padding-bottom: 145px;
  }
  .service-intro__head {
    line-height: 1.5;
  }
  .service-intro__area-txt {
    width: 45%;
    margin-bottom: 0;
  }
  .service-intro__area-img {
    width: 54.05%;
    margin-right: -50px;
  }
}
@media (min-width: 1920px) {
  .service-intro__area-txt {
    width: 50%;
  }
  .service-intro__area-img {
    margin-right: -140px;
  }
}

/* .service-sec
================================================== */
.service-sec + .service-sec .service-sec__inner {
  padding-top: 0;
}
.service-sec__inner {
  padding-bottom: 84px;
}
.service-sec__area-img {
  position: relative;
}
.service-sec__bg {
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}
.service-sec__bg::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.service-sec__bg::after {
  content: "";
  background: url(https://www.snk-corp.co.jp/zh/wp/wp-content/themes/snk-corp/img/business/img_overlay01_sp.png) no-repeat center/cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.service-sec__bg img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.service-sec__layer {
  position: absolute;
  top: -40px;
  right: -25px;
  width: 43%;
  max-width: 460px;
}
.service-sec__layer img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}
.service-sec__copy {
  box-sizing: border-box;
  color: #fff;
  padding: 20px;
  position: absolute;
  left: 0;
  bottom: 0;
}
.service-sec__copy-en {
  font-size: clamp(2.2rem, 1.7856353591rem + 1.1049723757vw, 3.2rem);
  line-height: var(--line_height_tight);
  word-break: normal;
}
.service-sec__copy-txt {
  font-size: clamp(1.4rem, 1.0685082873rem + 0.8839779006vw, 2.2rem);
  font-weight: 700;
  line-height: var(--line_height_head);
  margin-top: 0.3em;
}
.service-sec__area-txt {
  margin-bottom: 70px;
}
.service-sec__head {
  margin-bottom: 22px;
}
.service-sec__head-main {
  font-size: clamp(3.2rem, 3.0342541436rem + 0.4419889503vw, 3.6rem);
  font-weight: 700;
  margin-top: 0.4em;
}
.service-sec__col2 {
  display: grid;
  gap: 50px;
  max-width: 1320px;
  padding-bottom: 80px;
}
.service-sec__col2-head {
  font-size: clamp(1.8rem, 1.3856353591rem + 1.1049723757vw, 2.8rem);
  margin: 11px 0 3px;
}
@media all and (min-width: 768px) {
  .service-sec__inner {
    padding-bottom: 120px;
  }
  .service-sec__bg::before {
    padding-top: 59.693877551%;
  }
  .service-sec__bg::after {
    background-image: url(https://www.snk-corp.co.jp/zh/wp/wp-content/themes/snk-corp/img/business/img_overlay01_pc.png);
  }
  .service-sec__bg img {
    height: 110%;
    width: 100%;
    -o-object-position: center;
    object-position: center;
    transform: scale(1);
  }
  .service-sec__layer {
    top: auto;
    right: -50px;
    bottom: -30%;
    width: 46%;
  }
  .service-sec__area-txt {
    margin-bottom: 42px;
  }
  .service-sec__col2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    padding-bottom: 140px;
  }
  .service-sec__col2-head {
    text-align: center;
  }
}
@media all and (min-width: 1260px) {
  .service-sec__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    padding-bottom: 100px;
  }
  .service-sec__area-img {
    order: 2;
    margin-right: calc(50% - 50vw + 30px);
    flex: 1;
  }
  .service-sec__layer {
    right: -20px;
  }
  .service-sec__area-txt {
    margin: 0 7.6% 0 0;
    order: 1;
    width: 39%;
  }
  .service-sec__copy {
    padding: 50px;
  }
  .service-sec__copy-txt {
    margin-top: 0.6em;
  }
  .service-sec__head-main {
    font-size: clamp(3.4rem, 0.3454545455rem + 2.4242424242vw, 5rem);
  }
  .service-sec.is-reverse .service-sec__inner {
    flex-direction: row-reverse;
  }
  .service-sec.is-reverse .service-sec__area-img {
    margin-left: calc(50% - 50vw + 30px);
    margin-right: 0;
  }
  .service-sec.is-reverse .service-sec__layer {
    right: -50px;
  }
  .service-sec.is-reverse .service-sec__area-txt {
    margin-left: 7.6%;
    margin-right: 0;
  }
}
@media all and (min-width: 1400px ) {
  .service-sec__inner {
    padding-bottom: 140px;
  }
}
@media (min-width: 1920px) {
  .service-sec.is-reverse .service-sec__area-img {
    margin-left: -140px;
  }
  .service-sec__area-img {
    margin-right: -140px;
  }
}

/* .service-esports
================================================== */
/* .sitemap-main
================================================== */
.sitemap-main__inner {
  padding-top: 40px;
  padding-bottom: 60px;
}
.sitemap-main-sec + .sitemap-main-sec {
  margin-top: 45px;
}
.sitemap-main-sec__header {
  padding-bottom: 15px;
  margin-bottom: 21px;
  border-bottom: 1px solid rgb(var(--black));
}
.sitemap-main-sec__header-en {
  font-size: 2rem;
  line-height: var(--line_height_tight);
}
.sitemap-main-sec__header-head {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: var(--line_height_head);
  color: rgb(var(--main));
}
.sitemap-main-sec__list-item + .sitemap-main-sec__list-item {
  margin-top: 8px;
}
.sitemap-main-sec__list-item.is-grandchild {
  margin-top: -5px;
}
.sitemap-main-sec__list-item.is-grandchild .sitemap-main-sec__list-link {
  font-size: 1.2rem;
  line-height: 1.1;
  color: rgb(var(--gray02));
}
.sitemap-main-sec__list-link:not([href]) {
  color: rgb(var(--subtxt));
}
@media all and (min-width: 768px) {
  .sitemap-main__inner {
    padding-top: 80px;
    padding-bottom: 190px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 90px 59px;
  }
  .sitemap-main-sec + .sitemap-main-sec {
    margin-top: -5px;
  }
  .sitemap-main-sec__header {
    padding-bottom: 19px;
    margin-bottom: 31px;
  }
  .sitemap-main-sec__header-en {
    font-size: 2.2rem;
  }
  .sitemap-main-sec__header-head {
    font-size: 1.4rem;
  }
  .sitemap-main-sec__list-item.is-grandchild {
    margin-top: 0;
  }
  .sitemap-main-sec__list-item.is-grandchild .sitemap-main-sec__list-link {
    font-size: 1.3rem;
  }
  .sitemap-main-sec__list-link {
    position: relative;
  }
  .sitemap-main-sec__list-link::before {
    content: "";
    border-top: 1px solid currentColor;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    transform: scaleX(0);
    transform-origin: 100% 0;
    width: 100%;
    transition: transform 0.3s cubic-bezier(0.45, 0.12, 0.04, 0.96);
  }
}
@media (min-width: 768px) and (hover: hover) and (pointer: fine) {
  .sitemap-main-sec__list-link[href]:hover {
    color: rgb(var(--main));
  }
  .sitemap-main-sec__list-link[href]:hover::before {
    transform: scaleX(1);
    transform-origin: 0 0;
  }
}

/* .terms-main
================================================== */
.terms-main__inner {
  padding-top: 40px;
  padding-bottom: 80px;
}
.terms-main__txt {
  margin-bottom: 51px;
}
.terms-main-sec + .terms-main-sec {
  margin-top: 60px;
}
.terms-main-sec__head {
  margin-bottom: 23px;
}
.terms-main-sec__box {
  background-color: rgb(var(--gray04));
  border: 2px solid rgb(var(--main));
  border-radius: 6px;
  padding: 20px 18px;
  box-sizing: border-box;
  margin-top: 21px;
  margin-bottom: 21px;
}
@media all and (min-width: 768px) {
  .terms-main__inner {
    padding-top: 80px;
    padding-bottom: 148px;
  }
  .terms-main__txt {
    margin-bottom: 132px;
  }
  .terms-main-sec + .terms-main-sec {
    margin-top: 120px;
  }
  .terms-main-sec__head {
    margin-bottom: 22px;
  }
  .terms-main-sec__box {
    padding: 35px 40px;
    margin-top: 25px;
    margin-bottom: 25px;
  }
}