@charset "UTF-8";
:root {
  --color-primary-100: 248,247,242;
  --color-primary-200: 241,234,210;
  --color-primary-300: 206,182,104;
  --color-primary-400: 206,182,104;
  --color-primary-500: 192,164,71;
  --color-primary-700: 164,134,35;
  --color-surface-100: 243,244,245;
  --color-surface-200: 233,234,232;
  --color-accent-500: 69,152,102;
  --color-grayscale-100: 255, 255, 255;
  --color-grayscale-300: 221,221,221;
  --color-grayscale-400: 204,204,204;
  --color-grayscale-500: 142,142,142;
  --color-grayscale-800: 81,84,80;
  --color-grayscale-900: 56,56,56;
  --fontfamily_base: "Zen Kaku Gothic New", "ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
  --font_color_base: rgb(var(--color-grayscale-900));
  --font_size_base: 1.6rem;
  --line-height_base: 2.2;
  --line-height_sm: 1.7;
  --line-height_xs: 1.5;
  --letter-spacing_base: .06em;
  --fontfamily_en: "Poppins", sans-serif;
  --font_weight_en: 400;
  --line-height_en: 1;
  --letter-spacing_en: .06em;
  --contents_width: 1100px;
  --contents_wide_width: 1400px;
  --body_padding_side: 20px;
  --contents_width_with_padding: 1240px;
  --contents_wide_width_with_padding: 1540px;
  --sidebar_width: 250px;
  --header_height: 60px;
}
@media (min-width: 768px) {
  :root {
    --body_padding_side: 70px;
    --header_height: 80px;
    --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;
  image-rendering: -webkit-optimize-contrast;
  backface-visibility: hidden;
}

iframe {
  max-width: 100%;
}

summary {
  display: block;
  list-style: none;
  cursor: pointer;
}
summary::-webkit-details-marker {
  display: none;
}

/* 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;
  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);
  }
}
@media (min-width: 768px) and (hover: none) {
  body {
    -webkit-text-size-adjust: none;
  }
}

.l-wrapper {
  position: relative;
}

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

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

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

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

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

@media (min-width: 1240px) {
  .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-bold {
  font-weight: 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;
}

.u-text-right {
  text-align: right;
}

.u-text-center {
  text-align: center;
}

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

a.u-zoom {
  display: block;
  text-decoration: none;
}
a.u-zoom .u-zoom__img {
  display: block;
}
a.u-zoom .u-zoom__img-wrap {
  display: block;
  overflow: hidden;
}
@media (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;
  }
}

.u-img-radius {
  border-radius: 5px;
}

/*  .c-archive01
================================================== */
.c-archive01__item {
  border-style: solid;
  border-width: 0 0 1px;
  border-color: rgb(var(--color-grayscale-400));
}
.c-archive01__item:first-child .c-archive01__item-in {
  padding-top: 0;
}
.c-archive01__item:last-child {
  border-width: 0;
}
.c-archive01__item:last-child .c-archive01__item-in {
  padding-bottom: 0;
}
.c-archive01__item-in {
  display: block;
  padding: 20px 0;
}
.c-archive01__item-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.c-archive01__item-date {
  margin: 0 16px 0 0;
  color: rgb(var(--color-grayscale-500));
}
.c-archive01__item-cat {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin: 0 -5px -5px 0;
}
.c-archive01__item-cat-item {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.8;
  margin: 0 5px 5px 0;
  padding: 1px 8px;
  background: rgb(var(--color-accent-500));
  border-radius: 5px;
  color: rgb(var(--color-grayscale-100));
}
.c-archive01__item-head {
  overflow: hidden;
  display: -webkit-box;
  max-height: 8.5em;
  line-height: 1.7;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  margin-top: 3px;
}
@media (min-width: 768px) {
  .c-archive01__item {
    display: block;
  }
  .c-archive01__item-cat-item {
    font-size: 1.4rem;
  }
  .c-archive01__item-cat-link {
    transition: all 0.3s ease;
  }
  .c-archive01__item-head {
    max-height: 5.1em;
    -webkit-line-clamp: 3;
    margin-top: 7px;
  }
  .c-archive01__item-head-link {
    transition: all 0.3s ease;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-archive01__item-cat-link:hover {
    opacity: 0.7;
  }
  .c-archive01__item-head-link:hover {
    color: rgb(var(--color-primary-700));
  }
}

/*  .c-archive01.is-border-bottom
================================================== */
.c-archive01.is-border-bottom .c-archive01__item:last-child {
  border-width: 0 0 1px;
}
.c-archive01.is-border-bottom .c-archive01__item:last-child .c-archive01__item-in {
  padding-bottom: 20px;
}

/* .c-bg-curve
================================================ */
.c-bg-curve {
  position: relative;
  overflow: hidden;
  padding-top: 60px;
  padding-bottom: 60px;
}
.c-bg-curve.is-primary::before, .c-bg-curve.is-primary::after {
  background-image: url(../img/common/bg_curve_primary100_sp.png);
}
.c-bg-curve.is-primary .c-bg-curve__in {
  background: rgb(var(--color-primary-100));
}
.c-bg-curve::before, .c-bg-curve::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 60px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: url(../img/common/bg_curve_surface100_sp.png) no-repeat top center/cover;
  z-index: -1;
}
.c-bg-curve::after {
  top: auto;
  bottom: 0;
  transform: translateX(-50%) scale(1, -1);
}
.c-bg-curve__in {
  background: rgb(var(--color-surface-100));
}
@media (min-width: 768px) {
  .c-bg-curve {
    padding-top: 150px;
    padding-bottom: 150px;
  }
  .c-bg-curve.is-primary::before, .c-bg-curve.is-primary::after {
    background-image: url(../img/common/bg_curve_primary100_pc.png);
  }
  .c-bg-curve::before, .c-bg-curve::after {
    height: 150px;
    background: url(../img/common/bg_curve_surface100_pc.png) no-repeat top center/cover;
  }
}

.c-bg-primary100 {
  background-color: rgba(var(--color-primary-100));
}

.c-bg-surface100 {
  background-color: rgba(var(--color-surface-100));
}

/*  .c-btn01
================================================== */
.c-btn01 {
  margin-top: 30px;
  text-align: right;
}
.c-btn01__link {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 15px;
}
.c-btn01__txt {
  font-size: 1.7rem;
  line-height: var(--line-height_xs);
  padding-bottom: 9px;
  border-bottom: solid 1px;
}
.c-btn01__ico {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: rgb(var(--color-grayscale-100));
  background: rgb(var(--color-grayscale-800));
  position: relative;
  transition: all 0.3s ease;
}
.c-btn01__ico::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  display: inline-block;
  width: 15px;
  height: 12px;
  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 15 12"><path d="M14.5303 6.53033C14.8232 6.23744 14.8232 5.76256 14.5303 5.46967L9.75736 0.696699C9.46447 0.403806 8.98959 0.403806 8.6967 0.696699C8.40381 0.989593 8.40381 1.46447 8.6967 1.75736L12.9393 6L8.6967 10.2426C8.40381 10.5355 8.40381 11.0104 8.6967 11.3033C8.98959 11.5962 9.46447 11.5962 9.75736 11.3033L14.5303 6.53033ZM0.5 6.75H14V5.25H0.5V6.75Z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 12"><path d="M14.5303 6.53033C14.8232 6.23744 14.8232 5.76256 14.5303 5.46967L9.75736 0.696699C9.46447 0.403806 8.98959 0.403806 8.6967 0.696699C8.40381 0.989593 8.40381 1.46447 8.6967 1.75736L12.9393 6L8.6967 10.2426C8.40381 10.5355 8.40381 11.0104 8.6967 11.3033C8.98959 11.5962 9.46447 11.5962 9.75736 11.3033L14.5303 6.53033ZM0.5 6.75H14V5.25H0.5V6.75Z"/></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) {
  .c-btn01 {
    margin-top: 50px;
    text-align: left;
  }
  .c-btn01__link {
    gap: 20px;
    justify-content: flex-start;
  }
  .c-btn01__txt {
    font-size: 1.9rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-btn01__link {
    transition: all 0.3s ease;
  }
  .c-btn01__link:hover {
    color: rgb(var(--color-primary-700));
  }
  .c-btn01__link:hover .c-btn01__ico {
    background: rgb(var(--color-primary-500));
  }
}

/*  .c-btn02
================================================== */
.c-btn02__link {
  display: block;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: var(--line-height_xs);
  padding: 21px 25px;
  border-radius: 10px;
  border: solid 2px rgba(var(--color-primary-300), 0.5);
  color: rgb(var(--color-primary-500));
  background: rgb(var(--color-grayscale-100));
  box-sizing: border-box;
  position: relative;
  transition: all 0.3s ease;
}
.c-btn02__link::before {
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: 15px;
  height: 12px;
  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 15 12"><path d="M14.5303 6.53033C14.8232 6.23744 14.8232 5.76256 14.5303 5.46967L9.75736 0.696699C9.46447 0.403806 8.98959 0.403806 8.6967 0.696699C8.40381 0.989593 8.40381 1.46447 8.6967 1.75736L12.9393 6L8.6967 10.2426C8.40381 10.5355 8.40381 11.0104 8.6967 11.3033C8.98959 11.5962 9.46447 11.5962 9.75736 11.3033L14.5303 6.53033ZM0.5 6.75H14V5.25H0.5V6.75Z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 12"><path d="M14.5303 6.53033C14.8232 6.23744 14.8232 5.76256 14.5303 5.46967L9.75736 0.696699C9.46447 0.403806 8.98959 0.403806 8.6967 0.696699C8.40381 0.989593 8.40381 1.46447 8.6967 1.75736L12.9393 6L8.6967 10.2426C8.40381 10.5355 8.40381 11.0104 8.6967 11.3033C8.98959 11.5962 9.46447 11.5962 9.75736 11.3033L14.5303 6.53033ZM0.5 6.75H14V5.25H0.5V6.75Z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all 0.3s ease;
  transition: none;
}
@media (min-width: 768px) {
  .c-btn02.is-long .c-btn02__link {
    padding: 18px 25px;
  }
  .c-btn02.is-long .c-btn02__link::before {
    right: 20px;
  }
  .c-btn02__link {
    font-size: 1.8rem;
    padding: 18px 25px;
    border-width: 3px;
  }
  .c-btn02__link::before {
    right: 20px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-btn02__link {
    transition: all 0.3s ease;
  }
  .c-btn02__link:hover {
    color: rgb(var(--color-grayscale-100));
    background: rgb(var(--color-primary-500));
    border-color: rgb(var(--color-primary-500));
  }
}

/*  .c-btn02-list
================================================== */
.c-btn02-list {
  display: grid;
  gap: 10px;
}
@media (min-width: 768px) {
  .c-btn02-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

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

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

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

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

/*  .c-cv01
================================================== */
.c-cv01 {
  position: relative;
  z-index: 2;
  color: rgb(var(--color-grayscale-100));
  background: url(../img/common/bg_cv01_sp.jpg) no-repeat center center/cover;
}
.c-cv01__inner {
  padding-top: 52px;
  padding-bottom: 60px;
}
.c-cv01 .c-head01 {
  margin-bottom: 20px;
}
.c-cv01 .c-list02__item {
  background: rgba(var(--color-grayscale-100), 0.15);
}
.c-cv01 .c-list02__item::before {
  color: rgb(var(--color-primary-500));
}
.c-cv01__wrap {
  margin-top: 21px;
  padding: 25px 5px;
  border-top: solid 1px rgba(var(--color-grayscale-100), 0.3);
  border-bottom: solid 1px rgba(var(--color-grayscale-100), 0.3);
  text-align: center;
}
.c-cv01__copy {
  font-size: 1.8rem;
  line-height: 1.6;
  margin-bottom: 10px;
}
.c-cv01__sub {
  font-size: 0;
}
.c-cv01__sub span {
  display: inline-block;
  color: rgb(var(--color-grayscale-800));
  font-size: 1.2rem;
  font-weight: 500;
  line-height: var(--line-height_sm);
  padding: 3px 5px 3px 28px;
  background: rgb(var(--color-grayscale-300));
  border-radius: 5px;
  position: relative;
}
.c-cv01__sub span::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  background: url(../img/common/ico_clock01.png) no-repeat 0 100%/cover;
  width: 18px;
  height: 17px;
}
.c-cv01__sub span.is-en {
  padding-left: 33px;
}
.c-cv01__sub span.is-en::before {
  background: url(../img/common/ico_english01.png) no-repeat 0 100%/cover;
  width: 23px;
  height: 14px;
}
.c-cv01__sub span.is-en {
  margin-left: 5px;
}
.c-cv01__btn {
  margin: 25px 20px 0;
}
.c-cv01__btn-link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 66px;
  border-radius: 9999px;
  color: rgb(var(--color-grayscale-100));
  background: rgb(var(--color-primary-500));
}
.c-cv01__btn-txt {
  font-size: 1.7rem;
}
@media (min-width: 768px) {
  .c-cv01 {
    background: url(../img/common/bg_cv01_pc.jpg) no-repeat center center/cover;
  }
  .c-cv01__inner {
    padding-top: 120px;
    padding-bottom: 132px;
  }
  .c-cv01 .c-head01 {
    margin-bottom: 40px;
  }
  .c-cv01__list {
    padding: 0 100px;
  }
  .c-cv01__wrap {
    margin-top: 45px;
    padding: 41px 46px;
    display: grid;
    grid-template-columns: 1fr 512px;
    align-items: center;
  }
  .c-cv01__copy {
    font-size: 2.5rem;
    text-align: left;
    margin-bottom: 20px;
  }
  .c-cv01__sub {
    text-align: left;
  }
  .c-cv01__sub span {
    font-size: 1.6rem;
    padding: 5px 10px 5px 37px;
  }
  .c-cv01__sub span::before {
    width: 21px;
    height: 21px;
    left: 10px;
  }
  .c-cv01__sub span.is-en {
    padding-left: 42px;
  }
  .c-cv01__sub span.is-en::before {
    width: 26px;
    height: 16px;
  }
  .c-cv01__btn {
    margin: 0;
  }
  .c-cv01__btn-link {
    height: 118px;
  }
  .c-cv01__btn-txt {
    font-size: 2.6rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-cv01__btn-link {
    transition: all 0.3s ease;
  }
  .c-cv01__btn-link:hover {
    background: rgb(var(--color-primary-400));
  }
}

/*  .c-dot01
================================================== */
.c-dot01 {
  text-align: center;
}
.c-dot01 li {
  display: inline-block;
  margin: 0 4px;
}
.c-dot01 li button {
  position: relative;
  text-indent: -9999px;
  padding: 0;
  font-size: 0;
  border: none;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgb(var(--color-surface-200));
}
.c-dot01 li.slick-active button {
  background: rgb(var(--color-primary-700));
}
/* .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;
}
.c-form-agreement__txt {
  margin-top: 20px;
  text-align: center;
}
.c-form-agreement__txt-link::after {
  content: "";
  display: inline-block;
  width: 11px;
  height: 11px;
  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 11 11"><path fill-rule="evenodd" clip-rule="evenodd" d="M9.38008 1.63734H4.94008V6.07734H9.38008V1.63734ZM10.5001 7.19734H3.83008V0.527344H10.5001V7.19734ZM0.5 10.5274V3.86742H2.72V4.97742H1.61V9.41742H6.06V8.30742H7.17V10.5274H0.5Z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 11 11"><path fill-rule="evenodd" clip-rule="evenodd" d="M9.38008 1.63734H4.94008V6.07734H9.38008V1.63734ZM10.5001 7.19734H3.83008V0.527344H10.5001V7.19734ZM0.5 10.5274V3.86742H2.72V4.97742H1.61V9.41742H6.06V8.30742H7.17V10.5274H0.5Z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all 0.3s ease;
  margin-left: 5px;
}
@media (min-width: 768px) {
  .c-form-agreement {
    text-align: center;
    margin-top: 60px;
  }
  .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: 30px;
}
@media (min-width: 768px) {
  .c-form-area-btn {
    margin-top: 40px;
    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: 66px;
  padding: 10px 20px;
  border-radius: 9999px;
  background: rgb(var(--color-primary-500));
  color: #fff;
  border: 0;
  font-size: 1.7rem;
  -webkit-appearance: none;
  appearance: none;
  font-weight: 500;
  position: relative;
}
.c-form-btn::before {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translate(0, -50%);
  content: "";
  display: inline-block;
  width: 15px;
  height: 12px;
  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 15 12"><path d="M14.5303 6.53033C14.8232 6.23744 14.8232 5.76256 14.5303 5.46967L9.75736 0.696699C9.46447 0.403806 8.98959 0.403806 8.6967 0.696699C8.40381 0.989593 8.40381 1.46447 8.6967 1.75736L12.9393 6L8.6967 10.2426C8.40381 10.5355 8.40381 11.0104 8.6967 11.3033C8.98959 11.5962 9.46447 11.5962 9.75736 11.3033L14.5303 6.53033ZM0.5 6.75H14V5.25H0.5V6.75Z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 12"><path d="M14.5303 6.53033C14.8232 6.23744 14.8232 5.76256 14.5303 5.46967L9.75736 0.696699C9.46447 0.403806 8.98959 0.403806 8.6967 0.696699C8.40381 0.989593 8.40381 1.46447 8.6967 1.75736L12.9393 6L8.6967 10.2426C8.40381 10.5355 8.40381 11.0104 8.6967 11.3033C8.98959 11.5962 9.46447 11.5962 9.75736 11.3033L14.5303 6.53033ZM0.5 6.75H14V5.25H0.5V6.75Z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all 0.3s ease;
}
.c-form-btn + .c-form-btn {
  margin-top: 20px;
}
.c-form-btn.is-back {
  background: rgb(var(--color-grayscale-500));
}
.c-form-btn.is-back::before {
  right: auto;
  left: 30px;
  transform: translate(0, -50%) scale(-1, 1);
}
@media (min-width: 768px) {
  .c-form-btn {
    max-width: 290px;
    height: 59px;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    margin: 0;
  }
  .c-form-btn + .c-form-btn {
    margin-top: 0;
    margin-left: 30px;
  }
}
@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: 5px;
  left: 0;
  display: block;
  width: 26px;
  height: 26px;
  background: #fff;
  border: 1px solid rgb(var(--color-grayscale-400));
  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: 6px;
  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.4rem;
  text-indent: -1em;
  margin-left: 1em;
  color: rgb(var(--color-grayscale-500));
}
.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: 50px;
  padding: 5px 20px;
  font-size: 1.6rem;
  border: none;
  border-radius: 5px;
  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-500));
}
@media (min-width: 768px) {
  input.c-form-parts,
select.c-form-parts,
textarea.c-form-parts,
button.c-form-parts {
    height: 60px;
  }
  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: 300px;
  }
  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: 200px;
  padding: 20px;
  resize: vertical;
}
@media (min-width: 768px) {
  textarea.c-form-parts {
    height: 250px;
  }
}

select.c-form-parts {
  padding-right: 20px;
  background: #fff no-repeat right 20px top 50%/12px;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%228%22%20fill%3D%22none%22%20viewBox%3D%220%200%2012%208%22%3E%0A%3Cpath%20fill%3D%22%23A48623%22%20d%3D%22M1.412.25%207.06%205.914%205.648%207.33%200%201.666%201.412.249Z%22%2F%3E%0A%3Cpath%20fill%3D%22%23A48623%22%20d%3D%22M11.296%201.666%205.649%207.33%204.236%205.915%209.884.249l1.412%201.417Z%22%2F%3E%0A%3C%2Fsvg%3E%0A");
}

.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: 15px 0 25px;
  border-style: solid;
  border-color: rgb(var(--color-grayscale-400));
  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 rgb(var(--color-grayscale-400));
  }
}
@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;
    border-width: 0 0 1px 0;
    border-style: solid;
  }
  .c-form.is-default th {
    position: relative;
    width: 250px;
    padding: 52px 0 0;
  }
  .c-form.is-default th > span {
    position: relative;
    display: block;
    padding-right: 59px;
  }
  .c-form.is-default th > p {
    position: relative;
    display: block;
    padding-right: 59px;
  }
  .c-form.is-default td {
    padding: 40px 0 40px 40px;
  }
}

/* .c-form-label
================================================== */
.c-form-label {
  display: inline-grid;
  place-content: center;
  width: 49px;
  height: 25px;
  margin-left: 20px;
  font-size: 1.4rem;
  background: rgb(var(--color-grayscale-500));
  color: #fff;
}
.c-form-label.is-required {
  background: rgb(var(--color-primary-700));
}
@media (min-width: 768px) {
  .c-form-label {
    position: absolute;
    top: 6px;
    right: 0;
  }
}

/* .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: calc(100% - 30px);
}
.c-form-postcode__addr {
  margin-top: 15px;
}
.c-form-postcode__addr input {
  max-width: 100%;
}
@media (min-width: 768px) {
  .c-form-postcode__prefix {
    padding-top: 12px;
  }
  .c-form-postcode__input {
    flex-basis: 345px;
  }
}

/* 確認画面
================================================ */
.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;
}
@media (min-width: 768px) {
  .mw_wp_form_confirm .c-form.is-default th,
.is-confirm .c-form.is-default th {
    padding: 40px 0;
  }
  .mw_wp_form_confirm .c-form-postcode__prefix,
.is-confirm .c-form-postcode__prefix {
    padding-top: 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-accent-head
================================================== */
.c-accent-head {
  font-size: 1.7rem;
  font-weight: 500;
  line-height: var(--line-height_sm);
  padding-left: 23px;
  margin-bottom: 10px;
  position: relative;
}
.c-accent-head::before, .c-accent-head::after {
  position: absolute;
  content: "";
  top: 7px;
  left: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgb(var(--color-primary-500));
}
.c-accent-head::after {
  top: 11px;
  left: 4px;
  width: 7px;
  height: 7px;
  background: rgb(var(--color-grayscale-100));
}
@media (min-width: 768px) {
  .c-accent-head {
    font-size: 1.8rem;
  }
  .c-accent-head::before, .c-accent-head::after {
    margin-top: 1px;
  }
}

/*  .c-head01
================================================== */
.c-head01 {
  margin-bottom: 30px;
}
.c-head01__en {
  color: rgb(var(--color-accent-500));
  margin-bottom: 12px;
}
.c-head01__main {
  color: rgb(var(--color-grayscale-800));
  font-size: 2.4rem;
  font-weight: 400;
  line-height: var(--line-height_sm);
}
@media (min-width: 768px) {
  .c-head01 {
    margin-bottom: 50px;
  }
  .c-head01__en {
    margin-bottom: 15px;
  }
  .c-head01__main {
    font-size: 3.7rem;
  }
}

/*  .c-head01.is-center
================================================== */
.c-head01.is-center {
  text-align: center;
}

/*  .c-head01.is-grayscale-100
================================================== */
.c-head01.is-grayscale-100 .c-head01__main {
  color: rgb(var(--color-grayscale-100));
}

/*  .c-head02
================================================== */
.c-head02 {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: var(--line-height_sm);
  text-align: center;
  padding-bottom: 20px;
  margin-bottom: 30px;
  position: relative;
}
.c-head02::before {
  position: absolute;
  content: "";
  width: 76px;
  height: 2px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: rgb(var(--color-accent-500));
}
@media (min-width: 768px) {
  .c-head02 {
    font-size: 3.6rem;
    margin-bottom: 50px;
  }
}

/*  .c-head02.is-left
================================================== */
.c-head02.is-left {
  text-align: left;
}
.c-head02.is-left::before {
  left: 0;
  transform: translateX(0);
}

.c-head03 {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: var(--line-height_sm);
  display: flex;
  align-items: center;
}
.c-head03::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-image: linear-gradient(to right, rgb(var(--color-primary-700)) 0%, rgb(var(--color-primary-700)) 2px, transparent 2px, transparent 7px);
  background-size: 7px 2px;
}
.c-head03__num {
  line-height: 1;
  color: transparent;
  font-size: 3.4rem;
  -webkit-text-stroke: 1px rgb(var(--color-primary-500));
  text-stroke: 1px rgb(var(--color-primary-500));
}
.c-head03__txt {
  padding-left: 15px;
  flex: 1;
}
@media (min-width: 768px) {
  .c-head03 {
    margin-bottom: 40px;
    font-size: 2.6rem;
  }
  .c-head03__txt {
    padding-left: 24px;
  }
}

.c-head04 {
  position: relative;
  padding-left: 23px;
  margin-bottom: 10px;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: var(--line-height_sm);
}
.c-head04::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  width: 15px;
  height: 15px;
  border: 4px solid rgb(var(--color-primary-700));
  border-radius: 50%;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .c-head04 {
    margin-bottom: 20px;
    font-size: 1.8rem;
  }
}

/*  .c-under-border-head
================================================== */
.c-under-border-head {
  font-size: 2.2rem;
  font-weight: 400;
  line-height: var(--line-height_sm);
  padding-bottom: 10px;
  border-bottom: dotted 2px rgb(var(--color-primary-700));
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .c-under-border-head {
    font-size: 2.6rem;
  }
}

/*  .c-history01
=============================== */
.c-history01 {
  display: grid;
  position: relative;
}
.c-history01__item {
  position: relative;
  padding-left: 28px;
}
.c-history01__item.has-top {
  padding-top: 60px;
}
.c-history01__item:not(:last-child) {
  padding-bottom: 10px;
}
.c-history01__item:not(:last-child)::before {
  position: absolute;
  content: "";
  width: 2px;
  height: calc(100% + 10px);
  top: 0;
  left: 7px;
  border-left: dotted 2px rgb(var(--color-primary-700));
  z-index: 1;
}
.c-history01__item-ico {
  position: relative;
}
.c-history01__item-ico::before, .c-history01__item-ico::after {
  position: absolute;
  content: "";
  top: 7px;
  left: -28px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(var(--color-primary-700), 0.3);
}
.c-history01__item-ico::after {
  width: 8px;
  height: 8px;
  background: rgb(var(--color-primary-700));
  margin-top: 4px;
  margin-left: 4px;
}
.c-history01__year {
  font-size: 3.1rem;
  color: rgba(var(--color-primary-300), 0.5);
  margin-bottom: 4px;
}
.c-history01__img {
  margin-top: -65px;
  width: 100px;
}
.c-history01__img img {
  width: 100%;
}
.c-history01__img.is-big {
  margin: 10px auto 0;
  width: 200px;
}
.c-history01__txt {
  font-size: 1.4rem;
}
.c-history01 dl dt {
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .c-history01__item {
    padding-left: 0;
  }
  .c-history01__item:not(:last-child) {
    padding-bottom: 80px;
  }
  .c-history01__item:not(:last-child)::before {
    left: 29%;
    top: 15px;
    height: 100%;
  }
  .c-history01__item-ico::before, .c-history01__item-ico::after {
    top: 7px;
    left: 28.2%;
    width: 22px;
    height: 22px;
  }
  .c-history01__item-ico::after {
    width: 11px;
    height: 11px;
    margin-top: 5px;
    margin-left: 5px;
  }
  .c-history01__year {
    font-size: 4.1rem;
    margin-bottom: 0;
  }
  .c-history01__img {
    margin: 50px auto 0;
    width: 160px;
  }
  .c-history01__img.is-big {
    margin: 0;
    width: 240px;
    position: absolute;
    top: -188px;
    right: -8%;
  }
  .c-history01__txt {
    font-size: 1.6rem;
  }
  .c-history01 dl {
    display: flex;
    gap: 0 80px;
  }
  .c-history01 dl dt {
    width: 26%;
    margin-bottom: 0;
    display: block;
  }
  .c-history01 dl dt.has-mt {
    margin-top: 0;
  }
  .c-history01 dl dd {
    width: 74%;
  }
}

/* .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: 7px;
  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 6.472 9.771"><path d="M1.32,0,0,1.38,3.709,4.886,0,8.391l1.32,1.38L6.472,4.886Z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 6.472 9.771"><path d="M1.32,0,0,1.38,3.709,4.886,0,8.391l1.32,1.38L6.472,4.886Z"/></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: 10px;
  height: 6px;
  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 10 6"><path fill-rule="evenodd" clip-rule="evenodd" d="M0.46967 0.46967C0.762563 0.176777 1.23744 0.176777 1.53033 0.46967L5 3.93934L8.46967 0.46967C8.76256 0.176777 9.23744 0.176777 9.53033 0.46967C9.82322 0.762563 9.82322 1.23744 9.53033 1.53033L5.53033 5.53033C5.23744 5.82322 4.76256 5.82322 4.46967 5.53033L0.46967 1.53033C0.176777 1.23744 0.176777 0.762563 0.46967 0.46967Z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 6"><path fill-rule="evenodd" clip-rule="evenodd" d="M0.46967 0.46967C0.762563 0.176777 1.23744 0.176777 1.53033 0.46967L5 3.93934L8.46967 0.46967C8.76256 0.176777 9.23744 0.176777 9.53033 0.46967C9.82322 0.762563 9.82322 1.23744 9.53033 1.53033L5.53033 5.53033C5.23744 5.82322 4.76256 5.82322 4.46967 5.53033L0.46967 1.53033C0.176777 1.23744 0.176777 0.762563 0.46967 0.46967Z"/></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: 15px;
  height: 12px;
  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 15 12"><path d="M14.5303 6.53033C14.8232 6.23744 14.8232 5.76256 14.5303 5.46967L9.75736 0.696699C9.46447 0.403806 8.98959 0.403806 8.6967 0.696699C8.40381 0.989593 8.40381 1.46447 8.6967 1.75736L12.9393 6L8.6967 10.2426C8.40381 10.5355 8.40381 11.0104 8.6967 11.3033C8.98959 11.5962 9.46447 11.5962 9.75736 11.3033L14.5303 6.53033ZM0.5 6.75H14V5.25H0.5V6.75Z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 12"><path d="M14.5303 6.53033C14.8232 6.23744 14.8232 5.76256 14.5303 5.46967L9.75736 0.696699C9.46447 0.403806 8.98959 0.403806 8.6967 0.696699C8.40381 0.989593 8.40381 1.46447 8.6967 1.75736L12.9393 6L8.6967 10.2426C8.40381 10.5355 8.40381 11.0104 8.6967 11.3033C8.98959 11.5962 9.46447 11.5962 9.75736 11.3033L14.5303 6.53033ZM0.5 6.75H14V5.25H0.5V6.75Z"/></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::after {
  margin-left: 5px;
  content: "";
  display: inline-block;
  width: 11px;
  height: 11px;
  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 11 11"><path fill-rule="evenodd" clip-rule="evenodd" d="M9.38008 1.63734H4.94008V6.07734H9.38008V1.63734ZM10.5001 7.19734H3.83008V0.527344H10.5001V7.19734ZM0.5 10.5274V3.86742H2.72V4.97742H1.61V9.41742H6.06V8.30742H7.17V10.5274H0.5Z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 11 11"><path fill-rule="evenodd" clip-rule="evenodd" d="M9.38008 1.63734H4.94008V6.07734H9.38008V1.63734ZM10.5001 7.19734H3.83008V0.527344H10.5001V7.19734ZM0.5 10.5274V3.86742H2.72V4.97742H1.61V9.41742H6.06V8.30742H7.17V10.5274H0.5Z"/></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: 21px;
  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 21 16"><path fill-rule="evenodd" clip-rule="evenodd" d="M2.22252 1.48621C1.81931 1.48621 1.49245 1.81102 1.49245 2.2117V13.7883C1.49245 14.189 1.81931 14.5138 2.22252 14.5138H18.7775C19.1807 14.5138 19.5076 14.189 19.5076 13.7883V2.2117C19.5076 1.81102 19.1807 1.48621 18.7775 1.48621H2.22252ZM0.5 2.2117C0.5 1.26635 1.2712 0.5 2.22252 0.5H18.7775C19.7288 0.5 20.5 1.26635 20.5 2.2117V13.7883C20.5 14.7336 19.7288 15.5 18.7775 15.5H2.22252C1.2712 15.5 0.5 14.7336 0.5 13.7883V2.2117Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M2.60908 2.97452C2.78154 2.75468 3.08773 2.72622 3.29297 2.91095L9.24545 8.26866C9.2455 8.2687 9.24539 8.26861 9.24545 8.26866C9.95898 8.90969 10.9971 8.90906 11.7067 8.26921L17.6598 2.91095C17.8651 2.72622 18.1713 2.75468 18.3437 2.97452C18.5162 3.19436 18.4896 3.52233 18.2844 3.70706L12.3319 9.06475C11.2603 10.0307 9.6952 10.0301 8.6215 9.06531L2.66843 3.70706C2.46319 3.52233 2.43662 3.19436 2.60908 2.97452Z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21 16"><path fill-rule="evenodd" clip-rule="evenodd" d="M2.22252 1.48621C1.81931 1.48621 1.49245 1.81102 1.49245 2.2117V13.7883C1.49245 14.189 1.81931 14.5138 2.22252 14.5138H18.7775C19.1807 14.5138 19.5076 14.189 19.5076 13.7883V2.2117C19.5076 1.81102 19.1807 1.48621 18.7775 1.48621H2.22252ZM0.5 2.2117C0.5 1.26635 1.2712 0.5 2.22252 0.5H18.7775C19.7288 0.5 20.5 1.26635 20.5 2.2117V13.7883C20.5 14.7336 19.7288 15.5 18.7775 15.5H2.22252C1.2712 15.5 0.5 14.7336 0.5 13.7883V2.2117Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M2.60908 2.97452C2.78154 2.75468 3.08773 2.72622 3.29297 2.91095L9.24545 8.26866C9.2455 8.2687 9.24539 8.26861 9.24545 8.26866C9.95898 8.90969 10.9971 8.90906 11.7067 8.26921L17.6598 2.91095C17.8651 2.72622 18.1713 2.75468 18.3437 2.97452C18.5162 3.19436 18.4896 3.52233 18.2844 3.70706L12.3319 9.06475C11.2603 10.0307 9.6952 10.0301 8.6215 9.06531L2.66843 3.70706C2.46319 3.52233 2.43662 3.19436 2.60908 2.97452Z"/></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: 17px;
  height: 22px;
  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 22"><path d="M1.1241 2.21654C-0.823541 5.58813 0.808151 10.7213 2.88131 14.2487C2.88131 14.2487 2.88997 14.2616 2.89429 14.266C2.89429 14.2703 2.90295 14.2789 2.90728 14.2833C4.98909 17.8063 8.69827 21.7146 12.5892 21.6367C13.8227 21.6107 14.5802 21.2342 15.3809 20.5287L16.056 19.8622C16.4326 19.4943 16.4456 18.8927 16.095 18.5032L12.8056 14.8892C12.4464 14.4954 11.8361 14.4607 11.4336 14.8113L10.5767 15.5601C10.3603 15.7462 10.1136 15.8977 9.84522 15.9972C8.65499 16.4214 7.48208 15.5298 5.75517 12.604C5.75517 12.5996 5.74651 12.591 5.74218 12.5867C5.73786 12.5823 5.73353 12.5737 5.7292 12.5694C4.00662 9.64356 3.79021 8.18499 4.73806 7.34967C4.95014 7.15923 5.2055 7.0164 5.47384 6.91685L6.54288 6.52733C7.04494 6.34555 7.30896 5.79588 7.13583 5.28949L5.5604 0.667082C5.39161 0.169351 4.85925 -0.107648 4.35286 0.0438357L3.44396 0.312178C2.43552 0.67141 1.73869 1.15183 1.1241 2.22087V2.21654Z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 17 22"><path d="M1.1241 2.21654C-0.823541 5.58813 0.808151 10.7213 2.88131 14.2487C2.88131 14.2487 2.88997 14.2616 2.89429 14.266C2.89429 14.2703 2.90295 14.2789 2.90728 14.2833C4.98909 17.8063 8.69827 21.7146 12.5892 21.6367C13.8227 21.6107 14.5802 21.2342 15.3809 20.5287L16.056 19.8622C16.4326 19.4943 16.4456 18.8927 16.095 18.5032L12.8056 14.8892C12.4464 14.4954 11.8361 14.4607 11.4336 14.8113L10.5767 15.5601C10.3603 15.7462 10.1136 15.8977 9.84522 15.9972C8.65499 16.4214 7.48208 15.5298 5.75517 12.604C5.75517 12.5996 5.74651 12.591 5.74218 12.5867C5.73786 12.5823 5.73353 12.5737 5.7292 12.5694C4.00662 9.64356 3.79021 8.18499 4.73806 7.34967C4.95014 7.15923 5.2055 7.0164 5.47384 6.91685L6.54288 6.52733C7.04494 6.34555 7.30896 5.79588 7.13583 5.28949L5.5604 0.667082C5.39161 0.169351 4.85925 -0.107648 4.35286 0.0438357L3.44396 0.312178C2.43552 0.67141 1.73869 1.15183 1.1241 2.22087V2.21654Z"/></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-check01
================================================== */
.c-ico.is-check01::after {
  content: "";
  display: inline-block;
  width: 11px;
  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 11 10"><path fill-rule="evenodd" clip-rule="evenodd" d="M10.7249 1.68889L3.31189 9.48949L0.242737 5.93091L1.75726 4.62469L3.38376 6.51056L9.27511 0.311157L10.7249 1.68889Z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 11 10"><path fill-rule="evenodd" clip-rule="evenodd" d="M10.7249 1.68889L3.31189 9.48949L0.242737 5.93091L1.75726 4.62469L3.38376 6.51056L9.27511 0.311157L10.7249 1.68889Z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all 0.3s ease;
}

.c-list-decimal01 {
  counter-reset: num;
}
.c-list-decimal01__item {
  counter-increment: num;
  position: relative;
  padding-left: 2em;
  text-indent: -1em;
  line-height: var(--line-height_sm);
}
.c-list-decimal01__item a {
  text-indent: 0;
}
.c-list-decimal01__item + .c-list-decimal01__item {
  margin-top: 12px;
}
.c-list-decimal01__item::before {
  content: counter(num, decimal-leading-zero);
  display: inline-block;
  padding-right: 0.5em;
  white-space: nowrap;
  font-family: var(--fontfamily_en);
  font-weight: var(--font_weight_en);
  line-height: var(--line-height_en);
  letter-spacing: var(--letter-spacing_en);
  color: rgb(var(--color-accent-500));
}
.c-list-decimal01__item ol {
  padding-left: 0;
  margin-top: 5px;
  counter-reset: num02 0;
  list-style: none;
}
.c-list-decimal01__item ol li {
  padding-left: 1em;
  text-indent: -1em;
  line-height: var(--line-height_sm);
}
.c-list-decimal01__item ol li + li {
  margin-top: 10px !important;
}
.c-list-decimal01__item ol li::before {
  counter-increment: num02 1;
  content: "(" counter(num02) ")";
  margin-right: 5px;
}

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

/*  .c-list02
================================================== */
.c-list02 {
  list-style: none;
  font-size: 0;
  text-align: center;
  margin: -3px -4px;
}
.c-list02__item {
  margin: 3px 2px;
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: var(--line-height_xs);
  position: relative;
  padding: 2px 5px 2px 18px;
  background: rgb(var(--color-grayscale-100));
  border-radius: 9999px;
  box-sizing: border-box;
}
.c-list02__item.is-txt {
  padding-left: 5px;
  background: transparent;
}
.c-list02__item.is-txt::before {
  display: none;
}
.c-list02__item::before {
  position: absolute;
  top: 6px;
  left: 5px;
  content: "";
  display: inline-block;
  width: 11px;
  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 11 10"><path fill-rule="evenodd" clip-rule="evenodd" d="M10.7249 1.68889L3.31189 9.48949L0.242737 5.93091L1.75726 4.62469L3.38376 6.51056L9.27511 0.311157L10.7249 1.68889Z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 11 10"><path fill-rule="evenodd" clip-rule="evenodd" d="M10.7249 1.68889L3.31189 9.48949L0.242737 5.93091L1.75726 4.62469L3.38376 6.51056L9.27511 0.311157L10.7249 1.68889Z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all 0.3s ease;
  color: rgb(var(--color-accent-500));
}
@media (min-width: 768px) {
  .c-list02 {
    margin: -7px -5px -8px;
  }
  .c-list02__item {
    margin: 7px 5px 8px;
    font-size: 1.5rem;
    padding: 2px 10px 2px 32px;
  }
  .c-list02__item::before {
    left: 13px;
    width: 15px;
    height: 15px;
  }
}

/*  .c-list03
================================================== */
.c-list03 {
  list-style: none;
}
.c-list03__item {
  position: relative;
  padding-left: 12px;
  line-height: var(--line-height_xs);
  box-sizing: border-box;
}
.c-list03__item::before {
  content: "";
  position: absolute;
  top: calc(1em - 4px);
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgb(var(--color-grayscale-400));
}
.c-list03__item + .c-list03__item {
  margin-top: 8px;
}
@media (min-width: 768px) {
  .c-list03__item + .c-list03__item {
    margin-top: 10px;
  }
  .c-list03.is-column2-upper-tb {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

/*  .c-menu01
================================================== */
.c-menu01 {
  padding: 70px 20px;
}
.c-menu01__wrap {
  background: rgb(var(--color-primary-100));
  border-radius: 15px;
}
.c-menu01__inner {
  padding-top: 50px;
  padding-bottom: 50px;
}
.c-menu01__head {
  text-align: center;
  font-size: 2.2rem;
  line-height: var(--line-height_sm);
  color: rgb(var(--color-accent-500));
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .c-menu01 {
    padding: 140px 0;
  }
  .c-menu01__inner {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .c-menu01__head {
    font-size: 2.6rem;
    margin-bottom: 40px;
  }
}
@media (min-width: 1541px) {
  .c-menu01__wrap {
    max-width: 1400px;
    margin: 0 auto;
  }
}

/*  .c-modal01
================================================== */
.c-modal01 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
  pointer-events: none;
  opacity: 0;
  z-index: 9999;
  background-color: rgba(var(--color-grayscale-900), 0.8);
  box-sizing: border-box;
}
.c-modal01.is-active {
  opacity: 1;
  pointer-events: auto;
}
.c-modal01__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.c-modal01__content {
  position: relative;
  width: 100%;
  max-width: 960px;
  box-sizing: border-box;
}
.c-modal01__inner {
  background: rgb(var(--color-grayscale-100));
  margin: 0 auto;
  border-radius: 5px;
  padding: 20px 20px 32px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  box-sizing: border-box;
}
.c-modal01__close-btn {
  position: absolute;
  right: 0;
  top: -40px;
  width: 24px;
  height: 24px;
  cursor: pointer;
  z-index: 20;
}
.c-modal01__close-btn:hover {
  opacity: 0.7;
}
.c-modal01__close-btn .lineClose {
  display: inline-block;
  vertical-align: middle;
  color: rgb(var(--color-grayscale-100));
  line-height: 1;
  width: 24px;
  height: 2px;
  background: currentColor;
  position: relative;
  transform: rotate(45deg);
}
.c-modal01__close-btn .lineClose::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  transform: rotate(90deg);
}
@media (min-width: 768px) {
  .c-modal01__content {
    width: calc(100% - 40px);
  }
  .c-modal01__wrap {
    width: 100%;
    height: 100%;
    overflow: auto;
  }
  .c-modal01__inner {
    padding: 40px 50px 50px;
  }
  .c-modal01__close-btn {
    width: 38px;
    height: 38px;
    top: -50px;
  }
  .c-modal01__close-btn .lineClose {
    width: 38px;
  }
}
@media (min-width: 768px) and (max-height: 900px) {
  .c-modal01__content {
    height: 100%;
    max-height: calc(90% - 120px);
  }
}

/* .c-pager01
===================================*/
.c-pager01 {
  overflow: hidden;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  margin: 30px -4px -10px;
}
.c-pager01 li {
  margin: 0 4px 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;
  border-radius: 50px;
  font-size: 1.4rem;
  font-family: var(--fontfamily_en);
  font-weight: var(--font_weight_en);
  line-height: var(--line-height_en);
  letter-spacing: var(--letter-spacing_en);
  background: rgb(var(--color-primary-100));
  text-decoration: none;
}
.c-pager01 li.pages span {
  width: auto;
  border: 0;
}
.c-pager01 li.current span {
  color: rgb(var(--color-grayscale-100));
  background: rgb(var(--color-primary-500));
}
.c-pager01 li.first, .c-pager01 li.previous {
  margin-right: 15px;
}
.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: 15px;
}
.c-pager01 li.previous a, .c-pager01 li.next a {
  color: rgb(var(--color-grayscale-100));
  background: rgb(var(--color-grayscale-100));
  position: relative;
}
.c-pager01 li.previous a::before, .c-pager01 li.next a::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  display: inline-block;
  width: 15px;
  height: 12px;
  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 15 12"><path d="M14.5303 6.53033C14.8232 6.23744 14.8232 5.76256 14.5303 5.46967L9.75736 0.696699C9.46447 0.403806 8.98959 0.403806 8.6967 0.696699C8.40381 0.989593 8.40381 1.46447 8.6967 1.75736L12.9393 6L8.6967 10.2426C8.40381 10.5355 8.40381 11.0104 8.6967 11.3033C8.98959 11.5962 9.46447 11.5962 9.75736 11.3033L14.5303 6.53033ZM0.5 6.75H14V5.25H0.5V6.75Z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 12"><path d="M14.5303 6.53033C14.8232 6.23744 14.8232 5.76256 14.5303 5.46967L9.75736 0.696699C9.46447 0.403806 8.98959 0.403806 8.6967 0.696699C8.40381 0.989593 8.40381 1.46447 8.6967 1.75736L12.9393 6L8.6967 10.2426C8.40381 10.5355 8.40381 11.0104 8.6967 11.3033C8.98959 11.5962 9.46447 11.5962 9.75736 11.3033L14.5303 6.53033ZM0.5 6.75H14V5.25H0.5V6.75Z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all 0.3s ease;
  color: rgb(var(--color-primary-500));
}
.c-pager01 li.previous a::before {
  transform: translate(-50%, -50%) scale(-1, 1);
}
.c-pager01 li.extend span {
  border: 0;
  width: 18px;
  background: none;
  color: rgb(var(--color-primary-500));
  padding-bottom: 10px;
}
@media (min-width: 768px) {
  .c-pager01 {
    margin-top: 60px;
  }
  .c-pager01 li a, .c-pager01 li span {
    width: 50px;
    height: 50px;
    font-size: 1.6rem;
  }
  .c-pager01 li.previous {
    margin-right: 26px;
  }
  .c-pager01 li.next {
    margin-left: 26px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-pager01 li a {
    transition: all 0.3s ease;
  }
  .c-pager01 li a:hover {
    text-decoration: none;
    background-color: rgb(var(--color-primary-500));
    color: rgb(var(--color-grayscale-100));
  }
  .c-pager01 li.previous a:hover, .c-pager01 li.next a:hover {
    color: rgb(var(--color-primary-500));
  }
  .c-pager01 li.previous a:hover::before, .c-pager01 li.next a:hover::before {
    color: rgb(var(--color-grayscale-100));
  }
}

/*  .c-pager02
================================================== */
.c-pager02 {
  position: relative;
  overflow: hidden;
  margin-top: 55px;
  padding-top: 30px;
  border-top: solid 1px rgb(var(--color-grayscale-300));
  line-height: 1;
}
.c-pager02 a {
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  height: 40px;
  text-decoration: none;
}
.c-pager02__previous, .c-pager02__next {
  width: calc(50% - 5px);
  font-size: 1.7rem;
}
.c-pager02__previous a, .c-pager02__next a {
  text-decoration: underline;
  position: relative;
}
.c-pager02__previous a::before, .c-pager02__next a::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: 15px;
  height: 12px;
  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 15 12"><path d="M14.5303 6.53033C14.8232 6.23744 14.8232 5.76256 14.5303 5.46967L9.75736 0.696699C9.46447 0.403806 8.98959 0.403806 8.6967 0.696699C8.40381 0.989593 8.40381 1.46447 8.6967 1.75736L12.9393 6L8.6967 10.2426C8.40381 10.5355 8.40381 11.0104 8.6967 11.3033C8.98959 11.5962 9.46447 11.5962 9.75736 11.3033L14.5303 6.53033ZM0.5 6.75H14V5.25H0.5V6.75Z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 12"><path d="M14.5303 6.53033C14.8232 6.23744 14.8232 5.76256 14.5303 5.46967L9.75736 0.696699C9.46447 0.403806 8.98959 0.403806 8.6967 0.696699C8.40381 0.989593 8.40381 1.46447 8.6967 1.75736L12.9393 6L8.6967 10.2426C8.40381 10.5355 8.40381 11.0104 8.6967 11.3033C8.98959 11.5962 9.46447 11.5962 9.75736 11.3033L14.5303 6.53033ZM0.5 6.75H14V5.25H0.5V6.75Z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all 0.3s ease;
  color: rgb(var(--color-grayscale-100));
  z-index: 2;
}
.c-pager02__previous a::after, .c-pager02__next a::after {
  display: block;
  content: "";
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: rgb(var(--color-grayscale-100));
  background: rgb(var(--color-grayscale-800));
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
.c-pager02__previous {
  float: left;
}
.c-pager02__previous a {
  justify-content: flex-start;
  padding-left: 55px;
}
.c-pager02__previous a::before {
  left: 12px;
  transform: translateY(-50%) scale(-1, 1);
}
.c-pager02__previous a::after {
  left: 0;
}
.c-pager02__next {
  float: right;
}
.c-pager02__next a {
  justify-content: flex-end;
  padding-right: 55px;
}
.c-pager02__next a::before {
  right: 12px;
}
.c-pager02__next a::after {
  right: 0;
}
.c-pager02__txt {
  border-bottom: solid 1px;
  padding-bottom: 9px;
}
.c-pager02__all {
  width: 100%;
  clear: both;
  padding-bottom: 20px;
}
.c-pager02__all a {
  justify-content: center;
  padding-top: 53px;
  height: 88px;
  position: relative;
}
.c-pager02__all a::before {
  position: absolute;
  content: "";
  width: 46px;
  height: 46px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: url(../img/common/ico_dots01.png) no-repeat 0 100%/cover;
}
@media (min-width: 768px) {
  .c-pager02 {
    margin-top: 100px;
    padding-top: 60px;
  }
  .c-pager02__previous, .c-pager02__next {
    margin-top: -65px;
    width: auto;
    font-size: 1.9rem;
  }
  .c-pager02__previous {
    margin-left: 214px;
  }
  .c-pager02__previous a {
    padding-left: 60px;
  }
  .c-pager02__next {
    margin-right: 214px;
  }
  .c-pager02__next a {
    padding-right: 60px;
  }
  .c-pager02__all {
    width: 200px;
    margin: 0 auto;
    padding: 0;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-pager02 a {
    transition: all 0.3s ease;
  }
  .c-pager02__previous a:hover, .c-pager02__next a:hover {
    color: rgb(var(--color-primary-700));
    text-decoration: none;
  }
  .c-pager02__previous a:hover::after, .c-pager02__next a:hover::after {
    background: rgb(var(--color-primary-700));
  }
  .c-pager02__all a:hover {
    color: rgb(var(--color-primary-700));
  }
}

/*  .c-profile01
================================================== */
.c-profile01__name {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  font-size: 1.9rem;
}
.c-profile01__name-txt {
  margin-right: 15px;
}
.c-profile01__name-label-txt {
  padding: 2px 6px;
  display: inline-block;
  line-height: 1.5;
  font-size: 1.3rem;
  background-color: rgba(var(--color-primary-200));
  border-radius: 5px;
}
.c-profile01__box {
  margin-top: 10px;
  padding: 20px;
  border-radius: 5px;
}
.c-profile01__box-item + .c-profile01__box-item {
  margin-top: 15px;
}
.c-profile01__box-item-head {
  font-size: 1.3rem;
}
.c-profile01__box-item-head::before {
  top: 4px;
}
.c-profile01__box-item-head::after {
  top: 8px;
}
.c-profile01__box-item-txt {
  font-size: 1.3rem;
  line-height: 1.7;
}
.c-profile01.is-main .c-profile01__name {
  padding-bottom: 15px;
}
.c-profile01.is-main .c-profile01__name-txt {
  margin-right: 20px;
  font-size: 2.2rem;
}
.c-profile01.is-main .c-profile01__box {
  margin-top: 15px;
}
.c-profile01.is-main .c-profile01__box-item-head {
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .c-profile01__name {
    font-size: 2.1rem;
  }
  .c-profile01__txt {
    font-size: 1.4rem;
  }
  .c-profile01__box {
    padding: 15px;
  }
  .c-profile01__box-item + .c-profile01__box-item {
    margin-top: 20px;
  }
  .c-profile01__box-item-head::before {
    top: 3px;
  }
  .c-profile01__box-item-head::after {
    top: 7px;
  }
  .c-profile01.is-main .c-profile01__txt {
    font-size: 1.6rem;
  }
  .c-profile01.is-main .c-profile01__name-label-txt {
    font-size: 1.4rem;
  }
  .c-profile01.is-main .c-profile01__name-txt {
    font-size: 2.6rem;
  }
  .c-profile01.is-main .c-profile01__box {
    padding: 20px;
  }
  .c-profile01.is-main .c-profile01__box-item-txt {
    font-size: 1.4rem;
  }
  .c-profile01.is-main .c-profile01__box-item-head::before {
    top: 5px;
  }
  .c-profile01.is-main .c-profile01__box-item-head::after {
    top: 9px;
  }
}

.c-profile01-list {
  display: grid;
  gap: 30px 0;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .c-profile01-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 40px;
  }
}
@media (min-width: 1541px) {
  .c-profile01-list {
    gap: 60px;
  }
}

.c-set01 + .c-set01 {
  margin-top: 50px;
}
.c-set01__area-img {
  position: relative;
  margin-bottom: 30px;
}
.c-set01__img img {
  max-width: 100%;
  width: 100%;
  border-radius: 5px;
}
.c-set01__txt + .c-set01__txt {
  margin-top: 1em;
}
@media (min-width: 768px) {
  .c-set01 {
    display: flex;
  }
  .c-set01.is-reverse .c-set01__area-img {
    order: -1;
    margin: 0 50px 0 0;
  }
  .c-set01 + .c-set01 {
    margin-top: 100px;
  }
  .c-set01__area-img {
    order: 2;
    margin: 0 0 0 50px;
  }
  .c-set01__area-txt {
    flex: 1;
  }
  .c-set01__txt + .c-set01__txt {
    margin-top: 1em;
  }
}

/* c-single01
------------------------------------- */
.c-single01__head {
  margin-bottom: 30px;
}
.c-single01__head-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 20px;
}
.c-single01__head h1 {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: var(--line-height_sm);
  color: rgb(var(--color-grayscale-800));
  padding-bottom: 20px;
  border-bottom: solid 2px rgb(var(--color-grayscale-300));
  position: relative;
}
.c-single01__head h1::before {
  position: absolute;
  content: "";
  width: 76px;
  height: 2px;
  bottom: -2px;
  left: 0;
  background: rgb(var(--color-accent-500));
}
.c-single01__date {
  margin: 0 16px 0 0;
  color: rgb(var(--color-grayscale-500));
}
.c-single01__cat {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin: 0 -5px -5px 0;
}
.c-single01__cat-item {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.8;
  margin: 0 5px 5px 0;
  padding: 1px 8px;
  background: rgb(var(--color-accent-500));
  border-radius: 5px;
  color: rgb(var(--color-grayscale-100));
}
.c-single01__thum {
  margin-bottom: 40px;
  text-align: center;
}
.c-single01__thum img {
  border-radius: 5px;
}
@media (min-width: 768px) {
  .c-single01__head {
    margin-bottom: 60px;
  }
  .c-single01__head-meta {
    margin-bottom: 24px;
  }
  .c-single01__head h1 {
    font-size: 3.6rem;
  }
  .c-single01__cat-item {
    font-size: 1.4rem;
  }
  .c-single01__cat-link {
    transition: all 0.3s ease;
  }
  .c-single01__thum {
    margin-bottom: 80px;
  }
  .c-single01__thum img {
    border-radius: 10px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-single01__cat-link:hover {
    opacity: 0.7;
  }
}

/* .c-single-content
================================================== */
.c-single-content *:first-child {
  margin-top: 0;
}
.c-single-content *:last-child {
  margin-bottom: 0;
}
.c-single-content p {
  margin: 1em 0;
}
.c-single-content h2 {
  font-size: 2.2rem;
  font-weight: 400;
  line-height: var(--line-height_sm);
  padding-bottom: 10px;
  border-bottom: dotted 2px rgb(var(--color-primary-700));
  margin-top: 40px;
  margin-bottom: 20px;
}
.c-single-content h3 {
  font-size: 1.9rem;
  font-weight: 400;
  line-height: var(--line-height_sm);
  padding: 10px 20px;
  background: rgb(var(--color-primary-100));
  margin-top: 40px;
  margin-bottom: 20px;
}
.c-single-content h4 {
  font-size: 1.7rem;
  font-weight: 500;
  line-height: var(--line-height_sm);
  padding-left: 23px;
  margin-top: 30px;
  margin-bottom: 10px;
  position: relative;
}
.c-single-content h4::before, .c-single-content h4::after {
  position: absolute;
  content: "";
  top: 7px;
  left: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgb(var(--color-primary-500));
}
.c-single-content h4::after {
  top: 11px;
  left: 4px;
  width: 7px;
  height: 7px;
  background: rgb(var(--color-grayscale-100));
}
.c-single-content h5 {
  color: rgb(var(--color-accent-500));
  font-weight: 500;
  line-height: var(--line-height_sm);
  margin-top: 30px;
  margin-bottom: 10px;
}
.c-single-content strong {
  font-weight: 400;
  background: rgb(var(--color-primary-200));
}
.c-single-content a[target=_blank]::after {
  margin-left: 5px;
  content: "";
  display: inline-block;
  width: 11px;
  height: 11px;
  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 11 11"><path fill-rule="evenodd" clip-rule="evenodd" d="M9.38008 1.63734H4.94008V6.07734H9.38008V1.63734ZM10.5001 7.19734H3.83008V0.527344H10.5001V7.19734ZM0.5 10.5274V3.86742H2.72V4.97742H1.61V9.41742H6.06V8.30742H7.17V10.5274H0.5Z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 11 11"><path fill-rule="evenodd" clip-rule="evenodd" d="M9.38008 1.63734H4.94008V6.07734H9.38008V1.63734ZM10.5001 7.19734H3.83008V0.527344H10.5001V7.19734ZM0.5 10.5274V3.86742H2.72V4.97742H1.61V9.41742H6.06V8.30742H7.17V10.5274H0.5Z"/></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 {
  margin: 1em 0;
  padding-left: 1.25em;
}
.c-single-content ul li {
  box-sizing: border-box;
  position: relative;
}
.c-single-content ul li::marker {
  content: "・";
  color: rgb(var(--color-primary-500));
}
.c-single-content ol {
  margin: 1em 0;
  padding-left: 0;
  counter-reset: num;
}
.c-single-content ol li {
  counter-increment: num;
  position: relative;
  display: flex;
  align-items: flex-start;
  box-sizing: border-box;
  flex: 1;
}
.c-single-content ol li::before {
  content: counter(num, decimal-leading-zero);
  display: inline-block;
  padding-right: 0.5em;
  white-space: nowrap;
  color: rgb(var(--color-accent-500));
}
.c-single-content blockquote {
  position: relative;
  line-height: 1.6;
  margin: 1.5em 0;
  padding: 0 0 0 1em;
  clear: both;
}
.c-single-content blockquote:before {
  content: "";
  position: absolute;
  top: 0.25em;
  left: 0;
  height: calc(100% - 0.5em);
  width: 2px;
  background: var(rgba(var(--color-grayscale-900), 0.6));
}
.c-single-content img {
  border-radius: 5px;
}
@media (min-width: 768px) {
  .c-single-content {
    display: flow-root;
  }
  .c-single-content h2 {
    font-size: 2.6rem;
    margin-top: 80px;
    margin-bottom: 40px;
  }
  .c-single-content h3 {
    font-size: 2.1rem;
    margin-top: 60px;
    margin-bottom: 20px;
  }
  .c-single-content h4 {
    font-size: 1.8rem;
    margin-top: 50px;
    margin-bottom: 20px;
  }
  .c-single-content h4::before, .c-single-content h4::after {
    margin-top: 1px;
  }
  .c-single-content h5 {
    margin-top: 40px;
  }
  .c-single-content img.alignleft {
    float: left;
    margin-right: 40px;
    margin-bottom: 40px;
  }
  .c-single-content img.alignright {
    float: right;
    margin-left: 40px;
    margin-bottom: 40px;
  }
  .c-single-content img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 30px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-single-content a:hover {
    text-decoration: none;
  }
}

/*  .c-step01
================================================== */
.c-step01 {
  margin-bottom: 30px;
}
.c-step01__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 33px;
  position: relative;
  z-index: 2;
}
.c-step01__content::before {
  position: absolute;
  content: "";
  width: 245px;
  height: 1px;
  border-bottom: dotted 2px rgb(var(--color-grayscale-400));
  top: 19px;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: -1;
}
.c-step01__item {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: var(--line-height_xs);
  min-width: 59px;
  color: rgb(var(--color-grayscale-500));
}
.c-step01__en {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.8rem;
  margin: 0 auto 2px;
  color: rgb(var(--color-grayscale-100));
  background: rgb(var(--color-primary-200));
}
@media (min-width: 768px) {
  .c-step01 {
    margin-bottom: 60px;
  }
  .c-step01__content {
    gap: 90px;
  }
  .c-step01__content::before {
    width: 382px;
    top: 24px;
  }
  .c-step01__item {
    min-width: 67px;
    font-size: 1.6rem;
  }
  .c-step01__en {
    font-size: 2.3rem;
    width: 50px;
    height: 50px;
    margin-bottom: 9px;
  }
}

