@charset "UTF-8";
:root {
  --black: 51,51,51;
  --gray: 118,118,118;
  --border: 217,217,217;
  --contents_width: 1100px;
  --body_padding_side: 120px;
  --contents_width_with_padding: 1220px;
  --sidebar_width: 300px;
}

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;
  image-rendering: -webkit-optimize-contrast;
}

iframe {
  max-width: 100%;
}

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

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

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

select {
  color: inherit;
}

textarea {
  resize: vertical;
}

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

/* 02_base
================================================ */
body {
  min-width: 320px;
  padding-top: 60px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
  color: rgb(var(--black));
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media all and (min-width: 1220px) {
  body {
    min-width: auto;
    padding-top: 80px;
    font-size: 1.6rem;
  }
}

.l-wrapper {
  position: relative;
}

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

@-webkit-keyframes kf-show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes kf-show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* 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: 1220px) {
  .u-media-query {
    font-family: "pc";
  }
}

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

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

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

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

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

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

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

.u-serif {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
}

.u-roboto {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

/* link
-------------------------------------- */
a.u-alpha {
  display: block;
  text-decoration: none;
}
@media all and (min-width: 768px) {
  a.u-alpha {
    transition: all 0.6s 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: 1220px) {
  a.u-zoom .u-zoom__img {
    transition: all 0.6s ease;
  }
  a.u-zoom:hover .u-zoom__img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

/* layout
-------------------------------------- */
.u-inner {
  padding-right: 20px;
  padding-left: 20px;
  box-sizing: border-box;
}
@media all and (min-width: 1220px) {
  .u-inner {
    width: 100%;
    max-width: var(--contents_width);
    margin-right: auto;
    margin-left: auto;
    padding-right: 0;
    padding-left: 0;
  }
}

/* .c-archive01.is-archive
================================================ */
.c-archive01.is-archive .c-archive01__item {
  border-bottom: 1px solid rgb(var(--border));
}
@media all and (min-width: 768px) {
  .c-archive01.is-archive .c-archive01__item-link {
    padding: 30px 0;
  }
  .c-archive01.is-archive .c-archive01__item-img {
    width: 210px;
    margin-right: 30px;
  }
  .c-archive01.is-archive .c-archive01__item-meta {
    margin-bottom: 18px;
  }
  .c-archive01.is-archive .c-archive01__item-area-txt {
    padding-top: 0;
  }
  .c-archive01.is-archive .c-archive01__item-txt {
    font-size: 1.8rem;
    line-height: 1.75;
  }
}

/* .c-archive01.is-pc-large
================================================ */
@media all and (min-width: 1220px) {
  .c-archive01.is-pc-large .c-archive01__item {
    border-bottom: none;
  }
  .c-archive01.is-pc-large .c-archive01__item-img {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
  .c-archive01.is-pc-large .c-archive01__item-meta {
    margin-bottom: 15px;
  }
}

/* .c-archive01
================================================ */
.c-archive01__item {
  border-bottom: 1px solid #fff;
}
.c-archive01__item-link, .c-archive01__item-wrap {
  display: flex;
  flex-wrap: wrap;
  padding: 18px 0;
  align-items: flex-start;
}
.c-archive01__item-img {
  width: 100px;
  margin-right: 15px;
}
.c-archive01__item-area-txt {
  flex: 1;
}
.c-archive01__item-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 5px;
  line-height: 1.5;
}
.c-archive01__item-meta-date {
  margin-right: 5px;
  color: rgb(var(--gray));
  font-size: 1rem;
}
.c-archive01__item-meta-cat {
  flex: 1;
  color: rgb(var(--gray));
}
.c-archive01__item-meta-cat-span {
  display: inline-block;
  padding: 1px 10px 2px;
  border: 1px solid;
  border-radius: 10px;
  box-sizing: border-box;
  font-size: 1rem;
  text-align: center;
}
.c-archive01__item-txt {
  display: inline-block;
  display: -webkit-box;
  overflow: hidden;
  font-size: 1.2rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media all and (max-width: 374px) {
  .c-archive01__item-img {
    width: 80px;
    margin-right: 10px;
  }
}
@media all and (min-width: 1220px) {
  .c-archive01__item-link {
    padding: 28px 0;
  }
  .c-archive01__item-link:hover .c-archive01__item-txt-span {
    background-size: 100% 1px;
  }
  .c-archive01__item-wrap {
    padding: 28px 0;
  }
  .c-archive01__item-wrap .c-archive01__item-txt:hover .c-archive01__item-txt-span {
    background-size: 100% 1px;
  }
  .c-archive01__item-img {
    width: 164px;
    margin-right: 25px;
  }
  .c-archive01__item-meta {
    margin-bottom: 10px;
  }
  .c-archive01__item-meta-date {
    margin-right: 10px;
    padding-top: 4px;
    font-size: 1.4rem;
  }
  .c-archive01__item-meta-cat-span {
    padding: 1px 10px 2px;
    font-size: 1.1rem;
  }
  .c-archive01__item-area-txt {
    padding-top: 5px;
  }
  .c-archive01__item-txt {
    font-size: 1.6rem;
  }
  .c-archive01__item-txt-span {
    background: linear-gradient(#333, #333) 0 100%/0 1px no-repeat;
    transition: background-size 1.2s ease;
  }
}

/* .c-btn01
================================================ */
.c-btn01__link {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: 295px;
  min-height: 80px;
  margin: 0 auto;
  padding: 10px;
  border-radius: 40px;
  box-sizing: border-box;
  border: 2px solid #fff;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.75;
  text-align: center;
}
@media all and (min-width: 1220px) {
  .c-btn01__link {
    max-width: 500px;
    min-height: 120px;
    border-radius: 60px;
    font-size: 2.4rem;
    transition: all 0.6s ease;
  }
  .c-btn01__link:hover {
    color: rgb(var(--gray));
    background: #fff;
  }
}

/* .c-btn02.is-form
================================================ */
.c-btn02.is-form .c-btn02__link-ico {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2232%22%20height%3D%2232%22%20viewBox%3D%220%200%2032%2032%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_41645%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%2041645%22%20transform%3D%22translate(-228)%22%3E%20%3Cg%20id%3D%22%E6%A5%95%E5%86%86%E5%BD%A2_2%22%20data-name%3D%22%E6%A5%95%E5%86%86%E5%BD%A2%202%22%20transform%3D%22translate(228)%22%20fill%3D%22none%22%20stroke%3D%22%23333%22%20stroke-width%3D%221%22%3E%20%3Ccircle%20cx%3D%2216%22%20cy%3D%2216%22%20r%3D%2216%22%20stroke%3D%22none%22%2F%3E%20%3Ccircle%20cx%3D%2216%22%20cy%3D%2216%22%20r%3D%2215.5%22%20fill%3D%22none%22%2F%3E%20%3C%2Fg%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_41378%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%2041378%22%20transform%3D%22translate(-1490%20-2209.683)%22%3E%20%3Crect%20id%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2_23385%22%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%2023385%22%20width%3D%2212%22%20height%3D%221%22%20transform%3D%22translate(1727%202225.928)%22%20fill%3D%22%23333%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_46151%22%20data-name%3D%22%E3%83%91%E3%82%B9%2046151%22%20d%3D%22M3.67-.86V2.385h4.2Z%22%20transform%3D%22translate(1733.13%202224.543)%22%20fill%3D%22%23333%22%2F%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

/* .c-btn02
================================================ */
.c-btn02__link {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  width: 100%;
  max-width: 200px;
  min-height: 48px;
  margin: 0 auto;
  padding: 10px 0;
  border-bottom: 1px solid;
  box-sizing: border-box;
  font-size: 1.8rem;
  line-height: 1.75;
}
.c-btn02__link-ico {
  width: 32px;
  height: 32px;
  margin-top: -5px;
}
@media all and (min-width: 1220px) {
  .c-btn02__link {
    max-width: 260px;
    min-height: 48px;
    padding: 10px 0;
    font-size: 2rem;
    line-height: 1.75;
  }
  .c-btn02__link::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: -1px;
    width: 0;
    height: 1px;
    background: linear-gradient(135deg, #61b840 0%, #4db1db 50.2%, #0c62a9 100%);
    transition: width 0.6s ease;
  }
  .c-btn02__link:hover::before {
    left: 0;
    width: 100%;
  }
  .c-btn02__link-ico {
    width: 32px;
    height: 32px;
    margin-top: -5px;
  }
}

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

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

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

/* .c-cv01
================================================ */
.c-cv01 {
  background: linear-gradient(135deg, #61b840 0%, #4db1db 50.2%, #0c62a9 100%);
}
.c-cv01__inner {
  padding-top: 55px;
  padding-bottom: 60px;
}
.c-cv01__head {
  margin-bottom: 15px;
}
.c-cv01__txt {
  margin-bottom: 30px;
  font-size: 1.8rem;
  letter-spacing: 0.2em;
  text-align: center;
}
@media all and (min-width: 1220px) {
  .c-cv01 {
    background: linear-gradient(135deg, #9dd8a5 0%, #7dcfc8 50.2%, #6caad6 100%);
    margin: 0 60px;
  }
  .c-cv01__inner {
    padding-top: 115px;
    padding-bottom: 120px;
  }
  .c-cv01__head {
    margin-bottom: 25px;
  }
  .c-cv01__txt {
    margin-bottom: 60px;
    font-size: 2.4rem;
  }
}

/* .c-form01
================================================ */
.c-form01 {
  border-top: 1px solid rgb(var(--border));
  padding-top: 40px;
  margin-top: 36px;
}
.c-form01 tr {
  border-bottom: 1px solid #d9d9d9;
}
.c-form01 th {
  position: relative;
  padding: 24px 0 16px;
  font-weight: normal;
  text-align: left;
  font-size: 1.6rem;
}
.c-form01 td {
  padding: 0 0 30px;
}
.c-form01__label {
  display: inline-block;
  width: 48px;
  line-height: 1.1;
  padding: 2px 0 4px;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  background: #fff;
  font-size: 1.3rem;
  text-align: center;
  margin-left: 19px;
  border: 1px solid rgb(var(--gray));
}
.c-form01__label.is-required {
  background: rgb(var(--gray));
  color: #fff;
}
.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 {
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 50px;
  padding: 5px 20px;
  font-size: 1.6rem;
  background-color: #f3f3f3;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
}
.c-form01 select {
  padding-right: 24px;
  border: 1px solid #d9d9d9;
  background: no-repeat right 15px top 50%/8px;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAOCAYAAAAmL5yKAAAAzUlEQVQokZ2RsQ3CMBBFfxxaS9RXMQIlJSV0pKTMCIyQDWACYAM2wBvACFRXW3IDHTrJRlZiRyZXnHLWfz+n+xURnQEsMK26GYArgPsE3DCzUdJkmGDQSVN+aP+EL/7HqKU556zWeg5gVQBbAHth4g3CSrbA4MTMrzDU4cM599ZafwBsRmABW9GGh6qvIKIHgGXGoGHmW/ygEqJDBjZ9OGngrzsQ5oxTG6TEEtszJfwdMS4fq9xn7ZPZxocr2UDq6GGJrSTeYRHRblQA4Av4tkvSJ5wq3wAAAABJRU5ErkJggg==");
}
.c-form01 button {
  cursor: pointer;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-bottom: 1px solid;
}
.c-form01 textarea {
  height: 200px;
  resize: vertical;
}
.c-form01 ::-webkit-input-placeholder {
  color: rgba(var(--black), 0.4);
}
.c-form01 ::-moz-placeholder {
  color: rgba(var(--black), 0.4);
}
.c-form01 :-ms-input-placeholder {
  color: rgba(var(--black), 0.4);
}
.c-form01 ::-ms-input-placeholder {
  color: rgba(var(--black), 0.4);
}
.c-form01 ::placeholder {
  color: rgba(var(--black), 0.4);
}
.c-form01__postcode {
  display: flex;
  flex-wrap: wrap;
}
.c-form01__postcode-prefix {
  max-width: 26px;
  flex-basis: 26px;
  padding-top: 10px;
  font-size: 1.4rem;
}
.c-form01__postcode-input {
  width: calc(100% - 26px);
}
.c-form01__item {
  display: flex;
}
.c-form01__item + .c-form01__item {
  margin-top: 10px;
}
.c-form01__item-prefix {
  width: 20px;
  padding-top: 5px;
}
.c-form01__item-input {
  width: calc(100% - 20px);
}
.c-form01__address {
  margin-top: 20px;
}
.c-form01__area-btn {
  margin-top: 28px;
}
.c-form01__area-btn .c-form01__btn {
  width: 295px;
  height: 60px;
  margin: auto auto 25px;
  border-radius: 60px;
  background: linear-gradient(to left, rgba(12, 98, 169, 0.8) 0%, rgba(5, 146, 216, 0.8) 50.2%, rgba(97, 184, 64, 0.8) 100%);
  color: #fff;
  border-bottom: none;
}
.c-form01__area-btn button {
  background: inherit;
}
@media all and (max-width: 767px) {
  .c-form01 table,
.c-form01 thead,
.c-form01 tbody,
.c-form01 tr,
.c-form01 th,
.c-form01 td {
    display: block;
  }
}
@media all and (min-width: 768px) {
  .c-form01 {
    margin-top: 77px;
    padding: 79px 80px 80px;
    border: 1px solid rgb(var(--border));
    box-sizing: border-box;
    table-layout: fixed;
  }
  .c-form01 th {
    padding: 40px 0 42px;
    position: relative;
    width: 36%;
  }
  .c-form01 td {
    padding: 40px 0 40px 40px;
    width: 64%;
    box-sizing: border-box;
  }
  .c-form01__label {
    top: 51px;
    right: 0;
    width: 50px;
    position: absolute;
    padding: 5px 0;
  }
  .c-form01 input[type=text],
.c-form01 input[type=tel],
.c-form01 input[type=number],
.c-form01 input[type=email],
.c-form01 button,
.c-form01 select,
.c-form01 textarea {
    height: 46px;
    padding: 5px 21px;
  }
  .c-form01 textarea {
    height: 250px;
    overflow: auto;
  }
  .c-form01__postcode-prefix {
    font-size: 1.6rem;
    padding-right: 7px;
  }
  .c-form01__postcode-input {
    width: calc(100% - 33px);
  }
  .c-form01__postcode-input input[type=text] {
    width: 276px;
  }
  .c-form01__item {
    display: inline-flex;
  }
  .c-form01__item + .c-form01__item {
    margin: 0 0 0 20px;
  }
  .c-form01__item-prefix {
    padding-top: 6px;
  }
  .c-form01__item-input {
    width: 200px;
  }
  .c-form01__area-btn {
    margin-top: 50px;
  }
  .c-form01__area-btn .c-form01__btn {
    margin: auto auto 25px;
    width: 350px;
    height: 70px;
    font-size: 1.8rem;
    position: relative;
  }
  .c-form01__area-btn .c-form01__btn::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 60px;
    background-color: #fff;
    opacity: 0;
    transition: opacity 0.6s ease;
  }
  .c-form01__area-btn .c-form01__btn:hover:before {
    opacity: 0.3;
  }
}

/*  .c-form01 .mwform-checkbox-field
================================================ */
.c-form01 .mwform-checkbox-field {
  display: block;
}
.c-form01 .mwform-checkbox-field + .mwform-checkbox-field {
  margin-top: 10px;
  margin-left: 0 !important;
}
.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 {
  position: relative;
  display: block;
  padding-left: 40px;
}
.c-form01 .mwform-checkbox-field .mwform-checkbox-field-text::before {
  box-sizing: border-box;
  position: absolute;
  top: 4px;
  left: 0;
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  border: 1px solid rgb(var(--border));
}
.c-form01 .mwform-checkbox-field input:checked + .mwform-checkbox-field-text::after {
  position: absolute;
  top: 11px;
  left: 4px;
  content: "";
  display: block;
  width: 13.2px;
  height: 9.3px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2213.225%22%20height%3D%229.333%22%20viewBox%3D%220%200%2013.225%209.333%22%3E%20%3Cdefs%3E%20%3ClinearGradient%20id%3D%22linear-gradient%22%20x1%3D%221%22%20y1%3D%220.5%22%20x2%3D%220.076%22%20y2%3D%221%22%20gradientUnits%3D%22objectBoundingBox%22%3E%20%3Cstop%20offset%3D%220%22%20stop-color%3D%22%230c62a9%22%2F%3E%20%3Cstop%20offset%3D%220.502%22%20stop-color%3D%22%230592d8%22%2F%3E%20%3Cstop%20offset%3D%221%22%20stop-color%3D%22%2361b840%22%2F%3E%20%3C%2FlinearGradient%3E%20%3C%2Fdefs%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_7621%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%207621%22%20transform%3D%22translate(0.002%200)%22%3E%20%3Cpath%20id%3D%22%E5%90%88%E4%BD%93_5%22%20data-name%3D%22%E5%90%88%E4%BD%93%205%22%20d%3D%22M-22438.51-2253.821l-3.893-3.892%2C1.555-1.555%2C3.893%2C3.892%2C6.223-6.224%2C1.555%2C1.555-7.777%2C7.778Z%22%20transform%3D%22translate(22442.4%202261.6)%22%20fill%3D%22url(%23linear-gradient)%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
  background-size: 13px;
}
@media all and (min-width: 768px) {
  .c-form01 .mwform-checkbox-field .mwform-checkbox-field-text {
    padding-left: 45px;
  }
  .c-form01 .mwform-checkbox-field .mwform-checkbox-field-text::before {
    top: 7px;
  }
  .c-form01 .mwform-checkbox-field input:checked + .mwform-checkbox-field-text::after {
    top: 14px;
  }
}

/*  .c-form01__consent
================================================ */
.c-form01__consent {
  margin-top: 30px;
}
.c-form01__consent-box {
  padding: 17px 20px 35px 19px;
  max-height: 200px;
  overflow-y: scroll;
  border: 1px solid rgb(var(--border));
  box-sizing: border-box;
}
.c-form01__consent-txt {
  padding-top: 7px;
  margin-bottom: 22px;
}
.c-form01__consent-content + .c-form01__consent-content {
  margin-top: 24px;
}
.c-form01__consent-content-head {
  font-size: 1.7rem;
  position: relative;
  padding-left: 23px;
  margin-bottom: 8px;
  line-height: 1.8;
}
.c-form01__consent-content-head::before {
  content: "";
  display: block;
  width: 15px;
  height: 1px;
  background: linear-gradient(to left, #0c62a9 0%, #0c64ab 38.31%, #0592d8 50.2%, #61b840 100%);
  position: absolute;
  left: 0;
  top: 16px;
}
.c-form01__consent-content-ico {
  width: 9.33px;
  height: 9.33px;
  margin: -3px 0px 0 4px;
}
.c-form01__consent-content-ico svg {
  width: 9.33px;
  height: 9.33px;
}
.c-form01__consent-content-txt + .c-form01__consent-content-txt {
  margin-top: 20px;
}
.c-form01__consent-check {
  padding: 16px 27px 0 35px;
  text-align: center;
}
.c-form01__consent-check .mwform-checkbox-field .mwform-checkbox-field-text {
  padding-left: 31px;
}
@media all and (min-width: 768px) {
  .c-form01__consent {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 40px -21px 0;
  }
  .c-form01__consent-box {
    box-sizing: border-box;
    padding: 26px 14px 30px 30px;
    max-height: 250px;
  }
  .c-form01__consent-txt {
    padding-top: 14px;
    margin-bottom: 43px;
  }
  .c-form01__consent-content + .c-form01__consent-content {
    margin-top: 43px;
  }
  .c-form01__consent-content-head {
    font-size: 1.8rem;
    padding-left: 25px;
    margin-bottom: 16px;
  }
  .c-form01__consent-check {
    padding: 36px 31px 0 35px;
    display: inline-block;
  }
  .c-form01__consent-check .mwform-checkbox-field .mwform-checkbox-field-text {
    padding-left: 37px;
  }
}

/*  .c-form01-thanks
================================================ */
.c-form01-thanks {
  text-align: center;
}
.c-form01-thanks__txt {
  margin-bottom: 10px;
}

.mw_wp_form_confirm .c-form01__consent {
  display: none;
}
.mw_wp_form_confirm .c-form01__area-btn {
  margin-top: 50px;
}
.mw_wp_form_confirm .c-form01__postcode-prefix {
  padding-top: 0;
}
@media all and (min-width: 768px) {
  .mw_wp_form_confirm .c-form01__label {
    top: 48px;
  }
  .mw_wp_form_confirm .c-form01__postcode-prefix {
    padding-right: 0;
  }
}

.mw_wp_form_complete .contact-content__txt {
  margin-bottom: 50px;
}

/* .c-head01.is-pc-left
================================================ */
@media all and (min-width: 1220px) {
  .c-head01.is-pc-left {
    text-align: left;
  }
}

/* .c-head01.is-sp-left
================================================ */
@media all and (max-width: 767px) {
  .c-head01.is-sp-left {
    text-align: left;
  }
}

/* .c-head01.is-under-pc-left
================================================ */
@media all and (max-width: 1219px) {
  .c-head01.is-under-pc-left {
    text-align: left;
  }
}

/* .c-head01
================================================ */
.c-head01 {
  text-align: center;
  font-size: 4rem;
}
@media all and (min-width: 1220px) {
  .c-head01 {
    font-size: 5.2rem;
    letter-spacing: 0.02em;
  }
}

/* .c-head02
================================================ */
.c-head02 {
  position: relative;
  padding-left: 12px;
  font-size: 1.8rem;
  line-height: 1.75;
}
.c-head02::before {
  content: "";
  position: absolute;
  top: 5%;
  left: 0;
  width: 1px;
  height: 90%;
  background: linear-gradient(135deg, #61b840 0%, #4db1db 50.2%, #0c62a9 100%);
}
@media all and (min-width: 1220px) {
  .c-head02 {
    padding-left: 18px;
    font-size: 2rem;
  }
}

/* .c-ico
================================================== */
.c-ico {
  display: inline-flex;
  vertical-align: middle;
  line-height: 1;
}
.c-ico svg {
  width: 100%;
  height: 100%;
  transition: all 0.6s ease;
}

/* .c-list01
================================================ */
.c-list01 {
  margin-top: 12px;
}
.c-list01__item {
  position: relative;
  padding-left: 14px;
  line-height: 1.8;
}
.c-list01__item::before {
  content: "・";
  color: rgb(var(--gray));
  position: absolute;
  left: 0;
  top: 0;
}
.c-list01__item + .c-list01__item {
  margin-top: 5px;
}
@media all and (min-width: 768px) {
  .c-list01__item {
    padding-left: 19px;
  }
}

/* .c-pager01
================================================ */
.c-pager01 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 30px -20px -10px;
  overflow: hidden;
  text-align: center;
}
.c-pager01 li {
  margin: 0 5px 10px;
}
.c-pager01 li a, .c-pager01 li span {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  border: 1px solid rgb(var(--border));
  border-radius: 50%;
  box-sizing: border-box;
  font-size: 1.6rem;
  line-height: 1;
  text-decoration: none;
}
.c-pager01 li.pages span {
  width: auto;
  border: 0;
}
.c-pager01 li.current span {
  background: rgb(var(--gray));
  color: #fff;
}
.c-pager01 li.first, .c-pager01 li.previous, .c-pager01 li.next, .c-pager01 li.last {
  margin: 0;
}
.c-pager01 li.first a, .c-pager01 li.previous a, .c-pager01 li.next a, .c-pager01 li.last a {
  width: 36px;
  overflow: hidden;
  border: 0;
  text-indent: 500%;
  white-space: nowrap;
}
.c-pager01 li.first a, .c-pager01 li.previous a {
  background: no-repeat center/50% auto;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_41595%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%2041595%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2218%22%20height%3D%224.173%22%20viewBox%3D%220%200%2018%204.173%22%3E%20%3Crect%20id%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2_23385%22%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%2023385%22%20width%3D%2215.429%22%20height%3D%221.286%22%20transform%3D%22translate(2.571%202.887)%22%20fill%3D%22%23333%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_46151%22%20data-name%3D%22%E3%83%91%E3%82%B9%2046151%22%20d%3D%22M9.07-.86V3.313H3.67Z%22%20transform%3D%22translate(-3.67%200.86)%22%20fill%3D%22%23333%22%2F%3E%3C%2Fsvg%3E");
}
.c-pager01 li.next a, .c-pager01 li.last a {
  background: no-repeat center/50% auto;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2218%22%20height%3D%224.173%22%20viewBox%3D%220%200%2018%204.173%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_41594%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%2041594%22%20transform%3D%22translate(-1727%20-2223.683)%22%3E%20%3Crect%20id%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2_23385%22%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%2023385%22%20width%3D%2215.429%22%20height%3D%221.286%22%20transform%3D%22translate(1727%202226.57)%22%20fill%3D%22%23333%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_46151%22%20data-name%3D%22%E3%83%91%E3%82%B9%2046151%22%20d%3D%22M3.67-.86V3.313h5.4Z%22%20transform%3D%22translate(1735.93%202224.543)%22%20fill%3D%22%23333%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
}
.c-pager01 li.extend span {
  border: 0;
}
@media all and (max-width: 374px) {
  .c-pager01 li a, .c-pager01 li span {
    width: 35px;
    height: 35px;
  }
  .c-pager01 li.first a, .c-pager01 li.previous a, .c-pager01 li.next a, .c-pager01 li.last a {
    width: 32px;
  }
}
@media all and (min-width: 768px) {
  .c-pager01 {
    margin-top: 50px;
  }
  .c-pager01 li.page a {
    transition: all 0.6s ease;
  }
  .c-pager01 li.page a:hover {
    background: rgb(var(--gray));
    color: #fff;
    text-decoration: none;
  }
  .c-pager01 li.first a, .c-pager01 li.previous a, .c-pager01 li.next a, .c-pager01 li.last a {
    transition: opacity 0.6s ease;
  }
  .c-pager01 li.first a:hover, .c-pager01 li.previous a:hover, .c-pager01 li.next a:hover, .c-pager01 li.last a:hover {
    opacity: 0.7;
  }
}

/* .c-single01
================================================ */
.c-single01 {
  padding-bottom: 35px;
  border-bottom: 1px solid;
}
.c-single01-header {
  border-bottom: 1px solid;
}
.c-single01-header__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 5px;
  line-height: 1.5;
}
.c-single01-header__meta-date {
  margin-right: 5px;
  color: rgb(var(--gray));
  font-size: 1rem;
}
.c-single01-header__meta-cat {
  flex: 1;
  color: rgb(var(--gray));
}
.c-single01-header__meta-cat-span {
  display: inline-block;
  padding: 1px 10px 2px;
  border: 1px solid;
  border-radius: 10px;
  box-sizing: border-box;
  font-size: 1rem;
  text-align: center;
}
.c-single01-header__head {
  margin-bottom: 20px;
  font-size: 2rem;
  line-height: 1.75;
}
.c-single01-content {
  margin-top: 25px;
  overflow: hidden;
  zoom: 1;
}
.c-single01-content h1,
.c-single01-content h2,
.c-single01-content h3,
.c-single01-content h4,
.c-single01-content h5,
.c-single01-content h6 {
  clear: both;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  letter-spacing: 0.1em;
}
.c-single01-content h1:first-child,
.c-single01-content h2:first-child,
.c-single01-content h3:first-child,
.c-single01-content h4:first-child,
.c-single01-content h5:first-child,
.c-single01-content h6:first-child {
  margin-top: 0;
}
.c-single01-content h2 {
  position: relative;
  margin: 25px auto 15px;
  padding-bottom: 12px;
  font-size: 1.9rem;
  line-height: 1.75;
}
.c-single01-content h2::before, .c-single01-content h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgb(var(--border));
}
.c-single01-content h2::after {
  width: 100px;
  background: linear-gradient(135deg, #61b840 0%, #4db1db 50.2%, #0c62a9 100%);
}
.c-single01-content h3 {
  position: relative;
  margin: 25px auto 10px;
  padding-left: 12px;
  font-size: 1.8rem;
  line-height: 1.75;
}
.c-single01-content h3::before {
  content: "";
  position: absolute;
  top: 5%;
  left: 0;
  width: 1px;
  height: 90%;
  background: linear-gradient(135deg, #61b840 0%, #4db1db 50.2%, #0c62a9 100%);
}
.c-single01-content h4 {
  position: relative;
  margin: 25px auto 10px;
  padding-left: 25px;
  font-size: 1.7rem;
  line-height: 1.75;
}
.c-single01-content h4::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 0;
  width: 15px;
  height: 1px;
  background: linear-gradient(135deg, #61b840 0%, #4db1db 50.2%, #0c62a9 100%);
}
.c-single01-content p:first-child {
  margin-top: 0;
}
.c-single01-content p + p {
  margin-top: 15px;
}
.c-single01-content a {
  border-bottom: 1px solid;
  text-decoration: none;
  transition: all 0.6s ease;
}
.c-single01-content a:hover {
  opacity: 0.7;
}
.c-single01-content ul {
  list-style-type: none;
  clear: both;
  margin: 15px auto 10px;
  padding-left: 0;
}
.c-single01-content ul li {
  position: relative;
  padding-left: 15px;
}
.c-single01-content ul li::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 5px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgb(var(--gray));
}
.c-single01-content ol {
  list-style-type: none;
  clear: both;
  margin: 15px auto 10px;
  padding-left: 0;
  counter-reset: number 0;
}
.c-single01-content ol li {
  position: relative;
  padding-left: 24px;
  counter-increment: number 1;
}
.c-single01-content ol li:before {
  content: counter(number) ".";
  position: absolute;
  top: 0;
  left: 0;
  color: rgb(var(--gray));
  width: 30px;
  display: inline-block;
  text-align: center;
}
.c-single01-content img {
  display: block;
  margin: 25px auto 15px;
}
.c-single01-content img + p {
  margin-top: 15px;
}
@media all and (min-width: 768px) {
  .c-single01 {
    padding-bottom: 80px;
  }
  .c-single01-header__meta {
    margin-bottom: 12px;
  }
  .c-single01-header__meta-date {
    margin-right: 10px;
    padding-top: 4px;
    font-size: 1.4rem;
  }
  .c-single01-header__meta-cat-span {
    padding: 1px 10px 2px;
    font-size: 1.1rem;
  }
  .c-single01-header__head {
    margin-bottom: 25px;
    font-size: 3.2rem;
  }
  .c-single01-content {
    margin-top: 50px;
  }
  .c-single01-content h2 {
    margin: 40px auto 25px;
    padding-bottom: 18px;
    font-size: 2.4rem;
  }
  .c-single01-content h3 {
    margin: 40px auto 20px;
    padding-left: 12px;
    font-size: 2rem;
  }
  .c-single01-content h4 {
    margin: 40px auto 20px;
    padding-left: 25px;
    font-size: 1.8rem;
  }
  .c-single01-content h4::before {
    top: 15px;
    width: 16px;
  }
  .c-single01-content p:first-child {
    margin-top: 0;
  }
  .c-single01-content p + p {
    margin-top: 40px;
  }
  .c-single01-content ul {
    margin: 25px auto;
  }
  .c-single01-content ul li::before {
    top: 15px;
  }
  .c-single01-content ol {
    margin: 25px auto;
  }
  .c-single01-content ol li {
    padding-left: 30px;
  }
  .c-single01-content img {
    margin: 40px auto 20px;
  }
  .c-single01-content img + p {
    margin-top: 40px;
  }
  .c-single01-content img.alignright {
    float: right;
    margin: 0 0 40px 40px;
  }
  .c-single01-content img.alignleft {
    float: left;
    margin: 40px 40px 40px 0;
  }
  .c-single01-content img.aligncenter {
    display: block;
    margin: 40px auto;
  }
  .c-single01-content .alignleft {
    float: left;
    width: 47%;
    margin-right: 5%;
  }
  .c-single01-content .alignleft img {
    display: block;
    width: 100%;
    margin-bottom: 40px;
  }
  .c-single01-content .alignright {
    float: right;
    width: 47%;
    margin-left: 5%;
  }
  .c-single01-content .alignright img {
    display: block;
    width: 100%;
    margin-bottom: 40px;
  }
  .c-single01-content .aligncenter {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }
}

/* .c-step01
================================================ */
.c-step01 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 20px;
  margin-bottom: 9px;
}
.c-step01__item {
  text-align: center;
  color: rgb(var(--gray));
  width: 75px;
}
.c-step01__item:last-of-type .c-step01__item-num::before {
  content: none;
}
.c-step01__item.is-current .c-step01__item-num {
  background: linear-gradient(-45deg, rgba(12, 98, 169, 0.8) 0%, rgba(5, 146, 216, 0.8) 45.09%, rgba(97, 184, 64, 0.8) 100%);
  color: #fff;
  border: none;
}
.c-step01__item-num {
  width: 50px;
  height: 50px;
  color: rgb(var(--gray));
  font-size: 1.6rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  border: 1px solid #707070;
  padding-top: 1px;
  position: relative;
  margin: auto;
}
.c-step01__item-num::before {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background-color: rgb(var(--gray));
  position: absolute;
  right: -50px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media all and (max-width: 374px) {
  .c-step01 {
    padding: 0;
  }
  .c-step01__item-num::before {
    margin-right: 3px;
  }
}
@media all and (min-width: 768px) {
  .c-step01 {
    justify-content: center;
    margin-bottom: 16px;
  }
  .c-step01__item {
    margin: 0 25px;
    width: 86px;
  }
  .c-step01__item-num {
    font-size: 1.8rem;
    width: 60px;
    height: 60px;
    margin: auto auto 6px;
  }
  .c-step01__item-num::before {
    width: 50px;
    right: -60px;
  }
}

.mw_wp_form_input .c-step01 .c-step01__item:first-of-type .c-step01__item-num {
  background: linear-gradient(-45deg, rgba(12, 98, 169, 0.8) 0%, rgba(5, 146, 216, 0.8) 45.09%, rgba(97, 184, 64, 0.8) 100%);
  color: #fff;
  border: none;
}

.mw_wp_form_confirm .c-step01 .c-step01__item:nth-of-type(2) .c-step01__item-num {
  background: linear-gradient(-45deg, rgba(12, 98, 169, 0.8) 0%, rgba(5, 146, 216, 0.8) 45.09%, rgba(97, 184, 64, 0.8) 100%);
  color: #fff;
  border: none;
}

.mw_wp_form_complete .c-step01 .c-step01__item:last-of-type .c-step01__item-num {
  background: linear-gradient(-45deg, rgba(12, 98, 169, 0.8) 0%, rgba(5, 146, 216, 0.8) 45.09%, rgba(97, 184, 64, 0.8) 100%);
  color: #fff;
  border: none;
}

/* .c-table01
================================================ */
.c-table01 th, .c-table01 td {
  vertical-align: top;
}
.c-table01 th {
  padding-top: 15px;
  padding-bottom: 4px;
  color: rgb(var(--gray));
  font-weight: normal;
  text-align: left;
}
.c-table01 td {
  padding-bottom: 15px;
  border-bottom: 1px solid rgb(var(--border));
}
@media all and (max-width: 1219px) {
  .c-table01 table, .c-table01 thead, .c-table01 tbody, .c-table01 tr, .c-table01 th, .c-table01 td {
    display: block;
  }
}
@media all and (min-width: 1220px) {
  .c-table01 th, .c-table01 td {
    padding: 21px 0;
  }
  .c-table01 th {
    width: 120px;
    padding-right: 10px;
    border-bottom: 1px solid rgb(var(--border));
  }
}

/* .l-breadcrumb
================================================ */
.l-breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  padding-top: 12px;
  padding-bottom: 12px;
}
.l-breadcrumb-list__item {
  display: inline-block;
  vertical-align: top;
  font-size: 1.2rem;
}
.l-breadcrumb-list__item + .l-breadcrumb-list__item {
  margin-left: 5px;
}
.l-breadcrumb-list__item + .l-breadcrumb-list__item:before {
  content: "―";
  margin-right: 5px;
  color: rgb(var(--border));
}
.l-breadcrumb-list__item span.l-breadcrumb-list__txt {
  color: rgb(var(--gray));
}
@media all and (max-width: 767px) {
  .l-breadcrumb-list {
    white-space: nowrap;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    overflow: auto;
  }
  .l-breadcrumb-list::-webkit-scrollbar {
    display: none;
  }
}
@media all and (min-width: 768px) {
  .l-breadcrumb-list {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .l-breadcrumb-list__item {
    font-size: 1.4rem;
  }
}

/* .l-footer
================================================ */
.l-footer {
  padding: 20px 0;
  text-align: center;
}
.l-footer__info-logo-link {
  width: 50px;
  margin: 0 auto;
}
.l-footer__info-company {
  margin-bottom: 10px;
  font-size: 1.6rem;
}
.l-footer__info-youtube {
  margin-bottom: 35px;
  line-height: 1.75;
}
.l-footer__info-youtube-link {
  border-bottom: 1px solid;
}
.l-footer__info-youtube-ico {
  width: 28.39px;
  height: 20px;
  margin-right: 6px;
}
.l-footer__info-youtube-external {
  width: 9.33px;
  height: 9.33px;
  margin-left: 5px;
}
.l-footer__cr {
  color: rgb(var(--gray));
  font-size: 1.2rem;
}
@media all and (min-width: 1220px) {
  .l-footer {
    padding: 40px 0;
  }
  .l-footer__info-logo {
    margin-bottom: 10px;
  }
  .l-footer__info-logo-link {
    width: 60px;
  }
  .l-footer__info-company {
    margin-bottom: 15px;
    font-size: 1.8rem;
  }
  .l-footer__info-youtube {
    margin-bottom: 45px;
  }
  .l-footer__info-youtube-link {
    border-bottom: none;
    position: relative;
  }
  .l-footer__info-youtube-link::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: rgb(var(--black));
    transition: width 0.6s ease;
  }
  .l-footer__info-youtube-link:hover::before {
    left: 0;
    width: 100%;
  }
  .l-footer__info-youtube-ico {
    margin-right: 8px;
    margin-bottom: 4px;
  }
  .l-footer__info-youtube-external {
    width: 10px;
    height: 10px;
    margin-bottom: 4px;
    margin-left: 5px;
  }
}

/* .l-footer-page-top
================================================ */
/* .l-header
================================================ */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  width: 100%;
  min-width: 320px;
}
@media all and (min-width: 1220px) {
  .l-header {
    opacity: 1;
    visibility: visible;
    min-width: auto;
    transition: 0.3s opacity, 0.3s visibility;
  }
  .l-header.is-hide {
    opacity: 0;
    visibility: hidden;
  }
  .l-header.is-scroll .l-header-info__logo {
    height: 80px;
    padding: 15px 55px;
  }
  .l-header.is-scroll .l-header-info__logo-link {
    width: 42.46px;
  }
}

/* .l-header-info
================================================== */
.l-header-info {
  position: relative;
  z-index: 3;
  height: 60px;
  background: #fff;
}
.l-header-info__logo {
  padding: 10px 20px;
}
.l-header-info__logo-link {
  width: 33.89px;
}
@media all and (min-width: 1220px) {
  .l-header-info {
    height: 80px;
  }
  .l-header-info__logo {
    width: 150px;
    height: 150px;
    padding: 28px 40px;
    box-sizing: border-box;
    background: #fff;
    transition: all 0.6s ease;
  }
  .l-header-info__logo-link {
    width: 76.48px;
    transition: width 0.6s ease;
  }
}

/* .l-nav-btn
================================================== */
.l-nav-btn {
  position: absolute;
  top: 4px;
  right: 10px;
  width: 50px;
  height: 50px;
  border: none;
  cursor: pointer;
}
.l-nav-btn__line {
  position: absolute;
  left: 10px;
  width: 30px;
  height: 1px;
  background: linear-gradient(135deg, #61b840 0%, #4db1db 50.2%, #0c62a9 100%);
  transition: all 0.6s 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;
  width: 22px;
}
.l-nav-btn.is-open .l-nav-btn__line {
  left: 12px;
}
.l-nav-btn.is-open .l-nav-btn__line:nth-child(1) {
  top: 18px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  width: 24px;
}
.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;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 24px;
}
.l-nav-btn__txt {
  position: absolute;
  bottom: 3px;
  left: 0;
  width: 100%;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-align: center;
}
@media all and (min-width: 1220px) {
  .l-nav-btn {
    top: 12px;
    right: 56px;
    height: 55px;
  }
  .l-nav-btn__line {
    left: 10px;
    width: 37px;
    height: 1px;
  }
  .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;
    width: 26px;
  }
  .l-nav-btn.is-open .l-nav-btn__line {
    left: 12px;
  }
  .l-nav-btn.is-open .l-nav-btn__line:nth-child(1) {
    top: 18px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    width: 24px;
  }
  .l-nav-btn.is-open .l-nav-btn__line:nth-child(3) {
    top: 18px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 24px;
  }
  .l-nav-btn__txt {
    bottom: 0;
    left: 2px;
    font-size: 1.3rem;
  }
}

/* .l-nav
================================================ */
.l-nav {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 60px;
  left: 0;
  z-index: 2;
  width: 100%;
  min-width: 320px;
  height: calc(100vh - 60px);
  padding: 60px 0;
  overflow: auto;
  box-sizing: border-box;
  color: #fff;
  text-align: center;
  -webkit-overflow-scrolling: touch;
  background: linear-gradient(135deg, #8dd486 0%, #73bfb3 50.2%, #5c9bd0 100%);
  transition: all 0.6s ease;
}
.l-nav::-webkit-scrollbar {
  display: none;
}
.l-nav.is-open {
  opacity: 1;
  visibility: visible;
}
.l-nav__company {
  margin-bottom: 15px;
  font-size: 1.6rem;
  line-height: 1.75;
}
.l-nav__address {
  margin-bottom: 15px;
  font-size: 1.2rem;
  line-height: 1.75;
}
.l-nav__youtube {
  line-height: 1.75;
}
.l-nav__youtube-link {
  border-bottom: 1px solid;
}
.l-nav__youtube-ico {
  width: 22.71px;
  height: 16px;
  margin-right: 6px;
}
.l-nav__youtube-external {
  width: 9.33px;
  height: 9.33px;
  margin-left: 5px;
  margin-bottom: 2px;
}
@media all and (max-width: 374px) {
  .l-nav {
    padding: 40px 0;
  }
  .l-nav__company {
    margin-bottom: 10px;
  }
  .l-nav__address {
    margin-bottom: 10px;
  }
}
@media all and (min-width: 1220px) {
  .l-nav {
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    top: 80px;
    height: calc(100vh - 80px);
    border: 60px solid #fff;
    border-top: none;
    text-align: left;
  }
  .l-nav__company {
    margin-bottom: 8px;
  }
  .l-nav__address {
    margin-bottom: 8px;
  }
  .l-nav__youtube-link {
    border-bottom: none;
    position: relative;
  }
  .l-nav__youtube-link::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #fff;
    transition: width 0.6s ease;
  }
  .l-nav__youtube-link:hover::before {
    left: 0;
    width: 100%;
  }
  .l-nav__youtube-ico {
    margin-right: 6px;
  }
  .l-nav__youtube-external {
    margin-left: 5px;
  }
}

/* .l-nav-list
================================================== */
.l-nav-list {
  margin-bottom: 80px;
}
.l-nav-list__item + .l-nav-list__item {
  margin-top: 30px;
}
.l-nav-list__item-link {
  font-size: 2.8rem;
}
@media all and (max-width: 374px) {
  .l-nav-list {
    margin-bottom: 50px;
  }
  .l-nav-list__item + .l-nav-list__item {
    margin-top: 20px;
  }
}
@media all and (min-width: 1220px) {
  .l-nav-list {
    margin-bottom: 50px;
  }
  .l-nav-list__wrap {
    margin-left: 120px;
  }
  .l-nav-list__item + .l-nav-list__item {
    margin-top: 30px;
  }
  .l-nav-list__item-link {
    font-size: 3rem;
    position: relative;
  }
  .l-nav-list__item-link::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #fff;
    transition: width 0.6s ease;
  }
  .l-nav-list__item-link:hover::before {
    left: 0;
    width: 100%;
  }
}

/* .l-nav-img
================================================== */
@media all and (min-width: 1220px) {
  .l-nav-img {
    position: relative;
    width: 550px;
    height: 600px;
    pointer-events: none;
    transition: all 0.6s ease;
  }
  .l-nav-img__item {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.6s ease;
  }
  .l-nav-img__item.is-active, .l-nav-img__item.is-default {
    opacity: 1;
    visibility: visible;
  }
}
@media (min-width: 768px) and (max-width: 1366px) {
  .l-nav-img {
    width: 440px;
    height: 480px;
  }
}

/* .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;
  height: calc(var(--vh, 1vh) * 100 - 60px);
  overflow: hidden;
}
.l-main-img__slider {
  opacity: 0;
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-animation: kf-show 0.6s ease-in-out forwards;
  animation: kf-show 0.6s ease-in-out forwards;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.l-main-img__slider-img {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  transition: none;
}
.l-main-img__slider-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.l-main-img__slider-img.is-prev {
  z-index: 1 !important;
}
.l-main-img__slider-img.is-current {
  opacity: 1;
  z-index: 2;
  transition: opacity 1s ease-in-out;
}
.l-main-img__inner {
  position: relative;
}
.l-main-img__copy {
  position: absolute;
  bottom: 75px;
  left: 20px;
  z-index: 3;
  color: #fff;
  line-height: 1.75;
  transition: all 0.6s ease;
}
.l-main-img__copy-ja {
  opacity: 0;
  margin-bottom: 25px;
  -webkit-animation: kf-show 0.6s ease-in-out forwards;
  animation: kf-show 0.6s ease-in-out forwards;
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  width: 50vw;
  width: calc(var(--vw, 1vw) * 50);
  transition: all 0.6s ease;
}
.l-main-img__copy-en {
  opacity: 0;
  font-size: 3.75vw;
  letter-spacing: 0.2em;
  -webkit-animation: kf-show 0.6s ease-in-out forwards;
  animation: kf-show 0.6s ease-in-out forwards;
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
  transition: all 0.6s ease;
}
@media all and (max-width: 374px) {
  .l-main-img__copy-ja {
    width: 190px;
  }
  .l-main-img__copy-en {
    font-size: 1.4rem;
  }
}
@media all and (min-width: 1220px) {
  .l-main-img {
    height: calc(var(--vh, 1vh) * 100 - 80px);
    margin: 0 60px;
  }
  .l-main-img__inner {
    width: 100%;
    max-width: 1640px;
    margin: 0 auto;
  }
  .l-main-img__copy {
    bottom: 170px;
    left: 60px;
  }
  .l-main-img__copy-ja {
    margin-bottom: 40px;
    width: 554px;
  }
  .l-main-img__copy-en {
    font-size: 2.6rem;
    letter-spacing: 0.2em;
  }
}
@media (min-width: 768px) and (max-width: 1280px) {
  .l-main-img__copy {
    bottom: 120px;
    left: 60px;
  }
  .l-main-img__copy-ja {
    margin-bottom: 35px;
    width: 504px;
  }
  .l-main-img__copy-en {
    font-size: 2.4rem;
  }
}

/* .l-sub-img
================================================ */
.l-sub-img {
  background: no-repeat center/cover #ccc;
}
.l-sub-img__inner {
  height: 250px;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.l-sub-img__head-en {
  font-size: 4.2rem;
  margin-bottom: 8px;
}
.l-sub-img__head-ja {
  font-size: 1.6rem;
  line-height: 1.75;
}
@media all and (min-width: 768px) {
  .l-sub-img__inner {
    height: 350px;
  }
  .l-sub-img__head-en {
    font-size: 5.6rem;
    margin-bottom: 8px;
  }
  .l-sub-img__head-ja {
    font-size: 1.8rem;
  }
}
@media all and (min-width: 1220px) {
  .l-sub-img {
    margin: 0 60px;
  }
}

@media all and (max-width: 767px) {
  #news .l-sub-img {
    background-image: url(../img/news/bg_mv01_sp.jpg);
  }

  #contact .l-sub-img {
    background-image: url(../img/contact/bg_mv01_sp.jpg);
  }
}
@media all and (min-width: 768px) {
  #news .l-sub-img {
    background-image: url(../img/news/bg_mv01_pc.jpg);
  }

  #contact .l-sub-img {
    background-image: url(../img/contact/bg_mv01_pc.jpg);
  }
}
/* .l-sidebar
================================================== */
.l-sidebar {
  margin-top: 60px;
  padding: 0 20px 60px;
}
.l-sidebar-sec + .l-sidebar-sec {
  margin-top: 40px;
}
.l-sidebar-sec__head {
  position: relative;
  padding-bottom: 15px;
  font-size: 2.4rem;
}
.l-sidebar-sec__head::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(135deg, #61b840 0%, #4db1db 50.2%, #0c62a9 100%);
}
.l-sidebar-sec__list-item {
  border-bottom: 1px solid rgb(var(--border));
}
.l-sidebar-sec__list-link {
  display: block;
  padding: 17px 0;
  line-height: 1.75;
}
@media all and (min-width: 768px) {
  .l-sidebar {
    padding: 0 20px 150px;
  }
  .l-sidebar-sec + .l-sidebar-sec {
    margin-top: 50px;
  }
  .l-sidebar-sec__list-link:hover .l-sidebar-sec__list-link-span {
    background-size: 100% 1px;
  }
  .l-sidebar-sec__list-link-span {
    background: linear-gradient(#333, #333) 0 100%/0 1px no-repeat;
    transition: background-size 0.6s ease;
  }
}
@media all and (min-width: 1220px) {
  .l-sidebar {
    padding: 0 0 150px;
  }
}

.js-c-anime-elem[data-anime=fadein-up] {
  opacity: 0;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  transition: all 0.9s ease;
}
.js-c-anime-elem[data-anime=fadein-up].is-animated {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

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

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

@media all and (min-width: 1220px) {
  .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-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;
}

/* .contact-content
================================================ */
.contact-content__inner {
  padding-top: 29px;
  padding-bottom: 65px;
}
@media all and (min-width: 768px) {
  .contact-content__inner {
    padding-top: 58px;
    padding-bottom: 75px;
  }
  .contact-content__txt {
    text-align: center;
  }
}

#error .l-sub-img__inner {
  color: rgb(var(--black));
}

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

/* .home-purpose
================================================ */
.home-purpose {
  position: relative;
}
.home-purpose.is-animated .home-purpose__head {
  -webkit-animation: kf-show 0.6s ease-in-out forwards;
  animation: kf-show 0.6s ease-in-out forwards;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.home-purpose.is-animated .home-purpose__bg01,
.home-purpose.is-animated .home-purpose__bg02 {
  -webkit-animation: kf-show 0.6s ease-in-out forwards;
  animation: kf-show 0.6s ease-in-out forwards;
}
.home-purpose__inner {
  position: relative;
  z-index: 1;
  padding-top: 50px;
  padding-bottom: 115px;
}
.home-purpose__head {
  opacity: 0;
  margin-bottom: 15px;
  transition: opacity 0.6s ease;
}
.home-purpose__head-span {
  background: linear-gradient(135deg, #61b840 0%, #4db1db 50.2%, #0c62a9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.home-purpose__txt + .home-purpose__txt {
  margin-top: 30px;
}
.home-purpose__bg01 {
  opacity: 0;
  position: absolute;
  top: 20px;
  right: 0;
  width: 117px;
  transition: all 0.6s ease;
}
.home-purpose__bg02 {
  opacity: 0;
  position: absolute;
  bottom: 60px;
  left: 0;
  width: 188px;
  transition: all 0.6s ease;
}
@media all and (max-width: 767px) {
  .home-purpose.is-animated .home-purpose__area-txt {
    -webkit-animation: kf-show 0.6s ease-in-out forwards;
    animation: kf-show 0.6s ease-in-out forwards;
  }
  .home-purpose__area-txt {
    opacity: 0;
    transition: opacity 0.6s ease;
  }
}
@media all and (min-width: 768px) {
  .home-purpose.is-animated .home-purpose__txt-span {
    -webkit-animation: kf-show 0.6s ease-in-out forwards;
    animation: kf-show 0.6s ease-in-out forwards;
  }
  .home-purpose__inner {
    padding-top: 70px;
    padding-bottom: 100px;
  }
  .home-purpose__head {
    margin-bottom: 60px;
  }
  .home-purpose__area-txt {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
  }
  .home-purpose__area-txt .home-purpose__txt-span[data-show-delay="0"] {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
  }
  .home-purpose__area-txt .home-purpose__txt-span[data-show-delay="1"] {
    -webkit-animation-delay: 0.35s;
    animation-delay: 0.35s;
  }
  .home-purpose__area-txt .home-purpose__txt-span[data-show-delay="2"] {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
  }
  .home-purpose__area-txt .home-purpose__txt-span[data-show-delay="3"] {
    -webkit-animation-delay: 0.45s;
    animation-delay: 0.45s;
  }
  .home-purpose__area-txt .home-purpose__txt-span[data-show-delay="4"] {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
  }
  .home-purpose__area-txt .home-purpose__txt-span[data-show-delay="5"] {
    -webkit-animation-delay: 0.55s;
    animation-delay: 0.55s;
  }
  .home-purpose__area-txt .home-purpose__txt-span[data-show-delay="6"] {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
  }
  .home-purpose__area-txt .home-purpose__txt-span[data-show-delay="7"] {
    -webkit-animation-delay: 0.65s;
    animation-delay: 0.65s;
  }
  .home-purpose__area-txt .home-purpose__txt-span[data-show-delay="8"] {
    -webkit-animation-delay: 0.7s;
    animation-delay: 0.7s;
  }
  .home-purpose__area-txt .home-purpose__txt-span[data-show-delay="9"] {
    -webkit-animation-delay: 0.75s;
    animation-delay: 0.75s;
  }
  .home-purpose__area-txt .home-purpose__txt-span[data-show-delay="10"] {
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
  }
  .home-purpose__area-txt .home-purpose__txt-span[data-show-delay="11"] {
    -webkit-animation-delay: 0.85s;
    animation-delay: 0.85s;
  }
  .home-purpose__area-txt .home-purpose__txt-span[data-show-delay="12"] {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
  }
  .home-purpose__area-txt .home-purpose__txt-span[data-show-delay="13"] {
    -webkit-animation-delay: 0.95s;
    animation-delay: 0.95s;
  }
  .home-purpose__area-txt .home-purpose__txt-span[data-show-delay="14"] {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
  }
  .home-purpose__area-txt .home-purpose__txt-span[data-show-delay="15"] {
    -webkit-animation-delay: 1.05s;
    animation-delay: 1.05s;
  }
  .home-purpose__area-txt .home-purpose__txt-span[data-show-delay="16"] {
    -webkit-animation-delay: 1.1s;
    animation-delay: 1.1s;
  }
  .home-purpose__area-txt .home-purpose__txt-span[data-show-delay="17"] {
    -webkit-animation-delay: 1.15s;
    animation-delay: 1.15s;
  }
  .home-purpose__area-txt .home-purpose__txt-span[data-show-delay="18"] {
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
  }
  .home-purpose__area-txt .home-purpose__txt-span[data-show-delay="19"] {
    -webkit-animation-delay: 1.25s;
    animation-delay: 1.25s;
  }
  .home-purpose__area-txt .home-purpose__txt-span[data-show-delay="20"] {
    -webkit-animation-delay: 1.3s;
    animation-delay: 1.3s;
  }
  .home-purpose__area-txt .home-purpose__txt-span[data-show-delay="21"] {
    -webkit-animation-delay: 1.35s;
    animation-delay: 1.35s;
  }
  .home-purpose__area-txt .home-purpose__txt-span[data-show-delay="22"] {
    -webkit-animation-delay: 1.4s;
    animation-delay: 1.4s;
  }
  .home-purpose__area-txt .home-purpose__txt-span[data-show-delay="23"] {
    -webkit-animation-delay: 1.45s;
    animation-delay: 1.45s;
  }
  .home-purpose__area-txt .home-purpose__txt-span[data-show-delay="24"] {
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
  }
  .home-purpose__area-txt .home-purpose__txt-span[data-show-delay="25"] {
    -webkit-animation-delay: 1.55s;
    animation-delay: 1.55s;
  }
  .home-purpose__area-txt .home-purpose__txt-span[data-show-delay="26"] {
    -webkit-animation-delay: 1.6s;
    animation-delay: 1.6s;
  }
  .home-purpose__area-txt .home-purpose__txt-span[data-show-delay="27"] {
    -webkit-animation-delay: 1.65s;
    animation-delay: 1.65s;
  }
  .home-purpose__area-txt .home-purpose__txt-span[data-show-delay="28"] {
    -webkit-animation-delay: 1.7s;
    animation-delay: 1.7s;
  }
  .home-purpose__area-txt .home-purpose__txt-span[data-show-delay="29"] {
    -webkit-animation-delay: 1.75s;
    animation-delay: 1.75s;
  }
  .home-purpose__area-txt .home-purpose__txt-span[data-show-delay="30"] {
    -webkit-animation-delay: 1.8s;
    animation-delay: 1.8s;
  }
  .home-purpose__txt {
    transition: all 0.6s ease;
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
  }
  .home-purpose__txt + .home-purpose__txt {
    margin-top: 0;
    margin-right: 3.5vw;
  }
  .home-purpose__txt-span {
    display: block;
    opacity: 0;
    max-width: 20px;
    width: 1.75vw;
    padding: 0 1.2vw;
    transition: opacity 0.6s ease;
  }
  .home-purpose__bg01 {
    top: 120px;
    right: 0;
    width: 150px;
  }
  .home-purpose__bg02 {
    bottom: 150px;
    left: 0;
    width: 360px;
  }
}
@media all and (min-width: 1220px) {
  .home-purpose__inner {
    padding-top: 140px;
    padding-bottom: 200px;
  }
  .home-purpose__txt + .home-purpose__txt {
    margin-right: 65px;
  }
  .home-purpose__txt-span {
    width: 20px;
    padding: 0 20px;
  }
  .home-purpose__bg01 {
    right: 60px;
    width: 251px;
  }
  .home-purpose__bg02 {
    width: 600px;
  }
}
@media (min-width: 1200px) and (max-width: 1600px) {
  .home-purpose__txt + .home-purpose__txt {
    margin-right: 45px;
  }
  .home-purpose__txt-span {
    width: 20px;
    padding: 0 15px;
  }
  .home-purpose__bg01 {
    right: 0;
    width: 200px;
  }
  .home-purpose__bg02 {
    width: 460px;
  }
}

/* .home-news
================================================ */
.home-news {
  position: relative;
}
.home-news::before {
  content: "";
  opacity: 0.2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #87D291 0%, #6CBAC0 50.2%, #6CBAC0 100%);
}
.home-news__inner {
  position: relative;
  padding-top: 50px;
  padding-bottom: 50px;
}
.home-news-set {
  margin-bottom: 30px;
}
@media all and (min-width: 1220px) {
  .home-news::before {
    right: 0;
    left: auto;
    width: 89.5%;
    transition: all 0.6s ease;
  }
  .home-news__inner {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .home-news__head {
    margin-bottom: 30px;
  }
  .home-news-set {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 15px;
  }
  .home-news-set__archive {
    width: 510px;
  }
  .home-news__btn {
    width: 260px;
    margin: 0 0 0 auto;
  }
}
@media (min-width: 768px) and (max-width: 1600px) {
  .home-news::before {
    width: 100%;
  }
}

/* .home-features
================================================ */
.home-features {
  position: relative;
}
.home-features::before {
  content: "";
  opacity: 0.2;
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  height: calc(100% + 600px);
  background: linear-gradient(#fff 0%, #61b840 30%, #8dd2a2 60%, #67b9ce 80%, #fff 100%);
}
.home-features__inner {
  position: relative;
  padding: 60px 20px 30px;
}
.home-features__head {
  margin-bottom: 15px;
  padding: 0 20px;
}
.home-features__txt {
  margin-bottom: 30px;
  padding: 0 20px;
}
.home-features-list {
  padding: 0 20px;
  background: #fff;
}
.home-features-list + .home-features-list {
  padding-bottom: 30px;
}
.home-features-list__item-area-txt {
  -webkit-transform: translateY(-30px);
  transform: translateY(-30px);
  margin-right: 15px;
  margin-bottom: -30px;
  padding: 15px 15px 25px 30px;
  background: #fff;
}
.home-features-list__item-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  margin-bottom: 8px;
  color: rgb(var(--gray));
  font-size: 2.2rem;
}
.home-features-list__item-head::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -30px;
  width: 20px;
  height: 1px;
  background: linear-gradient(135deg, #61b840 0%, #4db1db 50.2%, #0c62a9 100%);
}
.home-features-list__item-head-span {
  margin-left: 10px;
  color: rgb(var(--black));
  font-size: 1.4rem;
}
@media all and (min-width: 768px) {
  .home-features__head {
    padding: 0;
  }
  .home-features__txt {
    padding: 0;
  }
  .home-features-list {
    display: -ms-grid;
    display: grid;
    grid-template: 1fr/repeat(auto-fit, minmax(100px, 1fr));
    grid-column-gap: 20px;
    padding: 0 0 50px;
    background: none;
  }
}
@media all and (min-width: 1220px) {
  .home-features::before {
    height: calc(100% + 1000px);
    background: linear-gradient(#fff 0%, #61b840 30%, #8dd2a2 60%, #67b9ce 80%, #fff 100%);
  }
  .home-features::after {
    content: "";
    position: absolute;
    top: 0;
    left: 60px;
    width: calc(100% - 120px);
    height: 100%;
    background: #fff;
  }
  .home-features__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1640px;
    margin: 0 auto;
    padding: 150px 60px 30px;
    box-sizing: border-box;
  }
  .home-features__area-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    margin-bottom: 55px;
  }
  .home-features__head {
    margin-right: 45px;
    margin-bottom: 0;
    padding: 0;
  }
  .home-features__txt {
    margin-bottom: 5px;
    padding: 0;
  }
  .home-features-list {
    display: -ms-grid;
    display: grid;
    grid-column-gap: 30px;
    padding: 0 0 50px;
    background: none;
  }
  .home-features-list + .home-features-list {
    padding-bottom: 70px;
  }
  .home-features-list.is-col2 {
    grid-template: 1fr/repeat(auto-fit, minmax(300px, 1fr));
  }
  .home-features-list.is-col3 {
    grid-template: 1fr/repeat(auto-fit, minmax(100px, 1fr));
  }
  .home-features-list__item-area-txt {
    -webkit-transform: translateY(-60px);
    transform: translateY(-60px);
    margin-right: 35px;
    margin-bottom: -60px;
    margin-left: -1px;
    padding: 40px 25px 25px 70px;
  }
  .home-features-list__item-head {
    margin-bottom: 15px;
    font-size: 3.2rem;
  }
  .home-features-list__item-head::before {
    top: 50%;
    left: -70px;
    width: 50px;
  }
  .home-features-list__item-head-span {
    margin-left: 15px;
    font-size: 1.6rem;
  }
  .home-features-list__item-txt {
    font-size: 1.4rem;
  }
}
@media (min-width: 1200px) and (max-width: 1780px) {
  .home-features__inner {
    padding-right: 80px;
    padding-left: 80px;
  }
  .home-features::after {
    left: 40px;
    width: calc(100% - 80px);
  }
}
@media (max-width: 1781px) {
  .home-features-list__item-txt br {
    display: none;
  }
}
@media (min-width: 1781px) {
  .home-features-list__item-area-txt {
    padding: 40px 0 25px 70px;
  }
}

/* .home-projects
================================================ */
.home-projects__inner {
  position: relative;
  z-index: 1;
  padding: 30px 20px;
}
.home-projects__head {
  margin-bottom: 15px;
}
.home-projects__txt {
  margin-bottom: 30px;
}
.home-projects-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 1fr 5px 1fr 5px 1fr 5px 1fr 5px 1fr 5px 1fr 5px 1fr 5px 1fr 5px 1fr 5px 1fr;
  grid-template-rows: repeat(10, 1fr);
  -ms-grid-columns: 1fr 5px 1fr 5px 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-row-gap: 5px;
  grid-column-gap: 5px;
  gap: 5px;
  min-height: 200px;
}
.home-projects-list > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.home-projects-list > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.home-projects-list > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}
.home-projects-list > *:nth-child(4) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
.home-projects-list > *:nth-child(5) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}
.home-projects-list > *:nth-child(6) {
  -ms-grid-row: 3;
  -ms-grid-column: 5;
}
.home-projects-list > *:nth-child(7) {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
}
.home-projects-list > *:nth-child(8) {
  -ms-grid-row: 5;
  -ms-grid-column: 3;
}
.home-projects-list > *:nth-child(9) {
  -ms-grid-row: 5;
  -ms-grid-column: 5;
}
.home-projects-list > *:nth-child(10) {
  -ms-grid-row: 7;
  -ms-grid-column: 1;
}
.home-projects-list > *:nth-child(11) {
  -ms-grid-row: 7;
  -ms-grid-column: 3;
}
.home-projects-list > *:nth-child(12) {
  -ms-grid-row: 7;
  -ms-grid-column: 5;
}
.home-projects-list > *:nth-child(13) {
  -ms-grid-row: 9;
  -ms-grid-column: 1;
}
.home-projects-list > *:nth-child(14) {
  -ms-grid-row: 9;
  -ms-grid-column: 3;
}
.home-projects-list > *:nth-child(15) {
  -ms-grid-row: 9;
  -ms-grid-column: 5;
}
.home-projects-list > *:nth-child(16) {
  -ms-grid-row: 11;
  -ms-grid-column: 1;
}
.home-projects-list > *:nth-child(17) {
  -ms-grid-row: 11;
  -ms-grid-column: 3;
}
.home-projects-list > *:nth-child(18) {
  -ms-grid-row: 11;
  -ms-grid-column: 5;
}
.home-projects-list > *:nth-child(19) {
  -ms-grid-row: 13;
  -ms-grid-column: 1;
}
.home-projects-list > *:nth-child(20) {
  -ms-grid-row: 13;
  -ms-grid-column: 3;
}
.home-projects-list > *:nth-child(21) {
  -ms-grid-row: 13;
  -ms-grid-column: 5;
}
.home-projects-list > *:nth-child(22) {
  -ms-grid-row: 15;
  -ms-grid-column: 1;
}
.home-projects-list > *:nth-child(23) {
  -ms-grid-row: 15;
  -ms-grid-column: 3;
}
.home-projects-list > *:nth-child(24) {
  -ms-grid-row: 15;
  -ms-grid-column: 5;
}
.home-projects-list > *:nth-child(25) {
  -ms-grid-row: 17;
  -ms-grid-column: 1;
}
.home-projects-list > *:nth-child(26) {
  -ms-grid-row: 17;
  -ms-grid-column: 3;
}
.home-projects-list > *:nth-child(27) {
  -ms-grid-row: 17;
  -ms-grid-column: 5;
}
.home-projects-list > *:nth-child(28) {
  -ms-grid-row: 19;
  -ms-grid-column: 1;
}
.home-projects-list > *:nth-child(29) {
  -ms-grid-row: 19;
  -ms-grid-column: 3;
}
.home-projects-list > *:nth-child(30) {
  -ms-grid-row: 19;
  -ms-grid-column: 5;
}
.home-projects-list__item {
  position: relative;
}
.home-projects-list__item-video {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
}
.home-projects-list__item-plus {
  position: absolute;
  right: 5px;
  bottom: 5px;
  width: 25px;
  height: 25px;
}
.home-projects-list__item-img {
  height: 100%;
}
.home-projects-list__item-img img {
  width: 100%;
  max-width: none;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.home-projects-list__item:nth-of-type(1) {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  grid-row: 1/span 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1/span 3;
}
.home-projects-list__item:nth-of-type(2) {
  -ms-grid-row: 4;
  -ms-grid-row-span: 2;
  grid-row: 4/span 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/span 2;
}
.home-projects-list__item:nth-of-type(3) {
  -ms-grid-row: 4;
  -ms-grid-row-span: 2;
  grid-row: 4/span 2;
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
  grid-column: 3/span 1;
}
.home-projects-list__item:nth-of-type(4) {
  -ms-grid-row: 6;
  -ms-grid-row-span: 1;
  grid-row: 6/span 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/span 1;
}
.home-projects-list__item:nth-of-type(5) {
  -ms-grid-row: 7;
  -ms-grid-row-span: 2;
  grid-row: 7/span 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/span 1;
}
.home-projects-list__item:nth-of-type(6) {
  -ms-grid-row: 6;
  -ms-grid-row-span: 2;
  grid-row: 6/span 2;
  -ms-grid-column: 2;
  -ms-grid-column-span: 2;
  grid-column: 2/span 2;
}
.home-projects-list__item:nth-of-type(7) {
  -ms-grid-row: 8;
  -ms-grid-row-span: 1;
  grid-row: 8/span 1;
  -ms-grid-column: 2;
  -ms-grid-column-span: 2;
  grid-column: 2/span 2;
}
.home-projects-list__item:nth-of-type(8) {
  -ms-grid-row: 9;
  -ms-grid-row-span: 2;
  grid-row: 9/span 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/span 2;
}
.home-projects-list__item:nth-of-type(9) {
  -ms-grid-row: 9;
  -ms-grid-row-span: 2;
  grid-row: 9/span 2;
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
  grid-column: 3/span 1;
}
.home-projects-modal__overlay {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  width: 100%;
  height: 100vh;
  background: rgba(51, 51, 51, 0.7);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.home-projects-modal__overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.home-projects-modal__contents {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2001;
  width: 100%;
  height: 100vh;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.home-projects-modal__contents.is-open {
  opacity: 1;
  visibility: visible;
}
.home-projects-modal__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}
.home-projects-modal-box {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: calc(100% - 80px);
  max-width: 600px;
  padding: 5px;
  box-sizing: border-box;
  background: #fff;
}
.home-projects-modal-box__inner {
  max-height: 90vh;
  overflow-y: auto;
}
.home-projects-modal-box__img {
  margin-bottom: 15px;
}
.home-projects-modal-box__youtube {
  display: flex;
  margin-bottom: 15px;
}
.home-projects-modal-box__youtube::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  padding-top: 56.5%;
}
.home-projects-modal-box__youtube-iframe {
  width: 100%;
}
.home-projects-modal-box__area-txt {
  padding: 0 15px;
}
.home-projects-modal-box__head {
  margin-bottom: 10px;
}
.home-projects-modal-box__txt {
  margin-bottom: 15px;
}
.home-projects-modal-box__txt-link {
  border-bottom: 1px solid;
}
.home-projects-modal-box__txt-link-ico {
  width: 9.33px;
  height: 9.33px;
  margin-bottom: 2px;
  margin-left: 5px;
}
.home-projects-modal-box__close {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: 215px;
  min-height: 50px;
  margin: 0 auto 20px;
  padding: 10px;
  border-radius: 25px;
  box-sizing: border-box;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.75;
  text-align: center;
  background: linear-gradient(135deg, #7fc66a 0%, #4fb2b7 50.2%, #3999d1 100%);
}
.home-projects-modal-box__prev, .home-projects-modal-box__next {
  position: absolute;
  top: calc(50% - 12px);
  width: 25px;
  height: 25px;
  border: 0;
}
.home-projects-modal-box__prev-ico, .home-projects-modal-box__next-ico {
  display: block;
  width: 25px;
  height: 25px;
  color: #fff;
}
.home-projects-modal-box__prev {
  left: -35px;
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.home-projects-modal-box__next {
  right: -35px;
}
@media all and (max-width: 374px) {
  .home-projects-modal-box__close {
    max-width: 190px;
  }
}
@media all and (min-width: 768px) {
  .home-projects__inner {
    width: 100%;
    max-width: 1640px;
    margin: 0 auto;
    padding: 30px 60px 80px;
    box-sizing: border-box;
  }
  .home-projects__head {
    margin-bottom: 15px;
  }
  .home-projects__txt {
    margin-bottom: 55px;
    text-align: center;
  }
  .home-projects-list {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: 1fr 8px 1fr 8px 1fr 8px 1fr 8px 1fr;
    grid-template-rows: repeat(5, 1fr);
    -ms-grid-columns: 1fr 8px 1fr 8px 1fr 8px 1fr 8px 1fr 8px 1fr;
    grid-template-columns: repeat(6, 1fr);
    grid-row-gap: 8px;
    grid-column-gap: 8px;
    gap: 8px;
  }
  .home-projects-list > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .home-projects-list > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .home-projects-list > *:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
  }
  .home-projects-list > *:nth-child(4) {
    -ms-grid-row: 1;
    -ms-grid-column: 7;
  }
  .home-projects-list > *:nth-child(5) {
    -ms-grid-row: 1;
    -ms-grid-column: 9;
  }
  .home-projects-list > *:nth-child(6) {
    -ms-grid-row: 1;
    -ms-grid-column: 11;
  }
  .home-projects-list > *:nth-child(7) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .home-projects-list > *:nth-child(8) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .home-projects-list > *:nth-child(9) {
    -ms-grid-row: 3;
    -ms-grid-column: 5;
  }
  .home-projects-list > *:nth-child(10) {
    -ms-grid-row: 3;
    -ms-grid-column: 7;
  }
  .home-projects-list > *:nth-child(11) {
    -ms-grid-row: 3;
    -ms-grid-column: 9;
  }
  .home-projects-list > *:nth-child(12) {
    -ms-grid-row: 3;
    -ms-grid-column: 11;
  }
  .home-projects-list > *:nth-child(13) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .home-projects-list > *:nth-child(14) {
    -ms-grid-row: 5;
    -ms-grid-column: 3;
  }
  .home-projects-list > *:nth-child(15) {
    -ms-grid-row: 5;
    -ms-grid-column: 5;
  }
  .home-projects-list > *:nth-child(16) {
    -ms-grid-row: 5;
    -ms-grid-column: 7;
  }
  .home-projects-list > *:nth-child(17) {
    -ms-grid-row: 5;
    -ms-grid-column: 9;
  }
  .home-projects-list > *:nth-child(18) {
    -ms-grid-row: 5;
    -ms-grid-column: 11;
  }
  .home-projects-list > *:nth-child(19) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .home-projects-list > *:nth-child(20) {
    -ms-grid-row: 7;
    -ms-grid-column: 3;
  }
  .home-projects-list > *:nth-child(21) {
    -ms-grid-row: 7;
    -ms-grid-column: 5;
  }
  .home-projects-list > *:nth-child(22) {
    -ms-grid-row: 7;
    -ms-grid-column: 7;
  }
  .home-projects-list > *:nth-child(23) {
    -ms-grid-row: 7;
    -ms-grid-column: 9;
  }
  .home-projects-list > *:nth-child(24) {
    -ms-grid-row: 7;
    -ms-grid-column: 11;
  }
  .home-projects-list > *:nth-child(25) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .home-projects-list > *:nth-child(26) {
    -ms-grid-row: 9;
    -ms-grid-column: 3;
  }
  .home-projects-list > *:nth-child(27) {
    -ms-grid-row: 9;
    -ms-grid-column: 5;
  }
  .home-projects-list > *:nth-child(28) {
    -ms-grid-row: 9;
    -ms-grid-column: 7;
  }
  .home-projects-list > *:nth-child(29) {
    -ms-grid-row: 9;
    -ms-grid-column: 9;
  }
  .home-projects-list > *:nth-child(30) {
    -ms-grid-row: 9;
    -ms-grid-column: 11;
  }
  .home-projects-list__item {
    position: relative;
  }
  .home-projects-list__item-img {
    height: 100%;
    transition: -webkit-transform 0.6s ease;
    transition: transform 0.6s ease;
    transition: transform 0.6s ease, -webkit-transform 0.6s ease;
  }
  .home-projects-list__item-video {
    z-index: 2;
    width: 75px;
    height: 75px;
  }
  .home-projects-list__item-plus {
    right: 15px;
    bottom: 15px;
    z-index: 2;
    width: 42px;
    height: 42px;
  }
  .home-projects-list__item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    grid-row: 1/span 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
    grid-column: 1/span 3;
  }
  .home-projects-list__item:nth-of-type(2) {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/span 2;
    -ms-grid-column: 4;
    -ms-grid-column-span: 2;
    grid-column: 4/span 2;
  }
  .home-projects-list__item:nth-of-type(3) {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/span 2;
    -ms-grid-column: 6;
    -ms-grid-column-span: 1;
    grid-column: 6/span 1;
  }
  .home-projects-list__item:nth-of-type(4) {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    grid-row: 3/span 1;
    -ms-grid-column: 4;
    -ms-grid-column-span: 1;
    grid-column: 4/span 1;
  }
  .home-projects-list__item:nth-of-type(5) {
    -ms-grid-row: 4;
    -ms-grid-row-span: 2;
    grid-row: 4/span 2;
    -ms-grid-column: 4;
    -ms-grid-column-span: 1;
    grid-column: 4/span 1;
  }
  .home-projects-list__item:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-row-span: 2;
    grid-row: 3/span 2;
    -ms-grid-column: 5;
    -ms-grid-column-span: 2;
    grid-column: 5/span 2;
  }
  .home-projects-list__item:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 1;
    grid-row: 5/span 1;
    -ms-grid-column: 5;
    -ms-grid-column-span: 2;
    grid-column: 5/span 2;
  }
  .home-projects-list__item:nth-of-type(8) {
    -ms-grid-row: 4;
    -ms-grid-row-span: 2;
    grid-row: 4/span 2;
    -ms-grid-column: 2;
    -ms-grid-column-span: 2;
    grid-column: 2/span 2;
  }
  .home-projects-list__item:nth-of-type(9) {
    -ms-grid-row: 4;
    -ms-grid-row-span: 2;
    grid-row: 4/span 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/span 1;
  }
  .home-projects-list__item.is-video, .home-projects-list__item.is-modal {
    overflow: hidden;
    cursor: pointer;
  }
  .home-projects-list__item.is-video .home-projects-list__item-video.is-hover,
