@charset "UTF-8";
:root {
  --black: 51,51,51;
  --red: 255,0,0;
  --primary100: 241, 246, 250;
  --primary500: 56,161,236;
  --primary600: 19,120,191;
  --accent500: 244,217,36;
  --grayscale200: 235,235,235;
  --grayscale500: 191,191,191;
  --grayscale800: 128,128,128;
  --contents_width: 1100px;
  --contents_width_middle: 1390px;
  --contents_width_wide: 1680px;
  --body_padding_side: 80px;
  --contents_width_with_padding: 1180px;
  --sidebar_width: 250px;
}

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;
  font-weight: 500;
  color: rgb(var(--black));
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.08em;
}
@media all and (min-width: 768px) {
  body {
    min-width: var(--contents_width_with_padding);
    font-size: 1.6rem;
  }
}

.l-wrapper {
  position: relative;
}

@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: 1180px) {
  .u-media-query {
    font-family: "pc";
  }
}

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

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

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

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

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

@media all and (min-width: 1340px ) {
  .u-view-under-pc {
    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-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: "Outfit", sans-serif;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.u-lh-wide {
  line-height: 2;
}
@media all and (min-width: 768px) {
  .u-lh-wide-pc {
    line-height: 3;
  }
}

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

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

/* layout
-------------------------------------- */
.u-inner {
  box-sizing: border-box;
  padding-left: 20px;
  padding-right: 20px;
}
@media all and (min-width: 768px) {
  .u-inner {
    width: 100%;
    max-width: calc(var(--contents_width) + var(--body_padding_side));
    margin-right: auto;
    margin-left: auto;
    padding-left: 40px;
    padding-right: 40px;
  }
  .u-inner.is-middle-pc {
    max-width: calc(var(--contents_width_middle) + var(--body_padding_side));
  }
  .u-inner.is-wide-pc {
    max-width: calc(var(--contents_width_wide) + var(--body_padding_side));
  }
}

/*  .c-archive01.has-border
================================================== */
.c-archive01.has-border .c-archive01__item {
  margin: 0;
  border-bottom: 1px solid rgb(var(--grayscale500));
}
.c-archive01.has-border .c-archive01__item-in {
  padding-top: 20px;
  padding-bottom: 20px;
  background: none !important;
  -webkit-backdrop-filter: blur(0px);
  backdrop-filter: blur(0px);
}
@media all and (min-width: 768px) {
  .c-archive01.has-border .c-archive01__item-meta {
    flex-wrap: nowrap;
  }
  .c-archive01.has-border .c-archive01__item-in {
    padding-top: 40px;
    padding-bottom: 40px;
    flex-wrap: nowrap;
  }
}

/*  .c-archive01.is-related
================================================== */
.c-archive01.is-related .c-archive01__item {
  margin-top: 10px;
}
.c-archive01.is-related .c-archive01__item-in {
  background: rgb(var(--primary100));
  -webkit-backdrop-filter: blur(0px);
  backdrop-filter: blur(0px);
  padding-right: 20px;
}
.c-archive01.is-related .c-archive01__item-in::before, .c-archive01.is-related .c-archive01__item-in::after {
  content: none;
}
.c-archive01.is-related .c-archive01__item-head {
  display: block;
  max-height: unset;
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
  text-overflow: unset;
}
@media all and (min-width: 768px) {
  .c-archive01.is-related {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -7px;
  }
  .c-archive01.is-related .c-archive01__item {
    display: flex;
    flex-basis: calc(33.3333333333% - 14px);
    max-width: calc(33.3333333333% - 14px);
    margin: 0 7px;
  }
  .c-archive01.is-related .c-archive01__item-in {
    width: 100%;
    display: block;
  }
  .c-archive01.is-related .c-archive01__item-head {
    margin-top: 12px;
    width: 100%;
    line-height: 1.6;
    font-size: 1.8rem;
  }
}

/*  .c-archive01
================================================== */
.c-archive01__item + .c-archive01__item {
  margin-top: 5px;
}
.c-archive01__item-in {
  display: block;
  padding: 15px 65px 15px 20px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 5px;
  font-size: 1.5rem;
  position: relative;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.c-archive01__item-in::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 35px;
  height: 35px;
  border: solid 2px rgb(var(--primary500));
  border-radius: 50%;
  box-sizing: border-box;
}
.c-archive01__item-in::after {
  display: inline-block;
  width: 9px;
  height: 15px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9 15"><path d="M8.26917 7.5C8.26917 7.72387 8.18135 7.93115 8.03765 8.08869L2.09789 14.2575C1.78654 14.5808 1.27559 14.5808 0.964232 14.2575C0.652873 13.9341 0.652873 13.4035 0.964231 13.0801L6.34514 7.49171L0.964231 1.91161C0.652873 1.58824 0.652873 1.06589 0.964231 0.742522C1.27559 0.419159 1.77855 0.419159 2.08991 0.742522L8.02967 6.91131C8.18136 7.06885 8.26119 7.27613 8.26119 7.5L8.26917 7.5Z" fill="currentColor"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9 15"><path d="M8.26917 7.5C8.26917 7.72387 8.18135 7.93115 8.03765 8.08869L2.09789 14.2575C1.78654 14.5808 1.27559 14.5808 0.964232 14.2575C0.652873 13.9341 0.652873 13.4035 0.964231 13.0801L6.34514 7.49171L0.964231 1.91161C0.652873 1.58824 0.652873 1.06589 0.964231 0.742522C1.27559 0.419159 1.77855 0.419159 2.08991 0.742522L8.02967 6.91131C8.18136 7.06885 8.26119 7.27613 8.26119 7.5L8.26917 7.5Z" fill="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
  transition: all 0.3s ease;
  position: absolute;
  color: rgb(var(--primary500));
  top: 50%;
  right: 33px;
  transform: translateY(-50%);
}
.c-archive01__item-meta {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}
.c-archive01__item-date {
  color: rgb(var(--grayscale800));
  white-space: nowrap;
}
.c-archive01__item-cat {
  display: inline-block;
  white-space: nowrap;
  padding: 5px;
  border-radius: 5px;
  background: rgb(var(--primary500));
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.2;
  margin-left: 5px;
}
.c-archive01__item-cat.is-important {
  background: rgb(var(--primary600));
}
.c-archive01__item-head {
  overflow: hidden;
  display: -webkit-box;
  max-height: 2.4em;
  line-height: 1.2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
@media all and (min-width: 768px) {
  .c-archive01__item {
    display: block;
  }
  .c-archive01__item + .c-archive01__item {
    margin-top: 10px;
  }
  .c-archive01__item-meta {
    margin-bottom: 0px;
  }
  .c-archive01__item-in {
    padding: 40px 100px 40px 30px;
    display: flex;
    align-items: center;
    font-size: 1.8rem;
  }
  .c-archive01__item-in::before {
    width: 50px;
    height: 50px;
    right: 30px;
  }
  .c-archive01__item-in::after {
    right: 50px;
    width: 10px;
    height: 18px;
  }
  .c-archive01__item-date {
    width: 130px;
  }
  .c-archive01__item-cat {
    margin-left: 0;
    margin-right: 20px;
    padding: 5px;
    font-size: 1.3rem;
  }
  .c-archive01__item-head {
    margin: 0;
    width: calc(100% - 125px);
  }
}
@media (hover: hover) {
  .c-archive01__item-in {
    transition: background 0.3s ease;
  }
  .c-archive01__item-in::before {
    transition: background 0.3s ease;
  }
  .c-archive01__item-in::after {
    transition: color 0.3s ease;
  }
  .c-archive01__item-in:hover {
    background: rgb(var(--grayscale200));
  }
  .c-archive01__item-in:hover::before {
    background: rgb(var(--primary500));
  }
  .c-archive01__item-in:hover::after {
    color: #fff;
  }
  .c-archive01__item-in:hover .c-archive01__item-head {
    text-decoration: underline;
  }
}

/* .c-archive02
================================================== */
.c-archive02__item-in {
  display: block;
}
.c-archive02__item-img {
  position: relative;
  margin-bottom: 10px;
  border-radius: 5px;
  width: 100%;
  padding-top: 66.8656716418%;
}
.c-archive02__item-img-cat {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  padding: 5px;
  border-radius: 5px;
  background: rgb(var(--primary600));
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.2;
}
.c-archive02__item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.c-archive02__item-head {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.6;
}
.c-archive02__item-tag {
  margin-top: 6px;
  display: flex;
  align-items: flex-start;
}
.c-archive02__item-tag-head {
  display: block;
  padding: 3px 5px;
  border-radius: 5px;
  color: rgb(var(--primary600));
  border: 1px solid;
  box-sizing: border-box;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  text-align: center;
}
.c-archive02__item-tag-row {
  max-width: calc(100% - 4.7em);
  line-height: 1.6;
  margin-left: 10px;
}
@media all and (max-width: 767px) {
  .c-archive02__item + .c-archive02__item {
    margin-top: 35px;
  }
}
@media all and (min-width: 768px) {
  .c-archive02 {
    display: flex;
    flex-wrap: wrap;
    margin: -70px -2.5% 0;
  }
  .c-archive02__item {
    flex-basis: 28.3333333333%;
    margin: 70px 2.5% 0;
  }
  .c-archive02__item-img {
    margin-bottom: 20px;
  }
  .c-archive02__item-head {
    font-size: 2.1rem;
  }
  .c-archive02__item-tag {
    margin-top: 10px;
  }
  .c-archive02__item-tag-head {
    padding: 5px;
    width: 72px;
  }
  .c-archive02__item-tag-row {
    max-width: calc(100% - 82px);
    font-size: 1.6rem;
  }
}

/*  .c-btn01
================================================== */
.c-btn01 {
  display: inline-block;
  margin-top: 15px;
}
.c-btn01__link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-right: 45px;
  min-height: 35px;
  font-weight: 700;
  position: relative;
}
.c-btn01__link::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 35px;
  height: 35px;
  border: solid 2px rgb(var(--primary500));
  border-radius: 50%;
  box-sizing: border-box;
}
.c-btn01__link::after {
  display: inline-block;
  width: 9px;
  height: 15px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9 15"><path d="M8.26917 7.5C8.26917 7.72387 8.18135 7.93115 8.03765 8.08869L2.09789 14.2575C1.78654 14.5808 1.27559 14.5808 0.964232 14.2575C0.652873 13.9341 0.652873 13.4035 0.964231 13.0801L6.34514 7.49171L0.964231 1.91161C0.652873 1.58824 0.652873 1.06589 0.964231 0.742522C1.27559 0.419159 1.77855 0.419159 2.08991 0.742522L8.02967 6.91131C8.18136 7.06885 8.26119 7.27613 8.26119 7.5L8.26917 7.5Z" fill="currentColor"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9 15"><path d="M8.26917 7.5C8.26917 7.72387 8.18135 7.93115 8.03765 8.08869L2.09789 14.2575C1.78654 14.5808 1.27559 14.5808 0.964232 14.2575C0.652873 13.9341 0.652873 13.4035 0.964231 13.0801L6.34514 7.49171L0.964231 1.91161C0.652873 1.58824 0.652873 1.06589 0.964231 0.742522C1.27559 0.419159 1.77855 0.419159 2.08991 0.742522L8.02967 6.91131C8.18136 7.06885 8.26119 7.27613 8.26119 7.5L8.26917 7.5Z" fill="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
  transition: all 0.3s ease;
  position: absolute;
  color: rgb(var(--primary500));
  top: 50%;
  right: 13px;
  transform: translateY(-50%);
}
.c-btn01__link[target=_blank]::after {
  display: inline-block;
  width: 13px;
  height: 13px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 13 13"><g><path d="M5.3001 1.7H11.3001V7.7H5.3001V1.7ZM4.1001 8.9H12.5001V0.5H4.1001V8.9Z" fill="currentColor"/><path d="M0.5 4.1V12.5H8.9V10.1H7.7V11.3H1.7V5.3H2.9V4.1H0.5Z" fill="currentColor"/></g></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 13 13"><g><path d="M5.3001 1.7H11.3001V7.7H5.3001V1.7ZM4.1001 8.9H12.5001V0.5H4.1001V8.9Z" fill="currentColor"/><path d="M0.5 4.1V12.5H8.9V10.1H7.7V11.3H1.7V5.3H2.9V4.1H0.5Z" fill="currentColor"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
  transition: all 0.3s ease;
  color: rgb(var(--primary500));
  right: 11px;
}
.c-btn01__txt {
  position: relative;
}
.c-btn01__txt::after {
  position: absolute;
  content: "";
  bottom: 1px;
  left: 0;
  border-bottom: solid 1px rgb(var(--black));
  width: 0;
}
@media all and (min-width: 768px) {
  .c-btn01 {
    margin-top: 30px;
  }
  .c-btn01__link {
    padding-right: 65px;
  }
  .c-btn01__link::before {
    width: 50px;
    height: 50px;
    transition: all 0.3s ease;
  }
  .c-btn01__link::after {
    right: 20px;
    width: 10px;
    height: 18px;
    transition: all 0.3s ease;
  }
  .c-btn01__link[target=_blank]::after {
    right: 17px;
    width: 16px;
    height: 16px;
  }
  .c-btn01__link:hover::before {
    background: rgb(var(--primary500)) !important;
  }
  .c-btn01__link:hover::after {
    color: #fff !important;
  }
  .c-btn01__link:hover .c-btn01__txt::after {
    -webkit-animation: border_anim 0.15s linear forwards;
    animation: border_anim 0.15s linear forwards;
  }
}

/*  .c-btn01.is-white
================================================== */
.c-btn01.is-white {
  color: #fff;
}
.c-btn01.is-white .c-btn01__link::before {
  border-color: #fff;
}
.c-btn01.is-white .c-btn01__link::after {
  color: #fff;
}
.c-btn01.is-white .c-btn01__link:hover::before {
  background: #fff !important;
}
.c-btn01.is-white .c-btn01__link:hover::after {
  background: rgb(var(--primary500));
}
.c-btn01.is-white .c-btn01__txt::after {
  border-color: #fff;
}

/*  .c-btn02
================================================== */
.c-btn02 {
  margin-top: 20px;
}
.c-btn02 + .c-btn02 {
  margin-top: 10px;
}
.c-btn02__link {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 65px;
  align-items: center;
  padding: 0 85px 0 25px;
  box-sizing: border-box;
  font-size: 1.7rem;
  font-weight: 700;
  background: rgb(var(--grayscale200));
  border-radius: 5px;
  position: relative;
}
.c-btn02__link::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  width: 35px;
  height: 35px;
  border: solid 2px rgb(var(--primary500));
  border-radius: 50%;
  box-sizing: border-box;
}
.c-btn02__link::after {
  display: inline-block;
  width: 9px;
  height: 15px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9 15"><path d="M8.26917 7.5C8.26917 7.72387 8.18135 7.93115 8.03765 8.08869L2.09789 14.2575C1.78654 14.5808 1.27559 14.5808 0.964232 14.2575C0.652873 13.9341 0.652873 13.4035 0.964231 13.0801L6.34514 7.49171L0.964231 1.91161C0.652873 1.58824 0.652873 1.06589 0.964231 0.742522C1.27559 0.419159 1.77855 0.419159 2.08991 0.742522L8.02967 6.91131C8.18136 7.06885 8.26119 7.27613 8.26119 7.5L8.26917 7.5Z" fill="currentColor"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9 15"><path d="M8.26917 7.5C8.26917 7.72387 8.18135 7.93115 8.03765 8.08869L2.09789 14.2575C1.78654 14.5808 1.27559 14.5808 0.964232 14.2575C0.652873 13.9341 0.652873 13.4035 0.964231 13.0801L6.34514 7.49171L0.964231 1.91161C0.652873 1.58824 0.652873 1.06589 0.964231 0.742522C1.27559 0.419159 1.77855 0.419159 2.08991 0.742522L8.02967 6.91131C8.18136 7.06885 8.26119 7.27613 8.26119 7.5L8.26917 7.5Z" fill="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
  transition: all 0.3s ease;
  position: absolute;
  color: rgb(var(--primary500));
  top: 50%;
  right: 38px;
  transform: translateY(-50%);
}
@media all and (min-width: 768px) {
  .c-btn02__link {
    height: 120px;
    font-size: 2.1rem;
    padding: 0 130px 0 40px;
    transition: all 0.3s ease;
  }
  .c-btn02__link::before {
    width: 50px;
    height: 50px;
    right: 40px;
    transition: all 0.3s ease;
  }
  .c-btn02__link::after {
    right: 60px;
    width: 10px;
    height: 18px;
    transition: all 0.3s ease;
  }
  .c-btn02__link:hover {
    background: #d8d8d8;
  }
  .c-btn02__link:hover::before {
    background: rgb(var(--primary500));
  }
  .c-btn02__link:hover::after {
    color: #fff;
  }
}