/*  .mw_wp_form
================================================ */
.mw_wp_form_input .c-step01__item.is-input {
  color: rgb(var(--color-primary-700));
}
.mw_wp_form_input .c-step01__item.is-input .c-step01__en {
  background: rgb(var(--color-primary-500));
}

.mw_wp_form_confirm .c-step01__item.is-confirm {
  color: rgb(var(--color-primary-700));
}
.mw_wp_form_confirm .c-step01__item.is-confirm .c-step01__en {
  background: rgb(var(--color-primary-500));
}

.mw_wp_form_complete .c-step01__item.is-complete {
  color: rgb(var(--color-primary-700));
}
.mw_wp_form_complete .c-step01__item.is-complete .c-step01__en {
  background: rgb(var(--color-primary-500));
}

/*  .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
================================================== */
.c-table01 tr:first-of-type th {
  padding-top: 0;
}
.c-table01 th {
  padding-top: 20px;
  text-align: left;
  font-weight: 500;
}
.c-table01 td {
  padding-top: 10px;
  padding-bottom: 20px;
}
@media (max-width: 767px) {
  .c-table01 tr {
    border-bottom: solid 1px rgb(var(--color-grayscale-300));
    position: relative;
  }
  .c-table01 tr::before {
    position: absolute;
    content: "";
    width: 73px;
    height: 1px;
    bottom: -1px;
    left: 0;
    background: rgb(var(--color-primary-500));
  }
}
@media (min-width: 768px) {
  .c-table01 tr:first-of-type th, .c-table01 tr:first-of-type td {
    padding-top: 0;
  }
  .c-table01 th, .c-table01 td {
    padding: 30px 0;
    border-bottom: solid 1px;
  }
  .c-table01 th {
    width: 240px;
    border-color: rgb(var(--color-primary-500));
  }
  .c-table01 td {
    padding-left: 20px;
    border-color: rgb(var(--color-grayscale-300));
  }
}

