@charset "UTF-8";

:root {
  --letter-spacing-base: .02em;
  --letter-spacing-en: .02em;
  --line-height-base: 2;
  --line-height-head: 1.6;
  --line-height-en: 1.2;
  --main-color-500: 10, 52, 90;
  --main-color-500-rgb: rgb(10, 52, 90);
  --main-color-400: 34, 107, 167;
  --main-color-400-rgb: rgb(34, 107, 167);
  --main-color-300: 34, 107, 167;
  --main-color-300-rgb: rgb(34, 107, 167);
  --main-color-100: 233, 242, 255;
  --main-color-100-rgb: rgb(233, 242, 255);
  --main-color-50: 217, 234, 255;
  --main-color-50-rgb: rgb(217, 234, 255);
  --secondary-color-300: 33, 49, 68;
  --secondary-color-300-rgb: rgb(33, 49, 68);
  --surface-color-500: 255, 255, 255;
  --surface-color-500-rgb: rgb(255, 255, 255);
  --black: 0, 0, 0;
  --black-rgb: rgb(0, 0, 0);
  --gray-color-800: 101, 101, 101;
  --gray-color-800-rgb: rgb(101, 101, 101);
  --gray-color-500: 204, 204, 204;
  --gray-color-500-rgb: rgb(204, 204, 204);
  --gray-color-200: 242, 242, 242;
  --gray-color-200-rgb: rgb(242, 242, 242);
  --contents_width: 1100px;
  --contents_wide_width: 1400px;
  --contents_width_with_padding: 1160px;
  --contents_wide_width_with_padding: 1460px;
  --sidebar_width: 250px;
  --header-height-sp: 60px;
  --header-height-pc: 120px;
  --body_padding_side_sp: 20px;
  --body_padding_side: 60px;
}

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 all and (min-width: 768px) {
  a:hover {
    text-decoration: none;
  }
}

a[class] {
  text-decoration: none;
}

ins {
  background-color: #ff9;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

address {
  font-style: normal;
}

sup {
  vertical-align: text-top;
  font-size: 0.75em;
}

sub {
  vertical-align: text-bottom;
  font-size: 0.75em;
}

table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid rgb(var(--border));
  margin: 1em 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

iframe {
  max-width: 100%;
}

/* form
================================================== */
input[type=text],
input[type=email],
input[type=tel],
textarea,
button,
select,
option {
  display: block;
  width: 100%;
  max-width: 100%;
  font-family: inherit;
  outline: none;
  border: 1px solid;
  border-radius: 0;
  background: none;
}

@media all and (max-width: 767px) {

  input[type=text],
  input[type=email],
  input[type=tel],
  textarea,
  button,
  select,
  option {
    font-size: 1.6rem;
  }
}

input[type=text],
input[type=email],
input[type=tel],
textarea,
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
}

input[type=radio],
input[type=checkbox] {
  margin: 0;
  padding: 0;
  vertical-align: middle;
}

select {
  color: inherit;
}

textarea {
  resize: vertical;
}

button {
  color: inherit;
  font-weight: normal;
  cursor: pointer;
}

/* 02_base
================================================ */
body {
  min-width: 320px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
  color: rgb(var(--black));
  font-size: 1.4rem;
  line-height: var(--line-height-base);
  letter-spacing: var(--letter-spacing-base);
}

@media all and (min-width: 768px) {
  body {
    min-width: var(--contents_width_with_padding);
    font-size: 1.6rem;
  }
}

.l-wrapper {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

@media all and (min-width: 768px) {
  .l-container.is-col2 {
    display: grid;
    grid-template-columns: var(--sidebar_width) auto;
    gap: 0 20px;
    width: var(--contents_width);
    margin: 0 auto;
  }

  .l-container.is-col2 .l-contents {
    flex: 1;
  }

  .l-container.is-col2 .l-sidebar {
    order: -1;
    flex-basis: var(--sidebar_width);
  }
}

/* sp <--> tb <--> pc
-------------------------------------- */
.u-media-query {
  display: none;
  font-family: "sp";
}

@media all and (min-width: 768px) {
  .u-media-query {
    font-family: "tb";
  }
}

@media all and (min-width: 1160px) {
  .u-media-query {
    font-family: "pc";
  }
}

@media all and (max-width: 1159px) {
  .u-view-pc {
    display: none !important;
  }
}

@media all and (max-width: 767px) {
  .u-view-tb {
    display: none !important;
  }
}

@media all and (min-width: 1160px) {
  .u-view-tb {
    display: none !important;
  }
}

@media all and (min-width: 768px) {
  .u-view-sp {
    display: none !important;
  }
}

@media all and (min-width: 1160px) {
  .u-view-under-tb {
    display: none !important;
  }
}

@media all and (max-width: 767px) {
  .u-view-upper-tb {
    display: none !important;
  }
}

/* overflow
-------------------------------------- */
.u-overflow-wrap {
  overflow: auto;
}

.u-overflow-wrap .u-overflow-sec {
  overflow: hidden;
}

@media all and (min-width: 768px) {
  .u-overflow-wrap .u-overflow-sec {
    min-width: var(--contents_width_with_padding);
  }
}

/* text
-------------------------------------- */
.u-uppercase {
  text-transform: uppercase;
}

.u-capitalize {
  text-transform: capitalize;
}

.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-font-en {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  line-height: var(--line-height-en);
  letter-spacing: var(--letter-spacing-en);
}

.u-text-center {
  text-align: center;
}

@media all and (max-width: 767px) {
  .u-text-center-sp {
    text-align: center;
  }
}

.u-bold {
  font-weight: 700;
}

.u-mt-1em {
  margin-top: 1em;
}

/* link
-------------------------------------- */
a.u-textlink {
  color: var(--main-color-500-rgb);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (hover: hover) and (pointer: fine) {
  a.u-textlink:hover {
    text-decoration: none;
  }
}

a.u-alpha {
  display: block;
  text-decoration: none;
}

@media all and (min-width: 768px) {
  a.u-alpha {
    transition: all 0.3s ease;
  }
}

@media (hover: hover) and (pointer: fine) {
  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 all and (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);
  }
}

/* layout
-------------------------------------- */
.u-inner {
  box-sizing: border-box;
  padding-left: var(--body_padding_side_sp);
  padding-right: var(--body_padding_side_sp);
}

@media all and (min-width: 768px) {
  .u-inner {
    width: 100%;
    max-width: var(--contents_width);
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    padding-right: 0;
  }
}

.u-wide-inner {
  box-sizing: border-box;
  padding-left: var(--body_padding_side_sp);
  padding-right: var(--body_padding_side_sp);
}

@media all and (min-width: 768px) {
  .u-wide-inner {
    width: 100%;
    max-width: var(--contents_wide_width_with_padding);
    margin-right: auto;
    margin-left: auto;
    padding-left: 30px;
    padding-right: 30px;
  }
}

/*  .c-archive01
================================================== */
.c-archive01__item-in {
  display: block;
  padding: 20px 0;
  border-top: 1px solid var(--gray-color-500-rgb);
}

.c-archive01__item-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.c-archive01__item-date {
  margin: 0 10px 0 0;
  padding: 5px 0;
  color: var(--gray-color-800-rgb);
  font-size: 1.2rem;
  min-width: 70px;
}

.c-archive01__item-cat {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin: 0 -5px -5px 0;
}

.c-archive01__item-cat-item {
  margin: 0 5px 5px 0;
  padding: 1px 15px;
  border-radius: 15px;
  background: var(--main-color-500-rgb);
  color: var(--surface-color-500-rgb);
  font-size: 1rem;
  min-width: 112px;
  box-sizing: border-box;
  text-align: center;
}

.c-archive01__item-head {
  overflow: hidden;
  display: -webkit-box;
  max-height: 4em;
  line-height: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  margin-top: 5px;
  transition: all 0.3s ease;
}

@media all and (min-width: 768px) {
  .c-archive01 {
    border-bottom: 1px solid var(--gray-color-500-rgb);
  }

  .c-archive01__item {
    display: block;
  }

  .c-archive01__item-in {
    display: flex;
    align-items: center;
    padding: 25px 40px;
  }

  .c-archive01__item-meta {
    flex: 0 0 252px;
  }

  .c-archive01__item-date {
    padding: 0;
    font-size: 1.6rem;
    min-width: 90px;
  }

  .c-archive01__item-cat {
    margin: 0;
  }

  .c-archive01__item-cat-item {
    margin-bottom: 0;
    font-size: 1.2rem;
    min-width: 128px;
  }

  .c-archive01__item-head {
    max-height: 2em;
    -webkit-line-clamp: 1;
    margin-top: 0;
  }
}

@media (hover: hover) and (pointer: fine) {
  .c-archive01__item-in {
    position: relative;
  }

  .c-archive01__item-in::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--main-color-500-rgb);
    transform: scaleX(0);
    transform-origin: top left;
    transition: transform 0.3s ease-out;
  }

  .c-archive01__item-in:hover::before {
    transform: scaleX(1);
    transform-origin: top left;
  }

  .c-archive01__item-in::before {
    top: 0;
  }

  .c-archive01__item-in:hover .c-archive01__item-head {
    color: var(--main-color-500-rgb);
  }
}

/*  .c-archive02
================================================== */
.c-archive02__item {
  margin-top: 30px;
}

.c-archive02__item-in {
  display: block;
}

.c-archive02__item-img {
  border: solid 1px var(--gray-color-500-rgb);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.c-archive02__item-ico {
  position: absolute;
  z-index: 2;
  bottom: -40px;
  right: -40px;
  width: 80px;
  height: 80px;
  background: #a1b1cf;
  border-radius: 50%;
}

.c-archive02__item-ico::before {
  position: absolute;
  top: 20px;
  left: 20px;
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  color: #fff;
  background-color: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 11 11" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.76619 9.54753H1.13502V2.15261H5.50603V1.05273H0V10.6474H9.9012V5.31183H8.76619V9.54753Z" fill="currentColor"/><path d="M6.72519 0V1.09988H9.0556L4.55176 5.46428L5.36076 6.24824L9.8646 1.87213V4.13039H10.9996V0H6.72519Z" fill="currentColor"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 11 11" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.76619 9.54753H1.13502V2.15261H5.50603V1.05273H0V10.6474H9.9012V5.31183H8.76619V9.54753Z" fill="currentColor"/><path d="M6.72519 0V1.09988H9.0556L4.55176 5.46428L5.36076 6.24824L9.8646 1.87213V4.13039H10.9996V0H6.72519Z" fill="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all 0.3s ease;
}

.c-archive02__item-ico.is-arrow::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 8px;
  color: #fff;
  background-color: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 13 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.443182 1.25079C0.255028 1.43894 0.162544 1.68131 0.162544 1.92687C0.162544 2.17243 0.255028 2.41799 0.443182 2.60295L5.52655 7.68951C5.70514 7.8681 5.9507 7.97015 6.20263 7.97015C6.45457 7.97015 6.70013 7.8681 6.87872 7.68951L11.9653 2.60295C12.3384 2.22983 12.3384 1.62391 11.9653 1.25079C11.5922 0.877667 10.9862 0.877667 10.6131 1.25079L6.20582 5.65808L1.79535 1.25079C1.42223 0.877667 0.816303 0.877667 0.443182 1.25079Z" fill="currentColor"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 13 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.443182 1.25079C0.255028 1.43894 0.162544 1.68131 0.162544 1.92687C0.162544 2.17243 0.255028 2.41799 0.443182 2.60295L5.52655 7.68951C5.70514 7.8681 5.9507 7.97015 6.20263 7.97015C6.45457 7.97015 6.70013 7.8681 6.87872 7.68951L11.9653 2.60295C12.3384 2.22983 12.3384 1.62391 11.9653 1.25079C11.5922 0.877667 10.9862 0.877667 10.6131 1.25079L6.20582 5.65808L1.79535 1.25079C1.42223 0.877667 0.816303 0.877667 0.443182 1.25079Z" fill="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all 0.3s ease;
  rotate: -90deg;
}

.c-archive02__item-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 20px;
}

.c-archive02__item-cat {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin: 0 -5px -5px 0;
}

.c-archive02__item-cat-item {
  margin: 0 5px 5px 0;
  padding: 1px 15px;
  border-radius: 15px;
  background: var(--main-color-500-rgb);
  color: var(--surface-color-500-rgb);
  font-size: 1rem;
}

.c-archive02__item-head {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: var(--line-height-head);
  margin-top: 10px;
  transition: all 0.3s ease;
}

.c-archive02__item-txt {
  margin-top: 5px;
  font-size: 1.4rem;
}

@media all and (min-width: 768px) {
  .c-archive02 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 48px;
    grid-row-gap: 80px;
  }

  .c-archive02__item {
    display: block;
    margin-top: 0;
  }

  .c-archive02__item-meta {
    flex: 0 0 252px;
  }

  .c-archive02__item-cat-item {
    font-size: 1.2rem;
  }
}

/*  .c-bnr01
================================================== */
.c-bnr01 {
  margin: 0 20px 80px;
}

.c-bnr01__link {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.c-bnr01__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background: url(../img/home/bg_lab01_sp.png) no-repeat center/cover;
  border-radius: 20px;
}

.c-bnr01__areaTxt {
  position: relative;
  z-index: 2;
  padding: 60px 0 116px;
}

.c-bnr01__txt {
  margin-top: 15px;
}

.c-bnr01__img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.c-bnr01__img img {
  border-radius: 20px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.c-bnr01__ico {
  position: absolute;
  z-index: 2;
  bottom: 20px;
  right: 0;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  background: var(--main-color-100-rgb);
  border-radius: 50%;
}

.c-bnr01__ico::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 8px;
  color: var(--main-color-500-rgb);
  background-color: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 13 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.443182 1.25079C0.255028 1.43894 0.162544 1.68131 0.162544 1.92687C0.162544 2.17243 0.255028 2.41799 0.443182 2.60295L5.52655 7.68951C5.70514 7.8681 5.9507 7.97015 6.20263 7.97015C6.45457 7.97015 6.70013 7.8681 6.87872 7.68951L11.9653 2.60295C12.3384 2.22983 12.3384 1.62391 11.9653 1.25079C11.5922 0.877667 10.9862 0.877667 10.6131 1.25079L6.20582 5.65808L1.79535 1.25079C1.42223 0.877667 0.816303 0.877667 0.443182 1.25079Z" fill="currentColor"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 13 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.443182 1.25079C0.255028 1.43894 0.162544 1.68131 0.162544 1.92687C0.162544 2.17243 0.255028 2.41799 0.443182 2.60295L5.52655 7.68951C5.70514 7.8681 5.9507 7.97015 6.20263 7.97015C6.45457 7.97015 6.70013 7.8681 6.87872 7.68951L11.9653 2.60295C12.3384 2.22983 12.3384 1.62391 11.9653 1.25079C11.5922 0.877667 10.9862 0.877667 10.6131 1.25079L6.20582 5.65808L1.79535 1.25079C1.42223 0.877667 0.816303 0.877667 0.443182 1.25079Z" fill="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all 0.3s ease;
  transform: rotate(-90deg);
}

.c-bnr01__ico[target=_blank]::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  color: var(--main-color-500-rgb);
  background-color: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 11 11" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.76619 9.54753H1.13502V2.15261H5.50603V1.05273H0V10.6474H9.9012V5.31183H8.76619V9.54753Z" fill="currentColor"/><path d="M6.72519 0V1.09988H9.0556L4.55176 5.46428L5.36076 6.24824L9.8646 1.87213V4.13039H10.9996V0H6.72519Z" fill="currentColor"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 11 11" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.76619 9.54753H1.13502V2.15261H5.50603V1.05273H0V10.6474H9.9012V5.31183H8.76619V9.54753Z" fill="currentColor"/><path d="M6.72519 0V1.09988H9.0556L4.55176 5.46428L5.36076 6.24824L9.8646 1.87213V4.13039H10.9996V0H6.72519Z" fill="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all 0.3s ease;
}

@media all and (min-width: 768px) {
  .c-bnr01 {
    margin: 0 auto 220px;
  }

  .c-bnr01__link {
    position: relative;
    width: 100%;
    box-sizing: border-box;
  }

  .c-bnr01__link::before {
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1818px;
    background-image: url(../img/home/bg_lab01_pc.png);
  }

  .c-bnr01__areaTxt {
    padding: 187px 0 190px;
  }

  .c-bnr01__txt {
    margin-top: 36px;
  }

  .c-bnr01__ico {
    bottom: auto;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 80px;
    height: 80px;
  }

  .c-bnr01__ico::before {
    width: 14px;
    height: 14px;
  }
}

/* .c-btn01
================================================== */
.c-btn01 {
  width: 265px;
  text-align: center;
}

.c-btn01__in {
  position: relative;
  display: flex;
  align-items: center;
  padding: 20px 15px 20px 35px;
  border-radius: 9999px;
  box-sizing: border-box;
}

.c-btn01__in::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.c-btn01__txt {
  flex: auto;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.06em;
}

.c-btn01__ico {
  position: relative;
  z-index: 2;
  flex: 0 0 20px;
  height: 20px;
  background: rgba(var(--surface-color-500), 0.2);
  border-radius: 50%;
}

.c-btn01__ico::before,
.c-btn01__ico::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transition: all 0.3s ease;
}

.c-btn01__ico::before {
  transform: translate(-50%, -50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--surface-color-500-rgb);
}

.c-btn01__ico::after {
  content: "";
  display: inline-block;
  width: 13px;
  height: 8px;
  color: var(--main-color-500-rgb);
  background-color: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 13 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.443182 1.25079C0.255028 1.43894 0.162544 1.68131 0.162544 1.92687C0.162544 2.17243 0.255028 2.41799 0.443182 2.60295L5.52655 7.68951C5.70514 7.8681 5.9507 7.97015 6.20263 7.97015C6.45457 7.97015 6.70013 7.8681 6.87872 7.68951L11.9653 2.60295C12.3384 2.22983 12.3384 1.62391 11.9653 1.25079C11.5922 0.877667 10.9862 0.877667 10.6131 1.25079L6.20582 5.65808L1.79535 1.25079C1.42223 0.877667 0.816303 0.877667 0.443182 1.25079Z" fill="currentColor"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 13 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.443182 1.25079C0.255028 1.43894 0.162544 1.68131 0.162544 1.92687C0.162544 2.17243 0.255028 2.41799 0.443182 2.60295L5.52655 7.68951C5.70514 7.8681 5.9507 7.97015 6.20263 7.97015C6.45457 7.97015 6.70013 7.8681 6.87872 7.68951L11.9653 2.60295C12.3384 2.22983 12.3384 1.62391 11.9653 1.25079C11.5922 0.877667 10.9862 0.877667 10.6131 1.25079L6.20582 5.65808L1.79535 1.25079C1.42223 0.877667 0.816303 0.877667 0.443182 1.25079Z" fill="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all 0.3s ease;
  z-index: 3;
  width: 2px;
  height: 2px;
  transform: translate(-50%, -50%) rotate(-90deg);
}

@media all and (min-width: 768px) {
  .c-btn01 {
    width: 308px;
  }

  .c-btn01__in {
    padding: 25px 25px 25px 30px;
    border-radius: 40px;
  }

  .c-btn01__txt {
    font-size: 1.5rem;
  }

  .c-btn01__ico {
    flex: 0 0 24px;
    height: 24px;
  }

  .c-btn01__ico::before {
    width: 6px;
    height: 6px;
  }

  .c-btn01__ico::after {
    height: 3px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .c-btn01__in:hover::before {
    background: rgba(var(--surface-color-500), 0.3);
  }

  .c-btn01__in:hover .c-btn01__ico::before {
    width: 50px;
    height: 50px;
  }

  .c-btn01__in:hover .c-btn01__ico::after {
    width: 13px;
    height: 7px;
  }
}

/* .c-btn01.is-border
================================================== */
.c-btn01.is-border .c-btn01__in {
  border: 2px solid currentColor;
}

/* .c-btn01.is-center
================================================== */
.c-btn01.is-center {
  margin-left: auto;
  margin-right: auto;
}

/* .c-btn01.is-center-sp
================================================== */
@media all and (max-width: 767px) {
  .c-btn01.is-center-sp {
    margin-left: auto;
    margin-right: auto;
  }
}

/* .c-btn01.is-lg-pc
================================================== */
@media all and (min-width: 768px) {
  .c-btn01.is-lg-pc .c-btn01__txt {
    font-size: 1.8rem;
  }
}

/* .c-btn01.is-back
================================================== */
.c-btn01.is-back .c-btn01__in {
  flex-direction: row-reverse;
  padding: 20px 35px 20px 15px;
}

.c-btn01.is-back .c-btn01__ico::after {
  transform: translate(-50%, -50%) rotate(-90deg) scale(1, -1);
}

@media all and (min-width: 768px) {
  .c-btn01.is-back .c-btn01__in {
    padding: 25px 30px 25px 25px;
  }
}

/*  .c-card01
================================================== */
.c-card01 {
  margin-top: 30px;
}

.c-card01.has-bg .c-card01__item {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  margin-top: 10px;
}

.c-card01.has-bg .c-card01__head {
  padding: 0;
}

.c-card01.has-bg-color-main-100 .c-card01__item {
  background-color: var(--main-color-100-rgb);
}

.c-card01__item {
  margin-top: 20px;
}

.c-card01__head {
  padding: 20px;
  border-radius: 10px;
  display: grid;
  grid-template-columns: 60px 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  align-items: center;
}

.c-card01__ja {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: var(--line-height-head);
}

.c-card01__txt {
  margin-top: 10px;
}

.c-card01__note {
  font-size: 1.2rem;
  line-height: var(--line-height-head);
  margin-top: 15px;
  color: var(--gray-color-800-rgb);
  padding-left: 1em;
  text-indent: -1em;
}

.c-card01__note::before {
  content: "※";
}

@media all and (min-width: 768px) {
  .c-card01 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 40px;
    grid-row-gap: 50px;
  }

  .c-card01.has-bg {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .c-card01.has-bg .c-card01__item {
    padding: 50px 20px;
    margin-top: 0;
  }

  .c-card01.has-bg .c-card01__txt {
    margin-top: 30px;
  }

  .c-card01.is-col3-pc {
    grid-template-columns: repeat(3, 1fr);
  }

  .c-card01__item {
    box-sizing: border-box;
    margin-top: 0;
  }

  .c-card01__ja {
    font-size: 2.2rem;
  }

  .c-card01__txt {
    margin-top: 20px;
  }

  .c-card01__note {
    font-size: 1.4rem;
  }
}

/*  .c-card02
================================================== */
.c-card02__link {
  background: var(--main-color-100-rgb);
  border-radius: 10px;
  padding: 0 20px 50px;
  position: relative;
  overflow: hidden;
}

.c-card02__ico {
  position: absolute;
  z-index: 2;
  bottom: -40px;
  right: -40px;
  width: 80px;
  height: 80px;
  background: #A1B1CF;
  border-radius: 50%;
}

.c-card02__ico::before {
  position: absolute;
  top: 20px;
  left: 20px;
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  color: #fff;
  background-color: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 11 11" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.76619 9.54753H1.13502V2.15261H5.50603V1.05273H0V10.6474H9.9012V5.31183H8.76619V9.54753Z" fill="currentColor"/><path d="M6.72519 0V1.09988H9.0556L4.55176 5.46428L5.36076 6.24824L9.8646 1.87213V4.13039H10.9996V0H6.72519Z" fill="currentColor"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 11 11" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.76619 9.54753H1.13502V2.15261H5.50603V1.05273H0V10.6474H9.9012V5.31183H8.76619V9.54753Z" fill="currentColor"/><path d="M6.72519 0V1.09988H9.0556L4.55176 5.46428L5.36076 6.24824L9.8646 1.87213V4.13039H10.9996V0H6.72519Z" fill="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all 0.3s ease;
}

.c-card02__tag {
  margin: 0 -20px 20px;
  color: #fff;
  background: var(--main-color-500-rgb);
  text-align: center;
  font-weight: 700;
  line-height: var(--line-height-head);
  padding: 5px;
}

.c-card02 .c-list01 {
  margin-top: 20px;
  font-size: 1.4rem;
}

.c-card02__head {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: var(--line-height-head);
  margin-top: 20px;
}

.c-card02__head+.c-list01 {
  margin-top: 5px;
}

.c-card02__img {
  border-radius: 10px;
  overflow: hidden;
}

@media all and (max-width: 767px) {
  .c-card02__item+.c-card02__item {
    margin-top: 20px;
  }
}

@media all and (min-width: 768px) {
  .c-card02 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 48px;
    grid-row-gap: 60px;
  }

  .c-card02__item {
    display: flex;
    flex-wrap: wrap;
  }

  .c-card02__link {
    padding-bottom: 45px;
  }
}

/*  .c-card03
================================================== */
.c-card03 {
  display: grid;
  row-gap: 30px;
}

.c-card03__item {
  display: grid;
  row-gap: 20px;
}

.c-card03__item-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.c-card03__item-img-wrap {
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 67/38;
}

.c-card03__item-txt {
  line-height: 1;
}

@media all and (min-width: 768px) {
  .c-card03 {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
  }

  .c-card03__item {
    row-gap: 16px;
  }
}

/*  .c-cat01
================================================== */
.c-cat01 {
  margin-bottom: 50px;
  padding: 20px;
  background: var(--main-color-100-rgb);
}

.c-cat01__head {
  font-weight: 700;
  line-height: var(--line-height-head);
  color: var(--main-color-500-rgb);
}

.c-cat01__list-item {
  display: inline-block;
  margin-right: 30px;
}

.c-cat01__list-link {
  font-weight: 700;
  color: var(--gray-color-800-rgb);
}

.c-cat01__list-link.is-current {
  color: var(--black-rgb);
}

@media all and (max-width: 767px) {
  .c-cat01__head {
    padding-bottom: 10px;
    margin-bottom: 15px;
    border-bottom: solid 1px var(--main-color-500-rgb);
  }
}

@media all and (min-width: 768px) {
  .c-cat01 {
    padding: 20px 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  .c-cat01__head {
    padding: 10px 0;
    border-right: solid 1px var(--main-color-500-rgb);
    margin-right: 30px;
    width: 110px;
    box-sizing: border-box;
  }

  .c-cat01__list {
    width: calc(100% - 140px);
  }

  .c-cat01__list-link {
    position: relative;
    padding-left: 25px;
    transition: all 0.3s ease;
  }

  .c-cat01__list-link::before {
    position: absolute;
    content: "";
    width: 15px;
    height: 1px;
    background: var(--gray-color-800-rgb);
    top: 50%;
    left: 0;
  }

  .c-cat01__list-link:hover {
    color: var(--black-rgb);
  }

  .c-cat01__list-link:hover::before {
    background: var(--black-rgb);
  }

  .c-cat01__list-link.is-current::before {
    background: var(--black-rgb);
  }
}

/* .c-color-black
================================================== */
.c-color-black {
  color: var(--black-rgb);
}

/* .c-color-white
================================================== */
.c-color-white {
  color: var(--surface-color-500-rgb);
}

/* .c-color-main-500
================================================== */
.c-color-main-500 {
  color: var(--main-color-500-rgb);
}

/* .c-color-gray-800
================================================== */
.c-color-gray-800 {
  color: var(--gray-color-800-rgb);
}

/* .c-bgcolor-white
================================================== */
.c-bgcolor-white {
  background-color: var(--surface-color-500-rgb);
}

/* .c-bgcolor-main-500
================================================== */
.c-bgcolor-main-500 {
  background-color: var(--main-color-500-rgb);
}

/* .c-bgcolor-main-400
================================================== */
.c-bgcolor-main-400 {
  background-color: var(--main-color-400-rgb);
}

/* .c-bgcolor-main-100
================================================== */
.c-bgcolor-main-100 {
  background-color: var(--main-color-100-rgb);
}

/* .c-bgcolor-cv02
================================================== */
.c-bgcolor-cv02 {
  background-color: #5C85DC;
}

/* .c-bgcolor-cv03
================================================== */
.c-bgcolor-cv03 {
  background-color: #3B4D84;
}

/* .c-bgcolor-cv04
================================================== */
.c-bgcolor-cv04 {
  background-color: #041545;
}

/*  .c-cv-en01
================================================== */
.c-cv-en01 {
  position: relative;
  z-index: 2;
  background: url(../img/en/about/bg_contact01_sp.jpg) no-repeat center center/cover;
}

.c-cv-en01__link {
  display: block;
}

.c-cv-en01__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template: "head" "." 20px "txt" "." 30px "btn";
  padding-block: 50px 66px;
  color: #fff;
}

.c-cv-en01__head {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: head;
  text-align: center;
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1.6;
}

.c-cv-en01__txt {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: txt;
  text-align: center;
  font-size: 1.6rem;
}

