@charset "UTF-8";
:root {
  --color-primary-500: 191, 19, 48;
  --color-primary-600: 140, 21, 41;
  --color-primary-700: 102, 5, 21;
  --color-accent-500: 255, 0, 0;
  --color-grayscale-100: 255, 255, 255;
  --color-grayscale-200: 237, 237, 237;
  --color-grayscale-300: 224, 222, 223;
  --color-grayscale-500: 163, 163, 163;
  --color-grayscale-800: 115, 115, 115;
  --color-grayscale-900: 13, 12, 13;
  --color-error-500: 255, 0, 0;
  --color-category-yellow01-500: 255, 183, 44;
  --color-category-pink01-500: 255, 155, 155;
  --fontfamily_base: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
  --font_color_base: rgb(var(--color-grayscale-900));
  --font_size_base: 1.6rem;
  --line-height_base: 2;
  --letter-spacing_base: 0.06em;
  --fontfamily_en: "Barlow Condensed", sans-serif;
  --font_weight_en: 700;
  --line-height_en: 1.2;
  --letter-spacing_en: 0.04em;
  --contents_width: 1100px;
  --contents_wide_width: 1400px;
  --body_padding_side: 20px;
  --contents_width_with_padding: 1160px;
  --contents_wide_width_with_padding: 1460px;
  --sidebar_width: 250px;
  --header_height: 65px;
}
@media (min-width: 768px) {
  :root {
    --body_padding_side: 30px;
    --header_height: 155px;
    --font_size_base: 1.6rem;
  }
}

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-all;
}

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 (hover: hover) and (pointer: fine) {
  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(rgba(var(--color-grayscale-900), 0.6)));
  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 (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;
  appearance: 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;
  text-align: left;
  font: inherit;
}

/* 02_base
================================================ */
html:not([class="is-no-smoothscroll"]) {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header_height);
}

body {
  min-width: 320px;
  padding-top: var(--header_height);
  font-family: var(--fontfamily_base);
  color: var(--font_color_base);
  font-size: var(--font_size_base);
  line-height: var(--line-height_base);
  letter-spacing: var(--letter-spacing_base);
  -webkit-text-size-adjust: 100%;
}
@media (min-width: 768px) {
  body {
    min-width: var(--contents_width_with_padding);
    padding-top: var(--header_height);
  }
}
@media (min-width: 768px) and (hover: none) {
  body {
    -webkit-text-size-adjust: none;
  }
}

.l-wrapper {
  position: relative;
}

.l-container main {
  position: relative;
  z-index: 10;
}
.l-container.is-child .l-contents {
  position: relative;
  background: rgb(var(--color-grayscale-200)) url(../img/common/bg_contents01_sp.webp) no-repeat top left/100%;
  margin-top: -66px;
  padding-top: 66px;
}
.l-container.is-child .l-contents::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 238px;
  bottom: 0;
  left: 0;
  background: url(../img/common/bg_contents02_sp.webp) no-repeat top left -20px/405px 100%;
}
@media (min-width: 768px) {
  .l-container.is-child .l-contents {
    background-image: url(../img/common/bg_contents01_pc.webp);
  }
  .l-container.is-child .l-contents::after {
    position: absolute;
    content: "";
    height: 700px;
    bottom: -190px;
    background: url(../img/common/bg_contents02_pc.webp) no-repeat top left -40px/1190px 100%;
  }
  .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 {
    position: relative;
    flex: 1;
  }
  .l-container.is-col2 .l-sidebar {
    order: -1;
    flex-basis: var(--sidebar_width);
  }
}

.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized,
.splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  box-sizing: border-box;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play,
.splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__arrow {
  align-items: center;
  background: #ccc;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  height: 2em;
  justify-content: center;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2em;
  z-index: 1;
}

.splide__arrow svg {
  fill: #000;
  height: 1.2em;
  width: 1.2em;
}

.splide__arrow:hover:not(:disabled) {
  opacity: 0.9;
}

.splide__arrow:disabled {
  opacity: 0.3;
}

.splide__arrow:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__arrow--prev {
  left: 1em;
}

.splide__arrow--prev svg {
  transform: scaleX(-1);
}

.splide__arrow--next {
  right: 1em;
}

.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__pagination {
  bottom: 0.5em;
  left: 0;
  padding: 0 1em;
  position: absolute;
  right: 0;
  z-index: 1;
}

.splide__pagination__page {
  background: #ccc;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 3px;
  opacity: 0.7;
  padding: 0;
  position: relative;
  transition: transform 0.2s linear;
  width: 8px;
}

.splide__pagination__page.is-active {
  background: #fff;
  transform: scale(1.4);
  z-index: 1;
}

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}

.splide__pagination__page:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__progress__bar {
  background: #ccc;
  height: 3px;
}

.splide__slide {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.splide__slide:focus {
  outline: 0;
}

@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
}
@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }

  .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
    border-color: #0bf;
  }
}
.splide__toggle {
  cursor: pointer;
}

.splide__toggle:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__track--nav > .splide__list > .splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
}

.splide__track--nav > .splide__list > .splide__slide.is-active {
  border: 3px solid #000;
}

.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}

.splide__arrows--rtl .splide__arrow--prev svg {
  transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}

.splide__arrows--rtl .splide__arrow--next svg {
  transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
  left: 50%;
  transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
  transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto;
}

.splide__arrows--ttb .splide__arrow--next svg {
  transform: rotate(90deg);
}

.splide__pagination--ttb {
  bottom: 0;
  display: flex;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}

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

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

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

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

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

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

/* overflow
-------------------------------------- */
.u-overflow-wrap {
  overflow: auto;
}
.u-overflow-wrap .u-overflow-sec {
  overflow: hidden;
}
@media (min-width: 768px) {
  .u-overflow-wrap .u-overflow-sec {
    min-width: var(--contents_width_with_padding);
  }
}

/* font
-------------------------------------- */
.u-font-en {
  font-family: var(--fontfamily_en);
  font-weight: var(--font_weight_en);
  line-height: var(--line-height_en);
  letter-spacing: var(--letter-spacing_en);
}

.u-color-red {
  color: rgb(var(--color-primary-500));
}

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

.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.8;
  }
}

a.u-zoom {
  display: block;
  text-decoration: none;
}
a.u-zoom .u-zoom__img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
a.u-zoom .u-zoom__img-wrap {
  display: block;
  overflow: hidden;
  height: 0;
  padding-top: 75%;
  position: relative;
}
@media (min-width: 768px) {
  a.u-zoom .u-zoom__img {
    transition: all 0.3s ease;
  }
}
@media (hover: hover) and (pointer: fine) {
  a.u-zoom:hover .u-zoom__img {
    transform: scale(1.1);
  }
}

a[class].u-text-underline {
  text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {
  a[class].u-text-underline:hover {
    text-decoration: none;
  }
}

/* layout
-------------------------------------- */
.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: var(--body_padding_side);
  padding-right: var(--body_padding_side);
}
@media (min-width: 768px) {
  .u-inner {
    width: 100%;
    max-width: var(--contents_width_with_padding);
    margin-right: auto;
    margin-left: auto;
  }
}

.u-wide-inner {
  box-sizing: border-box;
  padding-left: var(--body_padding_side);
  padding-right: var(--body_padding_side);
}
@media (min-width: 768px) {
  .u-wide-inner {
    width: 100%;
    max-width: var(--contents_wide_width_with_padding);
    margin-right: auto;
    margin-left: auto;
  }
}

@media (min-width: 768px) {
  button.u-underline,
  span.u-underline,
  a.u-underline {
    color: rgb(var(--color-grayscale-100));
    transition: all 0.3s ease;
  }
  button.u-underline__txt,
  span.u-underline__txt,
  a.u-underline__txt {
    background-image: linear-gradient(90deg, rgb(var(--color-grayscale-100)), rgb(var(--color-grayscale-100)));
    background-position: right bottom;
    background-size: 0 1px;
    background-repeat: no-repeat;
    transition: background-size 0.4s ease;
  }
  button.u-underline:hover button.u-underline__txt,
  button.u-underline:hover span.u-underline__txt,
  button.u-underline:hover a.u-underline__txt,
  span.u-underline:hover button.u-underline__txt,
  span.u-underline:hover span.u-underline__txt,
  span.u-underline:hover a.u-underline__txt,
  a.u-underline:hover button.u-underline__txt,
  a.u-underline:hover span.u-underline__txt,
  a.u-underline:hover a.u-underline__txt {
    background-size: 100% 1px;
    background-position: left bottom;
    transition: background-size 0.4s ease;
  }
}