/* .l-breadcrumb
================================================ */
.l-breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  padding-top: 24px;
}
.l-breadcrumb-list__item {
  display: inline-block;
  vertical-align: top;
  font-size: 1.3rem;
  line-height: var(--line-height_sm);
}
.l-breadcrumb-list__item + .l-breadcrumb-list__item {
  margin-left: 10px;
  padding-left: 17px;
  position: relative;
}
.l-breadcrumb-list__item + .l-breadcrumb-list__item:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translate(0, -50%) rotate(-90deg);
  content: "";
  display: inline-block;
  width: 10px;
  height: 6px;
  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 10 6"><path fill-rule="evenodd" clip-rule="evenodd" d="M0.46967 0.46967C0.762563 0.176777 1.23744 0.176777 1.53033 0.46967L5 3.93934L8.46967 0.46967C8.76256 0.176777 9.23744 0.176777 9.53033 0.46967C9.82322 0.762563 9.82322 1.23744 9.53033 1.53033L5.53033 5.53033C5.23744 5.82322 4.76256 5.82322 4.46967 5.53033L0.46967 1.53033C0.176777 1.23744 0.176777 0.762563 0.46967 0.46967Z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 6"><path fill-rule="evenodd" clip-rule="evenodd" d="M0.46967 0.46967C0.762563 0.176777 1.23744 0.176777 1.53033 0.46967L5 3.93934L8.46967 0.46967C8.76256 0.176777 9.23744 0.176777 9.53033 0.46967C9.82322 0.762563 9.82322 1.23744 9.53033 1.53033L5.53033 5.53033C5.23744 5.82322 4.76256 5.82322 4.46967 5.53033L0.46967 1.53033C0.176777 1.23744 0.176777 0.762563 0.46967 0.46967Z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all 0.3s ease;
  color: rgb(var(--color-accent-500));
  width: 11px;
  height: 7px;
}
.l-breadcrumb-list__item a {
  color: rgb(var(--color-grayscale-500));
}
@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: 30px;
    max-width: var(--contents_wide_width_with_padding);
  }
  .l-breadcrumb-list__item {
    font-size: 1.4rem;
  }
  .l-breadcrumb-list__item + .l-breadcrumb-list__item {
    padding-left: 21px;
  }
}

/* .l-footer
================================================ */
.l-footer {
  position: relative;
  background: rgb(var(--color-surface-100));
}
.l-footer__inner {
  padding-top: 50px;
  padding-bottom: 66px;
}
@media (min-width: 768px) {
  .l-footer__inner {
    padding-top: 150px;
    padding-bottom: 150px;
  }
  .l-footer__content {
    display: grid;
    grid-template-columns: 400px 1fr;
    position: relative;
    min-height: 291px;
  }
}

/* .l-footer-info
================================================ */
.l-footer-info__logo {
  width: 224px;
  margin-bottom: 18px;
}
.l-footer-info__txt {
  font-size: 1.3rem;
  line-height: var(--line-height_sm);
}
@media (min-width: 768px) {
  .l-footer-info__logo {
    width: 278px;
    margin-bottom: 30px;
  }
  .l-footer-info__txt {
    font-size: 1.5rem;
  }
}