.c-cv-en01__btn {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
  grid-area: btn;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 15px;
  column-gap: 15px;
  font-size: 1.5rem;
  font-weight: 700;
}

.c-cv-en01__btn-ico {
  content: "";
  display: inline-block;
  width: 28px;
  height: 22px;
  color: currentColor;
  background-color: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 18 13" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="0.5" y="0.5" width="17" height="12" rx="1.5" stroke="currentColor"/><path d="M0.599609 0.619141L8.04738 7.44955C8.41976 7.79106 8.98838 7.80114 9.37263 7.47304L17.3996 0.619141" stroke="currentColor"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 18 13" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="0.5" y="0.5" width="17" height="12" rx="1.5" stroke="currentColor"/><path d="M0.599609 0.619141L8.04738 7.44955C8.41976 7.79106 8.98838 7.80114 9.37263 7.47304L17.3996 0.619141" stroke="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all 0.3s ease;
}

@media all and (min-width: 768px) {
  .c-cv-en01 {
    background-image: url(../img/en/about/bg_contact01_pc.jpg);
  }

  .c-cv-en01__link {
    position: relative;
  }

  .c-cv-en01__link::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url(../img/en/about/bg_contact02_pc.jpg) no-repeat center center/cover;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .c-cv-en01__link:hover::after {
    opacity: 1;
  }

  .c-cv-en01__inner {
    grid-template: "head" "." 50px "txt" "." 50px "btn";
    padding-block: 120px;
  }

  .c-cv-en01__head {
    font-size: 5rem;
  }

  .c-cv-en01__btn {
    -moz-column-gap: 20px;
    column-gap: 20px;
    font-size: 2.5rem;
  }

  .c-cv-en01__head {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }

  .c-cv-en01__txt {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }

  .c-cv-en01__btn {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
}

/*  .c-cv01
================================================== */
.c-cv01-list__item-link {
  position: relative;
  display: block;
  padding: 72px 0;
  background-image: url(../img/common/bg_noise01_sp.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.c-cv01-list__item-link[target=_blank] .c-cv01-list__item-ico::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  color: currentColor;
  background-color: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 11 11" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.76619 9.54753H1.13502V2.15261H5.50603V1.05273H0V10.6474H9.9012V5.31183H8.76619V9.54753Z" fill="currentColor"/><path d="M6.72519 0V1.09988H9.0556L4.55176 5.46428L5.36076 6.24824L9.8646 1.87213V4.13039H10.9996V0H6.72519Z" fill="currentColor"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 11 11" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.76619 9.54753H1.13502V2.15261H5.50603V1.05273H0V10.6474H9.9012V5.31183H8.76619V9.54753Z" fill="currentColor"/><path d="M6.72519 0V1.09988H9.0556L4.55176 5.46428L5.36076 6.24824L9.8646 1.87213V4.13039H10.9996V0H6.72519Z" fill="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all 0.3s ease;
  transform: none;
}

.c-cv01-list__item-ico {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--main-color-500-rgb);
  transition: all 0.3s ease;
}

.c-cv01-list__item-ico::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 5px;
  color: currentColor;
  background-color: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 13 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.443182 1.25079C0.255028 1.43894 0.162544 1.68131 0.162544 1.92687C0.162544 2.17243 0.255028 2.41799 0.443182 2.60295L5.52655 7.68951C5.70514 7.8681 5.9507 7.97015 6.20263 7.97015C6.45457 7.97015 6.70013 7.8681 6.87872 7.68951L11.9653 2.60295C12.3384 2.22983 12.3384 1.62391 11.9653 1.25079C11.5922 0.877667 10.9862 0.877667 10.6131 1.25079L6.20582 5.65808L1.79535 1.25079C1.42223 0.877667 0.816303 0.877667 0.443182 1.25079Z" fill="currentColor"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 13 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.443182 1.25079C0.255028 1.43894 0.162544 1.68131 0.162544 1.92687C0.162544 2.17243 0.255028 2.41799 0.443182 2.60295L5.52655 7.68951C5.70514 7.8681 5.9507 7.97015 6.20263 7.97015C6.45457 7.97015 6.70013 7.8681 6.87872 7.68951L11.9653 2.60295C12.3384 2.22983 12.3384 1.62391 11.9653 1.25079C11.5922 0.877667 10.9862 0.877667 10.6131 1.25079L6.20582 5.65808L1.79535 1.25079C1.42223 0.877667 0.816303 0.877667 0.443182 1.25079Z" fill="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all 0.3s ease;
  transform: rotate(-90deg);
}

.c-cv01-list .c-head01__en {
  margin-top: 0;
}

@media all and (min-width: 768px) {
  .c-cv01-list {
    display: flex;
  }

  .c-cv01-list__item {
    width: 50%;
  }

  .c-cv01-list__item-link {
    padding: 198px 0;
    background-image: url(../img/common/bg_noise01_pc.png);
  }

  .c-cv01-list__item-link[target=_blank] .c-cv01-list__item-ico::before {
    width: 14px;
    height: 14px;
  }

  .c-cv01-list__item-ico {
    right: 20px;
    bottom: 20px;
    width: 80px;
    height: 80px;
  }

  .c-cv01-list__item-ico::before {
    width: 13px;
    height: 7px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .c-cv01-list__item-link {
    transition: all 0.3s ease;
  }

  .c-cv01-list__item-link:hover .c-cv01-list__item-ico {
    background: #002772;
  }

  .c-cv01-list__item:first-child .c-cv01-list__item-link:hover {
    background-image: url(../img/common/bg_texture01.png);
  }

  .c-cv01-list__item:last-child .c-cv01-list__item-link:hover {
    background-image: url(../img/common/bg_texture02.png);
  }
}

/*  .c-cv02
================================================== */
.c-cv02 {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  box-sizing: border-box;
  transform: translateX(100%);
  opacity: 0;
  width: 100%;
  padding: 10px;
  background: var(--surface-color-500-rgb);
  border-radius: 10px;
  box-shadow: 0px 4px 20px 0px rgba(0, 52, 153, 0.3);
  transition: 0.6s 0.3s ease;
}

.c-cv02__btn {
  position: absolute;
  top: -17px;
  right: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  background: #999;
  border-radius: 50%;
  border: none;
  outline: none;
  padding: 0;
}

.c-cv02__btn::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background: var(--surface-color-500-rgb);
  -webkit-clip-path: polygon(20% 0%, 0% 20%, 30% 50%, 0% 80%, 20% 100%, 50% 70%, 80% 100%, 100% 80%, 70% 50%, 100% 20%, 80% 0%, 50% 30%);
  clip-path: polygon(20% 0%, 0% 20%, 30% 50%, 0% 80%, 20% 100%, 50% 70%, 80% 100%, 100% 80%, 70% 50%, 100% 20%, 80% 0%, 50% 30%);
}

.c-cv02-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
}

.c-cv02-list__item-ico {
  position: relative;
  z-index: 2;
  flex: 0 0 24px;
  height: 24px;
  background: rgba(var(--surface-color-500), 0.2);
  border-radius: 50%;
}

.c-cv02-list__item-ico::before,
.c-cv02-list__item-ico::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transition: all 0.3s ease;
}

.c-cv02-list__item-ico::before {
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--surface-color-500-rgb);
}

.c-cv02-list__item-ico::after {
  content: "";
  display: inline-block;
  width: 13px;
  height: 8px;
  color: var(--main-color-500-rgb);
  background-color: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 13 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.443182 1.25079C0.255028 1.43894 0.162544 1.68131 0.162544 1.92687C0.162544 2.17243 0.255028 2.41799 0.443182 2.60295L5.52655 7.68951C5.70514 7.8681 5.9507 7.97015 6.20263 7.97015C6.45457 7.97015 6.70013 7.8681 6.87872 7.68951L11.9653 2.60295C12.3384 2.22983 12.3384 1.62391 11.9653 1.25079C11.5922 0.877667 10.9862 0.877667 10.6131 1.25079L6.20582 5.65808L1.79535 1.25079C1.42223 0.877667 0.816303 0.877667 0.443182 1.25079Z" fill="currentColor"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 13 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.443182 1.25079C0.255028 1.43894 0.162544 1.68131 0.162544 1.92687C0.162544 2.17243 0.255028 2.41799 0.443182 2.60295L5.52655 7.68951C5.70514 7.8681 5.9507 7.97015 6.20263 7.97015C6.45457 7.97015 6.70013 7.8681 6.87872 7.68951L11.9653 2.60295C12.3384 2.22983 12.3384 1.62391 11.9653 1.25079C11.5922 0.877667 10.9862 0.877667 10.6131 1.25079L6.20582 5.65808L1.79535 1.25079C1.42223 0.877667 0.816303 0.877667 0.443182 1.25079Z" fill="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all 0.3s ease;
  z-index: 3;
  width: 2px;
  height: 2px;
  transform: translate(-50%, -50%) rotate(-90deg);
}

.c-cv02-list__link {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 12px 10px 12px;
  border-radius: 5px;
  color: var(--surface-color-500-rgb);
  line-height: 1.4;
}

.c-cv02-list__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.c-cv02-list__item-txt {
  font-size: 1.2rem;
}

@media all and (min-width: 768px) {
  .c-cv02 {
    left: auto;
    right: 30px;
    bottom: 30px;
    width: 240px;
  }

  .c-cv02__btn {
    right: 0;
  }

  .c-cv02-list {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .c-cv02-list__link {
    padding: 12px 17px 13px;
  }

  .c-cv02-list__item-txt {
    font-size: 1.5rem;
  }
}

@media (hover: hover) and (pointer: fine) {
  .c-cv02-list__link:hover::before {
    background: rgba(var(--surface-color-500), 0.3);
  }

  .c-cv02-list__link:hover .c-cv02-list__item-ico::before {
    width: 30px;
    height: 30px;
  }

  .c-cv02-list__link:hover .c-cv02-list__item-ico::after {
    width: 13px;
    height: 7px;
  }
}

.c-cv02.is-shown {
  opacity: 1;
  transform: translateX(0);
}

@media all and (max-width: 767px) {
  .c-cv02.is-shown+.l-footer .l-footer__inner {
    padding-bottom: 200px;
  }
}

.c-cv02-list.is-col1 .c-cv02-list__link {
  background: #3B4D84;
}

@media all and (max-width: 767px) {
  .c-cv02-list.is-col1 {
    grid-template-columns: repeat(1, 1fr);
  }

  .c-cv02-list.is-col1 .c-cv02-list__link {
    padding: 22px 23px 22px 30px;
  }
}

@media all and (min-width: 768px) {
  .c-cv02-list.is-col1 .c-cv02-list__link {
    padding: 18px 17px;
  }
}

/* .c-form
================================================== */
input.c-form-parts,
select.c-form-parts,
textarea.c-form-parts,
button.c-form-parts {
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 50px;
  padding: 5px 20px;
  font-size: 1.4rem;
  border: 1px solid var(--gray-color-500-rgb);
  background: #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
}

input.c-form-parts:focus,
select.c-form-parts:focus,
textarea.c-form-parts:focus,
button.c-form-parts:focus {
  border-color: var(--main-color-500-rgb);
  box-shadow: 0 0 6px rgba(0, 52, 153, 0.5);
}

@media all and (min-width: 768px) {

  input.c-form-parts,
  select.c-form-parts,
  textarea.c-form-parts,
  button.c-form-parts {
    font-size: 1.6rem;
  }
}

@media all and (min-width: 768px) {
  input.c-form-parts {
    width: 700px;
  }
}

textarea.c-form-parts {
  height: 260px;
  padding: 15px 20px;
  resize: vertical;
}

@media all and (min-width: 768px) {
  textarea.c-form-parts {
    height: 367px;
  }
}

select.c-form-parts {
  padding-right: 24px;
  background: #fff no-repeat right 0 top 50%/50px;
  background-image: url(../img/contact/ico_select01.jpg);
}

select.c-form-parts:invalid {
  color: var(--gray-color-800-rgb);
}

select.c-form-parts option {
  color: var(--black-rgb);
}

select.c-form-parts option:first-child {
  color: var(--gray-color-800-rgb);
}

@media all and (min-width: 768px) {
  select.c-form-parts.is-pc-450 {
    width: 450px;
  }
}

.c-form-parts-list {
  display: flex;
  flex-wrap: wrap;
  margin-right: -20px;
}

.c-form-parts-list .c-form-parts {
  margin-right: 20px;
}

.c-form-parts-list.is-flex-enb {
  justify-content: flex-end;
}

/* .c-form.is-default
================================================== */
.c-form.is-default table,
.c-form.is-default thead,
.c-form.is-default tbody,
.c-form.is-default tr,
.c-form.is-default th,
.c-form.is-default td {
  display: block;
}

.c-form.is-default th {
  padding-top: 30px;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: left;
}

.c-form.is-default td {
  padding-top: 15px;
}

@media all and (min-width: 768px) {
  .c-form.is-default th {
    font-size: 1.8rem;
    padding-top: 40px;
  }
}

/* .c-form-label
================================================== */
.c-form-label {
  display: inline-block;
  text-align: center;
  width: 51px;
  height: 22px;
  margin-left: 10px;
  color: var(--main-color-500-rgb);
  background: var(--gray-color-500-rgb);
  font-size: 1rem;
  line-height: 22px;
  border-radius: 9999px;
  transform: translateY(-2px);
}

.c-form-label.is-required {
  color: #fff;
  background: var(--main-color-500-rgb);
}

@media all and (min-width: 768px) {
  .c-form-label {
    margin-left: 20px;
    font-size: 1.2rem;
    width: 55px;
    height: 26px;
    line-height: 26px;
  }
}

/* .c-form-note
================================================== */
.c-form-note {
  display: block;
  font-weight: 400;
  color: var(--gray-color-800-rgb);
  font-size: 1.3rem;
}

.c-form-note.is-inline {
  display: inline;
}

td .c-form-note {
  margin-bottom: 5px;
  margin-top: -5px;
}

@media all and (min-width: 768px) {
  td .c-form-note {
    margin-top: -3px;
  }
}

.mw_wp_form_confirm .c-form-note {
  display: none;
}

/* .c-form-postcode
================================================== */
.c-form-postcode {
  display: flex;
  flex-wrap: wrap;
}

.c-form-postcode__prefix {
  max-width: 26px;
  flex-basis: 26px;
  padding-top: 5px;
}

.c-form-postcode__input {
  max-width: 100px;
  flex-basis: 100px;
}

/* 確認画面
================================================ */
.mw_wp_form_confirm .c-form-postcode .c-form-postcode__prefix,
.is-confirm .c-form-postcode .c-form-postcode__prefix {
  max-width: none;
  flex-basis: 0;
  padding-top: 0;
}

.mw_wp_form_confirm .c-form-postcode .c-form-postcode__input,
.is-confirm .c-form-postcode .c-form-postcode__input {
  max-width: none;
  flex-basis: 0;
}

/* .c-form-item
================================================== */
.c-form-item {
  display: flex;
}

.c-form-item+.c-form-item {
  margin-top: 10px;
}

.c-form-item-list {
  display: flex;
}

.c-form-item-list .c-form-item+.c-form-item {
  margin-top: 0;
  margin-left: 14px;
}

.c-form-item__prefix {
  min-width: 20px;
  margin-right: 10px;
  padding-top: 35px;
}

.c-form-item__suffix {
  min-width: 20px;
  margin-left: 10px;
  padding-top: 5px;
}

.c-form-item__input {
  flex: 1;
}

.c-form-item .c-form-item__input [name*=year] {
  width: 80px;
}

.c-form-item .c-form-item__input [name*=month] {
  width: 64px;
}

.c-form-item .c-form-item__input [name*=day] {
  width: 64px;
}

@media all and (max-width: 374px) {
  .c-form-item .c-form-item__input [name*=year] {
    width: 58px;
  }

  .c-form-item .c-form-item__input [name*=month] {
    width: 50px;
    padding: 5px;
    background-position: right 8px top 50%;
  }

  .c-form-item .c-form-item__input [name*=day] {
    width: 50px;
    padding: 5px;
    background-position: right 8px top 50%;
  }
}

@media all and (min-width: 1160px) {
  .c-form-item {
    display: inline-flex;
  }

  .c-form-item+.c-form-item {
    margin: 0 0 0 20px;
  }

  .c-form-item__input {
    width: 200px;
  }

  .c-form-item-list .c-form-item__input {
    width: auto;
  }

  .c-form-item .c-form-item__input [name*=year] {
    width: 82px;
  }

  .c-form-item .c-form-item__input [name*=month] {
    width: 62px;
  }

  .c-form-item .c-form-item__input [name*=day] {
    width: 62px;
  }
}

/* 確認画面
================================================ */
.mw_wp_form_confirm .c-form-item .c-form-item__prefix,
.mw_wp_form_confirm .c-form-item .c-form-item__suffix,
.is-confirm .c-form-item .c-form-item__prefix,
.is-confirm .c-form-item .c-form-item__suffix {
  min-width: 0;
  padding-top: 0;
}

.mw_wp_form_confirm .c-form-item .c-form-item__input,
.is-confirm .c-form-item .c-form-item__input {
  width: auto;
}

/* .c-form-address
================================================== */
.c-form-address {
  margin-top: 15px;
}

/* .c-form-agreement
================================================== */
.c-form-agreement {
  margin-top: 30px;
}

.c-form-agreement .mwform-checkbox-field-text {
  line-height: 1.6;
}

.c-form-agreement .mwform-checkbox-field-text::before {
  top: 50% !important;
  transform: translateY(-50%);
}

.c-form-agreement .mwform-checkbox-field-text::after {
  top: 50% !important;
  transform: translateY(-50%);
  margin-top: -8px;
}

.c-form-agreement__txt {
  margin-top: 30px;
}

.c-form-agreement__txt+.c-form-agreement__txt {
  margin-top: 10px;
}

@media all and (min-width: 768px) {
  .c-form-agreement {
    text-align: center;
  }

  .c-form-agreement .mwform-checkbox-field-text::after {
    top: 20px !important;
  }

  .c-form-agreement__txt {
    margin-top: 50px;
    text-align: center;
  }
}

.mw_wp_form_confirm .c-form-agreement {
  display: none;
}

/* .c-form-btn
================================================== */
.c-form-area-btn {
  margin: 30px 20px 0;
  position: relative;
}

.c-form-area-btn::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(var(--surface-color-500), 0.2);
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  z-index: 2;
}

.c-form-area-btn::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--surface-color-500-rgb);
  top: 50%;
  right: 27px;
  transform: translateY(-50%);
}

@media all and (min-width: 768px) {
  .c-form-area-btn {
    width: 300px;
    margin: 30px auto 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }

  .c-form-area-btn::before {
    right: 25px;
    width: 24px;
    height: 24px;
  }

  .c-form-area-btn::after {
    right: 34px;
  }
}

.c-form-btn {
  margin: 0 auto;
  font-size: 1.4rem;
  font-weight: 700;
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
  cursor: pointer;
  position: relative;
  display: flex;
  width: 100%;
  height: 60px;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  color: #fff;
  background-color: var(--main-color-500-rgb);
  box-sizing: border-box;
}

.c-form-btn+.c-form-btn {
  margin-top: 10px;
}

@media all and (min-width: 768px) {
  .c-form-btn {
    height: 77px;
    font-size: 1.8rem;
    transition: all 0.3s ease;
  }

  .c-form-btn+.c-form-btn {
    margin-top: 0;
    margin-left: 20px;
  }

  .c-form-btn:hover {
    opacity: 0.7;
  }
}

/* .c-form .mwform-radio-field
================================================ */
.c-form .mwform-radio-field,
.c-form .c-radio {
  display: block;
}

.c-form .mwform-radio-field+.mwform-radio-field,
.c-form .mwform-radio-field+.c-radio,
.c-form .c-radio+.mwform-radio-field,
.c-form .c-radio+.c-radio {
  margin-top: 10px;
}

.c-form .mwform-radio-field label,
.c-form .c-radio label {
  display: block;
  cursor: pointer;
}

.c-form .mwform-radio-field input,
.c-form .c-radio input {
  display: none;
}

.c-form .mwform-radio-field .mwform-radio-field-text,
.c-form .mwform-radio-field .c-radio__text,
.c-form .c-radio .mwform-radio-field-text,
.c-form .c-radio .c-radio__text {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  vertical-align: top;
}

.c-form .mwform-radio-field .mwform-radio-field-text::before,
.c-form .mwform-radio-field .c-radio__text::before,
.c-form .c-radio .mwform-radio-field-text::before,
.c-form .c-radio .c-radio__text::before {
  box-sizing: border-box;
  position: absolute;
  top: 3px;
  left: 0;
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  border: 1px solid;
  border-radius: 50%;
}

.c-form .mwform-radio-field input:checked+.mwform-radio-field-text::after,
.c-form .mwform-radio-field input:checked+.c-radio__text::after,
.c-form .c-radio input:checked+.mwform-radio-field-text::after,
.c-form .c-radio input:checked+.c-radio__text::after {
  box-sizing: border-box;
  position: absolute;
  top: 4px;
  left: 1px;
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  border: 6px solid #fff;
  border-radius: 50%;
  background: var(--gray-color-800-rgb);
}

@media all and (min-width: 768px) {

  .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 {
    top: 5px;
  }

  .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 {
    top: 6px;
  }
}

.c-radio-list {
  display: flex;
  flex-wrap: wrap;
}

.c-radio-list .mwform-radio-field,
.c-radio-list .c-radio {
  display: inline-block;
  margin-right: 20px;
}

.c-radio-list .mwform-radio-field+.mwform-radio-field,
.c-radio-list .mwform-radio-field+.c-radio,
.c-radio-list .c-radio+.mwform-radio-field,
.c-radio-list .c-radio+.c-radio {
  margin-top: 0;
}

/* .c-form .mwform-checkbox-field
================================================ */
.c-form .mwform-checkbox-field,
.c-form .c-checkbox {
  display: block;
}

.c-form .mwform-checkbox-field+.mwform-checkbox-field,
.c-form .mwform-checkbox-field+.c-checkbox,
.c-form .c-checkbox+.mwform-checkbox-field,
.c-form .c-checkbox+.c-checkbox {
  margin-top: 10px;
}

.c-form .mwform-checkbox-field label,
.c-form .c-checkbox label {
  display: block;
  cursor: pointer;
}

.c-form .mwform-checkbox-field input,
.c-form .c-checkbox input {
  display: none;
}

.c-form .mwform-checkbox-field .mwform-checkbox-field-text,
.c-form .mwform-checkbox-field .c-checkbox__text,
.c-form .c-checkbox .mwform-checkbox-field-text,
.c-form .c-checkbox .c-checkbox__text {
  position: relative;
  display: inline-block;
  padding: 12px 0 12px 44px;
  vertical-align: top;
}

.c-form .mwform-checkbox-field .mwform-checkbox-field-text::before,
.c-form .mwform-checkbox-field .c-checkbox__text::before,
.c-form .c-checkbox .mwform-checkbox-field-text::before,
.c-form .c-checkbox .c-checkbox__text::before {
  box-sizing: border-box;
  position: absolute;
  top: 8px;
  left: 0;
  content: "";
  display: block;
  width: 36px;
  height: 36px;
  border: 1px solid var(--gray-color-500-rgb);
  background: #fff;
}

.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 {
  position: absolute;
  top: 18px;
  left: 7px;
  content: "";
  display: block;
  width: 20px;
  height: 7px;
  border-style: solid;
  border-width: 4px 4px 0 0;
  border-color: var(--main-color-500-rgb);
  transform: rotate(135deg);
}

@media all and (min-width: 768px) {

  .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 {
    padding: 6px 0 6px 33px;
  }

  .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 {
    width: 25px;
    height: 25px;
    top: 10px;
  }

  .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 {
    top: 17px;
    left: 5px;
    width: 13px;
    height: 5px;
    border-width: 3px 3px 0 0;
  }
}

.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;
}

.c-checkbox-list__box {
  padding: 20px 20px 12px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
}

.c-checkbox-list__head {
  line-height: var(--line-height-head);
  font-weight: 700;
  padding-bottom: 10px;
  border-bottom: solid 1px var(--gray-color-500-rgb);
  margin-bottom: 12px;
}

@media all and (max-width: 767px) {
  .c-checkbox-list__box+.c-checkbox-list__box {
    margin-top: 10px;
  }
}

@media all and (min-width: 768px) {
  .c-checkbox-list__box {
    padding: 30px 30px 22px;
  }

  .c-checkbox-list__box-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .c-checkbox-list__box .c-checkbox-list {
    margin-right: -20px;
  }
}

/* .mw_wp_form リセット
================================================ */
.mw_wp_form .c-form .horizontal-item+.horizontal-item {
  margin-left: 0;
}

/* .c-form-thanks
================================================ */
.c-form-thanks__txt {
  margin-bottom: 10px;
}

/*  .c-head01
================================================== */
.c-head01 {
  line-height: var(--line-height-head);
}

.c-head01__main {
  font-size: 1.3rem;
  font-weight: 700;
}

.c-head01__main::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 6px;
  background: currentColor;
  border-radius: 50%;
}

.c-head01__en {
  margin-top: 8px;
  font-size: 4.5rem;
}

@media all and (min-width: 768px) {
  .c-head01__main {
    font-size: 1.5rem;
  }

  .c-head01__main::before {
    width: 11px;
    height: 11px;
    margin-right: 10px;
  }

  .c-head01__en {
    margin-top: 14px;
    font-size: 8rem;
  }
}

/*  .c-head01.is-default
================================================== */
.c-head01.is-default .c-head01__main::before {
  background: var(--main-color-500-rgb);
}

.c-head01.is-default .c-head01__en {
  color: var(--main-color-500-rgb);
}

/*  .c-head01.is-sm-sp
================================================== */
@media all and (max-width: 767px) {
  .c-head01.is-sm-sp .c-head01__en {
    font-size: 3.5rem;
  }
}

/*  .c-head01.is-sm
================================================== */
.c-head01.is-sm .c-head01__en {
  font-size: 3.5rem;
}

@media all and (min-width: 768px) {
  .c-head01.is-sm .c-head01__en {
    font-size: 5rem;
  }
}

/* .c-head02
===================================*/
.c-head02 {
  line-height: var(--line-height-head);
  margin-bottom: 40px;
}

.c-head02__en {
  color: var(--main-color-500-rgb);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 8px;
  padding-left: 16px;
  position: relative;
}

.c-head02__en::before {
  content: "";
  background-color: currentColor;
  border-radius: 50%;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 8px;
  height: 8px;
}

.c-head02__ja {
  font-size: 2.3rem;
  font-weight: 700;
}

@media all and (min-width: 768px) {
  .c-head02 {
    margin-bottom: 80px;
  }

  .c-head02__en {
    font-size: 1.5rem;
    margin-bottom: 13px;
    padding-left: 21px;
  }

  .c-head02__en::before {
    width: 11px;
    height: 11px;
  }

  .c-head02__ja {
    font-size: 3.9rem;
  }
}

/* .c-head02.is-sm
===================================*/
.c-head02.is-sm {
  margin-bottom: 4px;
}

.c-head02.is-sm .c-head02__en {
  margin-bottom: 4px;
}

.c-head02.is-sm .c-head02__ja {
  font-size: 1.6rem;
}

@media all and (min-width: 768px) {
  .c-head02.is-sm {
    margin-bottom: 10px;
  }

  .c-head02.is-sm .c-head02__ja {
    font-size: 2.6rem;
  }
}

/* .c-head03
===================================*/
.c-head03 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: var(--line-height-head);
  margin-bottom: 23px;
}

@media all and (min-width: 768px) {
  .c-head03 {
    font-size: 2.8rem;
    margin-bottom: 29px;
  }
}

/* .c-head03.is-center
===================================*/
.c-head03.is-center {
  text-align: center;
}

/* .c-head03.is-lg-pc
===================================*/
@media all and (min-width: 768px) {
  .c-head03.is-lg-pc {
    font-size: 3.5rem;
  }
}

/* .c-head04
===================================*/
.c-head04 {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: var(--line-height-head);
  padding-top: 15px;
  padding-left: 45px;
  margin-bottom: 15px;
  border-top: solid 1px var(--gray-color-500-rgb);
  position: relative;
}

.c-head04::before {
  position: absolute;
  content: "";
  width: 122px;
  height: 1px;
  top: -1px;
  left: 0;
  background: var(--main-color-500-rgb);
}

.c-head04::after {
  position: absolute;
  top: 15px;
  left: 0;
  counter-increment: number;
  content: counter(number, decimal-leading-zero) ".";
  font-size: 1.7rem;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: var(--main-color-500-rgb);
}

@media all and (min-width: 768px) {
  .c-head04 {
    font-size: 2.4rem;
    padding-top: 25px;
    padding-left: 40px;
    margin-bottom: 30px;
  }

  .c-head04::before {
    width: 400px;
  }

  .c-head04::after {
    top: 32px;
  }
}