/*  .c-archive01
================================================== */
.c-archive01 {
  display: grid;
  grid-gap: 20px;
}
.c-archive01__item-in {
  position: relative;
  display: block;
  padding: 20px;
  background: rgb(var(--color-grayscale-100));
  box-shadow: 1px 1px 20px rgba(38, 37, 38, 0.2);
}
.c-archive01__item-in::before {
  position: absolute;
  content: "";
  bottom: 5px;
  right: 5px;
  width: 10px;
  height: 10px;
  background: rgb(var(--color-primary-500));
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
.c-archive01__item-img {
  position: relative;
  padding-top: 75%;
}
.c-archive01__item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.c-archive01__item-date {
  margin: 10px 10px 5px 0;
  color: rgb(var(--color-grayscale-800));
}
.c-archive01__item-head {
  overflow: hidden;
  display: -webkit-box;
  max-height: 6.4em;
  line-height: 1.6;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  margin-top: 5px;
  font-weight: bold;
}
@media (min-width: 768px) {
  .c-archive01 {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 40px 28px;
  }
  .c-archive01__item {
    display: grid;
  }
  .c-archive01__item-in {
    padding: 25px;
    box-shadow: 1px 1px 5px rgba(38, 37, 38, 0.2);
    transition: box-shadow 0.6s ease;
  }
  .c-archive01__item-head {
    max-height: 6.4em;
    -webkit-line-clamp: 4;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-archive01__item-in:hover .c-archive01__item-head {
    text-decoration: underline;
  }
}

/* .c-btn01.is-large
===================================*/
@media (min-width: 768px) {
  .c-btn01.is-large {
    max-width: 320px;
  }
  .c-btn01.is-large .c-btn01__link {
    height: 62px;
  }
  .c-btn01.is-large .c-btn01__txt {
    font-size: 1.6rem;
  }
}

/* .c-btn01
===================================*/
.c-btn01 {
  max-width: 295px;
  margin: 30px auto 0;
}
.c-btn01__link {
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  border: 1px solid rgb(var(--color-grayscale-500));
  border-radius: 30px;
  box-sizing: border-box;
  background: rgb(var(--color-grayscale-100));
  overflow: hidden;
}
.c-btn01__link::before {
  position: absolute;
  top: 50%;
  right: 30px;
  content: "";
  display: inline-block;
  width: 8px;
  height: 12px;
  background-color: currentColor;
  color: rgb(var(--color-primary-500));
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 8 12" xmlns="http://www.w3.org/2000/svg"><path d="M8,6L0,12L4.03789e-07,0L8,6Z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 8 12" xmlns="http://www.w3.org/2000/svg"><path d="M8,6L0,12L4.03789e-07,0L8,6Z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all 0.3s ease;
  transform: translateY(-50%);
}
.c-btn01__link[href$=".pdf"]::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 14px;
  background-color: currentColor;
  color: rgb(var(--color-primary-500));
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 25 14"><path d="M14.575 6.22364C14.7 6.75818 14.675 6.50364 14.675 7.12727C14.675 7.54727 14.625 7.94182 14.5 8.31091C14.3875 8.65455 14.2 8.93455 13.9625 9.15091C13.725 9.35455 13.4125 9.45636 13.025 9.45636H11.5125V4.81091H13.025C13.3125 4.81091 13.5625 4.87455 13.7625 4.98909C13.975 5.10364 14.1375 5.26909 14.275 5.48545C14.4125 5.70182 14.5125 5.94364 14.5875 6.22364H14.575ZM6.775 4.93818C6.6875 4.84909 6.5875 4.81091 6.5 4.81091H4.9V6.82182H6.5C6.5875 6.82182 6.6875 6.77091 6.775 6.69455C6.875 6.59273 6.975 6.46545 7.0375 6.31273C7.1 6.16 7.1375 5.99455 7.1375 5.81636C7.1375 5.63818 7.1 5.47273 7.0375 5.32C6.9625 5.16727 6.875 5.04 6.775 4.93818ZM25 1.22182V12.7909C25 13.4655 24.4625 14.0127 23.8 14.0127H1.2C0.5375 14.0127 0 13.4655 0 12.7909V1.22182C0 0.547273 0.5375 0 1.2 0H23.8C24.4625 0 25 0.547273 25 1.22182ZM8.3625 7.07636C8.5625 6.69455 8.6625 6.27455 8.6625 5.80364C8.6625 5.33273 8.5625 4.9 8.3625 4.53091C8.1625 4.14909 7.9 3.84364 7.575 3.61455C7.25 3.38545 6.8875 3.27091 6.5125 3.27091H4.2125C4 3.27091 3.8125 3.34727 3.6625 3.5C3.5125 3.65273 3.4375 3.84364 3.4375 4.07273V10.1691C3.4375 10.3982 3.5125 10.5891 3.6375 10.7418C3.775 10.8945 3.95 10.9836 4.1625 10.9836C4.375 10.9836 4.5625 10.9073 4.7 10.7418C4.8375 10.5891 4.9 10.3982 4.9 10.1691V8.33636H6.5C6.875 8.33636 7.2375 8.22182 7.575 7.99273C7.9 7.76364 8.1625 7.45818 8.3625 7.07636ZM16.3 7.12727C16.3 6.37636 16.2875 6.28727 16.1 5.65091C15.9625 5.19273 15.7625 4.77273 15.4875 4.41636C15.2125 4.06 14.875 3.78 14.4875 3.57636C14.0875 3.37273 13.6375 3.27091 13.125 3.27091H10.7125C10.5 3.27091 10.3125 3.34727 10.1625 3.5C10.0125 3.65273 9.9375 3.84364 9.9375 4.07273V10.1691C9.9375 10.3982 10.0125 10.5891 10.1625 10.7418C10.3125 10.8945 10.4875 10.9709 10.7125 10.9709H13.125C13.8 10.9709 14.4 10.7927 14.8625 10.4491C15.325 10.1055 15.6875 9.63455 15.9375 9.04909C16.175 8.47636 16.3 7.82727 16.3 7.11455V7.12727ZM22.5625 4.04727C22.5625 3.81818 22.4875 3.62727 22.3375 3.48727C22.1875 3.34727 22.0125 3.27091 21.7875 3.27091H18.5125C18.3 3.27091 18.1125 3.34727 17.9625 3.5C17.8125 3.65273 17.7375 3.84364 17.7375 4.07273V10.1691C17.7375 10.3982 17.8125 10.5891 17.9625 10.7418C18.1125 10.8945 18.3 10.9709 18.525 10.9709C18.7375 10.9709 18.9125 10.8945 19.075 10.7418C19.225 10.5891 19.3125 10.3982 19.3125 10.1691V7.86545H21.3375C21.55 7.86545 21.7375 7.78909 21.8875 7.63636C22.0375 7.48364 22.1125 7.30545 22.1125 7.11455C22.1125 6.88545 22.0375 6.69455 21.8875 6.54182C21.7375 6.40182 21.5625 6.32545 21.3375 6.32545H19.3125V4.78545H21.8C22.0125 4.78545 22.2 4.70909 22.35 4.55636C22.5 4.40364 22.575 4.22545 22.575 4.02182L22.5625 4.04727Z" transform="translate(0 0.004)"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 25 14"><path d="M14.575 6.22364C14.7 6.75818 14.675 6.50364 14.675 7.12727C14.675 7.54727 14.625 7.94182 14.5 8.31091C14.3875 8.65455 14.2 8.93455 13.9625 9.15091C13.725 9.35455 13.4125 9.45636 13.025 9.45636H11.5125V4.81091H13.025C13.3125 4.81091 13.5625 4.87455 13.7625 4.98909C13.975 5.10364 14.1375 5.26909 14.275 5.48545C14.4125 5.70182 14.5125 5.94364 14.5875 6.22364H14.575ZM6.775 4.93818C6.6875 4.84909 6.5875 4.81091 6.5 4.81091H4.9V6.82182H6.5C6.5875 6.82182 6.6875 6.77091 6.775 6.69455C6.875 6.59273 6.975 6.46545 7.0375 6.31273C7.1 6.16 7.1375 5.99455 7.1375 5.81636C7.1375 5.63818 7.1 5.47273 7.0375 5.32C6.9625 5.16727 6.875 5.04 6.775 4.93818ZM25 1.22182V12.7909C25 13.4655 24.4625 14.0127 23.8 14.0127H1.2C0.5375 14.0127 0 13.4655 0 12.7909V1.22182C0 0.547273 0.5375 0 1.2 0H23.8C24.4625 0 25 0.547273 25 1.22182ZM8.3625 7.07636C8.5625 6.69455 8.6625 6.27455 8.6625 5.80364C8.6625 5.33273 8.5625 4.9 8.3625 4.53091C8.1625 4.14909 7.9 3.84364 7.575 3.61455C7.25 3.38545 6.8875 3.27091 6.5125 3.27091H4.2125C4 3.27091 3.8125 3.34727 3.6625 3.5C3.5125 3.65273 3.4375 3.84364 3.4375 4.07273V10.1691C3.4375 10.3982 3.5125 10.5891 3.6375 10.7418C3.775 10.8945 3.95 10.9836 4.1625 10.9836C4.375 10.9836 4.5625 10.9073 4.7 10.7418C4.8375 10.5891 4.9 10.3982 4.9 10.1691V8.33636H6.5C6.875 8.33636 7.2375 8.22182 7.575 7.99273C7.9 7.76364 8.1625 7.45818 8.3625 7.07636ZM16.3 7.12727C16.3 6.37636 16.2875 6.28727 16.1 5.65091C15.9625 5.19273 15.7625 4.77273 15.4875 4.41636C15.2125 4.06 14.875 3.78 14.4875 3.57636C14.0875 3.37273 13.6375 3.27091 13.125 3.27091H10.7125C10.5 3.27091 10.3125 3.34727 10.1625 3.5C10.0125 3.65273 9.9375 3.84364 9.9375 4.07273V10.1691C9.9375 10.3982 10.0125 10.5891 10.1625 10.7418C10.3125 10.8945 10.4875 10.9709 10.7125 10.9709H13.125C13.8 10.9709 14.4 10.7927 14.8625 10.4491C15.325 10.1055 15.6875 9.63455 15.9375 9.04909C16.175 8.47636 16.3 7.82727 16.3 7.11455V7.12727ZM22.5625 4.04727C22.5625 3.81818 22.4875 3.62727 22.3375 3.48727C22.1875 3.34727 22.0125 3.27091 21.7875 3.27091H18.5125C18.3 3.27091 18.1125 3.34727 17.9625 3.5C17.8125 3.65273 17.7375 3.84364 17.7375 4.07273V10.1691C17.7375 10.3982 17.8125 10.5891 17.9625 10.7418C18.1125 10.8945 18.3 10.9709 18.525 10.9709C18.7375 10.9709 18.9125 10.8945 19.075 10.7418C19.225 10.5891 19.3125 10.3982 19.3125 10.1691V7.86545H21.3375C21.55 7.86545 21.7375 7.78909 21.8875 7.63636C22.0375 7.48364 22.1125 7.30545 22.1125 7.11455C22.1125 6.88545 22.0375 6.69455 21.8875 6.54182C21.7375 6.40182 21.5625 6.32545 21.3375 6.32545H19.3125V4.78545H21.8C22.0125 4.78545 22.2 4.70909 22.35 4.55636C22.5 4.40364 22.575 4.22545 22.575 4.02182L22.5625 4.04727Z" transform="translate(0 0.004)"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all 0.3s ease;
}
.c-btn01__link-in {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 30px;
  box-sizing: border-box;
}
.c-btn01__txt {
  font-size: 1.7rem;
  font-weight: bold;
}
@media (min-width: 768px) {
  .c-btn01 {
    max-width: 220px;
  }
  .c-btn01__link {
    height: 50px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-btn01__link {
    transition: all 0.3s ease;
  }
  .c-btn01__link::before {
    z-index: 2;
  }
  .c-btn01__link-in {
    position: relative;
  }
  .c-btn01__link-in::before {
    position: absolute;
    content: "";
    top: 50%;
    left: -10%;
    width: 200%;
    height: 200%;
    transform: translateY(-50%) skewY(-45deg) scale(8, 0);
    background: rgb(var(--color-primary-500));
    transform-origin: right;
    z-index: 1;
    transition: transform 0.6s ease;
  }
  .c-btn01__link:hover {
    color: rgb(var(--color-grayscale-100));
  }
  .c-btn01__link:hover::before {
    color: rgb(var(--color-grayscale-100));
  }
  .c-btn01__link:hover .c-btn01__link-in::before {
    transform-origin: left;
    transform: translateY(-50%) skewY(-45deg) scale(8);
  }
  .c-btn01__txt {
    position: relative;
    z-index: 2;
  }
}

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

/* .c-color-blue
================================================== */
.c-color-blue {
  color: blue;
}

/* .c-form-agreement
================================================== */
.c-form-agreement {
  margin-top: 35px;
}
.c-form-agreement .mwform-checkbox-field {
  margin-top: 30px;
  text-align: center;
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .c-form-agreement {
    text-align: center;
    margin-top: 50px;
  }
  .c-form-agreement .mwform-checkbox-field {
    margin-top: 24px;
  }
}
.c-form-agreement .wpcf7-form-control-wrap {
  margin-top: 30px;
  display: block;
  text-align: center;
  font-size: 1.6rem;
}
.c-form-agreement .wpcf7-acceptance .wpcf7-list-item {
  display: inline-flex;
  margin-right: 20px;
  cursor: pointer;
}
.c-form-agreement .wpcf7-acceptance .wpcf7-list-item input[type="checkbox"] {
  display: none;
  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-form-agreement .wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-left: 34px;
  min-height: 26px;
  vertical-align: top;
}
.c-form-agreement .wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  display: block;
  width: 26px;
  height: 26px;
  background: #fff;
  border: 1px solid rgba(var(--color-grayscale-900));
  box-sizing: border-box;
}
.c-form-agreement .wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 26px;
  height: 26px;
  background-color: #000;
  -webkit-mask-image: url('data:image/svg+xml;uft8,<svg xmlns="http://www.w3.org/2000/svg" width="16px" height="16px" viewBox="0 0 26 26" fill="none" stroke="currentColor" stroke-width="4px" stroke-linecap="square" stroke-linejoin="arcs"><polyline points="20 6 9 17 4 12"></polyline></svg>');
  mask-image: url('data:image/svg+xml;uft8,<svg xmlns="http://www.w3.org/2000/svg" width="16px" height="16px" viewBox="0 0 26 26" fill="none" stroke="currentColor" stroke-width="4px" stroke-linecap="square" stroke-linejoin="arcs"><polyline points="20 6 9 17 4 12"></polyline></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all 0.3s ease;
  transform: scale(0);
}
.c-form-agreement .wpcf7-acceptance .wpcf7-list-item input:checked + .wpcf7-list-item-label::after {
  transform: scale(1);
}

/* 確認画面
================================================ */
.mw_wp_form_confirm .c-form-agreement {
  display: none;
}

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

.c-form-btn {
  position: relative;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  text-align: left;
  height: 60px;
  padding: 10px 20px;
  background: rgb(var(--color-grayscale-900));
  color: #fff;
  border: 0;
  font-size: 1.6rem;
  -webkit-appearance: none;
  appearance: none;
  font-weight: 500;
}
.c-form-btn + .c-form-btn {
  margin-top: 20px;
}
.c-form-btn.is-back {
  background: rgba(var(--color-grayscale-900), 0.6);
}
@media (min-width: 768px) {
  .c-form-btn {
    max-width: 320px;
    height: 80px;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    margin: 0;
  }
  .c-form-btn + .c-form-btn {
    margin-top: 0;
    margin-left: 40px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-form-btn:hover {
    opacity: 0.8;
  }
  .c-form-btn.is-back:hover {
    opacity: 0.8;
  }
}

/* CF7用 */
@media (min-width: 768px) {
  .c-form-area-btn > p {
    display: flex;
  }
}
.c-form-area-btn .wpcf7-submit:disabled {
  opacity: 0.75;
}
.c-form-area-btn .wpcf7-submit {
  min-width: 320px;
}
.c-form-area-btn .wpcf7-previous {
  min-width: 320px;
}

/* .c-form .mwform-checkbox-field
================================================ */
.c-form .wpcf7-list-item-label,
.c-form .mwform-checkbox-field,
.c-form .c-checkbox {
  display: block;
}
.c-form .wpcf7-list-item-label + .mwform-checkbox-field,
.c-form .wpcf7-list-item-label + .c-checkbox,
.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 .wpcf7-list-item-label label,
.c-form .mwform-checkbox-field label,
.c-form .c-checkbox label {
  display: block;
  cursor: pointer;
}
.c-form .wpcf7-list-item-label input,
.c-form .mwform-checkbox-field input,
.c-form .c-checkbox 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-form .wpcf7-list-item-label input:focus-visible + .mwform-checkbox-field-text::before,
.c-form .wpcf7-list-item-label input:focus-visible + .c-checkbox__text::before,
.c-form .mwform-checkbox-field input:focus-visible + .mwform-checkbox-field-text::before,
.c-form .mwform-checkbox-field input:focus-visible + .c-checkbox__text::before,
.c-form .c-checkbox input:focus-visible + .mwform-checkbox-field-text::before,
.c-form .c-checkbox input:focus-visible + .c-checkbox__text::before {
  border-color: rgb(var(--color-grayscale-900));
  box-shadow: 0 0 0 2px rgba(var(--color-grayscale-900), 0.25);
}
.c-form .wpcf7-list-item-label .mwform-checkbox-field-text,
.c-form .wpcf7-list-item-label .c-checkbox__text,
.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-flex;
  align-items: center;
  padding-left: 34px;
  min-height: 26px;
  vertical-align: top;
}
.c-form .wpcf7-list-item-label .mwform-checkbox-field-text::before,
.c-form .wpcf7-list-item-label .c-checkbox__text::before,
.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 {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 26px;
  height: 26px;
  background: #fff;
  border: 1px solid var(rgba(var(--color-grayscale-900), 0.6));
  box-sizing: border-box;
}
.c-form .wpcf7-list-item-label .mwform-checkbox-field-text::after,
.c-form .wpcf7-list-item-label .c-checkbox__text::after,
.c-form .mwform-checkbox-field .mwform-checkbox-field-text::after,
.c-form .mwform-checkbox-field .c-checkbox__text::after,
.c-form .c-checkbox .mwform-checkbox-field-text::after,
.c-form .c-checkbox .c-checkbox__text::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 26px;
  height: 26px;
  background-color: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;uft8,<svg xmlns="http://www.w3.org/2000/svg" width="16px" height="16px" viewBox="0 0 26 26" fill="none" stroke="currentColor" stroke-width="4px" stroke-linecap="square" stroke-linejoin="arcs"><polyline points="20 6 9 17 4 12"></polyline></svg>');
  mask-image: url('data:image/svg+xml;uft8,<svg xmlns="http://www.w3.org/2000/svg" width="16px" height="16px" viewBox="0 0 26 26" fill="none" stroke="currentColor" stroke-width="4px" stroke-linecap="square" stroke-linejoin="arcs"><polyline points="20 6 9 17 4 12"></polyline></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all 0.3s ease;
  transform: scale(0);
}
.c-form .wpcf7-list-item-label input:checked + .mwform-checkbox-field-text::after,
.c-form .wpcf7-list-item-label input:checked + .c-checkbox__text::after,
.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 {
  transform: scale(1);
}

.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;
}

.wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
}
.wpcf7-checkbox .wpcf7-list-item {
  display: inline-flex;
  margin-right: 20px;
  cursor: pointer;
}
.wpcf7-checkbox input[type="checkbox"] {
  display: none;
  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;
}
.wpcf7-checkbox input[type="checkbox"]:focus-visible + .wpcf7-list-item::before,
.wpcf7-checkbox input[type="checkbox"]:focus-visible + .c-checkbox__text::before {
  border-color: rgb(var(--color-grayscale-900));
  box-shadow: 0 0 0 2px rgba(var(--color-grayscale-900), 0.25);
}
.wpcf7-checkbox .wpcf7-list-item-label {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-left: 34px;
  min-height: 26px;
  vertical-align: top;
}
.wpcf7-checkbox .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  display: block;
  width: 26px;
  height: 26px;
  background: #fff;
  border: 1px solid rgba(var(--color-grayscale-900));
  box-sizing: border-box;
}
.wpcf7-checkbox .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 26px;
  height: 26px;
  background-color: #000;
  -webkit-mask-image: url('data:image/svg+xml;uft8,<svg xmlns="http://www.w3.org/2000/svg" width="16px" height="16px" viewBox="0 0 26 26" fill="none" stroke="currentColor" stroke-width="4px" stroke-linecap="square" stroke-linejoin="arcs"><polyline points="20 6 9 17 4 12"></polyline></svg>');
  mask-image: url('data:image/svg+xml;uft8,<svg xmlns="http://www.w3.org/2000/svg" width="16px" height="16px" viewBox="0 0 26 26" fill="none" stroke="currentColor" stroke-width="4px" stroke-linecap="square" stroke-linejoin="arcs"><polyline points="20 6 9 17 4 12"></polyline></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all 0.3s ease;
  transform: scale(0);
}
.wpcf7-checkbox input:checked + .wpcf7-list-item-label::after {
  transform: scale(1);
}

/* c-flow-flow
------------------------------------- */
.c-form-flow {
  max-width: 170px;
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 auto 20px;
}
.c-form-flow::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translate(-50%, 0);
  height: 1px;
  width: calc(100% - 25px);
  background: var(rgba(var(--color-grayscale-900), 0.6));
}
.c-form-flow__item {
  position: relative;
  padding-top: 20px;
  font-weight: 400;
  color: var(rgba(var(--color-grayscale-900), 0.6));
}
.c-form-flow__item::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 7px;
  height: 7px;
  background: var(rgba(var(--color-grayscale-900), 0.6));
  border-radius: 50%;
}
.c-form-flow__item:nth-child(2) {
  margin: auto;
}
@media (min-width: 768px) {
  .c-form-flow {
    max-width: 260px;
    margin: 0 auto 70px;
  }
  .c-form-flow::before {
    width: calc(100% - 35px);
  }
  .c-form-flow__item {
    padding-top: 25px;
    font-size: 2rem;
  }
  .c-form-flow__item::before {
    top: 0;
    width: 10px;
    height: 10px;
  }
}

.mw_wp_form_input .c-form-flow__item:nth-child(1),
.is-input .c-form-flow__item:nth-child(1) {
  color: rgb(var(--color-accent01));
}
.mw_wp_form_input .c-form-flow__item:nth-child(1)::before,
.is-input .c-form-flow__item:nth-child(1)::before {
  background: rgb(var(--color-accent01));
}