/* .l-footer-sitemap
================================================ */
.l-footer-sitemap__item-link, .l-footer-sitemap__item-txt {
  display: block;
  font-size: 1.4rem;
  line-height: var(--line-height_xs);
}
.l-footer-sitemap__item + .l-footer-sitemap__item {
  margin-top: 15px;
}
.l-footer-sitemap__child {
  margin-bottom: 25px;
}
.l-footer-sitemap__child-item {
  padding-top: 15px;
}
.l-footer-sitemap__child-item-link {
  display: block;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: var(--line-height_xs);
  color: rgb(var(--color-grayscale-500));
  padding-left: 16px;
  position: relative;
}
.l-footer-sitemap__child-item-link::before {
  position: absolute;
  content: "";
  width: 9px;
  height: 1px;
  top: 9px;
  left: 0;
  background: rgb(var(--color-primary-500));
}
@media (max-width: 767px) {
  .l-footer-sitemap__wrap {
    margin-top: 20px;
    border-top: solid 1px rgb(var(--color-grayscale-400));
    border-bottom: solid 1px rgb(var(--color-grayscale-400));
    padding: 20px 0;
  }
  .l-footer-sitemap + .l-footer-sitemap {
    margin-top: 25px;
  }
}
@media (min-width: 768px) {
  .l-footer-sitemap__wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 30px;
  }
  .l-footer-sitemap__item-link, .l-footer-sitemap__item-txt {
    font-size: 1.7rem;
  }
  .l-footer-sitemap__item + .l-footer-sitemap__item {
    margin-top: 30px;
  }
  .l-footer-sitemap__child {
    padding-bottom: 10px;
  }
  .l-footer-sitemap__child-item-link {
    font-size: 1.5rem;
  }
  .l-footer-sitemap__child-item-link::before {
    top: 10px;
  }
}
@media (min-width: 1541px) {
  .l-footer-sitemap__wrap {
    gap: 60px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-footer-sitemap__item-link {
    transition: all 0.3s ease;
  }
  .l-footer-sitemap__item-link:hover {
    color: rgb(var(--color-primary-700));
  }
  .l-footer-sitemap__child-item-link {
    transition: all 0.3s ease;
  }
  .l-footer-sitemap__child-item-link:hover {
    color: rgb(var(--color-primary-700));
  }
}

/* .l-footer-other
================================================ */
.l-footer-other {
  margin: 40px auto 0;
  width: 262px;
}
.l-footer-other__link {
  font-size: 1.7rem;
  font-weight: 500;
  line-height: var(--line-height_xs);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  height: 58px;
  background: rgb(var(--color-grayscale-100));
  position: relative;
}
.l-footer-other__link::before {
  position: absolute;
  content: "";
  bottom: 6px;
  right: 6px;
  content: "";
  display: inline-block;
  width: 11px;
  height: 11px;
  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 11 11"><path fill-rule="evenodd" clip-rule="evenodd" d="M9.38008 1.63734H4.94008V6.07734H9.38008V1.63734ZM10.5001 7.19734H3.83008V0.527344H10.5001V7.19734ZM0.5 10.5274V3.86742H2.72V4.97742H1.61V9.41742H6.06V8.30742H7.17V10.5274H0.5Z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 11 11"><path fill-rule="evenodd" clip-rule="evenodd" d="M9.38008 1.63734H4.94008V6.07734H9.38008V1.63734ZM10.5001 7.19734H3.83008V0.527344H10.5001V7.19734ZM0.5 10.5274V3.86742H2.72V4.97742H1.61V9.41742H6.06V8.30742H7.17V10.5274H0.5Z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all 0.3s ease;
  color: rgb(var(--color-primary-500));
}
@media (min-width: 768px) {
  .l-footer-other {
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 230px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-footer-other__link {
    transition: all 0.3s ease;
  }
  .l-footer-other__link:hover {
    opacity: 0.7;
  }
}

/* .l-footer-cr
================================================ */
.l-footer-cr {
  text-align: center;
  margin-top: 40px;
  font-size: 1.2rem;
  line-height: var(--line-height_xs);
  color: rgb(var(--color-grayscale-800));
}
@media (min-width: 768px) {
  .l-footer-cr {
    text-align: left;
    margin-top: 120px;
  }
}

/* .l-footer-page-top
================================================ */
.l-footer-page-top {
  margin-top: 35px;
  text-align: center;
}
.l-footer-page-top__link {
  display: inline-block;
  padding-top: 71px;
  position: relative;
}
.l-footer-page-top__ico {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 60px;
  height: 60px;
  border: solid 1px;
  border-radius: 50%;
  box-sizing: border-box;
}
.l-footer-page-top__ico::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  display: inline-block;
  width: 9px;
  height: 18px;
  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 18"><path d="M4.85355 0.146446C4.65829 -0.0488148 4.34171 -0.0488148 4.14645 0.146446L0.964466 3.32843C0.769203 3.52369 0.769203 3.84027 0.964466 4.03553C1.15973 4.2308 1.47631 4.2308 1.67157 4.03553L4.5 1.20711L7.32843 4.03553C7.52369 4.2308 7.84027 4.2308 8.03553 4.03553C8.2308 3.84027 8.2308 3.52369 8.03553 3.32843L4.85355 0.146446ZM5 17.5L5 0.5L4 0.5L4 17.5L5 17.5Z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9 18"><path d="M4.85355 0.146446C4.65829 -0.0488148 4.34171 -0.0488148 4.14645 0.146446L0.964466 3.32843C0.769203 3.52369 0.769203 3.84027 0.964466 4.03553C1.15973 4.2308 1.47631 4.2308 1.67157 4.03553L4.5 1.20711L7.32843 4.03553C7.52369 4.2308 7.84027 4.2308 8.03553 4.03553C8.2308 3.84027 8.2308 3.52369 8.03553 3.32843L4.85355 0.146446ZM5 17.5L5 0.5L4 0.5L4 17.5L5 17.5Z"/></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-page-top {
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    z-index: 10;
    margin: 0;
    transition: opacity 0.3s ease;
  }
  .l-footer-page-top.is-shown {
    opacity: 1;
    visibility: visible;
  }
  .l-footer-page-top__link {
    width: 60px;
    height: 60px;
    padding: 0;
  }
}

/* .l-header
================================================ */
.l-header {
  position: relative;
  width: 100%;
  min-width: 320px;
  z-index: 2000;
  opacity: 0;
}
.l-header__area-btn {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 320px;
}
.l-header.is-open .l-header-info__logo {
  opacity: 0;
  pointer-events: none;
}
.l-header.is-animated {
  opacity: 1;
}
@media all and (min-width: 1100px) {
  .l-header {
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-width: var(--contents_width_with_padding);
    height: var(--header_height);
    transition: all 0.6s ease;
  }
}
@media (min-width: 1100px) and (hover: none) {
  .l-header {
    left: 0 !important;
  }
}
@media all and (min-width: 1100px) {
  .l-header.is-hide {
    transform: translateY(-100%);
  }
}
@media all and (min-width: 1100px) {
  .l-header.is-fixed {
    background: rgb(var(--color-grayscale-100));
  }
  .l-header.is-fixed .l-header-info__logo {
    width: 244px;
  }
}

/* .l-header-info
================================================== */
.l-header-info {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  box-sizing: border-box;
  height: var(--header_height);
}
.l-header-info__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.l-header-info__logo {
  width: 190px;
  padding: 10px;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .l-header-info {
    position: fixed;
    height: var(--header_height);
  }
  .l-header-info__logo {
    width: 240px;
    padding: 13px 0 10px 14px;
  }
}
@media (min-width: 1541px) {
  .l-header-info__logo {
    width: 278px;
  }
}

/* .l-nav-btn
================================================== */
.l-nav-btn {
  position: fixed;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  border-radius: 0 0 0 5px;
  background: rgb(var(--color-grayscale-900));
  cursor: pointer;
  z-index: 2000;
}
.l-nav-btn__line {
  position: absolute;
  left: 15px;
  width: 30px;
  height: 2px;
  content: "";
  background: rgb(var(--color-grayscale-100));
  transition: all 0.3s ease;
}
.l-nav-btn__line:nth-child(1) {
  top: 18px;
}
.l-nav-btn__line:nth-child(2) {
  top: 28px;
}
.l-nav-btn__line:nth-child(3) {
  top: 38px;
}
.l-nav-btn.is-open {
  background: rgb(var(--color-grayscale-800));
}
.l-nav-btn.is-open .l-nav-btn__line {
  top: 28px;
}
.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;
}
@media all and (min-width: 1100px) {
  .l-nav-btn {
    display: none;
  }
}

/* .l-nav
================================================ */
.l-nav {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100dvh;
  min-width: 320px;
  padding: 90px 40px 40px;
  box-sizing: border-box;
  overscroll-behavior-y: none;
  -webkit-overflow-scrolling: touch;
}
.l-nav__logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 190px;
  padding: 10px;
}
@media all and (max-width: 1099px) {
  .l-nav {
    background: rgb(var(--color-grayscale-100));
    overflow: auto;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }
  .l-nav::-webkit-scrollbar {
    display: none;
  }
  .l-nav.is-open {
    opacity: 1;
    pointer-events: auto;
  }
  .l-nav .u-nav-view-upper-tb {
    display: none;
  }
}
@media all and (min-width: 1100px) {
  .l-nav {
    position: static;
    height: var(--header_height);
    min-width: auto;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .l-nav .u-nav-view-sp {
    display: none;
  }
}

/* .l-nav-list
================================================== */
@media all and (max-width: 1099px) {
  .l-nav-list__item {
    border-bottom: solid 1px rgb(var(--color-grayscale-300));
  }
  .l-nav-list__item-link, .l-nav-list__item-txt {
    display: block;
    position: relative;
    border: 0;
    padding: 20px 0;
    font-size: 1.7rem;
    font-weight: 500;
    line-height: var(--line-height_xs);
  }
  .l-nav-list__item-link:is(button)::before, .l-nav-list__item-link:is(button)::after, .l-nav-list__item-txt:is(button)::before, .l-nav-list__item-txt:is(button)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    width: 15px;
    height: 0;
    border-top: 1px solid rgb(var(--color-grayscale-500));
    transition: all 0.3s ease;
  }
  .l-nav-list__item-link:is(button)::after, .l-nav-list__item-txt:is(button)::after {
    transform: translate(0, -50%) rotate(90deg);
  }
  .l-nav-list__item-link:is(button).is-active::after, .l-nav-list__item-txt:is(button).is-active::after {
    transform: translate(0, -50%) rotate(0);
  }
  .l-nav-list__item-txt::after {
    position: absolute;
    content: "";
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    content: "";
    display: inline-block;
    width: 15px;
    height: 12px;
    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 15 12"><path d="M14.5303 6.53033C14.8232 6.23744 14.8232 5.76256 14.5303 5.46967L9.75736 0.696699C9.46447 0.403806 8.98959 0.403806 8.6967 0.696699C8.40381 0.989593 8.40381 1.46447 8.6967 1.75736L12.9393 6L8.6967 10.2426C8.40381 10.5355 8.40381 11.0104 8.6967 11.3033C8.98959 11.5962 9.46447 11.5962 9.75736 11.3033L14.5303 6.53033ZM0.5 6.75H14V5.25H0.5V6.75Z"/></svg>');
    mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 12"><path d="M14.5303 6.53033C14.8232 6.23744 14.8232 5.76256 14.5303 5.46967L9.75736 0.696699C9.46447 0.403806 8.98959 0.403806 8.6967 0.696699C8.40381 0.989593 8.40381 1.46447 8.6967 1.75736L12.9393 6L8.6967 10.2426C8.40381 10.5355 8.40381 11.0104 8.6967 11.3033C8.98959 11.5962 9.46447 11.5962 9.75736 11.3033L14.5303 6.53033ZM0.5 6.75H14V5.25H0.5V6.75Z"/></svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    transition: all 0.3s ease;
    color: rgb(var(--color-primary-500));
  }
  .l-nav-list__head {
    line-height: var(--line-height_xs);
    margin-bottom: 15px;
  }
  .l-nav-list__head-link {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: var(--line-height_xs);
    padding-right: 21px;
    color: rgb(var(--color-grayscale-500));
    position: relative;
  }
  .l-nav-list__head-link::after {
    position: absolute;
    content: "";
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    content: "";
    display: inline-block;
    width: 15px;
    height: 12px;
    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 15 12"><path d="M14.5303 6.53033C14.8232 6.23744 14.8232 5.76256 14.5303 5.46967L9.75736 0.696699C9.46447 0.403806 8.98959 0.403806 8.6967 0.696699C8.40381 0.989593 8.40381 1.46447 8.6967 1.75736L12.9393 6L8.6967 10.2426C8.40381 10.5355 8.40381 11.0104 8.6967 11.3033C8.98959 11.5962 9.46447 11.5962 9.75736 11.3033L14.5303 6.53033ZM0.5 6.75H14V5.25H0.5V6.75Z"/></svg>');
    mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 12"><path d="M14.5303 6.53033C14.8232 6.23744 14.8232 5.76256 14.5303 5.46967L9.75736 0.696699C9.46447 0.403806 8.98959 0.403806 8.6967 0.696699C8.40381 0.989593 8.40381 1.46447 8.6967 1.75736L12.9393 6L8.6967 10.2426C8.40381 10.5355 8.40381 11.0104 8.6967 11.3033C8.98959 11.5962 9.46447 11.5962 9.75736 11.3033L14.5303 6.53033ZM0.5 6.75H14V5.25H0.5V6.75Z"/></svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    transition: all 0.3s ease;
    width: 11px;
    height: 8px;
  }
  .l-nav-list__child {
    padding-bottom: 20px;
  }
  .l-nav-list__child-wrap {
    display: none;
    box-sizing: border-box;
  }
  .l-nav-list__child-item {
    line-height: var(--line-height_xs);
  }
  .l-nav-list__child-item-link {
    display: block;
    padding-left: 16px;
    position: relative;
    font-size: 1.4rem;
    font-weight: 500;
    color: rgb(var(--color-grayscale-500));
    position: relative;
  }
  .l-nav-list__child-item-link::before {
    position: absolute;
    content: "";
    width: 9px;
    height: 1px;
    top: 10px;
    left: 0;
    background: rgb(var(--color-primary-500));
  }
  .l-nav-list__child-item + .l-nav-list__child-item {
    padding-top: 15px;
  }
}
@media all and (min-width: 1100px) {
  .l-nav-list {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
  }
  .l-nav-list__item {
    position: relative;
    margin-right: 15px;
  }
  .l-nav-list__item-link, .l-nav-list__item-txt {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    height: 100%;
    border: none;
    font-size: 1.7rem;
    font-weight: 500;
    padding: 0;
  }
  .l-nav-list__item-link:is(button), .l-nav-list__item-txt:is(button) {
    padding-right: 16px;
  }
  .l-nav-list__item-link:is(button)::before, .l-nav-list__item-txt:is(button)::before {
    position: absolute;
    content: "";
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    content: "";
    display: inline-block;
    width: 10px;
    height: 6px;
    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 10 6"><path fill-rule="evenodd" clip-rule="evenodd" d="M0.46967 0.46967C0.762563 0.176777 1.23744 0.176777 1.53033 0.46967L5 3.93934L8.46967 0.46967C8.76256 0.176777 9.23744 0.176777 9.53033 0.46967C9.82322 0.762563 9.82322 1.23744 9.53033 1.53033L5.53033 5.53033C5.23744 5.82322 4.76256 5.82322 4.46967 5.53033L0.46967 1.53033C0.176777 1.23744 0.176777 0.762563 0.46967 0.46967Z"/></svg>');
    mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 6"><path fill-rule="evenodd" clip-rule="evenodd" d="M0.46967 0.46967C0.762563 0.176777 1.23744 0.176777 1.53033 0.46967L5 3.93934L8.46967 0.46967C8.76256 0.176777 9.23744 0.176777 9.53033 0.46967C9.82322 0.762563 9.82322 1.23744 9.53033 1.53033L5.53033 5.53033C5.23744 5.82322 4.76256 5.82322 4.46967 5.53033L0.46967 1.53033C0.176777 1.23744 0.176777 0.762563 0.46967 0.46967Z"/></svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    transition: all 0.3s ease;
    color: rgb(var(--color-primary-500));
  }
  .l-nav-list__item-link:is(button).is-active, .l-nav-list__item-txt:is(button).is-active {
    color: rgb(var(--color-primary-700));
  }
  .l-nav-list__item-link:is(button).is-active::before, .l-nav-list__item-txt:is(button).is-active::before {
    transform: translate(0, -50%) rotate(180deg);
  }
  .l-nav-list__head {
    margin-top: -7px;
    margin-bottom: 10px;
  }
  .l-nav-list__head-link {
    display: block;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: var(--line-height_xs);
    padding: 8px 0;
    border-bottom: solid 1px rgba(var(--color-grayscale-100), 0.3);
    position: relative;
  }
  .l-nav-list__head-link::after {
    position: absolute;
    content: "";
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    content: "";
    display: inline-block;
    width: 15px;
    height: 12px;
    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 15 12"><path d="M14.5303 6.53033C14.8232 6.23744 14.8232 5.76256 14.5303 5.46967L9.75736 0.696699C9.46447 0.403806 8.98959 0.403806 8.6967 0.696699C8.40381 0.989593 8.40381 1.46447 8.6967 1.75736L12.9393 6L8.6967 10.2426C8.40381 10.5355 8.40381 11.0104 8.6967 11.3033C8.98959 11.5962 9.46447 11.5962 9.75736 11.3033L14.5303 6.53033ZM0.5 6.75H14V5.25H0.5V6.75Z"/></svg>');
    mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 12"><path d="M14.5303 6.53033C14.8232 6.23744 14.8232 5.76256 14.5303 5.46967L9.75736 0.696699C9.46447 0.403806 8.98959 0.403806 8.6967 0.696699C8.40381 0.989593 8.40381 1.46447 8.6967 1.75736L12.9393 6L8.6967 10.2426C8.40381 10.5355 8.40381 11.0104 8.6967 11.3033C8.98959 11.5962 9.46447 11.5962 9.75736 11.3033L14.5303 6.53033ZM0.5 6.75H14V5.25H0.5V6.75Z"/></svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    transition: all 0.3s ease;
    width: 11px;
    height: 8px;
    transition: none;
  }
  .l-nav-list__child-wrap {
    box-sizing: border-box;
    position: absolute;
    top: calc(100% - 14px);
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    height: auto;
    padding: 12px 15px;
    color: rgb(var(--color-grayscale-100));
    background: rgb(var(--color-grayscale-800));
    border-radius: 5px;
    transition: visibility 0s linear, all 0.3s ease;
  }
  .l-nav-list__child-wrap:not(.is-active) {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translate(-50%, -30px);
  }
  .l-nav-list__child-item-link {
    display: block;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: var(--line-height_xs);
    padding: 2px 0 3px 12px;
    position: relative;
  }
  .l-nav-list__child-item-link::before {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    top: 11px;
    left: 0;
    background: rgb(var(--color-primary-500));
    border-radius: 50%;
  }
}
@media (min-width: 1541px) {
  .l-nav-list__item {
    margin-right: 35px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-nav-list__item-link, .l-nav-list__item-txt {
    transition: all 0.3s ease;
  }
  .l-nav-list__item-link:hover, .l-nav-list__item-txt:hover {
    color: rgb(var(--color-primary-700));
  }
  .l-nav-list__head-link {
    transition: all 0.3s ease;
  }
  .l-nav-list__head-link:hover {
    color: rgb(var(--color-primary-400));
  }
  .l-nav-list__child-item-link {
    transition: all 0.3s ease;
  }
  .l-nav-list__child-item-link:hover {
    color: rgb(var(--color-primary-400));
  }
}

/* .l-nav-contact
================================================ */
.l-nav-contact {
  margin-top: 40px;
  text-align: center;
}
.l-nav-contact__txt {
  margin-bottom: 10px;
  font-size: 1.2rem;
  line-height: var(--line-height_sm);
}
.l-nav-contact__txt span {
  position: relative;
  padding-left: 24px;
}
.l-nav-contact__txt span::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url(../img/common/ico_clock01.png) no-repeat 0 100%/cover;
  width: 18px;
  height: 17px;
}
.l-nav-contact__txt span.is-en {
  padding-left: 29px;
}
.l-nav-contact__txt span.is-en::before {
  background: url(../img/common/ico_english01.png) no-repeat 0 100%/cover;
  width: 23px;
  height: 14px;
}
.l-nav-contact__btn-link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 66px;
  border-radius: 9999px;
  color: rgb(var(--color-grayscale-100));
  background: rgb(var(--color-primary-500));
}
.l-nav-contact__btn-txt {
  font-size: 1.7rem;
  font-weight: 500;
}
.l-nav-contact__privacy {
  font-size: 1.4rem;
  margin-top: 30px;
}
.l-nav-contact__privacy a {
  text-decoration: underline;
}
@media all and (min-width: 1100px) {
  .l-nav-contact__btn {
    width: 190px;
  }
  .l-nav-contact__btn-link {
    height: 100%;
    border-radius: 0 0 0 5px;
    background: rgb(var(--color-grayscale-900));
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-nav-contact__btn-link {
    transition: all 0.3s ease;
  }
  .l-nav-contact__btn-link:hover {
    background: rgb(var(--color-primary-500));
  }
}

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

/* .l-main-img HOME
================================================ */
.l-main-img__inner {
  width: 100%;
  height: 100dvh;
  position: absolute;
  top: 0;
  left: 0;
}
.l-main-img__area-txt {
  position: absolute;
  top: 98px;
  left: 20px;
  width: calc(100% - 40px);
}
.l-main-img__txt {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: var(--line-height_xs);
  margin-bottom: 7px;
}
.l-main-img__copy {
  font-size: 3.1rem;
  font-weight: 500;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .l-main-img__img {
    position: relative;
  }
  .l-main-img__scroll {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 80px;
  }
}
@media (min-width: 768px) {
  .l-main-img {
    position: relative;
    margin-top: -100vh;
  }
  .l-main-img::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 120px;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
    z-index: 2;
  }
  .l-main-img__inner {
    width: 100%;
    height: 100vh;
    position: relative;
  }
  .l-main-img__area-txt {
    width: auto;
    text-align: center;
    top: 50%;
    left: 9%;
    transform: translateY(-50%);
  }
  .l-main-img__txt {
    margin-bottom: 14px;
    font-size: clamp(1.8rem, 0.593rem + 1.098vw, 2.7rem);
  }
  .l-main-img__copy {
    font-size: clamp(4.5rem, 1.415rem + 2.805vw, 6.8rem);
  }
  .l-main-img__bg {
    position: sticky;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: -1;
    background: rgb(var(--color-surface-100));
  }
  .l-main-img__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .l-main-img__scroll {
    margin-top: 34px;
  }
  .l-main-img__cover {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.92);
    z-index: -1;
  }
}
@media (min-width: 1541px) {
  .l-main-img__scroll {
    margin-top: 50px;
  }
}

/* .l-main-img アニメーション
================================================ */
#home .l-main-img__bg,
#home .l-main-img__img,
#home .l-main-img__inner,
#home .l-header {
  opacity: 0;
  transition: all 1s ease;
}
#home .l-main-img__inner {
  transition-delay: 1.8s;
  transform: translateY(30px);
}
#home .l-header {
  transition-delay: 0.6s;
}
#home .l-header.is-fixed {
  transition: all 0.6s ease;
  transition-delay: 0.01s;
}