/* .c-cats01
================================================ */
.c-cats01__inner {
  padding-top: 20px;
}
.c-cats01-list {
  margin: 0 auto;
  display: flex;
  box-sizing: border-box;
  font-size: 1.5rem;
  line-height: 1.6;
  font-weight: 700;
  color: rgb(var(--grayscale800));
}
.c-cats01-list__item-in {
  position: relative;
  min-width: 106px;
  min-height: 60px;
  height: 100%;
  padding: 10px 20px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-cats01-list__item-in::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-top: 3px solid transparent;
}
.c-cats01-list__item.is-current .c-cats01-list__item-in {
  color: rgb(var(--primary600));
  padding-bottom: 13px;
}
.c-cats01-list__item.is-current .c-cats01-list__item-in::after {
  border-top-color: currentColor;
}
@media all and (max-width: 767px) {
  .c-cats01 {
    position: relative;
    margin-bottom: -20px;
  }
  .c-cats01::after {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    content: "";
    border-bottom: 1px solid rgb(var(--grayscale500));
  }
  .c-cats01__inner {
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    overflow: auto;
  }
  .c-cats01__row {
    display: flex;
    padding: 0 20px 20px;
  }
}
@media all and (min-width: 768px) {
  .c-cats01__inner {
    padding-top: 111px;
  }
  .c-cats01__row {
    position: relative;
  }
  .c-cats01-list {
    position: static;
    font-size: 1.8rem;
    justify-content: center;
    flex-wrap: wrap;
    border-bottom: 1px solid rgb(var(--grayscale500));
  }
  .c-cats01-list__item {
    position: static;
    margin-top: 25px;
  }
  .c-cats01-list__item::before {
    content: "";
    position: absolute;
  }
  .c-cats01-list__item-in {
    width: 275px;
  }
}
@media (hover: hover) {
  .c-cats01-list__item-in {
    transition: all 0.3s ease;
  }
  .c-cats01-list__item-in::after {
    transition: border-top-color 0.3s ease;
  }
  .c-cats01-list__item-in:hover {
    color: rgb(var(--primary600));
    padding-bottom: 13px;
  }
  .c-cats01-list__item-in:hover::after {
    border-top-color: currentColor;
  }
}

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

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

/*  .c-cv01
================================================== */
.c-cv01 {
  background: rgba(var(--grayscale200), 0.8);
}
.c-cv01__inner {
  padding-top: 60px;
  padding-bottom: 60px;
}
.c-cv01__txt {
  margin-bottom: 20px;
}
.c-cv01__btn {
  margin-top: 15px;
}
.c-cv01__btn-link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 90px;
  color: #fff;
  background: rgb(var(--primary600));
  border-radius: 5px;
  font-size: 1.7rem;
  overflow: hidden;
}
.c-cv01__btn-txt {
  position: relative;
  z-index: 2;
}
.c-cv01__btn-txt::before {
  display: inline-block;
  width: 17px;
  height: 12px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 17 12"><g><path d="M8.5 8.01829L0.5 2.49109V9.99851C0.5 10.8254 1.20655 11.5109 2.08405 11.5109H14.9273C15.7934 11.5109 16.5114 10.8363 16.5114 9.99851V2.49109L8.5114 8.01829H8.5Z" fill="currentColor"/><path d="M8.49988 6.77794L16.3517 1.35955C16.101 0.84817 15.554 0.5 14.9272 0.5H2.08393C1.45714 0.5 0.910136 0.84817 0.659424 1.35955L8.49988 6.78882V6.77794Z" fill="currentColor"/></g></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 17 12"><g><path d="M8.5 8.01829L0.5 2.49109V9.99851C0.5 10.8254 1.20655 11.5109 2.08405 11.5109H14.9273C15.7934 11.5109 16.5114 10.8363 16.5114 9.99851V2.49109L8.5114 8.01829H8.5Z" fill="currentColor"/><path d="M8.49988 6.77794L16.3517 1.35955C16.101 0.84817 15.554 0.5 14.9272 0.5H2.08393C1.45714 0.5 0.910136 0.84817 0.659424 1.35955L8.49988 6.78882V6.77794Z" fill="currentColor"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
  transition: all 0.3s ease;
  width: 25px;
  height: 17px;
  color: #fff;
  margin: 0 10px 4px 0;
}
.c-cv01__btn.is-contract .c-cv01__btn-link {
  background: rgb(var(--primary500));
}
.c-cv01__btn.is-contract .c-cv01__btn-txt::before {
  display: inline-block;
  width: 23px;
  height: 24px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 23 24"><path d="M11.5 0.5C5.152 0.5 0 5.652 0 12C0 18.348 5.152 23.5 11.5 23.5C17.848 23.5 23 18.348 23 12C22.9885 5.652 17.848 0.5 11.5 0.5ZM18.2505 8.5155L10.8905 17.3245C10.603 17.6925 10.143 17.8995 9.6715 17.888C9.2575 17.888 8.8665 17.7385 8.579 17.4395L4.807 13.3455C4.278 12.7245 4.3125 11.8045 4.876 11.2295C5.152 10.988 5.5085 10.85 5.8765 10.8615C6.302 10.8615 6.7045 11.0225 6.992 11.333L9.545 14.093L15.847 6.6985C16.077 6.388 16.4105 6.1695 16.79 6.1005C16.836 6.1005 16.882 6.089 16.928 6.089H17.043C17.871 6.089 18.538 6.7445 18.5495 7.5725C18.5495 7.9175 18.4345 8.2395 18.2275 8.504" fill="currentColor"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 23 24"><path d="M11.5 0.5C5.152 0.5 0 5.652 0 12C0 18.348 5.152 23.5 11.5 23.5C17.848 23.5 23 18.348 23 12C22.9885 5.652 17.848 0.5 11.5 0.5ZM18.2505 8.5155L10.8905 17.3245C10.603 17.6925 10.143 17.8995 9.6715 17.888C9.2575 17.888 8.8665 17.7385 8.579 17.4395L4.807 13.3455C4.278 12.7245 4.3125 11.8045 4.876 11.2295C5.152 10.988 5.5085 10.85 5.8765 10.8615C6.302 10.8615 6.7045 11.0225 6.992 11.333L9.545 14.093L15.847 6.6985C16.077 6.388 16.4105 6.1695 16.79 6.1005C16.836 6.1005 16.882 6.089 16.928 6.089H17.043C17.871 6.089 18.538 6.7445 18.5495 7.5725C18.5495 7.9175 18.4345 8.2395 18.2275 8.504" fill="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
  transition: all 0.3s ease;
}
@media all and (min-width: 768px) {
  .c-cv01__inner {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .c-cv01__area-txt {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    margin-bottom: 40px;
  }
  .c-cv01__head {
    margin-bottom: 0 !important;
  }
  .c-cv01__txt {
    padding-left: 80px;
  }
  .c-cv01__area-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .c-cv01__btn {
    width: calc(50% - 10px);
    margin: 0;
  }
  .c-cv01__btn-link {
    height: 200px;
    font-size: 2.8rem;
    position: relative;
  }
  .c-cv01__btn-link::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--black), 0.2);
    opacity: 0;
    transition: all 0.3s ease;
  }
  .c-cv01__btn-link:hover::before {
    opacity: 1;
  }
  .c-cv01__btn-txt::before {
    width: 39px;
    height: 28px;
    margin: 0 25px 4px 0;
  }
  .c-cv01__btn.is-contract {
    margin-left: 20px;
  }
  .c-cv01__btn.is-contract .c-cv01__btn-txt::before {
    width: 36px;
    height: 36px;
  }
}

/*  .c-dot01
================================================== */
.c-dot01 {
  text-align: center;
}
.c-dot01 li {
  display: inline-block;
  margin: 0 5px;
}
.c-dot01 li button {
  position: relative;
  text-indent: -9999px;
  padding: 0;
  font-size: 0;
  border: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}
.c-dot01 li.slick-active button {
  background: #fff;
}
/* .mw_wp_form リセット
================================================ */
.mw_wp_form .c-form01 .horizontal-item + .horizontal-item {
  margin-left: 0;
}

.mw_wp_form .c-form01 .error {
  margin-top: 10px;
}

/* .c-form01
================================================ */
.c-form01 {
  background: #fff;
  border-radius: 10px;
  padding: 37px 20px 49px;
  box-sizing: border-box;
}
@media all and (min-width: 768px) {
  .c-form01 {
    padding: 80px 100px 100px;
    box-shadow: 10px 10px 25px 0px rgba(var(--black), 0.15);
  }
}

/* .c-form01-step
================================================ */
.c-form01-step {
  background: rgb(var(--primary100));
  border-radius: 5px;
  padding: 18px 0 15px;
}
.c-form01-step__list {
  text-align: center;
  font-weight: 700;
  font-size: 1.5rem;
  color: rgb(var(--grayscale500));
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.c-form01-step__list-item {
  position: relative;
  margin: 0 6px;
}
.c-form01-step__list-item:nth-of-type(n+2)::before {
  content: "";
  position: absolute;
  top: 14px;
  right: 50%;
  width: calc(100% + 12px);
  border-top: 3px solid rgb(var(--grayscale500));
}
.c-form01-step__list-item-ico {
  position: relative;
  display: block;
  margin: 0 auto;
  background: rgb(var(--grayscale500));
  border-radius: 50%;
  width: 31px;
  height: 31px;
  z-index: 2;
  transform: scale(0.7);
}
.c-form01-step__list-item-ico::before {
  display: inline-block;
  width: 14px;
  height: 10px;
  vertical-align: middle;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="10" viewBox="0 0 14 10"><path d="M13.02 1.05a1.43 1.43 0 0 0-2.04 0l-4.11 4.2a2.27 2.27 0 0 1-3.25 0l-.6-.62a1.43 1.43 0 1 0-2.04 2l1.58 1.63a3.75 3.75 0 0 0 5.37 0l5.1-5.21a1.43 1.43 0 0 0 0-2Z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="10" viewBox="0 0 14 10"><path d="M13.02 1.05a1.43 1.43 0 0 0-2.04 0l-4.11 4.2a2.27 2.27 0 0 1-3.25 0l-.6-.62a1.43 1.43 0 1 0-2.04 2l1.58 1.63a3.75 3.75 0 0 0 5.37 0l5.1-5.21a1.43 1.43 0 0 0 0-2Z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center center;
  mask-position: center center;
  content: "";
  margin: 0 0 2px 1px;
  opacity: 0;
}
.c-form01-step__list-item-txt {
  display: block;
  margin-top: 5px;
}
@media all and (min-width: 768px) {
  .c-form01-step__list-item {
    width: 190px;
  }
}

.mw_wp_form_input .c-form01-step__list-item.is-input {
  color: rgb(var(--black));
}
.mw_wp_form_input .c-form01-step__list-item.is-input .c-form01-step__list-item-ico {
  background: rgb(var(--accent500));
  transform: scale(1);
}
.mw_wp_form_input .c-form01-step__list-item.is-input .c-form01-step__list-item-ico::before {
  opacity: 1;
}

.mw_wp_form_confirm .c-form01-step__list-item.is-confirm {
  color: rgb(var(--black));
}
.mw_wp_form_confirm .c-form01-step__list-item.is-confirm .c-form01-step__list-item-ico {
  background: rgb(var(--accent500));
  transform: scale(1);
}
.mw_wp_form_confirm .c-form01-step__list-item.is-confirm .c-form01-step__list-item-ico::before {
  opacity: 1;
}

/*  .c-form01 ベーススタイル
================================================== */
.c-form01 input[type=text],
.c-form01 input[type=tel],
.c-form01 input[type=number],
.c-form01 input[type=email],
.c-form01 select,
.c-form01 textarea {
  display: block;
  width: 100%;
  height: 56px;
  padding: 3px 20px 5px;
  box-sizing: border-box;
  border: 0;
  border-radius: 5px;
  background: rgba(var(--grayscale200));
  font-size: 1.6rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
}
.c-form01 input[type=text]::-moz-placeholder, .c-form01 input[type=tel]::-moz-placeholder, .c-form01 input[type=number]::-moz-placeholder, .c-form01 input[type=email]::-moz-placeholder, .c-form01 select::-moz-placeholder, .c-form01 textarea::-moz-placeholder {
  color: rgba(var(--grayscale800));
}
.c-form01 input[type=text]::placeholder,
.c-form01 input[type=tel]::placeholder,
.c-form01 input[type=number]::placeholder,
.c-form01 input[type=email]::placeholder,
.c-form01 select::placeholder,
.c-form01 textarea::placeholder {
  color: rgba(var(--grayscale800));
}
.c-form01 button, .c-form01 label {
  cursor: pointer;
}
.c-form01 select {
  padding-right: 30px;
  background: rgba(var(--grayscale200)) url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%229%22%20height%3D%227%22%20viewBox%3D%220%200%209%207%22%20fill%3D%22none%22%3E%20%3Cpath%20d%3D%22M4.5%207L0.602886%200.25H8.39711L4.5%207Z%22%20fill%3D%22%23333333%22%2F%3E%3C%2Fsvg%3E") no-repeat center right 16px/11px;
  cursor: pointer;
}
.c-form01 textarea {
  min-height: 220px;
  height: 220px;
  padding-top: 15px;
  padding-bottom: 15px;
  resize: vertical;
}
@media all and (min-width: 768px) {
  .c-form01 input[type=text],
.c-form01 input[type=tel],
.c-form01 input[type=number],
.c-form01 input[type=email],
.c-form01 select,
.c-form01 textarea {
    height: 50px;
  }
  .c-form01 textarea {
    min-height: 132px;
    height: 132px;
  }
}

/*  .c-form01-table
================================================== */
.c-form01-table {
  margin-bottom: 30px;
}
.c-form01-table th, .c-form01-table td {
  line-height: var(--line_height_head);
  box-sizing: border-box;
  text-align: left;
}
.c-form01-table th {
  padding-top: 20px;
  font-size: 1.6rem;
  font-weight: 700;
}
.c-form01-table td {
  border-bottom: 1px solid rgba(var(--grayscale500));
  padding-top: 10px;
  padding-bottom: 20px;
}
.c-form01-table__th {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.c-form01-table__th-txt {
  display: block;
  margin-right: 10px;
}
.c-form01-table__th-label {
  display: block;
  font-size: 1.4rem;
  line-height: 1.2;
  width: 46px;
  padding: 3px 0;
  box-sizing: border-box;
  border: 1px solid rgb(var(--primary600));
  background-color: #fff;
  color: rgb(var(--primary600));
  border-radius: 3px;
  font-weight: 700;
  text-align: center;
  font-weight: normal;
}
.c-form01-table__th-label.is-required {
  background: rgb(var(--primary600));
  color: #fff;
}
.c-form01-table__th-note {
  width: 100%;
  margin-top: 15px;
}
@media all and (max-width: 767px) {
  .c-form01-table table, .c-form01-table thead, .c-form01-table tbody, .c-form01-table tr, .c-form01-table th, .c-form01-table td {
    display: block;
  }
  .c-form01-table th {
    border-bottom: 0 !important;
  }
}
@media all and (min-width: 768px) {
  .c-form01-table {
    padding-top: 30px;
    margin-bottom: 60px;
  }
  .c-form01-table th, .c-form01-table td {
    vertical-align: top;
  }
  .c-form01-table th {
    width: 290px;
    padding: 36px 20px 36px 0;
    font-size: 1.8rem;
    border-bottom: 1px solid rgba(var(--grayscale500));
  }
  .c-form01-table td {
    padding: 30px 0;
    vertical-align: middle;
  }
  .c-form01-table__th {
    justify-content: space-between;
  }
  .c-form01-table__th-txt {
    margin-right: 0;
  }
  .c-form01-table__th-label {
    width: 54px;
    font-size: 1.6rem;
  }
  .c-form01-table__th-note {
    margin-top: 32px;
  }
}

.mw_wp_form_confirm .c-form01-table__th-note {
  display: none;
}

/* .c-form01-set
================================================ */
.c-form01-set {
  box-sizing: border-box;
}
.c-form01-set__item + .c-form01-set__item {
  margin-top: 10px;
}
.c-form01-set__head {
  line-height: var(--line_height_head);
  margin-bottom: 3px;
  font-size: 1.4rem;
  font-weight: 500;
}
@media all and (min-width: 768px) {
  .c-form01-set {
    padding-left: 19px;
  }
  .c-form01-set__item {
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: 125px auto;
    grid-template-rows: auto;
    gap: 0px 0px;
  }
  .c-form01-set__head {
    font-size: 1.7rem;
    display: flex;
    align-items: center;
  }
  .c-form01-set .c-form01-post, .c-form01-set select {
    max-width: 200px;
  }
}

/* .c-form01-post
================================================ */
.c-form01-post__input .error {
  display: block;
  margin-top: 5px;
  white-space: nowrap;
}

.mw_wp_form_confirm .c-form01-post {
  align-items: center;
}
.mw_wp_form_confirm .c-form01-post__prefix {
  margin-top: 0 !important;
}
.mw_wp_form_confirm .c-form01-post__input {
  width: auto;
}

/*  .c-form01-radio .mwform-radio-field
================================================ */
.c-form01-radio .mwform-radio-field {
  display: block;
}
.c-form01-radio .mwform-radio-field input {
  display: none;
}
.c-form01-radio .mwform-radio-field + .mwform-radio-field {
  margin-top: 17px;
}
.c-form01-radio .mwform-radio-field .mwform-radio-field-text {
  line-height: 1.6;
  position: relative;
  display: inline-block;
  padding-left: 30px;
  font-size: 1.6rem;
  vertical-align: top;
}
.c-form01-radio .mwform-radio-field .mwform-radio-field-text::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  display: block;
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  border: 1px solid rgba(var(--grayscale500));
  border-radius: 50%;
}
.c-form01-radio .mwform-radio-field input:checked + .mwform-radio-field-text::after {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  left: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(var(--grayscale500));
}
@media all and (min-width: 768px) {
  .c-form01-radio {
    margin: 0 -35px -24px 0;
  }
  .c-form01-radio .mwform-radio-field {
    display: inline-block;
    margin: 0 35px 24px 0;
  }
  .c-form01-radio .mwform-radio-field + .mwform-radio-field {
    margin-top: 0;
  }
}

@media all and (min-width: 768px) {
  .mw_wp_form_confirm .c-form01-radio {
    margin: 0;
  }
}

/*  .c-form01 .mwform-checkbox-field
================================================ */
.c-form01 .mwform-checkbox-field {
  display: block;
  margin-top: 3px;
}
.c-form01 .mwform-checkbox-field + .mwform-checkbox-field {
  margin-top: 10px;
}
.c-form01 .mwform-checkbox-field label {
  display: block;
}
.c-form01 .mwform-checkbox-field input {
  display: none;
}
.c-form01 .mwform-checkbox-field .mwform-checkbox-field-text {
  line-height: 1.6;
  position: relative;
  display: inline-block;
  padding-left: 35px;
  font-size: 1.6rem;
  vertical-align: top;
}
.c-form01 .mwform-checkbox-field .mwform-checkbox-field-text::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 25px;
  height: 25px;
  border: 1px solid rgba(var(--grayscale500));
  box-sizing: border-box;
  background-color: #fff;
}
.c-form01 .mwform-checkbox-field input:checked + .mwform-checkbox-field-text::after {
  content: "";
  display: block;
  position: absolute;
  top: 6px;
  left: 4px;
  width: 14px;
  height: 5px;
  border-style: solid;
  border-width: 3px 3px 0 0;
  border-color: rgba(var(--primary600));
  transform: rotate(135deg);
}
@media all and (min-width: 768px) {
  .c-form01 .mwform-checkbox-field {
    margin-top: 11px;
  }
  .c-form01 .mwform-checkbox-field + .mwform-checkbox-field {
    margin-top: 15px;
  }
}