.mw_wp_form_confirm .c-form-flow__item:nth-child(2),
.is-confirm .c-form-flow__item:nth-child(2) {
  color: rgb(var(--color-accent01));
}
.mw_wp_form_confirm .c-form-flow__item:nth-child(2)::before,
.is-confirm .c-form-flow__item:nth-child(2)::before {
  background: rgb(var(--color-accent01));
}

.mw_wp_form_complete .c-form-flow__item:nth-child(2),
.is-complete .c-form-flow__item:nth-child(2) {
  color: rgb(var(--color-accent01));
}
.mw_wp_form_complete .c-form-flow__item:nth-child(2)::before,
.is-complete .c-form-flow__item:nth-child(2)::before {
  background: rgb(var(--color-accent01));
}

/* c-form-privacy
------------------------------------ */
.c-form-privacy {
  margin-top: 35px;
}
.c-form-privacy__in {
  margin-right: 5px;
  padding: 25px;
  overflow: auto;
  max-height: 275px;
  box-sizing: border-box;
  border: 1px solid var(rgba(var(--color-grayscale-900), 0.6));
  overscroll-behavior-y: none;
}
.c-form-privacy__in h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}
.c-form-privacy__in p {
  margin: 1em 0;
}
.c-form-privacy__in dl {
  margin: 1em 0;
}
.c-form-privacy__in::-webkit-scrollbar {
  width: 7px;
}
.c-form-privacy__in::-webkit-scrollbar-track {
  background-color: var(rgba(var(--color-grayscale-900), 0.6));
  border-radius: 1000px;
}
.c-form-privacy__in::-webkit-scrollbar-thumb {
  background-color: rgb(var(--color-grayscale-900));
  border-radius: 1000px;
}
@media (min-width: 768px) {
  .c-form-privacy__in {
    padding: 30px;
    max-height: 300px;
  }
  .c-form-privacy__in h3 {
    margin-bottom: 15px;
    font-size: 1.8rem;
  }
  .c-form-privacy__in p {
    margin: 1em 0 1.5em;
  }
  .c-form-privacy__in dl {
    margin: 1.5em 0;
  }
}

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

/* .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 {
  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-form .mwform-radio-field input:focus-visible + .mwform-radio-field-text::before,
.c-form .mwform-radio-field input:focus-visible + .c-radio__text::before,
.c-form .c-radio input:focus-visible + .mwform-radio-field-text::before,
.c-form .c-radio input:focus-visible + .c-radio__text::before {
  border-color: rgb(var(--color-grayscale-900));
  box-shadow: 0 0 0 2px rgba(var(--color-grayscale-900), 0.25);
}
.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-flex;
  align-items: center;
  padding-left: 34px;
  min-height: 26px;
  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 {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 26px;
  height: 26px;
  background: #fff;
  border: 1px solid var(rgba(var(--color-grayscale-900), 0.6));
  border-radius: 50%;
  box-sizing: border-box;
}
.c-form .mwform-radio-field .mwform-radio-field-text::after,
.c-form .mwform-radio-field .c-radio__text::after,
.c-form .c-radio .mwform-radio-field-text::after,
.c-form .c-radio .c-radio__text::after {
  content: "";
  position: absolute;
  top: calc((26px - 10px) / 2);
  left: calc((26px - 10px) / 2);
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgb(var(--color-grayscale-900));
  transform: scale(0);
  box-sizing: border-box;
  transition: all 0.3s ease;
}
.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 {
  transform: scale(1);
}

.c-radio-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
@media (min-width: 768px) {
  .c-radio-list {
    flex-direction: row;
  }
  .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;
  }
}

.wpcf7-radio .wpcf7-list-item {
  display: block;
}
.wpcf7-radio .wpcf7-list-item + .wpcf7-list-item {
  margin-top: 10px;
}
.wpcf7-radio label {
  display: block;
  cursor: pointer;
}
.wpcf7-radio input[type="radio"] {
  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;
}
.wpcf7-radio input[type="radio"]:focus-visible + .wpcf7-list-item-label::before,
.wpcf7-radio input[type="radio"]:focus-visible + .c-radio__text::before {
  border-color: rgb(var(--color-grayscale-900));
  box-shadow: 0 0 0 2px rgba(var(--color-grayscale-900), 0.25);
}
.wpcf7-radio .wpcf7-list-item-label {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-left: 34px;
  min-height: 26px;
  vertical-align: top;
}
.wpcf7-radio .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 26px;
  height: 26px;
  background: #fff;
  border-radius: 50%;
  border: 1px solid rgba(var(--color-grayscale-900));
  box-sizing: border-box;
}
.wpcf7-radio .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: calc((26px - 10px) / 2);
  left: calc((26px - 10px) / 2);
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgb(var(--color-grayscale-900));
  transform: scale(0);
  box-sizing: border-box;
  transition: all 0.3s ease;
}
.wpcf7-radio input:checked + .wpcf7-list-item-label::after {
  transform: scale(1);
}

/* /* c-form-txt
================================================== */
.c-form-txt {
  margin-bottom: 10px;
}
.c-form-txt.is-confirm {
  display: none;
}
@media (min-width: 768px) {
  .c-form-txt {
    margin-bottom: 35px;
    text-align: center;
  }
}

.mw_wp_form_confirm .c-form-txt {
  display: none;
}
.mw_wp_form_confirm .c-form-txt.is-confirm {
  display: block;
}

/* .c-form-placeholder
================================================== */
.c-form-placeholder {
  display: block;
  color: var(rgba(var(--color-grayscale-900), 0.6));
  font-size: 1.3rem;
  margin-bottom: 5px;
}
/* .c-form-note
================================================== */
.c-form-note {
  display: block;
  font-weight: 400;
  font-size: 1.6rem;
  text-indent: -1em;
  margin-left: 1em;
  color: var(rgba(var(--color-grayscale-900), 0.6));
}
.c-form-note::before {
  content: "※";
}
.c-form-note__list {
  margin: 10px 0;
}
.c-form-note__list .c-form-note {
  margin-top: 0;
}

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

/* 確認画面
================================================ */
.mw_wp_form_confirm .c-form-note,
.mw_wp_form_confirm .c-form-placeholder {
  display: none;
}

/* .c-form
================================================== */
input[type="text"]:focus-visible,
input[type="email"]:focus-visible,
input[type="tel"]:focus-visible,
textarea:focus-visible,
button:focus-visible,
select:focus-visible,
option:focus-visible {
  border-color: rgb(var(--color-grayscale-900));
  box-shadow: 0 0 0 2px rgba(var(--color-grayscale-900), 0.25);
}

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 var(rgba(var(--color-grayscale-900), 0.6));
  background: #fff;
  -webkit-appearance: none;
  appearance: none;
  font-family: inherit;
}
input.c-form-parts::placeholder,
select.c-form-parts::placeholder,
textarea.c-form-parts::placeholder,
button.c-form-parts::placeholder {
  color: rgb(var(--color-grayscale-900), 0.6);
}
@media (min-width: 768px) {
  input.c-form-parts.is-min,
  select.c-form-parts.is-min,
  textarea.c-form-parts.is-min,
  button.c-form-parts.is-min {
    max-width: 220px;
  }
  input.c-form-parts.is-large,
  select.c-form-parts.is-large,
  textarea.c-form-parts.is-large,
  button.c-form-parts.is-large {
    max-width: 100%;
  }
}

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

select.c-form-parts {
  padding-right: 20px;
  background: #fff no-repeat right 10px top 50%/12px;
  background-image: 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%2210%22%20viewBox%3D%220%200%2012%2010%22%3E%3Cpath%20d%3D%22M6%2C0l6%2C10H0Z%22%20transform%3D%22translate(12%2010)%20rotate(180)%22%20fill%3D%22%231a1311%22%2F%3E%3C%2Fsvg%3E");
}

.c-form-parts-list {
  display: flex;
  flex-wrap: wrap;
  margin-right: -20px;
}
.c-form-parts-list .c-form-parts {
  margin-right: 20px;
  width: 300px;
}
.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 {
  padding: 10px 0 20px;
  border-style: solid;
  border-color: var(rgba(var(--color-grayscale-900), 0.6));
  border-width: 0;
  box-sizing: border-box;
}
.c-form.is-default th {
  padding: 15px 0 0;
  font-weight: 500;
  text-align: left;
}
@media (max-width: 767px) {
  .c-form.is-default table {
    margin-bottom: 30px;
  }
  .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 td {
    border-bottom: 1px solid rgba(var(--color-grayscale-900));
  }
}
@media (min-width: 768px) {
  .c-form.is-default table {
    margin-bottom: 50px;
  }
  .c-form.is-default th,
  .c-form.is-default td {
    vertical-align: top;
    padding: 28px;
    border-width: 1px 0;
    border-style: solid;
  }
  .c-form.is-default th {
    position: relative;
    width: 300px;
  }
  .c-form.is-default th > span {
    position: relative;
    display: block;
    padding-right: 51px;
  }
  .c-form.is-default th > p {
    position: relative;
    display: block;
    padding-right: 51px;
  }
  .c-form.is-default td {
    padding: 28px 0 28px 22px;
  }
}

/* .c-form-label
================================================== */
.c-form-label {
  display: inline-grid;
  place-content: center;
  width: 41px;
  height: 24px;
  margin-left: 10px;
  font-size: 1rem;
  background: rgb(var(--color-grayscale-900));
  color: #fff;
}
.c-form-label.is-required {
  background: #f00;
}
@media (min-width: 768px) {
  .c-form-label {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 1.4rem;
  }
}

/* .c-form-postcode
================================================== */
.c-form-postcode {
  display: flex;
  flex-wrap: wrap;
}
.c-form-postcode__prefix {
  max-width: 26px;
  margin-right: 12px;
  padding-top: 4px;
  font-size: 1.6rem;
}
.c-form-postcode__input {
  flex-basis: 120px;
}
.c-form-postcode__addr {
  margin-top: 15px;
}
.c-form-postcode__addr input {
  max-width: 100%;
}
@media (min-width: 768px) {
  .c-form-postcode__input {
    flex-basis: 200px;
  }
}

/* 確認画面
================================================ */
.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;
}

/* .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;
  min-width: 80px;
}
@media (min-width: 768px) {
  .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;
  }
}

/* 確認画面
================================================ */
.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;
}

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

/* .c-form-thanks
================================================ */
.c-form-thanks__txt {
  margin-bottom: 1em;
}
@media (min-width: 768px) {
  .c-form-thanks__btn {
    margin-top: 50px;
  }
}

/* .c-head01.is-border
===================================*/
.c-head01.is-border {
  margin-bottom: 30px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgb(var(--color-grayscale-500));
}
@media (min-width: 768px) {
  .c-head01.is-border {
    padding-bottom: 18px;
  }
}

/* .c-head01
===================================*/
.c-head01 {
  margin-bottom: 25px;
}
.c-head01__en {
  font-size: 3.5rem;
  font-weight: bold;
}
.c-head01__txt {
  color: rgb(var(--color-primary-500));
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .c-head01 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0;
  }
  .c-head01__en {
    margin: 0 20px 0 0;
    font-size: 4.6rem;
  }
  .c-head01__txt {
    font-size: 1.4rem;
  }
  .c-head01__wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 25px;
  }
  .c-head01__btn {
    width: 220px;
    margin: 0;
  }
}
/* .c-head02
===================================*/
.c-head02 {
  position: relative;
  margin-bottom: 25px;
  padding-bottom: 25px;
  font-size: 2.5rem;
  letter-spacing: 0.06em;
  line-height: 1.6;
  font-weight: bold;
  text-align: center;
}
.c-head02::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  width: 80px;
  height: 2px;
  margin: 0 auto;
  background: rgb(var(--color-primary-500));
}
.c-head02__lbl {
  font-size: 1.9rem;
  text-align: center;
  font-weight: bold;
}
@media (min-width: 768px) {
  .c-head02 {
    margin-bottom: 41px;
    padding-bottom: 28px;
    font-size: 2.9rem;
  }
  .c-head02::after {
    width: 100px;
  }
  .c-head02__lbl {
    font-size: 2rem;
  }
}

/* .c-head03
===================================*/
.c-head03 {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 14px;
  font-size: 2.1rem;
  letter-spacing: 0.06em;
  font-weight: bold;
}
.c-head03::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    to right,
    rgb(var(--color-primary-500)),
    rgb(var(--color-primary-500)) 50px,
    rgb(var(--color-grayscale-500)) 50px,
    rgb(var(--color-grayscale-500)) 100%
  );
}
@media (min-width: 768px) {
  .c-head03 {
    font-size: 2.3rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
  }
  .c-head03::after {
    height: 2px;
    background: linear-gradient(
      to right,
      rgb(var(--color-primary-500)),
      rgb(var(--color-primary-500)) 110px,
      rgb(var(--color-grayscale-500)) 110px,
      rgb(var(--color-grayscale-500)) 100%
    );
  }
}

/* .c-head04
===================================*/
.c-head04 {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 14px;
  font-size: 2.1rem;
  letter-spacing: 0.06em;
  font-weight: bold;
}

/* .c-ico
================================================== */
.c-ico {
  display: inline-block;
  vertical-align: baseline;
}
.c-ico svg {
  transition: all 0.3s ease;
}

/* .c-ico.is-arw01
================================================== */
.c-ico.is-arw01 {
  margin-left: 5px;
  color: red;
}
.c-ico.is-arw01::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 12px;
  background-color: currentColor;
  color: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 8 12" xmlns="http://www.w3.org/2000/svg"><path d="M8,6L0,12L4.03789e-07,0L8,6Z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 8 12" xmlns="http://www.w3.org/2000/svg"><path d="M8,6L0,12L4.03789e-07,0L8,6Z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all 0.3s ease;
}

/* .c-ico.is-arw02
================================================== */
.c-ico.is-arw02 {
  margin-left: 5px;
  color: green;
}
.c-ico.is-arw02::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 10px;
  background-color: currentColor;
  color: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 5.516 9.032"><path d="M0,8.032a1,1,0,0,1-.707-.293,1,1,0,0,1,0-1.414L2.1,3.516-.707.707a1,1,0,0,1,0-1.414,1,1,0,0,1,1.414,0L4.223,2.809a1,1,0,0,1,0,1.414L.707,7.739A1,1,0,0,1,0,8.032Z" transform="translate(1 1)"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 5.516 9.032"><path d="M0,8.032a1,1,0,0,1-.707-.293,1,1,0,0,1,0-1.414L2.1,3.516-.707.707a1,1,0,0,1,0-1.414,1,1,0,0,1,1.414,0L4.223,2.809a1,1,0,0,1,0,1.414L.707,7.739A1,1,0,0,1,0,8.032Z" transform="translate(1 1)"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all 0.3s ease;
}

/* .c-ico.is-arw03
================================================== */
.c-ico.is-arw03 {
  margin-left: 5px;
}
.c-ico.is-arw03::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 10px;
  background-color: currentColor;
  color: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 20 10" xmlns="http://www.w3.org/2000/svg"><path d="M20,5L13.0444,0V3.75556H0V6.25556H13.0444V10L20,5Z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 20 10" xmlns="http://www.w3.org/2000/svg"><path d="M20,5L13.0444,0V3.75556H0V6.25556H13.0444V10L20,5Z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all 0.3s ease;
  background: linear-gradient(to right, #22c1c3 0%, #fdbb2d 100%);
}