/* .c-head04.is-no-zero
===================================*/
.c-head04.is-no-zero {
  padding-left: 32px;
}

.c-head04.is-no-zero::after {
  content: counter(number) ".";
}

/* .c-head04.is-article
===================================*/
.c-head04.is-article {
  padding-left: 50px;
}

.c-head04.is-article::after {
  content: "第" counter(number) "条";
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
  font-weight: normal;
}

@media all and (max-width: 767px) {
  .c-head04.is-article::after {
    top: 17px;
    font-size: 1.3rem;
  }
}

@media all and (min-width: 768px) {
  .c-head04.is-article {
    padding-left: 65px;
  }

  .c-head04.is-article::after {
    top: 30px;
  }
}

/* .c-head04.is-sp-block
===================================*/
@media all and (max-width: 767px) {
  .c-head04.is-sp-block {
    padding: 45px 0 0;
  }
}

/* .c-head05
===================================*/
.c-head05 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: var(--line-height-head);
  background-color: var(--gray-color-200-rgb);
  padding: 10px 20px;
  margin-bottom: 15px;
}

@media all and (min-width: 768px) {
  .c-head05 {
    font-size: 2.8rem;
    padding: 15px 30px;
    margin-bottom: 40px;
  }
}

/*  .c-head06
================================================== */
.c-head06 {
  position: relative;
  padding-left: 17px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
}

.c-head06::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 5px;
  height: calc(100% - 4px);
  background-color: var(--main-color-500-rgb);
  border-radius: 100vmax;
}

@media all and (min-width: 768px) {
  .c-head06 {
    padding-left: 19px;
    font-size: 2.4rem;
  }

  .c-head06::before {
    top: 0;
  }
}

/* .c-ico
================================================== */
.c-ico {
  display: inline-block;
  vertical-align: middle;
}

.c-ico svg {
  transition: all 0.3s ease;
}

/* .c-link01
===================================*/
.c-link01 {
  background-color: rgb(var(--main-color-100));
}

.c-link01__inner {
  margin: auto;
  padding: 60px 40px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.c-link01__head-in {
  display: flex;
  align-items: center;
}

.c-link01__head-txt {
  font-size: 1.6rem;
  font-weight: 700;
}

.c-link01__head-ico {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  margin-top: 2px;
  margin-left: 10px;
}

.c-link01__head-ico::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 5px;
  color: var(--main-color-500-rgb);
  background-color: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 13 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.443182 1.25079C0.255028 1.43894 0.162544 1.68131 0.162544 1.92687C0.162544 2.17243 0.255028 2.41799 0.443182 2.60295L5.52655 7.68951C5.70514 7.8681 5.9507 7.97015 6.20263 7.97015C6.45457 7.97015 6.70013 7.8681 6.87872 7.68951L11.9653 2.60295C12.3384 2.22983 12.3384 1.62391 11.9653 1.25079C11.5922 0.877667 10.9862 0.877667 10.6131 1.25079L6.20582 5.65808L1.79535 1.25079C1.42223 0.877667 0.816303 0.877667 0.443182 1.25079Z" fill="currentColor"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 13 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.443182 1.25079C0.255028 1.43894 0.162544 1.68131 0.162544 1.92687C0.162544 2.17243 0.255028 2.41799 0.443182 2.60295L5.52655 7.68951C5.70514 7.8681 5.9507 7.97015 6.20263 7.97015C6.45457 7.97015 6.70013 7.8681 6.87872 7.68951L11.9653 2.60295C12.3384 2.22983 12.3384 1.62391 11.9653 1.25079C11.5922 0.877667 10.9862 0.877667 10.6131 1.25079L6.20582 5.65808L1.79535 1.25079C1.42223 0.877667 0.816303 0.877667 0.443182 1.25079Z" fill="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all 0.3s ease;
  transform: rotate(-90deg);
}

.c-link01__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 15px;
  margin-top: 30px;
}

.c-link01__list-item-in {
  display: grid !important;
  gap: 12px;
}

.c-link01__list-item-txt {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: var(--line-height-head);
  padding-left: 12px;
  position: relative;
}

.c-link01__list-item-txt::before {
  content: "";
  display: inline-block;
  width: 11px;
  height: 6px;
  color: var(--main-color-500-rgb);
  background-color: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 13 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.443182 1.25079C0.255028 1.43894 0.162544 1.68131 0.162544 1.92687C0.162544 2.17243 0.255028 2.41799 0.443182 2.60295L5.52655 7.68951C5.70514 7.8681 5.9507 7.97015 6.20263 7.97015C6.45457 7.97015 6.70013 7.8681 6.87872 7.68951L11.9653 2.60295C12.3384 2.22983 12.3384 1.62391 11.9653 1.25079C11.5922 0.877667 10.9862 0.877667 10.6131 1.25079L6.20582 5.65808L1.79535 1.25079C1.42223 0.877667 0.816303 0.877667 0.443182 1.25079Z" fill="currentColor"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 13 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.443182 1.25079C0.255028 1.43894 0.162544 1.68131 0.162544 1.92687C0.162544 2.17243 0.255028 2.41799 0.443182 2.60295L5.52655 7.68951C5.70514 7.8681 5.9507 7.97015 6.20263 7.97015C6.45457 7.97015 6.70013 7.8681 6.87872 7.68951L11.9653 2.60295C12.3384 2.22983 12.3384 1.62391 11.9653 1.25079C11.5922 0.877667 10.9862 0.877667 10.6131 1.25079L6.20582 5.65808L1.79535 1.25079C1.42223 0.877667 0.816303 0.877667 0.443182 1.25079Z" fill="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all 0.3s ease;
  transform: rotate(-90deg);
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -3px;
}

.c-link01__list-item-img {
  order: -1;
  border-radius: 7px;
  overflow: hidden;
}

@media all and (min-width: 768px) {
  .c-link01__inner {
    padding: 100px 0 122px;
  }

  .c-link01__head-txt {
    font-size: 2.5rem;
    position: relative;
  }

  .c-link01__head-txt::before {
    content: "";
    background-color: currentColor;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    transition: transform 0.3s ease-out;
    transform: scaleX(0);
    transform-origin: top left;
  }

  :hover>.c-link01__head-txt::before {
    transform: scaleX(1);
  }

  .c-link01__head-ico {
    margin-top: 0;
    margin-left: 16px;
    width: 50px;
    height: 50px;
  }

  .c-link01__head-ico::before {
    width: 13px;
    height: 8px;
  }

  .c-link01__list {
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
  }

  .c-link01__list.is-col3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .c-link01__list.is-col4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .c-link01__list-item-in {
    gap: 15px;
  }

  .c-link01__list-item-txt {
    font-size: 1.5rem;
    padding-left: 18px;
  }

  .c-link01__list-item-txt::before {
    width: 13px;
    height: 8px;
  }
}

/* .c-link01.is-bg-white
===================================*/
.c-link01.is-bg-white {
  background-color: transparent;
}

.c-link01.is-bg-white .c-link01__head-ico {
  background-color: var(--main-color-100-rgb);
}

/* .c-link02
===================================*/
.c-link02__inner {
  padding: 0 20px 70px;
}

.c-link02__link {
  border-radius: 20px;
  display: block;
  overflow: hidden;
  position: relative;
}

.c-link02__link[target=_blank] .c-link02__ico::before {
  content: "";
  display: inline-block;
  width: 11px;
  height: 11px;
  color: currentColor;
  background-color: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 11 11" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.76619 9.54753H1.13502V2.15261H5.50603V1.05273H0V10.6474H9.9012V5.31183H8.76619V9.54753Z" fill="currentColor"/><path d="M6.72519 0V1.09988H9.0556L4.55176 5.46428L5.36076 6.24824L9.8646 1.87213V4.13039H10.9996V0H6.72519Z" fill="currentColor"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 11 11" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.76619 9.54753H1.13502V2.15261H5.50603V1.05273H0V10.6474H9.9012V5.31183H8.76619V9.54753Z" fill="currentColor"/><path d="M6.72519 0V1.09988H9.0556L4.55176 5.46428L5.36076 6.24824L9.8646 1.87213V4.13039H10.9996V0H6.72519Z" fill="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all 0.3s ease;
  transform: rotate(0);
}

.c-link02__img {
  overflow: hidden;
}

.c-link02__img img {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  width: 100%;
  height: 100%;
}

.c-link02__area-txt {
  margin: auto;
  position: absolute;
  top: 18%;
  right: 0;
  left: 0;
  width: calc(100% - 40px);
}

.c-link02__txt {
  color: #fff;
  margin-top: 15px;
}

.c-link02__ico {
  background-color: var(--main-color-100-rgb);
  border-radius: 50%;
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 50px;
  height: 50px;
}

.c-link02__ico::before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 8px;
  color: currentColor;
  background-color: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 13 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.443182 1.25079C0.255028 1.43894 0.162544 1.68131 0.162544 1.92687C0.162544 2.17243 0.255028 2.41799 0.443182 2.60295L5.52655 7.68951C5.70514 7.8681 5.9507 7.97015 6.20263 7.97015C6.45457 7.97015 6.70013 7.8681 6.87872 7.68951L11.9653 2.60295C12.3384 2.22983 12.3384 1.62391 11.9653 1.25079C11.5922 0.877667 10.9862 0.877667 10.6131 1.25079L6.20582 5.65808L1.79535 1.25079C1.42223 0.877667 0.816303 0.877667 0.443182 1.25079Z" fill="currentColor"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 13 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.443182 1.25079C0.255028 1.43894 0.162544 1.68131 0.162544 1.92687C0.162544 2.17243 0.255028 2.41799 0.443182 2.60295L5.52655 7.68951C5.70514 7.8681 5.9507 7.97015 6.20263 7.97015C6.45457 7.97015 6.70013 7.8681 6.87872 7.68951L11.9653 2.60295C12.3384 2.22983 12.3384 1.62391 11.9653 1.25079C11.5922 0.877667 10.9862 0.877667 10.6131 1.25079L6.20582 5.65808L1.79535 1.25079C1.42223 0.877667 0.816303 0.877667 0.443182 1.25079Z" fill="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all 0.3s ease;
  background-color: var(--main-color-500-rgb);
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: rotate(-90deg);
}

@media all and (min-width: 768px) {
  .c-link02__inner {
    padding: 0 50px 153px;
  }

  .c-link02__area-txt {
    margin: auto;
    top: 0;
    right: auto;
    bottom: 0;
    left: 96px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }

  .c-link02__txt {
    margin-top: 24px;
  }

  .c-link02__ico {
    margin: auto;
    top: 0;
    right: 96px;
    bottom: 0;
    width: 80px;
    height: 80px;
  }
}

@media all and (min-width: 1360px) {
  .c-link02__area-txt {
    left: 210px;
  }

  .c-link02__ico {
    right: 210px;
  }
}

/*  .c-list01
================================================== */
.c-list01__item {
  position: relative;
  padding-left: 1em;
  text-indent: -1em;
}

.c-list01__item::before {
  content: "・";
}

/*  .c-list02
================================================== */
.c-list02__item {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 5px;
}

.c-list02__item::before {
  content: "";
  position: relative;
  top: 11px;
  left: 8px;
  display: block;
  width: 6px;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: var(--main-color-500-rgb);
}

.c-list02__item+.c-list02__item {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #ccc;
}

@media all and (min-width: 768px) {
  .c-list02__item {
    grid-template-columns: 25px 1fr;
  }

  .c-list02__item::before {
    top: 12px;
    left: 9px;
  }

  .c-list02__item+.c-list02__item {
    margin-top: 15px;
    padding-top: 15px;
  }
}

/* .c-menu01-col3
===================================*/
.c-menu01-col3 {
  position: relative;
}

.c-menu01+.c-menu01-col3 {
  margin-top: 105px;
}

.c-menu01+.c-menu01-col3::before {
  content: "";
  background-color: var(--gray-color-500-rgb);
  position: absolute;
  top: -65px;
  left: 0;
  width: 100%;
  height: 1px;
}

.c-menu01-col3 .c-menu01:first-child::before {
  content: none;
}

@media all and (max-width: 767px) {
  .c-menu01-col3 {
    margin: auto;
    max-width: 590px;
  }
}

@media all and (min-width: 768px) {
  .c-menu01-col3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
  }

  .c-menu01+.c-menu01-col3 {
    margin-top: 200px;
  }

  .c-menu01+.c-menu01-col3::before {
    top: -100px;
  }
}

/* .c-menu01
===================================*/
.c-menu01 {
  display: grid;
  gap: 32px 85px;
  position: relative;
}

.c-menu01::before {
  content: "";
  background-color: var(--gray-color-500-rgb);
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 1px;
}

.c-menu01+.c-menu01 {
  margin-top: 80px;
}

.c-menu01__head {
  margin-bottom: 20px;
}

.c-menu01__btn {
  margin-top: 30px;
}

.c-menu01__img {
  order: -1;
  border-radius: 10px;
  overflow: hidden;
}

@media all and (max-width: 767px) {
  .c-menu01 {
    margin: auto;
    max-width: 590px;
  }
}

@media all and (min-width: 768px) {
  .c-menu01 {
    grid-template-columns: 52% 40%;
    align-items: center;
    gap: 0 8%;
  }

  .c-menu01::before {
    top: -100px;
  }

  .c-menu01+.c-menu01 {
    margin-top: 200px;
  }

  .c-menu01__head {
    margin-bottom: 30px;
  }

  .c-menu01__btn {
    margin-top: 50px;
  }
}

/* .c-menu01.is-reverse
===================================*/
@media all and (min-width: 768px) {
  .c-menu01.is-reverse {
    grid-template-columns: 40% 52%;
  }

  .c-menu01.is-reverse .c-menu01__img {
    order: 0;
  }
}

/* .c-menu01.is-sm
===================================*/
@media all and (max-width: 767px) {
  .c-menu01.is-sm {
    grid-template: "img head" auto "img txt" auto "btn btn" auto/30% 67%;
    align-items: center;
    gap: 0 7%;
  }

  .c-menu01.is-sm::before {
    top: -30px;
  }

  .c-menu01.is-sm+.c-menu01.is-sm {
    margin-top: 65px;
  }

  .c-menu01.is-sm .c-menu01__area-txt {
    display: contents;
  }

  .c-menu01.is-sm .c-menu01__head {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-area: head;
    align-self: flex-end;
  }

  .c-menu01.is-sm .c-menu01__txt {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    grid-area: txt;
    align-self: flex-start;
  }

  .c-menu01.is-sm .c-menu01__btn {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
    grid-area: btn;
    margin-top: 20px;
  }

  .c-menu01.is-sm .c-menu01__img {
    grid-area: img;
  }

  .c-menu01.is-sm>.c-cv-en01__head {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }

  .c-menu01.is-sm>.c-cv-en01__txt {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }

  .c-menu01.is-sm>.c-cv-en01__btn {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
}

@media all and (min-width: 768px) {
  .c-menu01.is-sm {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .c-menu01.is-sm::before {
    content: none;
  }

  .c-menu01.is-sm+.c-menu01.is-sm {
    margin-top: 0;
  }

  .c-menu01.is-sm .c-menu01__btn {
    margin-top: 30px;
  }
}

/* .c-menu01.has-no-border
===================================*/
.c-menu01.has-no-border::before {
  content: none;
}

/* .c-menu01-col2
===================================*/
.c-menu01-col2 {
  position: relative;
}

.c-menu01+.c-menu01-col2 {
  margin-top: 105px;
}

.c-menu01+.c-menu01-col2::before {
  content: "";
  background-color: var(--gray-color-500-rgb);
  position: absolute;
  top: -65px;
  left: 0;
  width: 100%;
  height: 1px;
}

.c-menu01-col2 .c-menu01:first-child::before {
  content: none;
}

@media all and (max-width: 767px) {
  .c-menu01-col2 {
    margin: auto;
    max-width: 590px;
  }
}

@media all and (min-width: 768px) {
  .c-menu01-col2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
  }

  .c-menu01+.c-menu01-col2 {
    margin-top: 200px;
  }

  .c-menu01+.c-menu01-col2::before {
    top: -100px;
  }
}

/*  .c-note01
================================================== */
.c-note01 {
  font-size: 1.2rem;
  color: var(--gray-color-800-rgb);
  line-height: var(--line-height-head);
  padding-left: 1em;
  text-indent: -1em;
  margin-top: 10px;
}

.c-note01+.c-note01 {
  margin-top: 0;
}

@media all and (min-width: 768px) {
  .c-note01 {
    font-size: 1.4rem;
  }
}

/*  .c-note01.no-indent
================================================== */
.c-note01.no-indent {
  padding-left: 0;
  text-indent: 0;
}

/* .c-pager01
===================================*/
.c-pager01 {
  overflow: hidden;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  text-align: center;
  margin: 45px -3px -10px;
}

.c-pager01 li {
  margin: 0 3px 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: 30px;
  height: 30px;
  line-height: 1;
  border-radius: 50%;
  color: var(--gray-color-800-rgb);
  background: var(--gray-color-200-rgb);
  font-family: "Poppins", sans-serif;
  text-decoration: none;
}

.c-pager01 li.pages span {
  width: auto;
  border: 0;
}

.c-pager01 li.current span {
  color: var(--main-color-500-rgb);
  background: var(--main-color-100-rgb);
}

.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.extend span {
  border: 0;
}

.c-pager01 li.previous a,
.c-pager01 li.next a {
  width: 40px;
  height: 40px;
  color: var(--main-color-100-rgb);
  background: var(--main-color-100-rgb);
  position: relative;
}

.c-pager01 li.previous a::before,
.c-pager01 li.next a::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  border-top: solid 1px var(--main-color-500-rgb);
  border-right: solid 1px var(--main-color-500-rgb);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  margin-left: -2px;
  transition: all 0.3s ease;
}

.c-pager01 li.previous a::before {
  transform: translate(-50%, -50%) rotate(-135deg);
  margin-left: 2px;
}

@media all and (min-width: 768px) {
  .c-pager01 {
    margin-top: 50px;
  }

  .c-pager01 li {
    margin: 0 5px 10px;
  }

  .c-pager01 li a,
  .c-pager01 li span {
    width: 40px;
    height: 40px;
  }

  .c-pager01 li a {
    transition: all 0.3s ease;
  }

  .c-pager01 li a:hover {
    text-decoration: none;
    background-color: var(--main-color-500-rgb);
    color: #fff;
  }

  .c-pager01 li.first,
  .c-pager01 li.previous {
    margin-right: 25px;
  }

  .c-pager01 li.next,
  .c-pager01 li.last {
    margin-left: 25px;
  }

  .c-pager01 li.previous a,
  .c-pager01 li.next a {
    width: 60px;
    height: 60px;
  }

  .c-pager01 li.previous a::before,
  .c-pager01 li.next a::before {
    width: 7px;
    height: 7px;
    border-top: solid 2px var(--main-color-500-rgb);
    border-right: solid 2px var(--main-color-500-rgb);
  }

  .c-pager01 li.previous a:hover,
  .c-pager01 li.next a:hover {
    color: var(--main-color-500-rgb);
  }

  .c-pager01 li.previous a:hover::before,
  .c-pager01 li.next a:hover::before {
    border-color: #fff;
  }
}

/*  .c-pager02
================================================== */
.c-pager02 {
  position: relative;
  overflow: hidden;
  margin-top: 46px;
  padding-top: 46px;
  line-height: 1;
  border-top: solid 1px var(--gray-color-500-rgb);
}

.c-pager02 a {
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  height: 40px;
  padding: 10px 0;
  font-size: 1.6rem;
  font-weight: 700;
}

.c-pager02__previous,
.c-pager02__next {
  width: auto;
}

.c-pager02__previous a,
.c-pager02__next a {
  color: var(--main-color-500-rgb);
  position: relative;
}

.c-pager02__previous a::before,
.c-pager02__next a::before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 8px;
  color: currentColor;
  background-color: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 13 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.443182 1.25079C0.255028 1.43894 0.162544 1.68131 0.162544 1.92687C0.162544 2.17243 0.255028 2.41799 0.443182 2.60295L5.52655 7.68951C5.70514 7.8681 5.9507 7.97015 6.20263 7.97015C6.45457 7.97015 6.70013 7.8681 6.87872 7.68951L11.9653 2.60295C12.3384 2.22983 12.3384 1.62391 11.9653 1.25079C11.5922 0.877667 10.9862 0.877667 10.6131 1.25079L6.20582 5.65808L1.79535 1.25079C1.42223 0.877667 0.816303 0.877667 0.443182 1.25079Z" fill="currentColor"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 13 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.443182 1.25079C0.255028 1.43894 0.162544 1.68131 0.162544 1.92687C0.162544 2.17243 0.255028 2.41799 0.443182 2.60295L5.52655 7.68951C5.70514 7.8681 5.9507 7.97015 6.20263 7.97015C6.45457 7.97015 6.70013 7.8681 6.87872 7.68951L11.9653 2.60295C12.3384 2.22983 12.3384 1.62391 11.9653 1.25079C11.5922 0.877667 10.9862 0.877667 10.6131 1.25079L6.20582 5.65808L1.79535 1.25079C1.42223 0.877667 0.816303 0.877667 0.443182 1.25079Z" fill="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all 0.3s ease;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  z-index: 2;
  transition: none;
  width: 11px;
  height: 5.5px;
  color: var(--main-color-500-rgb);
}

.c-pager02__previous a::after,
.c-pager02__next a::after {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--main-color-100-rgb);
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.c-pager02__previous {
  float: left;
}

.c-pager02__previous a {
  justify-content: flex-start;
  padding-left: 52px;
}

.c-pager02__previous a::before {
  left: 15px;
  transform: translateY(-50%) rotate(90deg);
}

.c-pager02__previous a::after {
  right: auto;
  left: 0;
}

.c-pager02__next {
  float: right;
}

.c-pager02__next a {
  justify-content: flex-end;
  padding-right: 52px;
}

.c-pager02__next a::before {
  right: 15px;
}

.c-pager02__all {
  display: flex;
  justify-content: center;
  clear: both;
  margin: 0 auto;
  padding-top: 30px;
}

.c-pager02__all a {
  width: 265px;
  height: 60px;
  padding: 20px 35px 20px 35px;
  font-size: 1.4rem;
}

.c-pager02__all .c-btn01__ico::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

@media all and (min-width: 768px) {
  .c-pager02 {
    margin-top: 100px;
    padding-top: 100px;
  }

  .c-pager02 a {
    height: 60px;
    font-size: 2rem;
    transition: all 0.3s ease;
  }

  .c-pager02 a:hover::before {
    color: #fff;
  }

  .c-pager02 a:hover::after {
    background: var(--main-color-500-rgb);
  }

  .c-pager02__previous,
  .c-pager02__next {
    margin-bottom: -70px;
  }

  .c-pager02__previous a::before,
  .c-pager02__next a::before {
    width: 12px;
    height: 7px;
  }

  .c-pager02__previous a::after,
  .c-pager02__next a::after {
    width: 60px;
    height: 60px;
  }

  .c-pager02__previous a {
    padding-left: 77px;
  }

  .c-pager02__previous a::before {
    left: 24px;
    margin-top: 1px;
  }

  .c-pager02__next a {
    padding-right: 77px;
  }

  .c-pager02__next a::before {
    right: 24px;
  }

  .c-pager02__all {
    padding-top: 0;
  }

  .c-pager02__all a {
    margin-top: -5px;
    width: 308px;
    height: 74px;
  }

  .c-pager02__all .c-btn01__txt {
    font-size: 1.8rem;
  }
}

/*  .c-single01
================================================== */
.c-single01__meta {
  margin-bottom: 15px;
}

.c-single01__date {
  margin-bottom: 10px;
  color: var(--gray-color-800-rgb);
  font-size: 1.2rem;
}

.c-single01__cat {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin: 0 -5px -5px 0;
}

.c-single01__cat-item {
  margin: 0 5px 5px 0;
  padding: 1px 15px;
  border-radius: 15px;
  background: var(--main-color-500-rgb);
  color: var(--surface-color-500-rgb);
  font-size: 1rem;
}

.c-single01__head {
  font-size: 2rem;
  font-weight: 700;
  line-height: var(--line-height-head);
}

.c-single01__sub {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: var(--line-height-head);
  color: var(--gray-color-800-rgb);
  margin-top: 10px;
}

.c-single01__header {
  padding-bottom: 20px;
  border-bottom: solid 1px var(--gray-color-500-rgb);
  margin-bottom: 40px;
}

@media all and (min-width: 768px) {
  .c-single01__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    flex: 0 0 252px;
    margin-bottom: 30px;
  }

  .c-single01__date {
    margin-bottom: 0;
    margin-right: 20px;
    font-size: 1.6rem;
  }

  .c-single01__cat {
    margin: 0;
  }

  .c-single01__cat-item {
    margin-bottom: 0;
    font-size: 1.2rem;
  }

  .c-single01__head {
    font-size: 3.2rem;
  }

  .c-single01__sub {
    font-size: 2.8rem;
  }

  .c-single01__header {
    padding-bottom: 40px;
    margin-bottom: 70px;
  }
}

/* .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 a {
  color: var(--main-color-500-rgb);
  text-decoration: underline;
}

.c-single-content ul,
.c-single-content ol {
  margin: 25px 0;
  line-height: var(--line-height-head);
}

.c-single-content ul li,
.c-single-content ol li {
  margin: 8px 0;
}

.c-single-content ol {
  padding-left: 1.8em;
  list-style-type: decimal-leading-zero;
}

.c-single-content ol ::marker {
  font-weight: 700;
  color: var(--main-color-500-rgb);
}

.c-single-content h2 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: var(--line-height-head);
  background-color: var(--gray-color-200-rgb);
  padding: 10px 20px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.c-single-content h3 {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: var(--line-height-head);
  padding-top: 15px;
  border-top: solid 1px var(--gray-color-500-rgb);
  margin-top: 30px;
  margin-bottom: 15px;
  position: relative;
}

.c-single-content h3::before {
  position: absolute;
  content: "";
  width: 122px;
  height: 1px;
  top: -1px;
  left: 0;
  background: var(--main-color-500-rgb);
}

.c-single-content .quotation,
.c-single-content blockquote {
  margin: 30px 0 40px;
  padding: 20px;
  background-color: var(--gray-color-200-rgb);
}

.c-single-content .quotation .src,
.c-single-content blockquote .src {
  text-align: right;
  color: var(--gray-color-800-rgb);
}

.c-single-content table th,
.c-single-content table td {
  border: solid 1px var(--gray-color-500-rgb);
  padding: 15px 20px;
  line-height: var(--line-height-head);
}

.c-single-content table th {
  background: var(--gray-color-200-rgb);
}

@media all and (min-width: 1160px) {
  .c-single-content {
    clear: both;
    overflow: hidden;
  }

  .c-single-content a:hover {
    text-decoration: none;
  }

  .c-single-content h2 {
    font-size: 2.8rem;
    padding: 15px 30px;
    margin-top: 70px;
    margin-bottom: 50px;
  }

  .c-single-content h2::before {
    width: 8px;
  }

  .c-single-content h3 {
    font-size: 2.4rem;
    padding-top: 25px;
    margin-top: 50px;
    margin-bottom: 30px;
  }

  .c-single-content .quotation,
  .c-single-content blockquote {
    margin: 40px 0 70px;
    padding: 40px 50px;
  }

  .c-single-content .quotation .src,
  .c-single-content blockquote .src {
    font-size: 1.4rem;
  }

  .c-single-content img {
    border-radius: 10px;
  }

  .c-single-content img.alignleft {
    float: left;
    margin-right: 50px;
    margin-bottom: 40px;
  }

  .c-single-content img.alignright {
    float: right;
    margin-left: 50px;
    margin-bottom: 40px;
  }

  .c-single-content img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
  }
}

/*  .c-table01
================================================== */
.c-table01 {
  border-bottom: solid 1px var(--gray-color-500-rgb);
}

.c-table01 th {
  border-top: solid 1px var(--gray-color-500-rgb);
  background: var(--gray-color-200-rgb);
  text-align: left;
}

.c-table01 th,
.c-table01 td {
  padding: 15px 20px;
  line-height: var(--line-height-head);
}

.c-table01 a[href*=".pdf"] {
  padding-left: 22px;
  position: relative;
  color: var(--main-color-500-rgb);
}

.c-table01 a[href*=".pdf"]::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url(../img/common/ico_pdf01.png) no-repeat 0 100%/cover;
}

@media all and (min-width: 768px) {

  .c-table01 th,
  .c-table01 td {
    padding: 25px 40px;
    line-height: var(--line-height-base);
  }

  .c-table01 th {
    width: 350px;
    box-sizing: border-box;
  }

  .c-table01 td {
    border-top: solid 1px var(--gray-color-500-rgb);
    padding-left: 25px;
  }

  .c-table01 a[href*=".pdf"] {
    padding-left: 35px;
  }

  .c-table01 a[href*=".pdf"]::before {
    width: 31px;
    height: 31px;
  }
}