/*  .c-form01-agree
================================================== */
.c-form01-agree {
  text-align: center;
}
.c-form01-agree__check {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}
.c-form01-agree__check-label {
  margin-right: 8px;
}
.c-form01-agree__check .mwform-checkbox-field {
  max-width: calc(100% - 46px - 9px);
  margin-top: 0;
  text-align: left;
}
.c-form01-agree__check .error {
  display: block;
  width: 100%;
}
.c-form01-agree__btn {
  margin-top: 20px;
}
.c-form01-agree__btn-link {
  color: rgb(var(--primary600));
  text-decoration: underline !important;
}
.c-form01-agree__btn-link::after {
  display: inline-block;
  width: 13px;
  height: 13px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 13 13"><g><path d="M5.3001 1.7H11.3001V7.7H5.3001V1.7ZM4.1001 8.9H12.5001V0.5H4.1001V8.9Z" fill="currentColor"/><path d="M0.5 4.1V12.5H8.9V10.1H7.7V11.3H1.7V5.3H2.9V4.1H0.5Z" fill="currentColor"/></g></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 13 13"><g><path d="M5.3001 1.7H11.3001V7.7H5.3001V1.7ZM4.1001 8.9H12.5001V0.5H4.1001V8.9Z" fill="currentColor"/><path d="M0.5 4.1V12.5H8.9V10.1H7.7V11.3H1.7V5.3H2.9V4.1H0.5Z" fill="currentColor"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
  transition: all 0.3s ease;
  margin: 0 0 4px 5px;
}
.c-form01-agree .mwform-checkbox-field .mwform-checkbox-field-text::before {
  border-width: 2px;
  border-color: rgb(var(--grayscale800));
}
@media (hover: hover) {
  .c-form01-agree__btn-link:hover {
    text-decoration: none !important;
  }
}

.mw_wp_form_confirm .c-form01-agree {
  display: none;
}

/* .c-form01-privacy
================================================ */
.c-form01-privacy {
  margin-top: 24px;
  text-align: center;
}

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

/*  .c-form01__area-btn
================================================== */
.c-form01__area-btn {
  text-align: center;
}
.c-form01__area-btn .c-form01__btn {
  line-height: 1.6;
  position: relative;
  width: 100%;
  margin: 25px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  min-height: 60px;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 999px;
  background: rgb(var(--primary600));
  border: 2px solid rgb(var(--primary600));
  color: #fff;
  font-size: 1.7rem;
  font-weight: 700;
  text-align: center;
}
.c-form01__area-btn .c-form01__btn + .c-form01__btn {
  margin-top: 20px;
}
.c-form01__area-btn .c-form01__btn.is-back {
  min-height: 40px;
  max-width: 200px;
  border: 2px solid rgb(var(--grayscale200));
  background: rgb(var(--grayscale200));
  color: rgb(var(--grayscale800));
  font-size: 1.6rem;
}
@media all and (min-width: 768px) {
  .c-form01__area-btn .c-form01__btn {
    max-width: 350px;
    margin-top: 30px;
  }
  .c-form01__area-btn .c-form01__btn + .c-form01__btn {
    margin-top: 25px;
  }
  .c-form01__area-btn .c-form01__btn:not(.is-back) {
    min-height: 70px;
    font-size: 2.1rem;
  }
}
@media (hover: hover) {
  .c-form01__area-btn .c-form01__btn {
    transition: all 0.3s ease;
  }
  .c-form01__area-btn .c-form01__btn:hover {
    background-color: #fff;
    color: rgba(var(--primary600));
  }
}

/*  .c-form01-thanks
================================================ */
.c-form01-thanks {
  box-sizing: border-box;
}
.c-form01-thanks__sub {
  margin-bottom: 25px;
  font-size: 1.8rem;
  font-weight: 700;
}
.c-form01-thanks__txt + .c-form01-thanks__txt {
  margin-top: 1em;
}
.c-form01-thanks__btn {
  margin: 20px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media all and (min-width: 768px) {
  .c-form01-thanks {
    text-align: center;
  }
  .c-form01-thanks__sub {
    margin-bottom: 30px;
    font-size: 2.2rem;
  }
  .c-form01-thanks__btn {
    margin-top: 40px;
  }
}

/*  .c-head01
================================================== */
.c-head01 {
  margin-bottom: 25px;
}
.c-head01__ja {
  color: rgb(var(--grayscale800));
  line-height: 1.6;
  margin-bottom: 8px;
}
.c-head01__ja-txt {
  padding-left: 25px;
  position: relative;
}
.c-head01__ja-txt::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 19px;
  height: 20px;
  background: url(../img/common/ico_head01.svg) no-repeat 0 100%/cover;
}
.c-head01__en {
  font-size: 3rem;
}
@media all and (min-width: 768px) {
  .c-head01 {
    margin-bottom: 40px;
  }
  .c-head01__ja {
    margin-bottom: 10px;
  }
  .c-head01__en {
    font-size: 5.5rem;
  }
}

/*  .c-head01.is-white
================================================== */
.c-head01.is-white {
  color: #fff;
}
.c-head01.is-white .c-head01__ja {
  color: rgba(255, 255, 255, 0.8);
}
.c-head01.is-white .c-head01__ja-txt::before {
  background-image: url(../img/common/ico_head01_white.svg);
}

/*  .c-head02
================================================== */
.c-head02 {
  margin-bottom: 15px;
  line-height: 1.6;
  text-align: center;
  font-weight: 700;
  font-size: 2.1rem;
}
@media all and (min-width: 768px) {
  .c-head02 {
    margin-bottom: 30px;
    font-size: 3.1rem;
  }
}

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

/* .c-link01
================================================== */
a.c-link01 {
  color: rgb(var(--primary500));
  text-decoration: underline;
}
a.c-link01.is-pin::after {
  display: inline-block;
  width: 13px;
  height: 18px;
  vertical-align: middle;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="13" height="18" viewBox="0 0 13 18"><path d="M6.5 0C10.09 0 13 2.8 13 6.27S6.5 18 6.5 18 0 9.75 0 6.27 2.91 0 6.5 0Zm0 9a2.78 2.78 0 0 0 2.83-2.73A2.77 2.77 0 0 0 6.5 3.55a2.77 2.77 0 0 0-2.83 2.72A2.77 2.77 0 0 0 6.5 9Z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="13" height="18" viewBox="0 0 13 18"><path d="M6.5 0C10.09 0 13 2.8 13 6.27S6.5 18 6.5 18 0 9.75 0 6.27 2.91 0 6.5 0Zm0 9a2.78 2.78 0 0 0 2.83-2.73A2.77 2.77 0 0 0 6.5 3.55a2.77 2.77 0 0 0-2.83 2.72A2.77 2.77 0 0 0 6.5 9Z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center center;
  mask-position: center center;
  content: "";
  margin: -1px 0 0 5px;
}
a.c-link01.is-external::after {
  display: inline-block;
  width: 13px;
  height: 13px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 13 13"><g><path d="M5.3001 1.7H11.3001V7.7H5.3001V1.7ZM4.1001 8.9H12.5001V0.5H4.1001V8.9Z" fill="currentColor"/><path d="M0.5 4.1V12.5H8.9V10.1H7.7V11.3H1.7V5.3H2.9V4.1H0.5Z" fill="currentColor"/></g></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 13 13"><g><path d="M5.3001 1.7H11.3001V7.7H5.3001V1.7ZM4.1001 8.9H12.5001V0.5H4.1001V8.9Z" fill="currentColor"/><path d="M0.5 4.1V12.5H8.9V10.1H7.7V11.3H1.7V5.3H2.9V4.1H0.5Z" fill="currentColor"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
  transition: all 0.3s ease;
  margin: -1px 0 0 5px;
}
@media all and (min-width: 768px) {
  a.c-link01.is-pin::after {
    margin: -5px 0 0 8px;
  }
  a.c-link01.is-external::after {
    margin: -3px 0 0 8px;
  }
}
@media (hover: hover) {
  a.c-link01:hover {
    text-decoration: none;
  }
}

/* .c-list01
================================================== */
.c-list01__item {
  position: relative;
  padding-left: 1.2em;
}
.c-list01__item:before {
  content: "";
  position: absolute;
  top: 0.95em;
  left: 0.15em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: currentColor;
}

/* .c-pager01
===================================*/
.c-pager01 {
  overflow: hidden;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
}
.c-pager01 li {
  margin: 3px;
}
.c-pager01 li a, .c-pager01 li span {
  position: relative;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 37px;
  height: 37px;
  padding: 0 0 2px 1px;
  line-height: 1;
  background: rgb(var(--grayscale200));
  color: rgb(var(--grayscale800));
  border-radius: 50%;
  text-decoration: none;
  overflow: hidden;
}
.c-pager01 li.pages span {
  width: auto;
  border: 0;
}
.c-pager01 li.current span {
  background: rgb(var(--grayscale800));
  color: rgb(var(--grayscale200));
}
.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.next, .c-pager01 li.previous {
  text-indent: -999px;
  font-size: 0px;
}
.c-pager01 li.next a::before, .c-pager01 li.previous a::before {
  display: inline-block;
  width: 9px;
  height: 15px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9 15"><path d="M8.26917 7.5C8.26917 7.72387 8.18135 7.93115 8.03765 8.08869L2.09789 14.2575C1.78654 14.5808 1.27559 14.5808 0.964232 14.2575C0.652873 13.9341 0.652873 13.4035 0.964231 13.0801L6.34514 7.49171L0.964231 1.91161C0.652873 1.58824 0.652873 1.06589 0.964231 0.742522C1.27559 0.419159 1.77855 0.419159 2.08991 0.742522L8.02967 6.91131C8.18136 7.06885 8.26119 7.27613 8.26119 7.5L8.26917 7.5Z" fill="currentColor"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9 15"><path d="M8.26917 7.5C8.26917 7.72387 8.18135 7.93115 8.03765 8.08869L2.09789 14.2575C1.78654 14.5808 1.27559 14.5808 0.964232 14.2575C0.652873 13.9341 0.652873 13.4035 0.964231 13.0801L6.34514 7.49171L0.964231 1.91161C0.652873 1.58824 0.652873 1.06589 0.964231 0.742522C1.27559 0.419159 1.77855 0.419159 2.08991 0.742522L8.02967 6.91131C8.18136 7.06885 8.26119 7.27613 8.26119 7.5L8.26917 7.5Z" fill="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
  transition: all 0.3s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-42%, -50%);
}
.c-pager01 li.previous a::before {
  transform: translate(-58%, -50%) scaleX(-1);
}
.c-pager01 li.extend span {
  background: none;
  font-size: 90%;
}
@media all and (min-width: 768px) {
  .c-pager01 li {
    margin: 5px;
  }
  .c-pager01 li a, .c-pager01 li span {
    width: 50px;
    height: 50px;
  }
  .c-pager01 li.first, .c-pager01 li.previous {
    margin-right: 35px;
  }
  .c-pager01 li.next, .c-pager01 li.last {
    margin-left: 35px;
  }
  .c-pager01 li.next a::before, .c-pager01 li.previous a::before {
    width: 12px;
    height: 18px;
  }
}
@media (hover: hover) {
  .c-pager01 li a {
    transition: all 0.3s ease;
  }
  .c-pager01 li a:hover {
    background: rgb(var(--grayscale800));
    color: rgb(var(--grayscale200));
  }
}