/* .c-ico.is-blank01
================================================== */
.c-ico.is-blank01 {
  color: red;
  margin-left: 5px;
}
.c-ico.is-blank01::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 9px;
  background-color: currentColor;
  color: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9.004 8.998"><path d="M7566,22026v-5.334h1.78v.891h-.89v3.553h3.56v-.889h.885V22026Zm2.67-2.67V22018H7574v5.328Zm.89-.885h3.554v-3.559h-3.554Z" transform="translate(-7565.498 -22017.502)" stroke="rgba(0,0,0,0)" stroke-miterlimit="10" stroke-width="1"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9.004 8.998"><path d="M7566,22026v-5.334h1.78v.891h-.89v3.553h3.56v-.889h.885V22026Zm2.67-2.67V22018H7574v5.328Zm.89-.885h3.554v-3.559h-3.554Z" transform="translate(-7565.498 -22017.502)" stroke="rgba(0,0,0,0)" stroke-miterlimit="10" stroke-width="1"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all 0.3s ease;
}

/* .c-ico.is-blank02
================================================== */
.c-ico.is-blank02 {
  color: green;
  margin-left: 5px;
}
.c-ico.is-blank02::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-color: currentColor;
  color: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 13.435 13.434"><path d="M15333.549,2248.428a.56.56,0,0,1-.559-.562V2237.79a.559.559,0,0,1,.559-.558h4.479a.56.56,0,1,1,0,1.121h-3.917v8.955h8.954v-3.917a.561.561,0,1,1,1.121,0v4.475a.56.56,0,0,1-.562.562Zm5.2-5.762a.562.562,0,0,1,0-.793l5.762-5.762h-3.686a.558.558,0,1,1,0-1.117h5.038a.559.559,0,0,1,.559.559v5.038a.559.559,0,0,1-1.117,0V2236.9l-5.762,5.762a.568.568,0,0,1-.794,0Z" transform="translate(-15332.99 -2234.994)"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 13.435 13.434"><path d="M15333.549,2248.428a.56.56,0,0,1-.559-.562V2237.79a.559.559,0,0,1,.559-.558h4.479a.56.56,0,1,1,0,1.121h-3.917v8.955h8.954v-3.917a.561.561,0,1,1,1.121,0v4.475a.56.56,0,0,1-.562.562Zm5.2-5.762a.562.562,0,0,1,0-.793l5.762-5.762h-3.686a.558.558,0,1,1,0-1.117h5.038a.559.559,0,0,1,.559.559v5.038a.559.559,0,0,1-1.117,0V2236.9l-5.762,5.762a.568.568,0,0,1-.794,0Z" transform="translate(-15332.99 -2234.994)"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all 0.3s ease;
}

/* .c-ico.is-blank03
================================================== */
.c-ico.is-blank03 {
  margin-left: 5px;
}
.c-ico.is-blank03::after {
  background: linear-gradient(to right, #22c1c3 0%, #fdbb2d 100%);
}

/* .c-ico.is-mail01
================================================== */
.c-ico.is-mail01 {
  color: skyblue;
  margin-right: 5px;
}
.c-ico.is-mail01::after {
  content: "";
  display: inline-block;
  width: 17px;
  height: 13px;
  background-color: currentColor;
  color: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 17 12.147"><path d="M16.19,1.415v9.923H.81V1.415L8.5,8.29ZM1.348.81h14.3L8.5,7.2ZM0,12.147H17V0H0Z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 17 12.147"><path d="M16.19,1.415v9.923H.81V1.415L8.5,8.29ZM1.348.81h14.3L8.5,7.2ZM0,12.147H17V0H0Z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all 0.3s ease;
}

/* .c-ico.is-map01
================================================== */
.c-ico.is-map01 {
  color: violet;
  margin-right: 5px;
}
.c-ico.is-map01::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 16px;
  background-color: currentColor;
  color: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12.016 16.221"><path d="M6.008,0A6.026,6.026,0,0,0,0,6.041C0,10.188,4.166,14.8,5.684,16.1a.5.5,0,0,0,.647,0c1.519-1.3,5.684-5.909,5.684-10.057A6.026,6.026,0,0,0,6.008,0m0,9.864A3.633,3.633,0,1,1,9.619,6.227,3.622,3.622,0,0,1,6.008,9.86" transform="translate(0 0.004)"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12.016 16.221"><path d="M6.008,0A6.026,6.026,0,0,0,0,6.041C0,10.188,4.166,14.8,5.684,16.1a.5.5,0,0,0,.647,0c1.519-1.3,5.684-5.909,5.684-10.057A6.026,6.026,0,0,0,6.008,0m0,9.864A3.633,3.633,0,1,1,9.619,6.227,3.622,3.622,0,0,1,6.008,9.86" transform="translate(0 0.004)"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all 0.3s ease;
}

/* .c-ico.is-search01
================================================== */
.c-ico.is-search01 {
  color: red;
  margin-right: 5px;
}
.c-ico.is-search01::after {
  content: "";
  display: inline-block;
  width: 19px;
  height: 19px;
  background-color: currentColor;
  color: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18.814 18.814"><path d="M12491.646,13519.027l-4.409-4.409,0,0a7.6,7.6,0,1,1,1.386-1.387l4.409,4.413a.979.979,0,0,1,0,1.381.975.975,0,0,1-1.384,0Zm-14.97-10.43a5.922,5.922,0,1,0,5.921-5.921A5.926,5.926,0,0,0,12476.677,13508.6Z" transform="translate(-12474.751 -13500.751)" stroke-width="0.5"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18.814 18.814"><path d="M12491.646,13519.027l-4.409-4.409,0,0a7.6,7.6,0,1,1,1.386-1.387l4.409,4.413a.979.979,0,0,1,0,1.381.975.975,0,0,1-1.384,0Zm-14.97-10.43a5.922,5.922,0,1,0,5.921-5.921A5.926,5.926,0,0,0,12476.677,13508.6Z" transform="translate(-12474.751 -13500.751)" stroke-width="0.5"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all 0.3s ease;
}

/* .c-ico.is-tel01
================================================== */
.c-ico.is-tel01 {
  color: pink;
  margin-right: 5px;
}
.c-ico.is-tel01::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-color: currentColor;
  color: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 23.5 23.5"><path d="M18.019,23.5c-2.313,0-7.045-.741-12.147-5.844C-.641,11.143-.085,5.26.093,4.147a3.661,3.661,0,0,1,1.045-2.1L2.405.778a2.668,2.668,0,0,1,3.767,0l3.19,3.191a2.669,2.669,0,0,1,0,3.768L7.81,9.29a18.573,18.573,0,0,0,2.752,3.674A18.585,18.585,0,0,0,14.217,15.7l1.554-1.557a2.671,2.671,0,0,1,3.77,0l3.181,3.184a2.669,2.669,0,0,1,0,3.767l-1.25,1.25A3.7,3.7,0,0,1,19.5,23.378a7.471,7.471,0,0,1-1.479.122M4.29,2.148a.516.516,0,0,0-.367.149L2.658,3.564a1.554,1.554,0,0,0-.441.9c-.1.594-.725,5.777,5.174,11.675,6.21,6.213,11.472,5.18,11.692,5.133a1.6,1.6,0,0,0,.873-.441L21.2,19.581a.522.522,0,0,0,0-.731l-3.182-3.184a.526.526,0,0,0-.733,0l-2.708,2.71-.708-.393a21.871,21.871,0,0,1-4.828-3.5A21.8,21.8,0,0,1,5.532,9.632l-.393-.708L7.845,6.218a.522.522,0,0,0,0-.731L4.655,2.3a.515.515,0,0,0-.365-.148" transform="translate(0 0)"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 23.5 23.5"><path d="M18.019,23.5c-2.313,0-7.045-.741-12.147-5.844C-.641,11.143-.085,5.26.093,4.147a3.661,3.661,0,0,1,1.045-2.1L2.405.778a2.668,2.668,0,0,1,3.767,0l3.19,3.191a2.669,2.669,0,0,1,0,3.768L7.81,9.29a18.573,18.573,0,0,0,2.752,3.674A18.585,18.585,0,0,0,14.217,15.7l1.554-1.557a2.671,2.671,0,0,1,3.77,0l3.181,3.184a2.669,2.669,0,0,1,0,3.767l-1.25,1.25A3.7,3.7,0,0,1,19.5,23.378a7.471,7.471,0,0,1-1.479.122M4.29,2.148a.516.516,0,0,0-.367.149L2.658,3.564a1.554,1.554,0,0,0-.441.9c-.1.594-.725,5.777,5.174,11.675,6.21,6.213,11.472,5.18,11.692,5.133a1.6,1.6,0,0,0,.873-.441L21.2,19.581a.522.522,0,0,0,0-.731l-3.182-3.184a.526.526,0,0,0-.733,0l-2.708,2.71-.708-.393a21.871,21.871,0,0,1-4.828-3.5A21.8,21.8,0,0,1,5.532,9.632l-.393-.708L7.845,6.218a.522.522,0,0,0,0-.731L4.655,2.3a.515.515,0,0,0-.365-.148" transform="translate(0 0)"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all 0.3s ease;
}