#home .l-wrapper.is-animated .l-main-img__bg,
#home .l-wrapper.is-animated .l-main-img__img,
#home .l-wrapper.is-animated .l-main-img__inner,
#home .l-wrapper.is-animated .l-header {
  opacity: 1;
}
#home .l-wrapper.is-animated .l-main-img__inner {
  transform: translateY(0);
}

/* .l-sub-img
================================================ */
.l-sub-img {
  background: url(../img/common/bg_mv01_sp.png) no-repeat bottom center/cover;
}
.l-sub-img__inner {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}
.l-sub-img__head {
  font-size: 2.9rem;
  font-weight: 500;
  line-height: var(--line-height_sm);
}
.l-sub-img__en {
  margin-top: 10px;
}
.l-sub-img__img {
  position: absolute;
  bottom: -10px;
  right: 10px;
  width: 156px;
}
@media (min-width: 768px) {
  .l-sub-img {
    background: url(../img/common/bg_mv01_pc.png) no-repeat bottom center/cover;
  }
  .l-sub-img__inner {
    padding-top: 193px;
    padding-bottom: 193px;
  }
  .l-sub-img__head {
    font-size: 5.5rem;
  }
  .l-sub-img__en {
    margin-top: 20px;
  }
  .l-sub-img__img {
    width: 390px;
    height: 338px;
    bottom: -90px;
  }
}
@media (min-width: 1541px) {
  .l-sub-img__img {
    width: 490px;
    bottom: -24px;
  }
}

/* .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-slider
================================================== */
.js-c-slider__arrow {
  position: absolute;
  top: 0;
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: rgb(var(--color-grayscale-100));
  background: rgb(var(--color-primary-300));
  box-sizing: border-box;
  cursor: pointer;
}
.js-c-slider__arrow::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  display: inline-block;
  width: 15px;
  height: 12px;
  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 15 12"><path d="M14.5303 6.53033C14.8232 6.23744 14.8232 5.76256 14.5303 5.46967L9.75736 0.696699C9.46447 0.403806 8.98959 0.403806 8.6967 0.696699C8.40381 0.989593 8.40381 1.46447 8.6967 1.75736L12.9393 6L8.6967 10.2426C8.40381 10.5355 8.40381 11.0104 8.6967 11.3033C8.98959 11.5962 9.46447 11.5962 9.75736 11.3033L14.5303 6.53033ZM0.5 6.75H14V5.25H0.5V6.75Z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 12"><path d="M14.5303 6.53033C14.8232 6.23744 14.8232 5.76256 14.5303 5.46967L9.75736 0.696699C9.46447 0.403806 8.98959 0.403806 8.6967 0.696699C8.40381 0.989593 8.40381 1.46447 8.6967 1.75736L12.9393 6L8.6967 10.2426C8.40381 10.5355 8.40381 11.0104 8.6967 11.3033C8.98959 11.5962 9.46447 11.5962 9.75736 11.3033L14.5303 6.53033ZM0.5 6.75H14V5.25H0.5V6.75Z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all 0.3s ease;
}
.js-c-slider__arrow.is-prev {
  left: 0;
}
.js-c-slider__arrow.is-prev::before {
  transform: translate(-50%, -50%) scale(-1, 1);
}
.js-c-slider__arrow.is-next {
  right: 0;
}
@media (min-width: 768px) {
  .js-c-slider__arrow {
    transition: all 0.3s ease;
  }
  .js-c-slider__arrow:hover {
    background: rgb(var(--color-primary-500));
  }
}

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

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}
.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.swiper-button-next,
.swiper-button-prev {
  right: -10px;
  width: 48px;
  height: 48px;
  color: rgb(var(--color-grayscale-100));
  background: rgb(var(--color-primary-500));
  border-radius: 50%;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}
.swiper-button-next::before,
.swiper-button-prev::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  display: inline-block;
  width: 15px;
  height: 12px;
  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 15 12"><path d="M14.5303 6.53033C14.8232 6.23744 14.8232 5.76256 14.5303 5.46967L9.75736 0.696699C9.46447 0.403806 8.98959 0.403806 8.6967 0.696699C8.40381 0.989593 8.40381 1.46447 8.6967 1.75736L12.9393 6L8.6967 10.2426C8.40381 10.5355 8.40381 11.0104 8.6967 11.3033C8.98959 11.5962 9.46447 11.5962 9.75736 11.3033L14.5303 6.53033ZM0.5 6.75H14V5.25H0.5V6.75Z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 12"><path d="M14.5303 6.53033C14.8232 6.23744 14.8232 5.76256 14.5303 5.46967L9.75736 0.696699C9.46447 0.403806 8.98959 0.403806 8.6967 0.696699C8.40381 0.989593 8.40381 1.46447 8.6967 1.75736L12.9393 6L8.6967 10.2426C8.40381 10.5355 8.40381 11.0104 8.6967 11.3033C8.98959 11.5962 9.46447 11.5962 9.75736 11.3033L14.5303 6.53033ZM0.5 6.75H14V5.25H0.5V6.75Z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all 0.3s ease;
}

.swiper-button-prev {
  left: -10px;
}
.swiper-button-prev::before {
  transform: translate(-50%, -50%) scale(-1, 1);
}

@media (min-width: 768px) {
  .swiper-button-next,
.swiper-button-prev {
    width: 60px;
    height: 60px;
  }

  .swiper-button-next {
    right: -40px;
  }

  .swiper-button-prev {
    left: -40px;
  }
}
.about-message__inner {
  padding-top: 60px;
  padding-bottom: 30px;
}
.about-message__area-txt {
  margin-bottom: 7px;
}
.about-message__txt + .about-message__txt {
  margin-top: 2em;
}
.about-message__img {
  margin: auto;
  width: 206px;
}
@media (min-width: 768px) {
  .about-message__inner {
    padding-top: 100px;
    padding-bottom: 78px;
    display: grid;
    grid-template-columns: 530px 1fr;
    gap: 13px 60px;
  }
  .about-message__header {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 0;
  }
  .about-message__header .c-head01__main {
    font-size: 2.8rem;
  }
  .about-message__area-txt {
    grid-column: 2;
    grid-row: span 2;
    align-self: center;
    margin-bottom: 0;
  }
  .about-message__img {
    margin: 0 0 0 80px;
    width: 306px;
  }
}

/* about-role
------------------------------------- */
.about-role {
  padding-bottom: 0;
}
.about-role::after {
  bottom: 160px;
}
.about-role .c-bg-curve__in {
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  height: calc(100% - 280px);
  z-index: -1;
}
.about-role__inner {
  position: relative;
  padding-top: 10px;
  z-index: 1;
}
.about-role__header {
  margin-bottom: 25px;
}
.about-role__header-txt {
  font-size: 1.8rem;
  line-height: var(--line-height_sm);
}
.about-role__flow {
  overflow: hidden;
  margin-right: -20px;
  padding: 0 0 50px 0;
}
.about-role__flow-list {
  padding-right: 20px;
  overflow: auto;
}
.about-role__flow-list img {
  max-width: none;
  width: 740px;
}
.about-role__set {
  margin-bottom: 20px;
}
.about-role__img {
  margin-bottom: 30px;
  padding: 0 20px;
  text-align: center;
}
.about-role__img img {
  margin: auto;
}
.about-role__txt + * {
  margin-top: 20px;
}
.about-role__box {
  margin-bottom: 50px;
  background: rgb(var(--color-primary-200));
  padding: 20px;
}
.about-role__box-list {
  text-align: left;
}
@media (min-width: 768px) {
  .about-role::after {
    bottom: 100px;
  }
  .about-role .c-bg-curve__in {
    top: 150px;
    height: calc(100% - 300px);
  }
  .about-role__inner {
    padding-top: 0;
  }
  .about-role__header {
    display: flex;
    margin-bottom: 50px;
  }
  .about-role__header-head {
    margin: 0 auto 0 0;
  }
  .about-role__header-txt {
    font-size: 1.9rem;
  }
  .about-role__flow {
    margin-right: 0;
    padding: 0 0 100px 0;
  }
  .about-role__flow-list {
    padding-right: 0;
  }
  .about-role__flow-list img {
    max-width: none;
    width: 100%;
  }
  .about-role__set {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 50px;
    margin-bottom: 40px;
  }
  .about-role__img {
    grid-column: 2;
    grid-row: 1;
    margin-bottom: 0;
    padding: 0;
  }
  .about-role__area-txt {
    grid-column: 1;
    grid-row: 1;
  }
  .about-role__txt + * {
    margin-top: 40px;
  }
  .about-role__box {
    margin-bottom: 80px;
    padding: 40px 60px;
  }
}

/* about-role-support
------------------------------------- */
.about-role-support__head {
  text-align: center;
  width: 284px;
  margin: 0 auto 25px;
}
.about-role-support__box {
  padding: 30px 20px;
  border: 3px solid rgb(var(--color-primary-300), 0.5);
  border-radius: 15px;
  background: #fff;
}
.about-role-support__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px 30px;
}
.about-role-support__item {
  text-align: center;
}
.about-role-support__item-ico {
  display: block;
  margin: 0 auto 10px;
  width: 53px;
}
.about-role-support__item-txt {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: var(--line-height_sm);
}
@media (min-width: 768px) {
  .about-role-support__head {
    width: 587px;
    margin-bottom: 40px;
  }
  .about-role-support__box {
    padding: 60px;
    border: 6px solid rgb(var(--color-primary-300), 0.5);
  }
  .about-role-support__list {
    grid-template-columns: repeat(6, 1fr);
    gap: 53px;
  }
  .about-role-support__item {
    text-align: center;
  }
  .about-role-support__item-ico {
    width: 70px;
  }
  .about-role-support__item-txt {
    font-size: 1.6rem;
  }
}

/* about-future
------------------------------------- */
.about-future {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.about-future__bg {
  position: absolute;
  z-index: -1;
  left: 0;
  display: flex;
  bottom: 70px;
  height: 70px;
  overflow: hidden;
}
.about-future__bg img {
  width: auto;
  height: 100%;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.about-future__bg img:first-child {
  animation: loopSlide01 100s -50s linear infinite;
}
.about-future__bg img:last-child {
  animation: loopSlide02 100s linear infinite;
}
.about-future__inner {
  padding-top: 40px;
}
.about-future__obj01 {
  width: 150px;
  margin: 0 0 10px auto;
}
.about-future__obj02 {
  width: 150px;
  margin: 20px auto 0 0;
}
.about-future__copy {
  font-size: 2.1rem;
  line-height: var(--line-height_sm);
  font-weight: 400;
  margin-bottom: 15px;
}
.about-future__txt + .about-future__txt {
  margin-top: 2em;
}
@media (min-width: 768px) {
  .about-future__bg {
    bottom: 243px;
    height: 250px;
  }
  .about-future__inner {
    position: relative;
    padding-top: 140px;
  }
  .about-future__obj01 {
    position: absolute;
    top: 90px;
    right: 0;
    width: 300px;
    margin: 0;
  }
  .about-future__obj02 {
    position: absolute;
    left: 0;
    bottom: 150px;
    width: 281px;
    margin: 0;
  }
  .about-future__in {
    width: 580px;
    margin: auto;
  }
  .about-future__copy {
    font-size: 2.6rem;
    margin-bottom: 30px;
  }
}

#case .c-cv01 {
  margin-top: 70px;
}
@media (min-width: 768px) {
  #case .c-cv01 {
    margin-top: 130px;
  }
}

.case-sec__inner {
  padding-top: 60px;
  padding-bottom: 60px;
}
.case-sec__inner.no-padding {
  padding-top: 0;
  padding-bottom: 0;
}
.case-sec__head {
  text-align: center;
}
.case-sec__head-ico {
  display: grid;
  place-content: center;
  padding: 8px;
  width: 35px;
  height: 35px;
  margin: auto;
  background: rgb(var(--color-surface-100));
  border-radius: 50%;
  box-sizing: border-box;
}
.case-sec__slider {
  margin-bottom: 30px;
}
.case-sec__slider-main {
  margin-bottom: 10px;
}
.case-sec__slider-main-img {
  display: block !important;
}
.case-sec__slider-main-img img {
  border-radius: 5px;
}
.case-sec__slider-thumbnail .slick-slide {
  margin: 0 2.5px;
  opacity: 0.3;
  transition: all 0.3s ease;
}
.case-sec__slider-thumbnail .slick-slide.slick-current {
  opacity: 1;
}
.case-sec__slider-thumbnail .slick-list {
  margin: 0 -2.5px;
}
.case-sec__slider-thumbnail-img {
  display: block !important;
}
.case-sec__slider-thumbnail-img img {
  border-radius: 5px;
}
.case-sec__slider .js-c-slider__arrow {
  top: calc(50% - 24px);
}
.case-sec__slider .js-c-slider__arrow.is-prev {
  left: -15px;
}
.case-sec__slider .js-c-slider__arrow.is-next {
  right: -15px;
}
.case-sec__content + .case-sec__content {
  margin-top: 50px;
}
@media (min-width: 768px) {
  .case-sec__inner {
    padding-top: 110px;
    padding-bottom: 140px;
  }
  .case-sec__head-ico {
    width: 60px;
    height: 60px;
  }
  .case-sec__content {
    display: flex;
  }
  .case-sec__content + .case-sec__content {
    margin-top: 100px;
  }
  .case-sec__slider {
    width: 700px;
    margin-bottom: 0;
  }
  .case-sec__slider-main {
    margin-bottom: 20px;
  }
  .case-sec__slider-thumbnail .slick-slide {
    margin: 0 7.5px;
  }
  .case-sec__slider-thumbnail .slick-list {
    margin: 0 -7.5px;
  }
  .case-sec__slider .js-c-slider__arrow.is-prev {
    left: -24px;
  }
  .case-sec__slider .js-c-slider__arrow.is-next {
    right: -24px;
  }
  .case-sec__overview {
    flex: 1;
    padding-left: 98px;
  }
  .case-sec__table th {
    width: 120px;
  }
}

/* case-sec-content
------------------------------------- */
.case-sec-content {
  padding-top: 0;
  margin-bottom: 70px;
}
.case-sec-content::before {
  top: 30px;
}
.case-sec-content .c-bg-curve__in {
  position: absolute;
  top: 90px;
  left: 0;
  width: 100%;
  height: calc(100% - 150px);
  z-index: -1;
}
.case-sec-content__box {
  position: relative;
  padding: 30px 20px;
  margin-bottom: 50px;
  border-radius: 15px;
  background: #fff;
  border: 6px solid rgb(var(--color-primary-300), 0.5);
  box-shadow: 6px 6px 0px 0px rgba(0, 0, 0, 0.05);
  z-index: 1;
  box-sizing: border-box;
}
.case-sec-content__box-bg {
  position: absolute;
  top: 10px;
  right: 19px;
  font-size: 5rem;
  color: rgb(var(--color-primary-100));
  z-index: -1;
  line-height: 1;
}
.case-sec-content__box-txt + .case-sec-content__box-txt {
  margin-top: 2em;
}
.case-sec-content__set + .case-sec-content__set {
  margin-top: 50px;
}
@media (min-width: 768px) {
  .case-sec-content {
    margin-bottom: 130px;
  }
  .case-sec-content::before {
    top: 50px;
  }
  .case-sec-content .c-bg-curve__in {
    top: 200px;
    height: calc(100% - 350px);
  }
  .case-sec-content__box {
    padding: 50px;
    margin-bottom: 90px;
  }
  .case-sec-content__box-bg {
    top: 10px;
    right: 20px;
    font-size: 12rem;
  }
  .case-sec-content__set + .case-sec-content__set {
    margin-top: 100px;
  }
}

/* .company-info
================================================ */
.company-info__inner {
  padding-top: 60px;
  padding-bottom: 70px;
}
.company-info__table dl {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 10px;
}
@media (min-width: 768px) {
  .company-info__inner {
    padding-top: 100px;
    padding-bottom: 140px;
  }
}

/* .company-access
================================================ */
.company-access__map {
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 91%;
  height: 0;
  overflow: hidden;
}
.company-access__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  .company-access__map {
    padding-bottom: 38.18%;
  }
}

/* .company-history
================================================ */
.company-history__inner {
  padding-top: 70px;
}
.company-history__area-head {
  position: relative;
}
.company-history__illust {
  width: 170px;
  position: absolute;
  top: 0;
  right: 0;
}
@media (min-width: 768px) {
  .company-history__inner {
    padding-top: 140px;
    display: grid;
    grid-template-columns: 1fr 732px;
  }
  .company-history__area-head {
    position: sticky;
    top: 80px;
    height: 430px;
  }
  .company-history__illust {
    width: 388px;
    position: relative;
    margin-top: 80px;
    margin-left: -80px;
  }
}

/* .company-history-list
================================================ */
.company-history-list {
  display: grid;
  gap: 40px;
  padding: 20px 0;
  position: relative;
}
.company-history-list::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 100%;
  top: 0;
  left: 7px;
  border-left: dotted 2px rgb(var(--color-primary-700));
  z-index: -1;
}
.company-history-list__item {
  padding-left: 28px;
  position: relative;
}
.company-history-list__item::before, .company-history-list__item::after {
  position: absolute;
  content: "";
  top: 7px;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(var(--color-primary-700), 0.3);
}
.company-history-list__item::after {
  width: 8px;
  height: 8px;
  background: rgb(var(--color-primary-700));
  margin-top: 4px;
  margin-left: 4px;
}
.company-history-list__set-wrap {
  display: grid;
  gap: 12px;
}
.company-history-list__year {
  font-size: 3.1rem;
  color: rgba(var(--color-primary-300), 0.5);
  margin-bottom: 4px;
}
.company-history-list__head {
  display: flex;
  flex-wrap: wrap;
}
.company-history-list__head .is-month {
  display: inline-block;
  width: 42px;
  color: rgb(var(--color-primary-700));
  font-weight: 500;
}
.company-history-list__head .is-txt {
  flex-basis: 50%;
  min-width: 50%;
  flex-grow: 1;
}
.company-history-list__img {
  margin-top: 12px;
}
.company-history-list__img img {
  border-radius: 5px;
  width: 100%;
}
@media (min-width: 768px) {
  .company-history-list {
    gap: 60px;
  }
  .company-history-list::before {
    left: 160px;
  }
  .company-history-list__item {
    padding-left: 192px;
  }
  .company-history-list__item::before, .company-history-list__item::after {
    left: 150px;
    width: 22px;
    height: 22px;
  }
  .company-history-list__item::after {
    width: 10px;
    height: 10px;
    margin-top: 6px;
    margin-left: 6px;
  }
  .company-history-list__year {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 4.1rem;
    text-align: right;
    width: 110px;
  }
  .company-history-list__img img {
    border-radius: 10px;
  }
}

/* .consulting-anchor
================================================ */
.consulting-anchor__inner {
  padding-top: 65px;
  padding-bottom: 70px;
}
.consulting-anchor__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto 1fr;
  gap: 10px 7px;
}
.consulting-anchor__item {
  min-height: 165px;
}
.consulting-anchor__item-link {
  display: block;
  background: rgb(var(--color-grayscale-100));
  border: solid 3px rgba(var(--color-primary-300), 0.5);
  border-radius: 15px;
  padding: 50% 5px 15px;
  height: 100%;
  text-align: center;
  box-sizing: border-box;
  box-shadow: 5px 5px 0px 0px rgba(0, 0, 0, 0.05);
  position: relative;
}
.consulting-anchor__item-link::before {
  position: absolute;
  bottom: 10px;
  right: 10px;
  content: "";
  display: inline-block;
  width: 15px;
  height: 12px;
  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 15 12"><path d="M14.5303 6.53033C14.8232 6.23744 14.8232 5.76256 14.5303 5.46967L9.75736 0.696699C9.46447 0.403806 8.98959 0.403806 8.6967 0.696699C8.40381 0.989593 8.40381 1.46447 8.6967 1.75736L12.9393 6L8.6967 10.2426C8.40381 10.5355 8.40381 11.0104 8.6967 11.3033C8.98959 11.5962 9.46447 11.5962 9.75736 11.3033L14.5303 6.53033ZM0.5 6.75H14V5.25H0.5V6.75Z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 12"><path d="M14.5303 6.53033C14.8232 6.23744 14.8232 5.76256 14.5303 5.46967L9.75736 0.696699C9.46447 0.403806 8.98959 0.403806 8.6967 0.696699C8.40381 0.989593 8.40381 1.46447 8.6967 1.75736L12.9393 6L8.6967 10.2426C8.40381 10.5355 8.40381 11.0104 8.6967 11.3033C8.98959 11.5962 9.46447 11.5962 9.75736 11.3033L14.5303 6.53033ZM0.5 6.75H14V5.25H0.5V6.75Z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all 0.3s ease;
  width: 13px;
  height: 10px;
  transform: rotate(90deg);
  color: rgb(var(--color-primary-500));
}
.consulting-anchor__item-num {
  position: absolute;
  top: 9px;
  right: 5px;
  font-size: 2rem;
  color: rgb(var(--color-grayscale-100));
  text-shadow: 1px 1px 0 rgb(var(--color-primary-500)), -1px -1px 0 rgb(var(--color-primary-500)), -1px 1px 0 rgb(var(--color-primary-500)), 1px -1px 0 rgb(var(--color-primary-500)), 0px 1px 0 rgb(var(--color-primary-500)), 0 -1px 0 rgb(var(--color-primary-500)), -1px 0 0 rgb(var(--color-primary-500)), 1px 0 0 rgb(var(--color-primary-500));
}
.consulting-anchor__item-img {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 63%;
  max-width: 180px;
}
.consulting-anchor__item-head {
  height: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  line-height: var(--line-height_sm);
  font-size: 1.3rem;
}
.consulting-anchor__item-head.is-small {
  font-size: 1.1rem;
}
@media (min-width: 768px) {
  .consulting-anchor__inner {
    padding-top: 110px;
    padding-bottom: 150px;
  }
  .consulting-anchor__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 -8px;
    gap: 0;
  }
  .consulting-anchor__item {
    width: calc(25% - 16px);
    margin: 0 8px;
    box-sizing: border-box;
    min-height: 240px;
  }
  .consulting-anchor__item:nth-child(n+5) {
    margin-top: 30px;
  }
  .consulting-anchor__item-link {
    padding: 50% 5px 15px;
  }
  .consulting-anchor__item-link::before {
    bottom: 10px;
    right: 5px;
  }
  .consulting-anchor__item-num {
    top: 10px;
    right: 10px;
    font-size: 3rem;
  }
  .consulting-anchor__item-img {
    top: -20px;
    width: 65%;
    max-width: 265px;
  }
  .consulting-anchor__item-head {
    font-size: 1.6rem;
  }
  .consulting-anchor__item-head.is-small {
    font-size: 1.4rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .consulting-anchor__item-link {
    transition: all 0.3s ease;
  }
  .consulting-anchor__item-link:hover {
    background: #faf8f3;
    border-color: rgb(var(--color-primary-300));
  }
}