/*  .c-table01.is-block-sp
================================================== */
@media all and (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-border
================================================== */
.c-table01.is-border {
  border-bottom: none;
}

.c-table01.is-border th,
.c-table01.is-border td {
  border: solid 1px var(--gray-color-500-rgb);
}

@media all and (min-width: 768px) {

  .c-table01.is-border th,
  .c-table01.is-border td {
    padding: 25px 20px;
  }
}

/*  .c-table01.is-center
================================================== */
.c-table01.is-center th,
.c-table01.is-center td {
  text-align: center;
}

/* .l-breadcrumb
================================================ */
.l-breadcrumb__inner {
  padding-left: 0;
  padding-right: 0;
}

@media all and (min-width: 768px) {
  .l-breadcrumb__inner {
    max-width: 1510px;
  }

  .l-sub-img__img+.l-breadcrumb {
    margin: auto;
    max-width: 1100px;
  }
}

.l-breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  padding-top: 20px;
  padding-bottom: 20px;
}

.l-breadcrumb-list__item {
  display: inline-block;
  font-size: 1.2rem;
  position: relative;
  vertical-align: top;
  color: var(--gray-color-800-rgb);
}

.l-breadcrumb-list__item+.l-breadcrumb-list__item {
  margin-left: 32px;
}

.l-breadcrumb-list__item+.l-breadcrumb-list__item:before {
  content: "";
  background-color: #d9d9d9;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -22px;
  width: 12px;
  height: 1px;
}

.l-breadcrumb-list__item-txt {
  color: rgb(var(--black));
}

@media all and (max-width: 767px) {
  .l-breadcrumb-list {
    white-space: nowrap;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    overflow: auto;
  }

  .l-breadcrumb-list::-webkit-scrollbar {
    display: none;
  }
}

@media all and (min-width: 768px) {
  .l-breadcrumb-list {
    padding-top: 27px;
    padding-bottom: 27px;
  }

  .l-breadcrumb-list__item {
    font-size: 1.4rem;
  }

  .l-breadcrumb-list__item-txt {
    position: relative;
  }

  .l-breadcrumb-list__item-txt::after {
    content: "";
    background-color: currentColor;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    transition: transform 0.3s ease-out;
    transform: scaleX(0);
    transform-origin: top left;
  }

  .l-breadcrumb-list__item-txt:hover::after {
    transform: scaleX(1);
  }
}

/* .l-footer
================================================ */
.l-footer {
  position: relative;
}

.l-footer__inner {
  padding-top: 30px;
  padding-bottom: 24px;
}

@media all and (min-width: 768px) {
  .l-footer__inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 98px;
    padding-bottom: 38px;
  }
}

/* .l-footer-info
================================================ */
.l-footer-info__logo {
  width: 265px;
  margin: 0 auto;
}

.l-footer-info__office {
  margin-top: 24px;
}

.l-footer-info__office-head {
  font-size: 1.6rem;
  font-weight: 700;
}

.l-footer-info__office-dlist-item {
  margin-top: 20px;
}

.l-footer-info__office-dlist-term {
  line-height: var(--line-height-head);
}

.l-footer-info__office-dlist-desc {
  margin-top: 6px;
}

.l-footer-info__office-dlist-link[target=_blank]::after {
  content: "";
  display: inline-block;
  width: 11px;
  height: 11px;
  color: var(--gray-color-800-rgb);
  background-color: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 11 11" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.76619 9.54753H1.13502V2.15261H5.50603V1.05273H0V10.6474H9.9012V5.31183H8.76619V9.54753Z" fill="currentColor"/><path d="M6.72519 0V1.09988H9.0556L4.55176 5.46428L5.36076 6.24824L9.8646 1.87213V4.13039H10.9996V0H6.72519Z" fill="currentColor"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 11 11" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.76619 9.54753H1.13502V2.15261H5.50603V1.05273H0V10.6474H9.9012V5.31183H8.76619V9.54753Z" fill="currentColor"/><path d="M6.72519 0V1.09988H9.0556L4.55176 5.46428L5.36076 6.24824L9.8646 1.87213V4.13039H10.9996V0H6.72519Z" fill="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all 0.3s ease;
  margin-left: 4px;
}

.l-footer-info__sns {
  display: flex;
  align-items: center;
  margin: 20px -10px 0;
}

.l-footer-info__sns-item {
  width: 32px;
  margin: 0 10px;
}

.l-footer-info__sns-item:last-child {
  width: 74px;
}

@media all and (min-width: 768px) {
  .l-footer-info__logo {
    width: 458px;
    margin: 0 0 0 -52px;
  }

  .l-footer-info__office {
    margin-top: 0;
  }

  .l-footer-info__office-head {
    font-size: 1.8rem;
  }

  .l-footer-info__office-dlist-item {
    margin-top: 25px;
  }

  .l-footer-info__office-dlist-desc {
    margin-top: 8px;
    font-size: 1.4rem;
  }

  .l-footer-info__sns {
    display: flex;
    align-items: center;
    margin: 30px -10px 0;
  }

  .l-footer-info__sns-item {
    width: 32px;
    margin: 0 10px;
  }

  .l-footer-info__sns-item:last-child {
    width: 74px;
  }
}

/* .l-footer-nav
================================================ */
.l-footer-nav {
  margin-top: 43px;
}

@media all and (min-width: 768px) {
  .l-footer-nav {
    display: flex;
    justify-content: space-between;
    flex: 0 0 658px;
    margin-top: 50px;
  }
}

.l-footer-nav-list {
  border-top: 1px solid var(--gray-color-500-rgb);
}

.l-footer-nav-list+.l-footer-nav-list {
  border-top: none;
}

.l-footer-nav-list__item {
  border-bottom: 1px solid var(--gray-color-500-rgb);
}

.l-footer-nav-list__item-txt {
  position: relative;
}

.l-footer-nav-list__item-in {
  display: block;
  padding: 20px;
  font-weight: 700;
  line-height: var(--line-height-head);
  position: relative;
}

.l-footer-nav-list__item-in[target=_blank]::after {
  content: "";
  display: inline-block;
  width: 11px;
  height: 11px;
  color: currentColor;
  background-color: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 11 11" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.76619 9.54753H1.13502V2.15261H5.50603V1.05273H0V10.6474H9.9012V5.31183H8.76619V9.54753Z" fill="currentColor"/><path d="M6.72519 0V1.09988H9.0556L4.55176 5.46428L5.36076 6.24824L9.8646 1.87213V4.13039H10.9996V0H6.72519Z" fill="currentColor"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 11 11" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.76619 9.54753H1.13502V2.15261H5.50603V1.05273H0V10.6474H9.9012V5.31183H8.76619V9.54753Z" fill="currentColor"/><path d="M6.72519 0V1.09988H9.0556L4.55176 5.46428L5.36076 6.24824L9.8646 1.87213V4.13039H10.9996V0H6.72519Z" fill="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all 0.3s ease;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  color: var(--main-color-500-rgb);
}

.l-footer-nav-list__item-btn {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  margin: 0;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
}

.l-footer-nav-list__item-btn::before,
.l-footer-nav-list__item-btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 30px;
  right: 20px;
  width: 14px;
  height: 2px;
  background-color: var(--main-color-500-rgb);
}

.l-footer-nav-list__item-btn::after {
  transform: rotate(-90deg);
  transition: all 0.3s ease;
}

@media all and (max-width: 1159px) {
  .l-footer-nav-list__item-btn.is-active::after {
    transform: rotate(0);
  }
}

.l-footer-nav-list__child {
  display: none;
  padding: 0 20px 20px;
}

.l-footer-nav-list__child-inner {
  padding-left: 0;
  padding-right: 0;
}

.l-footer-nav-list__child-item {
  line-height: 2.5;
}

.l-footer-nav-list__child-item-link {
  display: inline-block;
  color: var(--gray-color-800-rgb);
}

.l-footer-nav-list__child-item-link[target=_blank]::after {
  content: "";
  display: inline-block;
  width: 11px;
  height: 11px;
  color: currentColor;
  background-color: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 11 11" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.76619 9.54753H1.13502V2.15261H5.50603V1.05273H0V10.6474H9.9012V5.31183H8.76619V9.54753Z" fill="currentColor"/><path d="M6.72519 0V1.09988H9.0556L4.55176 5.46428L5.36076 6.24824L9.8646 1.87213V4.13039H10.9996V0H6.72519Z" fill="currentColor"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 11 11" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.76619 9.54753H1.13502V2.15261H5.50603V1.05273H0V10.6474H9.9012V5.31183H8.76619V9.54753Z" fill="currentColor"/><path d="M6.72519 0V1.09988H9.0556L4.55176 5.46428L5.36076 6.24824L9.8646 1.87213V4.13039H10.9996V0H6.72519Z" fill="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all 0.3s ease;
  margin-left: 0.3em;
}

.l-footer-nav-list__child-txt {
  display: none;
}

@media all and (min-width: 768px) {
  .l-footer-nav-list {
    border-top: none;
  }

  .l-footer-nav-list__item {
    width: 300px;
    border-top: 1px solid var(--gray-color-500-rgb);
    border-bottom: none;
    padding: 20px 0;
  }

  .l-footer-nav-list__item-in {
    padding: 0;
    font-size: 1.8rem;
  }

  .l-footer-nav-list__item-in[target=_blank]::after {
    right: 0;
  }

  .l-footer-nav-list__child {
    display: block;
    padding: 0;
  }

  .l-footer-nav-list__child-item {
    font-size: 1.4rem;
    line-height: 2;
  }

  .l-footer-nav-list__child-item-link {
    color: var(--black-rgb);
    font-size: 1.4rem;
  }

  .l-footer-nav-list__child-item-link[target=_blank]::after {
    color: var(--gray-color-800-rgb);
    margin-left: 6px;
  }

  .l-footer-nav-list__child-txt {
    display: block;
    margin-bottom: 16px;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: var(--line-height-head);
  }

  .l-footer-nav-list__child-link[target=_blank] {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .l-footer-nav-list__child-link[target=_blank]::after {
    content: "";
    display: inline-block;
    width: 11px;
    height: 11px;
    color: var(--main-color-500-rgb);
    background-color: currentColor;
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 11 11" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.76619 9.54753H1.13502V2.15261H5.50603V1.05273H0V10.6474H9.9012V5.31183H8.76619V9.54753Z" fill="currentColor"/><path d="M6.72519 0V1.09988H9.0556L4.55176 5.46428L5.36076 6.24824L9.8646 1.87213V4.13039H10.9996V0H6.72519Z" fill="currentColor"/></svg>');
    mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 11 11" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.76619 9.54753H1.13502V2.15261H5.50603V1.05273H0V10.6474H9.9012V5.31183H8.76619V9.54753Z" fill="currentColor"/><path d="M6.72519 0V1.09988H9.0556L4.55176 5.46428L5.36076 6.24824L9.8646 1.87213V4.13039H10.9996V0H6.72519Z" fill="currentColor"/></svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    transition: all 0.3s ease;
  }
}

@media (hover: hover) and (pointer: fine) {

  .l-footer-nav-list__child-link,
  .l-footer-nav-list a.l-footer-nav-list__item-in {
    position: relative;
    transition: all 0.3s ease;
  }

  .l-footer-nav-list__child-link::before,
  .l-footer-nav-list a.l-footer-nav-list__item-in::before {
    content: "";
    position: absolute;
    top: -21px;
    left: 0;
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--main-color-500-rgb);
    transform: scaleX(0);
    transform-origin: top right;
    transition: transform 0.3s ease-out;
  }

  .l-footer-nav-list__child-link:hover::before,
  .l-footer-nav-list a.l-footer-nav-list__item-in:hover::before {
    transform: scaleX(1);
    transform-origin: top left;
  }

  .l-footer-nav-list__child-item-link {
    position: relative;
  }

  .l-footer-nav-list__child-item-link::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 1px;
    background-color: currentColor;
    transform: scaleX(0);
    transform-origin: top left;
    transition: transform 0.3s ease-out;
  }

  .l-footer-nav-list__child-item-link:hover::before {
    transform: scaleX(1);
    transform-origin: top left;
  }
}

/* .l-footer-btm
================================================ */
.l-footer-btm {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-top: 34px;
  color: var(--gray-color-800-rgb);
}

.l-footer-btm__link-wrap {
  order: 1;
  font-size: 1.3rem;
}

.l-footer-btm__logo {
  order: 2;
}

.l-footer-btm__cr {
  order: 3;
  width: 100%;
  margin-top: 14px;
  text-align: center;
  font-size: 1.1rem;
}

@media all and (min-width: 768px) {
  .l-footer-btm {
    width: 100%;
    margin-top: 112px;
    padding-top: 30px;
    border-top: 1px solid var(--gray-color-500-rgb);
    color: var(--gray-color-800-rgb);
  }

  .l-footer-btm__link-wrap {
    order: 2;
    margin-left: auto;
    font-size: 1.4rem;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }

  .l-footer-btm__logo {
    order: 3;
    margin-left: 20px;
  }

  .l-footer-btm__cr {
    order: 1;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 1.2rem;
  }
}

@media (hover: hover) and (pointer: fine) {
  .l-footer-btm__link-in {
    position: relative;
  }

  .l-footer-btm__link-in::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 1px;
    background-color: currentColor;
    transform: scaleX(0);
    transform-origin: top left;
    transition: transform 0.3s ease-out;
  }

  .l-footer-btm__link-in:hover::before {
    transform: scaleX(1);
    transform-origin: top left;
  }
}

/* .l-header
================================================ */
@media (min-width: 1200px) {
  #home .l-header:not(.is-scroll) .l-header-info__logo {
    transition: all 0.3s ease;
  }

  #home .l-header:not(.is-scroll) .l-nav-list {
    justify-content: flex-end;
    transition: all 0.3s ease;
  }
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 320px;
  z-index: 2000;
}

@media (max-width: 1199px) {
  .l-header.is-scroll .l-header-info__logo {
    opacity: 0;
    pointer-events: none;
  }
}

@media all and (min-width: 768px) and (hover: hover) and (pointer: fine) {
  .l-header.is-scroll .l-header-info__logo {
    opacity: 1;
  }
}

@media (min-width: 1200px) {
  .l-header {
    display: flex;
    justify-content: space-between;
    min-width: 100%;
    transition: all 0.3s ease;
  }

  .l-header.is-hidden {
    transform: translateY(-100%);
  }

  .l-header.is-hidden.is-top {
    transform: translateY(0);
  }

  .l-header.is-active:not(.is-top) {
    background: var(--surface-color-500-rgb);
  }
}

/* .l-header-info
================================================== */
.l-header-info {
  position: relative;
  z-index: 3;
  height: var(--header-height-sp);
}

.l-header-info__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.l-header-info__logo {
  width: 168px;
  transition: all 0.3s ease;
}

@media all and (min-width: 768px) and (hover: hover) and (pointer: fine) {
  .l-header-info__logo {
    width: 196px;
  }
}

@media (min-width: 1200px) {
  .l-header-info {
    align-items: center;
    height: var(--header-height-pc);
  }

  .l-header-info__inner {
    height: 100%;
  }

  .l-header-info__logo {
    display: flex;
    align-items: center;
    width: clamp(155px, -420px + 47.917vw, 270px);
    margin-left: 20px;
  }
}

/* .l-nav-btn
================================================== */
.l-nav-btn {
  display: grid;
  place-items: center;
  flex: 0 0 var(--header-height-sp);
  height: var(--header-height-sp);
  background: var(--main-color-500-rgb);
  border: none;
  border-radius: 0 0 0 5px;
  outline: none;
  padding: 0;
  cursor: pointer;
}

.l-nav-btn__line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--surface-color-500-rgb);
  transition: all 0.3s ease;
}

.l-nav-btn__line-box {
  position: relative;
  width: 24px;
  height: 13px;
  margin: 0 auto;
}

.l-nav-btn__line:nth-child(1) {
  top: 0;
}

.l-nav-btn__line:nth-child(2) {
  top: 50%;
}

.l-nav-btn__line:nth-child(3) {
  top: 100%;
}

.l-nav-btn.is-open .l-nav-btn__line:nth-child(1) {
  top: 6px;
  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) {
  top: 6px;
  transform: rotate(45deg);
}

@media (min-width: 1200px) {
  .l-nav-btn {
    display: none;
  }
}

/* .l-nav
================================================ */
.l-nav {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  max-height: calc(100vh - var(--header-height-sp));
  min-width: 320px;
  padding: 70px 20px 55px;
  background: var(--surface-color-500-rgb);
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  transition: all 0.3s ease;
}

@media (max-width: 1199px) {
  .l-nav {
    overflow: auto;
    transform: translateX(120%);
    transition: all 0.3s ease;
  }

  .l-nav::-webkit-scrollbar {
    display: none;
  }

  .l-nav.is-open {
    transform: translateX(0);
  }
}

@media (min-width: 1200px) {
  .l-nav {
    position: static;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    min-width: auto;
    background: none;
    padding: 0 clamp(20px, -2.895px + 1.974vw, 35px) 0 0;
  }
}

/* .l-nav-list
================================================== */
.l-nav-list__item {
  border-bottom: 1px solid var(--gray-color-500-rgb);
}

.l-nav-list__item-txt {
  position: relative;
}

.l-nav-list__item-in {
  display: block;
  padding: 20px;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: var(--line-height-head);
}

.l-nav-list__item-btn {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  margin: 0;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
}

.l-nav-list__item-btn::before,
.l-nav-list__item-btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 30px;
  right: 20px;
  width: 14px;
  height: 2px;
  background-color: var(--main-color-500-rgb);
}

.l-nav-list__item-btn::after {
  transform: rotate(-90deg);
  transition: all 0.3s ease;
}

@media (max-width: 1199px) {
  .l-nav-list__item-btn.is-active::after {
    transform: rotate(0);
  }
}

.l-nav-list__child {
  display: none;
  padding: 0 20px 20px;
}

.l-nav-list__child-inner {
  padding-left: 0;
  padding-right: 0;
}

.l-nav-list__child-item {
  line-height: 2.5;
}

.l-nav-list__child-item-link {
  display: inline-block;
  color: var(--gray-color-800-rgb);
}

.l-nav-list__child-item-link[target=_blank]::after {
  content: "";
  display: inline-block;
  width: 11px;
  height: 11px;
  color: currentColor;
  background-color: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 11 11" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.76619 9.54753H1.13502V2.15261H5.50603V1.05273H0V10.6474H9.9012V5.31183H8.76619V9.54753Z" fill="currentColor"/><path d="M6.72519 0V1.09988H9.0556L4.55176 5.46428L5.36076 6.24824L9.8646 1.87213V4.13039H10.9996V0H6.72519Z" fill="currentColor"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 11 11" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.76619 9.54753H1.13502V2.15261H5.50603V1.05273H0V10.6474H9.9012V5.31183H8.76619V9.54753Z" fill="currentColor"/><path d="M6.72519 0V1.09988H9.0556L4.55176 5.46428L5.36076 6.24824L9.8646 1.87213V4.13039H10.9996V0H6.72519Z" fill="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all 0.3s ease;
  margin-left: 0.3em;
}

.l-nav-list__child-item-img {
  display: none;
}

.l-nav-list__child-txt {
  display: none;
}

@media (min-width: 768px) and (hover: none) and (pointer: coarse) {
  .l-nav-list__item-in {
    font-size: 1.4rem;
  }
}

@media (min-width: 1160px) and (hover: none) and (pointer: coarse) {
  .l-nav-list__item-in {
    font-size: 1.3rem;
  }
}

@media (min-width: 1200px) {
  .l-nav-list {
    display: flex;
    justify-content: center;
    height: 100%;
    padding-bottom: 36px;
    box-sizing: border-box;
  }

  .l-nav-list__item {
    height: 100%;
    margin: 0 15px;
    padding-bottom: 12px;
    border-bottom: none;
    box-sizing: border-box;
  }

  .l-nav-list__item.is-active .l-nav-list__item-btn::before {
    transform: translateX(-50%) rotate(180deg);
  }

  .l-nav-list__item-txt {
    height: 100%;
  }

  .l-nav-list__item-in {
    display: flex;
    align-items: flex-end;
    height: 100%;
    padding: 0;
    line-height: var(--line-height-base);
    font-size: clamp(1.4rem, 0.567rem + 0.694vw, 1.9rem);
  }

  .l-nav-list__item-btn {
    position: absolute;
    top: auto;
    bottom: -10px;
    height: 12px;
  }

  .l-nav-list__item-btn::after {
    content: none;
  }

  .l-nav-list__item-btn::before {
    top: auto;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 13px;
    height: 8px;
    -webkit-clip-path: path("M0.443182 1.25079C0.255028 1.43894 0.162544 1.68131 0.162544 1.92687C0.162544 2.17243 0.255028 2.41799 0.443182 2.60295L5.52655 7.68951C5.70514 7.8681 5.9507 7.97015 6.20263 7.97015C6.45457 7.97015 6.70013 7.8681 6.87872 7.68951L11.9653 2.60295C12.3384 2.22983 12.3384 1.62391 11.9653 1.25079C11.5922 0.877667 10.9862 0.877667 10.6131 1.25079L6.20582 5.65808L1.79535 1.25079C1.42223 0.877667 0.816303 0.877667 0.443182 1.25079Z");
    clip-path: path("M0.443182 1.25079C0.255028 1.43894 0.162544 1.68131 0.162544 1.92687C0.162544 2.17243 0.255028 2.41799 0.443182 2.60295L5.52655 7.68951C5.70514 7.8681 5.9507 7.97015 6.20263 7.97015C6.45457 7.97015 6.70013 7.8681 6.87872 7.68951L11.9653 2.60295C12.3384 2.22983 12.3384 1.62391 11.9653 1.25079C11.5922 0.877667 10.9862 0.877667 10.6131 1.25079L6.20582 5.65808L1.79535 1.25079C1.42223 0.877667 0.816303 0.877667 0.443182 1.25079Z");
    transition: all 0.3s ease;
  }

  .l-nav-list__item-btn.is-shown::before {
    transform: translateX(-50%) rotate(180deg);
  }

  .l-nav-list__child {
    position: absolute;
    top: var(--header-height-pc);
    right: 0;
    left: 0;
    width: 100%;
    margin: 0 auto;
    padding: 66px 0 76px;
    opacity: 0;
    display: block;
    visibility: hidden;
    background-color: var(--main-color-100-rgb);
    box-sizing: border-box;
    transition: all 0.3s ease;
  }

  .l-nav-list__child.is-shown {
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
  }

  .l-nav-list__child.is-shown::before {
    content: "";
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: 60px;
  }

  .l-nav-list__child-txt {
    display: block;
  }

  .l-nav-list__child-txt-main {
    position: relative;
    padding-left: 21px;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: var(--line-height-head);
  }

  .l-nav-list__child-txt-main::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 0;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--main-color-500-rgb);
  }

  .l-nav-list__child-txt-en {
    color: var(--main-color-500-rgb);
    font-size: 5rem;
    line-height: var(--line-height-head);
  }

  .l-nav-list__child-link {
    position: relative;
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding-right: 65px;
  }

  .l-nav-list__child-link::before,
  .l-nav-list__child-link::after {
    content: "";
    position: absolute;
    display: block;
  }

  .l-nav-list__child-link::before {
    right: 0;
    bottom: 15px;
    width: 50px;
    height: 50px;
    background: var(--surface-color-500-rgb);
    border-radius: 50%;
  }

  .l-nav-list__child-link::after {
    right: 20px;
    bottom: 34px;
    width: 8px;
    height: 13px;
    background: var(--main-color-500-rgb);
    -webkit-clip-path: path("M0.27984 11.8019C0.467995 11.9901 0.710364 12.0826 0.955922 12.0826C1.20148 12.0826 1.44704 11.9901 1.632 11.8019L6.71856 6.71856C6.89715 6.53998 6.9992 6.29442 6.9992 6.04248C6.9992 5.79055 6.89715 5.54499 6.71856 5.3664L1.632 0.27984C1.25888 -0.0932802 0.652961 -0.0932802 0.27984 0.27984C-0.0932802 0.652961 -0.0932802 1.25888 0.27984 1.632L4.68713 6.03929L0.27984 10.4498C-0.0932802 10.8229 -0.0932802 11.4288 0.27984 11.8019Z");
    clip-path: path("M0.27984 11.8019C0.467995 11.9901 0.710364 12.0826 0.955922 12.0826C1.20148 12.0826 1.44704 11.9901 1.632 11.8019L6.71856 6.71856C6.89715 6.53998 6.9992 6.29442 6.9992 6.04248C6.9992 5.79055 6.89715 5.54499 6.71856 5.3664L1.632 0.27984C1.25888 -0.0932802 0.652961 -0.0932802 0.27984 0.27984C-0.0932802 0.652961 -0.0932802 1.25888 0.27984 1.632L4.68713 6.03929L0.27984 10.4498C-0.0932802 10.8229 -0.0932802 11.4288 0.27984 11.8019Z");
  }

  .l-nav-list__child-list {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
  }

  .l-nav-list__child-item:first-child {
    display: none;
  }

  .l-nav-list__child-item:first-child:nth-last-child(4),
  .l-nav-list__child-item:first-child:nth-last-child(4)~.l-nav-list__child-item {
    width: 350px;
  }

  .l-nav-list__child-item:first-child:nth-last-child(6),
  .l-nav-list__child-item:first-child:nth-last-child(6)~.l-nav-list__child-item {
    width: 200px;
  }

  .l-nav-list__child-item-link {
    display: block;
    width: 100%;
  }

  .l-nav-list__child-item-link[target=_blank]::after {
    content: none;
  }

  .l-nav-list__child-item-link[target=_blank] .l-nav-list__child-item-txt::before {
    content: "";
    display: inline-block;
    width: 11px;
    height: 11px;
    color: currentColor;
    background-color: currentColor;
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 11 11" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.76619 9.54753H1.13502V2.15261H5.50603V1.05273H0V10.6474H9.9012V5.31183H8.76619V9.54753Z" fill="currentColor"/><path d="M6.72519 0V1.09988H9.0556L4.55176 5.46428L5.36076 6.24824L9.8646 1.87213V4.13039H10.9996V0H6.72519Z" fill="currentColor"/></svg>');
    mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 11 11" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.76619 9.54753H1.13502V2.15261H5.50603V1.05273H0V10.6474H9.9012V5.31183H8.76619V9.54753Z" fill="currentColor"/><path d="M6.72519 0V1.09988H9.0556L4.55176 5.46428L5.36076 6.24824L9.8646 1.87213V4.13039H10.9996V0H6.72519Z" fill="currentColor"/></svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    transition: all 0.3s ease;
    transform: none;
    top: 7px;
  }

  .l-nav-list__child-item-img {
    display: block;
    border-radius: 10px;
  }

  .l-nav-list__child-item-txt {
    position: relative;
    display: inline-block;
    margin-top: 15px;
    padding-left: 18px;
    color: var(--black-rgb);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: var(--line-height-head);
  }

  .l-nav-list__child-item-txt::before {
    position: absolute;
    top: 8px;
    left: 0;
    content: "";
    display: inline-block;
    width: 13px;
    height: 8px;
    color: var(--main-color-500-rgb);
    background-color: currentColor;
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 13 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.443182 1.25079C0.255028 1.43894 0.162544 1.68131 0.162544 1.92687C0.162544 2.17243 0.255028 2.41799 0.443182 2.60295L5.52655 7.68951C5.70514 7.8681 5.9507 7.97015 6.20263 7.97015C6.45457 7.97015 6.70013 7.8681 6.87872 7.68951L11.9653 2.60295C12.3384 2.22983 12.3384 1.62391 11.9653 1.25079C11.5922 0.877667 10.9862 0.877667 10.6131 1.25079L6.20582 5.65808L1.79535 1.25079C1.42223 0.877667 0.816303 0.877667 0.443182 1.25079Z" fill="currentColor"/></svg>');
    mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 13 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.443182 1.25079C0.255028 1.43894 0.162544 1.68131 0.162544 1.92687C0.162544 2.17243 0.255028 2.41799 0.443182 2.60295L5.52655 7.68951C5.70514 7.8681 5.9507 7.97015 6.20263 7.97015C6.45457 7.97015 6.70013 7.8681 6.87872 7.68951L11.9653 2.60295C12.3384 2.22983 12.3384 1.62391 11.9653 1.25079C11.5922 0.877667 10.9862 0.877667 10.6131 1.25079L6.20582 5.65808L1.79535 1.25079C1.42223 0.877667 0.816303 0.877667 0.443182 1.25079Z" fill="currentColor"/></svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    transition: all 0.3s ease;
    transform: rotate(-90deg);
  }
}