.c-link-list01 {
  border-top: 1px solid rgb(var(--color-grayscale-500));
}
.c-link-list01__item {
  border-bottom: 1px solid rgb(var(--color-grayscale-500));
}
.c-link-list01__item-link {
  position: relative;
  display: block;
  padding: 12px 35px 12px 20px;
  text-decoration: none;
  font-weight: 500;
}
.c-link-list01__item-link::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  content: "";
  display: inline-block;
  width: 8px;
  height: 12px;
  background-color: currentColor;
  color: rgb(var(--color-primary-500));
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 5.516 9.032"><path d="M0,8.032a1,1,0,0,1-.707-.293,1,1,0,0,1,0-1.414L2.1,3.516-.707.707a1,1,0,0,1,0-1.414,1,1,0,0,1,1.414,0L4.223,2.809a1,1,0,0,1,0,1.414L.707,7.739A1,1,0,0,1,0,8.032Z" transform="translate(1 1)"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 5.516 9.032"><path d="M0,8.032a1,1,0,0,1-.707-.293,1,1,0,0,1,0-1.414L2.1,3.516-.707.707a1,1,0,0,1,0-1.414,1,1,0,0,1,1.414,0L4.223,2.809a1,1,0,0,1,0,1.414L.707,7.739A1,1,0,0,1,0,8.032Z" transform="translate(1 1)"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all 0.3s ease;
}
.c-link-list01__item-link[target="_blank"] .c-link-list01__item-in:after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 13px;
  background-color: currentColor;
  color: rgb(var(--color-primary-500));
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9.004 8.998"><path d="M7566,22026v-5.334h1.78v.891h-.89v3.553h3.56v-.889h.885V22026Zm2.67-2.67V22018H7574v5.328Zm.89-.885h3.554v-3.559h-3.554Z" transform="translate(-7565.498 -22017.502)" stroke="rgba(0,0,0,0)" stroke-miterlimit="10" stroke-width="1"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9.004 8.998"><path d="M7566,22026v-5.334h1.78v.891h-.89v3.553h3.56v-.889h.885V22026Zm2.67-2.67V22018H7574v5.328Zm.89-.885h3.554v-3.559h-3.554Z" transform="translate(-7565.498 -22017.502)" stroke="rgba(0,0,0,0)" stroke-miterlimit="10" stroke-width="1"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all 0.3s ease;
  margin-left: 10px;
}
.c-link-list01__item-link[href$=".pdf"] .c-link-list01__item-in:after {
  content: "";
  display: inline-block;
  width: 21px;
  height: 25px;
  background-color: currentColor;
  color: rgb(var(--color-primary-500));
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 219 245"><path d="M219.15 62.24v183.35H17.31v-33.06h14.87v18.19h172.1V78.73h-69.51V14.87H32.18v85.06H17.31V0H156.9z"/><path d="M25.8 121.33H0v73.12h16.47v-25.18h7.85q13.26 0 21.19-6.81t7.93-17.82q0-23.31-27.64-23.31m-2.86 35.44h-6.47V134h6.47q13.17 0 13.16 11.27 0 11.5-13.16 11.5M183.42 134.74h-25.8v17.95h23.71v13.36h-23.71v28.4h-16.47v-73.12h42.27zM90.05 121.33h-25.9v73.12h25.9q17.7 0 28.33-10.19T129 157q0-35.67-38.95-35.67m15.53 53.34q-6.09 6.42-16.8 6.42h-8.16v-46.35h8q10.92 0 17 6t6 16.45q.05 11.06-6.04 17.48"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 219 245"><path d="M219.15 62.24v183.35H17.31v-33.06h14.87v18.19h172.1V78.73h-69.51V14.87H32.18v85.06H17.31V0H156.9z"/><path d="M25.8 121.33H0v73.12h16.47v-25.18h7.85q13.26 0 21.19-6.81t7.93-17.82q0-23.31-27.64-23.31m-2.86 35.44h-6.47V134h6.47q13.17 0 13.16 11.27 0 11.5-13.16 11.5M183.42 134.74h-25.8v17.95h23.71v13.36h-23.71v28.4h-16.47v-73.12h42.27zM90.05 121.33h-25.9v73.12h25.9q17.7 0 28.33-10.19T129 157q0-35.67-38.95-35.67m15.53 53.34q-6.09 6.42-16.8 6.42h-8.16v-46.35h8q10.92 0 17 6t6 16.45q.05 11.06-6.04 17.48"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all 0.3s ease;
  margin-left: 10px;
  vertical-align: text-bottom;
}
@media (min-width: 768px) {
  .c-link-list01__item-link {
    padding: 27px 0 27px 20px;
  }
  .c-link-list01__item-link::before {
    width: 10px;
    height: 15px;
  }
  .c-link-list01__item-in {
    position: relative;
    display: inline-block;
    padding-right: 35px;
    transition: all 0.3s ease;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-link-list01 .c-link-list01__item-link:hover .c-link-list01__item-in {
    color: rgb(var(--color-primary-500));
  }
}

.c-list-decimal01 {
  counter-reset: num;
}
.c-list-decimal01__item {
  counter-increment: num;
  position: relative;
  display: flex;
  align-items: flex-start;
  box-sizing: border-box;
  flex: 1;
}
.c-list-decimal01__item::before {
  content: counter(num, decimal-leading-zero) ".";
  display: inline-block;
  padding-right: 0.5em;
  white-space: nowrap;
  color: rgb(var(--main));
}

/*  .c-list01
================================================== */
.c-list01 {
  list-style: none;
}
.c-list01__item {
  position: relative;
  padding-left: 1em;
  box-sizing: border-box;
}
.c-list01__item::before {
  content: "";
  position: absolute;
  top: calc(1em - 3px);
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgb(var(--color-primary-500));
}
.c-list01__item + .c-list01__item {
  margin-top: 5px;
}
@media (min-width: 768px) {
  .c-list01.is-column2-upper-tb {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

/* .c-pager01
===================================*/
.c-pager01 {
  overflow: hidden;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  margin: 40px -5px -10px;
}
.c-pager01 li {
  margin: 0 10px 10px;
}
.c-pager01 li a,
.c-pager01 li span {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 40px;
  height: 40px;
  line-height: 1;
  border: 1px solid rgb(var(--color-grayscale-500));
  border-radius: 50%;
  background: rgb(var(--color-grayscale-100));
  text-decoration: none;
  font-size: 1.8rem;
  font-family: var(--fontfamily_en);
  font-weight: var(--font_weight_en);
  line-height: var(--line-height_en);
  letter-spacing: var(--letter-spacing_en);
  box-sizing: border-box;
  transition: all 0.3s;
}
.c-pager01 li.pages span {
  width: auto;
  border: 0;
}
.c-pager01 li.current span {
  color: rgb(var(--color-grayscale-100));
  border-color: rgb(var(--color-primary-500));
  background-color: rgb(var(--color-primary-500));
}
.c-pager01 li.first,
.c-pager01 li.previous {
  margin-right: 30px;
}
.c-pager01 li.first a,
.c-pager01 li.last a {
  width: auto;
  border-color: transparent;
  padding-right: 15px;
  padding-left: 15px;
}
.c-pager01 li.next,
.c-pager01 li.last {
  margin-left: 30px;
}
.c-pager01 li.extend span {
  border: 0;
}
.c-pager01 li.previous a,
.c-pager01 li.next a {
  position: relative;
  font-size: 0;
  color: rgb(var(--color-grayscale-100));
  border-color: rgb(var(--color-primary-500));
  background-color: rgb(var(--color-primary-500));
}
.c-pager01 li.previous a::before,
.c-pager01 li.next a::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  right: -4px;
  left: 0;
  width: 0;
  height: 0;
  margin: auto;
  border-style: solid;
  border-color: transparent transparent transparent rgb(var(--color-grayscale-100));
  border-width: 4px 0px 4px 7px;
}
.c-pager01 li.previous a::before {
  transform: rotate(180deg);
  right: 0;
  left: -2px;
}
@media (min-width: 768px) {
  .c-pager01 {
    margin: 60px -5px -10px;
  }
  .c-pager01.first,
  .c-pager01.previous {
    margin-right: 40px;
  }
  .c-pager01.next,
  .c-pager01.last {
    margin-left: 40px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-pager01 li a:hover {
    color: rgb(var(--color-grayscale-100));
    border-color: rgb(var(--color-primary-500));
    background-color: rgb(var(--color-primary-500));
  }
  .c-pager01 li.previous a:hover,
  .c-pager01 li.next a:hover {
    color: rgb(var(--color-grayscale-900));
    border-color: rgb(var(--color-grayscale-500));
    background-color: rgb(var(--color-grayscale-100));
  }
  .c-pager01 li.previous a:hover::before,
  .c-pager01 li.next a:hover::before {
    border-color: transparent transparent transparent rgb(var(--color-primary-500));
  }
}

/*  .c-pager02
================================================== */
.c-pager02 {
  position: relative;
  overflow: hidden;
  margin-top: 35px;
  line-height: 1;
}
.c-pager02__previous a,
.c-pager02__next a {
  position: relative;
  display: inline-block;
  font-weight: bold;
  text-decoration: none;
  padding-top: 10px;
  padding-bottom: 10px;
}
.c-pager02__previous a::before,
.c-pager02__next a::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  right: 7px;
  width: 0;
  height: 0;
  margin: auto;
  border-style: solid;
  border-color: transparent transparent transparent rgb(var(--color-grayscale-100));
  border-width: 4px 0px 4px 7px;
  z-index: 1;
}
.c-pager02__previous a::after,
.c-pager02__next a::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  right: 0;
  width: 24px;
  height: 24px;
  margin: auto;
  background: rgb(var(--color-primary-500));
  border-radius: 50%;
}
.c-pager02__previous {
  float: left;
}
.c-pager02__previous a {
  justify-content: flex-start;
  padding-left: 30px;
}
.c-pager02__previous a::before {
  right: auto;
  left: 8px;
  transform: rotate(180deg);
}
.c-pager02__previous a::after {
  right: auto;
  left: 0;
}
.c-pager02__next {
  float: right;
}
.c-pager02__next a {
  justify-content: flex-end;
  padding-right: 30px;
}
.c-pager02__all {
  width: 100%;
  margin: 60px auto 0;
  clear: both;
}
.c-pager02__all a {
  justify-content: center;
}
@media (min-width: 768px) {
  .c-pager02 {
    margin-top: 60px;
  }
  .c-pager02__previous {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
  .c-pager02__next {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
  .c-pager02__all {
    margin: 0 auto;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-pager02__previous a,
  .c-pager02__next a {
    transition: all 0.3s ease;
  }
  .c-pager02__previous a:hover,
  .c-pager02__next a:hover {
    text-decoration: underline;
  }
}

/* c-single01
------------------------------------- */
.c-single01__inner {
  padding-top: 45px;
  padding-bottom: 65px;
}
.c-single01__head {
  border-bottom: 1px solid var(rgba(var(--color-grayscale-900), 0.6));
}
.c-single01__head time {
  display: block;
  margin: 0 0 10px;
  font-size: 1.7rem;
  color: rgba(var(--color-grayscale-800));
}
.c-single01__head h1 {
  margin-bottom: 25px;
  padding-bottom: 22px;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.06em;
  border-bottom: 2px solid rgba(var(--color-grayscale-500));
}
.c-single01__link {
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (min-width: 768px) {
  .c-single01__inner {
    padding-top: 60px;
    padding-bottom: 80px;
  }
  .c-single01__head time {
    margin: 0 0 15px;
    font-size: 1.8rem;
  }
  .c-single01__head h1 {
    margin-bottom: 30px;
    padding-bottom: 25px;
    font-size: 2.9rem;
  }
  .c-single01__link {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

/* .c-single-content
================================================== */
.c-single-content {
  padding-bottom: 40px;
}
.c-single-content::after {
  content: "";
  clear: both;
  display: block;
}
.c-single-content > *:first-child {
  margin-top: 0;
}
.c-single-content > *:last-child {
  margin-bottom: 0;
}
.c-single-content h2 {
  position: relative;
  font-size: 2.1rem;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.06em;
  margin: 40px 0 22px;
  padding-left: 14px;
}
.c-single-content h2::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: rgb(var(--color-primary-500));
}
.c-single-content h3 {
  margin: 40px 0 13px;
  font-size: 1.9rem;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.06em;
  color: rgb(var(--color-primary-500));
}
.c-single-content h2 + *,
.c-single-content h3 + * {
  margin-top: 0;
}
.c-single-content b,
.c-single-content strong {
  font-weight: var(--font_weight_bold);
  line-height: var(--line-height_snug);
}
.c-single-content em {
  color: rgb(var(--color-primary-500));
  font-style: normal;
}
.c-single-content a {
  color: rgb(var(--color-primary-500));
  transition: opacity 0.3s ease;
}
.c-single-content a[target]:not(:has(img))::after {
  margin-left: 3px;
  content: "";
  display: inline-block;
  width: 10px;
  height: 9px;
  background-color: currentColor;
  color: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9.004 8.998"><path d="M7566,22026v-5.334h1.78v.891h-.89v3.553h3.56v-.889h.885V22026Zm2.67-2.67V22018H7574v5.328Zm.89-.885h3.554v-3.559h-3.554Z" transform="translate(-7565.498 -22017.502)" stroke="rgba(0,0,0,0)" stroke-miterlimit="10" stroke-width="1"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9.004 8.998"><path d="M7566,22026v-5.334h1.78v.891h-.89v3.553h3.56v-.889h.885V22026Zm2.67-2.67V22018H7574v5.328Zm.89-.885h3.554v-3.559h-3.554Z" transform="translate(-7565.498 -22017.502)" stroke="rgba(0,0,0,0)" stroke-miterlimit="10" stroke-width="1"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all 0.3s ease;
}
.c-single-content ul:not([class]) {
  margin: 1.3em 0;
  list-style: none;
  padding-left: 0;
}
.c-single-content ul:not([class]) li {
  position: relative;
  padding-left: 1em;
  box-sizing: border-box;
}
.c-single-content ul:not([class]) li::before {
  content: "";
  position: absolute;
  top: calc(1em - 3px);
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgb(var(--color-primary-500));
}
.c-single-content ul:not([class]) li + li {
  margin-top: 5px;
}
.c-single-content ol:not([class]) {
  margin: 1.3em 0;
}
.c-single-content ol:not([class]) li {
  box-sizing: border-box;
}
.c-single-content ol:not([class]) li::marker {
  color: rgb(var(--color-primary-500));
  font-family: var(--fontfamily_en);
  font-weight: var(--font_weight_en);
  line-height: var(--line-height_en);
  letter-spacing: var(--letter-spacing_en);
}
.c-single-content ol:not([class]) li + li {
  margin-top: 5px;
}
.c-single-content table {
  margin: 1.3em 0;
}
.c-single-content table th,
.c-single-content table td {
  font-size: 1.3rem;
  vertical-align: top;
  text-align: left;
  padding: 12px 20px;
  border: 1px solid rgb(var(--color-grayscale-500));
  box-sizing: border-box;
}
.c-single-content table th {
  width: 150px;
  background: rgb(var(--color-primary-500));
  color: rgb(var(--color-grayscale-100));
  text-align: left;
}
.c-single-content table th + th {
  width: auto;
}
.c-single-content table td {
  background: rgb(var(--color-grayscale-100));
}
.c-single-content strong {
  font-weight: bold;
}
.c-single-content figure {
  display: table;
}
.c-single-content figure figcaption {
  caption-side: bottom;
  display: table-caption;
  font-size: 1.3rem;
  margin-top: 5px;
  width: 100%;
}
.c-single-content-set {
  clear: both;
  display: grid;
  gap: 25px;
  margin: 1.3em 0;
}
.c-single-content-set__item > *:first-child {
  margin-top: 0;
}
.c-single-content-set__item > *:last-child {
  margin-bottom: 0;
}
.c-single-content-box {
  margin: 40px 0;
  padding: 20px;
  border: 1px solid rgb(var(--color-grayscale-500));
  background: rgb(var(--color-grayscale-100));
}
.c-single-content-box__head {
  margin: 0 0 11px !important;
  font-size: 1.7rem;
  line-height: 1.6;
  letter-spacing: 0.06em;
  font-weight: bold;
}
.c-single-content-box__note {
  margin: 0 !important;
  font-size: 1.3rem;
  color: rgb(var(--color-grayscale-800));
  padding-left: 1em;
  text-indent: -1em;
}
.c-single-content-box__note::before {
  content: "※";
}
.c-single-content-box p {
  margin: 0.6em 0;
}
.c-single-content-box > *:first-child {
  margin-top: 0;
}
.c-single-content-box > *:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .c-single-content {
    display: flow-root;
    padding-bottom: 60px;
  }
  .c-single-content h2 {
    margin: 60px 0 25px;
    padding-left: 19px;
    font-size: 2.3rem;
  }
  .c-single-content h3 {
    margin: 60px 0 20px;
    font-size: 2rem;
  }
  .c-single-content h2 + *,
  .c-single-content h3 + * {
    margin-top: 0;
  }
  .c-single-content table {
    table-layout: auto;
  }
  .c-single-content table th,
  .c-single-content table td {
    padding: 20px 25px;
    font-size: 1.6rem;
  }
  .c-single-content table th {
    width: 410px;
  }
  .c-single-content ul:not([class]) li + li {
    margin-top: 5px;
  }
  .c-single-content ol:not([class]) li + li {
    margin-top: 5px;
  }
  .c-single-content figure figcaption {
    margin-top: 8px;
  }
  .c-single-content .mt-image-center {
    margin-left: auto;
    margin-right: auto;
    width: -moz-fit-content;
    width: fit-content;
  }
  .c-single-content .mt-image-left {
    float: left;
    margin-right: 40px;
    max-width: 530px;
  }
  .c-single-content .mt-image-right {
    float: right;
    margin-left: 40px;
    max-width: 530px;
  }
  .c-single-content .mt-image-left + .mt-image-right {
    margin-left: 0;
  }
  .c-single-content-set {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 60px 0;
  }
  .c-single-content-set.is-col3 {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px 25px;
  }
  .c-single-content-set__item > *:first-child {
    margin-top: 0;
  }
  .c-single-content-set__item > *:last-child {
    margin-bottom: 0;
  }
  .c-single-content-box {
    margin: 60px 0;
    padding: 38px 38px 40px;
  }
  .c-single-content-box__head {
    margin: 0 0 16px !important;
    font-size: 1.8rem;
  }
  .c-single-content-box__note {
    font-size: 1.4rem;
  }
  .c-single-content-box p {
    margin: 0.6em 0;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-single-content a:hover {
    text-decoration: none;
    opacity: 0.7;
  }
}

/*  .c-tab01
================================================== */
.c-tab01 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 9px;
}
.c-tab01__item {
  padding: 8px 10px;
  background: rgb(var(--color-grayscale-100));
  border: 1px solid rgb(var(--color-grayscale-500));
  font-size: 1.4rem;
  color: rgb(var(--color-grayscale-800));
  font-weight: bold;
  text-align: center;
}
.c-tab01__item.is-active {
  color: rgb(var(--color-grayscale-100));
  background-color: rgb(var(--color-primary-500));
  border-color: rgb(var(--color-primary-500));
}
@media (min-width: 768px) {
  .c-tab01 {
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 10px;
  }
  .c-tab01__item {
    padding: 13px 10px;
    font-size: 1.6rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-tab01__item {
    transition: all 0.3s;
  }
  .c-tab01__item:hover {
    color: rgb(var(--color-grayscale-100));
    background-color: rgb(var(--color-primary-500));
    border-color: rgb(var(--color-primary-500));
  }
}
/*  .c-tab01（過去の戦績ページの年度ページ内リンク）
================================================== */
#pastresults .c-tab01 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
  .c-tab01__item{
    width: 120px;
  }
  a{text-decoration: none;}
}
@media (max-width: 767px){
  #pastresults .c-tab01 {
    .c-tab01__item{
      width: auto;
    }
  }
}

/*  .c-table01.is-block-sp
================================================== */
@media (max-width: 767px) {
  .c-table01.is-block-sp table,
  .c-table01.is-block-sp thead,
  .c-table01.is-block-sp tbody,
  .c-table01.is-block-sp tr,
  .c-table01.is-block-sp th,
  .c-table01.is-block-sp td {
    display: block;
  }
  .c-table01.is-block-sp th {
    border-bottom: 0;
  }
  .c-table01.is-block-sp tr + tr th {
    border-top: 0;
  }
}

/*  .c-table01.is-scroll-sp
================================================== */
@media (max-width: 767px) {
  .c-table01.is-scroll-sp {
    overflow-x: scroll;
    padding-bottom: 20px;
  }
  .c-table01.is-scroll-sp th,
  .c-table01.is-scroll-sp td {
    width: 150px;
  }
  .c-table01.is-scroll-sp::-webkit-scrollbar {
    background: rgb(var(--color-grayscale-500));
    width: 2px;
    height: 2px;
  }
  .c-table01.is-scroll-sp::-webkit-scrollbar-thumb {
    background-color: rgb(var(--color-primary-500));
    border-radius: 20px;
  }
}

/*  .c-table01
================================================== */
.c-table01 th {
  width: 130px;
  background: rgb(var(--color-primary-500));
  font-weight: bold;
  color: rgb(var(--color-grayscale-100));
}
.c-table01 th + th {
  width: auto;
}
.c-table01 td {
  background: rgb(var(--color-grayscale-100));
}
.c-table01 th,
.c-table01 td {
  font-size: 1.3rem;
  vertical-align: top;
  text-align: left;
  padding: 12px 20px;
  border: 1px solid rgb(var(--color-grayscale-500));
  box-sizing: border-box;
}
.past th{background:#999}
@media (min-width: 768px) {
  .c-table01 th {
    width: 410px;
  }
  .c-table01 th,
  .c-table01 td {
    padding: 20px 25px;
    font-size: 1.6rem;
  }
}

/* .l-breadcrumb
================================================ */
.l-breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  padding-top: 20px;
  padding-bottom: 20px;
}
.l-breadcrumb-list__item {
  position: relative;
  display: inline-block;
  vertical-align: top;
  font-size: 1.3rem;
  font-weight: bold;
  color: rgb(var(--color-primary-500));
}
.l-breadcrumb-list__item + .l-breadcrumb-list__item {
  padding-left: 25px;
}
.l-breadcrumb-list__item + .l-breadcrumb-list__item:before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 8px;
  width: 10px;
  height: 1px;
  margin: auto;
  background: rgb(var(--color-grayscale-500));
}
.l-breadcrumb-list__item:first-child {
  color: rgb(var(--color-grayscale-900));
}
@media (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 (min-width: 768px) {
  .l-breadcrumb-list {
    padding-top: 15px;
    padding-bottom: 15x;
  }
  .l-breadcrumb-list__item {
    font-size: 1.4rem;
  }
  .l-breadcrumb-list__item + .l-breadcrumb-list__item {
    padding-left: 20px;
  }
  .l-breadcrumb-list__item + .l-breadcrumb-list__item::before {
    left: 5px;
  }
}

/* .l-footer
================================================ */
.l-footer {
  position: relative;
}
.l-footer__cr {
  margin-top: 30px;
  color: rgba(var(--color-grayscale-100), 0.9);
  font-size: 1.5rem;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .l-footer__cr {
    margin: 0;
    font-size: 1.4rem;
  }
}

/* .l-footer-page-top
================================================ */
.l-footer-page-top {
  position: absolute;
  width: 40px;
  height: 40px;
  bottom: 20px;
  right: 20px;
}
.l-footer-page-top__link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid rgb(var(--color-grayscale-500));
  box-sizing: border-box;
  background: rgb(var(--color-grayscale-100));
  overflow: hidden;
  text-indent: 500px;
  white-space: nowrap;
}
.l-footer-page-top__link::before {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  display: inline-block;
  width: 16px;
  height: 8px;
  background-color: currentColor;
  color: rgb(var(--color-primary-500));
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 20 10" xmlns="http://www.w3.org/2000/svg"><path d="M20,5L13.0444,0V3.75556H0V6.25556H13.0444V10L20,5Z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 20 10" xmlns="http://www.w3.org/2000/svg"><path d="M20,5L13.0444,0V3.75556H0V6.25556H13.0444V10L20,5Z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all 0.3s ease;
  transform: translate(-50%, -50%) rotate(-90deg);
}
@media (hover: hover) and (pointer: fine) {
  .l-footer-page-top__link {
    transition: all 0.3s ease;
  }
  .l-footer-page-top__link:hover {
    background: rgb(var(--color-primary-600));
    border-color: rgb(var(--color-primary-600));
  }
  .l-footer-page-top__link:hover::before {
    color: rgb(var(--color-grayscale-100));
  }
}

/* .l-footer-main
================================================ */
.l-footer-main {
  position: relative;
  background: rgb(var(--color-primary-500));
}
.l-footer-main__inner {
  padding-top: 55px;
  padding-bottom: 80px;
}
@media (min-width: 768px) {
  .l-footer-main__inner {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .l-footer-main__con {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}

.l-footer-info__logo {
  color: rgb(var(--color-grayscale-100));
  text-align: center;
}
.l-footer-info__logo-link {
  display: block;
  width: 117px;
  margin: 0 auto 20px;
}
.l-footer-info__logo-link svg {
  display: block;
}
.l-footer-info__logo-txt {
  display: block;
  font-size: 1.3rem;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .l-footer-info__logo {
    text-align: left;
  }
  .l-footer-info__logo-link {
    width: 167px;
    margin: 0 0 30px;
  }
}

.l-footer-nav {
  margin-top: 45px;
}
.l-footer-nav-group__item + .l-footer-nav-group__item {
  margin-top: 28px;
}
.l-footer-nav-list__link {
  position: relative;
  display: block;
  padding: 0 0 0 28px;
  color: rgb(var(--color-grayscale-100));
  line-height: 1.6;
  font-size: 1.7rem;
  font-weight: bold;
}
.l-footer-nav-list__link::before,
.l-footer-nav-list__link::after {
  position: absolute;
  content: "";
}
.l-footer-nav-list__link::before {
  top: 5px;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid rgb(var(--color-grayscale-100));
  box-sizing: border-box;
  background: rgb(var(--color-grayscale-100));
}
.l-footer-nav-list__link::after {
  top: 11px;
  left: 8px;
  width: 6px;
  height: 8px;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background: rgb(var(--color-primary-500));
}
.l-footer-nav-list__child-parent {
  margin-bottom: 15px;
  color: rgb(var(--color-grayscale-100));
  font-size: 1.7rem;
  font-weight: bold;
  line-height: 1.6;
}
.l-footer-nav-list__child-item + .l-footer-nav-list__child-item {
  margin-top: 12px;
}
.l-footer-nav-list__child-item-link {
  position: relative;
  display: block;
  padding: 0 0 0 18px;
  color: rgba(var(--color-grayscale-100), 0.9);
  line-height: 1.6;
}
.l-footer-nav-list__child-item-link::before {
  position: absolute;
  content: "";
  top: 11px;
  left: 0;
  width: 10px;
  height: 2px;
  background: rgba(var(--color-grayscale-100), 0.9);
}
@media (min-width: 768px) {
  .l-footer-nav {
    margin: 0;
  }
  .l-footer-nav-group {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
  }
  .l-footer-nav-group__item:nth-child(n) {
    margin: 0;
  }
  .l-footer-nav-list__link {
    font-size: 1.8rem;
  }
  .l-footer-nav-list__link::before,
  .l-footer-nav-list__link::after {
    transition: all 0.3s ease;
  }
  .l-footer-nav-list__link:hover::before {
    background: none;
  }
  .l-footer-nav-list__link:hover::after {
    background: rgb(var(--color-grayscale-100));
  }
  .l-footer-nav-list__child-parent {
    font-size: 1.8rem;
  }
  .l-footer-nav-list__child-item-link {
    font-size: 1.4rem;
    transition: all 0.3s ease;
  }
  .l-footer-nav-list__child-item-link:hover {
    color: rgb(var(--color-grayscale-100));
  }
}

/* .l-footer-sub
================================================ */
.l-footer-sub {
  background: rgb(var(--color-primary-600));
  text-align: center;
}
.l-footer-sub__inner {
  padding-top: 40px;
  padding-bottom: 40px;
}
.l-footer-sub-nav__item + .l-footer-sub-nav__item {
  margin-top: 10px;
}
.l-footer-sub-nav__link {
  color: rgba(var(--color-grayscale-100), 0.9) !important;
  font-size: 1.5rem;
}
.l-footer-sub-nav__link[target="_blank"]::after {
  margin: 0 0 0 6px;
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: currentColor;
  color: rgba(var(--color-grayscale-100), 0.9);
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9.004 8.998"><path d="M7566,22026v-5.334h1.78v.891h-.89v3.553h3.56v-.889h.885V22026Zm2.67-2.67V22018H7574v5.328Zm.89-.885h3.554v-3.559h-3.554Z" transform="translate(-7565.498 -22017.502)" stroke="rgba(0,0,0,0)" stroke-miterlimit="10" stroke-width="1"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9.004 8.998"><path d="M7566,22026v-5.334h1.78v.891h-.89v3.553h3.56v-.889h.885V22026Zm2.67-2.67V22018H7574v5.328Zm.89-.885h3.554v-3.559h-3.554Z" transform="translate(-7565.498 -22017.502)" stroke="rgba(0,0,0,0)" stroke-miterlimit="10" stroke-width="1"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .l-footer-sub {
    text-align: left;
  }
  .l-footer-sub__inner {
    padding-top: 23px;
    padding-bottom: 23px;
  }
  .l-footer-sub__con {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
  }
  .l-footer-sub-nav {
    display: flex;
    flex-wrap: wrap;
    order: 1;
  }
  .l-footer-sub-nav__item + .l-footer-sub-nav__item {
    margin: 0 0 0 30px;
  }
  .l-footer-sub-nav__link {
    font-size: 1.4rem;
    transition: all 0.3s ease;
  }
  .l-footer-sub-nav__link:hover {
    color: rgb(var(--color-grayscale-100)) !important;
  }
}

/* .l-header
================================================ */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 320px;
  z-index: 2000;
}
@media (min-width: 768px) {
  .l-header {
    min-width: var(--contents_width_with_padding);
    height: var(--header_height);
    background: rgb(var(--color-primary-500));
  }
}
@media (min-width: 768px) and (hover: none) {
  .l-header {
    left: 0 !important;
  }
}

/* .l-header-info
================================================== */
.l-header-info {
  position: relative;
  z-index: 3;
  box-sizing: border-box;
  height: var(--header_height);
  background: rgb(var(--color-primary-500));
}
.l-header-info__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  padding: 0 0 0 20px;
  box-sizing: border-box;
}
.l-header-info__logo {
  display: block;
}
.l-header-info__logo-link {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 227px;
}
.l-header-info__logo a {
  display: flex;
  align-items: center;
}
.l-header-info__logo svg {
  display: block;
  width: 67px;
  color: rgb(var(--color-grayscale-100));
}
.l-header-info__logo-txt {
  color: rgba(var(--color-grayscale-100), 0.9);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .l-header-info {
    position: static;
    height: 85px;
    background: none;
    border-bottom: none;
  }
  .l-header-info__inner {
    align-items: center;
    width: 1100px;
    height: 100%;
    margin: auto;
    padding: 0;
  }
  .l-header-info__logo-link {
    align-items: center;
    width: auto;
  }
  .l-header-info__logo svg {
    width: 117px;
    margin-right: 35px;
  }
  .l-header-info__logo-txt {
    font-size: 1.3rem;
    font-weight: bold;
  }
}

/* .l-nav-btn
================================================== */
.l-nav-btn {
  position: relative;
  width: 65px;
  height: 65px;
  background: rgb(var(--color-primary-600));
  border: 0;
  outline: 0;
  cursor: pointer;
}
.l-nav-btn__line {
  position: absolute;
  left: 22px;
  width: 22px;
  height: 2px;
  content: "";
  background: #fff;
  transition: all 0.3s ease;
}
.l-nav-btn__line:nth-child(1) {
  top: 23px;
}
.l-nav-btn__line:nth-child(2) {
  top: 31px;
}
.l-nav-btn__line:nth-child(3) {
  top: 39px;
}
.l-nav-btn.is-open .l-nav-btn__line {
  top: 31px;
}
.l-nav-btn.is-open .l-nav-btn__line:nth-child(1) {
  transform: rotate(-45deg);
}
.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) {
  transform: rotate(45deg);
}
.l-nav-btn__txt {
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 100%;
  font-size: 1rem;
  line-height: 1.2;
  text-align: center;
}

/* .l-nav
================================================ */
.l-nav {
  position: absolute;
  top: 65px;
  left: 0;
  z-index: 2;
  width: 100%;
  max-height: calc(100vh - 65px);
  min-width: 320px;
  padding: 30px 40px 50px;
  background: #fff;
  box-sizing: border-box;
  overscroll-behavior-y: none;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 767px) {
  .l-nav {
    overflow: auto;
    height: 100vh;
    transform: translateX(120%);
    transition: all 0.3s ease;
  }
  .l-nav::-webkit-scrollbar {
    display: none;
  }
  .l-nav.is-open {
    transform: translateX(0);
  }
}
@media (min-width: 768px) {
  .l-nav {
    position: static;
    padding: 0;
    background: rgb(var(--color-primary-600));
  }
}

/* .l-nav-list
================================================== */
@media (max-width: 767px) {
  .l-nav-list__item-link {
    position: relative;
    border: 0;
  }
  .l-nav-list__item-link:is(button) {
    display: block;
    min-height: 66px;
    border-bottom: 1px solid rgb(var(--color-grayscale-500));
    padding: 0 40px 0 20px;
    font-weight: bold;
  }
  .l-nav-list__item-link:is(button)::before,
  .l-nav-list__item-link:is(button)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translate(0, -50%);
    width: 14px;
    height: 0;
    border-top: 2px solid rgb(var(--color-primary-500));
    transition: all 0.3s ease;
  }
  .l-nav-list__item-link:is(button)::after {
    transform: translate(0, -50%) rotate(90deg);
  }
  .l-nav-list__item-link:is(button).is-active::after {
    transform: translate(0, -50%) rotate(0);
  }
  .l-nav-list__item-link:not(button) {
    position: relative;
    display: flex;
    width: 100%;
    align-items: center;
    min-height: 66px;
    border-bottom: 1px solid rgb(var(--color-grayscale-500));
    padding: 0 40px 0 20px;
    font-weight: bold;
    box-sizing: border-box;
  }
  .l-nav-list__item-link:not(button)::before {
    position: absolute;
    top: 50%;
    right: 20px;
    content: "";
    display: inline-block;
    width: 8px;
    height: 12px;
    background-color: currentColor;
    color: rgb(var(--color-primary-500));
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 8 12" xmlns="http://www.w3.org/2000/svg"><path d="M8,6L0,12L4.03789e-07,0L8,6Z"/></svg>');
    mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 8 12" xmlns="http://www.w3.org/2000/svg"><path d="M8,6L0,12L4.03789e-07,0L8,6Z"/></svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    transition: all 0.3s ease;
    transform: translateY(-50%);
  }
  .l-nav-list__child {
    padding: 20px;
  }
  .l-nav-list__child-wrap {
    display: none;
    box-sizing: border-box;
    transition: all 0.3s ease;
    background: rgba(var(--color-grayscale-200));
  }
  .l-nav-list__child-item + .l-nav-list__child-item {
    margin-top: 18px;
  }
  .l-nav-list__child-item-link {
    position: relative;
    display: block;
    padding: 0 0 0 18px;
    font-size: 1.5rem;
    font-weight: bold;
  }
  .l-nav-list__child-item-link::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    width: 10px;
    height: 2px;
    margin-top: -1px;
    background: rgb(var(--color-primary-500));
  }
}
@media (min-width: 768px) {
  .l-nav-list {
    display: grid;
    width: 1100px;
    margin: auto;
    grid-template-columns: repeat(5, 1fr);
  }
  .l-nav-list__item {
    position: relative;
  }
  .l-nav-list__item::before {
    position: absolute;
    content: "";
    top: 50%;
    right: 0;
    width: 1px;
    height: 40px;
    margin-top: -20px;
    background: rgba(var(--color-grayscale-100), 0.3);
  }
  .l-nav-list__item:first-child::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    width: 1px;
    height: 40px;
    margin-top: -20px;
    background: rgba(var(--color-grayscale-100), 0.3);
  }
  .l-nav-list__item:is(button) {
    padding: 0;
  }
  .l-nav-list__item:is(button)::before,
  .l-nav-list__item:is(button)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    width: 10px;
    height: 0;
    border-top: 1px solid rgb(var(--color-grayscale-900));
    transition: all 0.3s ease;
  }
  .l-nav-list__item:is(button)::after {
    transform: translate(0, -50%) rotate(90deg);
  }
  .l-nav-list__item:is(button).is-active::after {
    transform: translate(0, -50%) rotate(0);
  }
  .l-nav-list__item-link {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
    border: 0;
    color: rgb(var(--color-grayscale-100));
    font-weight: bold;
  }
  .l-nav-list__item-link:is(button) .l-nav-list__item-txt {
    position: relative;
    padding-right: 22px;
  }
  .l-nav-list__item-link:is(button) .l-nav-list__item-txt::before {
    position: absolute;
    top: 50%;
    right: 0;
    content: "";
    content: "";
    display: inline-block;
    width: 8px;
    height: 12px;
    background-color: currentColor;
    color: rgb(var(--color-grayscale-100));
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 8 12" xmlns="http://www.w3.org/2000/svg"><path d="M8,6L0,12L4.03789e-07,0L8,6Z"/></svg>');
    mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 8 12" xmlns="http://www.w3.org/2000/svg"><path d="M8,6L0,12L4.03789e-07,0L8,6Z"/></svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    transition: all 0.3s ease;
    transform: translateY(-50%) rotate(90deg);
  }
  .l-nav-list__child {
    width: 100%;
  }
  .l-nav-list__child-item-link {
    position: relative;
    border-top: 1px solid rgb(var(--color-grayscale-500));
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    min-height: 62px;
    padding: 10px 0 10px 25px;
    box-sizing: border-box;
    background: rgb(var(--color-primary-500));
    color: rgb(var(--color-grayscale-100));
    font-size: 1.4rem;
    font-weight: bold;
    transition: all 0.3s ease;
  }
  .l-nav-list__child-item-link::before {
    position: absolute;
    content: "";
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
    content: "";
    display: inline-block;
    width: 8px;
    height: 12px;
    background-color: currentColor;
    color: rgb(var(--color-grayscale-100), 8, 12);
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 8 12" xmlns="http://www.w3.org/2000/svg"><path d="M8,6L0,12L4.03789e-07,0L8,6Z"/></svg>');
    mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 8 12" xmlns="http://www.w3.org/2000/svg"><path d="M8,6L0,12L4.03789e-07,0L8,6Z"/></svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    transition: all 0.3s ease;
  }
  .l-nav-list__child-item-link:hover {
    background: rgb(var(--color-primary-600));
  }
  .l-nav-list__child-wrap {
    box-sizing: border-box;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: flex;
    width: 100%;
    height: auto;
    transition: visibility 0s linear, all 0.3s ease;
  }
  .l-nav-list__child-wrap:not(.is-active) {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateY(-30px);
  }
}