/* .consulting-contents
================================================ */
.consulting-contents__inner {
  padding-top: 10px;
}
.consulting-contents-sec {
  display: block;
  background: rgb(var(--color-grayscale-100));
  border: solid 3px rgba(var(--color-primary-300), 0.5);
  border-radius: 20px;
  padding: 20px;
  height: 100%;
  box-sizing: border-box;
  box-shadow: 5px 5px 0px 0px rgba(0, 0, 0, 0.05);
  position: relative;
}
.consulting-contents-sec:nth-of-type(even) {
  background: #faf8f3;
}
.consulting-contents-sec:nth-of-type(even) .consulting-contents-sec__num {
  color: #faf8f3;
}
.consulting-contents-sec__wrap {
  display: grid;
  row-gap: 20px;
}
.consulting-contents-sec__num {
  position: absolute;
  top: 15px;
  right: 10px;
  font-size: 5rem;
  color: rgb(var(--color-grayscale-100));
  text-shadow: 1px 1px 0 rgb(var(--color-primary-500)), -1px -1px 0 rgb(var(--color-primary-500)), -1px 1px 0 rgb(var(--color-primary-500)), 1px -1px 0 rgb(var(--color-primary-500)), 0px 1px 0 rgb(var(--color-primary-500)), 0 -1px 0 rgb(var(--color-primary-500)), -1px 0 0 rgb(var(--color-primary-500)), 1px 0 0 rgb(var(--color-primary-500));
}
.consulting-contents-sec__head {
  font-size: 1.9rem;
}
.consulting-contents-sec__img {
  width: 75%;
  margin: -50px auto 0;
  max-width: 200px;
}
@media (min-width: 768px) {
  .consulting-contents__inner {
    padding-top: 0;
  }
  .consulting-contents-sec {
    border-width: 6px;
    border-radius: 20px;
    padding: 50px;
    display: flex;
    align-items: center;
  }
  .consulting-contents-sec:nth-of-type(even) {
    flex-direction: row-reverse;
  }
  .consulting-contents-sec:nth-of-type(even) .consulting-contents-sec__num {
    left: auto;
    right: 40px;
  }
  .consulting-contents-sec:nth-of-type(even) .consulting-contents-sec__img {
    margin: -100px -50px 0 0;
  }
  .consulting-contents-sec__wrap {
    row-gap: 30px;
  }
  .consulting-contents-sec__num {
    top: auto;
    bottom: 40px;
    left: 40px;
    right: auto;
    font-size: 6.5rem;
  }
  .consulting-contents-sec__head {
    font-size: 2.1rem;
  }
  .consulting-contents-sec__img {
    width: 50%;
    margin: -100px 0 0 -50px;
    max-width: 500px;
  }
  .consulting-contents-sec__area-txt {
    width: 55%;
  }
}

/* .consulting-message
================================================ */
.consulting-message__inner {
  padding-top: 60px;
  padding-bottom: 70px;
}
.consulting-message__box {
  padding: 30px 20px;
  border-radius: 15px;
  position: relative;
}
.consulting-message__box::before {
  position: absolute;
  content: "";
  top: 4px;
  right: 4px;
  width: 200px;
  height: 115px;
  background: url(../img/consulting/img_logo01.png) no-repeat;
  background-size: contain;
  z-index: 1;
}
.consulting-message__txt {
  position: relative;
  z-index: 2;
  text-align: center;
  font-size: 2.2rem;
  line-height: var(--line-height_sm);
}
@media (min-width: 768px) {
  .consulting-message__inner {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .consulting-message__box {
    padding: 80px;
  }
  .consulting-message__box::before {
    top: 10px;
    right: 10px;
    width: 425px;
    height: 100%;
  }
  .consulting-message__txt {
    font-size: 3rem;
  }
}

/* .contact-intro
================================================ */
.contact-intro__inner {
  padding-top: 60px;
  padding-bottom: 70px;
}
.contact-intro-tel {
  margin-top: 30px;
  padding: 30px 20px;
  border-radius: 10px;
  background: rgb(var(--color-primary-100));
}
.contact-intro-tel__head {
  font-size: 2.2rem;
  font-weight: 400;
  line-height: var(--line-height_sm);
  margin-bottom: 20px;
}
.contact-intro-tel__btn-link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  height: 65px;
  color: rgb(var(--color-grayscale-100));
  background: rgb(var(--color-primary-500));
  font-size: 2.5rem;
  border-radius: 9999px;
}
.contact-intro-tel__btn-txt {
  position: relative;
  padding-left: 22px;
}
.contact-intro-tel__btn-txt::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  content: "";
  display: inline-block;
  width: 17px;
  height: 22px;
  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 22"><path d="M1.1241 2.21654C-0.823541 5.58813 0.808151 10.7213 2.88131 14.2487C2.88131 14.2487 2.88997 14.2616 2.89429 14.266C2.89429 14.2703 2.90295 14.2789 2.90728 14.2833C4.98909 17.8063 8.69827 21.7146 12.5892 21.6367C13.8227 21.6107 14.5802 21.2342 15.3809 20.5287L16.056 19.8622C16.4326 19.4943 16.4456 18.8927 16.095 18.5032L12.8056 14.8892C12.4464 14.4954 11.8361 14.4607 11.4336 14.8113L10.5767 15.5601C10.3603 15.7462 10.1136 15.8977 9.84522 15.9972C8.65499 16.4214 7.48208 15.5298 5.75517 12.604C5.75517 12.5996 5.74651 12.591 5.74218 12.5867C5.73786 12.5823 5.73353 12.5737 5.7292 12.5694C4.00662 9.64356 3.79021 8.18499 4.73806 7.34967C4.95014 7.15923 5.2055 7.0164 5.47384 6.91685L6.54288 6.52733C7.04494 6.34555 7.30896 5.79588 7.13583 5.28949L5.5604 0.667082C5.39161 0.169351 4.85925 -0.107648 4.35286 0.0438357L3.44396 0.312178C2.43552 0.67141 1.73869 1.15183 1.1241 2.22087V2.21654Z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 17 22"><path d="M1.1241 2.21654C-0.823541 5.58813 0.808151 10.7213 2.88131 14.2487C2.88131 14.2487 2.88997 14.2616 2.89429 14.266C2.89429 14.2703 2.90295 14.2789 2.90728 14.2833C4.98909 17.8063 8.69827 21.7146 12.5892 21.6367C13.8227 21.6107 14.5802 21.2342 15.3809 20.5287L16.056 19.8622C16.4326 19.4943 16.4456 18.8927 16.095 18.5032L12.8056 14.8892C12.4464 14.4954 11.8361 14.4607 11.4336 14.8113L10.5767 15.5601C10.3603 15.7462 10.1136 15.8977 9.84522 15.9972C8.65499 16.4214 7.48208 15.5298 5.75517 12.604C5.75517 12.5996 5.74651 12.591 5.74218 12.5867C5.73786 12.5823 5.73353 12.5737 5.7292 12.5694C4.00662 9.64356 3.79021 8.18499 4.73806 7.34967C4.95014 7.15923 5.2055 7.0164 5.47384 6.91685L6.54288 6.52733C7.04494 6.34555 7.30896 5.79588 7.13583 5.28949L5.5604 0.667082C5.39161 0.169351 4.85925 -0.107648 4.35286 0.0438357L3.44396 0.312178C2.43552 0.67141 1.73869 1.15183 1.1241 2.22087V2.21654Z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all 0.3s ease;
}
.contact-intro-tel__note {
  text-align: center;
}
@media (min-width: 768px) {
  .contact-intro__inner {
    padding-top: 100px;
    padding-bottom: 140px;
  }
  .contact-intro-tel {
    margin-top: 60px;
    border-radius: 15px;
    padding: 50px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    min-height: 226px;
    box-sizing: border-box;
    position: relative;
  }
  .contact-intro-tel::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 126px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgb(var(--color-grayscale-400));
  }
  .contact-intro-tel__head {
    font-size: 2.6rem;
    text-align: center;
    margin: 0;
  }
  .contact-intro-tel__btn-link {
    background: none;
    color: rgb(var(--color-grayscale-900));
    font-size: 3.8rem;
    height: auto;
  }
  .contact-intro-tel__btn-txt {
    padding-left: 35px;
  }
  .contact-intro-tel__btn-txt::before {
    color: rgb(var(--color-primary-700));
    width: 24px;
    height: 32px;
  }
  .contact-intro-tel__note {
    margin-top: 3px;
  }
}

/* .contact-form
================================================ */
.contact-form__inner {
  padding-top: 70px;
  padding-bottom: 70px;
}
.contact-form__form {
  padding: 40px 20px;
  background: rgb(var(--color-surface-100));
  border-radius: 10px;
}
.contact-form-box {
  margin-bottom: 15px;
  background: rgb(var(--color-grayscale-100));
  padding: 20px;
  border-radius: 5px;
}
.contact-form-box__head {
  font-size: 1.7rem;
  font-weight: 500;
  line-height: var(--line-height_sm);
  margin-bottom: 20px;
}
.contact-form-box__label {
  margin: 0;
  margin-right: 5px;
}
.contact-form__btn {
  text-align: center;
}
@media (min-width: 768px) {
  .contact-form__inner {
    padding-top: 140px;
    padding-bottom: 140px;
  }
  .contact-form__form {
    padding: 80px;
  }
  .contact-form-box {
    margin-bottom: 40px;
    padding: 40px 60px;
    display: grid;
    grid-template-columns: 210px 1fr;
    align-items: center;
  }
  .contact-form-box__head {
    margin: 0;
    font-size: 1.8rem;
  }
  .contact-form-box__label {
    position: relative;
    top: auto;
  }
  .contact-form__txt.is-center {
    text-align: center;
  }
}

.mw_wp_form_confirm .contact-form-box,
.is-confirm .contact-form-box {
  display: none;
}

.grecaptcha-badge {
  z-index: 10;
}

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

/* feature-about
------------------------------------- */
.feature-about {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.feature-about__bg {
  position: absolute;
  z-index: -1;
  left: 0;
  display: flex;
  bottom: 0;
  height: 70px;
  overflow: hidden;
}
.feature-about__bg img {
  width: auto;
  height: 100%;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.feature-about__bg img:first-child {
  animation: loopSlide01 100s -50s linear infinite;
}
.feature-about__bg img:last-child {
  animation: loopSlide02 100s linear infinite;
}
.feature-about__inner {
  padding-top: 60px;
  padding-bottom: 60px;
}
.feature-about__img {
  margin-bottom: 30px;
}
.feature-about__img img {
  width: 100%;
  margin: auto;
}
.feature-about__txt {
  display: flex;
  align-items: flex-start;
}
.feature-about__txt-ico {
  padding-top: 25px;
  flex-basis: 38px;
}
.feature-about__txt-in {
  padding-left: 15px;
  flex: 1;
  font-size: 1.8rem;
  line-height: var(--line-height_sm);
}
@media (min-width: 768px) {
  .feature-about__bg {
    height: 250px;
  }
  .feature-about__inner {
    padding-top: 100px;
    padding-bottom: 135px;
  }
  .feature-about__img {
    margin: 0 auto 67px;
    width: 920px;
  }
  .feature-about__txt {
    width: 973px;
    margin: 0 auto;
    align-items: center;
  }
  .feature-about__txt-ico {
    padding-top: 0;
    flex-basis: 95px;
  }
  .feature-about__txt-in {
    padding-left: 32px;
    text-align: center;
    font-size: 2.8rem;
  }
}

/* feature-overview
------------------------------------- */
.feature-overview__inner {
  padding-top: 10px;
}
.feature-overview__head {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.feature-overview__head-num {
  height: 42px;
  margin-right: 15px;
}
.feature-overview__head-num img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.feature-overview__obj02, .feature-overview__obj03, .feature-overview__obj06, .feature-overview__obj08 {
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 111px;
}
@media (min-width: 768px) {
  .feature-overview__inner {
    padding-top: 0;
  }
  .feature-overview__head {
    margin-bottom: 30px;
  }
  .feature-overview__head-num {
    height: 73px;
    margin-right: 20px;
  }
  .feature-overview__obj01, .feature-overview__obj05 {
    position: absolute;
    top: -24px;
    left: auto;
    right: -35px;
    bottom: auto;
    margin: 0;
    width: 154px;
  }
  .feature-overview__obj03, .feature-overview__obj07 {
    position: absolute;
    top: -22px;
    left: -35px;
    right: auto;
    bottom: auto;
    margin: 0;
    width: 154px;
  }
  .feature-overview__obj04, .feature-overview__obj08 {
    position: absolute;
    top: auto;
    left: auto;
    right: -33px;
    bottom: -30px;
    margin: 0;
    width: 154px;
  }
  .feature-overview__obj02, .feature-overview__obj06 {
    position: absolute;
    bottom: -42px;
    left: -31px;
    right: auto;
    margin: 0;
    width: 154px;
  }
}

#home .l-contents {
  position: relative;
}
#home .home-section-card {
  overflow: hidden;
}
#home .home-section-card.is-01 {
  padding-bottom: 100px;
}
#home .home-section-card.is-02 {
  padding-bottom: 100px;
  position: relative;
}
#home .home-section-card.is-02::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 500px;
  bottom: 0;
  left: 0;
  background: rgb(var(--color-grayscale-100));
  z-index: -1;
}
@media (min-width: 768px) {
  #home .home-section-card.is-01 {
    position: relative;
    padding-bottom: 150px;
  }
  #home .home-section-card.is-02 {
    padding-bottom: 150px;
  }
}
@media (min-width: 1921px) {
  #home .home-section-card.is-01::after {
    top: 110px;
  }
}
#home .home-section {
  position: relative;
  z-index: 8;
}

/* .home-about
================================================ */
.home-about__inner {
  padding-top: 60px;
  padding-bottom: 60px;
}
.home-about__sub {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: var(--line-height_sm);
  color: rgb(var(--color-accent-500));
  position: relative;
}
.home-about__sub::before {
  position: absolute;
  content: "";
  width: 7.5px;
  height: 7px;
  bottom: -8px;
  left: 50%;
  background: url(../img/home/ico_arrow01.png) no-repeat 0 100%/cover;
}
.home-about__sub-txt {
  border-top: solid 1px;
  padding: 4px;
  position: relative;
}
.home-about__sub-txt::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, rgb(var(--color-accent-500)) 0%, rgb(var(--color-accent-500)) 48%, transparent 48%, transparent 54%, rgb(var(--color-accent-500)) 54%, rgb(var(--color-accent-500)) 100%);
}
.home-about__txt .is-marker {
  font-size: 1.8rem;
  background: linear-gradient(transparent 50%, rgba(var(--color-primary-400), 0.2) 50%);
}
.home-about__img img {
  width: 100%;
}
@media (max-width: 767px) {
  .home-about {
    position: relative;
    z-index: 2;
  }
  .home-about::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 427px;
    top: 260px;
    left: 0;
    background: url(../img/home/bg_about01_sp.png) no-repeat 0 100%/cover;
    z-index: -1;
    opacity: 0.08;
  }
  .home-about .c-head01 {
    text-align: center;
  }
  .home-about__txt {
    margin-top: 20px;
  }
}
@media (min-width: 768px) {
  .home-about {
    overflow: hidden;
    position: relative;
  }
  .home-about__inner {
    padding-top: 226px;
    padding-bottom: 164px;
    display: grid;
    grid-template-columns: 1fr 640px;
    gap: 30px;
  }
  .home-about__sub {
    font-size: 1.9rem;
    margin-bottom: 10px;
  }
  .home-about__sub-txt::before {
    bottom: -1px;
    background: linear-gradient(to right, rgb(var(--color-accent-500)) 0%, rgb(var(--color-accent-500)) 47%, transparent 47%, transparent 52.5%, rgb(var(--color-accent-500)) 52.5%, rgb(var(--color-accent-500)) 100%);
  }
  .home-about .c-head01 {
    margin-bottom: 15px;
  }
  .home-about__btn {
    margin-top: 30px;
  }
}
@media (min-width: 1541px) {
  .home-about__inner {
    align-items: center;
  }
}
@media (min-width: 1921px) {
  .home-about::before {
    height: 110px;
    background-size: 3840px;
  }
}

/* .home-business
================================================ */
.home-business {
  overflow: hidden;
  padding-top: 60px;
  background: transparent;
  position: relative;
}
.home-business::before, .home-business::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 60px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: url(../img/common/bg_curve_surface100_sp.png) no-repeat top center/cover;
}
.home-business::after {
  top: auto;
  bottom: 100px;
  transform: translateX(-50%) scale(1, -1);
}
.home-business__header {
  margin-bottom: 15px;
}
.home-business__wrap {
  background: rgb(var(--color-surface-100));
  position: relative;
}
.home-business__wrap::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 160px;
  bottom: 0;
  left: 0;
  background: rgb(var(--color-grayscale-100));
}
@media (min-width: 768px) {
  .home-business {
    padding-top: 150px;
  }
  .home-business::before, .home-business::after {
    height: 150px;
    background: url(../img/common/bg_curve_surface100_pc.png) no-repeat top center/cover;
  }
  .home-business::after {
    bottom: 140px;
  }
  .home-business__wrap::before {
    height: 290px;
  }
  .home-business__header {
    margin-bottom: 8px;
  }
}

/* .home-business-slider
================================================ */
.home-business-slider .slick-slide {
  margin: 0 8px;
}
.home-business-slider .slick-slide:nth-child(odd) {
  padding-top: 25px;
}
.home-business-slider .slick-slide:nth-child(even) .home-business-slider__link {
  background: #FAF8F3;
}
.home-business-slider .slick-slide:nth-child(even) .home-business-slider__num {
  color: #FAF8F3;
}
.home-business-slider__item {
  padding-top: 18px;
  padding-bottom: 5px;
}
.home-business-slider__link {
  display: block;
  background: rgb(var(--color-grayscale-100));
  border: solid 3px rgba(var(--color-primary-300), 0.5);
  border-radius: 15px;
  padding: 150px 15px 15px;
  text-align: center;
  min-height: 253px;
  box-sizing: border-box;
  box-shadow: 5px 5px 0px 0px rgba(0, 0, 0, 0.05);
  position: relative;
}
.home-business-slider__link::before {
  position: absolute;
  bottom: 10px;
  right: 10px;
  content: "";
  display: inline-block;
  width: 15px;
  height: 12px;
  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 15 12"><path d="M14.5303 6.53033C14.8232 6.23744 14.8232 5.76256 14.5303 5.46967L9.75736 0.696699C9.46447 0.403806 8.98959 0.403806 8.6967 0.696699C8.40381 0.989593 8.40381 1.46447 8.6967 1.75736L12.9393 6L8.6967 10.2426C8.40381 10.5355 8.40381 11.0104 8.6967 11.3033C8.98959 11.5962 9.46447 11.5962 9.75736 11.3033L14.5303 6.53033ZM0.5 6.75H14V5.25H0.5V6.75Z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 12"><path d="M14.5303 6.53033C14.8232 6.23744 14.8232 5.76256 14.5303 5.46967L9.75736 0.696699C9.46447 0.403806 8.98959 0.403806 8.6967 0.696699C8.40381 0.989593 8.40381 1.46447 8.6967 1.75736L12.9393 6L8.6967 10.2426C8.40381 10.5355 8.40381 11.0104 8.6967 11.3033C8.98959 11.5962 9.46447 11.5962 9.75736 11.3033L14.5303 6.53033ZM0.5 6.75H14V5.25H0.5V6.75Z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all 0.3s ease;
  color: rgb(var(--color-primary-500));
}
.home-business-slider__num {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 3.6rem;
  color: rgb(var(--color-grayscale-100));
  text-shadow: 1px 1px 0 rgb(var(--color-primary-500)), -1px -1px 0 rgb(var(--color-primary-500)), -1px 1px 0 rgb(var(--color-primary-500)), 1px -1px 0 rgb(var(--color-primary-500)), 0px 1px 0 rgb(var(--color-primary-500)), 0 -1px 0 rgb(var(--color-primary-500)), -1px 0 0 rgb(var(--color-primary-500)), 1px 0 0 rgb(var(--color-primary-500));
}
.home-business-slider__img {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 165px;
}
.home-business-slider__head {
  line-height: var(--line-height_sm);
}
.home-business-slider__head.is-small {
  font-size: 1.4rem;
}
.home-business-slider__dots {
  position: relative;
  min-height: 48px;
  margin: 25px auto 0;
  max-width: 328px;
}
@media (min-width: 768px) {
  .home-business-slider .slick-slide {
    width: 400px;
    margin: 0 20px;
  }
  .home-business-slider .slick-slide:nth-child(odd) {
    padding-top: 40px;
  }
  .home-business-slider__item {
    padding-top: 25px;
  }
  .home-business-slider__link {
    padding: 230px 25px 0;
    min-height: 360px;
    border-width: 5px;
  }
  .home-business-slider__link::before {
    right: 22px;
    bottom: 18px;
  }
  .home-business-slider__num {
    top: 21px;
    right: 25px;
    font-size: 5rem;
  }
  .home-business-slider__img {
    width: 240px;
    top: -25px;
  }
  .home-business-slider__head {
    font-size: 2.1rem;
  }
  .home-business-slider__head.is-small {
    font-size: 2rem;
  }
  .home-business-slider__dots {
    margin-top: 35px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .home-business-slider__link {
    transition: all 0.3s ease;
  }
  .home-business-slider__link:hover {
    border-color: rgb(var(--color-primary-300));
  }
}

/* .home-business-needs
================================================ */
.home-business-needs {
  margin-top: 60px;
}
.home-business-needs__header {
  text-align: center;
  margin-bottom: 47px;
}
.home-business-needs__sub {
  width: 274px;
  margin: 0 auto 13px;
  font-size: 1.7rem;
  font-weight: 500;
  color: rgb(var(--color-grayscale-100));
  background: rgb(var(--color-primary-500));
  border-radius: 9999px;
  position: relative;
}
.home-business-needs__sub::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 27px;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  background: rgb(var(--color-primary-500));
}
.home-business-needs__head {
  display: inline-block;
  font-size: 2.6rem;
  line-height: var(--line-height_sm);
  color: rgb(var(--color-grayscale-800));
  position: relative;
}
.home-business-needs__head::before, .home-business-needs__head::after {
  position: absolute;
  content: "";
  width: 56px;
  height: 1px;
  bottom: 28px;
  left: -56px;
  background: rgb(var(--color-grayscale-500));
  transform: rotate(60deg);
}
.home-business-needs__head::after {
  left: auto;
  right: -56px;
  transform: rotate(-60deg);
}
.home-business-needs__head .is-line {
  padding-bottom: 8px;
  background: url(../img/home/ico_line02.png) bottom repeat-x;
  background-size: 100%;
}
@media (min-width: 768px) {
  .home-business-needs {
    margin-top: 120px;
  }
  .home-business-needs__header {
    margin-bottom: 70px;
  }
  .home-business-needs__sub {
    width: 315px;
    font-size: 2rem;
    margin-bottom: 18px;
  }
  .home-business-needs__head {
    font-size: 3.7rem;
  }
  .home-business-needs__head::before {
    left: -70px;
  }
  .home-business-needs__head::after {
    right: -70px;
  }
  .home-business-needs__head .is-line {
    padding-bottom: 15px;
    background: url(../img/home/ico_line01.png) bottom repeat-x;
    background-size: 100%;
  }
}