/*  .c-pager02
================================================== */
.c-pager02 {
  position: relative;
  overflow: hidden;
  line-height: 1;
  color: rgb(var(--grayscale800));
  font-weight: 700;
}
.c-pager02 a {
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  text-decoration: none;
  min-height: 35px;
}
.c-pager02__previous, .c-pager02__next {
  max-width: calc(50% - 10px);
  margin-bottom: 30px;
}
.c-pager02__previous a::before, .c-pager02__next a::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 35px;
  background: rgb(var(--grayscale200));
  border-radius: 50%;
  box-sizing: border-box;
}
.c-pager02__previous a::after, .c-pager02__next a::after {
  display: inline-block;
  width: 9px;
  height: 15px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9 15"><path d="M8.26917 7.5C8.26917 7.72387 8.18135 7.93115 8.03765 8.08869L2.09789 14.2575C1.78654 14.5808 1.27559 14.5808 0.964232 14.2575C0.652873 13.9341 0.652873 13.4035 0.964231 13.0801L6.34514 7.49171L0.964231 1.91161C0.652873 1.58824 0.652873 1.06589 0.964231 0.742522C1.27559 0.419159 1.77855 0.419159 2.08991 0.742522L8.02967 6.91131C8.18136 7.06885 8.26119 7.27613 8.26119 7.5L8.26917 7.5Z" fill="currentColor"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9 15"><path d="M8.26917 7.5C8.26917 7.72387 8.18135 7.93115 8.03765 8.08869L2.09789 14.2575C1.78654 14.5808 1.27559 14.5808 0.964232 14.2575C0.652873 13.9341 0.652873 13.4035 0.964231 13.0801L6.34514 7.49171L0.964231 1.91161C0.652873 1.58824 0.652873 1.06589 0.964231 0.742522C1.27559 0.419159 1.77855 0.419159 2.08991 0.742522L8.02967 6.91131C8.18136 7.06885 8.26119 7.27613 8.26119 7.5L8.26917 7.5Z" fill="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
  transition: all 0.3s ease;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 14px;
}
.c-pager02__previous {
  float: left;
}
.c-pager02__previous a {
  justify-content: flex-start;
  padding-left: 50px;
}
.c-pager02__previous a::before {
  left: 0;
}
.c-pager02__previous a::after {
  left: 13px;
  transform: translateY(-50%) scaleX(-1);
}
.c-pager02__next {
  float: right;
}
.c-pager02__next a {
  justify-content: flex-end;
  padding-right: 50px;
}
.c-pager02__next a::before {
  right: 0;
}
.c-pager02__next a::after {
  right: 13px;
}
.c-pager02__all {
  width: 211px;
  margin: 0 auto;
}
.c-pager02__all a {
  justify-content: center;
  background: rgb(var(--grayscale200));
  border-radius: 999px;
  min-height: 50px;
}
@media all and (max-width: 767px) {
  .c-pager02__all {
    clear: both;
  }
}
@media all and (min-width: 768px) {
  .c-pager02 {
    margin: 0 auto;
    max-width: 813px;
  }
  .c-pager02 a {
    min-height: 50px;
  }
  .c-pager02__previous, .c-pager02__next {
    margin: 0;
  }
  .c-pager02__previous a::before, .c-pager02__next a::before {
    width: 50px;
    height: 50px;
  }
  .c-pager02__previous a::after, .c-pager02__next a::after {
    width: 11px;
    height: 18px;
  }
  .c-pager02__previous a {
    padding-left: 65px;
  }
  .c-pager02__previous a::after {
    left: 18px;
  }
  .c-pager02__next a {
    padding-right: 65px;
  }
  .c-pager02__next a::after {
    right: 18px;
  }
}
@media (hover: hover) {
  .c-pager02__previous a, .c-pager02__next a {
    transition: color 0.3s ease;
  }
  .c-pager02__previous a::before, .c-pager02__next a::before {
    transition: background 0.3s ease;
  }
  .c-pager02__previous a:hover, .c-pager02__next a:hover {
    color: rgb(var(--primary600));
  }
  .c-pager02__previous a:hover::before, .c-pager02__next a:hover::before {
    background: rgb(var(--primary600));
  }
  .c-pager02__previous a:hover::after, .c-pager02__next a:hover::after {
    color: #fff;
  }
  .c-pager02__all a {
    transition: all 0.3s ease;
  }
  .c-pager02__all a:hover {
    background: rgb(var(--primary600));
    color: #fff;
  }
}

/* .c-service01
===================================*/
.c-service01 {
  padding: 30px 20px;
  margin-top: 30px;
  position: relative;
  z-index: 2;
}
.c-service01::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  box-shadow: 10px 10px 25px 0px rgba(var(--black), 0.15);
  border-radius: 10px;
  z-index: -1;
}
@media all and (min-width: 768px) {
  .c-service01 {
    padding: 120px 0;
    margin-top: 80px;
  }
  .c-service01::before {
    width: var(--contents_width_wide);
  }
}

.c-service01-list {
  counter-reset: service-num 0;
}
.c-service01-list__item + .c-service01-list__item {
  padding-top: 25px;
  margin-top: 25px;
  border-top: solid 1px rgb(var(--grayscale500));
}
.c-service01-list__item-head {
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 15px;
}
.c-service01-list__item-head::before {
  counter-increment: service-num 1;
  color: rgb(var(--primary500));
  content: counter(service-num, decimal-leading-zero);
  display: block;
  font-size: 1.5rem;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.05em;
}
.c-service01-list__item-img {
  margin: 20px 27px 0;
}
@media all and (min-width: 768px) {
  .c-service01-list__item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  .c-service01-list__item:nth-child(even) {
    flex-direction: row-reverse;
  }
  .c-service01-list__item + .c-service01-list__item {
    padding-top: 60px;
    margin-top: 60px;
  }
  .c-service01-list__item-areaImg {
    width: 526px;
  }
  .c-service01-list__item-img {
    margin: 0;
  }
  .c-service01-list__item-areaTxt {
    width: 494px;
  }
  .c-service01-list__item-head {
    font-size: 3.1rem;
    margin-bottom: 30px;
  }
  .c-service01-list__item-head::before {
    font-size: 1.8rem;
  }
  .c-service01-list__item-txt + .c-service01-list__item-txt {
    margin-top: 1em;
  }
}