@media (min-width: 1200px) and (hover: hover) and (pointer: fine) {
  .l-nav-list__item-in::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 4px;
    background-color: var(--main-color-500-rgb);
    transform: scaleX(0);
    transform-origin: top right;
    transition: transform 0.3s ease-out;
  }

  .l-nav-list__item-in:hover::after {
    transform: scaleX(1);
    transform-origin: top left;
  }

  .l-nav-list__child-link .l-nav-list__child-txt-en {
    position: relative;
  }

  .l-nav-list__child-link .l-nav-list__child-txt-en::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    transform: scaleX(0);
    transform-origin: top left;
    transition: transform 0.3s ease-out;
  }

  .l-nav-list__child-link .l-nav-list__child-txt-en:hover::before {
    transform: scaleX(1);
    transform-origin: top left;
  }

  .l-nav-list__child-link::before,
  .l-nav-list__child-link::after {
    transition: all 0.3s ease;
  }

  .l-nav-list__child-link:hover::before {
    background: var(--main-color-500-rgb);
  }

  .l-nav-list__child-link:hover::after {
    background: var(--surface-color-500-rgb);
  }

  .l-nav-list__child-item-link .l-nav-list__child-item-img,
  .l-nav-list__child-item-link .l-nav-list__child-item-txt {
    transition: all 0.3s ease;
  }

  .l-nav-list__child-item-link .l-nav-list__child-item-txt::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 18px;
    display: block;
    width: calc(100% - 18px);
    height: 1px;
    background-color: currentColor;
    transform: scaleX(0);
    transform-origin: top right;
    transition: transform 0.3s ease-out;
  }

  .l-nav-list__child-item-link:hover .l-nav-list__child-item-img {
    opacity: 0.7;
  }

  .l-nav-list__child-item-link:hover .l-nav-list__child-item-txt {
    position: relative;
    color: var(--main-color-500-rgb);
  }

  .l-nav-list__child-item-link:hover .l-nav-list__child-item-txt::after {
    transform: scaleX(1);
    transform-origin: top left;
  }
}

/* .l-nav-contact
================================================ */
.l-nav-contact {
  display: none;
}

@media all and (min-width: 768px) and (hover: hover) and (pointer: fine) {
  .l-nav-contact {
    margin-left: 20px;
  }

  .l-nav-contact__link {
    font-size: 1.3rem;
  }
}

@media (min-width: 1200px) {
  .l-nav-contact {
    display: block;
    margin-left: clamp(10px, -5.263px + 1.316vw, 20px);
  }

  .l-nav-contact__link {
    padding: 18px clamp(20px, -40px + 5vw, 32px) 20px clamp(20px, -40px + 5vw, 32px);
    background: var(--main-color-500-rgb);
    color: var(--surface-color-500-rgb);
    border-radius: 35px;
    font-weight: 700;
  }

  .l-nav-contact__link::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 13px;
    color: currentColor;
    background-color: currentColor;
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 18 13" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="0.5" y="0.5" width="17" height="12" rx="1.5" stroke="currentColor"/><path d="M0.599609 0.619141L8.04738 7.44955C8.41976 7.79106 8.98838 7.80114 9.37263 7.47304L17.3996 0.619141" stroke="currentColor"/></svg>');
    mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 18 13" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="0.5" y="0.5" width="17" height="12" rx="1.5" stroke="currentColor"/><path d="M0.599609 0.619141L8.04738 7.44955C8.41976 7.79106 8.98838 7.80114 9.37263 7.47304L17.3996 0.619141" stroke="currentColor"/></svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    transition: all 0.3s ease;
    margin-right: 8px;
  }

  .l-nav-contact__link {
    font-size: clamp(1.4rem, 1.095rem + 0.263vw, 1.6rem);
  }
}

/* .l-nav-overlay
================================================ */
.l-nav-overlay {
  display: none;
  position: fixed;
  top: var(--header-height-sp);
  left: 0;
  width: 100%;
  height: calc(100% - var(--header-height-sp));
  background: rgba(0, 0, 0, 0.25);
  z-index: 1000;
}

@media (min-width: 1200px) {
  .l-nav-overlay {
    display: none !important;
  }
}

/* .l-header.is-lab
================================================ */
.l-header.is-lab {
  background: #7A92C9 !important;
}

.l-header.is-lab .l-header-info {
  background: #7A92C9;
  color: #fff;
}

.l-header.is-lab .l-header-contact__link {
  width: 60px;
  height: 60px;
  background: var(--main-color-500-rgb);
  border-radius: 0 0 0 5px;
  color: #fff;
  position: relative;
}

.l-header.is-lab .l-header-contact__link::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 13px;
  color: currentColor;
  background-color: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 18 13" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="0.5" y="0.5" width="17" height="12" rx="1.5" stroke="currentColor"/><path d="M0.599609 0.619141L8.04738 7.44955C8.41976 7.79106 8.98838 7.80114 9.37263 7.47304L17.3996 0.619141" stroke="currentColor"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 18 13" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="0.5" y="0.5" width="17" height="12" rx="1.5" stroke="currentColor"/><path d="M0.599609 0.619141L8.04738 7.44955C8.41976 7.79106 8.98838 7.80114 9.37263 7.47304L17.3996 0.619141" stroke="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all 0.3s ease;
}

@media all and (max-width: 767px) {
  .l-header.is-lab .l-header-contact__link::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 25px;
    height: 18px;
  }
}

@media all and (min-width: 768px) {
  .l-header.is-lab .l-nav-list__item-in {
    color: #fff;
  }

  .l-header.is-lab .l-nav-list__item-btn::before,
  .l-header.is-lab .l-nav-list__item-btn::after {
    background: #fff;
  }

  .l-header.is-lab .l-header-contact {
    position: fixed;
    top: 30px;
    right: 30px;
  }

  .l-header.is-lab .l-header-contact__link {
    width: 260px;
    height: 88px;
    border-radius: 9999px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }

  .l-header.is-lab .l-header-contact__link::before {
    margin-right: 10px;
  }

  .l-header.is-lab .l-header-contact__link-txt {
    line-height: 1.6;
    font-weight: 700;
  }

  .l-header.is-lab.is-scroll {
    background: none;
  }
}

/* .l-nav-lang
	================================================ */
.l-nav-lang {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  font-weight: 700;
}

.l-nav-lang__item {
  color: var(--gray-color-800-rgb);
}

.l-nav-lang__item.is-current {
  color: rgb(var(--black));
}

.l-nav-lang__item:last-child::before {
  content: "｜";
  margin-inline: 15px;
}

@media all and (min-width: 768px) {
  .l-nav-lang {
    margin-top: 0;
    margin-left: 30px;
    font-size: 1.4rem;
  }

  .l-nav-lang__item-in {
    position: relative;
  }

  .l-nav-lang__item-in::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 1px;
    background-color: currentColor;
    transform: scaleX(0);
    transform-origin: top right;
    transition: transform 0.3s ease-out;
  }

  .l-nav-lang__item-in:hover {
    color: var(--main-color-500-rgb);
  }

  .l-nav-lang__item-in:hover::after {
    transform: scaleX(1);
    transform-origin: top left;
  }
}

@media all and (min-width: 1360px) {
  .l-nav-lang {
    font-size: 1.9rem;
  }
}

/* .l-ie-attention
================================================ */
.l-ie-attention {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  font-weight: 700;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  box-sizing: border-box;
}

.l-ie-attention__txt {
  font-size: 3rem;
  margin-bottom: 18px;
}

.l-ie-attention__note {
  color: #989898;
}

.l-ie-attention__note .l-ie-attention__note-link {
  display: inline-block;
}

.l-ie-attention__note-link {
  font-size: 1.8rem;
  border-bottom: 1px solid;
  position: relative;
  margin-right: 25px;
  display: inline-block;
}

.l-ie-attention__note-link::after {
  content: "";
  position: absolute;
  right: -18px;
  top: 13px;
  width: 11px;
  height: 11px;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2012%2012%22%3E%20%3Cg%20id%3D%22link%22%20transform%3D%22translate(0.5%200.5)%22%3E%20%3Crect%20id%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2_23829%22%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%2023829%22%20width%3D%228%22%20height%3D%228%22%20transform%3D%22translate(3)%22%20fill%3D%22none%22%20stroke%3D%22%23989898%22%20stroke-width%3D%221%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_4323%22%20data-name%3D%22%E3%83%91%E3%82%B9%204323%22%20d%3D%22M688%2C718.025h-6v-6%22%20transform%3D%22translate(-682%20-707.025)%22%20fill%3D%22none%22%20stroke%3D%22%23989898%22%20stroke-width%3D%221%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center/100%;
}

/* .l-main-img HOME
================================================ */
.l-main-img {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
}

.l-main-img__pattern {
  position: absolute;
  z-index: 2;
  display: block;
  transition: all 0.3s ease;
  -webkit-animation: pattern 2.4s ease-in-out infinite alternate;
  animation: pattern 2.4s ease-in-out infinite alternate;
}

.l-main-img__pattern.is-item01 {
  bottom: 6px;
  right: -25px;
  width: 95px;
  height: 95px;
  background: url(../img/home/bg_pattern01.svg) no-repeat center/contain;
}

.l-main-img__pattern.is-item02 {
  top: 218px;
  right: 56px;
  width: 95px;
  height: 95px;
  background: url(../img/home/bg_pattern02.svg) no-repeat center/contain;
}

.l-main-img__pattern.is-item03 {
  top: 67px;
  left: 11px;
  width: 77px;
  height: 77px;
  background: url(../img/home/bg_pattern03.svg) no-repeat center/contain;
}

.l-main-img__bg {
  position: absolute;
  bottom: 28px;
  left: -71.7%;
  width: 251.1%;
}

.l-main-img__circle {
  position: absolute;
  will-change: border-radius, transform;
  transform-origin: 55% 55%;
  box-sizing: border-box;
  background-origin: border-box;
  background-clip: border-box;
  /* Smooth heart shape using SVG mask (anti-aliased) */
  /* -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path fill="%23fff" d="M50 17 C 38 4, 8 20, 50 62 C 92 20, 62 4, 50 17 Z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path fill="%23fff" d="M50 17 C 38 4, 8 20, 50 62 C 92 20, 62 4, 50 17 Z"/></svg>'); */
  /* ダイヤ形に変更（SVG mask） */
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon fill="%23fff" points="50,0 100,50 50,100 0,50"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon fill="%23fff" points="50,0 100,50 50,100 0,50"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 115% 115%;
  mask-size: 115% 115%;
  border: none;
  border-radius: 0;
  mix-blend-mode: multiply;
  border-width: 0;
}

.l-main-img__circle-wrap {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 96px;
  height: 80px;
  -webkit-animation-duration: 4.5s, 2.4s;
  animation-duration: 4.5s, 2.4s;
  -webkit-animation-timing-function: linear, ease-in-out;
  animation-timing-function: linear, ease-in-out;
  -webkit-animation-iteration-count: 1, infinite;
  animation-iteration-count: 1, infinite;
  -webkit-animation-direction: normal, alternate;
  animation-direction: normal, alternate;
  -webkit-animation-delay: 0, 4.5s;
  animation-delay: 0, 4.5s;
}

.l-main-img__circle.is-item01 {
  left: -10px;
  top: -20px;
  width: 512px;
  height: 512px;
  background-image: url(../img/home/bg_circle01.png);
}

.l-main-img__circle.is-item02 {
  left: -119px;
  top: -244px;
  width: 320px;
  height: 320px;
  background-image: url(../img/home/bg_circle02.png);
}

.l-main-img__circle.is-item03 {
  left: -247px;
  top: 2px;
  width: 293px;
  height: 293px;
  background-image: url(../img/home/bg_circle03.png);
}

.l-main-img__inner {
  position: relative;
  z-index: 6;
  padding-left: 20px;
  padding-bottom: 140px;
}

.l-main-img__copy {
  color: #333;
}