/* .l-nav-overlay
================================================ */
.l-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  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-main-img HOME
================================================ */
.l-main-img img {
  width: 100%;
}
.l-main-img .splide__arrow {
  -webkit-appearance: none;
  appearance: none;
  display: block;
  outline: 0;
  padding: 0;
  /* top: auto; */
  /* bottom: 0; */
  width: 40px;
  height: 40px;
  border: 1px solid rgb(var(--color-primary-500));
  box-sizing: border-box;
  background: rgb(var(--color-grayscale-100));
  opacity: 1;
}
.l-main-img .splide__arrow::before {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  display: inline-block;
  width: 20px;
  height: 10px;
  background-color: currentColor;
  color: rgb(var(--color-primary-500));
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 20 10" xmlns="http://www.w3.org/2000/svg"><path d="M20,5L13.0444,0V3.75556H0V6.25556H13.0444V10L20,5Z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 20 10" xmlns="http://www.w3.org/2000/svg"><path d="M20,5L13.0444,0V3.75556H0V6.25556H13.0444V10L20,5Z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all 0.3s ease;
  transform: translate(-50%, -50%);
}
.l-main-img .splide__arrow--next {
  right: 20px;
}
.l-main-img .splide__arrow--prev {
  left: 20px;
}
.l-main-img .splide__arrow--prev::before {
  transform: translate(-50%, -50%) rotate(180deg);
}
.l-main-img .splide__pagination {
  /* counter-reset: pagination-num; */
  padding: 0;
  bottom: 26px;
}
.l-main-img .splide__pagination__page::before {
  /* counter-increment: pagination-num;
  content: counter(pagination-num); */
}
.l-main-img .splide__pagination__page {
  /* display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  margin: 0 3px;
  background: rgb(var(--color-grayscale-100));
  transform: scale(1);
  border-radius: 0;
  opacity: 1;
  font-size: 1.7rem;
  font-weight: bold;
  line-height: 1; */
}
.l-main-img .splide__pagination__page.is-active {
  /* background: rgb(var(--color-primary-500));
  color: rgb(var(--color-grayscale-100)); */
}
@media (min-width: 768px) {
  .l-main-img {
    max-width: 1920px;
    margin: auto;
  }
  .l-main-img .splide__arrow {
    width: 50px;
    height: 50px;
    top: 50%;
    bottom: auto;
  }
  .l-main-img .splide__arrow--prev {
    left: 20px;
  }
  .l-main-img .splide__arrow--next {
    right: 20px;
  }
  .l-main-img .splide__pagination {
    bottom: 30px;
  }
  .l-main-img .splide__pagination__page {
    /* width: 30px;
    height: 30px;
    font-size: 1.8rem; */
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-main-img .splide__arrow {
    transition: all 0.3s ease;
  }
  .l-main-img .splide__arrow:hover {
    opacity: 1;
    background: rgb(var(--color-primary-500));
  }
  .l-main-img .splide__arrow:hover::before {
    color: rgb(var(--color-grayscale-100));
  }
  .l-main-img .splide__pagination__page {
    transition: all 0.3s ease;
  }
  .l-main-img .splide__pagination__page:hover {
    background: rgb(var(--color-primary-500));
    color: rgb(var(--color-grayscale-100));
  }
}
/* .l-sub-img
================================================ */
.l-sub-img {
  background: no-repeat center/cover;
}
.l-sub-img__inner {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  height: 200px;
  color: rgb(var(--color-grayscale-100));
}
.l-sub-img__en {
  font-size: 4.5rem;
}
.l-sub-img__head {
  margin-top: 2px;
  font-size: 1.3rem;
}
@media (min-width: 768px) {
  .l-sub-img__inner {
    height: 280px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }
  .l-sub-img__en {
    font-size: 6.6rem;
  }
  .l-sub-img__head {
    margin: 0 0 0 23px;
    font-size: 1.6rem;
  }
}

/* .l-sidebar
================================================== */
.js-c-anime-elem[data-anime="fadein-up"] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}
.js-c-anime-elem[data-anime="fadein-up"].is-animated {
  opacity: 1;
  transform: translateY(0);
}