.c-service01-other {
  margin-top: 45px;
  padding: 20px;
  background: rgb(var(--grayscale200));
  border-radius: 5px;
}
.c-service01-other__head {
  font-size: 2.1rem;
  font-weight: 700;
}
.c-service01-other-list {
  display: flex;
  flex-wrap: wrap;
  margin: -10px -5px 0;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
}
.c-service01-other-list__item {
  position: relative;
  margin: 10px 5px 0;
  padding: 10px 10px 10px 18px;
  flex-basis: calc(50% - 10px);
  max-width: calc(50% - 10px);
  box-sizing: border-box;
  background: #fff;
  border-radius: 5px;
}
.c-service01-other-list__item::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin: 0 8px 1px 0;
  background: rgb(var(--primary600));
  border-radius: 50%;
}
@media all and (max-width: 767px) {
  .c-service01-other__head {
    text-align: center;
    margin-bottom: 10px;
  }
}
@media all and (min-width: 768px) {
  .c-service01-other {
    margin-top: 84px;
    padding: 40px 60px 40px 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .c-service01-other__head {
    font-size: 2.8rem;
  }
  .c-service01-other-list {
    margin: -20px -10px 0;
    font-size: 2.1rem;
    flex-basis: calc(100% - 188px + 20px);
  }
  .c-service01-other-list__item {
    position: relative;
    margin: 20px 10px 0;
    padding: 20px;
    flex-basis: calc(50% - 20px);
    max-width: calc(50% - 20px);
    text-align: center;
  }
  .c-service01-other-list__item::before {
    width: 13px;
    height: 13px;
    margin: 0 8px 1px 0;
  }
}

/* .c-single01
================================================ */
.c-single01__inner {
  padding-top: 55px;
  padding-bottom: 83px;
}
.c-single01__foot {
  border-top: 1px solid rgb(var(--grayscale500));
  margin-top: 50px;
  padding-top: 40px;
}
.c-single01__relate {
  margin-bottom: 40px;
}
@media all and (min-width: 768px) {
  .c-single01__inner {
    padding-top: 120px;
    padding-bottom: 110px;
  }
  .c-single01__foot {
    margin-top: 70px;
    padding-top: 80px;
  }
  .c-single01__relate {
    margin-bottom: 80px;
  }
}

/* .c-single02
================================================ */
.c-single02__inner {
  padding-top: 55px;
  padding-bottom: 83px;
}
.c-single02__eyecatch {
  margin-bottom: 15px;
  text-align: center;
}
.c-single02__eyecatch img {
  border-radius: 10px;
}
.c-single02__foot {
  border-top: 1px solid rgb(var(--grayscale500));
  margin-top: 50px;
  padding-top: 40px;
}
@media all and (max-width: 767px) {
  .c-single02__foot {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media all and (min-width: 768px) {
  .c-single02__inner {
    padding-top: 120px;
    padding-bottom: 110px;
  }
  .c-single02__eyecatch {
    margin-bottom: 60px;
  }
  .c-single02__foot {
    margin-top: 70px;
    padding-top: 80px;
  }
}

/* .c-single-content
================================================== */
.c-single-content {
  overflow: hidden;
}

.c-single-content *:first-child {
  margin-top: 0 !important;
}
.c-single-content *:last-child {
  margin-bottom: 0 !important;
}
.c-single-content h1,
.c-single-content h2,
.c-single-content h3,
.c-single-content h4,
.c-single-content h5,
.c-single-content h6 {
  margin: 2em 0 1em;
  line-height: 1.6;
  box-sizing: border-box;
  font-weight: 700;
}
.c-single-content h2 {
  padding: 10px 20px;
  font-size: 2rem;
  background: rgb(var(--grayscale200));
}
.c-single-content h3 {
  position: relative;
  padding-bottom: 15px;
  font-size: 1.7rem;
  border-bottom: 1px solid rgb(var(--grayscale500));
}
.c-single-content h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 122px;
  border-top: 1px solid rgb(var(--primary600));
}
.c-single-content h4 {
  font-size: 1.5rem;
}
.c-single-content p {
  margin: 1.5em 0;
}
.c-single-content a {
  color: rgb(var(--primary600));
  text-decoration: underline;
}
.c-single-content strong {
  font-weight: 700;
}
.c-single-content ul,
.c-single-content ol {
  line-height: 1.6;
  list-style: none;
  padding-left: 0;
  margin: 1.5em 0;
}
.c-single-content ul li,
.c-single-content ol li {
  position: relative;
  box-sizing: border-box;
}
.c-single-content ul li + li,
.c-single-content ol li + li {
  margin-top: 0.75em;
}
.c-single-content ul li {
  padding-left: 1em;
}
.c-single-content ul li:before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: currentColor;
}
.c-single-content ol {
  counter-reset: number 0;
}
.c-single-content ol li {
  counter-increment: number 1;
  padding-left: 2em;
}
.c-single-content ol li:before {
  content: counter(number, decimal-leading-zero) ".";
  position: absolute;
  top: 4px;
  left: 0;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.05em;
  line-height: 1.2;
  color: rgba(var(--primary600));
  font-size: 1.5rem;
  font-weight: 700;
}
.c-single-content blockquote {
  margin: 2em 0;
  padding: 20px;
  background: rgb(var(--grayscale200));
}
.c-single-content blockquote p {
  margin: 0.75em 0;
}
.c-single-content img {
  display: block;
  border-radius: 10px;
}
@media all and (min-width: 768px) {
  .c-single-content h2 {
    padding: 15px 30px;
    font-size: 2.8rem;
  }
  .c-single-content h3 {
    padding-bottom: 25px;
    font-size: 2.1rem;
  }
  .c-single-content h3::after {
    width: 150px;
  }
  .c-single-content h4 {
    font-size: 1.8rem;
  }
  .c-single-content ol li {
    padding-left: 2.5em;
  }
  .c-single-content ol li:before {
    top: 2px;
    font-size: 1.8rem;
  }
  .c-single-content blockquote {
    padding: 40px 50px;
  }
  .c-single-content .alignleft {
    float: left;
    margin-right: 48px;
  }
  .c-single-content .alignright {
    float: right;
    margin-left: 48px;
  }
  .c-single-content .aligncenter {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}
@media (hover: hover) {
  .c-single-content a:hover {
    text-decoration: none;
  }
}

/* .c-single-head
================================================ */
.c-single-head {
  margin-bottom: 18px;
}
.c-single-head__meta {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.c-single-head__date {
  font-size: 1.2rem;
  color: rgb(var(--grayscale800));
  margin-right: 9px;
  white-space: nowrap;
}
.c-single-head__cat {
  display: inline-block;
  padding: 5px;
  border-radius: 5px;
  background: rgb(var(--primary600));
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.2;
  white-space: nowrap;
}
.c-single-head__title {
  padding-bottom: 10px;
  margin-bottom: 28px;
  font-size: 2.1rem;
  line-height: 1.6;
  border-bottom: 1px solid rgb(var(--grayscale500));
}
.c-single-head__tag {
  display: flex;
  align-items: flex-start;
}
.c-single-head__tag-head {
  display: block;
  padding: 4px 5px;
  border-radius: 5px;
  color: rgb(var(--primary600));
  border: 1px solid;
  box-sizing: border-box;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  text-align: center;
}
.c-single-head__tag-row {
  max-width: calc(100% - 4.7em);
  line-height: 1.6;
  display: inline-block;
  margin: 1px 0 0 10px;
}
@media all and (min-width: 768px) {
  .c-single-head {
    margin-bottom: 62px;
  }
  .c-single-head__meta {
    margin-bottom: 18px;
  }
  .c-single-head__date {
    font-size: 1.8rem;
    margin-right: 15px;
  }
  .c-single-head__cat {
    padding: 7px 14px;
    font-size: 1.3rem;
  }
  .c-single-head__title {
    padding-bottom: 20px;
    margin-bottom: 15px;
    font-size: 3.1rem;
  }
  .c-single-head__tag-head {
    padding: 6px 14px;
    font-size: 1.3rem;
  }
}

/* .c-table01
================================================ */
.c-table01 table tr:first-of-type th {
  border-top: 1px solid rgba(var(--grayscale500));
}
.c-table01 table th, .c-table01 table td {
  padding: 12px 20px;
  border-bottom: 1px solid rgba(var(--grayscale500));
  box-sizing: border-box;
}
.c-table01 table th {
  font-weight: 700;
  border-color: rgba(var(--primary600));
  background: rgb(var(--primary100));
  text-align: center;
  line-height: 1.6;
}
.c-table01 table td {
  text-align: left;
}
@media all and (max-width: 767px) {
  .c-table01 table, .c-table01 tbody, .c-table01 tr, .c-table01 th, .c-table01 td {
    display: block;
  }
  .c-table01 td {
    position: relative;
  }
}
@media all and (min-width: 768px) {
  .c-table01 table tr:first-of-type th {
    border-color: rgba(var(--primary600));
  }
  .c-table01 table tr:first-of-type td {
    border-top: 1px solid rgba(var(--grayscale500));
  }
  .c-table01 table th, .c-table01 table td {
    padding: 25px 0;
    vertical-align: middle;
  }
  .c-table01 table th {
    width: 150px;
  }
  .c-table01 table td {
    padding-left: 40px;
  }
}

.c-table01-set__areaImg img {
  border-radius: 5px;
}
@media all and (max-width: 767px) {
  .c-table01-set__areaImg {
    margin: 15px 0 17px;
  }
  .c-table01-set__areaImg img {
    width: 100%;
  }
}
@media all and (min-width: 768px) {
  .c-table01-set {
    display: flex;
    justify-content: space-between;
  }
  .c-table01-set__araTxt {
    flex-basis: calc(100% - 430px);
  }
  .c-table01-set__areaImg {
    flex-basis: 425px;
  }
}

/* .l-breadcrumb
================================================ */
.l-breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  color: rgb(var(--grayscale800));
  font-size: 1.2rem;
  font-weight: 700;
}
.l-breadcrumb-list__item {
  display: inline-block;
  vertical-align: top;
}
.l-breadcrumb-list__item a {
  color: rgb(var(--black));
}
.l-breadcrumb-list__item + .l-breadcrumb-list__item {
  margin-left: 5px;
}
.l-breadcrumb-list__item + .l-breadcrumb-list__item:before {
  display: inline-block;
  content: "";
  margin-right: 5px;
  width: 5px;
  border-top: 1px solid rgb(var(--grayscale500));
  vertical-align: middle;
}
@media all and (max-width: 767px) {
  .l-breadcrumb-list {
    white-space: nowrap;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    overflow: auto;
    padding: 0 40px;
  }
  .l-breadcrumb-list::-webkit-scrollbar {
    display: none;
  }
}
@media all and (min-width: 768px) {
  .l-breadcrumb-list {
    font-size: 1.5rem;
  }
}

/* .l-footer
================================================ */
.l-footer {
  background: #fff;
}
.l-footer__inner {
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
}
@media all and (min-width: 768px) {
  .l-footer__inner {
    padding-top: 150px;
    padding-bottom: 150px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

/* .l-footer-page-top
================================================ */
.l-footer-page-top {
  position: absolute;
  bottom: 20px;
  right: 20px;
}
.l-footer-page-top__link {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 50px;
  height: 50px;
  color: #fff;
  border: solid 2px rgb(var(--primary500));
  border-radius: 50%;
  text-align: center;
  text-decoration: none;
  overflow: hidden;
  text-indent: 200%;
  white-space: nowrap;
}
.l-footer-page-top__link::before {
  display: inline-block;
  width: 9px;
  height: 15px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9 15"><path d="M8.26917 7.5C8.26917 7.72387 8.18135 7.93115 8.03765 8.08869L2.09789 14.2575C1.78654 14.5808 1.27559 14.5808 0.964232 14.2575C0.652873 13.9341 0.652873 13.4035 0.964231 13.0801L6.34514 7.49171L0.964231 1.91161C0.652873 1.58824 0.652873 1.06589 0.964231 0.742522C1.27559 0.419159 1.77855 0.419159 2.08991 0.742522L8.02967 6.91131C8.18136 7.06885 8.26119 7.27613 8.26119 7.5L8.26917 7.5Z" fill="currentColor"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9 15"><path d="M8.26917 7.5C8.26917 7.72387 8.18135 7.93115 8.03765 8.08869L2.09789 14.2575C1.78654 14.5808 1.27559 14.5808 0.964232 14.2575C0.652873 13.9341 0.652873 13.4035 0.964231 13.0801L6.34514 7.49171L0.964231 1.91161C0.652873 1.58824 0.652873 1.06589 0.964231 0.742522C1.27559 0.419159 1.77855 0.419159 2.08991 0.742522L8.02967 6.91131C8.18136 7.06885 8.26119 7.27613 8.26119 7.5L8.26917 7.5Z" fill="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
  transition: all 0.3s ease;
  position: absolute;
  color: rgb(var(--primary500));
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  transition: all 0.3s ease;
}
@media all and (min-width: 768px) {
  .l-footer-page-top {
    bottom: 40px;
  }
  .l-footer-page-top__link {
    transition: all 0.3s ease;
  }
  .l-footer-page-top__link:hover {
    background: rgb(var(--primary500));
  }
  .l-footer-page-top__link:hover::before {
    color: #fff;
  }
}

/* .l-footer-info
================================================ */
.l-footer-info__logo {
  text-align: center;
  width: 203px;
  margin: 0 auto 25px;
}
@media all and (min-width: 768px) {
  .l-footer-info__logo {
    width: 273px;
    margin-left: 0;
  }
}

/* .l-footer-company
================================================ */
.l-footer-company {
  font-size: 1.3rem;
  line-height: 1.6;
}
.l-footer-company + .l-footer-company {
  padding-top: 20px;
  margin-top: 20px;
  border-top: solid 1px rgb(var(--grayscale500));
}
.l-footer-company__head {
  font-weight: 700;
  margin-bottom: 8px;
}
.l-footer-company__access {
  margin-top: 6px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}
.l-footer-company__access .is-head {
  display: flex;
  flex-wrap: wrap;
  width: 65px;
  align-items: center;
  justify-content: center;
  background: rgb(var(--grayscale200));
  font-weight: 700;
  font-size: 1.2rem;
}
.l-footer-company__access .is-txt {
  width: calc(100% - 65px);
  padding-left: 8px;
  box-sizing: border-box;
}
@media all and (min-width: 768px) {
  .l-footer-company + .l-footer-company {
    padding-top: 25px;
    margin-top: 25px;
  }
  .l-footer-company__head {
    font-size: 1.5rem;
  }
  .l-footer-company__access {
    align-items: center;
  }
  .l-footer-company__access .is-head {
    height: 27px;
  }
}
@media (min-width: 1600px) {
  .l-footer-company__wrap {
    display: flex;
    flex-wrap: wrap;
  }
  .l-footer-company__wrap .l-footer-company + .l-footer-company {
    padding-left: 25px;
    margin-left: 25px;
    border-left: solid 1px rgb(var(--grayscale500));
    padding-top: 0;
    margin-top: 0;
    border-top: none;
    box-sizing: border-box;
  }
}

/* .l-footer-bnr
================================================ */
.l-footer-bnr {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 25px;
}
.l-footer-bnr__item {
  width: 40px;
  margin-right: 20px;
}
.l-footer-bnr__item:nth-child(2) {
  width: 54px;
}
.l-footer-bnr__item:nth-child(3) {
  width: 43px;
}
.l-footer-bnr__item:nth-child(4) {
  width: 47px;
}
@media all and (min-width: 768px) {
  .l-footer-bnr__item {
    width: 48px;
    margin-right: 25px;
  }
  .l-footer-bnr__item:nth-child(2) {
    width: 67px;
  }
  .l-footer-bnr__item:nth-child(3) {
    width: 57px;
  }
  .l-footer-bnr__item:nth-child(4) {
    width: 67px;
  }
}

/* .l-footer-sitemap
================================================ */
.l-footer-sitemap {
  font-size: 1.3rem;
  font-weight: 700;
}
.l-footer-sitemap__list {
  display: flex;
  flex-wrap: wrap;
}
.l-footer-sitemap__item {
  width: 50%;
  margin-top: 25px;
}
.l-footer-sitemap__item-link {
  position: relative;
}
.l-footer-sitemap__item-link::before {
  position: absolute;
  content: "";
  bottom: -2px;
  left: 0;
  border-bottom: solid 1px rgb(var(--black));
  width: 100%;
  opacity: 0;
  transition: all 0.3s ease;
}
.l-footer-sitemap__item-link::after {
  position: absolute;
  top: 5px;
  right: -12px;
  display: inline-block;
  width: 9px;
  height: 15px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9 15"><path d="M8.26917 7.5C8.26917 7.72387 8.18135 7.93115 8.03765 8.08869L2.09789 14.2575C1.78654 14.5808 1.27559 14.5808 0.964232 14.2575C0.652873 13.9341 0.652873 13.4035 0.964231 13.0801L6.34514 7.49171L0.964231 1.91161C0.652873 1.58824 0.652873 1.06589 0.964231 0.742522C1.27559 0.419159 1.77855 0.419159 2.08991 0.742522L8.02967 6.91131C8.18136 7.06885 8.26119 7.27613 8.26119 7.5L8.26917 7.5Z" fill="currentColor"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9 15"><path d="M8.26917 7.5C8.26917 7.72387 8.18135 7.93115 8.03765 8.08869L2.09789 14.2575C1.78654 14.5808 1.27559 14.5808 0.964232 14.2575C0.652873 13.9341 0.652873 13.4035 0.964231 13.0801L6.34514 7.49171L0.964231 1.91161C0.652873 1.58824 0.652873 1.06589 0.964231 0.742522C1.27559 0.419159 1.77855 0.419159 2.08991 0.742522L8.02967 6.91131C8.18136 7.06885 8.26119 7.27613 8.26119 7.5L8.26917 7.5Z" fill="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
  transition: all 0.3s ease;
  color: rgb(var(--primary500));
  width: 6px;
  height: 10px;
}
.l-footer-sitemap__item-link[target=_blank]::after {
  display: inline-block;
  width: 13px;
  height: 13px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 13 13"><g><path d="M5.3001 1.7H11.3001V7.7H5.3001V1.7ZM4.1001 8.9H12.5001V0.5H4.1001V8.9Z" fill="currentColor"/><path d="M0.5 4.1V12.5H8.9V10.1H7.7V11.3H1.7V5.3H2.9V4.1H0.5Z" fill="currentColor"/></g></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 13 13"><g><path d="M5.3001 1.7H11.3001V7.7H5.3001V1.7ZM4.1001 8.9H12.5001V0.5H4.1001V8.9Z" fill="currentColor"/><path d="M0.5 4.1V12.5H8.9V10.1H7.7V11.3H1.7V5.3H2.9V4.1H0.5Z" fill="currentColor"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
  transition: all 0.3s ease;
  color: rgb(var(--primary500));
  width: 10px;
  height: 10px;
  right: -16px;
}
.l-footer-sitemap__child-item {
  margin-top: 10px;
  margin-left: 13px;
  position: relative;
}
.l-footer-sitemap__child-item::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 2px;
  background: rgb(var(--black));
  top: 50%;
  left: -13px;
}
.l-footer-sitemap__child-item-link {
  position: relative;
}
.l-footer-sitemap__child-item-link::before {
  position: absolute;
  content: "";
  bottom: -2px;
  left: 0;
  border-bottom: solid 1px rgb(var(--black));
  width: 100%;
  opacity: 0;
  transition: all 0.3s ease;
}
@media all and (min-width: 768px) {
  .l-footer-sitemap {
    display: flex;
    flex-wrap: wrap;
  }
  .l-footer-sitemap__list {
    display: block;
    margin-left: 60px;
  }
  .l-footer-sitemap__list.is-flex-pc {
    display: flex;
    flex-wrap: wrap;
    margin-left: 0;
  }
  .l-footer-sitemap__list.is-flex-pc .l-footer-sitemap__item {
    margin-left: 60px;
  }
  .l-footer-sitemap__item {
    width: auto;
    margin-top: 0;
    margin-bottom: 16px;
    margin-right: 16px;
    font-size: 1.5rem;
  }
  .l-footer-sitemap__item-link::after {
    width: 8px;
    height: 14px;
  }
  .l-footer-sitemap__item-link[target=_blank]::after {
    width: 12px;
    height: 12px;
  }
  .l-footer-sitemap__item-link:hover::before {
    opacity: 1;
  }
  .l-footer-sitemap__child {
    font-size: 1.3rem;
  }
  .l-footer-sitemap__child-item {
    margin-top: 8px;
  }
  .l-footer-sitemap__child-item-link:hover::before {
    opacity: 1;
  }
}

/* .l-footer-other
================================================ */
.l-footer-other {
  color: rgb(var(--grayscale800));
  font-size: 1.2rem;
  text-align: center;
  border-top: solid 1px rgb(var(--grayscale500));
}
.l-footer-other__inner {
  padding-top: 33px;
  padding-bottom: 33px;
}
.l-footer-other__privacy-link {
  font-weight: 700;
  position: relative;
}
.l-footer-other__privacy-link::before {
  position: absolute;
  content: "";
  bottom: -2px;
  left: 0;
  border-bottom: solid 1px rgb(var(--grayscale800));
  width: 100%;
  opacity: 0;
  transition: all 0.3s ease;
}
.l-footer-other__privacy-link[target=_blank]::after {
  position: absolute;
  top: 5px;
  right: -16px;
  display: inline-block;
  width: 13px;
  height: 13px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 13 13"><g><path d="M5.3001 1.7H11.3001V7.7H5.3001V1.7ZM4.1001 8.9H12.5001V0.5H4.1001V8.9Z" fill="currentColor"/><path d="M0.5 4.1V12.5H8.9V10.1H7.7V11.3H1.7V5.3H2.9V4.1H0.5Z" fill="currentColor"/></g></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 13 13"><g><path d="M5.3001 1.7H11.3001V7.7H5.3001V1.7ZM4.1001 8.9H12.5001V0.5H4.1001V8.9Z" fill="currentColor"/><path d="M0.5 4.1V12.5H8.9V10.1H7.7V11.3H1.7V5.3H2.9V4.1H0.5Z" fill="currentColor"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
  transition: all 0.3s ease;
  width: 10px;
  height: 10px;
}
.l-footer-other__cr {
  margin-top: 20px;
}
@media all and (min-width: 768px) {
  .l-footer-other__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .l-footer-other__cr {
    margin-top: 0;
  }
  .l-footer-other__privacy-link:hover::before {
    opacity: 1;
  }
}

/* .l-header
================================================ */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 320px;
  z-index: 2000;
}
.l-header.is-fixed {
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
@media all and (min-width: 768px) {
  .l-header {
    min-width: var(--contents_width_with_padding);
  }
}
@media (min-width: 768px) and (hover: none) {
  .l-header {
    left: 0 !important;
  }
}

/* .l-header-info
================================================== */
.l-header-info {
  position: relative;
  z-index: 3;
  height: 60px;
  padding: 0 20px;
}
.l-header-info__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.l-header-info__logo {
  width: 137px;
  padding: 10px 0 0 0;
}
@media all and (min-width: 768px) {
  .l-header-info {
    height: 110px;
    padding: 0 40px;
  }
  .l-header-info__logo {
    width: 180px;
    padding-top: 35px;
  }
}
@media all and (min-width: 1340px ) {
  .l-header-info__logo {
    width: 273px;
    padding-top: 35px;
  }
}

/* .l-nav-btn
================================================== */
.l-nav-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 50px;
  height: 50px;
  border: none;
  cursor: pointer;
}
.l-nav-btn__line {
  position: absolute;
  left: 10px;
  width: 30px;
  height: 2px;
  content: "";
  background: rgb(var(--black));
  transition: all 0.3s ease;
}
.l-nav-btn__line:nth-child(1) {
  top: 10px;
}
.l-nav-btn__line:nth-child(2) {
  top: 18px;
}
.l-nav-btn__line:nth-child(3) {
  top: 26px;
}
.l-nav-btn.is-open .l-nav-btn__line:nth-child(1) {
  top: 18px;
  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: 18px;
  transform: rotate(45deg);
}
.l-nav-btn__txt {
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 100%;
  font-size: 1rem;
  line-height: 1.2;
  text-align: center;
}
@media all and (min-width: 768px) {
  .l-nav-btn {
    top: 35px;
    right: 30px;
  }
}

/* .l-nav
================================================ */
.l-nav {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  max-height: 100vh;
  min-width: 320px;
  padding: 100px 40px 80px;
  background: #fff url(../img/common/bg_nav01_sp.jpg) no-repeat top 77px center/cover;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  overflow: auto;
  opacity: 0;
  display: none;
  transition: all 0.3s ease;
}
.l-nav::-webkit-scrollbar {
  display: none;
}
.l-nav.is-open {
  opacity: 1;
  display: block;
}
@media all and (min-width: 768px) {
  .l-nav {
    opacity: 1;
    display: block;
    transform: none;
    position: static;
    width: 100%;
    min-width: auto;
    padding: 0;
  }
}
/* .l-nav-list
================================================== */
.l-nav-list__item-link {
  display: block;
  padding: 23px 0;
  font-size: 1.7rem;
  font-weight: 700;
  border-bottom: solid 1px rgb(var(--grayscale500));
  position: relative;
}
.l-nav-list__item-link::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 35px;
  height: 35px;
  border: solid 2px rgb(var(--primary500));
  border-radius: 50%;
  box-sizing: border-box;
  transition: all 0.3s ease;
}
.l-nav-list__item-link::after {
  display: inline-block;
  width: 9px;
  height: 15px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9 15"><path d="M8.26917 7.5C8.26917 7.72387 8.18135 7.93115 8.03765 8.08869L2.09789 14.2575C1.78654 14.5808 1.27559 14.5808 0.964232 14.2575C0.652873 13.9341 0.652873 13.4035 0.964231 13.0801L6.34514 7.49171L0.964231 1.91161C0.652873 1.58824 0.652873 1.06589 0.964231 0.742522C1.27559 0.419159 1.77855 0.419159 2.08991 0.742522L8.02967 6.91131C8.18136 7.06885 8.26119 7.27613 8.26119 7.5L8.26917 7.5Z" fill="currentColor"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9 15"><path d="M8.26917 7.5C8.26917 7.72387 8.18135 7.93115 8.03765 8.08869L2.09789 14.2575C1.78654 14.5808 1.27559 14.5808 0.964232 14.2575C0.652873 13.9341 0.652873 13.4035 0.964231 13.0801L6.34514 7.49171L0.964231 1.91161C0.652873 1.58824 0.652873 1.06589 0.964231 0.742522C1.27559 0.419159 1.77855 0.419159 2.08991 0.742522L8.02967 6.91131C8.18136 7.06885 8.26119 7.27613 8.26119 7.5L8.26917 7.5Z" fill="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
  transition: all 0.3s ease;
  position: absolute;
  color: rgb(var(--primary500));
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
.l-nav-list__item-link[target=_blank]::after {
  display: inline-block;
  width: 13px;
  height: 13px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 13 13"><g><path d="M5.3001 1.7H11.3001V7.7H5.3001V1.7ZM4.1001 8.9H12.5001V0.5H4.1001V8.9Z" fill="currentColor"/><path d="M0.5 4.1V12.5H8.9V10.1H7.7V11.3H1.7V5.3H2.9V4.1H0.5Z" fill="currentColor"/></g></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 13 13"><g><path d="M5.3001 1.7H11.3001V7.7H5.3001V1.7ZM4.1001 8.9H12.5001V0.5H4.1001V8.9Z" fill="currentColor"/><path d="M0.5 4.1V12.5H8.9V10.1H7.7V11.3H1.7V5.3H2.9V4.1H0.5Z" fill="currentColor"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
  transition: all 0.3s ease;
  color: rgb(var(--primary500));
  right: 11px;
}
.l-nav-list__item-link:hover::before {
  background: rgb(var(--primary500));
}
.l-nav-list__item-link:hover::after {
  color: #fff;
}
@media all and (min-width: 768px) {
  .l-nav-list {
    position: absolute;
    top: 0;
    right: 370px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    z-index: 4;
  }
  .l-nav-list__item {
    margin-right: 25px;
  }
  .l-nav-list__item-link {
    border: none;
    padding: 39px 0;
    font-size: 1.6rem;
  }
  .l-nav-list__item-link::before, .l-nav-list__item-link::after {
    display: none;
  }
  .l-nav-list__item-link[target=_blank]::after {
    right: -15px;
    color: rgb(var(--black));
    width: 10px;
    height: 10px;
  }
  .l-nav-list__item-link-txt {
    position: relative;
  }
  .l-nav-list__item-link-txt::after {
    position: absolute;
    content: "";
    bottom: -1px;
    left: 0;
    border-bottom: solid 1px rgb(var(--black));
    width: 0;
  }
  .l-nav-list__item-link:hover .l-nav-list__item-link-txt::after {
    -webkit-animation: border_anim 0.15s linear forwards;
    animation: border_anim 0.15s linear forwards;
  }
}
@media all and (min-width: 1340px ) {
  .l-nav-list {
    right: 475px;
  }
  .l-nav-list__item {
    margin-right: 35px;
  }
}

@-webkit-keyframes border_anim {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@keyframes border_anim {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
/* .l-nav-contact
================================================ */
.l-nav-contact__btn {
  margin-bottom: 10px;
}
.l-nav-contact__btn-link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 62px;
  color: #fff;
  background: rgb(var(--primary600));
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}
.l-nav-contact__btn-link::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(var(--black), 0.2);
  opacity: 0;
  transition: all 0.3s ease;
}
.l-nav-contact__btn-link:hover::before {
  opacity: 1;
}
.l-nav-contact__btn-txt {
  position: relative;
  z-index: 2;
}
.l-nav-contact__btn-txt::before {
  display: inline-block;
  width: 17px;
  height: 12px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 17 12"><g><path d="M8.5 8.01829L0.5 2.49109V9.99851C0.5 10.8254 1.20655 11.5109 2.08405 11.5109H14.9273C15.7934 11.5109 16.5114 10.8363 16.5114 9.99851V2.49109L8.5114 8.01829H8.5Z" fill="currentColor"/><path d="M8.49988 6.77794L16.3517 1.35955C16.101 0.84817 15.554 0.5 14.9272 0.5H2.08393C1.45714 0.5 0.910136 0.84817 0.659424 1.35955L8.49988 6.78882V6.77794Z" fill="currentColor"/></g></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 17 12"><g><path d="M8.5 8.01829L0.5 2.49109V9.99851C0.5 10.8254 1.20655 11.5109 2.08405 11.5109H14.9273C15.7934 11.5109 16.5114 10.8363 16.5114 9.99851V2.49109L8.5114 8.01829H8.5Z" fill="currentColor"/><path d="M8.49988 6.77794L16.3517 1.35955C16.101 0.84817 15.554 0.5 14.9272 0.5H2.08393C1.45714 0.5 0.910136 0.84817 0.659424 1.35955L8.49988 6.78882V6.77794Z" fill="currentColor"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
  transition: all 0.3s ease;
  color: #fff;
  margin: 0 7px 2px 0;
}
.l-nav-contact__btn.is-support .l-nav-contact__btn-link {
  background: rgb(var(--primary500));
}
.l-nav-contact__btn.is-support .l-nav-contact__btn-txt::before {
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill-rule="evenodd" clip-rule="evenodd" d="M14.8766 14.9317L14.8771 14.9312C14.8854 14.9233 14.8935 14.9154 14.9016 14.9073L14.9019 14.9069L14.9023 14.9064L14.9027 14.9059L14.903 14.9053L14.9034 14.905C14.9115 14.8969 14.9194 14.8886 14.9273 14.8805L14.9277 14.88C15.6971 14.0861 15.6903 12.8081 14.9059 12.023L10.731 7.84424C10.1695 7.28207 9.82017 6.98276 9.96873 5.89598C10.1628 4.47665 9.71441 2.98635 8.6232 1.89418C7.46094 0.73069 5.84399 0.295189 4.34126 0.588577C4.03837 0.6617 4.14665 0.83687 4.2283 0.925264L6.60264 3.30184C6.70211 3.40137 6.74725 3.5363 6.72351 3.66457L6.28771 6.01492C6.26145 6.15631 6.16001 6.25728 6.01864 6.28315L3.6648 6.71362C3.53656 6.73716 3.40149 6.6917 3.30202 6.59217L0.927686 4.2156C0.839375 4.13385 0.66419 4.02534 0.590447 4.32771C0.293858 5.82825 0.726422 7.44413 1.8894 8.60816C2.98061 9.70033 4.47166 10.1511 5.89291 9.9603C6.98125 9.81405 7.28018 10.1635 7.8417 10.7257L12.0166 14.9044C12.801 15.6895 14.0803 15.6989 14.8766 14.9319" fill="currentColor"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill-rule="evenodd" clip-rule="evenodd" d="M14.8766 14.9317L14.8771 14.9312C14.8854 14.9233 14.8935 14.9154 14.9016 14.9073L14.9019 14.9069L14.9023 14.9064L14.9027 14.9059L14.903 14.9053L14.9034 14.905C14.9115 14.8969 14.9194 14.8886 14.9273 14.8805L14.9277 14.88C15.6971 14.0861 15.6903 12.8081 14.9059 12.023L10.731 7.84424C10.1695 7.28207 9.82017 6.98276 9.96873 5.89598C10.1628 4.47665 9.71441 2.98635 8.6232 1.89418C7.46094 0.73069 5.84399 0.295189 4.34126 0.588577C4.03837 0.6617 4.14665 0.83687 4.2283 0.925264L6.60264 3.30184C6.70211 3.40137 6.74725 3.5363 6.72351 3.66457L6.28771 6.01492C6.26145 6.15631 6.16001 6.25728 6.01864 6.28315L3.6648 6.71362C3.53656 6.73716 3.40149 6.6917 3.30202 6.59217L0.927686 4.2156C0.839375 4.13385 0.66419 4.02534 0.590447 4.32771C0.293858 5.82825 0.726422 7.44413 1.8894 8.60816C2.98061 9.70033 4.47166 10.1511 5.89291 9.9603C6.98125 9.81405 7.28018 10.1635 7.8417 10.7257L12.0166 14.9044C12.801 15.6895 14.0803 15.6989 14.8766 14.9319" fill="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
  transition: all 0.3s ease;
}
@media all and (min-width: 768px) {
  .l-nav-contact {
    position: absolute;
    top: 27px;
    right: 40px;
    display: flex;
    flex-wrap: wrap;
    z-index: 3;
  }
  .l-nav-contact__btn {
    font-size: 1.5rem;
    width: 150px;
    margin-left: 5px;
    margin-bottom: 0;
  }
  .l-nav-contact__btn-link {
    height: 56px;
  }
}
@media all and (min-width: 1340px ) {
  .l-nav-contact__btn {
    font-size: 1.6rem;
    width: 200px;
    margin-left: 5px;
    margin-bottom: 0;
  }
  .l-nav-contact__btn-link {
    height: 56px;
  }
}

/* .l-nav-overlay
================================================ */
.l-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(var(--black), 0.2);
  z-index: 1000;
}
@media all and (min-width: 768px) {
  .l-nav-overlay {
    display: none !important;
  }
}

/* .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: relative;
}
.l-main-img.is-animated .l-main-img__img img {
  opacity: 1;
  transform: translateY(0);
}
.l-main-img__inner {
  padding-top: 100px;
  padding-bottom: 105px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
}
.l-main-img__area-img {
  position: relative;
  margin-bottom: 55px;
}
.l-main-img__img {
  position: absolute;
  z-index: 2;
}
.l-main-img__img.is-01 {
  width: 43.8%;
  top: -6%;
  left: 51%;
  transform: translateX(-50%);
}
.l-main-img__img.is-01 img {
  transition-delay: 1.2s;
}
.l-main-img__img.is-02 {
  width: 41.3%;
  top: 51%;
  left: 13%;
}
.l-main-img__img.is-02 img {
  transition-delay: 1.5s;
}
.l-main-img__img.is-03 {
  width: 28.3%;
  top: 56%;
  left: 60%;
}
.l-main-img__img.is-03 img {
  transition-delay: 1.8s;
}
.l-main-img__img img {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}
.l-main-img__img-bg {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.l-main-img__head {
  font-size: 9vw;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.08em;
}
.l-main-img__head .is-en {
  font-weight: 600;
  font-size: 10.1vw;
  margin-right: 6px;
}
.l-main-img__head-txt {
  transition-delay: 0.3s;
}
.l-main-img__txt {
  margin-top: 15px;
  font-size: 4.25vw;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: rgb(var(--grayscale800));
  transition-delay: 0.6s;
}
.l-main-img__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 15px;
  margin-right: -20px;
}
.l-main-img__list-item {
  margin-right: 20px;
  width: 13.6%;
}
.l-main-img__list-item:nth-child(2) {
  width: 19.2%;
}
.l-main-img__list-item:nth-child(3) {
  width: 16.1%;
}
.l-main-img__list-link {
  display: inline-block;
  font-size: 0;
  vertical-align: middle;
}
@media all and (min-width: 768px) {
  .l-main-img__inner {
    padding-top: 165px;
    padding-bottom: 290px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    align-items: center;
    padding-left: 80px;
    padding-right: 80px;
    max-width: var(--contents_width_wide);
  }
  .l-main-img__area-txt {
    width: 40.5%;
    margin-top: 30px;
  }
  .l-main-img__head {
    font-size: clamp(4.2rem, 3.26vw, 6.7rem);
  }
  .l-main-img__head .is-en {
    font-size: clamp(5rem, 3.95vw, 8.1rem);
  }
  .l-main-img__txt {
    font-size: 1.9rem;
    margin-top: 25px;
  }
  .l-main-img__area-img {
    width: 59.5%;
    margin-bottom: 0;
  }
  .l-main-img__list {
    margin-top: 70px;
  }
  .l-main-img__list-item {
    margin-right: 35px;
    max-width: 78px;
  }
  .l-main-img__list-item:nth-child(2) {
    max-width: 108px;
  }
  .l-main-img__list-item:nth-child(3) {
    max-width: 100px;
  }
  .l-main-img__list a {
    transition: all 0.3s ease;
  }
  .l-main-img__list a:hover {
    opacity: 0.7;
  }
}
@media all and (min-width: 1380px ) {
  .l-main-img__inner {
    padding-top: 226px;
  }
}
@media (min-width: 1680px) {
  .l-main-img__txt .u-view-pc-hidden {
    display: none;
  }
}

/* .l-sub-img
================================================ */
.l-sub-img {
  background: rgb(var(--primary100)) url(../img/common/bg_subimg01_sp.png) no-repeat center bottom/100% auto;
}
.l-sub-img__inner {
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-wrap: wrap;
  height: 240px;
}
.l-sub-img__head-ja {
  position: relative;
  padding-left: 22px;
  font-size: 1.5rem;
}
.l-sub-img__head-ja::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 16px;
  height: 16px;
  background: url(../img/common/ico_head01_color.svg) no-repeat 0 100%/cover;
}
.l-sub-img__head-en {
  font-size: 3.3rem;
}
@media all and (max-width: 767px) {
  .l-sub-img__inner {
    padding: 72px 40px 50px;
  }
  .l-sub-img__breadcrumb {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
  }
}
@media all and (min-width: 768px) {
  .l-sub-img {
    background-image: url(../img/common/bg_subimg01_pc.png);
  }
  .l-sub-img__inner {
    height: 522px;
    padding-top: 165px;
    padding-bottom: 50px;
  }
  .l-sub-img__head-ja {
    padding-left: 35px;
    font-size: 2.1rem;
  }
  .l-sub-img__head-ja::before {
    width: 23px;
    height: 23px;
  }
  .l-sub-img__head-en {
    font-size: 8.1rem;
  }
  .l-sub-img__breadcrumb {
    margin-top: 40px;
  }
}