.l-main-img__copy-main {
  line-height: 1.2;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.l-main-img__copy-main .js-mv-copy {
  display: inline-block;
  overflow: hidden;
}

.l-main-img__copy-main .js-mv-copy span {
  display: inline-block;
  opacity: 0;
}

.l-main-img__copy-sub {
  margin-top: 15px;
  font-size: 1.1rem;
  line-height: var(--line-height-head);
}

@media all and (min-width: 768px) {
  .l-main-img {
    align-items: flex-end;
    justify-content: flex-start;
  }

  .l-main-img__pattern.is-item01 {
    bottom: 81px;
    right: 189px;
    width: 225px;
    height: 225px;
  }

  .l-main-img__pattern.is-item02 {
    top: 198px;
    right: 271px;
    width: 214px;
    height: 214px;
  }

  .l-main-img__pattern.is-item03 {
    top: 219px;
    left: 68px;
    width: 151px;
    height: 151px;
  }

  .l-main-img__bg {
    top: -647px;
    bottom: auto;
    left: -265px;
    width: 2429px;
  }

  .l-main-img__circle {
    transition: all 0.3s ease;
    border-width: 0;
  }

  .l-main-img__circle-wrap {
    width: 198px;
    height: 165px;
  }

  .l-main-img__circle.is-item01 {
    left: 128px;
    top: -187px;
    width: 1200px;
    height: 1200px;
  }

  .l-main-img__circle.is-item02 {
    left: -458px;
    top: -803px;
    width: 1000px;
    height: 1000px;
  }

  .l-main-img__circle.is-item03 {
    left: -665px;
    top: 58px;
    width: 850px;
    height: 850px;
  }

  .l-main-img__inner {
    width: 100%;
    padding-left: 5.6%;
    padding-bottom: 9.2vh;
  }

  .l-main-img__copy {
    width: 100%;
    box-sizing: border-box;
  }

  .l-main-img__copy-main {
    line-height: 1.2;
    font-size: clamp(5rem, 3.16vw + 2.57rem, 7rem);
  }

  .l-main-img__copy-sub {
    margin-top: 32px;
    font-size: 1.5rem;
  }
}

.l-main-img.is-scroll::before {
  left: -77px;
}

.l-main-img.is-scroll::after {
  right: -95px;
}

.l-main-img.is-scroll .l-main-img__bg,
.l-main-img.is-scroll .l-main-img__copy {
  opacity: 0;
}

@media all and (min-width: 768px) {
  .l-main-img.is-scroll::before {
    left: -151px;
  }

  .l-main-img.is-scroll::after {
    right: -225px;
  }
}

@-webkit-keyframes spin {
  to {
    transform: rotate(1turn);
  }
}

@keyframes spin {
  to {
    transform: rotate(1turn);
  }
}

@-webkit-keyframes circle01 {
  0% {
    border-radius: 64% 36% 72% 28%/70% 50% 50% 30%;
  }

  25% {
    border-radius: 35% 65% 42% 58%/56% 34% 66% 44%;
  }

  50% {
    border-radius: 35% 65% 28% 72%/43% 48% 52% 57%;
  }

  75% {
    border-radius: 62% 38% 41% 59%/58% 47% 53% 42%;
  }

  100% {
    border-radius: 48% 52% 54% 46%/49% 50% 50% 51%;
  }
}

@keyframes circle01 {
  0% {
    border-radius: 64% 36% 72% 28%/70% 50% 50% 30%;
  }

  25% {
    border-radius: 35% 65% 42% 58%/56% 34% 66% 44%;
  }

  50% {
    border-radius: 35% 65% 28% 72%/43% 48% 52% 57%;
  }

  75% {
    border-radius: 62% 38% 41% 59%/58% 47% 53% 42%;
  }

  100% {
    border-radius: 48% 52% 54% 46%/49% 50% 50% 51%;
  }
}

@-webkit-keyframes circle02 {
  0% {
    border-radius: 64% 36% 72% 28%/33% 50% 50% 67%;
  }

  25% {
    border-radius: 54% 46% 42% 58%/40% 48% 52% 60%;
  }

  50% {
    border-radius: 48% 52% 54% 46%/49% 50% 50% 51%;
  }

  75% {
    border-radius: 66% 34% 49% 51%/39% 66% 34% 61%;
  }

  100% {
    border-radius: 59% 41% 60% 40%/41% 72% 28% 59%;
  }
}

@keyframes circle02 {
  0% {
    border-radius: 64% 36% 72% 28%/33% 50% 50% 67%;
  }

  25% {
    border-radius: 54% 46% 42% 58%/40% 48% 52% 60%;
  }

  50% {
    border-radius: 48% 52% 54% 46%/49% 50% 50% 51%;
  }

  75% {
    border-radius: 66% 34% 49% 51%/39% 66% 34% 61%;
  }

  100% {
    border-radius: 59% 41% 60% 40%/41% 72% 28% 59%;
  }
}

@-webkit-keyframes circle03 {
  0% {
    border-radius: 62% 38% 41% 59%/58% 47% 53% 42%;
  }

  25% {
    border-radius: 48% 52% 54% 46%/49% 50% 50% 51%;
  }

  50% {
    border-radius: 59% 41% 60% 40%/41% 72% 28% 59%;
  }

  75% {
    border-radius: 64% 36% 72% 28%/70% 50% 50% 30%;
  }

  100% {
    border-radius: 64% 36% 72% 28%/33% 50% 50% 67%;
  }
}

@keyframes circle03 {
  0% {
    border-radius: 62% 38% 41% 59%/58% 47% 53% 42%;
  }

  25% {
    border-radius: 48% 52% 54% 46%/49% 50% 50% 51%;
  }

  50% {
    border-radius: 59% 41% 60% 40%/41% 72% 28% 59%;
  }

  75% {
    border-radius: 64% 36% 72% 28%/70% 50% 50% 30%;
  }

  100% {
    border-radius: 64% 36% 72% 28%/33% 50% 50% 67%;
  }
}

@-webkit-keyframes pattern {
  0% {
    transform: translate(4px, -4px);
  }

  100% {
    transform: translate(-4px, 4px);
  }
}

@keyframes pattern {
  0% {
    transform: translate(4px, -4px);
  }

  100% {
    transform: translate(-4px, 4px);
  }
}

@-webkit-keyframes circleMove {
  0% {
    transform: translate(-50%, -50%);
  }

  100% {
    transform: translate(-50%, -55%);
  }
}

@keyframes circleMove {
  0% {
    transform: translate(-50%, -50%);
  }

  100% {
    transform: translate(-50%, -55%);
  }
}

@-webkit-keyframes rotation {
  0% {
    transform: translate(-50%, -50%) rotate(0);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes rotation {
  0% {
    transform: translate(-50%, -50%) rotate(0);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@-webkit-keyframes rotateCircle {
  0% {
    transform: rotate(0deg) translate(-50%, -50%);
  }

  100% {
    transform: rotate(360deg) translate(-50%, -50%);
  }
}

@keyframes rotateCircle {
  0% {
    transform: rotate(0deg) translate(-50%, -50%);
  }

  100% {
    transform: rotate(360deg) translate(-50%, -50%);
  }
}

/* .l-sub-img
================================================ */
.l-sub-img {
  position: relative;
}

.l-sub-img::before {
  content: "";
  background: url(../img/common/bg_mv01_sp.png) no-repeat top right/contain;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 800px;
  z-index: -1;
}

.l-sub-img__inner {
  padding-top: 98px;
}

.l-sub-img__head {
  color: var(--main-color-500-rgb);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.6;
}

.l-sub-img__en {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 14px;
  padding-left: 14px;
  position: relative;
}

.l-sub-img__en::before {
  content: "";
  background-color: var(--main-color-500-rgb);
  border-radius: 50%;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 8px;
  height: 8px;
}

@media all and (min-width: 768px) {
  .l-sub-img::before {
    background-image: url(../img/common/bg_mv01_pc.png);
    height: 1100px;
  }

  .l-sub-img__inner {
    padding-top: 232px;
    max-width: 1510px;
  }

  .l-sub-img__head {
    font-size: 5rem;
  }

  .l-sub-img__en {
    padding-left: 21px;
    margin-bottom: 10px;
  }

  .l-sub-img__en::before {
    width: 11px;
    height: 11px;
  }
}

/* .l-sub-img.has-img
===================================*/
.l-sub-img.has-img .l-sub-img__inner {
  padding-top: 104px;
}

.l-sub-img.has-img .l-sub-img__img {
  border-radius: 20px 0 0 20px;
  margin-top: 32px;
  margin-right: -20px;
  overflow: hidden;
}

@media all and (min-width: 768px) {
  .l-sub-img.has-img .l-sub-img__inner {
    padding-top: 211px;
    max-width: var(--contents_wide_width_with_padding);
  }

  .l-sub-img.has-img .l-sub-img__img {
    margin-top: 50px;
    margin-right: -260px;
  }
}

/* .l-sub-img.is-lab
===================================*/
.l-sub-img.is-lab {
  padding-top: 60px;
  background: #fff;
}

.l-sub-img.is-lab .l-sub-img__content {
  background: linear-gradient(90deg, #fafcff 0%, #eaf2ff 100%);
}

.l-sub-img.is-lab .l-sub-img__img {
  padding-left: 10px;
}

.l-sub-img.is-lab .l-sub-img__img img {
  width: 100%;
}

.l-sub-img.is-lab .l-sub-img__area-txt {
  margin-top: -60px;
  padding: 0 0 20px 30px;
}

.l-sub-img.is-lab .l-sub-img__copy {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: var(--line-height-head);
  color: var(--main-color-500-rgb);
}

@media all and (min-width: 768px) {
  .l-sub-img.is-lab {
    padding-top: 120px;
  }

  .l-sub-img.is-lab .l-sub-img__content {
    padding: 40px;
    position: relative;
  }

  .l-sub-img.is-lab .l-sub-img__img {
    padding: 0;
    border-radius: 40px;
    overflow: hidden;
  }

  .l-sub-img.is-lab .l-sub-img__area-txt {
    position: absolute;
    bottom: 40px;
    left: 6.25%;
    padding: 0;
  }

  .l-sub-img.is-lab .l-sub-img__copy {
    font-size: 2.8rem;
  }

  .l-sub-img.is-lab .l-sub-img__head {
    font-size: 7.6rem;
  }
}

/* .l-case-img
================================================ */
.l-case-img {
  position: relative;
  padding-top: var(--header-height-sp);
  background-color: var(--surface-color-500-rgb);
}

.l-case-img::after {
  content: "";
  position: absolute;
  inset: var(--header-height-sp) 0 0;
  background: linear-gradient(to right, #fafcff 0%, #eaf2ff 100%);
}

.l-case-img__inner {
  position: relative;
  z-index: 2;
  display: grid;
  row-gap: 20px;
  padding-block: 50px 90px;
}

.l-case-img__head {
  display: grid;
  row-gap: 10px;
}

.l-case-img__head-label {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px 12px;
  background-color: #cce8fe;
  border-radius: 100vmax;
  color: var(--main-color-500-rgb);
  font-size: 1.1rem;
  font-weight: 700;
}

.l-case-img__head-txt {
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: 700;
}

.l-case-img__dlist {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 20px;
}

.l-case-img__dlist+.l-case-img__dlist {
  margin-top: 10px;
}

.l-case-img__dlist-term {
  color: var(--main-color-500-rgb);
  font-size: 1.6rem;
  font-weight: 700;
}

.l-case-img__list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.l-case-img__list-item {
  padding: 4px 12px;
  background-color: var(--surface-color-500-rgb);
  border: 1px solid #ccc;
  border-radius: 100vmax;
  color: var(--main-color-500-rgb);
  font-size: 1.1rem;
  font-weight: 700;
}

@media all and (min-width: 768px) {
  .l-case-img {
    padding-top: var(--header-height-pc);
  }

  .l-case-img::after {
    inset: var(--header-height-pc) 0 0;
  }

  .l-case-img__inner {
    padding-block: 50px 200px;
  }

  .l-case-img__head {
    row-gap: 15px;
  }

  .l-case-img__head-label {
    font-size: 1.4rem;
  }

  .l-case-img__head-txt {
    font-size: 2.8rem;
  }

  .l-case-img__dlist {
    grid-template-columns: 68px 1fr;
    gap: 25px;
  }

  .l-case-img__dlist+.l-case-img__dlist {
    margin-top: 15px;
  }

  .l-case-img__dlist-term {
    padding-top: 2px;
  }

  .l-case-img__list-item {
    font-size: 1.4rem;
  }
}

/* .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-split-text-anime {
  display: block;
  overflow: hidden;
}

.js-c-split-text-anime span {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.3s ease;
}

.is-animated .js-c-split-text-anime span {
  display: inline-block;
  opacity: 1;
  transform: translateY(0);
}

.is-animated .js-c-split-text-anime span:nth-child(1) {
  transition-delay: 0.1s;
}

.is-animated .js-c-split-text-anime span:nth-child(2) {
  transition-delay: 0.2s;
}

.is-animated .js-c-split-text-anime span:nth-child(3) {
  transition-delay: 0.3s;
}

.is-animated .js-c-split-text-anime span:nth-child(4) {
  transition-delay: 0.4s;
}

.is-animated .js-c-split-text-anime span:nth-child(5) {
  transition-delay: 0.5s;
}

.is-animated .js-c-split-text-anime span:nth-child(6) {
  transition-delay: 0.6s;
}

.is-animated .js-c-split-text-anime span:nth-child(7) {
  transition-delay: 0.7s;
}

.is-animated .js-c-split-text-anime span:nth-child(8) {
  transition-delay: 0.8s;
}

.is-animated .js-c-split-text-anime span:nth-child(9) {
  transition-delay: 0.9s;
}

.is-animated .js-c-split-text-anime span:nth-child(10) {
  transition-delay: 1s;
}

.is-animated .js-c-split-text-anime span:nth-child(11) {
  transition-delay: 1.1s;
}

.is-animated .js-c-split-text-anime span:nth-child(12) {
  transition-delay: 1.2s;
}

.is-animated .js-c-split-text-anime span:nth-child(13) {
  transition-delay: 1.3s;
}

.is-animated .js-c-split-text-anime span:nth-child(14) {
  transition-delay: 1.4s;
}

.is-animated .js-c-split-text-anime span:nth-child(15) {
  transition-delay: 1.5s;
}

.is-animated .js-c-split-text-anime span:nth-child(16) {
  transition-delay: 1.6s;
}

.is-animated .js-c-split-text-anime span:nth-child(17) {
  transition-delay: 1.7s;
}

.is-animated .js-c-split-text-anime span:nth-child(18) {
  transition-delay: 1.8s;
}

.is-animated .js-c-split-text-anime span:nth-child(19) {
  transition-delay: 1.9s;
}

.is-animated .js-c-split-text-anime span:nth-child(20) {
  transition-delay: 2s;
}

.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;
}

.os-scrollbar {
  display: block;
}

@media (hover: none) and (pointer: coarse) {
  .os-scrollbar {
    display: none;
  }
}

.os-theme-dark.os-scrollbar>.os-scrollbar-track>.os-scrollbar-handle {
  background: rgb(var(--gray-color-500));
}

.os-theme-dark.os-scrollbar-vertical,
.os-theme-light.os-scrollbar-vertical {
  width: 20px !important;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-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;
}

/* .case-intro
===================================*/
.case-intro {
  position: relative;
  z-index: 2;
  margin-top: -50px;
}

.case-intro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  border-radius: 40px 40px 0 0;
  background-color: #fff;
}

.case-intro__inner {
  position: relative;
  z-index: 2;
  display: grid;
  row-gap: 30px;
  padding-top: 50px;
}

@media all and (min-width: 768px) {
  .case-intro {
    margin-top: -150px;
  }

  .case-intro::before {
    max-width: 1680px;
    height: 154px;
    border-radius: 0 80px 0 0;
  }

  .case-intro__inner {
    padding-top: 100px;
  }
}

/* .case-sec
================================================ */
.case-sec__inner {
  padding-block: 40px 0;
}

.case-sec__txt {
  margin-top: 10px;
}

.case-sec__set {
  margin-top: 30px;
}

.case-sec__set-sec {
  display: grid;
  row-gap: 12px;
  padding: 30px 20px;
}

.case-sec__set-sec.is-point {
  border-radius: 8px;
  background-color: #f6f6f6;
}

.case-sec__set-sec.is-point .case-sec__set-head {
  color: var(--main-color-500-rgb);
}

.case-sec__set-sec.is-result {
  padding-top: 40px;
  background-color: #ebf3ff;
  border-radius: 0 0 8px 8px;
}

.case-sec__set-head {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
}

.case-sec__set:has(.is-result) .case-sec__set-sec.is-point {
  position: relative;
  padding-bottom: 20px;
  border-radius: 8px 8px 0 0;
}

.case-sec__set:has(.is-result) .case-sec__set-sec.is-point::after {
  content: "";
  position: absolute;
  bottom: -31px;
  left: 50%;
  translate: -50% 0;
  width: 181px;
  height: 31px;
  background-color: #f6f6f6;
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22181%22%20height%3D%2231%22%20fill%3D%22none%22%20viewBox%3D%220%200%20181%2031%22%3E%0A%3Cpath%20fill%3D%22%23F6F6F6%22%20d%3D%22M90.5%2031%20.866.25h179.268L90.5%2031Z%22%2F%3E%0A%3C%2Fsvg%3E%0A") no-repeat left top/cover;
  mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22181%22%20height%3D%2231%22%20fill%3D%22none%22%20viewBox%3D%220%200%20181%2031%22%3E%0A%3Cpath%20fill%3D%22%23F6F6F6%22%20d%3D%22M90.5%2031%20.866.25h179.268L90.5%2031Z%22%2F%3E%0A%3C%2Fsvg%3E%0A") no-repeat left top/cover;
}

@media all and (min-width: 768px) {
  .case-sec__inner {
    padding-block: 80px 0;
  }

  .case-sec__txt {
    margin-top: 20px;
  }

  .case-sec__set-sec {
    row-gap: 15px;
    padding: 30px 40px;
  }

  .case-sec__set:has(.is-result) .case-sec__set-sec.is-point {
    padding-bottom: 28px;
  }

  .case-sec__set:has(.is-result) .case-sec__set-sec.is-point::after {
    bottom: -24px;
    width: 355px;
    height: 24px;
    -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22355%22%20height%3D%2224%22%20fill%3D%22none%22%20viewBox%3D%220%200%20355%2024%22%3E%0A%3Cpath%20fill%3D%22%23F6F6F6%22%20d%3D%22M177.5%2024%20.398.75h354.204L177.5%2024Z%22%2F%3E%0A%3C%2Fsvg%3E%0A") no-repeat left top/cover;
    mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22355%22%20height%3D%2224%22%20fill%3D%22none%22%20viewBox%3D%220%200%20355%2024%22%3E%0A%3Cpath%20fill%3D%22%23F6F6F6%22%20d%3D%22M177.5%2024%20.398.75h354.204L177.5%2024Z%22%2F%3E%0A%3C%2Fsvg%3E%0A") no-repeat left top/cover;
  }
}

/* .case-cv
================================================ */
.case-cv {
  background-color: #cce8ff;
  margin-top: 70px;
}

.case-cv__inner {
  padding-block: 30px;
}

.case-cv__set {
  display: grid;
  row-gap: 20px;
}

.case-cv__set-txt {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
}

@media all and (min-width: 768px) {
  .case-cv {
    margin-top: 150px;
  }

  .case-cv__inner {
    max-width: 886px;
    margin-inline: auto;
    padding-block: 50px;
  }

  .case-cv__set {
    grid-template-columns: 1fr 310px;
    align-items: center;
    -moz-column-gap: 100px;
    column-gap: 100px;
  }

  .case-cv__set-txt {
    text-align: left;
    font-size: 1.8rem;
  }
}

/* .case-nav
================================================ */
.case-nav {
  background-color: #f2f2f2;
}

.case-nav__inner {
  padding-block: 30px;
}

/* .company-profile-intro
===================================*/
.company-profile-intro__inner {
  padding: 60px 40px 0;
}

@media all and (min-width: 768px) {
  .company-profile-intro__inner {
    padding: 200px 0 15px;
  }

  .company-profile-intro__txt {
    text-align: center;
  }
}

/* .company-profile-anchor
===================================*/
.company-profile-anchor {
  margin-top: 30px;
}

.company-profile-anchor__item-link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  min-height: 70px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: var(--line-height-head);
  padding: 15px 0;
  padding-right: 60px;
  border-bottom: solid 1px var(--gray-color-500-rgb);
  box-sizing: border-box;
  position: relative;
}

.company-profile-anchor__item-link::before,
.company-profile-anchor__item-link::after {
  content: "";
  position: absolute;
  top: 50%;
  transition: all 0.3s ease;
}

.company-profile-anchor__item-link::before {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  right: 0;
  transform: translateY(-50%);
  background: var(--main-color-100-rgb);
}

.company-profile-anchor__item-link::after {
  content: "";
  display: inline-block;
  width: 13px;
  height: 8px;
  color: var(--main-color-500-rgb);
  background-color: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 13 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.443182 1.25079C0.255028 1.43894 0.162544 1.68131 0.162544 1.92687C0.162544 2.17243 0.255028 2.41799 0.443182 2.60295L5.52655 7.68951C5.70514 7.8681 5.9507 7.97015 6.20263 7.97015C6.45457 7.97015 6.70013 7.8681 6.87872 7.68951L11.9653 2.60295C12.3384 2.22983 12.3384 1.62391 11.9653 1.25079C11.5922 0.877667 10.9862 0.877667 10.6131 1.25079L6.20582 5.65808L1.79535 1.25079C1.42223 0.877667 0.816303 0.877667 0.443182 1.25079Z" fill="currentColor"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 13 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.443182 1.25079C0.255028 1.43894 0.162544 1.68131 0.162544 1.92687C0.162544 2.17243 0.255028 2.41799 0.443182 2.60295L5.52655 7.68951C5.70514 7.8681 5.9507 7.97015 6.20263 7.97015C6.45457 7.97015 6.70013 7.8681 6.87872 7.68951L11.9653 2.60295C12.3384 2.22983 12.3384 1.62391 11.9653 1.25079C11.5922 0.877667 10.9862 0.877667 10.6131 1.25079L6.20582 5.65808L1.79535 1.25079C1.42223 0.877667 0.816303 0.877667 0.443182 1.25079Z" fill="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all 0.3s ease;
  z-index: 3;
  width: 8px;
  height: 8px;
  right: 16px;
  transform: translateY(-50%);
}

@media all and (min-width: 768px) {
  .company-profile-anchor {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 90px;
  }

  .company-profile-anchor__item-link {
    font-size: 1.8rem;
  }

  .company-profile-anchor__item-link:hover::before {
    background: var(--main-color-500-rgb);
  }

  .company-profile-anchor__item-link:hover::after {
    color: #fff;
  }

  .company-profile-anchor__item+.company-profile-anchor__item {
    margin-left: 32px;
  }
}

/* .company-profile-sec
===================================*/
.company-profile-sec:last-of-type {
  padding-bottom: 70px;
}

.company-profile-sec__inner {
  padding-top: 50px;
}

.company-profile-sec__head {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: var(--line-height-head);
  margin-bottom: 15px;
}

.company-profile-sec__notice th {
  padding: 10px 20px;
}

.company-profile-sec__notice th:first-child {
  width: 140px;
}

.company-profile-sec__notice th:last-child {
  width: 200px;
}

@media all and (max-width: 767px) {
  .company-profile-sec__notice {
    width: 700px;
  }

  .company-profile-sec__notice-wrap {
    overflow-x: auto;
    margin-right: -20px;
    padding-right: 20px;
  }

  .company-profile-sec__content-areaimg {
    margin-top: 20px;
  }

  .company-profile-sec__area-img.is-scroll {
    overflow-x: auto;
    margin-right: -20px;
    padding-right: 20px;
  }

  .company-profile-sec__area-img.is-scroll .company-profile-sec__img {
    width: 744px;
  }
}

@media all and (min-width: 768px) {
  .company-profile-sec:last-of-type {
    padding-bottom: 150px;
  }

  .company-profile-sec__inner {
    padding-top: 100px;
  }

  .company-profile-sec__head {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }

  .company-profile-sec__notice th {
    padding: 15px 20px !important;
  }

  .company-profile-sec__content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .company-profile-sec__content-areatxt {
    width: 500px;
  }

  .company-profile-sec__content-areaimg {
    width: 550px;
  }

  .company-profile-sec__table .is-pdf {
    display: inline-block;
    margin-left: 1em;
  }
}

/* .company-profile-content
===================================*/
.company-profile-content *:first-child {
  margin-top: 0;
}

.company-profile-content *:last-child {
  margin-bottom: 0;
}

.company-profile-content p {
  margin: 2em 0 0;
}

.company-profile-content a {
  color: var(--main-color-500-rgb);
  text-decoration: underline;
}

.company-profile-content a[target=_blank]::after {
  content: "";
  display: inline-block;
  width: 11px;
  height: 11px;
  color: var(--gray-color-800-rgb);
  background-color: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 11 11" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.76619 9.54753H1.13502V2.15261H5.50603V1.05273H0V10.6474H9.9012V5.31183H8.76619V9.54753Z" fill="currentColor"/><path d="M6.72519 0V1.09988H9.0556L4.55176 5.46428L5.36076 6.24824L9.8646 1.87213V4.13039H10.9996V0H6.72519Z" fill="currentColor"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 11 11" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.76619 9.54753H1.13502V2.15261H5.50603V1.05273H0V10.6474H9.9012V5.31183H8.76619V9.54753Z" fill="currentColor"/><path d="M6.72519 0V1.09988H9.0556L4.55176 5.46428L5.36076 6.24824L9.8646 1.87213V4.13039H10.9996V0H6.72519Z" fill="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all 0.3s ease;
  margin-left: 4px;
}

.company-profile-content a[href*=".pdf"]::after {
  display: none;
}

@media all and (min-width: 768px) {
  .company-profile-content a:hover {
    text-decoration: none;
  }
}

/* .company-menu
===================================*/
.company-menu__inner {
  padding: 48px 40px 70px;
}

@media all and (min-width: 768px) {
  .company-menu__inner {
    padding: 120px 0 150px;
  }
}

/* .contact-type
===================================*/
.contact-type__inner {
  padding-top: 40px;
  padding-bottom: 70px;
}

.contact-type__form {
  padding: 20px 20px 50px;
  border-radius: 10px;
}

@media all and (min-width: 768px) {
  .contact-type__inner {
    padding-top: 170px;
    padding-bottom: 150px;
  }

  .contact-type__form {
    padding: 60px 100px 100px;
  }
}

/* .contact-form
===================================*/
.contact-form__inner {
  padding-top: 40px;
  padding-bottom: 70px;
}

.contact-form__in {
  padding: 20px 20px 50px;
  border-radius: 10px;
}

.contact-form .is-hidden {
  display: none !important;
}

.contact-form .is-active {
  display: block !important;
}

@media all and (min-width: 768px) {
  .contact-form__inner {
    padding-top: 170px;
    padding-bottom: 150px;
  }

  .contact-form__in {
    padding: 60px 100px 100px;
  }
}

/* .contact-message
===================================*/
.contact-message__inner {
  padding-top: 40px;
  padding-bottom: 70px;
}

.contact-message__btn {
  margin-top: 30px;
}

@media all and (min-width: 768px) {
  .contact-message__inner {
    padding-top: 170px;
    padding-bottom: 150px;
  }
}

/* .culture-policy
===================================*/
.culture-policy__inner {
  padding-top: 40px;
}

@media all and (min-width: 768px) {
  .culture-policy__inner {
    padding-top: 200px;
  }
}

/* .culture-individual
===================================*/
.culture-individual__inner {
  padding-top: 70px;
}

@media all and (min-width: 768px) {
  .culture-individual__inner {
    padding-top: 150px;
  }
}

/* .culture-provide
===================================*/
.culture-provide__inner {
  padding-top: 70px;
  padding-bottom: 70px;
}

.culture-provide__head {
  margin-bottom: 20px;
}

@media all and (min-width: 768px) {
  .culture-provide__inner {
    padding-top: 150px;
    padding-bottom: 150px;
  }
}

/* .culture-sec
===================================*/
.culture-sec {
  counter-reset: number;
}

.culture-sec__detail {
  margin-top: 40px;
}

.culture-sec-list {
  margin-top: 40px;
}

.culture-sec-list__item {
  margin-top: 10px;
  border: solid 1px var(--gray-color-500-rgb);
}

.culture-sec-list__head {
  padding: 20px;
  background: var(--main-color-100-rgb);
  border-bottom: solid 1px var(--gray-color-500-rgb);
}

.culture-sec-list__en {
  color: var(--main-color-500-rgb);
  font-size: 1.3rem;
}

.culture-sec-list__ja {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: var(--line-height-head);
}

.culture-sec-list__txt {
  padding: 20px;
}

.culture-sec-card {
  margin-top: 30px;
}

.culture-sec-card.has-bg .culture-sec-card__item {
  background: var(--main-color-100-rgb);
  border-radius: 10px;
  padding: 20px;
  margin-top: 10px;
}

.culture-sec-card.has-bg .culture-sec-card__head {
  padding: 0;
}

.culture-sec-card__item {
  margin-top: 20px;
}

.culture-sec-card__head {
  padding: 20px;
  border-radius: 10px;
  background: var(--main-color-100-rgb);
  display: grid;
  grid-template-columns: 60px 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  align-items: center;
}

.culture-sec-card__ja {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: var(--line-height-head);
}

.culture-sec-card__txt {
  margin-top: 10px;
}

@media all and (max-width: 767px) {
  .culture-sec__img {
    margin-top: 40px;
  }
}

@media all and (min-width: 768px) {
  .culture-sec__detail {
    margin-top: 80px;
  }

  .culture-sec__set {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .culture-sec__set .culture-sec__txt {
    width: 445px;
  }

  .culture-sec__set .culture-sec__img {
    width: 570px;
    margin-top: -30px;
  }

  .culture-sec-list {
    margin-top: 80px;
  }

  .culture-sec-list__item {
    display: flex;
    flex-wrap: wrap;
    border-radius: 10px;
    overflow: hidden;
  }

  .culture-sec-list__head {
    width: 275px;
    box-sizing: border-box;
    padding: 25px;
    border: none;
    border-right: solid 1px var(--gray-color-500-rgb);
    display: flex;
    flex-flow: column;
    justify-content: center;
  }

  .culture-sec-list__en {
    font-size: 1.6rem;
  }

  .culture-sec-list__ja {
    font-size: 2rem;
    margin-top: 8px;
  }

  .culture-sec-list__txt {
    width: calc(100% - 275px);
    padding: 25px;
    box-sizing: border-box;
  }

  .culture-sec-card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 40px;
    grid-row-gap: 50px;
    margin-top: 60px;
  }

  .culture-sec-card.has-bg {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .culture-sec-card.has-bg .culture-sec-card__item {
    padding: 50px 20px;
    margin-top: 0;
  }

  .culture-sec-card.has-bg .culture-sec-card__txt {
    margin-top: 30px;
  }

  .culture-sec-card.is-col3-pc {
    grid-template-columns: repeat(3, 1fr);
  }

  .culture-sec-card__item {
    box-sizing: border-box;
    margin-top: 0;
  }

  .culture-sec-card__ja {
    font-size: 2.2rem;
  }

  .culture-sec-card__txt {
    margin-top: 20px;
  }
}

/* .data-company
===================================*/
.data-company {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #E9F2FF 140px, #E9F2FF);
  margin-top: 40px;
}

.data-company__inner {
  padding-bottom: 60px;
}

.data-company-list__item {
  background: #fff;
  padding: 30px 20px;
  border-radius: 10px;
  margin-top: 20px;
}

.data-company-list__head {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: var(--line-height-head);
  text-align: center;
  margin-bottom: 10px;
}

.data-company-list__num {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  color: var(--main-color-500-rgb);
  margin-top: -8px;
  margin-bottom: 10px;
}

.data-company-list__num .is-num {
  font-size: 4rem;
}

.data-company-list__txt.is-center {
  text-align: center;
}

.data-company-list__img {
  margin-top: 20px;
  border-radius: 10px;
  text-align: center;
  overflow: hidden;
  background: #f8fbff;
}

.data-company-list__img+.data-company-list__txt {
  margin-top: 10px;
}

.data-company-list .c-list01 {
  margin-top: 10px;
}

@media all and (min-width: 768px) {
  .data-company {
    margin-top: 200px;
  }

  .data-company__inner {
    padding-bottom: 150px;
  }

  .data-company-list {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
  }

  .data-company-list__item {
    padding: 40px 20px 50px;
    width: calc(33.3% - 20px);
    margin: 10px;
    box-sizing: border-box;
  }

  .data-company-list__item.is-half {
    width: calc(50% - 20px);
  }

  .data-company-list__item.is-full {
    width: 100%;
  }

  .data-company-list__item.is-full img {
    height: 333px;
  }

  .data-company-list__item.is-twothird {
    width: calc(66.6% - 20px);
  }

  .data-company-list__item.is-twothird img {
    height: 333px;
  }

  .data-company-list__head {
    font-size: 2.4rem;
    margin-bottom: 16px;
  }

  .data-company-list__txt+.data-company-list__img {
    margin-top: 30px;
  }

  .data-company-list__txt.is-sm-pc {
    margin-top: 10px !important;
    font-size: 1.4rem;
  }

  .data-company-list__num {
    font-size: 2.5rem;
    margin-top: -10px;
    margin-bottom: 20px;
  }

  .data-company-list__num .is-num {
    font-size: 7rem;
  }

  .data-company-list__img {
    margin-top: 16px;
  }

  .data-company-list__img+.data-company-list__txt {
    margin-top: 25px;
  }

  .data-company-list .c-list01 {
    font-size: 1.4rem;
  }
}

/* .data-employee
===================================*/
.data-employee__inner {
  padding-top: 60px;
  padding-bottom: 70px;
}

.data-employee__head::after {
  content: "02.";
}

.data-employee__table thead th {
  padding: 20px 20px !important;
  color: #fff;
  background: var(--main-color-500-rgb);
  width: 120px;
  text-align: center;
}

.data-employee__table thead th:nth-child(3) {
  width: 30px;
}

.data-employee__table tbody tr:last-of-type th {
  border-bottom: solid 1px var(--gray-color-500-rgb) !important;
}

.data-employee__table tbody th {
  border-bottom: none !important;
}

.data-employee__table tbody .is-empty {
  border-top: none;
}

@media all and (max-width: 767px) {
  .data-employee__area-table {
    overflow-x: auto;
    margin-top: 30px;
    margin-right: -20px;
    padding-right: 20px;
  }
}

@media all and (min-width: 768px) {
  .data-employee__inner {
    padding-top: 150px;
    padding-bottom: 150px;
  }

  .data-employee__table thead th {
    padding: 15px 20px !important;
    width: 170px;
    text-align: center;
  }

  .data-employee__table thead th:nth-child(3) {
    width: 60px;
  }

  .data-employee__table thead th:nth-child(4) {
    width: 450px;
  }
}

/* .employee-intro
===================================*/
.employee-intro__inner {
  padding-top: 40px;
  padding-bottom: 50px;
}

@media all and (min-width: 768px) {
  .employee-intro__inner {
    padding-top: 200px;
    padding-bottom: 110px;
  }
}

/* .employee-support
===================================*/
.employee-support__inner {
  padding-top: 50px;
  padding-bottom: 50px;
}

.employee-support__sec+.employee-support__sec {
  margin-top: 40px;
}

@media all and (min-width: 768px) {
  .employee-support__inner {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .employee-support__sec+.employee-support__sec {
    margin-top: 55px;
  }
}

/* .employee-menu
===================================*/
.employee-menu__inner {
  padding-top: 50px;
  padding-bottom: 70px;
}

.employee-menu__list {
  margin-top: 40px;
}

@media all and (min-width: 768px) {
  .employee-menu__inner {
    padding-top: 150px;
    padding-bottom: 150px;
  }

  .employee-menu__list {
    grid-row-gap: 30px;
    margin-top: 60px;
  }
}

/* .error-page404
================================================ */
.error-page404__inner {
  padding-top: 50px;
  padding-bottom: 50px;
}

.error-page404__btn {
  margin-top: 30px;
}

@media all and (min-width: 768px) {
  .error-page404__inner {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

/* .health-intro
===================================*/
.health-intro__inner {
  padding-top: 20px;
  padding-bottom: 70px;
}

.health-intro__img {
  margin: 20px auto 0;
  padding: 0 20px;
  max-width: 400px;
}

@media all and (min-width: 768px) {
  .health-intro__inner {
    padding-top: 200px;
    padding-bottom: 150px;
  }

  .health-intro__head {
    text-align: center;
  }

  .health-intro__txt {
    text-align: center;
  }

  .health-intro__img {
    margin-top: 40px;
  }
}

/* .health-objective
===================================*/
.health-objective__inner {
  padding-top: 50px;
  padding-bottom: 50px;
}

.health-objective__img {
  margin: 20px auto 0;
  padding: 0 20px;
  max-width: 400px;
}

.health-objective-sec+.health-objective-sec {
  padding-top: 40px;
  margin-top: 40px;
  border-top: solid 1px var(--gray-color-500-rgb);
}

@media all and (max-width: 767px) {
  .health-objective__inner {
    padding-left: 40px;
    padding-right: 40px;
  }

  .health-objective-sec__area-txt {
    margin-top: 30px;
  }
}

@media all and (min-width: 768px) {
  .health-objective__inner {
    padding-top: 150px;
    padding-bottom: 150px;
  }

  .health-objective-sec {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .health-objective-sec+.health-objective-sec {
    padding-top: 100px;
    margin-top: 100px;
  }

  .health-objective-sec__area-img {
    width: 445px;
  }

  .health-objective-sec__area-txt {
    width: 570px;
  }

  .health-objective-sec:nth-child(even) {
    flex-direction: row-reverse;
    align-items: flex-end;
  }
}

/* .health-sec
===================================*/
.health-sec__inner {
  padding-top: 70px;
}

.health-sec:last-of-type .health-sec__inner {
  padding-bottom: 70px;
}

@media all and (min-width: 768px) {
  .health-sec__inner {
    padding-top: 150px;
  }

  .health-sec:last-of-type .health-sec__inner {
    padding-bottom: 150px;
  }

  .health-sec .c-head02 {
    margin-bottom: 30px;
  }
}

/* .health-system
===================================*/
.health-system__box {
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 10px;
}

@media all and (min-width: 768px) {
  .health-system__box {
    margin-top: 80px;
    margin-bottom: 30px;
    padding: 50px 20px;
  }
}

/* .health-attempt
===================================*/
@media all and (max-width: 767px) {
  .health-attempt__area-img {
    overflow-x: auto;
    margin-top: 30px;
    margin-right: -20px;
    padding-right: 20px;
  }

  .health-attempt__img {
    width: 956px;
  }
}

@media all and (min-width: 768px) {
  .health-attempt__area-img {
    margin-top: 80px;
  }
}

/* .health-plan
===================================*/
@media all and (max-width: 767px) {
  .health-plan__area-img {
    overflow-x: auto;
    margin-top: 30px;
    margin-right: -20px;
    padding-right: 20px;
  }

  .health-plan__img {
    width: 956px;
  }
}

@media all and (min-width: 768px) {
  .health-plan__area-img {
    margin-top: 80px;
  }
}

/* .health-statu
===================================*/
.health-statu__table thead th {
  padding: 15px 20px !important;
  color: #fff;
  background: var(--main-color-500-rgb);
  width: 200px;
  text-align: center;
}

.health-statu__table thead th:first-child {
  width: 500px;
  text-align: left;
}

.health-statu__table tbody td {
  text-align: right;
}

.health-statu__table tbody td:first-child {
  font-weight: 700;
  text-align: left;
  background: var(--gray-color-200-rgb);
}

@media all and (max-width: 767px) {
  .health-statu__area-table {
    overflow-x: auto;
    margin-top: 30px;
    margin-right: -20px;
    padding-right: 20px;
  }

  .health-statu__table {
    width: 1100px;
  }
}

@media all and (min-width: 768px) {
  .health-statu__area-table {
    margin-top: 80px;
  }
}

/* .history-sec
===================================*/
.history-sec__inner {
  padding-top: 40px;
  padding-bottom: 70px;
}

.history-sec dl {
  line-height: var(--line-height-head);
  padding: 20px;
  border-top: solid 1px var(--gray-color-500-rgb);
}

.history-sec dl:last-of-type {
  border-bottom: solid 1px var(--gray-color-500-rgb);
}

.history-sec dt {
  font-weight: 700;
  color: var(--main-color-500-rgb);
}

.history-sec__txt {
  position: relative;
  padding-left: 65px;
}

.history-sec__txt .is-year {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  place-content: center;
  min-width: 50px;
  border-radius: 9999px;
  font-size: 1.2rem;
  color: #fff;
  background: var(--gray-color-800-rgb);
}

.history-sec__txt+.history-sec__txt {
  margin-top: 15px;
}

@media all and (max-width: 767px) {
  .history-sec dt {
    margin-bottom: 15px;
  }
}

@media all and (min-width: 768px) {
  .history-sec__inner {
    padding-top: 200px;
    padding-bottom: 150px;
  }

  .history-sec dl {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 30px;
  }

  .history-sec dt {
    padding-right: 50px;
  }

  .history-sec__txt {
    padding-left: 75px;
  }

  .history-sec__txt .is-year {
    min-width: 55px;
    padding: 3px 0 4px;
  }
}

#home .l-nav {
  opacity: 0;
}

.js-scroll-box {
  position: relative;
  height: 100vh;
  height: 100svh;
}

/* .home-about
================================================== */
.home-about {
  position: absolute;
  z-index: 7;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100vh;
  height: 100svh;
  display: grid;
  place-content: center;
  place-items: center;
  grid-auto-columns: 1fr;
}

.home-about-set {
  display: flex;
  flex-direction: column-reverse;
}

.home-about-set__areaTxt {
  transform: translateY(30px);
  opacity: 0;
  margin-top: 23px;
}

.home-about-set__areaTxt-txt {
  margin-top: 10px;
}

.home-about-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 264px;
  margin: 21px auto 0;
  opacity: 0;
}

.home-about-list__wrap {
  position: relative;
  width: 321px;
  height: 321px;
}

.home-about-list__bg {
  opacity: 0;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(../img/home/bg_circle04.png) no-repeat center/contain;
}

.home-about-list__bg-pattern {
  position: absolute;
  top: 141px;
  left: 141px;
  transform: translateX(-160px);
}

.home-about-list__bg-pattern.is-item01 {
  width: 38px;
  height: 38px;
  background: url(../img/home/bg_pattern01.svg) no-repeat center/contain;
  -webkit-animation: circle-move-anim01 10s -10s linear infinite;
  animation: circle-move-anim01 10s -10s linear infinite;
}

.home-about-list__bg-pattern.is-item02 {
  width: 48px;
  height: 48px;
  background: url(../img/home/bg_pattern02.svg) no-repeat center/contain;
  -webkit-animation: circle-move-anim01 10s -13s linear infinite;
  animation: circle-move-anim01 10s -13s linear infinite;
}

.home-about-list__bg-pattern.is-item03 {
  width: 35px;
  height: 35px;
  background: url(../img/home/bg_pattern03.svg) no-repeat center/contain;
  -webkit-animation: circle-move-anim01 10s -16.4s linear infinite;
  animation: circle-move-anim01 10s -16.4s linear infinite;
}

.home-about-list__item {
  position: relative;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  mix-blend-mode: multiply;
  font-size: 1.2rem;
}

.home-about-list__item.is-service01 {
  z-index: 3;
}

.home-about-list__item.is-service01 .home-about-list__item-link {
  color: var(--surface-color-500-rgb);
  background-image: url(../img/home/bg_about01.svg);
}

.home-about-list__item.is-service01 .home-about-list__item-link::after {
  background-image: url(../img/home/bg_about01_hover.svg);
}

.home-about-list__item.is-service02 {
  z-index: 2;
  margin-top: -44px;
}

.home-about-list__item.is-service02 .home-about-list__item-link {
  background-image: url(../img/home/bg_about02.svg);
}

.home-about-list__item.is-service02 .home-about-list__item-link::after {
  background-image: url(../img/home/bg_about02_hover.svg);
}

.home-about-list__item.is-service03 {
  z-index: 1;
  margin-top: -44px;
  margin-left: -20px;
}

.home-about-list__item.is-service03 .home-about-list__item-link {
  background-image: url(../img/home/bg_about03.svg);
}

.home-about-list__item.is-service03 .home-about-list__item-link::after {
  background-image: url(../img/home/bg_about03_hover.svg);
}

.home-about-list__item-link {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--main-color-500-rgb);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 50%;
  transition: background-image 0.3s ease;
}

.home-about-list__item-link::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.home-about-list__item-ico {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--surface-color-500-rgb);
}

.home-about-list__item-ico::before {
  content: "";
  display: block;
  width: 4px;
  height: 7px;
  background: var(--main-color-500-rgb);
  -webkit-clip-path: path("M0.22315 6.10443C0.317377 6.19865 0.438754 6.24497 0.561728 6.24497C0.684702 6.24497 0.807675 6.19865 0.900305 6.10443L3.44762 3.55871C3.53706 3.46927 3.58816 3.3463 3.58816 3.22013C3.58816 3.09396 3.53706 2.97099 3.44762 2.88155L0.900305 0.334234C0.713449 0.147378 0.410007 0.147378 0.22315 0.334234C0.0362937 0.521091 0.0362937 0.824533 0.22315 1.01139L2.43029 3.21853L0.22315 5.42727C0.0362937 5.61413 0.0362937 5.91757 0.22315 6.10443Z");
  clip-path: path("M0.22315 6.10443C0.317377 6.19865 0.438754 6.24497 0.561728 6.24497C0.684702 6.24497 0.807675 6.19865 0.900305 6.10443L3.44762 3.55871C3.53706 3.46927 3.58816 3.3463 3.58816 3.22013C3.58816 3.09396 3.53706 2.97099 3.44762 2.88155L0.900305 0.334234C0.713449 0.147378 0.410007 0.147378 0.22315 0.334234C0.0362937 0.521091 0.0362937 0.824533 0.22315 1.01139L2.43029 3.21853L0.22315 5.42727C0.0362937 5.61413 0.0362937 5.91757 0.22315 6.10443Z");
}

@media all and (min-width: 768px) {
  .home-about-set {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .home-about-set__areaTxt {
    flex: 0 0 43%;
    max-width: 507px;
    margin-top: 0;
    padding-left: 6%;
  }

  .home-about-set__areaTxt-txt {
    margin-top: 65px;
    font-size: clamp(2.2rem, 1.27vw + 1.23rem, 3rem);
    line-height: 2.5;
  }

  .home-about-list {
    position: relative;
    width: 627px;
    height: 573px;
    margin: 0 0 80px 0;
  }

  .home-about-list__wrap {
    display: grid;
    place-content: center;
    width: 764px;
    height: 764px;
  }

  .home-about-list__bg-pattern {
    top: 338px;
    left: 338px;
    transform: translateX(-382px);
  }

  .home-about-list__bg-pattern.is-item01 {
    width: 88px;
    height: 88px;
    -webkit-animation: circle-move-anim02 15s -15s linear infinite;
    animation: circle-move-anim02 15s -15s linear infinite;
  }

  .home-about-list__bg-pattern.is-item02 {
    width: 112px;
    height: 112px;
    -webkit-animation: circle-move-anim02 15s -10s linear infinite;
    animation: circle-move-anim02 15s -10s linear infinite;
  }

  .home-about-list__bg-pattern.is-item03 {
    width: 82px;
    height: 82px;
    -webkit-animation: circle-move-anim02 15s -20s linear infinite;
    animation: circle-move-anim02 15s -20s linear infinite;
  }

  .home-about-list__item {
    position: absolute;
    width: 332px;
    height: 332px;
  }

  .home-about-list__item.is-service01 {
    top: 0;
  }

  .home-about-list__item.is-service02 {
    left: 0;
    bottom: 0;
  }

  .home-about-list__item.is-service03 {
    right: 0;
    bottom: 0;
  }

  .home-about-list__item-link {
    font-size: 2.6rem;
  }

  .home-about-list__item-ico {
    width: 60px;
    height: 60px;
  }

  .home-about-list__item-ico::before {
    width: 7px;
    height: 13px;
    -webkit-clip-path: path("M0.279841 12.5847C0.467995 12.7728 0.710364 12.8653 0.955923 12.8653C1.20148 12.8653 1.44704 12.7728 1.632 12.5847L6.71856 7.50128C6.89715 7.32269 6.9992 7.07713 6.9992 6.8252C6.9992 6.57326 6.89715 6.3277 6.71856 6.14912L1.632 1.06256C1.25888 0.689435 0.652961 0.689435 0.279841 1.06256C-0.0932802 1.43568 -0.0932802 2.0416 0.279841 2.41472L4.68713 6.82201L0.279841 11.2325C-0.0932802 11.6056 -0.0932802 12.2115 0.279841 12.5847Z");
    clip-path: path("M0.279841 12.5847C0.467995 12.7728 0.710364 12.8653 0.955923 12.8653C1.20148 12.8653 1.44704 12.7728 1.632 12.5847L6.71856 7.50128C6.89715 7.32269 6.9992 7.07713 6.9992 6.8252C6.9992 6.57326 6.89715 6.3277 6.71856 6.14912L1.632 1.06256C1.25888 0.689435 0.652961 0.689435 0.279841 1.06256C-0.0932802 1.43568 -0.0932802 2.0416 0.279841 2.41472L4.68713 6.82201L0.279841 11.2325C-0.0932802 11.6056 -0.0932802 12.2115 0.279841 12.5847Z");
  }
}

@media (hover: hover) and (pointer: fine) {
  .home-about-list__item.is-service01 a.home-about-list__item-link:hover {
    color: var(--main-color-500-rgb);
  }

  .home-about-list__item-ico {
    transition: all 0.3s ease;
  }

  .home-about-list__item-link:is(a):hover {
    background-image: none !important;
  }

  .home-about-list__item-link:is(a):hover::after {
    opacity: 1;
  }

  .home-about-list__item-link:is(a):hover .home-about-list__item-ico {
    background: var(--main-color-500-rgb);
  }

  .home-about-list__item-link:is(a):hover .home-about-list__item-ico::before {
    background: var(--surface-color-500-rgb);
  }
}

.home-about.is-active .home-about-list,
.home-about.is-active .home-about-set__areaTxt-sub,
.home-about.is-active .home-about-set__areaTxt-txt {
  opacity: 1;
}

.home-about.is-active .home-about-set__areaTxt-head span {
  transform: translateY(0);
  opacity: 1;
}

@-webkit-keyframes circle-move-anim01 {
  0% {
    transform: rotate(0deg) translateX(-160px) rotate(0deg);
  }

  100% {
    transform: rotate(360deg) translateX(-160px) rotate(-360deg);
  }
}

@keyframes circle-move-anim01 {
  0% {
    transform: rotate(0deg) translateX(-160px) rotate(0deg);
  }

  100% {
    transform: rotate(360deg) translateX(-160px) rotate(-360deg);
  }
}

@-webkit-keyframes circle-move-anim02 {
  0% {
    transform: rotate(0deg) translateX(-382px) rotate(0deg);
  }

  100% {
    transform: rotate(360deg) translateX(-382px) rotate(-360deg);
  }
}

@keyframes circle-move-anim02 {
  0% {
    transform: rotate(0deg) translateX(-382px) rotate(0deg);
  }

  100% {
    transform: rotate(360deg) translateX(-382px) rotate(-360deg);
  }
}

/* .home-company
================================================== */
.home-company {
  position: relative;
}

.home-company::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 10px;
  bottom: 0;
  width: calc(100% - 20px);
  background: url(../img/home/bg_company01_sp.jpg) no-repeat center/cover;
  border-radius: 20px;
}

.home-company__inner {
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 80px;
  padding-bottom: 90px;
}

.home-company__areaTxt {
  color: var(--surface-color-500-rgb);
}

.home-company__areaTxt-txt {
  margin-top: 16px;
}

.home-company__btn {
  margin-top: 40px;
}

@media all and (min-width: 768px) {
  .home-company::before {
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1818px;
    background-image: url(../img/home/bg_company01_pc.jpg);
  }

  .home-company__inner {
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 170px;
    padding-bottom: 170px;
  }

  .home-company__areaTxt {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .home-company__areaTxt-txt {
    margin-top: 52px;
  }

  .home-company__btn {
    margin-top: 50px;
  }
}

.home-company-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, auto);
  grid-column-gap: 10px;
  grid-row-gap: 15px;
  margin-top: 40px;
}

.home-company-list__item {
  text-align: center;
}

.home-company-list__item-link {
  position: relative;
  display: block;
  width: 100%;
  padding: 14px 14px 19px;
  background: var(--surface-color-500-rgb);
  border-radius: 5px;
  box-sizing: border-box;
}

.home-company-list__item-link::before {
  content: "";
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 8px;
  height: 8px;
  background: var(--main-color-500-rgb);
  -webkit-clip-path: polygon(100% 0%, 100% 100%, 0% 100%);
  clip-path: polygon(100% 0%, 100% 100%, 0% 100%);
}

.home-company-list__item-ico {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--main-color-100-rgb);
  margin: 0 auto 4px;
  transition: all 0.3s ease;
}

.home-company-list__item-en {
  margin-top: -2px;
  color: var(--main-color-500-rgb);
  font-size: 1.8rem;
  line-height: var(--line-height-head);
}

.home-company-list__item-txt {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: var(--line-height-head);
}

@media all and (min-width: 768px) {
  .home-company-list {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 12px;
    grid-row-gap: 0;
    margin-top: 92px;
  }

  .home-company-list__item-link {
    padding: 26px 26px 42px;
    border-radius: 10px;
  }

  .home-company-list__item-link::before {
    bottom: 6px;
    right: 6px;
    width: 10px;
    height: 10px;
  }

  .home-company-list__item-ico {
    width: 140px;
    height: 140px;
  }

  .home-company-list__item-en {
    font-size: 3rem;
  }

  .home-company-list__item-txt {
    font-size: 1.4rem;
  }
}

@media (hover: hover) and (pointer: fine) {
  .home-company-list__item-link:hover .home-company-list__item-ico {
    background: var(--main-color-500-rgb);
  }

  .home-company-list__item-link:hover .home-company-list__item-ico img {
    filter: grayscale(1) brightness(20);
  }
}

/* .home-service
================================================== */
.home-service__inner {
  padding-top: 70px;
  padding-bottom: 20px;
}

.home-service__areaTxt {
  padding: 0 20px;
}

.home-service__txt {
  margin-top: 20px;
}

.home-service__btn {
  margin-top: 30px;
}

@media all and (min-width: 768px) {
  .home-service__inner {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .home-service__areaTxt {
    padding: 0;
  }

  .home-service__txt {
    margin-top: 38px;
  }

  .home-service__btn {
    margin-top: 50px;
  }
}

.home-service-list {
  margin-top: 70px;
}

.home-service-list__item {
  border-top: 2px solid var(--main-color-500-rgb);
}

.home-service-list__item-link {
  display: block;
  padding: 27px 0 50px;
}

.home-service-list__item-head {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: var(--line-height-head);
}

.home-service-list__item-num {
  padding-right: 10px;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
  font-size: 1.3rem;
}

.home-service-list__item-ico {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background: var(--main-color-100-rgb);
  border-radius: 50%;
  margin-left: auto;
}

.home-service-list__item-ico::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 5px;
  color: var(--main-color-500-rgb);
  background-color: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 13 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.443182 1.25079C0.255028 1.43894 0.162544 1.68131 0.162544 1.92687C0.162544 2.17243 0.255028 2.41799 0.443182 2.60295L5.52655 7.68951C5.70514 7.8681 5.9507 7.97015 6.20263 7.97015C6.45457 7.97015 6.70013 7.8681 6.87872 7.68951L11.9653 2.60295C12.3384 2.22983 12.3384 1.62391 11.9653 1.25079C11.5922 0.877667 10.9862 0.877667 10.6131 1.25079L6.20582 5.65808L1.79535 1.25079C1.42223 0.877667 0.816303 0.877667 0.443182 1.25079Z" fill="currentColor"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 13 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.443182 1.25079C0.255028 1.43894 0.162544 1.68131 0.162544 1.92687C0.162544 2.17243 0.255028 2.41799 0.443182 2.60295L5.52655 7.68951C5.70514 7.8681 5.9507 7.97015 6.20263 7.97015C6.45457 7.97015 6.70013 7.8681 6.87872 7.68951L11.9653 2.60295C12.3384 2.22983 12.3384 1.62391 11.9653 1.25079C11.5922 0.877667 10.9862 0.877667 10.6131 1.25079L6.20582 5.65808L1.79535 1.25079C1.42223 0.877667 0.816303 0.877667 0.443182 1.25079Z" fill="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all 0.3s ease;
  transform: rotate(-90deg);
}

.home-service-list__item-img {
  margin-top: 27px;
  text-align: center;
}

.home-service-list__item-img img {
  border-radius: 10px;
}

.home-service-list__item-txt {
  margin-top: 20px;
  transition: 0.4s 0.3s transform ease, 0.2s 0.3s opacity ease;
}

@media all and (min-width: 768px) {
  .home-service-list {
    display: flex;
    flex-direction: column;
    margin-top: 0;
  }

  .home-service-list__item {
    position: relative;
    flex-grow: 4;
    border-top-color: var(--gray-color-500-rgb);
  }

  .home-service-list__item:not(:first-child) .home-service-list__item-txt {
    height: 0;
    visibility: hidden;
    opacity: 0;
    margin-top: 0;
  }

  .home-service-list__item-link {
    padding: 30px 0;
  }

  .home-service-list__item-line {
    position: absolute;
    top: -2px;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--main-color-500-rgb);
    transform: scaleX(0);
    transform-origin: top left;
    transition: transform 0.3s ease-out;
  }

  .home-service-list__item-head {
    padding-left: 14px;
    font-size: clamp(1.8rem, 1.27vw + 0.83rem, 2.6rem);
  }

  .home-service-list__item-num {
    flex: 0 0 50px;
    box-sizing: border-box;
    padding-right: 30px;
    font-size: 1.5rem;
  }

  .home-service-list__item-ico {
    width: 60px;
    height: 60px;
  }

  .home-service-list__item-ico::before {
    width: 13px;
    height: 7px;
  }
}

.home-service-bnr {
  margin: 0 20px 80px;
}

.home-service-bnr__link {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.home-service-bnr__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background: url(../img/home/bg_lab01_sp.png) no-repeat center/cover;
  border-radius: 20px;
}

.home-service-bnr__areaTxt {
  position: relative;
  z-index: 2;
  padding: 60px 0 116px;
}

.home-service-bnr__txt {
  margin-top: 15px;
}

.home-service-bnr__img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.home-service-bnr__img img {
  border-radius: 20px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.home-service-bnr__ico {
  position: absolute;
  z-index: 2;
  bottom: 20px;
  right: 0;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  background: var(--main-color-100-rgb);
  border-radius: 50%;
}

.home-service-bnr__ico::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  color: var(--main-color-500-rgb);
  background-color: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 11 11" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.76619 9.54753H1.13502V2.15261H5.50603V1.05273H0V10.6474H9.9012V5.31183H8.76619V9.54753Z" fill="currentColor"/><path d="M6.72519 0V1.09988H9.0556L4.55176 5.46428L5.36076 6.24824L9.8646 1.87213V4.13039H10.9996V0H6.72519Z" fill="currentColor"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 11 11" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.76619 9.54753H1.13502V2.15261H5.50603V1.05273H0V10.6474H9.9012V5.31183H8.76619V9.54753Z" fill="currentColor"/><path d="M6.72519 0V1.09988H9.0556L4.55176 5.46428L5.36076 6.24824L9.8646 1.87213V4.13039H10.9996V0H6.72519Z" fill="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all 0.3s ease;
}

@media all and (min-width: 768px) {
  .home-service-bnr {
    margin: 0 auto 220px;
  }

  .home-service-bnr__link {
    position: relative;
    width: 100%;
    box-sizing: border-box;
  }

  .home-service-bnr__link::before {
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1818px;
    background-image: url(../img/home/bg_lab01_pc.png);
  }

  .home-service-bnr__areaTxt {
    padding: 187px 0 190px;
  }

  .home-service-bnr__txt {
    margin-top: 36px;
  }

  .home-service-bnr__ico {
    bottom: auto;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 80px;
    height: 80px;
  }

  .home-service-bnr__ico::before {
    width: 14px;
    height: 14px;
  }
}

@media all and (min-width: 768px) {
  .home-service-contents {
    position: relative;
    display: grid;
    grid-template-columns: 55% 38.6%;
    grid-template-rows: 1fr;
    grid-column-gap: 6.42%;
    grid-row-gap: 0px;
    padding: 130px 0;
  }

  .home-service-contents-in {
    grid-row: 1;
    grid-column: 1;
    height: 75vh;
    min-height: 650px;
  }

  .home-service-contents__img {
    display: grid;
    width: 100%;
    overflow: hidden;
  }

  .home-service-contents__img-item {
    position: relative;
    grid-row: 1;
    grid-column: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .home-service-contents__img-item:first-child {
    z-index: 4;
  }

  .home-service-contents__img-item:nth-child(2) {
    z-index: 3;
  }

  .home-service-contents__img-item:nth-child(3) {
    z-index: 2;
  }

  .home-service-contents__img-item:last-child {
    z-index: 1;
  }

  .home-service-contents__img-item img {
    border-radius: 20px;
  }
}

/* .home-culture
================================================== */
.home-culture {
  position: relative;
}

.home-culture::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 249px;
  height: 246px;
  background: url(../img/home/bg_culture01_sp.png) no-repeat center/contain;
}

.home-culture__inner {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 80px;
}

.home-culture__txt {
  margin-top: 20px;
}

.home-culture__btn {
  margin-top: 30px;
}

.home-culture__img {
  margin-top: 60px;
}

.home-culture__img img {
  border-radius: 20px;
}

@media all and (min-width: 768px) {
  .home-culture::before {
    width: 629px;
    height: 629px;
    background-image: url(../img/home/bg_culture01_pc.png);
  }

  .home-culture__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 170px;
    padding-bottom: 130px;
  }

  .home-culture__areaTxt {
    flex: 0 0 31.8%;
    max-width: 445px;
  }

  .home-culture__txt {
    margin-top: 30px;
  }

  .home-culture__btn {
    margin-top: 50px;
  }

  .home-culture__img {
    flex: 0 0 61.4%;
    max-width: 860px;
    margin-top: 0;
  }
}

/* .home-sustainability
================================================== */
.home-sustainability {
  position: relative;
}

.home-sustainability::after {
  content: "";
  position: absolute;
  bottom: -114px;
  left: 0;
  width: 249px;
  height: 202px;
  background: url(../img/home/bg_sustainability01_sp.png) no-repeat center/contain;
}

.home-sustainability__inner {
  padding-bottom: 70px;
}

.home-sustainability__box {
  position: relative;
  z-index: 2;
  padding: 60px 20px;
  box-sizing: border-box;
  border-radius: 20px;
}

.home-sustainability__txt {
  margin-top: 20px;
}

.home-sustainability__btn {
  margin-top: 20px;
}

.home-sustainability-list {
  margin-top: 45px;
}

.home-sustainability-list__item:last-child {
  border-bottom: 1px solid var(--gray-color-500-rgb);
}

.home-sustainability-list__item-in {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-top: 1px solid var(--gray-color-500-rgb);
}

.home-sustainability-list__item-img {
  flex: 0 0 55px;
  height: 55px;
  background: var(--main-color-100-rgb);
  border-radius: 50%;
  margin-right: 10px;
}

.home-sustainability-list__item-txt {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: var(--line-height-head);
}

.home-sustainability-list__item-ico {
  display: grid;
  place-items: center;
  flex: 0 0 40px;
  height: 40px;
  margin-left: auto;
  background: var(--main-color-100-rgb);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.home-sustainability-list__item-ico::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 6px;
  color: var(--main-color-500-rgb);
  background-color: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 13 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.443182 1.25079C0.255028 1.43894 0.162544 1.68131 0.162544 1.92687C0.162544 2.17243 0.255028 2.41799 0.443182 2.60295L5.52655 7.68951C5.70514 7.8681 5.9507 7.97015 6.20263 7.97015C6.45457 7.97015 6.70013 7.8681 6.87872 7.68951L11.9653 2.60295C12.3384 2.22983 12.3384 1.62391 11.9653 1.25079C11.5922 0.877667 10.9862 0.877667 10.6131 1.25079L6.20582 5.65808L1.79535 1.25079C1.42223 0.877667 0.816303 0.877667 0.443182 1.25079Z" fill="currentColor"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 13 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.443182 1.25079C0.255028 1.43894 0.162544 1.68131 0.162544 1.92687C0.162544 2.17243 0.255028 2.41799 0.443182 2.60295L5.52655 7.68951C5.70514 7.8681 5.9507 7.97015 6.20263 7.97015C6.45457 7.97015 6.70013 7.8681 6.87872 7.68951L11.9653 2.60295C12.3384 2.22983 12.3384 1.62391 11.9653 1.25079C11.5922 0.877667 10.9862 0.877667 10.6131 1.25079L6.20582 5.65808L1.79535 1.25079C1.42223 0.877667 0.816303 0.877667 0.443182 1.25079Z" fill="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all 0.3s ease;
  transform: rotate(-90deg);
}

@media all and (min-width: 768px) {
  .home-sustainability::after {
    bottom: 0;
    width: 629px;
    height: 605px;
    background-image: url(../img/home/bg_sustainability01_pc.png);
  }

  .home-sustainability__inner {
    padding-bottom: 170px;
  }

  .home-sustainability__box {
    padding: 140px 30px;
  }

  .home-sustainability__box-in {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: var(--contents_width);
    margin-right: auto;
    margin-left: auto;
  }

  .home-sustainability__areaTxt {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }

  .home-sustainability__txt {
    margin-top: 50px;
  }

  .home-sustainability__btn {
    margin-top: 50px;
  }

  .home-sustainability-list {
    flex: 0 0 41.2%;
    max-width: 450px;
    margin-top: 0;
  }

  .home-sustainability-list__item-in {
    padding: 25px 0;
  }

  .home-sustainability-list__item-img {
    flex: 0 0 80px;
    height: 80px;
    margin-right: 16px;
  }

  .home-sustainability-list__item-txt {
    font-size: 2.6rem;
  }

  .home-sustainability-list__item-ico {
    flex: 0 0 60px;
    height: 60px;
  }

  .home-sustainability-list__item-ico::before {
    width: 13px;
    height: 7px;
  }
}

@media all and (min-width: 1360px) {
  .home-sustainability__box {
    padding: 140px 0;
  }
}

@media (hover: hover) and (pointer: fine) {
  .home-sustainability-list__item-in {
    transition: all 0.3s ease;
    position: relative;
  }

  .home-sustainability-list__item-in::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--main-color-500-rgb);
    transform: scaleX(0);
    transform-origin: top left;
    transition: transform 0.3s ease-out;
  }

  .home-sustainability-list__item-in:hover::before {
    transform: scaleX(1);
    transform-origin: top left;
  }

  .home-sustainability-list__item-in::before {
    top: 0;
  }

  .home-sustainability-list__item-in:hover {
    color: var(--main-color-500-rgb);
  }

  .home-sustainability-list__item-in:hover .home-sustainability-list__item-ico {
    background: var(--main-color-500-rgb);
  }

  .home-sustainability-list__item-in:hover .home-sustainability-list__item-ico::before {
    color: var(--surface-color-500-rgb);
  }
}