.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-left"].is-animated {
  opacity: 1;
  transform: translateX(0);
}

.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-right"].is-animated {
  opacity: 1;
  transform: translateX(0);
}

.js-c-anime-elem[data-anime-delay="0.1"] {
  transition-delay: 0.1s;
}
.js-c-anime-elem[data-anime-delay="0.2"] {
  transition-delay: 0.2s;
}
.js-c-anime-elem[data-anime-delay="0.3"] {
  transition-delay: 0.3s;
}
.js-c-anime-elem[data-anime-delay="0.4"] {
  transition-delay: 0.4s;
}
.js-c-anime-elem[data-anime-delay="0.5"] {
  transition-delay: 0.5s;
}
.js-c-anime-elem[data-anime-delay="0.6"] {
  transition-delay: 0.6s;
}
.js-c-anime-elem[data-anime-delay="0.7"] {
  transition-delay: 0.7s;
}
.js-c-anime-elem[data-anime-delay="0.8"] {
  transition-delay: 0.8s;
}
.js-c-anime-elem[data-anime-delay="0.9"] {
  transition-delay: 0.9s;
}
.js-c-anime-elem[data-anime-delay="1"] {
  transition-delay: 1s;
}
.js-c-anime-elem[data-anime-delay="1.1"] {
  transition-delay: 1.1s;
}
.js-c-anime-elem[data-anime-delay="1.2"] {
  transition-delay: 1.2s;
}
.js-c-anime-elem[data-anime-delay="1.3"] {
  transition-delay: 1.3s;
}
.js-c-anime-elem[data-anime-delay="1.4"] {
  transition-delay: 1.4s;
}
.js-c-anime-elem[data-anime-delay="1.5"] {
  transition-delay: 1.5s;
}
.js-c-anime-elem[data-anime-delay="1.6"] {
  transition-delay: 1.6s;
}
.js-c-anime-elem[data-anime-delay="1.7"] {
  transition-delay: 1.7s;
}
.js-c-anime-elem[data-anime-delay="1.8"] {
  transition-delay: 1.8s;
}
.js-c-anime-elem[data-anime-delay="1.9"] {
  transition-delay: 1.9s;
}
.js-c-anime-elem[data-anime-delay="2"] {
  transition-delay: 2s;
}

.js-c-cliptext__line {
  display: block;
  -webkit-clip-path: polygon(0% 105%, 100% 105%, 100% 105%, 0% 105%);
  clip-path: polygon(0% 105%, 100% 105%, 100% 105%, 0% 105%);
  opacity: 0;
}
.js-c-cliptext__line.is-inlineblock {
  display: inline-block;
}
.js-c-cliptext.is-animated .js-c-cliptext__line {
  transition: -webkit-clip-path 0.8s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
  transition: clip-path 0.8s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
  transition: clip-path 0.8s cubic-bezier(0.645, 0.045, 0.355, 1) 0s,
    -webkit-clip-path 0.8s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
  transition-property: opacity, -webkit-clip-path;
  transition-property: clip-path, opacity;
  transition-property: clip-path, opacity, -webkit-clip-path;
  -webkit-clip-path: polygon(0% -5%, 100% -5%, 100% 105%, 0% 105%);
  clip-path: polygon(0% -5%, 100% -5%, 100% 105%, 0% 105%);
  opacity: 1;
}

.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;
}

/* .js-team-img-slider
===================================*/
.js-team-img-slider {
  padding-bottom: 45px;
}
.js-team-img-slider .splide__arrow {
  position: absolute;
  top: auto;
  bottom: -12px;
  width: 24px;
  height: 24px;
  background: rgb(var(--color-primary-500));
  opacity: 1;
}
.js-team-img-slider .splide__arrow--prev {
  left: 30px;
}
.js-team-img-slider .splide__arrow--prev::after {
  left: -2px !important;
  transform: rotate(180deg);
}
.js-team-img-slider .splide__arrow--next {
  right: 30px;
}
.js-team-img-slider .splide__arrow::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 0;
  height: 0;
  margin: auto;
  border-style: solid;
  border-color: transparent transparent transparent rgb(var(--color-grayscale-100));
  border-width: 4px 0px 4px 7px;
}
.js-team-img-slider .splide__arrow svg {
  display: none;
}
.js-team-img-slider .splide__pagination {
  bottom: 5px;
}
.js-team-img-slider .splide__pagination__page {
  opacity: 1;
  margin: 5px;
  width: 6px;
  height: 6px;
  background: rgb(var(--color-grayscale-500));
  transform: scale(1);
}
.js-team-img-slider .splide__pagination__page.is-active {
  background: rgb(var(--color-primary-500));
  transform: scale(1);
}
@media (min-width: 768px) {
  .js-team-img-slider {
    padding-bottom: 50px;
  }
  .js-team-img-slider .splide__arrow--prev {
    left: 60px;
  }
  .js-team-img-slider .splide__arrow--next {
    right: 60px;
  }
}

/* .js-about-slider
===================================*/
.js-about-slider .splide__track {
  overflow: visible;
}

/* .l-sub-img
================================================ */
body#about .l-sub-img {
  background-image: url(../img/about/img_mv01_sp.webp);
}
@media (min-width: 768px) {
  body#about .l-sub-img {
    background-image: url(../img/about/img_mv01_pc.webp);
  }
}

/* .about-intro
================================================ */
.about-intro__inner {
  padding-top: 40px;
}
@media (min-width: 768px) {
  .about-intro__inner {
    padding-top: 55px;
  }
}

/* .about-outline
================================================ */
.about-outline__inner {
  padding-top: 35px;
}
@media (min-width: 768px) {
  .about-outline__inner {
    padding-top: 55px;
  }
}

/* .about-history
================================================ */
.about-history__inner {
  padding-top: 35px;
}
.about-history__box {
  position: relative;
}
.about-history__box::before {
  position: absolute;
  content: "";
  top: 30px;
  left: 83px;
  width: 1px;
  height: calc(100% - 30px);
  background: rgb(var(--color-grayscale-500));
}
.about-history__box-block {
  display: flex;
  padding: 15px;
  background: rgb(var(--color-grayscale-100));
}
.about-history__box-block:nth-child(2n) {
  background: rgb(var(--color-grayscale-200));
}
.about-history__box-year {
  position: relative;
  width: 88px;
  font-size: 2.9rem;
  color: rgb(var(--color-primary-500));
}
.about-history__box-year::after {
  position: absolute;
  content: "";
  top: 13px;
  right: 16px;
  width: 6px;
  height: 6px;
  background: rgb(var(--color-grayscale-900));
}
.about-history__box-txt {
  width: calc(100% - 88px);
  font-size: 1.3rem;
}
@media (min-width: 768px) {
  .about-history__inner {
    padding-top: 55px;
  }
  .about-history__box::before {
    top: 45px;
    left: 119px;
    height: calc(100% - 43px);
  }
  .about-history__box-block {
    padding: 20px 25px;
  }
  .about-history__box-year {
    width: 130px;
    font-size: 3.6rem;
  }
  .about-history__box-year::after {
    top: 20px;
    right: 32px;
    width: 8px;
    height: 8px;
  }
  .about-history__box-txt {
    width: calc(100% - 130px);
    margin-top: 7px;
    font-size: 1.6rem;
  }
}

/* .about-slider
================================================ */
.about-slider {
  overflow: hidden;
}
.about-slider__inner {
  padding-top: 30px;
}
@media (min-width: 768px) {
  .about-slider__inner {
    padding-top: 60px;
  }
}

/* .about-record
================================================ */
.about-record__inner {
  padding-top: 50px;
  padding-bottom: 65px;
}
@media (min-width: 768px) {
  .about-record__inner {
    padding-top: 60px;
    padding-bottom: 80px;
  }
}

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

/* .l-sub-img
================================================ */
body#feature .l-sub-img {
  background-image: url(../img/feature/img_mv01_sp.webp);
}
@media (min-width: 768px) {
  body#feature .l-sub-img {
    background-image: url(../img/feature/img_mv01_pc.webp);
  }
}

/* .l-sub-img(gallery)
================================================ */
body#gallery .l-sub-img {
  background-image: url(../img/gallery/img_mv01_sp.webp);
}
@media (min-width: 768px) {
  body#gallery .l-sub-img {
    background-image: url(../img/gallery/img_mv01_pc.webp);
  }
}

/* .feature-archive
================================================ */
.feature-archive__inner {
  padding-top: 45px;
  padding-bottom: 65px;
}
.feature-archive__select {
  position: relative;
  max-width: 295px;
  margin: 38px 0 40px;
  background: rgb(var(--color-grayscale-100));
}
.feature-archive__select::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  right: 30px;
  width: 0;
  height: 0;
  margin: auto;
  border-style: solid;
  border-color: rgb(var(--color-primary-500)) transparent transparent transparent;
  border-width: 8px 6px 0px 6px;
  z-index: 1;
}
.feature-archive__select select {
  position: relative;
  padding: 19px 70px 19px 30px;
  -webkit-appearance: none;
  appearance: none;
  border: 1px solid rgb(var(--color-grayscale-500));
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  font-weight: bold;
  z-index: 2;
}
@media (min-width: 768px) {
  .feature-archive__inner {
    padding-top: 60px;
    padding-bottom: 80px;
  }
  .feature-archive__select {
    max-width: 320px;
    margin: 60px 0;
  }
}

/* .home-overflow
================================================ */
.home-wrap {
  background: url(../img/home/bg_home01_sp.png) no-repeat bottom center/cover;
}
.home-wrap__inner {
  padding-top: 30px;
  padding-bottom: 65px;
}
@media (min-width: 768px) {
  .home-wrap {
    background-image: url(../img/home/bg_home01_pc.png);
  }
  .home-wrap__inner {
    padding-top: 40px;
    padding-bottom: 80px;
  }
}