/* .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-clip-text {
  position: relative;
  display: inline-block;
  -webkit-clip-path: inset(100% 0 0 0);
  clip-path: inset(100% 0 0 0);
  transition: all 0.4s ease;
  transition-delay: 0.3s;
}
.js-c-clip-text.is-animated {
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
}
.js-c-clip-text.is-delay {
  transition-delay: 0.6s;
}

/* .js-c-slider
================================================== */
.js-c-slider__arrow {
  position: absolute;
  top: 0;
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: solid 2px #fff;
  box-sizing: border-box;
  cursor: pointer;
}
.js-c-slider__arrow::before {
  display: inline-block;
  width: 9px;
  height: 15px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9 15"><path d="M8.26917 7.5C8.26917 7.72387 8.18135 7.93115 8.03765 8.08869L2.09789 14.2575C1.78654 14.5808 1.27559 14.5808 0.964232 14.2575C0.652873 13.9341 0.652873 13.4035 0.964231 13.0801L6.34514 7.49171L0.964231 1.91161C0.652873 1.58824 0.652873 1.06589 0.964231 0.742522C1.27559 0.419159 1.77855 0.419159 2.08991 0.742522L8.02967 6.91131C8.18136 7.06885 8.26119 7.27613 8.26119 7.5L8.26917 7.5Z" fill="currentColor"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9 15"><path d="M8.26917 7.5C8.26917 7.72387 8.18135 7.93115 8.03765 8.08869L2.09789 14.2575C1.78654 14.5808 1.27559 14.5808 0.964232 14.2575C0.652873 13.9341 0.652873 13.4035 0.964231 13.0801L6.34514 7.49171L0.964231 1.91161C0.652873 1.58824 0.652873 1.06589 0.964231 0.742522C1.27559 0.419159 1.77855 0.419159 2.08991 0.742522L8.02967 6.91131C8.18136 7.06885 8.26119 7.27613 8.26119 7.5L8.26917 7.5Z" fill="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
  transition: all 0.3s ease;
  position: absolute;
  top: 10px;
  left: 13px;
  color: #fff;
}
.js-c-slider__arrow.is-prev {
  left: 0;
}
.js-c-slider__arrow.is-prev::before {
  transform: scale(-1, 1);
  left: 11px;
}
.js-c-slider__arrow.is-next {
  right: 0;
}
@media all and (min-width: 768px) {
  .js-c-slider__arrow {
    width: 50px;
    height: 50px;
    transition: all 0.3s ease;
  }
  .js-c-slider__arrow::before {
    top: 15px;
    width: 10px;
    height: 18px;
    left: 18px;
    transition: all 0.3s ease;
  }
  .js-c-slider__arrow.is-prev::before {
    left: 16px;
  }
  .js-c-slider__arrow:hover {
    background: #fff;
  }
  .js-c-slider__arrow:hover::before {
    color: rgb(var(--primary500));
  }
}

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

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

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

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

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -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-archive
================================================ */
.case-archive__inner {
  padding-top: 50px;
  padding-bottom: 60px;
}
.case-archive__pager {
  margin-top: 35px;
  padding-top: 40px;
  border-top: 1px solid rgb(var(--grayscale500));
}
@media all and (max-width: 767px) {
  .case-archive__pager {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 17px;
    padding-right: 17px;
  }
}
@media all and (min-width: 768px) {
  .case-archive__inner {
    padding-top: 110px;
    padding-bottom: 120px;
  }
  .case-archive__pager {
    margin-top: 70px;
    padding-top: 80px;
  }
}