/* .home-business-ex
================================================ */
.home-business-ex {
  padding: 0 20px;
  display: grid;
  gap: 40px;
  position: relative;
}
.home-business-ex::before {
  position: absolute;
  content: "";
  width: 32px;
  height: 50px;
  bottom: -64px;
  left: 50%;
  transform: translateX(-50%);
  background: url(../img/home/ico_arrow02.png) no-repeat 0 100%/cover;
}
.home-business-ex__item {
  text-align: center;
  padding-bottom: 40px;
  border-bottom: dotted 2px rgb(var(--color-grayscale-500));
  position: relative;
  z-index: 2;
}
.home-business-ex__item::before {
  position: absolute;
  content: "";
  width: 220px;
  height: 220px;
  border-radius: 50%;
  bottom: 21px;
  left: 50%;
  transform: translateX(-50%);
  background: rgb(var(--color-grayscale-100));
  z-index: -1;
}
.home-business-ex__item:first-child .home-business-ex__img {
  width: 270.5px;
}
.home-business-ex__num {
  margin: 0 auto 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 57px;
  height: 28px;
  border-radius: 9999px;
  font-weight: 500;
  line-height: 27px;
  color: rgb(var(--color-grayscale-100));
  background: rgb(var(--color-grayscale-800));
  position: relative;
}
.home-business-ex__num::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 27px;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  background: rgb(var(--color-grayscale-800));
}
.home-business-ex__head {
  font-size: 1.9rem;
  line-height: var(--line-height_sm);
}
.home-business-ex__img {
  width: 255px;
  margin: 10px auto 0;
}
@media (min-width: 768px) {
  .home-business-ex {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-right: dotted 2px rgb(var(--color-grayscale-500));
    padding: 0;
  }
  .home-business-ex::before {
    width: 46px;
    height: 72px;
    bottom: -50px;
    z-index: 3;
  }
  .home-business-ex__item {
    border-bottom: none;
    border-left: dotted 2px rgb(var(--color-grayscale-500));
    padding-bottom: 0;
  }
  .home-business-ex__item::before {
    width: 236px;
    height: 236px;
    bottom: 16px;
  }
  .home-business-ex__item:first-child .home-business-ex__img {
    width: 100%;
    padding: 6px 43px 0 30px;
  }
  .home-business-ex__item:first-child::after {
    position: absolute;
    content: "";
    width: 75px;
    height: 74px;
    bottom: -50px;
    left: 50%;
    background: url(../img/home/ico_arrow03.png) no-repeat 0 100%/cover;
  }
  .home-business-ex__item:nth-child(2) .home-business-ex__img {
    padding: 0 40px 0 53px;
  }
  .home-business-ex__item:last-child .home-business-ex__img {
    padding: 16px 40px 0 60px;
  }
  .home-business-ex__item:last-child::after {
    position: absolute;
    content: "";
    width: 75px;
    height: 74px;
    bottom: -50px;
    right: 50%;
    background: url(../img/home/ico_arrow03.png) no-repeat 0 100%/cover;
    transform: scale(-1, 1);
  }
  .home-business-ex__num {
    font-size: 1.7rem;
    width: 59px;
    height: 30px;
    margin-bottom: 25px;
    line-height: 28px;
  }
  .home-business-ex__img {
    width: 100%;
    box-sizing: border-box;
    margin-top: 0;
  }
}
@media (min-width: 1541px) {
  .home-business-ex::before {
    bottom: -40px;
  }
  .home-business-ex__head {
    font-size: 2.1rem;
  }
  .home-business-ex__item {
    padding-bottom: 20px;
  }
  .home-business-ex__item::before {
    width: 300px;
    height: 300px;
  }
  .home-business-ex__item:first-child .home-business-ex__img {
    padding: 6px 55px 0 37px;
  }
  .home-business-ex__item:first-child::after {
    bottom: -40px;
  }
  .home-business-ex__item:nth-child(2) .home-business-ex__img {
    padding: 0 50px 0 68px;
  }
  .home-business-ex__item:last-child .home-business-ex__img {
    padding: 22px 50px 0 79px;
  }
  .home-business-ex__item:last-child::after {
    bottom: -40px;
  }
}

/* .home-business-onestop
================================================ */
.home-business-onestop {
  overflow: hidden;
  background: rgb(var(--color-primary-200));
  padding: 20px;
  margin-top: 80px;
  position: relative;
  z-index: 2;
}
.home-business-onestop::before {
  position: absolute;
  content: "";
  width: 178px;
  height: 102px;
  top: 10px;
  right: 2px;
  background: url(../img/home/ico_onestop02.png) no-repeat 0 100%/cover;
  z-index: -1;
}
.home-business-onestop__header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}
.home-business-onestop__ico {
  width: 38px;
}
.home-business-onestop__head {
  width: calc(100% - 38px);
  font-size: 1.8rem;
  line-height: var(--line-height_sm);
}
@media (min-width: 768px) {
  .home-business-onestop {
    margin-top: 84px;
    border-radius: 15px;
    padding: 35px 60px 60px;
  }
  .home-business-onestop::before {
    width: 468px;
    height: 267px;
    top: 32px;
    right: 8px;
    z-index: -1;
  }
  .home-business-onestop__header {
    gap: 32px;
    justify-content: center;
    margin-bottom: 20px;
  }
  .home-business-onestop__ico {
    width: 70px;
  }
  .home-business-onestop__head {
    width: auto;
    font-size: 2.7rem;
  }
  .home-business-onestop__list {
    width: 940px;
    margin: -8px auto;
  }
}

/* .home-feature
================================================ */
.home-feature {
  background: rgb(var(--color-grayscale-100));
  padding-bottom: 140px;
  position: relative;
}
.home-feature__inner {
  padding-top: 60px;
}
@media (max-width: 767px) {
  .home-feature .c-head01 {
    text-align: center;
  }
  .home-feature__btn {
    position: absolute;
    bottom: 60px;
    right: 20px;
  }
}
@media (min-width: 768px) {
  .home-feature {
    padding-bottom: 160px;
  }
  .home-feature__inner {
    padding-top: 90px;
    display: grid;
    grid-template-columns: 1fr 550px;
    gap: 70px;
  }
}
@media (min-width: 1541px) {
  .home-feature {
    padding-bottom: 188px;
  }
  .home-feature__inner {
    padding-top: 143px;
    grid-template-columns: 1fr 693px;
    gap: 100px;
  }
}

/* .home-feature-tab
================================================ */
@media (min-width: 768px) {
  .home-feature-tab {
    margin-top: -25px;
  }
  .home-feature-tab__item {
    font-size: 2.2rem;
    line-height: var(--line-height_sm);
    padding: 25px 0 16px 46px;
    position: relative;
    color: rgb(var(--color-grayscale-500));
    border-bottom: solid 1px rgb(var(--color-grayscale-300));
    transition: all 0.3s ease;
  }
  .home-feature-tab__item .is-en {
    font-size: 2.4rem;
    position: absolute;
    top: 35px;
    left: 0;
    transition: all 0.3s ease;
  }
  .home-feature-tab__item.is-active {
    color: rgb(var(--color-grayscale-800));
    font-weight: 500;
    border-color: rgb(var(--color-primary-700));
  }
  .home-feature-tab__item.is-active .is-en {
    color: rgb(var(--color-primary-700));
  }
  .home-feature-tab__item.is-active::before, .home-feature-tab__item.is-active::after {
    position: absolute;
    content: "";
    top: 50%;
    transform: translateY(-50%);
    left: -42px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(var(--color-primary-700), 0.3);
    margin-top: 6px;
  }
  .home-feature-tab__item.is-active::after {
    left: -36px;
    width: 10px;
    height: 10px;
    background: rgb(var(--color-primary-700));
  }
}
@media (min-width: 1541px) {
  .home-feature-tab__item {
    font-size: 2.5rem;
  }
  .home-feature-tab__item.is-active::before, .home-feature-tab__item.is-active::after {
    margin-top: 4px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .home-feature-tab__item:hover {
    color: rgb(var(--color-grayscale-800));
    font-weight: 500;
    border-color: rgb(var(--color-primary-700));
  }
  .home-feature-tab__item:hover .is-en {
    color: rgb(var(--color-primary-700));
  }
}

/* .home-feature-slider
================================================ */
.home-feature-slider .slick-slide {
  margin: 0 15px;
}
.home-feature-slider__item.is-01 .home-feature-slider__img-ico {
  width: 109px;
}
.home-feature-slider__item.is-02 .home-feature-slider__img-ico {
  width: 94px;
}
.home-feature-slider__img {
  position: relative;
  padding-bottom: 30px;
}
.home-feature-slider__img img {
  border-radius: 5px;
}
.home-feature-slider__head {
  padding-left: 38px;
  font-size: 1.7rem;
  line-height: var(--line-height_sm);
  position: relative;
}
.home-feature-slider__head-en {
  font-size: 2.1rem;
  position: absolute;
  top: 4px;
  left: 0;
  color: rgb(var(--color-primary-700));
}
.home-feature-slider__txt {
  font-size: 1.2rem;
  margin-top: 5px;
}
.home-feature-slider__dots {
  position: relative;
  width: 223px;
  min-height: 48px;
  margin: 25px auto 0;
}
@media (max-width: 767px) {
  .home-feature-slider__img-ico {
    position: absolute;
    width: 104px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (min-width: 768px) {
  .home-feature-slider__item.is-01 .home-feature-slider__img-ico.is-first {
    bottom: 0;
    left: -30px;
    width: 180px;
  }
  .home-feature-slider__item.is-01 .home-feature-slider__img-ico.is-second {
    top: -33px;
    right: -67px;
    width: 200px;
  }
  .home-feature-slider__item.is-02 .home-feature-slider__img-ico.is-first {
    top: -53px;
    left: -10px;
    width: 126px;
  }
  .home-feature-slider__item.is-02 .home-feature-slider__img-ico.is-second {
    bottom: 0;
    right: -74px;
    width: 146px;
  }
  .home-feature-slider__item.is-03 .home-feature-slider__img-ico.is-first {
    bottom: 0;
    left: -44px;
    width: 180px;
  }
  .home-feature-slider__item.is-03 .home-feature-slider__img-ico.is-second {
    top: 31px;
    right: -58px;
    width: 180px;
  }
  .home-feature-slider__item.is-04 .home-feature-slider__img-ico.is-first {
    bottom: -27px;
    right: -68px;
    width: 201px;
  }
  .home-feature-slider__item.is-04 .home-feature-slider__img-ico.is-second {
    top: -38px;
    left: -26px;
    width: 180px;
  }
  .home-feature-slider__img {
    padding-bottom: 33px;
  }
  .home-feature-slider__img img {
    border-radius: 15px;
  }
  .home-feature-slider__img-ico {
    position: absolute;
    width: 104px;
  }
  .home-feature-slider__head {
    font-size: 3.1rem;
    padding-left: 55px;
  }
  .home-feature-slider__head-en {
    font-size: 2.8rem;
    top: 14px;
  }
  .home-feature-slider__txt {
    font-size: 1.6rem;
    margin-top: 15px;
  }
}

/* .home-case
================================================ */
.home-case {
  overflow: hidden;
  padding-top: 60px;
  padding-bottom: 60px;
  background: transparent;
  position: relative;
  z-index: 3;
}
.home-case::before, .home-case::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 60px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: url(../img/common/bg_curve_primary100_sp.png) no-repeat top center/cover;
}
.home-case::after {
  top: auto;
  bottom: 0;
  transform: translateX(-50%) scale(1, -1);
}
.home-case__wrap {
  background: rgb(var(--color-primary-100));
}
@media (min-width: 768px) {
  .home-case {
    padding-top: 150px;
    padding-bottom: 150px;
  }
  .home-case::before, .home-case::after {
    height: 150px;
    background: url(../img/common/bg_curve_primary100_pc.png) no-repeat top center/cover;
  }
  .home-case__btn {
    text-align: center;
  }
}

/* .home-case-tab
================================================ */
.home-case-tab {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  position: relative;
}
.home-case-tab::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background: rgb(var(--color-primary-500));
}
.home-case-tab__item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  height: 70px;
  color: rgb(var(--color-grayscale-500));
  background: rgb(var(--color-grayscale-100));
  border-radius: 5px 5px 0 0;
}
.home-case-tab__item.is-active {
  color: rgb(var(--color-grayscale-100));
  background: rgb(var(--color-primary-500));
}
.home-case-tab__item.is-active .home-case-tab__ico {
  color: rgb(var(--color-primary-700));
}
.home-case-tab__txt {
  font-size: 1.4rem;
  line-height: var(--line-height_xs);
}
.home-case-tab__ico {
  display: block;
  margin: 0 auto 3px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgb(var(--color-primary-100));
  position: relative;
}
.home-case-tab__ico::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  display: inline-block;
  width: 21px;
  height: 21px;
  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 21 21"><path fill-rule="evenodd" clip-rule="evenodd" d="M10.6545 2.35051C10.5586 2.29657 10.4415 2.29657 10.3456 2.35051L2.47063 6.78003C2.37144 6.83582 2.31006 6.94077 2.31006 7.05458V18.3751C2.31006 18.549 2.45109 18.6901 2.62506 18.6901L4.72506 18.6901H15.7501L18.3751 18.6901C18.549 18.6901 18.6901 18.549 18.6901 18.3751V7.05458C18.6901 6.94077 18.6287 6.83582 18.5295 6.78003L10.6545 2.35051ZM16.0651 18.0601H18.0601V7.23881L10.5001 2.98647L2.94006 7.23881V18.0601H4.41006V9.45006C4.41006 9.27609 4.55109 9.13506 4.72506 9.13506H10.2374H15.7501C15.924 9.13506 16.0651 9.27609 16.0651 9.45006V18.0601ZM5.04006 18.0601V9.76506H10.2374H15.4351V18.0601H5.04006ZM6.51006 12.0751C6.51006 11.9011 6.65109 11.7601 6.82506 11.7601H10.5001H14.1751C14.349 11.7601 14.4901 11.9011 14.4901 12.0751C14.4901 12.249 14.349 12.3901 14.1751 12.3901H10.5001H6.82506C6.65109 12.3901 6.51006 12.249 6.51006 12.0751ZM9.97506 7.03506C9.80109 7.03506 9.66006 7.17609 9.66006 7.35006C9.66006 7.52403 9.80109 7.66506 9.97506 7.66506H10.5001H11.0251C11.199 7.66506 11.3401 7.52403 11.3401 7.35006C11.3401 7.17609 11.199 7.03506 11.0251 7.03506H10.5001H9.97506ZM6.51006 14.1751C6.51006 14.0011 6.65109 13.8601 6.82506 13.8601H10.5001H14.1751C14.349 13.8601 14.4901 14.0011 14.4901 14.1751C14.4901 14.349 14.349 14.4901 14.1751 14.4901H10.5001H6.82506C6.65109 14.4901 6.51006 14.349 6.51006 14.1751ZM6.82506 15.9601C6.65109 15.9601 6.51006 16.1011 6.51006 16.2751C6.51006 16.449 6.65109 16.5901 6.82506 16.5901H10.5001H14.1751C14.349 16.5901 14.4901 16.449 14.4901 16.2751C14.4901 16.1011 14.349 15.9601 14.1751 15.9601H10.5001H6.82506Z" /></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21 21"><path fill-rule="evenodd" clip-rule="evenodd" d="M10.6545 2.35051C10.5586 2.29657 10.4415 2.29657 10.3456 2.35051L2.47063 6.78003C2.37144 6.83582 2.31006 6.94077 2.31006 7.05458V18.3751C2.31006 18.549 2.45109 18.6901 2.62506 18.6901L4.72506 18.6901H15.7501L18.3751 18.6901C18.549 18.6901 18.6901 18.549 18.6901 18.3751V7.05458C18.6901 6.94077 18.6287 6.83582 18.5295 6.78003L10.6545 2.35051ZM16.0651 18.0601H18.0601V7.23881L10.5001 2.98647L2.94006 7.23881V18.0601H4.41006V9.45006C4.41006 9.27609 4.55109 9.13506 4.72506 9.13506H10.2374H15.7501C15.924 9.13506 16.0651 9.27609 16.0651 9.45006V18.0601ZM5.04006 18.0601V9.76506H10.2374H15.4351V18.0601H5.04006ZM6.51006 12.0751C6.51006 11.9011 6.65109 11.7601 6.82506 11.7601H10.5001H14.1751C14.349 11.7601 14.4901 11.9011 14.4901 12.0751C14.4901 12.249 14.349 12.3901 14.1751 12.3901H10.5001H6.82506C6.65109 12.3901 6.51006 12.249 6.51006 12.0751ZM9.97506 7.03506C9.80109 7.03506 9.66006 7.17609 9.66006 7.35006C9.66006 7.52403 9.80109 7.66506 9.97506 7.66506H10.5001H11.0251C11.199 7.66506 11.3401 7.52403 11.3401 7.35006C11.3401 7.17609 11.199 7.03506 11.0251 7.03506H10.5001H9.97506ZM6.51006 14.1751C6.51006 14.0011 6.65109 13.8601 6.82506 13.8601H10.5001H14.1751C14.349 13.8601 14.4901 14.0011 14.4901 14.1751C14.4901 14.349 14.349 14.4901 14.1751 14.4901H10.5001H6.82506C6.65109 14.4901 6.51006 14.349 6.51006 14.1751ZM6.82506 15.9601C6.65109 15.9601 6.51006 16.1011 6.51006 16.2751C6.51006 16.449 6.65109 16.5901 6.82506 16.5901H10.5001H14.1751C14.349 16.5901 14.4901 16.449 14.4901 16.2751C14.4901 16.1011 14.349 15.9601 14.1751 15.9601H10.5001H6.82506Z" /></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all 0.3s ease;
}
.home-case-tab__ico.is-frozen::before {
  content: "";
  display: inline-block;
  width: 17px;
  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 17 19"><path fill-rule="evenodd" clip-rule="evenodd" d="M5.26978 2.33397C5.43008 2.18702 5.67915 2.19785 5.8261 2.35815L8.23705 4.98829L10.648 2.35815C10.795 2.19785 11.044 2.18702 11.2043 2.33397C11.3646 2.48091 11.3755 2.72998 11.2285 2.89029L8.52731 5.83706C8.45273 5.91842 8.34742 5.96474 8.23705 5.96474C8.12668 5.96474 8.02138 5.91842 7.9468 5.83706L5.24559 2.89029C5.09864 2.72998 5.10947 2.48091 5.26978 2.33397Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M8.23705 13.0356C8.34742 13.0356 8.45273 13.082 8.52731 13.1633L11.2285 16.1101C11.3755 16.2704 11.3646 16.5195 11.2043 16.6664C11.044 16.8134 10.795 16.8025 10.648 16.6422L8.23705 14.0121L5.8261 16.6422C5.67915 16.8025 5.43008 16.8134 5.26978 16.6664C5.10947 16.5195 5.09864 16.2704 5.24559 16.1101L7.9468 13.1633C8.02138 13.082 8.12668 13.0356 8.23705 13.0356Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M13.1208 3.72076C13.3291 3.78315 13.4474 4.0026 13.385 4.21092L12.4188 7.43712L15.4473 8.13441C15.6593 8.1832 15.7915 8.39454 15.7427 8.60646C15.6939 8.81838 15.4826 8.95062 15.2707 8.90183L11.8327 8.11028C11.7267 8.08586 11.6354 8.01862 11.5807 7.92452C11.526 7.83043 11.5127 7.71788 11.5439 7.6136L12.6307 3.98499C12.693 3.77667 12.9125 3.65837 13.1208 3.72076Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M0.732294 10.8851C0.781086 10.6732 0.992433 10.5409 1.20435 10.5897L4.64225 11.3813C4.74833 11.4057 4.83956 11.4729 4.89428 11.567C4.949 11.6611 4.96233 11.7737 4.9311 11.8779L3.84435 15.5066C3.78196 15.7149 3.56251 15.8332 3.35419 15.7708C3.14587 15.7084 3.02757 15.4889 3.08996 15.2806L4.05619 12.0544L1.02766 11.3571C0.815742 11.3083 0.683502 11.097 0.732294 10.8851Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M15.7427 10.8851C15.7915 11.097 15.6593 11.3083 15.4473 11.3571L12.4188 12.0544L13.385 15.2806C13.4474 15.4889 13.3291 15.7084 13.1208 15.7708C12.9125 15.8332 12.693 15.7149 12.6307 15.5066L11.5439 11.8779C11.5127 11.7737 11.526 11.6611 11.5807 11.567C11.6354 11.4729 11.7267 11.4057 11.8327 11.3813L15.2707 10.5897C15.4826 10.5409 15.6939 10.6732 15.7427 10.8851Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M3.35419 3.72076C3.56251 3.65837 3.78196 3.77667 3.84435 3.98499L4.9311 7.6136C4.96233 7.71788 4.949 7.83043 4.89428 7.92452C4.83956 8.01862 4.74833 8.08586 4.64225 8.11028L1.20435 8.90183C0.992433 8.95062 0.781086 8.81838 0.732294 8.60646C0.683502 8.39454 0.815742 8.1832 1.02766 8.13441L4.05619 7.43712L3.08996 4.21092C3.02757 4.0026 3.14587 3.78315 3.35419 3.72076Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M7.95888 6.86534C8.11265 6.71157 8.36196 6.71157 8.51573 6.86534L10.9219 9.27151C11.0757 9.42528 11.0757 9.67459 10.9219 9.82836L8.51573 12.2345C8.36196 12.3883 8.11265 12.3883 7.95888 12.2345L5.55271 9.82836C5.39894 9.67459 5.39894 9.42528 5.55271 9.27151L7.95888 6.86534ZM8.2373 7.70061L6.38798 9.54993L8.2373 11.3993L10.0866 9.54993L8.2373 7.70061Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M8.48262 0.266113C8.70008 0.266113 8.87637 0.442401 8.87637 0.659863V7.04454C8.87637 7.262 8.70008 7.43829 8.48262 7.43829C8.26516 7.43829 8.08887 7.262 8.08887 7.04454V0.659863C8.08887 0.442401 8.26516 0.266113 8.48262 0.266113Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M8.48262 11.562C8.70008 11.562 8.87637 11.7383 8.87637 11.9558V18.3404C8.87637 18.5579 8.70008 18.7342 8.48262 18.7342C8.26516 18.7342 8.08887 18.5579 8.08887 18.3404V11.9558C8.08887 11.7383 8.26516 11.562 8.48262 11.562Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M6.85843 10.2843C6.968 10.4721 6.90456 10.7132 6.71672 10.8228L0.82317 14.2607C0.635331 14.3703 0.394231 14.3068 0.284658 14.119C0.175085 13.9311 0.238533 13.69 0.426372 13.5805L6.31992 10.1426C6.50776 10.033 6.74886 10.0964 6.85843 10.2843Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M16.19 4.88145C16.2995 5.06929 16.2361 5.31039 16.0483 5.41996L10.1547 8.85786C9.96687 8.96744 9.72577 8.90399 9.6162 8.71615C9.50663 8.52831 9.57008 8.28721 9.75791 8.17764L15.6515 4.73974C15.8393 4.63016 16.0804 4.69361 16.19 4.88145Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M9.6162 10.2843C9.72577 10.0964 9.96687 10.033 10.1547 10.1426L16.0483 13.5805C16.2361 13.69 16.2995 13.9311 16.19 14.119C16.0804 14.3068 15.8393 14.3703 15.6515 14.2607L9.75791 10.8228C9.57008 10.7132 9.50663 10.4721 9.6162 10.2843Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M0.284658 4.88145C0.394231 4.69361 0.635331 4.63016 0.82317 4.73974L6.71672 8.17764C6.90456 8.28721 6.968 8.52831 6.85843 8.71615C6.74886 8.90399 6.50776 8.96744 6.31992 8.85786L0.426372 5.41996C0.238533 5.31039 0.175085 5.06929 0.284658 4.88145Z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 17 19"><path fill-rule="evenodd" clip-rule="evenodd" d="M5.26978 2.33397C5.43008 2.18702 5.67915 2.19785 5.8261 2.35815L8.23705 4.98829L10.648 2.35815C10.795 2.19785 11.044 2.18702 11.2043 2.33397C11.3646 2.48091 11.3755 2.72998 11.2285 2.89029L8.52731 5.83706C8.45273 5.91842 8.34742 5.96474 8.23705 5.96474C8.12668 5.96474 8.02138 5.91842 7.9468 5.83706L5.24559 2.89029C5.09864 2.72998 5.10947 2.48091 5.26978 2.33397Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M8.23705 13.0356C8.34742 13.0356 8.45273 13.082 8.52731 13.1633L11.2285 16.1101C11.3755 16.2704 11.3646 16.5195 11.2043 16.6664C11.044 16.8134 10.795 16.8025 10.648 16.6422L8.23705 14.0121L5.8261 16.6422C5.67915 16.8025 5.43008 16.8134 5.26978 16.6664C5.10947 16.5195 5.09864 16.2704 5.24559 16.1101L7.9468 13.1633C8.02138 13.082 8.12668 13.0356 8.23705 13.0356Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M13.1208 3.72076C13.3291 3.78315 13.4474 4.0026 13.385 4.21092L12.4188 7.43712L15.4473 8.13441C15.6593 8.1832 15.7915 8.39454 15.7427 8.60646C15.6939 8.81838 15.4826 8.95062 15.2707 8.90183L11.8327 8.11028C11.7267 8.08586 11.6354 8.01862 11.5807 7.92452C11.526 7.83043 11.5127 7.71788 11.5439 7.6136L12.6307 3.98499C12.693 3.77667 12.9125 3.65837 13.1208 3.72076Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M0.732294 10.8851C0.781086 10.6732 0.992433 10.5409 1.20435 10.5897L4.64225 11.3813C4.74833 11.4057 4.83956 11.4729 4.89428 11.567C4.949 11.6611 4.96233 11.7737 4.9311 11.8779L3.84435 15.5066C3.78196 15.7149 3.56251 15.8332 3.35419 15.7708C3.14587 15.7084 3.02757 15.4889 3.08996 15.2806L4.05619 12.0544L1.02766 11.3571C0.815742 11.3083 0.683502 11.097 0.732294 10.8851Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M15.7427 10.8851C15.7915 11.097 15.6593 11.3083 15.4473 11.3571L12.4188 12.0544L13.385 15.2806C13.4474 15.4889 13.3291 15.7084 13.1208 15.7708C12.9125 15.8332 12.693 15.7149 12.6307 15.5066L11.5439 11.8779C11.5127 11.7737 11.526 11.6611 11.5807 11.567C11.6354 11.4729 11.7267 11.4057 11.8327 11.3813L15.2707 10.5897C15.4826 10.5409 15.6939 10.6732 15.7427 10.8851Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M3.35419 3.72076C3.56251 3.65837 3.78196 3.77667 3.84435 3.98499L4.9311 7.6136C4.96233 7.71788 4.949 7.83043 4.89428 7.92452C4.83956 8.01862 4.74833 8.08586 4.64225 8.11028L1.20435 8.90183C0.992433 8.95062 0.781086 8.81838 0.732294 8.60646C0.683502 8.39454 0.815742 8.1832 1.02766 8.13441L4.05619 7.43712L3.08996 4.21092C3.02757 4.0026 3.14587 3.78315 3.35419 3.72076Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M7.95888 6.86534C8.11265 6.71157 8.36196 6.71157 8.51573 6.86534L10.9219 9.27151C11.0757 9.42528 11.0757 9.67459 10.9219 9.82836L8.51573 12.2345C8.36196 12.3883 8.11265 12.3883 7.95888 12.2345L5.55271 9.82836C5.39894 9.67459 5.39894 9.42528 5.55271 9.27151L7.95888 6.86534ZM8.2373 7.70061L6.38798 9.54993L8.2373 11.3993L10.0866 9.54993L8.2373 7.70061Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M8.48262 0.266113C8.70008 0.266113 8.87637 0.442401 8.87637 0.659863V7.04454C8.87637 7.262 8.70008 7.43829 8.48262 7.43829C8.26516 7.43829 8.08887 7.262 8.08887 7.04454V0.659863C8.08887 0.442401 8.26516 0.266113 8.48262 0.266113Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M8.48262 11.562C8.70008 11.562 8.87637 11.7383 8.87637 11.9558V18.3404C8.87637 18.5579 8.70008 18.7342 8.48262 18.7342C8.26516 18.7342 8.08887 18.5579 8.08887 18.3404V11.9558C8.08887 11.7383 8.26516 11.562 8.48262 11.562Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M6.85843 10.2843C6.968 10.4721 6.90456 10.7132 6.71672 10.8228L0.82317 14.2607C0.635331 14.3703 0.394231 14.3068 0.284658 14.119C0.175085 13.9311 0.238533 13.69 0.426372 13.5805L6.31992 10.1426C6.50776 10.033 6.74886 10.0964 6.85843 10.2843Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M16.19 4.88145C16.2995 5.06929 16.2361 5.31039 16.0483 5.41996L10.1547 8.85786C9.96687 8.96744 9.72577 8.90399 9.6162 8.71615C9.50663 8.52831 9.57008 8.28721 9.75791 8.17764L15.6515 4.73974C15.8393 4.63016 16.0804 4.69361 16.19 4.88145Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M9.6162 10.2843C9.72577 10.0964 9.96687 10.033 10.1547 10.1426L16.0483 13.5805C16.2361 13.69 16.2995 13.9311 16.19 14.119C16.0804 14.3068 15.8393 14.3703 15.6515 14.2607L9.75791 10.8228C9.57008 10.7132 9.50663 10.4721 9.6162 10.2843Z"/><path fill-rule="evenodd" clip-rule="evenodd" d="M0.284658 4.88145C0.394231 4.69361 0.635331 4.63016 0.82317 4.73974L6.71672 8.17764C6.90456 8.28721 6.968 8.52831 6.85843 8.71615C6.74886 8.90399 6.50776 8.96744 6.31992 8.85786L0.426372 5.41996C0.238533 5.31039 0.175085 5.06929 0.284658 4.88145Z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all 0.3s ease;
}
.home-case-tab__btn-pin {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 25px;
  height: 31px;
  font-size: 1.1rem;
  padding-top: 7px;
  box-sizing: border-box;
  background: url(../img/home/ico_pin02.png) no-repeat 0 100%/cover;
}
.home-case-tab__img img {
  width: 100%;
}
@media (max-width: 767px) {
  .home-case-tab__area-img {
    padding-top: 10px;
  }
  .home-case-tab__area-btn {
    margin-top: 10px;
    display: grid;
    gap: 5px;
    padding: 12px 10px;
    border-radius: 5px;
    background: rgb(var(--color-primary-200));
  }
  .home-case-tab__btn-link {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    min-height: 51px;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: var(--line-height_sm);
    border-radius: 9999px;
    background: rgb(var(--color-grayscale-100));
    border: solid 1px rgb(var(--color-grayscale-400));
    padding: 10px 10px 10px 40px;
    box-sizing: border-box;
    position: relative;
  }
}
@media (min-width: 768px) {
  .home-case-tab {
    gap: 5px;
  }
  .home-case-tab::before {
    height: 3px;
  }
  .home-case-tab__item {
    height: 90px;
  }
  .home-case-tab__txt {
    font-size: 2.8rem;
    display: flex;
    align-items: center;
    gap: 15px;
  }
  .home-case-tab__ico {
    width: 50px;
    height: 50px;
    margin: 0;
  }
  .home-case-tab__ico::before {
    width: 32px;
    height: 32px;
  }
  .home-case-tab__ico.is-frozen::before {
    width: 24px;
    height: 28px;
  }
  .home-case-tab__area-img {
    position: relative;
  }
  .home-case-tab__btn {
    position: absolute;
  }
  .home-case-tab__btn.is-01 {
    top: 67%;
    left: 3.5%;
  }
  .home-case-tab__btn.is-02 {
    top: 45.7%;
    left: 37%;
  }
  .home-case-tab__btn.is-03 {
    top: 58.4%;
    left: 84%;
  }
  .home-case-tab__btn.is-04 {
    top: 40%;
    left: 18%;
  }
  .home-case-tab__btn.is-05 {
    top: 10%;
    left: 40%;
  }
  .home-case-tab__btn.is-06 {
    top: 44%;
    left: 55%;
  }
  .home-case-tab__btn-link {
    display: block;
    position: relative;
    width: 59px;
    height: 72px;
  }
  .home-case-tab__btn-pin {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    width: 100%;
    height: 100%;
    font-size: 2.8rem;
    padding-top: 12px;
    box-sizing: border-box;
    padding-right: 3px;
    background: url(../img/home/ico_pin03.png) no-repeat 0 100%/cover;
  }
}
@media (hover: hover) and (pointer: fine) {
  .home-case-tab__item {
    transition: all 0.3s ease;
  }
  .home-case-tab__item:hover {
    color: rgb(var(--color-grayscale-100));
    background: rgb(var(--color-primary-500));
  }
  .home-case-tab__item:hover .home-case-tab__ico {
    color: rgb(var(--color-primary-700));
  }
  .home-case-tab__btn-pin {
    transition: all 0.3s ease;
  }
  .home-case-tab__btn-pin:hover {
    color: rgb(var(--color-primary-500));
    background: url(../img/home/ico_pin03_hover.png) no-repeat 0 100%/cover;
  }
}