/* .home-news
================================================== */
.home-news__inner {
  padding-top: 80px;
  padding-bottom: 80px;
}

.home-news__areaHead {
  position: relative;
}

.home-news__areaHead-btn {
  position: absolute;
  top: 20px;
  right: 0;
  display: block;
  width: 40px;
  height: 40px;
  background: var(--main-color-100-rgb);
  border-radius: 50%;
}

.home-news__areaHead-btn::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 6px;
  color: var(--main-color-500-rgb);
  background-color: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 13 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.443182 1.25079C0.255028 1.43894 0.162544 1.68131 0.162544 1.92687C0.162544 2.17243 0.255028 2.41799 0.443182 2.60295L5.52655 7.68951C5.70514 7.8681 5.9507 7.97015 6.20263 7.97015C6.45457 7.97015 6.70013 7.8681 6.87872 7.68951L11.9653 2.60295C12.3384 2.22983 12.3384 1.62391 11.9653 1.25079C11.5922 0.877667 10.9862 0.877667 10.6131 1.25079L6.20582 5.65808L1.79535 1.25079C1.42223 0.877667 0.816303 0.877667 0.443182 1.25079Z" fill="currentColor"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 13 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.443182 1.25079C0.255028 1.43894 0.162544 1.68131 0.162544 1.92687C0.162544 2.17243 0.255028 2.41799 0.443182 2.60295L5.52655 7.68951C5.70514 7.8681 5.9507 7.97015 6.20263 7.97015C6.45457 7.97015 6.70013 7.8681 6.87872 7.68951L11.9653 2.60295C12.3384 2.22983 12.3384 1.62391 11.9653 1.25079C11.5922 0.877667 10.9862 0.877667 10.6131 1.25079L6.20582 5.65808L1.79535 1.25079C1.42223 0.877667 0.816303 0.877667 0.443182 1.25079Z" fill="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all 0.3s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  transition: all 0.3s ease;
}

@media all and (min-width: 768px) {
  .home-news__inner {
    display: flex;
    justify-content: space-between;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .home-news__areaHead-btn {
    position: relative;
    top: 0;
    width: 60px;
    height: 60px;
  }

  .home-news__areaHead-btn::before {
    width: 13px;
    height: 7px;
  }

  .home-news__area-archive {
    flex: 0 0 78.6%;
    max-width: 1100px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .home-news__areaHead-btn {
    transition: all 0.3s ease;
  }

  .home-news__areaHead-btn:hover {
    background: var(--main-color-500-rgb);
  }

  .home-news__areaHead-btn:hover::before {
    color: var(--surface-color-500-rgb);
  }
}

.home-news-tab {
  display: flex;
  align-items: center;
  margin: 20px -15px;
}

.home-news-tab__item {
  margin: 0 15px;
  color: var(--gray-color-800-rgb);
  font-weight: 700;
  line-height: var(--line-height-head);
}

.home-news-tab__item.is-active {
  color: var(--black-rgb);
}

@media all and (min-width: 768px) {
  .home-news-tab {
    display: block;
    margin: 54px 0 30px;
  }

  .home-news-tab__item {
    margin: 15px 0;
  }

  .home-news-tab__item::before {
    content: "";
    position: relative;
    top: -5px;
    display: inline-block;
    width: 15px;
    height: 1px;
    background: currentColor;
    margin-right: 13px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .home-news-tab__item-txt {
    position: relative;
  }

  .home-news-tab__item-txt::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 1px;
    background-color: currentColor;
    transform: scaleX(0);
    transform-origin: top right;
    transition: transform 0.3s ease-out;
  }

  .home-news-tab__item:hover {
    color: var(--black-rgb);
  }

  .home-news-tab__item:hover .home-news-tab__item-txt::before {
    transform: scaleX(1);
    transform-origin: top left;
  }
}

/* .jobchange-sec
===================================*/
.jobchange-sec__inner {
  padding-top: 40px;
  padding-bottom: 70px;
}

@media all and (min-width: 768px) {
  .jobchange-sec__inner {
    padding-top: 170px;
    padding-bottom: 150px;
  }
}

#lab .l-breadcrumb {
  padding: 0 20px;
  background: #e9f2ff;
}

#lab .u-text-blue {
  color: var(--main-color-500-rgb);
}

@media all and (min-width: 768px) {
  #lab .l-breadcrumb {
    padding: 0 30px;
  }

  #lab .l-breadcrumb__inner {
    max-width: 1100px;
  }
}

/* .lab-sec
================================================ */
.lab-sec {
  position: relative;
  overflow: hidden;
}

.lab-sec__header {
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.lab-sec__header::before {
  position: absolute;
  content: "";
  width: 50px;
  height: 50px;
  border-radius: 50%;
  top: -13px;
  left: -13px;
  background: #ebf3ff;
  z-index: -1;
}

.lab-sec__header.ico-white::before {
  background: #fff;
}

.lab-sec__head {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: var(--line-height-head);
}

.lab-sec__lead {
  margin-top: 20px;
}

.lab-sec__en {
  position: absolute;
  top: -12px;
  right: -10px;
  font-size: 7rem;
  color: #fff;
}

@media all and (min-width: 768px) {
  .lab-sec__header {
    margin-bottom: 50px;
  }

  .lab-sec__header::before {
    width: 105px;
    height: 105px;
    top: -36px;
    left: -36px;
  }

  .lab-sec__head {
    font-size: 3.2rem;
  }

  .lab-sec__lead {
    margin-top: 30px;
  }

  .lab-sec__en {
    top: -35px;
    font-size: 15.4rem;
  }
}

/* .lab-intro
================================================ */
.lab-intro {
  background: #e9f2ff;
}

.lab-intro__inner {
  padding-top: 30px;
  padding-bottom: 70px;
}

.lab-intro__in {
  background: #fff;
  padding: 30px 20px;
  border-radius: 20px;
}

.lab-intro__content {
  display: grid;
  gap: 12px 60px;
}

.lab-intro__img img {
  width: 100%;
}

.lab-intro__en {
  font-weight: 700;
  line-height: var(--line-height-head);
  margin-bottom: 10px;
}

.lab-intro__head {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: var(--line-height-head);
  margin-bottom: 15px;
}

.lab-intro__box {
  margin-top: 12px;
  padding: 15px;
  background: #f2f2f2;
  border-radius: 10px;
}

.lab-intro-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 4px;
}

.lab-intro-list__item {
  font-size: 1.2rem;
  padding-left: 8px;
  padding-right: 14px;
  position: relative;
}