/* .company-mission
================================================ */
.company-mission__inner {
  padding-top: 60px;
  padding-bottom: 36px;
}
.company-mission__subhead {
  margin-bottom: 15px;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.6;
}
@media all and (max-width: 767px) {
  .company-mission__txt {
    display: inline;
  }
}
@media all and (min-width: 768px) {
  .company-mission__inner {
    padding-top: 140px;
    padding-bottom: 140px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .company-mission__areaTxt {
    flex-basis: 580px;
  }
  .company-mission__areaImg {
    flex-basis: calc(100% - 610px);
    padding-top: 70px;
  }
  .company-mission__subhead {
    margin-bottom: 30px;
    font-size: 3.1rem;
  }
  .company-mission__txt {
    margin-top: 2em;
    font-size: 1.9rem;
  }
}

.company-mission-step {
  display: flex;
}
.company-mission-step__item {
  flex-basis: 42.5%;
  mix-blend-mode: multiply;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}
.company-mission-step__item:nth-of-type(2) {
  margin: 27% -13.75% 0;
}
.company-mission-step__item:nth-of-type(2) {
  transition-delay: 0.3s;
}
.company-mission-step__item:nth-of-type(3) {
  transition-delay: 0.6s;
}
.company-mission-step.is-animated .company-mission-step__item {
  opacity: 1;
  transform: translateY(0);
}
@media all and (max-width: 767px) {
  .company-mission-step {
    margin-top: 24px;
  }
}

/* .company-vision
================================================ */
.company-vision {
  position: relative;
  overflow: hidden;
}
.company-vision::before, .company-vision::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  border-radius: 10px;
  background: rgb(var(--primary100));
  z-index: 1;
}
.company-vision::after {
  background: url(../img/company/bg_vision01_sp.png) no-repeat right top/100% auto;
}
.company-vision__inner {
  position: relative;
  padding-top: 50px;
  padding-bottom: 50px;
  z-index: 2;
}
@media all and (max-width: 767px) {
  .company-vision {
    margin: 0 20px;
  }
  .company-vision::before, .company-vision::after {
    left: 0;
    right: 0;
  }
}
@media all and (min-width: 768px) {
  .company-vision::before, .company-vision::after {
    width: 1680px;
    left: 50%;
    transform: translateX(-50%);
  }
  .company-vision::after {
    background-image: url(../img/company/bg_vision01_pc.png);
    background-position: left bottom;
    background-size: auto 100%;
  }
  .company-vision__inner {
    padding-top: 120px;
    padding-bottom: 120px;
    display: flex;
    justify-content: space-between;
  }
  .company-vision__head {
    flex-basis: 430px;
  }
  .company-vision__col {
    flex-basis: calc(100% - 430px);
  }
}

.company-vision-set {
  background: #fff;
  border-radius: 5px;
  padding: 20px 20px 20px 0;
  box-sizing: border-box;
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: 90px auto;
  grid-template-rows: auto;
  gap: 0px 0px;
}
.company-vision-set + .company-vision-set {
  margin-top: 5px;
}
.company-vision-set__head {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  font-size: 1.3rem;
  min-height: 45px;
  border-right: 1px solid rgb(var(--grayscale500));
  box-sizing: border-box;
  padding-left: 5px;
}
.company-vision-set-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-left: 20px;
  font-size: 1.3rem;
  box-sizing: border-box;
}
.company-vision-set-list__item {
  margin-right: 10px;
}
.company-vision-set__areaTxt {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding-left: 20px;
  box-sizing: border-box;
  line-height: 1.6;
}
.company-vision-set__txt {
  font-size: 1.3rem;
  margin-right: -20px;
  word-break: keep-all;
}
.company-vision-set__txt::first-letter {
  font-feature-settings: "palt";
}
.company-vision-set__sub {
  margin-top: 5px;
  font-size: 1.1rem;
}
@media all and (min-width: 768px) {
  .company-vision-set {
    padding: 25px 0;
    grid-template-columns: 134px auto;
    align-items: center;
  }
  .company-vision-set + .company-vision-set {
    margin-top: 10px;
  }
  .company-vision-set__head {
    font-size: 1.5rem;
    min-height: 80px;
    padding-left: 10px;
  }
  .company-vision-set-list {
    max-width: 450px;
    padding-left: 40px;
    font-size: 1.8rem;
  }
  .company-vision-set-list__item {
    margin-right: 30px;
  }
  .company-vision-set__areaTxt {
    padding-left: 40px;
  }
  .company-vision-set__txt {
    font-size: 1.8rem;
  }
  .company-vision-set__sub {
    margin-top: 10px;
    font-size: 1.6rem;
  }
}

/* .company-info
================================================ */
.company-info__inner {
  padding-top: 60px;
  padding-bottom: 60px;
}
.company-info__sns {
  width: 38px;
  height: 38px;
  display: block;
  margin: 0 auto;
}
.company-info__sns img {
  display: block;
}
@media all and (min-width: 768px) {
  .company-info__inner {
    padding-top: 150px;
    padding-bottom: 150px;
  }
  .company-info__sns {
    width: 50px;
    height: 50px;
    margin: 10px 0;
  }
}

/* .company-message
================================================ */
.company-message {
  background: rgb(var(--primary500)) url(../img/company/bg_message01_sp.png) no-repeat right bottom/100% auto;
  color: #fff;
}
.company-message__txt + .company-message__txt {
  margin-top: 2em;
}
.company-message__name {
  margin-top: 20px;
  font-size: 1.7rem;
}
@media all and (max-width: 767px) {
  .company-message__inner {
    padding: 60px 40px 100px;
  }
}
@media all and (min-width: 768px) {
  .company-message {
    background-image: url(../img/company/bg_message01_pc.png);
    background-position-x: max(700px, 100%);
    background-size: auto 100.1%;
  }
  .company-message__inner {
    padding-top: 150px;
    padding-bottom: 150px;
  }
  .company-message__txt {
    max-width: 950px;
  }
  .company-message__txt + .company-message__txt {
    margin-top: 4em;
  }
  .company-message__txt-row + .company-message__txt-row {
    margin-top: 1em;
  }
  .company-message__name {
    margin-top: 40px;
    font-size: 2.1rem;
  }
}

/* .contact-intro
================================================ */
.contact-intro__inner {
  padding-top: 60px;
  padding-bottom: 50px;
}
.contact-intro-content__col {
  border-radius: 5px;
  padding: 20px;
  background: rgb(var(--primary500));
  color: #fff;
}
.contact-intro-content__col.is-col02 {
  background: rgb(var(--primary600));
}
.contact-intro-content__col-head {
  margin-bottom: 10px;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
}
.contact-intro-content__col-btn-link {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 60px;
  padding-bottom: 2px;
  box-sizing: border-box;
  color: #fff;
  border: 1px solid;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
}
.contact-intro-content__col-btn-link::before {
  display: inline-block;
  width: 17px;
  height: 17px;
  vertical-align: middle;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="17" height="17" viewBox="0 0 17 17"><path d="M15.58 2.05a14.85 14.85 0 0 1 .66 1.32c.1.22.15.44.19.68.04.23.06.5.07.78a4.48 4.48 0 0 1-.61 2.27 4.8 4.8 0 0 1-2.7 2.07 4.73 4.73 0 0 1-1.19.16 4.15 4.15 0 0 1-.73-.06l-6.3 6.3a2.58 2.58 0 0 1-1.85.76 2.56 2.56 0 0 1-1.85-.77 2.81 2.81 0 0 1-.56-.83 2.61 2.61 0 0 1 .56-2.88l6.3-6.3a4.24 4.24 0 0 1-.07-.72 4.47 4.47 0 0 1 .61-2.27A4.3 4.3 0 0 1 9.73.95c.34-.2.7-.35 1.07-.46a4.39 4.39 0 0 1 2.66.1 8.15 8.15 0 0 1 1.32.66L11.7 4.33l.8.8 3.08-3.08Z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="17" height="17" viewBox="0 0 17 17"><path d="M15.58 2.05a14.85 14.85 0 0 1 .66 1.32c.1.22.15.44.19.68.04.23.06.5.07.78a4.48 4.48 0 0 1-.61 2.27 4.8 4.8 0 0 1-2.7 2.07 4.73 4.73 0 0 1-1.19.16 4.15 4.15 0 0 1-.73-.06l-6.3 6.3a2.58 2.58 0 0 1-1.85.76 2.56 2.56 0 0 1-1.85-.77 2.81 2.81 0 0 1-.56-.83 2.61 2.61 0 0 1 .56-2.88l6.3-6.3a4.24 4.24 0 0 1-.07-.72 4.47 4.47 0 0 1 .61-2.27A4.3 4.3 0 0 1 9.73.95c.34-.2.7-.35 1.07-.46a4.39 4.39 0 0 1 2.66.1 8.15 8.15 0 0 1 1.32.66L11.7 4.33l.8.8 3.08-3.08Z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center center;
  mask-position: center center;
  content: "";
  margin-right: 6px;
}
@media all and (max-width: 767px) {
  .contact-intro-content__col {
    margin-top: 12px;
  }
}
@media all and (min-width: 768px) {
  .contact-intro__inner {
    padding-top: 120px;
    padding-bottom: 110px;
  }
  .contact-intro-content {
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 0px 20px;
  }
  .contact-intro-content__col {
    border-radius: 10px;
    padding: 40px;
  }
  .contact-intro-content__col-head {
    margin-bottom: 20px;
    font-size: 2.3rem;
  }
  .contact-intro-content__col-btn {
    max-width: 386px;
    margin: 40px auto 0;
  }
  .contact-intro-content__col-btn-link {
    width: 100%;
    min-height: 70px;
    padding-bottom: 2px;
    border-width: 2px;
  }
  .contact-intro-content__col-btn-link::before {
    width: 19px;
    height: 19px;
    margin-right: 10px;
  }
}
@media (hover: hover) {
  .contact-intro-content__col-btn-link {
    transition: all 0.3s ease;
  }
  .contact-intro-content__col-btn-link:hover {
    background: #fff;
    color: rgb(var(--primary600));
    border-color: #fff;
  }
}

/* .contact-form
================================================ */
.contact-form {
  background: rgb(var(--primary100));
}
.contact-form__inner {
  padding-top: 60px;
  padding-bottom: 50px;
}
.contact-form__lead {
  margin-bottom: 22px;
}
@media all and (min-width: 768px) {
  .contact-form__inner {
    padding-top: 120px;
    padding-bottom: 110px;
  }
  .contact-form__lead {
    margin-bottom: 60px;
    text-align: center;
  }
}

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

#home .l-wrapper {
  overflow: hidden;
}

/* .home-bg-area
================================================ */
.home-bg-area {
  position: absolute;
  z-index: -1;
}
.home-bg-area__circle {
  width: 206%;
  height: 206%;
  -webkit-animation: rotation 20s linear infinite;
  animation: rotation 20s linear infinite;
}
.home-bg-area__circle.is-yellow {
  transform-origin: 54% 46%;
  margin-left: -6%;
}
.home-bg-area__circle.is-blue {
  transform-origin: 46% 54%;
  margin-top: -106%;
  margin-left: -100%;
}
.home-bg-area.is-top {
  top: 70px;
}
.home-bg-area.is-service {
  top: -260px;
}
.home-bg-area.is-service .home-bg-area__circle.is-yellow {
  margin-left: 47%;
}
.home-bg-area.is-service .home-bg-area__circle.is-blue {
  margin-left: -48%;
}
.home-bg-area.is-recruit {
  top: -150px;
}
@media all and (min-width: 768px) {
  .home-bg-area__img {
    width: 2020px;
    transition: transform 0.6s linear 0s;
  }
  .home-bg-area__circle {
    width: 1390px;
    height: 1390px;
  }
  .home-bg-area__circle.is-yellow {
    transform-origin: 53% 47%;
    margin-left: 230px;
  }
  .home-bg-area__circle.is-blue {
    transform-origin: 47% 53%;
    margin-top: -715px;
    margin-left: -400px;
  }
  .home-bg-area.is-top {
    top: 110px;
  }
  .home-bg-area.is-top .home-bg-area__img {
    margin-left: -400px;
  }
  .home-bg-area.is-service {
    top: -470px;
  }
  .home-bg-area.is-service .home-bg-area__img {
    margin-left: 240px;
  }
  .home-bg-area.is-service .home-bg-area__circle.is-yellow {
    margin-left: 870px;
  }
  .home-bg-area.is-service .home-bg-area__circle.is-blue {
    margin-left: 240px;
  }
  .home-bg-area.is-recruit {
    top: -1130px;
  }
  .home-bg-area.is-recruit .home-bg-area__img {
    margin-left: -400px;
  }
}
@media all and (min-width: 1380px ) {
  .home-bg-area__circle.is-yellow {
    margin-left: 580px;
  }
  .home-bg-area__circle.is-blue {
    margin-top: -715px;
    margin-left: -50px;
  }
  .home-bg-area.is-top .home-bg-area__img {
    margin-left: -50px;
  }
  .home-bg-area.is-service .home-bg-area__img {
    margin-left: 620px;
  }
  .home-bg-area.is-service .home-bg-area__circle.is-yellow {
    margin-left: 1250px;
  }
  .home-bg-area.is-service .home-bg-area__circle.is-blue {
    margin-left: 620px;
  }
  .home-bg-area.is-recruit .home-bg-area__img {
    margin-left: -50px;
  }
}