/* .home-case-modal
================================================ */
.home-case-modal__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 1.9rem;
  line-height: var(--line-height_sm);
  padding-left: 36px;
  margin-bottom: 15px;
  min-height: 36px;
  box-sizing: border-box;
  position: relative;
}
.home-case-modal__head-pin {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 29px;
  height: 36px;
  font-size: 1.7rem;
  padding-top: 7px;
  box-sizing: border-box;
  background: url(../img/home/ico_pin01.png) no-repeat 0 100%/cover;
}
.home-case-modal__img {
  text-align: center;
}
.home-case-modal__img img {
  border-radius: 5px;
}
@media (min-width: 768px) {
  .home-case-modal__head {
    font-size: 3.1rem;
    min-height: 67px;
    padding-left: 76px;
    margin-bottom: 30px;
  }
  .home-case-modal__head-pin {
    width: 54px;
    height: 67px;
    font-size: 2.8rem;
    padding-top: 12px;
  }
}

/* .home-message
================================================ */
.home-message {
  margin-top: -60px;
  background: rgb(var(--color-grayscale-100));
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.home-message__slider {
  animation: scroll-left 100s infinite linear 0.5s both;
  display: flex;
}
.home-message__slider-wrap {
  display: flex;
  overflow: hidden;
  transition: all 1s var(--mh--easing);
  transition-delay: 0.3s;
}
.home-message__slider-img {
  width: 225px;
  margin: 0 2px;
}
.home-message__slider-img img {
  display: block;
  width: 100%;
}
.home-message__inner {
  padding-top: 40px;
  padding-bottom: 52px;
}
.home-message__in {
  position: relative;
  padding-bottom: 125px;
}
.home-message__btn {
  margin-top: 0;
}
.home-message__slider-txt {
  position: absolute;
  z-index: -1;
  bottom: 80px;
  left: 0;
  display: flex;
  overflow: hidden;
  height: 50px;
}
.home-message__slider-txt img {
  width: auto;
  height: 100%;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.home-message__slider-txt img:first-child {
  animation: loopSlide01 100s -50s linear infinite;
}
.home-message__slider-txt img:last-child {
  animation: loopSlide02 100s linear infinite;
}
@media (max-width: 767px) {
  .home-message__btn + .home-message__btn {
    margin-top: 25px;
  }
  .home-message__btn-set {
    position: absolute;
    bottom: 0;
    right: 0;
  }
}
@media (min-width: 768px) {
  .home-message__slider {
    animation: scroll-left 200s infinite linear 0.5s both;
  }
  .home-message__slider-img {
    width: 620px;
  }
  .home-message__inner {
    padding-top: 80px;
    padding-bottom: 180px;
  }
  .home-message__in {
    display: grid;
    grid-template-columns: 1fr 630px;
    padding-bottom: 0;
    max-width: 1260px;
    margin: 0 auto;
  }
  .home-message__btn-set {
    display: flex;
    gap: 50px;
  }
  .home-message__slider-txt {
    height: 155px;
    bottom: 0;
  }
}
@media (min-width: 2000px) {
  .home-message {
    margin-top: -150px;
  }
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loopSlide01 {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loopSlide02 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
/* .home-topics
================================================ */
.home-topics {
  background: rgb(var(--color-grayscale-100));
}
.home-topics__inner {
  position: relative;
}
.home-topics__inner::before {
  position: absolute;
  content: "";
  width: 179px;
  height: 124px;
  top: 0;
  right: 40px;
  background: url(../img/home/ico_topics01.png) no-repeat 0 100%/cover;
  z-index: 2;
}
@media (max-width: 767px) {
  .home-topics__inner {
    padding-top: 18px;
    padding-bottom: 68px;
  }
  .home-topics__in {
    padding: 30px 20px;
    background: rgb(var(--color-primary-100));
  }
}
@media (min-width: 768px) {
  .home-topics {
    margin-top: -20px;
    padding-bottom: 130px;
  }
  .home-topics__wrap {
    position: relative;
    z-index: 2;
  }
  .home-topics__wrap::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: rgb(var(--color-primary-100));
    z-index: -1;
  }
  .home-topics__inner {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .home-topics__inner::before {
    width: 287px;
    height: 198px;
    top: -120px;
    right: 40px;
  }
  .home-topics__in {
    display: grid;
    grid-template-columns: 1fr 800px;
    position: relative;
  }
  .home-topics__btn {
    position: absolute;
    top: 121px;
    left: 0;
    margin: 0;
  }
}
@media (min-width: 1541px) {
  .home-topics__wrap::before {
    max-width: 1260px;
  }
}
@media (min-width: 1700px) {
  .home-topics__inner::before {
    width: 383px;
    height: 264px;
    top: -64px;
    right: -208px;
  }
}

/* .member-profile
================================================ */
.member-profile__inner {
  padding-top: 60px;
}
.member-profile__img {
  position: relative;
  max-width: 82%;
  margin: 0 auto 40px;
}
.member-profile__img img {
  width: 100%;
}
.member-profile__img::before {
  position: absolute;
  content: "";
  top: 30px;
  right: -20px;
  width: 100%;
  height: calc(100% - 10px);
  background: rgb(var(--color-primary-200));
  border-radius: 5px;
  z-index: -1;
}
@media (min-width: 768px) {
  .member-profile__inner {
    padding-top: 130px;
  }
  .member-profile__wrap {
    display: grid;
    align-items: flex-start;
    grid-template-columns: 340px 1fr;
    grid-template-rows: auto 1fr;
    gap: 0 110px;
  }
  .member-profile__img {
    margin: 0;
    max-width: 100%;
  }
  .member-profile__img::before {
    top: 30px;
    right: -30px;
  }
}

/* .member-profile-sec
================================================ */
.member-profile-sec {
  margin-top: 50px;
}
.member-profile-sec__head {
  display: grid;
  align-items: center;
  grid-template-columns: 35px 1fr;
  grid-template-rows: auto 1fr;
  gap: 0 10px;
}
.member-profile-sec__head-ico img {
  width: 100%;
}
.member-profile-sec__head.no-ico {
  display: block;
}
@media (min-width: 768px) {
  .member-profile-sec {
    margin-top: 100px;
  }
  .member-profile-sec__head {
    grid-template-columns: 60px 1fr;
  }
}

/* .member-gallery
================================================ */
.member-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto 1fr;
  gap: 5px;
}
@media (min-width: 768px) {
  .member-gallery {
    grid-template-columns: repeat(4, 1fr);
    gap: 0 4px;
  }
}

/* .message-intro
================================================ */
.message-intro__inner {
  padding-top: 60px;
  padding-bottom: 90px;
}
.message-intro__img {
  position: relative;
  margin: 30px 40px 0 20px;
}
.message-intro__img img {
  width: 100%;
}
.message-intro__img::before {
  position: absolute;
  content: "";
  top: 20px;
  right: -20px;
  width: 100%;
  height: 100%;
  background: rgb(var(--color-primary-200));
  border-radius: 5px;
  z-index: -1;
}
.message-intro__name {
  margin-top: 5px;
}
@media (min-width: 768px) {
  .message-intro__inner {
    padding-top: 130px;
    padding-bottom: 140px;
  }
  .message-intro__header {
    margin-bottom: 20px;
  }
  .message-intro__wrap {
    display: grid;
    align-items: flex-start;
    grid-template-columns: 340px 1fr;
    grid-template-rows: auto 1fr;
    gap: 0 110px;
  }
  .message-intro__area-txt {
    grid-area: 1/2/2/3;
  }
  .message-intro__img {
    margin: 0;
    grid-area: 1/1/2/2;
  }
  .message-intro__img::before {
    top: 30px;
    right: -30px;
  }
  .message-intro__name {
    margin-top: 10px;
    font-size: 1.9rem;
  }
}

/* .message-profile
================================================ */
.message-profile__inner {
  padding-top: 10px;
}
.message-profile__history {
  margin-top: 65px;
}
.message-profile__box {
  margin-top: 50px;
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
}
.message-profile__box-item + .message-profile__box-item {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .message-profile__inner {
    padding-top: 0;
  }
  .message-profile__history {
    margin-top: 65px;
  }
  .message-profile__box {
    margin-top: 100px;
    padding: 60px;
  }
  .message-profile__box-item + .message-profile__box-item {
    margin-top: 40px;
  }
}

/* .privacy-policy
================================================ */
.privacy-policy__inner {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (min-width: 768px) {
  .privacy-policy__inner {
    padding-top: 100px;
    padding-bottom: 150px;
  }
}

/* .privacy-policy-sec
================================================ */
.privacy-policy-sec {
  margin-top: 40px;
}
.privacy-policy-sec__list {
  margin-top: 20px;
}
.privacy-policy-sec__box {
  margin-top: 20px;
  padding: 15px;
  border: 1px solid rgba(var(--color-grayscale-300));
}
@media (min-width: 768px) {
  .privacy-policy-sec {
    margin-top: 80px;
  }
}

/* .topics-cat
================================================ */
.topics-cat__inner {
  padding-top: 60px;
  padding-bottom: 40px;
}
.topics-cat-list {
  display: flex;
  flex-wrap: wrap;
  margin: -3px;
}
.topics-cat-list__item {
  width: calc(50% - 6px);
  margin: 3px;
}
.topics-cat-list__item.is-active .topics-cat-list__link {
  color: rgb(var(--color-grayscale-100));
  background: rgb(var(--color-primary-500));
}
.topics-cat-list__link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  background: rgb(var(--color-primary-100));
  border-radius: 9999px;
  font-size: 1.7rem;
  line-height: var(--line-height_xs);
  text-align: center;
}
@media (min-width: 768px) {
  .topics-cat__inner {
    padding-top: 100px;
    padding-bottom: 80px;
  }
  .topics-cat-list {
    margin: -4px;
  }
  .topics-cat-list__item {
    width: 160px;
    margin: 4px;
  }
  .topics-cat-list__link {
    font-size: 1.8rem;
    padding: 10px 16px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .topics-cat-list__link {
    transition: all 0.3s ease;
  }
  .topics-cat-list__link:hover {
    color: rgb(var(--color-grayscale-100));
    background: rgb(var(--color-primary-500));
  }
}

/* .topics-archive
================================================ */
.topics-archive__inner {
  padding-bottom: 70px;
}
@media (min-width: 768px) {
  .topics-archive__inner {
    padding-bottom: 140px;
  }
}

/* .topics-single
================================================ */
.topics-single__inner {
  padding-top: 60px;
  padding-bottom: 70px;
}
@media (min-width: 768px) {
  .topics-single__inner {
    padding-top: 100px;
    padding-bottom: 140px;
  }
}

/* .topics-other
================================================ */
.topics-other {
  padding-bottom: 70px;
}
.topics-other__in {
  margin: 0 20px;
  background: rgb(var(--color-primary-100));
  border-radius: 5px;
}
.topics-other__inner {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (min-width: 768px) {
  .topics-other {
    padding-bottom: 140px;
  }
  .topics-other__in {
    max-width: 1260px;
    margin: 0 auto;
    border-radius: 15px;
  }
  .topics-other__inner {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}