.home-projects-list__item.is-video .home-projects-list__item-plus.is-hover, .home-projects-list__item.is-modal .home-projects-list__item-video.is-hover,
.home-projects-list__item.is-modal .home-projects-list__item-plus.is-hover {
    opacity: 0;
    transition: opacity 0.6s ease;
  }
  .home-projects-list__item.is-video::before, .home-projects-list__item.is-modal::before {
    content: "";
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: rgba(51, 51, 51, 0.3);
    transition: opacity 0.6s ease;
  }
  .home-projects-list__item.is-video:hover::before, .home-projects-list__item.is-modal:hover::before {
    opacity: 1;
  }
  .home-projects-list__item.is-video:hover .home-projects-list__item-img, .home-projects-list__item.is-modal:hover .home-projects-list__item-img {
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
  }
  .home-projects-list__item.is-video:hover .home-projects-list__item-video.is-hover,
.home-projects-list__item.is-video:hover .home-projects-list__item-plus.is-hover, .home-projects-list__item.is-modal:hover .home-projects-list__item-video.is-hover,
.home-projects-list__item.is-modal:hover .home-projects-list__item-plus.is-hover {
    opacity: 1;
  }
  .home-projects-modal-box {
    width: calc(100% - 200px);
    max-width: 800px;
    padding: 10px;
  }
  .home-projects-modal-box__img {
    margin-bottom: 30px;
  }
  .home-projects-modal-box__youtube {
    margin-bottom: 30px;
  }
  .home-projects-modal-box__youtube::before {
    padding-top: 439px;
  }
  .home-projects-modal-box__area-txt {
    padding: 0 30px;
  }
  .home-projects-modal-box__head {
    margin-bottom: 15px;
  }
  .home-projects-modal-box__txt {
    margin-bottom: 25px;
  }
  .home-projects-modal-box__txt-link {
    border-bottom: none;
    position: relative;
  }
  .home-projects-modal-box__txt-link::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: rgb(var(--black));
    transition: width 0.6s ease;
  }
  .home-projects-modal-box__txt-link:hover::before {
    left: 0;
    width: 100%;
  }
  .home-projects-modal-box__txt-link-ico {
    width: 10px;
    height: 10px;
    margin-bottom: 4px;
    margin-left: 5px;
  }
  .home-projects-modal-box__close {
    max-width: 260px;
    min-height: 60px;
    margin-bottom: 30px;
    border-radius: 30px;
    font-size: 1.8rem;
    cursor: pointer;
    transition: opacity 0.6s ease;
  }
  .home-projects-modal-box__close:hover {
    opacity: 0.7;
  }
  .home-projects-modal-box__prev, .home-projects-modal-box__next {
    top: calc(50% - 25px);
    width: 50px;
    height: 50px;
    cursor: pointer;
  }
  .home-projects-modal-box__prev::before, .home-projects-modal-box__next::before {
    content: "";
    opacity: 0;
    position: absolute;
    top: 1px;
    left: 1px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    transition: opacity 0.6s ease;
  }
  .home-projects-modal-box__prev:hover::before, .home-projects-modal-box__next:hover::before {
    opacity: 1;
  }
  .home-projects-modal-box__prev:hover .home-projects-modal-box__prev-ico,