@-webkit-keyframes rotation {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes rotation {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* .home-news
================================================ */
.home-news__inner {
  padding-bottom: 60px;
}
@media all and (min-width: 768px) {
  .home-news__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 150px;
  }
  .home-news__head {
    width: 280px;
  }
  .home-news__archive {
    width: calc(100% - 280px);
  }
}

/* .home-mission
================================================ */
.home-mission__inner {
  padding-bottom: 40px;
}
.home-mission__copy {
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 15px;
}
.home-mission__img {
  margin: 20px 20px 0;
}
@media all and (min-width: 768px) {
  .home-mission__inner {
    padding-bottom: 150px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  .home-mission__area-txt {
    width: 657px;
  }
  .home-mission__area-img {
    width: calc(100% - 657px);
    padding-left: 60px;
    box-sizing: border-box;
  }
  .home-mission__img {
    margin: 0;
  }
  .home-mission__copy {
    font-size: 3.1rem;
    margin-bottom: 30px;
  }
}
@media all and (min-width: 1380px ) {
  .home-mission__area-img {
    padding-left: 80px;
  }
}

/* .home-feature
================================================ */
.home-feature {
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.home-feature::before {
  position: absolute;
  content: "";
  width: calc(100% - 40px);
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: rgb(var(--primary500));
  border-radius: 10px;
  z-index: -1;
}
.home-feature::after {
  position: absolute;
  content: "";
  top: 30px;
  right: 40px;
  width: 295px;
  height: 84px;
  background: url(../img/home/bg_feature01_sp.png) no-repeat 0 100%/cover;
  z-index: -1;
}
.home-feature__inner {
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
  z-index: 2;
}
.home-feature__head-copy {
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.6;
}
.home-feature-slider {
  margin-bottom: -25px;
}
.home-feature-slider__dots {
  position: relative;
  width: 218px;
  margin: 20px auto 0;
}
.home-feature-slider__item {
  background: #fff;
  border-radius: 5px;
  box-shadow: 10px 10px 25px 0px rgba(var(--black), 0.15);
  padding: 26px 0;
  box-sizing: border-box;
  text-align: center;
}
.home-feature-slider__img {
  width: 100px;
  margin: 0 auto;
}
.home-feature-slider__head {
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 700;
  margin-top: 15px;
}
.home-feature-slider .slick-slide {
  margin: 0 8px;
  padding-bottom: 25px;
}
@media all and (max-width: 767px) {
  .home-feature__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
  .home-feature-slider__wrap {
    margin: 0 -20px;
  }
}
@media all and (min-width: 768px) {
  .home-feature {
    margin-bottom: 150px;
  }
  .home-feature::before {
    width: var(--contents_width_wide);
  }
  .home-feature::after {
    top: 80px;
    right: 80px;
    width: 949px;
    height: 226px;
    background-image: url(../img/home/bg_feature01_pc.png);
  }
  .home-feature__inner {
    padding-top: 120px;
    padding-bottom: 120px;
    position: relative;
  }
  .home-feature__head {
    margin-bottom: 30px;
  }
  .home-feature__head-copy {
    font-size: 3.1rem;
  }
  .home-feature-slider__dots {
    position: absolute;
    top: 190px;
    right: 40px;
    width: 260px;
  }
  .home-feature-slider__dots .c-dot01 {
    margin-top: 3px;
  }
  .home-feature-slider__item {
    width: 300px;
    padding: 50px 0;
  }
  .home-feature-slider__img {
    width: 110px;
  }
  .home-feature-slider__head {
    font-size: 1.9rem;
    margin-top: 30px;
  }
  .home-feature-slider .slick-slide {
    width: 300px;
    margin: 0 10px;
  }
}
@media all and (min-width: 1380px ) {
  .home-feature::after {
    right: auto;
    left: 50%;
    margin-left: -200px;
  }
  .home-feature-slider__dots {
    right: auto;
    left: 50%;
    margin-left: 440px;
  }
}

/* .home-service
================================================ */
.home-service {
  background: rgba(var(--grayscale200), 0.8);
  position: relative;
}
.home-service__inner {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media all and (min-width: 768px) {
  .home-service__inner {
    padding-top: 150px;
    padding-bottom: 150px;
  }
  .home-service__area-txt {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
  }
  .home-service__head {
    width: 49%;
    margin-bottom: 0;
  }
  .home-service__txt {
    width: 51%;
    line-height: 3;
    margin-bottom: -12px;
  }
  .home-service__area-btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 100px;
  }
  .home-service__btn {
    width: 540px;
    margin-top: 0;
  }
  .home-service__btn + .home-service__btn {
    margin-top: 0;
  }
}

/* .home-company
================================================ */
.home-company {
  background: rgb(var(--primary500));
}
.home-company__inner {
  padding-top: 60px;
  padding-bottom: 60px;
}
.home-company__area-img {
  margin: 0 20px 30px;
}
.home-company__img {
  overflow: hidden;
}
.home-company__img img {
  border-radius: 10px;
}
.home-company__txt {
  color: #fff;
}
.home-company__box {
  margin-top: 30px;
  background: #fff;
  padding: 20px;
  border-radius: 5px;
}
.home-company__box + .home-company__box {
  margin-top: 5px;
}
.home-company__box dl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.home-company__box dt {
  width: 76px;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.6;
}
.home-company__box dd {
  width: calc(100% - 76px);
  padding-left: 20px;
  border-left: solid 1px rgb(var(--grayscale500));
  box-sizing: border-box;
}
.home-company__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-right: -12px;
}
.home-company__list-item {
  width: 45px;
  margin-right: 12px;
}
.home-company__list-item:nth-child(2) {
  width: 60px;
}
.home-company__list-item:nth-child(3) {
  width: 65px;
}
.home-company__list-link {
  display: inline-block;
  font-size: 0;
  vertical-align: middle;
}
.home-company__list.is-media .home-company__list-item {
  width: 80px;
}
.home-company__list.is-media .home-company__list-item:nth-child(2) {
  width: 75px;
}
.home-company__list.is-media .home-company__list-item:nth-child(3) {
  width: 130px;
}
@media all and (min-width: 768px) {
  .home-company__inner {
    padding-top: 150px;
    padding-bottom: 120px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    align-items: center;
  }
  .home-company__area-img {
    width: calc(100% - 616px);
    padding-left: 60px;
    box-sizing: border-box;
    margin: 0;
  }
  .home-company__area-txt {
    width: 616px;
  }
  .home-company__txt {
    line-height: 3;
  }
  .home-company__box {
    margin-top: 50px;
    padding: 25px;
  }
  .home-company__box + .home-company__box {
    margin-top: 10px;
  }
  .home-company__box dt {
    font-size: 1.5rem;
    width: 90px;
  }
  .home-company__box dd {
    width: calc(100% - 90px);
    padding-left: 25px;
  }
  .home-company__list-item {
    width: 78px;
    margin-right: 25px;
  }
  .home-company__list-item:nth-child(2) {
    width: 108px;
  }
  .home-company__list-item:nth-child(3) {
    width: 100px;
  }
  .home-company__list a {
    transition: all 0.3s ease;
  }
  .home-company__list a:hover {
    opacity: 0.7;
  }
  .home-company__list.is-media {
    padding: 24px 0;
  }
  .home-company__list.is-media .home-company__list-item {
    width: 90px;
  }
  .home-company__list.is-media .home-company__list-item:nth-child(2) {
    width: 90px;
  }
  .home-company__list.is-media .home-company__list-item:nth-child(3) {
    width: 150px;
  }
}
@media all and (min-width: 1380px ) {
  .home-company__area-img {
    padding-left: 80px;
  }
}

/* .home-recruit
================================================ */
.home-recruit {
  position: relative;
}
.home-recruit__inner {
  padding-top: 60px;
  padding-bottom: 60px;
}
.home-recruit__area-img {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 20px;
}
.home-recruit__img {
  width: calc(50% - 8px);
  overflow: hidden;
}
.home-recruit__img:nth-child(2) {
  margin-top: 25px;
}
.home-recruit__img img {
  border-radius: 10px;
}
.home-recruit__copy {
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 15px;
}
@media all and (min-width: 768px) {
  .home-recruit__inner {
    padding-top: 150px;
    padding-bottom: 110px;
    display: flex;
    flex-wrap: wrap;
  }
  .home-recruit__area-img {
    width: 600px;
    margin-top: 44px;
  }
  .home-recruit__img {
    width: calc(50% - 15px);
  }
  .home-recruit__img:nth-child(2) {
    margin-top: 50px;
  }
  .home-recruit__area-txt {
    width: calc(100% - 600px);
    padding-left: 60px;
    box-sizing: border-box;
  }
  .home-recruit__copy {
    font-size: 3.1rem;
    margin-bottom: 30px;
  }
  .home-recruit__txt {
    line-height: 3;
    margin-right: -20px;
  }
}
@media all and (min-width: 1380px ) {
  .home-recruit__area-img {
    width: 670px;
  }
  .home-recruit__area-txt {
    width: calc(100% - 670px);
    padding-left: 80px;
  }
  .home-recruit__txt {
    font-size: 1.6rem;
  }
}

/* .news-archive
================================================ */
.news-archive__inner {
  padding-top: 50px;
  padding-bottom: 60px;
}
.news-archive__pager {
  margin-top: 40px;
}
@media all and (max-width: 767px) {
  .news-archive__pager {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 17px;
    padding-right: 17px;
  }
}
@media all and (min-width: 768px) {
  .news-archive__inner {
    padding-top: 110px;
    padding-bottom: 120px;
  }
  .news-archive__pager {
    margin-top: 78px;
  }
}

/* .privacy-policy
================================================ */
.privacy-policy__inner {
  padding-top: 60px;
  padding-bottom: 50px;
}
.privacy-policy__lead {
  padding-bottom: 20px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgb(var(--grayscale500));
}
@media all and (min-width: 768px) {
  .privacy-policy__inner {
    padding-top: 130px;
    padding-bottom: 150px;
  }
  .privacy-policy__lead {
    padding-bottom: 40px;
    margin-bottom: 30px;
  }
}

.privacy-policy-sec {
  margin-top: 25px;
}
.privacy-policy-sec__head {
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
}
.privacy-policy-sec__head-num {
  white-space: nowrap;
  color: rgb(var(--primary600));
  margin-right: 15px;
}
.privacy-policy-sec__txt, .privacy-policy-sec__ol, .privacy-policy-sec__ul {
  margin-top: 10px;
}
.privacy-policy-sec__ol {
  counter-reset: ol;
}
.privacy-policy-sec__ol .privacy-policy-sec__ol {
  margin-left: 1em;
  margin-bottom: 0.75em;
}
.privacy-policy-sec__ol-item {
  position: relative;
  counter-increment: ol;
  padding-left: 1.75em;
}
.privacy-policy-sec__ol-item::before {
  display: inline-block;
  content: counter(ol) ".";
  width: 1.5em;
  text-align: right;
  position: absolute;
  top: 0;
  left: 0;
}
.privacy-policy-sec__ul-item {
  position: relative;
  padding-left: 1.75em;
}
.privacy-policy-sec__ul-item::before {
  display: inline-block;
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  top: 0.9em;
  left: 0.8em;
}
.privacy-policy-sec__ul-item a {
  color: rgb(var(--grayscale800));
}
@media all and (min-width: 768px) {
  .privacy-policy-sec {
    margin-top: 50px;
  }
  .privacy-policy-sec__head {
    font-size: 2.8rem;
  }
  .privacy-policy-sec__txt, .privacy-policy-sec__ol, .privacy-policy-sec__ul {
    margin-top: 15px;
  }
}

/* .service-about
================================================ */
.service-about {
  overflow: hidden;
  background: rgba(var(--primary100), 0.8) url(../img/service/bg_service01_sp.png) no-repeat center top/100% auto;
}
.service-about__inner {
  padding-top: 50px;
}
.service-about__content {
  padding-top: 20px;
  padding-bottom: 70px;
}
@media all and (min-width: 768px) {
  .service-about {
    background-image: url(../img/service/bg_service01_pc.png);
  }
  .service-about__inner {
    padding-top: 140px;
  }
  .service-about__content {
    margin-top: -10px;
    padding-top: 0;
    padding-bottom: 160px;
  }
}

/* .service-reason
================================================ */
.service-reason {
  background: rgb(var(--primary500));
}
.service-reason__inner {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media all and (min-width: 768px) {
  .service-reason__inner {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.service-reason-list__item {
  background: #fff;
  border-radius: 10px;
  margin-top: 14px;
  padding: 25px 20px;
  box-sizing: border-box;
}
.service-reason-list__item-ico {
  width: 100px;
  height: 100px;
  margin: 0 auto 15px;
}
.service-reason-list__item-head {
  margin-bottom: 15px;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}
@media all and (min-width: 768px) {
  .service-reason-list {
    display: flex;
    flex-wrap: wrap;
    margin: 57px -0.95% 0;
  }
  .service-reason-list__item {
    padding: 2.8%;
    margin: 0 0.95%;
    flex-basis: 31.4333333333%;
    max-width: 31.4333333333%;
  }
  .service-reason-list__item-ico {
    width: 110px;
    height: 110px;
    margin-bottom: 30px;
  }
  .service-reason-list__item-head {
    margin: 0 -10px 20px;
    font-size: 2.1rem;
  }
}

.service-reason-media {
  margin-top: 30px;
  background: #fff;
  border-radius: 5px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
}
.service-reason-media__head {
  white-space: nowrap;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.6;
  padding-right: 20px;
  box-sizing: border-box;
}
.service-reason-media-list {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-right: 5px;
  box-sizing: border-box;
}
.service-reason-media-list::before {
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 0;
  content: "";
  border-left: 1px solid rgb(var(--grayscale500));
}
.service-reason-media-list__item {
  margin: 5px 0 5px 15px;
}
.service-reason-media-list__item img {
  display: block;
}
.service-reason-media-list__item.is-item01 {
  width: 80px;
}
.service-reason-media-list__item.is-item02 {
  width: 75px;
}
.service-reason-media-list__item.is-item03 {
  width: 130px;
}
@media all and (min-width: 768px) {
  .service-reason-media {
    margin-top: 50px;
    border-radius: 10px;
    padding: 50px;
    justify-content: center;
  }
  .service-reason-media__head {
    font-size: 2.7rem;
    padding-right: 100px;
  }
  .service-reason-media-list {
    padding: 0 0 0 10px;
  }
  .service-reason-media-list::before {
    top: -10px;
    bottom: -10px;
  }
  .service-reason-media-list__item {
    margin-left: 90px;
  }
  .service-reason-media-list__item.is-item01 {
    width: 161px;
  }
  .service-reason-media-list__item.is-item02 {
    width: 161px;
  }
  .service-reason-media-list__item.is-item03 {
    width: 268px;
  }
}