.lab-intro-list__item::before {
  position: absolute;
  content: "";
  width: 3px;
  height: 3px;
  top: 50%;
  left: 0;
  border-radius: 50%;
  background: #000;
  transform: translateY(-50%);
}

@media all and (min-width: 768px) {
  .lab-intro__inner {
    padding-top: 70px;
    padding-bottom: 150px;
  }

  .lab-intro__in {
    padding: 25px 60px 60px;
  }

  .lab-intro__content {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .lab-intro__en {
    font-size: 2rem;
  }

  .lab-intro__head {
    font-size: 3.6rem;
  }

  .lab-intro__box {
    margin-top: 20px;
    padding: 20px;
  }
}

/* .lab-mission
================================================ */
.lab-mission__en {
  color: #f0f6ff;
}

.lab-mission__inner {
  padding-top: 90px;
  padding-bottom: 70px;
}

.lab-mission__area-img {
  margin-top: 30px;
}

@media all and (min-width: 768px) {
  .lab-mission__en {
    top: -28px;
  }

  .lab-mission__inner {
    padding-top: 114px;
    padding-bottom: 186px;
  }

  .lab-mission__area-img {
    margin-top: 50px;
  }
}

/* .lab-cv
================================================ */
.lab-cv {
  background: #cce8ff;
}

.lab-cv__inner {
  padding-block: 40px;
  display: grid;
  gap: 20px;
}

.lab-cv__head {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: var(--line-height-head);
  text-align: center;
}

.lab-cv__txt {
  font-size: 1.4rem;
  margin-bottom: 20px;
  text-align: center;
}

@media all and (min-width: 768px) {
  .lab-cv__inner {
    padding-block: 50px;
    grid-template-columns: repeat(2, 1fr);
    gap: 100px;
    align-items: center;
  }

  .lab-cv__head {
    font-size: 2.4rem;
    text-align: left;
  }

  .lab-cv.is-02 .lab-cv__inner {
    padding-block: 100px;
  }
}

/* .lab-case
================================================ */
.lab-case {
  background: #f2f2f2;
}

.lab-case__inner {
  padding-top: 80px;
  padding-bottom: 70px;
}

.lab-case-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.lab-case-list__item {
  height: 100%;
}

.lab-case-list .lab-case-list__link {
  border-radius: 10px;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
}

.lab-case-list__img img {
  aspect-ratio: 564/310;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.lab-case-list__area-txt {
  padding: 20px;
  background: #fff;
  box-sizing: border-box;
  display: grid;
  align-content: space-between;
  height: 100%;
}

.lab-case-list__cat {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 10px;
}

.lab-case-list__cat-item {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: var(--line-height-head);
  padding: 4px 12px;
  border-radius: 9999px;
  color: var(--main-color-500-rgb);
  background: #cce8ff;
}

.lab-case-list__cat-item.has-border {
  border: solid 1px #ccc;
  background: #fff;
}

.lab-case-list__head {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: var(--line-height-head);
  margin-bottom: 5px;
}

.lab-case-list__txt {
  font-size: 1.4rem;
  overflow: hidden;
  max-height: 6em;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.lab-case-list__btn {
  margin-top: 20px;
  max-width: 220px;
}

.lab-case-list__btn .c-btn01__in {
  padding-top: 20px;
  padding-bottom: 20px;
}

@media all and (max-width: 767px) {
  .lab-case-list__item {
    width: 282px;
  }

  .lab-case-list__wrap {
    overflow-x: scroll;
  }
}

@media all and (min-width: 768px) {
  .lab-case__inner {
    padding-top: 150px;
    padding-bottom: 150px;
  }

  .lab-case-list {
    gap: 37px;
  }

  .lab-case-list__cat-item {
    font-size: 1.4rem;
  }
}

@media (hover: hover) and (pointer: fine) {
  .lab-case-list__link {
    transition: all 0.3s ease;
  }

  .lab-case-list__link:hover {
    opacity: 0.7;
  }

  .lab-case-list__link:hover .c-btn01::before {
    background: rgba(var(--surface-color-500), 0.3);
  }

  .lab-case-list__link:hover .c-btn01__ico::before {
    width: 50px;
    height: 50px;
  }

  .lab-case-list__link:hover .c-btn01__ico::after {
    width: 13px;
    height: 7px;
  }
}

/* .lab-support
================================================ */
.lab-support {
  background: linear-gradient(90deg, #fafcff 0%, #eaf2ff 100%);
}

.lab-support__inner {
  padding-top: 80px;
  padding-bottom: 70px;
}

.lab-support-content {
  padding: 30px 20px;
  border-radius: 20px;
  background: #fff;
}

.lab-support-content__head {
  font-size: 2rem;
  font-weight: 700;
  line-height: var(--line-height-head);
  margin-bottom: 15px;
  text-align: center;
  color: var(--main-color-500-rgb);
}

.lab-support-list {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.lab-support-list__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  min-height: 60px;
  border-radius: 10px;
  background: #e9f2ff;
  color: var(--main-color-500-rgb);
  font-weight: 700;
  line-height: var(--line-height-head);
  text-align: center;
}

.lab-support-set+.lab-support-set {
  padding-top: 20px;
  margin-top: 20px;
  border-top: solid 1px #ccc;
}

.lab-support-set__wrap {
  margin: 40px -20px -30px;
  padding: 30px 20px;
  border-radius: 20px;
  background: #e9f2ff;
}

.lab-support-list02 {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
}

.lab-support-list02__item {
  display: flex;
  align-items: center;
  padding: 15px 10px 15px 24px;
  background: #fff;
  border-radius: 10px;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: var(--line-height-head);
  position: relative;
}

.lab-support-list02__item::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  top: 50%;
  left: 10px;
  border-radius: 50%;
  background: var(--main-color-500-rgb);
  transform: translateY(-50%);
}

.lab-support-box {
  padding: 20px;
  border-radius: 10px;
  background: #fff;
}

.lab-support-box__wrap {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.lab-support-box__head {
  font-size: 1.6rem;
  text-align: center;
  font-weight: 700;
  line-height: var(--line-height-head);
  color: var(--main-color-500-rgb);
}

.lab-support-list03 {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 10px;
}

.lab-support-list03__item {
  padding: 9px 0 9px 16px;
  border-bottom: dashed 1px #ccc;
  position: relative;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: var(--line-height-head);
  display: flex;
  align-items: center;
}

.lab-support-list03__item::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  top: 50%;
  left: 0;
  border-radius: 50%;
  background: var(--main-color-500-rgb);
  transform: translateY(-50%);
}

@media all and (min-width: 768px) {
  .lab-support__inner {
    padding-top: 114px;
    padding-bottom: 203px;
  }

  .lab-support-content {
    padding: 60px;
  }

  .lab-support-content__lead {
    text-align: center;
  }

  .lab-support-list {
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
  }

  .lab-support-set__wrap {
    margin: 40px 0 0;
    padding: 40px;
  }

  .lab-support-set+.lab-support-set {
    margin-top: 30px;
    padding-top: 30px;
  }

  .lab-support-list02 {
    margin-top: 30px;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }

  .lab-support-list02__item {
    padding: 15px 15px 15px 30px;
  }

  .lab-support-list02__item::before {
    left: 15px;
  }

  .lab-support-box {
    padding: 20px 40px;
  }

  .lab-support-box.is-head {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .lab-support-box__wrap {
    margin-top: 30px;
    grid-template-columns: 160px 1fr;
    gap: 20px;
  }

  .lab-support-list03 {
    grid-template-columns: repeat(3, 1fr);
    gap: 0 32px;
  }
}

/* .lab-strengths
================================================ */
.lab-strengths {
  background: #f2f2f2;
}

.lab-strengths__inner {
  padding-top: 80px;
  padding-bottom: 70px;
}

.lab-strengths-list {
  display: grid;
  gap: 20px;
}

.lab-strengths-list__item {
  padding: 20px;
  background: #fff;
  border-radius: 20px;
}

.lab-strengths-list__num {
  font-size: 1.6rem;
  margin-bottom: 5px;
  padding-left: 25px;
  color: var(--main-color-500-rgb);
  position: relative;
}

.lab-strengths-list__num::before {
  position: absolute;
  content: "";
  width: 16px;
  height: 1px;
  top: 50%;
  left: 0;
  background: #003499;
}

.lab-strengths-list__head {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: var(--line-height-head);
  margin-bottom: 10px;
}

.lab-strengths-list__content {
  display: grid;
  gap: 20px 40px;
}

@media all and (min-width: 768px) {
  .lab-strengths__inner {
    padding-top: 120px;
    padding-bottom: 170px;
  }

  .lab-strengths-list__item {
    padding: 40px;
  }

  .lab-strengths-list__num {
    font-size: 1.8rem;
  }

  .lab-strengths-list__head {
    font-size: 2.4rem;
    margin-bottom: 20px;
  }

  .lab-strengths-list__content {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* .lab-about
================================================ */
/* .lab-case
================================================ */
/* .lab-case-detail
================================================ */
/* .lab-case-list
================================================ */
/* .medical-sec
===================================*/
.medical-sec {
  position: relative;
  counter-reset: number;
  margin-top: 40px;
}

.medical-sec::before {
  position: absolute;
  content: "";
  width: 100%;
  height: calc(100% + 180px);
  top: -180px;
  left: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #E9F2FF 140px, #E9F2FF);
  z-index: -1;
}

.medical-sec__inner {
  padding-bottom: 60px;
  position: relative;
}

.medical-sec__img {
  margin-top: 40px;
  border-radius: 10px;
  overflow: hidden;
}

.medical-sec__content+.medical-sec__content {
  margin-top: 50px;
}

.medical-sec-list {
  margin-top: 40px;
}

.medical-sec-list__item {
  background: #fff;
  padding: 30px 20px;
  border-radius: 10px;
  margin-top: 20px;
}

.medical-sec-list__head {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: var(--line-height-head);
  text-align: center;
  margin-bottom: 10px;
}

.medical-sec-list__head.is-small {
  margin-top: 20px;
}

.medical-sec-list__txt.is-center {
  text-align: center;
}

.medical-sec-list__img {
  margin-top: 20px;
  border-radius: 10px;
  text-align: center;
  overflow: hidden;
  background: #f8fbff;
}

.medical-sec-list__img+.medical-sec-list__txt {
  margin-top: 10px;
}

.medical-sec-list__img.is-small {
  background: none;
  margin-top: 15px;
}

.medical-sec-list__content {
  margin-top: 20px;
}

.medical-sec-list__data-head {
  line-height: var(--line-height-head);
  padding: 15px 20px;
  text-align: center;
  font-weight: 700;
  color: #fff;
  background: var(--main-color-500-rgb);
}

.medical-sec-list__data dl {
  border: solid 1px var(--gray-color-500-rgb);
  margin-top: -1px;
}

.medical-sec-list__data dt,
.medical-sec-list__data dd {
  line-height: var(--line-height-head);
  padding: 10px 20px;
  text-align: center;
  box-sizing: border-box;
}

.medical-sec-list__data dt {
  border-bottom: solid 1px var(--gray-color-500-rgb);
  background: var(--gray-color-200-rgb);
}

@media all and (min-width: 768px) {
  .medical-sec {
    margin-top: 70px;
  }

  .medical-sec::before {
    height: calc(100% + 350px);
    top: -350px;
  }

  .medical-sec__inner {
    padding-bottom: 150px;
  }

  .medical-sec__content+.medical-sec__content {
    margin-top: 90px;
  }

  .medical-sec-list {
    display: flex;
    flex-wrap: wrap;
    margin: 40px -10px -10px;
  }

  .medical-sec-list__item {
    padding: 50px 20px;
    width: calc(33.3% - 20px);
    margin: 10px;
    box-sizing: border-box;
  }

  .medical-sec-list__item.is-half {
    width: calc(50% - 20px);
  }

  .medical-sec-list__item.is-full {
    width: 100%;
  }

  .medical-sec-list__item.is-full img {
    height: 333px;
  }

  .medical-sec-list__head {
    font-size: 2.4rem;
    margin-bottom: 16px;
  }

  .medical-sec-list__head.is-small {
    font-size: 1.8rem;
  }

  .medical-sec-list__txt.is-sm-pc {
    margin-top: 10px !important;
    font-size: 1.4rem;
  }

  .medical-sec-list__img {
    margin-top: 16px;
  }

  .medical-sec-list__img+.medical-sec-list__txt {
    margin-top: 25px;
  }

  .medical-sec-list__img.is-small {
    margin-bottom: 20px;
  }

  .medical-sec-list__img.is-small img {
    height: 44px !important;
  }

  .medical-sec-list__content {
    width: 518px;
    margin-top: 0;
  }

  .medical-sec-list__content img {
    height: 343px !important;
  }

  .medical-sec-list__content-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .medical-sec-list__data {
    display: flex;
    flex-wrap: wrap;
    margin-left: 1px;
    margin-right: -1px;
  }

  .medical-sec-list__data dl {
    width: 33.1%;
    margin-top: 0;
    margin-left: -1px;
  }

  .medical-sec-list__data dt {
    padding: 10px;
  }

  .medical-sec-list__data dd {
    padding: 20px;
  }

  .medical-sec__wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .medical-sec__wrap .medical-sec__txt {
    width: 500px;
  }

  .medical-sec__wrap .medical-sec-list {
    width: 540px;
    margin: 0;
  }

  .medical-sec__wrap .medical-sec-list__item {
    width: 100%;
  }

  .medical-sec__wrap .medical-sec__img {
    width: 540px;
    margin: 0;
  }
}

/* .message-sec
===================================*/
.message-sec__inner {
  padding-top: 20px;
  padding-bottom: 70px;
}

.message-sec__cap {
  margin-top: 18px;
  text-align: right;
}

.message-sec__cap-name {
  font-size: 1.6rem;
  font-weight: 700;
  margin-left: 10px;
}

.message-sec__btn {
  margin-top: 30px;
}

.message-sec__btn+.message-sec__btn {
  margin-top: 15px;
}

@media all and (max-width: 767px) {
  .message-sec__area-img {
    margin-top: 60px;
  }
}

@media all and (min-width: 768px) {
  .message-sec__inner {
    padding-top: 200px;
    padding-bottom: 150px;
  }

  .message-sec__content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .message-sec__area-txt {
    width: 640px;
  }

  .message-sec__area-img {
    width: 415px;
  }

  .message-sec__cap {
    margin-top: 16px;
  }

  .message-sec__cap-name {
    font-size: 2rem;
  }

  .message-sec__btn {
    margin-top: 50px;
  }

  .message-sec__btn+.message-sec__btn {
    margin-top: 25px;
  }
}

/* .mission-intro
===================================*/
.mission-intro__inner {
  padding-top: 34px;
  padding-bottom: 72px;
}

.mission-intro__set {
  display: grid;
  gap: 40px 8%;
}

.mission-intro__txt+.mission-intro__txt {
  margin-top: 2em;
}

.mission-intro__img {
  border-radius: 10px;
  overflow: hidden;
}

.mission-intro__img img {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  width: 100%;
  height: 100%;
}

@media all and (min-width: 768px) {
  .mission-intro__inner {
    padding-top: 188px;
    padding-bottom: 158px;
  }

  .mission-intro__set {
    grid-template-columns: 52% 40%;
  }
}

/* .mission-improvement
===================================*/
.mission-improvement {
  counter-reset: number;
}

.mission-improvement__inner {
  padding-bottom: 70px;
}

.mission-improvement__sec+.mission-improvement__sec {
  margin-top: 40px;
}

@media all and (min-width: 768px) {
  .mission-improvement__inner {
    padding-bottom: 170px;
  }

  .mission-improvement__sec+.mission-improvement__sec {
    margin-top: 80px;
  }
}

/* .news-archive
===================================*/
.news-archive__inner {
  padding-top: 40px;
  padding-bottom: 70px;
}

.news-archive-cat {
  margin-bottom: 50px;
  padding: 20px;
  background: var(--main-color-100-rgb);
}

.news-archive-cat__head {
  font-weight: 700;
  line-height: var(--line-height-head);
  color: var(--main-color-500-rgb);
}

.news-archive-cat__list-item {
  display: inline-block;
}

.news-archive-cat__list-item+.news-archive-cat__list-item {
  margin-left: 30px;
}

.news-archive-cat__list-link {
  font-weight: 700;
  color: var(--gray-color-800-rgb);
}

.news-archive-cat__list-link.is-current {
  color: var(--black-rgb);
}

@media all and (max-width: 767px) {
  .news-archive-cat__head {
    padding-bottom: 10px;
    margin-bottom: 15px;
    border-bottom: solid 1px var(--main-color-500-rgb);
  }

  .news-archive__archive {
    border-bottom: solid 1px var(--gray-color-500-rgb);
  }
}

@media all and (min-width: 768px) {
  .news-archive__inner {
    padding-top: 200px;
    padding-bottom: 150px;
  }

  .news-archive-cat {
    padding: 20px 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  .news-archive-cat__head {
    padding: 10px 30px 10px 0;
    border-right: solid 1px var(--main-color-500-rgb);
    margin-right: 30px;
  }

  .news-archive-cat__list-link {
    position: relative;
    padding-left: 25px;
    transition: all 0.3s ease;
  }

  .news-archive-cat__list-link::before {
    position: absolute;
    content: "";
    width: 15px;
    height: 1px;
    background: var(--gray-color-800-rgb);
    top: 50%;
    left: 0;
  }

  .news-archive-cat__list-link:hover {
    color: var(--black-rgb);
  }

  .news-archive-cat__list-link:hover::before {
    background: var(--black-rgb);
  }

  .news-archive-cat__list-link.is-current::before {
    background: var(--black-rgb);
  }
}

#news-single .l-sub-img__inner {
  padding-top: 70px;
}

@media all and (min-width: 768px) {
  #news-single .l-sub-img__inner {
    padding-top: 200px;
  }
}

/* .news-single
===================================*/
.news-single__inner {
  padding-top: 20px;
  padding-bottom: 70px;
}

@media all and (min-width: 768px) {
  .news-single {
    position: relative;
    padding-top: 70px;
  }

  .news-single::before {
    position: absolute;
    content: "";
    width: 100%;
    max-width: 1234px;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
  }

  .news-single__inner {
    padding-top: 0;
    padding-bottom: 150px;
    position: relative;
  }
}

/* .news-contact
===================================*/
.news-contact {
  margin-top: 40px;
  padding: 20px;
  background-color: var(--gray-color-200-rgb);
}

.news-contact__head {
  line-height: var(--line-height-head);
  font-weight: 700;
  color: var(--main-color-500-rgb);
  border-bottom: solid 1px var(--gray-color-500-rgb);
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.news-contact a {
  color: var(--main-color-500-rgb);
}

@media all and (min-width: 768px) {
  .news-contact {
    padding: 40px 50px;
  }
}

/* .other-intro
===================================*/
.other-intro__inner {
  padding-top: 40px;
  padding-bottom: 10px;
}

@media all and (min-width: 768px) {
  .other-intro__inner {
    padding-top: 170px;
    padding-bottom: 0;
  }

  .other-intro+.mw_wp_form .contact-form__inner {
    padding-top: 100px;
  }
}

/* .other-intro-list
===================================*/
.other-intro-list__item {
  padding: 30px 20px;
  border-radius: 10px;
  background: var(--main-color-100-rgb);
  box-sizing: border-box;
}

.other-intro-list__head {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: var(--line-height-head);
  margin-bottom: 15px;
  text-align: center;
}

@media all and (max-width: 767px) {
  .other-intro-list__item+.other-intro-list__item {
    margin-top: 20px;
  }
}

@media all and (min-width: 768px) {
  .other-intro-list {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
  }

  .other-intro-list__item {
    width: calc(50% - 20px);
    margin: 10px;
    padding: 50px 20px;
  }

  .other-intro-list__head {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }

  .other-intro-list .c-btn01__txt {
    font-size: 1.8rem;
  }
}

/* .privacy-sec
===================================*/
.privacy-sec {
  margin-top: 40px;
  counter-reset: number;
}

.privacy-sec+.privacy-sec {
  margin-top: 70px;
}

.privacy-sec:last-of-type {
  margin-bottom: 70px;
}

.privacy-sec .c-head05+.c-head04 {
  margin-top: 30px;
}

.privacy-sec .c-head04 {
  margin-top: 40px;
}

.privacy-sec .c-table01 {
  margin-top: 20px;
  margin-bottom: 30px;
}

@media all and (min-width: 768px) {
  .privacy-sec {
    margin-top: 200px;
  }

  .privacy-sec+.privacy-sec {
    margin-top: 90px;
  }

  .privacy-sec:last-of-type {
    margin-bottom: 150px;
  }

  .privacy-sec .c-head05+.c-head04 {
    margin-top: 40px;
  }

  .privacy-sec .c-head04 {
    margin-top: 70px;
  }

  .privacy-sec .c-table01 {
    margin-top: 30px;
    margin-bottom: 40px;
  }
}

/* .privacy-content
===================================*/
.privacy-content *:first-child {
  margin-top: 0;
}

.privacy-content *:last-child {
  margin-bottom: 0;
}

.privacy-content p {
  margin: 2em 0 0;
}

.privacy-content a {
  color: var(--main-color-500-rgb);
  text-decoration: underline;
}

@media all and (min-width: 768px) {
  .privacy-content a:hover {
    text-decoration: none;
  }
}

/* .service03-about
===================================*/
.service03-about__inner {
  padding-top: 70px;
  padding-bottom: 70px;
}

.service03-about-list__item+.service03-about-list__item {
  margin-top: 40px;
}

.service03-about-list__img {
  border-radius: 10px;
  overflow: hidden;
}

.service03-about-list__head-sub {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--main-color-500-rgb);
  line-height: var(--line-height-head);
  margin-bottom: 10px;
}

.service03-about-list__head .is-num {
  display: inline-block;
  margin-right: 10px;
  font-size: 1.3rem;
  line-height: 1.5;
  border-bottom: solid 2px var(--main-color-500-rgb);
  transform: translateY(-5px);
}

.service03-about-list__note {
  font-size: 1.2rem;
  line-height: var(--line-height-head);
  margin-top: 10px;
  padding-left: 1em;
  text-indent: -1em;
}

@media all and (max-width: 767px) {
  .service03-about__inner {
    padding-left: 40px;
    padding-right: 40px;
  }

  .service03-about-list__area-txt {
    margin-top: 30px;
  }
}

@media all and (min-width: 768px) {
  .service03-about__inner {
    padding-top: 100px;
    padding-bottom: 150px;
  }

  .service03-about-list__item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .service03-about-list__item+.service03-about-list__item {
    margin-top: 100px;
  }

  .service03-about-list__item:nth-child(odd) {
    flex-direction: row-reverse;
  }

  .service03-about-list__img {
    width: 445px;
  }

  .service03-about-list__area-txt {
    width: 570px;
  }

  .service03-about-list__head-sub {
    font-size: 2rem;
  }

  .service03-about-list__head .is-num {
    font-size: 1.5rem;
    margin-right: 20px;
    line-height: 1.4;
    transform: translateY(-3px);
  }

  .service03-about-list__note {
    font-size: 1.4rem;
  }
}

/* .service03-support
===================================*/
.service03-support__inner {
  padding-top: 50px;
  padding-bottom: 70px;
}

.service03-support-bnr {
  margin-top: 40px;
}

.service03-support-bnr__link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  height: 350px;
  border-radius: 10px;
  padding: 20px;
  box-sizing: border-box;
  color: #fff;
  background: url(../img/services/service03/bg_support03_sp.jpg) no-repeat top center/cover;
  position: relative;
}

.service03-support-bnr__head {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: var(--line-height-head);
  margin-bottom: 10px;
}

.service03-support-bnr__ico {
  right: 20px;
}

@media all and (min-width: 768px) {
  .service03-support__inner {
    padding-top: 70px;
    padding-bottom: 100px;
  }

  .service03-support-bnr__link {
    height: 363px;
    padding: 60px;
    background: url(../img/services/service03/bg_support03_pc.jpg) no-repeat 0 100%/cover;
    transition: all 0.3s ease;
  }

  .service03-support-bnr__link:hover {
    opacity: 0.7;
  }

  .service03-support-bnr__area-txt {
    width: 500px;
  }

  .service03-support-bnr__head {
    font-size: 2.8rem;
  }

  .service03-support-bnr__ico {
    right: 60px;
  }
}

/* .service04-intro
===================================*/
.service04-intro__inner {
  padding-top: 40px;
  padding-bottom: 50px;
}

.service04-intro-list {
  margin-top: 40px;
}

.service04-intro-list__item {
  border: solid 1px var(--gray-color-500-rgb);
  padding: 20px;
  border-radius: 10px;
}

.service04-intro-list__item+.service04-intro-list__item {
  margin-top: 30px;
  position: relative;
}

.service04-intro-list__item+.service04-intro-list__item::before {
  position: absolute;
  content: "";
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 8px 0 8px;
  border-color: var(--main-color-500-rgb) transparent transparent transparent;
}

.service04-intro-list__ja {
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
}

@media all and (max-width: 767px) {
  .service04-intro-list__item {
    display: grid;
    grid-template-columns: 84px 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 15px;
    align-items: center;
  }
}

@media all and (min-width: 768px) {
  .service04-intro__inner {
    padding-top: 200px;
    padding-bottom: 100px;
  }

  .service04-intro-list {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 68px;
    grid-row-gap: 50px;
  }

  .service04-intro-list__item {
    padding: 45px 60px;
  }

  .service04-intro-list__item+.service04-intro-list__item {
    margin-top: 0;
  }

  .service04-intro-list__item+.service04-intro-list__item::before {
    top: 50%;
    left: -32px;
    border-width: 18px 10px 0 10px;
    transform: translate(-50%, 0) rotate(-90deg);
    margin-top: -5px;
  }

  .service04-intro-list__ja {
    font-size: 2.4rem;
    writing-mode: vertical-rl;
    margin: 20px auto 0;
    letter-spacing: 0.2em;
  }
}

/* .service04-support
===================================*/
.service04-support__inner {
  padding-top: 50px;
  padding-bottom: 50px;
}

.service04-support__sec+.service04-support__sec {
  margin-top: 40px;
}

.service04-support__btn {
  margin-top: 50px;
  margin-bottom: 70px;
}

@media all and (min-width: 768px) {
  .service04-support__inner {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .service04-support__sec+.service04-support__sec {
    margin-top: 54px;
  }

  .service04-support__btn {
    width: 550px;
    margin-top: 64px;
    margin-bottom: 150px;
  }
}

/* .services-intro
===================================*/
.services-intro__inner {
  padding-top: 40px;
  padding-bottom: 70px;
}

@media all and (max-width: 767px) {
  .services-intro__area-txt {
    margin-top: 30px;
  }
}

@media all and (min-width: 768px) {
  .services-intro__inner {
    padding-top: 200px;
    padding-bottom: 200px;
  }

  .services-intro__content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .services-intro__img {
    width: 645px;
  }

  .services-intro__area-txt {
    width: 370px;
  }
}

/* .services-menu
===================================*/
.services-menu {
  padding-bottom: 60px;
}

@media all and (min-width: 768px) {
  .services-menu {
    padding-bottom: 200px;
  }
}

/* #services .c-bnr01
===================================*/
@media all and (max-width: 767px) {
  #services .c-bnr01 {
    margin-top: -20px;
    padding-top: 60px;
    border-top: solid 1px var(--gray-color-500-rgb);
  }
}

@media all and (min-width: 768px) {
  #services .c-bnr01 {
    margin-bottom: 150px;
  }
}

/* .service-archive
===================================*/
.service-archive__inner {
  padding-top: 40px;
  padding-bottom: 90px;
}

.service-archive__txt {
  margin-bottom: 30px;
}

.service-archive__archive {
  margin-top: -20px;
}

.service-archive__btn {
  margin-top: 30px;
}

@media all and (min-width: 768px) {
  .service-archive__inner {
    padding-top: 200px;
    padding-bottom: 150px;
  }

  .service-archive__txt {
    margin-bottom: 40px;
  }

  .service-archive__archive {
    margin-top: 60px;
  }

  .service-archive__btn {
    margin-top: 90px;
    width: 450px;
  }

  .service-archive__btn.is-wide {
    width: 530px;
  }
}

/* .sustainability-intro
===================================*/
.sustainability-intro__inner {
  padding-top: 34px;
  padding-bottom: 40px;
}

@media all and (min-width: 768px) {
  .sustainability-intro__inner {
    padding-top: 192px;
    padding-bottom: 80px;
  }
}

/* .sustainability-menu
===================================*/
.sustainability-menu__inner {
  padding: 40px 40px 70px;
}

@media all and (min-width: 768px) {
  .sustainability-menu__inner {
    padding: 120px 0 150px;
  }
}
}
}