.home-projects-modal-box__prev:hover .home-projects-modal-box__next-ico, .home-projects-modal-box__next:hover .home-projects-modal-box__prev-ico,
.home-projects-modal-box__next:hover .home-projects-modal-box__next-ico {
    color: rgb(var(--gray));
  }
  .home-projects-modal-box__prev-ico, .home-projects-modal-box__next-ico {
    position: relative;
    z-index: 1;
    width: 50px;
    height: 50px;
    line-height: 1;
  }
  .home-projects-modal-box__prev {
    left: -75px;
  }
  .home-projects-modal-box__next {
    right: -75px;
  }
}
@media all and (min-width: 1220px) {
  .home-projects__inner {
    padding-top: 155px;
  }
}

/* .home-company
================================================ */
.home-company__inner {
  position: relative;
  padding-top: 30px;
  padding-bottom: 60px;
}
.home-company-set__table {
  margin-bottom: 30px;
}
.home-company-set__table-link {
  border-bottom: 1px solid;
}
.home-company-set__table-link-ico {
  width: 9.33px;
  height: 9.33px;
  margin-bottom: 4px;
  margin-left: 5px;
}
.home-company-set__map {
  display: flex;
  margin-bottom: 30px;
}
.home-company-set__map::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  padding-top: 66%;
}
.home-company-set__map-iframe {
  width: 100%;
}
.home-company-investment__head {
  margin-bottom: 20px;
}
.home-company-investment-list {
  display: flex;
  flex-wrap: wrap;
}
.home-company-investment-list__item.is-asahi {
  width: 168px;
  margin-right: 22px;
}
.home-company-investment-list__item.is-exeno {
  width: 45px;
  margin-right: 22px;
  margin-bottom: 18px;
}
.home-company-investment-list__item.is-mol {
  width: 109px;
  margin-right: 23px;
}
.home-company-investment-list__item.is-mitsubishi {
  width: 203px;
}
@media all and (max-width: 374px) {
  .home-company-investment-list__item.is-asahi {
    width: 118px;
    margin-right: 18px;
  }
  .home-company-investment-list__item.is-exeno {
    width: 36px;
    margin-right: 30px;
    margin-bottom: 18px;
  }
  .home-company-investment-list__item.is-mol {
    width: 88px;
    margin-right: 18px;
  }
  .home-company-investment-list__item.is-mitsubishi {
    width: 162px;
  }
}
@media all and (min-width: 768px) {
  .home-company__inner {
    padding-top: 40px;
    padding-bottom: 60px;
  }
  .home-company__head {
    margin-bottom: 30px;
  }
  .home-company-set {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
  }
  .home-company-set__table {
    width: calc(50% - 15px);
    margin-bottom: 0;
  }
  .home-company-set__table-link {
    border-bottom: none;
    position: relative;
  }
  .home-company-set__table-link::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: rgb(var(--black));
    transition: width 0.6s ease;
  }
  .home-company-set__table-link:hover::before {
    left: 0;
    width: 100%;
  }
  .home-company-set__table-link-span {
    text-decoration: none;
  }
  .home-company-set__table-link-ico {
    width: 10px;
    height: 10px;
    margin-bottom: 4px;
    margin-left: 5px;
  }
  .home-company-set__map {
    width: calc(50% - 15px);
    margin-top: 20px;
  }
  .home-company-set__map::before {
    padding-top: 564px;
  }
  .home-company-investment__head {
    margin-bottom: 10px;
  }
  .home-company-investment-list__item {
    padding: 20px 0;
  }
  .home-company-investment-list__item.is-asahi {
    width: 277px;
    margin-right: 56px;
  }
  .home-company-investment-list__item.is-exeno {
    width: 78px;
    margin-right: 63px;
    margin-bottom: 0;
  }
  .home-company-investment-list__item.is-mol {
    width: 216px;
    margin-right: 59px;
  }
  .home-company-investment-list__item.is-mitsubishi {
    width: 350px;
  }
}
@media all and (min-width: 1220px) {
  .home-company__inner {
    padding-top: 80px;
    padding-bottom: 120px;
  }
  .home-company-set__table {
    width: calc(50% - 25px);
  }
  .home-company-set__map {
    width: calc(50% - 25px);
  }
}