.home-feature {
  overflow: hidden;
}
.home-feature__inner {
  padding-bottom: 65px;
}
.home-feature-slider:not(.is-overflow) .home-feature-slider-ui {
  display: none;
}
.home-feature-slider .splide__track {
  overflow: visible;
  margin: 0 -20px;
}
.home-feature-slider .splide__arrow {
  -webkit-appearance: none;
  appearance: none;
  display: block;
  outline: 0;
  padding: 0;
  width: 40px;
  height: 40px;
  border: 1px solid rgb(var(--color-primary-500));
  box-sizing: border-box;
  background: rgb(var(--color-grayscale-100));
  opacity: 1;
}
.home-feature-slider .splide__arrow::before {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  display: inline-block;
  width: 20px;
  height: 10px;
  background-color: currentColor;
  color: rgb(var(--color-primary-500));
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 20 10" xmlns="http://www.w3.org/2000/svg"><path d="M20,5L13.0444,0V3.75556H0V6.25556H13.0444V10L20,5Z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 20 10" xmlns="http://www.w3.org/2000/svg"><path d="M20,5L13.0444,0V3.75556H0V6.25556H13.0444V10L20,5Z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all 0.3s ease;
  transform: translate(-50%, -50%);
}
.home-feature-slider .splide__arrow--next {
  right: -5px;
}
.home-feature-slider .splide__arrow--prev {
  left: -5px;
}
.home-feature-slider .splide__arrow--prev::before {
  transform: translate(-50%, -50%) rotate(180deg);
}
.home-feature-slider .splide__progress {
  margin-top: 20px;
  background: rgb(var(--color-grayscale-500));
}
.home-feature-slider .splide__progress-bar {
  width: 0;
  height: 2px;
  transition: width 400ms ease;
  background: rgb(var(--color-primary-500));
}
.home-feature-slider__img {
  text-align: center;
}
.home-feature-slider__img img {
  margin: 0 auto;
}
.home-feature-slider__link {
  position: relative;
  display: block;
  padding: 20px;
  background: rgb(var(--color-grayscale-100));
  box-shadow: 1px 1px 20px rgba(38, 37, 38, 0.2);
}
.home-feature-slider__link::before {
  position: absolute;
  content: "";
  bottom: 5px;
  right: 5px;
  width: 10px;
  height: 10px;
  background: rgb(var(--color-primary-500));
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
.home-feature-slider__info {
  margin-top: 10px;
}
.home-feature-slider__date {
  color: rgb(var(--color-grayscale-800));
  font-size: 1.5rem;
  font-weight: bold;
}
.home-feature-slider__txt {
  margin-top: 4px;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 1.6;
  font-weight: bold;
  min-height: 5.2rem;
}
@media (min-width: 768px) {
  .home-feature__inner {
    padding-bottom: 80px;
  }
  .home-feature-slider__wrap {
    overflow: hidden;
    margin: -20px -25px 0;
    padding: 20px 25px;
  }
  .home-feature-slider__link {
    padding: 25px;
    box-shadow: 1px 1px 5px rgba(38, 37, 38, 0.2);
    transition: box-shadow 0.6s ease;
  }
  .home-feature-slider .splide__track {
    margin: 0;
  }
  .home-feature-slider .splide__progress {
    margin-top: 25px;
  }
  .home-feature-slider .splide__arrow {
    width: 50px;
    height: 50px;
  }
  .home-feature-slider .splide__arrow--prev {
    left: -25px;
  }
  .home-feature-slider .splide__arrow--next {
    right: -25px;
  }
  .home-feature-slider .splide__slide.is-visible .home-feature-slider__link {
    box-shadow: 1px 1px 20px rgba(38, 37, 38, 0.2);
  }
  .home-feature-slider__date {
    font-size: 1.4rem;
  }
  .home-feature-slider__txt {
    margin-top: 5px;
    font-size: 1.6rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .home-feature-slider .splide__arrow {
    transition: all 0.3s ease;
  }
  .home-feature-slider .splide__arrow:hover {
    opacity: 1;
    background: rgb(var(--color-primary-500));
  }
  .home-feature-slider .splide__arrow:hover::before {
    color: rgb(var(--color-grayscale-100));
  }
  .home-feature-slider .splide__slide.is-visible .home-feature-slider__link:hover {
    box-shadow: 1px 1px 5px rgba(38, 37, 38, 0.2);
  }
  .home-feature-slider .splide__slide.is-visible .home-feature-slider__link:hover .home-feature-slider__txt {
    text-decoration: underline;
  }
}

.home-member {
  overflow: hidden;
}
.home-member__inner {
  padding-bottom: 65px;
}
.home-member-slider .splide__track {
  overflow: visible;
  margin: 0 -20px;
}
.home-member-slider .splide__arrow {
  -webkit-appearance: none;
  appearance: none;
  display: block;
  outline: 0;
  padding: 0;
  width: 40px;
  height: 40px;
  top: calc(50% - 40px);
  border: 1px solid rgb(var(--color-primary-500));
  box-sizing: border-box;
  background: rgb(var(--color-grayscale-100));
  opacity: 1;
}
.home-member-slider .splide__arrow::before {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  display: inline-block;
  width: 20px;
  height: 10px;
  background-color: currentColor;
  color: rgb(var(--color-primary-500));
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 20 10" xmlns="http://www.w3.org/2000/svg"><path d="M20,5L13.0444,0V3.75556H0V6.25556H13.0444V10L20,5Z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 20 10" xmlns="http://www.w3.org/2000/svg"><path d="M20,5L13.0444,0V3.75556H0V6.25556H13.0444V10L20,5Z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all 0.3s ease;
  transform: translate(-50%, -50%);
}
.home-member-slider .splide__arrow--next {
  right: -5px;
}
.home-member-slider .splide__arrow--prev {
  display: none !important;
  left: -5px;
}
.home-member-slider .splide__arrow--prev::before {
  transform: translate(-50%, -50%) rotate(180deg);
}
.home-member-slider .splide__progress {
  margin-top: 20px;
  background: rgb(var(--color-grayscale-500));
}
.home-member-slider .splide__progress-bar {
  width: 0;
  height: 2px;
  transition: width 400ms ease;
  background: rgb(var(--color-primary-500));
}
.home-member-slider__info {
  margin-top: 10px;
}
.home-member-slider__en {
  font-size: 2.9rem;
  font-weight: bold;
  line-height: 1.2;
}
.home-member-slider__name {
  color: rgb(var(--color-primary-500));
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .home-member__inner {
    padding-bottom: 80px;
  }
  .home-member-slider .splide__track {
    overflow: hidden;
    margin: 0;
  }
  .home-member-slider .splide__progress {
    margin-top: 25px;
  }
  .home-member-slider .splide__arrow {
    width: 50px;
    height: 50px;
  }
  .home-member-slider .splide__arrow--prev {
    left: -25px;
  }
  .home-member-slider .splide__arrow--next {
    right: -25px;
  }
  .home-member-slider__en {
    font-size: 3.6rem;
  }
  .home-member-slider__name {
    font-size: 1.4rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .home-member-slider .splide__arrow {
    transition: all 0.3s ease;
  }
  .home-member-slider .splide__arrow:hover {
    opacity: 1;
    background: rgb(var(--color-primary-500));
  }
  .home-member-slider .splide__arrow:hover::before {
    color: rgb(var(--color-grayscale-100));
  }
}

.home-bnrs-list {
  display: grid;
  gap: 15px;
}
.home-bnrs-list__link {
  display: block;
  box-shadow: 1px 1px 20px rgba(38, 37, 38, 0.2);
}
@media (max-width: 767px) {
  .home-bnrs-list {
    max-width: 670px;
    margin: 0 auto;
  }
}
@media (min-width: 768px) {
  .home-bnrs-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .home-bnrs-list__link {
    position: relative;
    transition: all 0.3s ease;
  }
  .home-bnrs-list__link::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: rgb(var(--color-primary-500));
    transform-origin: right;
    transform: scaleX(0);
    transition: all 0.3s ease;
    transition-property: transform;
  }
  .home-bnrs-list__link:hover {
    box-shadow: 1px 1px 5px rgba(38, 37, 38, 0.2);
  }
  .home-bnrs-list__link:hover::before {
    transform: scaleX(1);
    transform-origin: left;
  }
}

/* .l-sub-img
================================================ */
body#message .l-sub-img {
  background-image: url(../img/message/img_mv01_sp.webp);
}
@media (min-width: 768px) {
  body#message .l-sub-img {
    background-image: url(../img/message/img_mv01_pc.webp);
  }
}

/* .message-main
================================================ */
.message-main__inner {
  padding-top: 45px;
  padding-bottom: 65px;
}
.message-main__head {
  font-size: 2.3rem;
  line-height: 1.6;
  letter-spacing: 0.06em;
}
.message-main__img {
  margin: 30px calc(-1 * var(--body_padding_side));
}
.message-main__copy {
  margin-bottom: 20px;
  font-size: 2.1rem;
  line-height: 1.6;
  letter-spacing: 0.06em;
}
.message-main__txt + .message-main__txt {
  margin-top: 35px;
}
@media (min-width: 768px) {
  .message-main__inner {
    padding-top: 60px;
    padding-bottom: 80px;
  }
  .message-main__head {
    font-size: 3.2rem;
    text-align: center;
  }
  .message-main__img {
    margin: 60px auto 50px;
  }
  .message-main__copy {
    margin-bottom: 30px;
    font-size: 2.9rem;
  }
  .message-main__txt + .message-main__txt {
    margin-top: 33px;
  }
}

/* .l-sub-img
================================================ */
body#result .l-sub-img {
  background-image: url(../img/result/img_mv01_sp.webp);
}
@media (min-width: 768px) {
  body#result .l-sub-img {
    background-image: url(../img/result/img_mv01_pc.webp);
  }
}
/* .l-sub-img(過去の戦績)
================================================ */
body#pastresults .l-sub-img {
  background-image: url(../img/result/img_mv01_sp.webp);
}
@media (min-width: 768px) {
  body#pastresults .l-sub-img {
    background-image: url(../img/result/img_mv01_pc.webp);
  }
}

/* .result-schedule
================================================ */
.result-schedule__inner {
  padding-top: 45px;
  padding-bottom: 65px;
}
@media (min-width: 768px) {
  .result-schedule__inner {
    padding-top: 60px;
    padding-bottom: 80px;
  }
}

.result-schedule-sec + .result-schedule-sec {
  padding-top: 60px;
}
.result-schedule-sec__area {
  position: relative;
}
.result-schedule-sec__table {
  margin-top: 20px;
}
.result-schedule-sec__table th,
.result-schedule-sec__table td {
  vertical-align: middle;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .result-schedule-sec__area {
    display: grid;
    grid-template-columns: auto 340px;
  }
  .result-schedule-sec__table {
    grid-area: 2/1/3/3;
  }
  .result-schedule-sec__table th {
    width: auto;
  }
  .result-schedule-sec__txt {
    grid-area: 1/1/2/2;
  }
  .result-schedule-sec__btn {
    grid-area: 1/2/2/3;
    margin: 0 0 0 auto;
    width: 320px;
  }
}

/* .l-sub-img
================================================ */
body#team .l-sub-img {
  background-image: url(../img/team/img_mv01_sp.webp);
}
@media (min-width: 768px) {
  body#team .l-sub-img {
    background-image: url(../img/team/img_mv01_pc.webp);
  }
}

/* .team-main
================================================ */
.team-main__inner {
  padding-top: 45px;
  padding-bottom: 65px;
}
.team-main__note {
  margin-bottom: 10px;
  font-size: 1.3rem;
  text-align: right;
  color: rgb(var(--color-grayscale-800));
}
@media (min-width: 768px) {
  .team-main__inner {
    padding-top: 60px;
    padding-bottom: 80px;
  }
  .team-main__note {
    margin-bottom: 12px;
  }
}

/* .team-main-sec
================================================ */
.team-main-sec {
  padding-top: 65px;
}
.team-main-sec .splide__pagination {
  display: flex !important;
}
.team-main-sec__list01-item + .team-main-sec__list01-item {
  margin-top: 50px;
}
.team-main-sec__list01-head {
  position: relative;
  margin-bottom: 25px;
  padding-left: 70px;
}
.team-main-sec__list01-head-num {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  width: 55px;
  height: 55px;
  background: url(../img/team/bg_list01_01.webp) no-repeat center/cover;
  font-size: 2.9rem;
  color: rgb(var(--color-grayscale-100));
}
.team-main-sec__list01-head-jp {
  display: block;
  font-size: 2.3rem;
  line-height: 1.6;
  font-weight: bold;
}
.team-main-sec__list01-head-en {
  display: block;
  margin-top: 1px;
  font-size: 1.5rem;
  font-weight: bold;
  color: rgb(var(--color-primary-500));
}
.team-main-sec__list01-img {
  width: 88.05%;
  margin: 0 auto;
}
.team-main-sec__list01-img img {
  width: 100%;
}
.team-main-sec__list01-prof {
  margin-top: 20px;
}
.team-main-sec__list01-prof-block {
  display: flex;
  padding: 10px 0;
  border-bottom: 1px solid rgb(var(--color-grayscale-500));
  font-size: 1.6rem;
}
.team-main-sec__list01-prof-head {
  width: 130px;
  padding-right: 10px;
  font-weight: bold;
  color: rgb(var(--color-primary-500));
  box-sizing: border-box;
}
.team-main-sec__list01-prof-txt {
  width: calc(100% - 130px);
}
.team-main-sec__list02 {
  display: grid;
  grid-gap: 38px;
}
.team-main-sec__list02-intro {
  display: grid;
  grid-template-columns: 100px 1fr;
  grid-gap: 20px;
}
.team-main-sec__list02-head {
  margin-top: -5px;
}
.team-main-sec__list02-head-lbl {
  display: inline-block;
  padding: 2px 12px 3px;
  background: rgb(var(--color-primary-500));
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: bold;
  color: rgb(var(--color-grayscale-100));
  text-align: center;
}
.team-main-sec__list02-prof {
  margin-top: 20px;
}
.team-main-sec__list02-prof-block {
  display: flex;
  font-size: 1.6rem;
}
.team-main-sec__list02-prof-block + .team-main-sec__list02-prof-block {
  margin-top: 8px;
}
.team-main-sec__list02-prof-head {
  width: 85px;
  padding-right: 10px;
  font-weight: bold;
  color: rgb(var(--color-primary-500));
  box-sizing: border-box;
}
.team-main-sec__list02-prof-txt {
  width: calc(100% - 85px);
}
@media (min-width: 768px) {
  .team-main-sec {
    padding-top: 60px;
  }
  .team-main-sec__list01-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .team-main-sec__list01-item + .team-main-sec__list01-item {
    margin-top: 60px;
  }
  .team-main-sec__list01-head {
    position: absolute;
    top: 33px;
    left: 38%;
    padding-left: 95px;
  }
  .team-main-sec__list01-head-num {
    width: 70px;
    height: 70px;
    font-size: 5.2rem;
  }
  .team-main-sec__list01-head-jp {
    font-size: 3.2rem;
    letter-spacing: 0.06em;
  }
  .team-main-sec__list01-head-en {
    font-size: 1.6rem;
  }
  .team-main-sec__list01-img {
    width: 31.63%;
    margin: 0;
  }
  .team-main-sec__list01-prof {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 5px 20px;
    width: 62%;
    margin-top: 55px;
  }
  .team-main-sec__list01-prof-block {
    font-size: 1.4rem;
  }
  .team-main-sec__list02 {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 40px;
  }
  .team-main-sec__list02-item {
    position: relative;
    display: flex;
    justify-content: space-between;
  }
  .team-main-sec__list02-intro {
    display: block;
    width: 39.62%;
  }
  .team-main-sec__list02-head {
    position: absolute;
    top: 0;
    left: 45.29%;
    width: 54.71%;
  }
  .team-main-sec__list02-head-lbl {
    padding: 2px 7px 3px;
  }
  .team-main-sec__list02-prof {
    width: 54.71%;
    margin-top: 113px;
  }
  .team-main-sec__list02-prof-block {
    font-size: 1.4rem;
  }
  .team-main-sec__list02-prof-head {
    width: 80px;
  }
  .team-main-sec__list02-prof-txt {
    width: calc(100% - 80px);
  }
}