/* .news-archive
================================================ */
.news-archive__inner {
  padding-top: 10px;
  padding-bottom: 65px;
}
@media all and (min-width: 768px) {
  .news-archive__inner {
    padding-top: 25px;
    padding-bottom: 75px;
  }
}
@media all and (min-width: 1220px) {
  .news-archive__inner {
    padding-bottom: 150px;
  }
}

/* .news-single
================================================ */
.news-single__inner {
  padding-top: 30px;
  padding-bottom: 30px;
}
@media all and (min-width: 768px) {
  .news-single__inner {
    padding-top: 30px;
    padding-bottom: 25px;
  }
}
@media all and (min-width: 1220px) {
  .news-single__inner {
    padding-top: 60px;
    padding-bottom: 50px;
  }
}

/* .news-related
================================================ */
.news-related__inner {
  padding-top: 35px;
}
.news-related__head {
  font-size: 3rem;
}
.news-related__btn {
  margin-top: 25px;
}
@media all and (min-width: 768px) {
  .news-related__inner {
    padding-top: 20px;
    padding-bottom: 75px;
  }
  .news-related__head {
    margin-bottom: 10px;
    font-size: 3.6rem;
  }
  .news-related__btn {
    margin-top: 45px;
  }
}
@media all and (min-width: 1220px) {
  .news-related__inner {
    padding-top: 45px;
    padding-bottom: 150px;
  }
}