@charset "UTF-8";
:root {
  --black: 0,0,0;
  --red: 196,4,6;
  --darkred: 156,22,23;
  --bg: 239,239,239;
  --border: 199,199,199;
  --gray: 160,160,160;
  --contents_width: 1100px;
  --body_padding_side: 60px;
  --contents_width_with_padding: 1160px;
  --sidebar_width: 250px;
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, a, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

html {
  font-size: 62.5%;
  word-break: break-all;
}

body {
  -webkit-text-size-adjust: 100%;
}

article, aside, details, figcaption, figure,
main, footer, header, menu, nav, section {
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  word-break: break-word;
  line-break: strict;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

ul:not([class]),
ol:not([class]) {
  padding-left: 1.25em;
}

ul[class],
ol[class] {
  list-style: none;
}

span {
  font-weight: inherit;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  color: inherit;
}
@media all and (min-width: 768px) {
  a:hover {
    text-decoration: none;
  }
}

a[class] {
  text-decoration: none;
}

ins {
  background-color: #ff9;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

address {
  font-style: normal;
}

sup {
  vertical-align: text-top;
  font-size: 0.75em;
}

sub {
  vertical-align: text-bottom;
  font-size: 0.75em;
}

table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid rgb(var(--border));
  margin: 1em 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

iframe {
  max-width: 100%;
}

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

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

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

select {
  color: inherit;
}

textarea {
  resize: vertical;
}

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

/* 02_base
================================================ */
body {
  min-width: 320px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
  color: rgb(var(--black));
  font-size: 1.5rem;
  line-height: 2;
  letter-spacing: 0.06em;
}
@media all and (min-width: 768px) {
  body {
    min-width: var(--contents_width_with_padding);
    /*padding-left: 120px;*/
    font-size: 1.7rem;
    box-sizing: border-box;
				padding-top: 50px;
  }
}

.l-wrapper {
  position: relative;
}

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

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

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

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

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

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

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

/* overflow
-------------------------------------- */
.u-overflow-wrap {
  overflow: auto;
}
.u-overflow-wrap .u-overflow-sec {
  overflow: hidden;
}
/* text
-------------------------------------- */
.u-uppercase {
  text-transform: uppercase;
}

.u-en {
  font-family: "Oswald", sans-serif;
}

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

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

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

/*  .c-archive01
================================================== */
.c-archive01__item {
  border-style: solid;
  border-width: 1px 0 0;
  border-color: #C7C7C7;
}
.c-archive01__item:last-child {
  border-width: 1px 0;
}
.c-archive01__item-link {
  display: block;
  padding: 17px 0 12px;
}
.c-archive01__item-meta {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.c-archive01__item-date {
  font-size: 1.2rem;
  padding: 3px 0;
  color: #5E5E5E;
  line-height: 1;
}
.c-archive01__item-cat {
  font-size: 1.2rem;
  color: rgb(var(--red));
  margin: 0 10px 0 0;
  padding: 3px 5px;
  line-height: 1;
  border: solid 1px;
}
.c-archive01__item-head {
  overflow: hidden;
  display: -webkit-box;
  max-height: 3.6em;
  line-height: 1.8;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  margin-top: 5px;
}
@media all and (min-width: 768px) {
  .c-archive01__item {
    display: block;
  }
  .c-archive01__item-link {
    padding: 30px;
    min-height: 160px;
    box-sizing: border-box;
    transition: all 0.3s ease;
  }
  .c-archive01__item-link:hover {
    background: #FFF5F5;
  }
  .c-archive01__item-meta {
    margin-bottom: 15px;
  }
  .c-archive01__item-date {
    font-size: 1.6rem;
  }
  .c-archive01__item-cat {
    font-size: 1.6rem;
    margin: 0 15px 0 0;
    padding: 3px 10px 4px;
  }
  .c-archive01__item-head {
    max-height: 3.6em;
    -webkit-line-clamp: 2;
  }
}

/* .c-btn01
================================================== */
.c-btn01 {
  width: 190px;
  margin: 20px auto 0;
}
.c-btn01__link {
  font-size: 1.4rem;
  line-height: 1.5;
  display: block;
  padding: 10px 35px 10px 10px;
  border-bottom: solid 2px;
  position: relative;
}
.c-btn01__link::before {
  position: absolute;
  z-index: 1;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: inline-block;
  width: 18px;
  height: 9px;
  vertical-align: middle;
  background: no-repeat center/contain;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2228.733%22%20height%3D%2214.732%22%20viewBox%3D%220%200%2028.733%2014.732%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_27733%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%2027733%22%20transform%3D%22translate(0%20-2.514)%22%3E%20%3Cpath%20id%3D%22line%22%20d%3D%22M486.931-7.681H459.175v-1h27.756Z%22%20transform%3D%22translate(-459.175%2018.061)%22%20fill%3D%22%231A1A18%22%2F%3E%20%3Cpath%20id%3D%22rightEdge%22%20d%3D%22M-7.159%2C9.366l-.682-.732L-.721%2C2l-7.12-6.634.682-.732L.746%2C2Z%22%20transform%3D%22translate(27.987%207.88)%22%20fill%3D%22%231A1A18%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
  content: "";
  transition: all 0.3s ease;
}
.c-btn01__txt {
  font-weight: 700;
}
@media all and (min-width: 768px) {
  .c-btn01 {
    width: 230px;
    margin: 50px auto 0;
  }
  .c-btn01__link {
    padding: 10px 35px 10px 15px;
    transition: all 0.3s ease;
  }
  .c-btn01__link:hover {
    color: rgb(var(--red));
  }
  .c-btn01__link:hover::before {
    display: inline-block;
    width: 18px;
    height: 9px;
    vertical-align: middle;
    background: no-repeat center/contain;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2228.733%22%20height%3D%2214.732%22%20viewBox%3D%220%200%2028.733%2014.732%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_27733%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%2027733%22%20transform%3D%22translate(0%20-2.514)%22%3E%20%3Cpath%20id%3D%22line%22%20d%3D%22M486.931-7.681H459.175v-1h27.756Z%22%20transform%3D%22translate(-459.175%2018.061)%22%20fill%3D%22%239C1617%22%2F%3E%20%3Cpath%20id%3D%22rightEdge%22%20d%3D%22M-7.159%2C9.366l-.682-.732L-.721%2C2l-7.12-6.634.682-.732L.746%2C2Z%22%20transform%3D%22translate(27.987%207.88)%22%20fill%3D%22%239C1617%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
    content: "";
    transition: all 0.3s ease;
  }
  .c-btn01__txt {
    font-size: 1.6rem;
  }
}

/* .c-btn01.is-download
================================================== */
.c-btn01.is-download .c-btn01__link::before {
  display: inline-block;
  width: 17px;
  height: 20px;
  vertical-align: middle;
  background: no-repeat center/contain;
  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_27543%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%2027543%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2215.305%22%20height%3D%2218.758%22%20viewBox%3D%220%200%2015.305%2018.758%22%3E%20%3Cdefs%3E%20%3CclipPath%20id%3D%22clip-path%22%3E%20%3Crect%20id%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2_25711%22%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%2025711%22%20width%3D%2215.305%22%20height%3D%2218.758%22%20fill%3D%22%23fff%22%2F%3E%20%3C%2FclipPath%3E%20%3C%2Fdefs%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_27542%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%2027542%22%20clip-path%3D%22url(%23clip-path)%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_132539%22%20data-name%3D%22%E3%83%91%E3%82%B9%20132539%22%20d%3D%22M15.992%2C11.44%2C11.96%2C7.668A.957.957%2C0%2C0%2C0%2C10.729%2C7.5a.937.937%2C0%2C0%2C0-.163%2C1.48l6.469%2C6.063L23.5%2C8.982a.9.9%2C0%2C0%2C0%2C.286-.773%2C1%2C1%2C0%2C0%2C0-.346-.63.95.95%2C0%2C0%2C0-1.325.081l-4.047%2C3.786V0H15.992Z%22%20transform%3D%22translate(-9.402)%22%20fill%3D%22%23fff%22%20fill-rule%3D%22evenodd%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_132540%22%20data-name%3D%22%E3%83%91%E3%82%B9%20132540%22%20d%3D%22M.2%2C198.119H15.109a.2.2%2C0%2C0%2C1%2C.2.2v1.541a.2.2%2C0%2C0%2C1-.2.2H.2a.2.2%2C0%2C0%2C1-.2-.2v-1.541a.2.2%2C0%2C0%2C1%2C.2-.2%22%20transform%3D%22translate(0%20-181.294)%22%20fill%3D%22%23fff%22%20fill-rule%3D%22evenodd%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
  content: "";
  transition: all 0.3s ease;
}

/* .c-btn02
================================================== */
.c-btn02 {
  margin: 20px auto 0;
}
.c-btn02__link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  border-radius: 25px;
  color: #fff;
  background: rgb(var(--red));
  line-height: 1.5;
}
.c-btn02__txt {
  font-weight: 700;
}
@media all and (min-width: 768px) {
  .c-btn02__link {
    width: 412px;
    height: 60px;
    border-radius: 30px;
    transition: all 0.3s ease;
  }
  .c-btn02__link:hover {
    background: rgb(var(--darkred));
  }
  .c-btn02__txt {
    font-size: 1.7rem;
  }
}

/* .c-btn02.is-download
================================================== */
.c-btn02.is-download .c-btn02__txt {
  padding-left: 30px;
  position: relative;
}
.c-btn02.is-download .c-btn02__txt::before {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: inline-block;
  width: 17px;
  height: 20px;
  vertical-align: middle;
  background: no-repeat center/contain;
  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_27543%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%2027543%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2215.305%22%20height%3D%2218.758%22%20viewBox%3D%220%200%2015.305%2018.758%22%3E%20%3Cdefs%3E%20%3CclipPath%20id%3D%22clip-path%22%3E%20%3Crect%20id%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2_25711%22%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%2025711%22%20width%3D%2215.305%22%20height%3D%2218.758%22%20fill%3D%22%23fff%22%2F%3E%20%3C%2FclipPath%3E%20%3C%2Fdefs%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_27542%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%2027542%22%20clip-path%3D%22url(%23clip-path)%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_132539%22%20data-name%3D%22%E3%83%91%E3%82%B9%20132539%22%20d%3D%22M15.992%2C11.44%2C11.96%2C7.668A.957.957%2C0%2C0%2C0%2C10.729%2C7.5a.937.937%2C0%2C0%2C0-.163%2C1.48l6.469%2C6.063L23.5%2C8.982a.9.9%2C0%2C0%2C0%2C.286-.773%2C1%2C1%2C0%2C0%2C0-.346-.63.95.95%2C0%2C0%2C0-1.325.081l-4.047%2C3.786V0H15.992Z%22%20transform%3D%22translate(-9.402)%22%20fill%3D%22%23fff%22%20fill-rule%3D%22evenodd%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_132540%22%20data-name%3D%22%E3%83%91%E3%82%B9%20132540%22%20d%3D%22M.2%2C198.119H15.109a.2.2%2C0%2C0%2C1%2C.2.2v1.541a.2.2%2C0%2C0%2C1-.2.2H.2a.2.2%2C0%2C0%2C1-.2-.2v-1.541a.2.2%2C0%2C0%2C1%2C.2-.2%22%20transform%3D%22translate(0%20-181.294)%22%20fill%3D%22%23fff%22%20fill-rule%3D%22evenodd%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
  content: "";
  transition: all 0.3s ease;
}

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

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

/* .c-head01
================================================== */
.c-head01 {
  margin-bottom: 20px;
}
.c-head01__en {
  display: inline-block;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: rgb(var(--red));
  margin-right: 13px;
  vertical-align: middle;
  position: relative;
}
.c-head01__en::before {
  position: absolute;
  top: 50%;
  left: -17px;
  margin-top: -1px;
  display: inline-block;
  width: 10px;
  height: 3px;
  vertical-align: middle;
  background: no-repeat center/contain;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2210%22%20height%3D%223.302%22%20viewBox%3D%220%200%2010%203.302%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_132578%22%20data-name%3D%22%E3%83%91%E3%82%B9%20132578%22%20d%3D%22M7.675%2C0%2C5.449%2C1.017h-.9L2.326%2C0%2C0%2C1.061%2C5%2C3.3l5-2.241Z%22%20transform%3D%22translate(0%200)%22%20fill%3D%22%23C40406%22%2F%3E%3C%2Fsvg%3E");
  content: "";
  transition: all 0.3s ease;
}
.c-head01__main {
  display: inline-block;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  vertical-align: middle;
}
.c-head01__main .is-underline {
  position: relative;
}
.c-head01__main .is-underline::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  bottom: 2px;
  left: 0;
  background: #fff;
}
.c-head01.is-small .c-head01__main {
  font-size: 1.8rem;
  line-height: 1.5;
}
@media all and (min-width: 768px) {
  .c-head01 {
    margin-bottom: 40px;
  }
  .c-head01__en {
    font-size: 2.2rem;
    margin-right: 20px;
  }
  .c-head01__en::before {
    left: -35px;
    margin-top: -2px;
    display: inline-block;
    width: 17px;
    height: 5px;
    vertical-align: middle;
    background: no-repeat center/contain;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2210%22%20height%3D%223.302%22%20viewBox%3D%220%200%2010%203.302%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_132578%22%20data-name%3D%22%E3%83%91%E3%82%B9%20132578%22%20d%3D%22M7.675%2C0%2C5.449%2C1.017h-.9L2.326%2C0%2C0%2C1.061%2C5%2C3.3l5-2.241Z%22%20transform%3D%22translate(0%200)%22%20fill%3D%22%23C40406%22%2F%3E%3C%2Fsvg%3E");
    content: "";
    transition: all 0.3s ease;
  }
  .c-head01__main {
    font-size: 3.9rem;
  }
  .c-head01__main .is-underline::before {
    height: 3px;
    bottom: 4px;
  }
  .c-head01.is-small {
    padding-left: 35px;
  }
  .c-head01.is-small .c-head01__main {
    font-size: 3.2rem;
  }
}

/* .c-head02
================================================== */
.c-head02 {
  text-align: center;
  margin-bottom: 20px;
  color: #fff;
  position: relative;
}
.c-head02__en {
  font-size: 7rem;
  letter-spacing: 0.1em;
  line-height: 1;
  opacity: 0.1;
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.c-head02__main-txt {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.6;
  position: relative;
}
.c-head02__main-txt::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  bottom: 3px;
  left: 0;
  background: #fff;
}
.c-head02.is-center {
  text-align: center;
}
@media all and (min-width: 768px) {
  .c-head02 {
    margin-bottom: 50px;
  }
  .c-head02__en {
    font-size: 11.3rem;
  }
  .c-head02__main-txt {
    font-size: 3.2rem;
  }
  .c-head02__main-txt::before {
    height: 3px;
    bottom: 4px;
  }
}

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

/* .c-pager01
===================================*/
.c-pager01 {
  overflow: hidden;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  margin: 30px -5px -10px;
}
.c-pager01 li {
  margin: 0 5px 10px;
}
.c-pager01 li a, .c-pager01 li span {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 30px;
  height: 30px;
  line-height: 1;
  border: 1px solid rgb(var(--black));
  text-decoration: none;
}
.c-pager01 li.pages span {
  width: auto;
  border: 0;
}
.c-pager01 li.current span {
  color: #fff;
  background: rgb(var(--black));
}
.c-pager01 li.first, .c-pager01 li.previous {
  margin-right: 15px;
}
.c-pager01 li.first a, .c-pager01 li.last a {
  width: auto;
  border-color: transparent;
  padding-right: 15px;
  padding-left: 15px;
}
.c-pager01 li.next, .c-pager01 li.last {
  margin-left: 15px;
}
.c-pager01 li.extend span {
  border: 0;
}
@media all and (min-width: 768px) {
  .c-pager01 li a:hover {
    text-decoration: none;
    border: 1px solid rgb(var(--black));
    background-color: rgb(var(--black));
    color: #fff;
  }
}

/*  .c-pager02
================================================== */
.c-pager02 {
  position: relative;
  overflow: hidden;
  margin-top: 30px;
  line-height: 1;
}
.c-pager02 a {
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  height: 50px;
  padding: 15px;
  border: 1px solid;
  text-decoration: none;
}
.c-pager02__previous, .c-pager02__next {
  width: calc(50% - 10px);
}
.c-pager02__previous {
  float: left;
}
.c-pager02__previous a {
  justify-content: flex-start;
  padding-left: 30px;
}
.c-pager02__next {
  float: right;
}
.c-pager02__next a {
  justify-content: flex-end;
  padding-right: 30px;
}
.c-pager02__all {
  width: 100%;
  clear: both;
  padding-top: 20px;
}
.c-pager02__all a {
  justify-content: center;
}
@media all and (min-width: 768px) {
  .c-pager02 a {
    transition: all 0.3s ease;
  }
  .c-pager02 a:hover {
    background: rgb(var(--black));
    color: #fff;
    border-color: rgb(var(--black));
  }
}

/* .c-single-content
================================================== */
.c-single-content *:first-child {
  margin-top: 0;
}
.c-single-content *:last-child {
  margin-bottom: 0;
}
.c-single-content p {
  margin: 1em 0;
}
.c-single-content a {
  text-decoration: underline;
}
@media all and (min-width: 1160px) {
  .c-single-content a:hover {
    text-decoration: none;
  }
  .c-single-content .alignleft {
    float: left;
  }
  .c-single-content .alignright {
    float: right;
  }
  .c-single-content .aligncenter {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}

/* .l-breadcrumb
================================================ */
.l-breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  padding-top: 20px;
  padding-bottom: 20px;
}
.l-breadcrumb-list__item {
  display: inline-block;
  vertical-align: top;
}
.l-breadcrumb-list__item + .l-breadcrumb-list__item {
  margin-left: 5px;
}
.l-breadcrumb-list__item + .l-breadcrumb-list__item:before {
  content: ">";
  margin-right: 5px;
}
@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;
  }
}

/* .l-footer
================================================ */
.l-footer {
  position: relative;
}
/* .l-footer-page-top
================================================ */
.l-footer-page-top__link {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  padding: 10px;
  background: rgb(var(--black));
  color: #fff;
  text-align: center;
  text-decoration: none;
  overflow: hidden;
  text-indent: 200%;
  white-space: nowrap;
}
@media all and (min-width: 768px) {
  .l-footer-page-top {
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    position: sticky;
    right: 30px;
    bottom: 60px;
    z-index: 10;
    width: 50px;
    height: 50px;
    border-radius: 100px;
    margin: 0 0 30px auto;
    transition: opacity 0.3s ease;
  }
  .l-footer-page-top.is-shown {
    opacity: 1;
    visibility: visible;
  }
  .l-footer-page-top__link {
    width: 100%;
    height: 100%;
  }
}

/* .l-footer-cv
================================================ */
.l-footer-cv {
  position: relative;
}
.l-footer-cv::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/common/bg_cv01_sp.jpg) no-repeat center 100%/cover;
  top: 0;
  left: 0;
  z-index: -1;
}
.l-footer-cv__inner {
  padding-top: 50px;
  padding-bottom: 40px;
}
.l-footer-cv__txt {
  text-align: center;
  color: #fff;
}
.l-footer-cv__btn {
  margin: 30px 30px 0;
}
.l-footer-cv__btn-link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  height: 60px;
  padding-left: 20px;
  box-sizing: border-box;
  background: rgb(var(--black));
  overflow: hidden;
  position: relative;
}
.l-footer-cv__btn-link::before {
  position: absolute;
  z-index: 1;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: inline-block;
  width: 18px;
  height: 9px;
  vertical-align: middle;
  background: no-repeat center/contain;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2228.733%22%20height%3D%2214.732%22%20viewBox%3D%220%200%2028.733%2014.732%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_27733%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%2027733%22%20transform%3D%22translate(0%20-2.514)%22%3E%20%3Cpath%20id%3D%22line%22%20d%3D%22M486.931-7.681H459.175v-1h27.756Z%22%20transform%3D%22translate(-459.175%2018.061)%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22rightEdge%22%20d%3D%22M-7.159%2C9.366l-.682-.732L-.721%2C2l-7.12-6.634.682-.732L.746%2C2Z%22%20transform%3D%22translate(27.987%207.88)%22%20fill%3D%22%23fff%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
  content: "";
  transition: all 0.3s ease;
}
.l-footer-cv__btn-txt {
  font-size: 1.6rem;
  line-height: 1.5;
  color: #fff;
  position: relative;
  padding-left: 40px;
  text-align: left;
}
.l-footer-cv__btn-txt::before {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: inline-block;
  width: 26px;
  height: 20px;
  vertical-align: middle;
  background: no-repeat center/contain;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2226.426%22%20height%3D%2220.359%22%20viewBox%3D%220%200%2026.426%2020.359%22%3E%20%3Cpath%20id%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2_25000%22%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%2025000%22%20d%3D%22M0-.5H25.426a.5.5%2C0%2C0%2C1%2C.5.5V19.359a.5.5%2C0%2C0%2C1-.5.5H0a.5.5%2C0%2C0%2C1-.5-.5V0A.5.5%2C0%2C0%2C1%2C0-.5ZM24.926.5H.5V18.859H24.926Z%22%20transform%3D%22translate(0.5%200.5)%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E7%B7%9A_448%22%20data-name%3D%22%E7%B7%9A%20448%22%20d%3D%22M.3%2C6.29l-.6-.8L7.491-.4l.6.8Z%22%20transform%3D%22translate(2.961%2010.601)%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E7%B7%9A_449%22%20data-name%3D%22%E7%B7%9A%20449%22%20d%3D%22M7.491%2C6.29-.3.4.3-.4%2C8.094%2C5.493Z%22%20transform%3D%22translate(15.674%2010.601)%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_66241%22%20data-name%3D%22%E3%83%91%E3%82%B9%2066241%22%20d%3D%22M15.1%2C14.817a3.075%2C3.075%2C0%2C0%2C1-2.013-.754L4.524%2C6.679l.653-.757%2C8.566%2C7.384a2.069%2C2.069%2C0%2C0%2C0%2C2.719%2C0l8.567-7.385.653.757-8.567%2C7.385A3.073%2C3.073%2C0%2C0%2C1%2C15.1%2C14.817Z%22%20transform%3D%22translate(-1.889%20-2.434)%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E");
  content: "";
  transition: all 0.3s ease;
}
@media all and (min-width: 768px) {
  .l-footer-cv::before {
    background: url(../img/common/bg_cv01_pc.jpg) no-repeat center 100%/cover;
  }
  .l-footer-cv__inner {
    padding-top: 120px;
    padding-bottom: 140px;
  }
  .l-footer-cv__in {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .l-footer-cv__area-txt {
    width: calc(100% - 320px);
  }
  .l-footer-cv__head {
    text-align: left;
  }
  .l-footer-cv__txt {
    line-height: 2;
    text-align: left;
  }
  .l-footer-cv__area-btn {
    width: 320px;
  }
  .l-footer-cv__btn {
    margin: 0;
  }
  .l-footer-cv__btn-link {
    height: 80px;
    padding-left: 40px;
    transition: all 0.3s ease;
  }
  .l-footer-cv__btn-link::before {
    width: 30px;
  }
  .l-footer-cv__btn-link:hover {
    background: rgb(var(--darkred));
  }
  .l-footer-cv__btn-txt {
    font-size: 1.8rem;
    padding-left: 50px;
  }
}

/* .l-footer-info
================================================ */
.l-footer-info {
  padding-top: 60px;
  padding-bottom: 40px;
  color: #fff;
  background: rgb(var(--black));
}
.l-footer-info__logo {
  padding-bottom: 30px;
}
.l-footer-info__logo-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.l-footer-info__logo-area {
  width: 51px;
}
.l-footer-info__logo-area.is-sanwa {
  width: 50px;
  margin-left: 15px;
}
.l-footer-info__logo-txt {
  font-weight: 700;
  font-size: 1.6rem;
  text-align: center;
  margin-top: 16px;
}
.l-footer-info__company {
  padding-top: 20px;
  border-top: solid 1px #5E5E5E;
}
.l-footer-info__company-item + .l-footer-info__company-item {
  margin-top: 12px;
}
.l-footer-info__company-txt {
  font-size: 1.2rem;
}
@media all and (min-width: 768px) {
  .l-footer-info {
    padding-top: 100px;
    padding-bottom: 95px;
  }
  .l-footer-info__in {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .l-footer-info__logo {
    width: 16%;
    padding: 0;
  }
  .l-footer-info__logo-wrap {
    justify-content: flex-start;
  }
  .l-footer-info__logo-area {
    width: 35%;
    max-width: 60px;
  }
  .l-footer-info__logo-area.is-sanwa {
    width: 38%;
    max-width: 65px;
    margin-left: 30px;
  }
  .l-footer-info__logo-txt {
    text-align: left;
    font-size: 1.8rem;
  }
  .l-footer-info__company {
    width: 37%;
    padding-top: 25px;
  }
  .l-footer-info__company-item + .l-footer-info__company-item {
    margin-top: 10px;
  }
  .l-footer-info__company-head {
    font-size: 1.6rem;
  }
  .l-footer-info__company-txt {
    font-size: 1.4rem;
  }
  .l-footer-info__site {
    width: 38%;
    padding-top: 40px;
    border-top: solid 1px #5E5E5E;
    display: flex;
    flex-wrap: wrap;
  }
  .l-footer-info__site-list {
    width: 52%;
  }
  .l-footer-info__site-list + .l-footer-info__site-list {
    width: calc(48% - 30px);
    margin-left: 30px;
  }
  .l-footer-info__site-link {
    display: block;
    font-size: 1.6rem;
    padding: 6px 20px;
    position: relative;
    transition: all 0.3s ease;
  }
  .l-footer-info__site-link::before {
    position: absolute;
    content: "";
    width: 10px;
    height: 2px;
    background: rgb(var(--red));
    top: 22px;
    left: 0;
  }
  .l-footer-info__site-link:hover {
    color: rgb(var(--gray));
  }
}
@media all and (min-width: 1360px ) {
  .l-footer-info__inner {
    max-width: 1260px;
  }
}

/* .l-footer-info
================================================ */
.l-footer-cr {
  color: #fff;
  background: #101010;
}
.l-footer-cr__in {
  padding-top: 20px;
  padding-bottom: 70px;
}
.l-footer-cr__privacy {
  display: inline-block;
}
.l-footer-cr__privacy-wrap {
  text-align: center;
}
.l-footer-cr__privacy-link {
  position: relative;
}
.l-footer-cr__privacy-link::after {
  margin: 0 0 2px 8px;
  display: inline-block;
  width: 10px;
  height: 10px;
  vertical-align: middle;
  background: no-repeat center/contain;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2210%22%20height%3D%2210%22%20viewBox%3D%220%200%2010%2010%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_232%22%20data-name%3D%22%E3%83%91%E3%82%B9%20232%22%20d%3D%22M354.228%2C258.982H346.77v-7.3h1.7v1.17h-.5v4.963h5.068V257h1.2Z%22%20transform%3D%22translate(-346.77%20-248.982)%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_233%22%20data-name%3D%22%E3%83%91%E3%82%B9%20233%22%20d%3D%22M357.629%2C255.3h-7.458v-7.3h7.458Zm-6.263-1.171h5.067v-4.962h-5.067Z%22%20transform%3D%22translate(-347.629%20-247.993)%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E");
  content: "";
  transition: all 0.3s ease;
}
.l-footer-cr__privacy + .l-footer-cr__privacy {
  margin-left: 20px;
}
.l-footer-cr__copy {
  text-align: center;
  font-size: 1rem;
}
.l-footer-cr__copy-txt {
  color: #595757;
}
@media all and (min-width: 768px) {
  .l-footer-cr__in {
    padding: 36px 135px 36px 135px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .l-footer-cr__privacy {
    font-size: 1.6rem;
  }
  .l-footer-cr__privacy-link {
    transition: all 0.3s ease;
  }
  .l-footer-cr__privacy-link:hover {
    color: rgb(var(--gray));
  }
  .l-footer-cr__privacy-link:hover::after {
    display: inline-block;
    width: 10px;
    height: 10px;
    vertical-align: middle;
    background: no-repeat center/contain;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2210%22%20height%3D%2210%22%20viewBox%3D%220%200%2010%2010%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_232%22%20data-name%3D%22%E3%83%91%E3%82%B9%20232%22%20d%3D%22M354.228%2C258.982H346.77v-7.3h1.7v1.17h-.5v4.963h5.068V257h1.2Z%22%20transform%3D%22translate(-346.77%20-248.982)%22%20fill%3D%22%23a0a0a0%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_233%22%20data-name%3D%22%E3%83%91%E3%82%B9%20233%22%20d%3D%22M357.629%2C255.3h-7.458v-7.3h7.458Zm-6.263-1.171h5.067v-4.962h-5.067Z%22%20transform%3D%22translate(-347.629%20-247.993)%22%20fill%3D%22%23a0a0a0%22%2F%3E%3C%2Fsvg%3E");
    content: "";
    transition: all 0.3s ease;
  }
  .l-footer-cr__privacy + .l-footer-cr__privacy {
    margin-left: 40px;
  }
  .l-footer-cr__copy {
    font-size: 1.4rem;
  }
}

/* .l-header
================================================ */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 320px;
  z-index: 2000;
}
@media all and (min-width: 768px) {
  .l-header {
    min-width: auto;
    max-width: 120px;
    height: 100%;
				display: none;
  }
}

/* .l-header-info
================================================== */
.l-header-info {
  position: relative;
  z-index: 3;
  height: 50px;
}
.l-header-info__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.l-header-info__logo {
  width: 115px;
}
.l-header-info__logo-link {
  padding: 15px;
  position: relative;
}
.l-header-info__logo-link::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  top: 0;
  left: 0;
  border-style: solid;
  border-width: 108px 158px 0 0;
  border-color: #000 transparent transparent transparent;
  z-index: -1;
}
.l-header-info__logo-link img {
  width: 44px;
}
@media all and (min-width: 768px) {
  .l-header-info {
    height: 100%;
    width: 120px;
    padding: 0;
    background: #fff;
			
  }
  .l-header-info__logo {
    position: fixed;
    top: 0;
    right: 0;
    width: 140px;
  }
  .l-header-info__logo-link {
    padding: 25px 40px;
  }
  .l-header-info__logo-link::before {
    top: 0;
    left: auto;
    right: 0;
    border-width: 0 342px 150px 0;
    border-color: transparent #000 transparent transparent;
  }
  .l-header-info__logo-link img {
    width: 60px;
  }
  .l-header-info__logo.is-fixed .l-header-info__logo-link {
    padding: 22px;
    background: none;
  }
  .l-header-info__logo.is-fixed .l-header-info__logo-link img {
    width: 70px;
  }
  .l-header-info__btn-contact {
    margin: 0;
  }
  .l-header-info__scroll {
    display: none;
  }
  .l-header-info__scroll.scroll-view {
    display: block;
  }
  .l-header-info__scroll.is-pagetop .l-header-info__scroll-link::after {
    -webkit-animation: sdl04 2s cubic-bezier(1, 0, 0, 1) infinite;
    animation: sdl04 2s cubic-bezier(1, 0, 0, 1) infinite;
  }
  .l-header-info__scroll-link {
    display: inline-block;
    position: fixed;
    left: 42px;
    bottom: 0;
    z-index: 2;
    padding: 10px 10px 275px;
    font-size: 1.2rem;
    line-height: 1;
    text-transform: uppercase;
    text-decoration: none;
    -webkit-writing-mode: vertical-lr;
    -ms-writing-mode: tb-lr;
    writing-mode: vertical-lr;
    transition: 0.2s;
    overflow: hidden;
  }
  .l-header-info__scroll-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
    width: 1px;
    height: 258px;
    background: #000;
    -webkit-animation: sdl03 2s cubic-bezier(1, 0, 0, 1) infinite;
    animation: sdl03 2s cubic-bezier(1, 0, 0, 1) infinite;
  }
  .l-header-info__scroll-link:hover {
    opacity: 0.5;
  }
}

@-webkit-keyframes sdl03 {
  0% {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }
  30% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }
  70% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
  }
}

@keyframes sdl03 {
  0% {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }
  30% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }
  70% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
  }
}
@-webkit-keyframes sdl04 {
  0% {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
  }
  30% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
  }
  70% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }
  100% {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }
}
@keyframes sdl04 {
  0% {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
  }
  30% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
  }
  70% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }
  100% {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }
}
/* .l-nav-btn
================================================== */
.l-nav-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 55px;
  height: 55px;
  background: rgb(var(--red));
  border: none;
  cursor: pointer;
}
.l-nav-btn__line {
  position: absolute;
  left: 17px;
  width: 20px;
  height: 1px;
  content: "";
  background: #fff;
  transition: all 0.3s ease;
}
.l-nav-btn__line:nth-child(1) {
  top: 17px;
}
.l-nav-btn__line:nth-child(2) {
  top: 25px;
}
.l-nav-btn__line:nth-child(3) {
  top: 33px;
}
.l-nav-btn.is-open .l-nav-btn__line:nth-child(1) {
  top: 25px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.l-nav-btn.is-open .l-nav-btn__line:nth-child(2) {
  opacity: 0;
}
.l-nav-btn.is-open .l-nav-btn__line:nth-child(3) {
  top: 25px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media all and (min-width: 768px) {
  .l-nav-btn {
    height: 32px;
    top: 187px;
    right: auto;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: #fff;
  }
  .l-nav-btn__line {
    background: rgb(var(--black));
    left: 12px;
    width: 32px;
  }
  .l-nav-btn__line:nth-child(1) {
    top: 0px;
  }
  .l-nav-btn__line:nth-child(2) {
    top: 12px;
  }
  .l-nav-btn__line:nth-child(3) {
    top: 24px;
  }
  .l-nav-btn.is-open .l-nav-btn__line:nth-child(1) {
    top: 12px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .l-nav-btn.is-open .l-nav-btn__line:nth-child(2) {
    opacity: 0;
  }
  .l-nav-btn.is-open .l-nav-btn__line:nth-child(3) {
    top: 12px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .l-nav-btn__txt {
    position: absolute;
    left: 0;
    bottom: -20px;
    width: 100%;
    font-size: 1.2rem;
    line-height: 1.2;
    text-align: center;
  }
  .l-nav-btn:hover .l-nav-btn__line {
    background: rgb(var(--darkred));
  }
}

/* .l-nav-contact
================================================== */
@media all and (min-width: 768px) {
  .l-nav-contact {
    position: absolute;
    top: 0;
    left: 0;
  }
  .l-nav-contact__link {
    font-size: 1.5rem;
    display: flex;
    width: 120px;
    height: 107px;
    color: #fff;
    background: rgb(var(--red));
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
  }
  .l-nav-contact__link-txt {
    padding-top: 32px;
    line-height: 1;
    position: relative;
    z-index: 3;
  }
  .l-nav-contact__link-txt::before {
    position: absolute;
    left: 50%;
    top: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    display: inline-block;
    width: 26px;
    height: 20px;
    vertical-align: middle;
    background: no-repeat center/contain;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2226.426%22%20height%3D%2220.359%22%20viewBox%3D%220%200%2026.426%2020.359%22%3E%20%3Cpath%20id%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2_25000%22%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%2025000%22%20d%3D%22M0-.5H25.426a.5.5%2C0%2C0%2C1%2C.5.5V19.359a.5.5%2C0%2C0%2C1-.5.5H0a.5.5%2C0%2C0%2C1-.5-.5V0A.5.5%2C0%2C0%2C1%2C0-.5ZM24.926.5H.5V18.859H24.926Z%22%20transform%3D%22translate(0.5%200.5)%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E7%B7%9A_448%22%20data-name%3D%22%E7%B7%9A%20448%22%20d%3D%22M.3%2C6.29l-.6-.8L7.491-.4l.6.8Z%22%20transform%3D%22translate(2.961%2010.601)%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E7%B7%9A_449%22%20data-name%3D%22%E7%B7%9A%20449%22%20d%3D%22M7.491%2C6.29-.3.4.3-.4%2C8.094%2C5.493Z%22%20transform%3D%22translate(15.674%2010.601)%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_66241%22%20data-name%3D%22%E3%83%91%E3%82%B9%2066241%22%20d%3D%22M15.1%2C14.817a3.075%2C3.075%2C0%2C0%2C1-2.013-.754L4.524%2C6.679l.653-.757%2C8.566%2C7.384a2.069%2C2.069%2C0%2C0%2C0%2C2.719%2C0l8.567-7.385.653.757-8.567%2C7.385A3.073%2C3.073%2C0%2C0%2C1%2C15.1%2C14.817Z%22%20transform%3D%22translate(-1.889%20-2.434)%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E");
    content: "";
    transition: all 0.3s ease;
  }
  .l-nav-contact__link:hover {
    background: rgb(var(--darkred));
  }
  .l-nav-contact.is-open {
    display: none;
  }
}

/* .l-nav
================================================ */
.l-nav {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  max-height: 100vh;
  min-width: 320px;
  padding: 100px 25px 55px;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  overflow: auto;
  -webkit-transform: translateX(-120%);
  transform: translateX(-120%);
  background: rgba(239, 239, 239, 0.92);
  transition: all 0.3s ease;
}
.l-nav::-webkit-scrollbar {
  display: none;
}
.l-nav.is-open {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
@media all and (min-width: 768px) {
  .l-nav {
    height: 100vh;
    min-height: 100vh;
    width: 515px;
    padding: 140px 0 0 215px;
  }
}

/* .l-nav-list
================================================== */
.l-nav-list__item + .l-nav-list__item {
  border-top: solid 1px #fff;
}
.l-nav-list__item-link {
  display: block;
  padding: 12px 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  position: relative;
}
.l-nav-list__item-link[class*=toggle] {
  padding-right: 30px;
  cursor: pointer;
}
.l-nav-list__item-link[class*=toggle]::before, .l-nav-list__item-link[class*=toggle]::after {
  position: absolute;
  top: 50%;
  right: 10px;
  content: "";
  display: block;
  width: 11px;
  height: 1px;
  margin-top: -1px;
  background: rgb(var(--red));
  z-index: 2;
  transition: all 0.3s ease;
}
.l-nav-list__item-link[class*=toggle]::before {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.l-nav-list__item-link[class*=toggle].is-active::before {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}
.l-nav-list__child {
  padding-left: 10px;
  padding-bottom: 16px;
}
.l-nav-list__child-item-link {
  display: block;
  padding: 1px 0 1px 15px;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  position: relative;
}
.l-nav-list__child-item-link::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 2px;
  background: rgb(var(--red));
  top: 14px;
  left: 0;
}
.l-nav-list__btn {
  width: 250px;
  margin: 40px auto 0;
}
.l-nav-list__btn-link {
  display: block;
  padding: 16px 15px;
  color: #fff;
  background: rgb(var(--red));
  position: relative;
}
.l-nav-list__btn-link::before {
  position: absolute;
  z-index: 1;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: inline-block;
  width: 18px;
  height: 9px;
  vertical-align: middle;
  background: no-repeat center/contain;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2228.733%22%20height%3D%2214.732%22%20viewBox%3D%220%200%2028.733%2014.732%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_27733%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%2027733%22%20transform%3D%22translate(0%20-2.514)%22%3E%20%3Cpath%20id%3D%22line%22%20d%3D%22M486.931-7.681H459.175v-1h27.756Z%22%20transform%3D%22translate(-459.175%2018.061)%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22rightEdge%22%20d%3D%22M-7.159%2C9.366l-.682-.732L-.721%2C2l-7.12-6.634.682-.732L.746%2C2Z%22%20transform%3D%22translate(27.987%207.88)%22%20fill%3D%22%23fff%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
  content: "";
  transition: all 0.3s ease;
}
.l-nav-list__btn-txt {
  padding-left: 45px;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 2;
}
.l-nav-list__btn-txt::before {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: inline-block;
  width: 26px;
  height: 20px;
  vertical-align: middle;
  background: no-repeat center/contain;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2226.426%22%20height%3D%2220.359%22%20viewBox%3D%220%200%2026.426%2020.359%22%3E%20%3Cpath%20id%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2_25000%22%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%2025000%22%20d%3D%22M0-.5H25.426a.5.5%2C0%2C0%2C1%2C.5.5V19.359a.5.5%2C0%2C0%2C1-.5.5H0a.5.5%2C0%2C0%2C1-.5-.5V0A.5.5%2C0%2C0%2C1%2C0-.5ZM24.926.5H.5V18.859H24.926Z%22%20transform%3D%22translate(0.5%200.5)%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E7%B7%9A_448%22%20data-name%3D%22%E7%B7%9A%20448%22%20d%3D%22M.3%2C6.29l-.6-.8L7.491-.4l.6.8Z%22%20transform%3D%22translate(2.961%2010.601)%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E7%B7%9A_449%22%20data-name%3D%22%E7%B7%9A%20449%22%20d%3D%22M7.491%2C6.29-.3.4.3-.4%2C8.094%2C5.493Z%22%20transform%3D%22translate(15.674%2010.601)%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_66241%22%20data-name%3D%22%E3%83%91%E3%82%B9%2066241%22%20d%3D%22M15.1%2C14.817a3.075%2C3.075%2C0%2C0%2C1-2.013-.754L4.524%2C6.679l.653-.757%2C8.566%2C7.384a2.069%2C2.069%2C0%2C0%2C0%2C2.719%2C0l8.567-7.385.653.757-8.567%2C7.385A3.073%2C3.073%2C0%2C0%2C1%2C15.1%2C14.817Z%22%20transform%3D%22translate(-1.889%20-2.434)%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E");
  content: "";
  transition: all 0.3s ease;
}
@media all and (min-width: 768px) {
  .l-nav-list {
    position: relative;
    width: 220px;
  }
  .l-nav-list__item-link {
    font-size: 1.7rem;
    transition: all 0.3s ease;
  }
  .l-nav-list__item-link:hover {
    color: rgb(var(--red));
  }
  .l-nav-list__child-item-link {
    font-size: 1.3rem;
    transition: all 0.3s ease;
  }
  .l-nav-list__child-item-link:hover {
    color: rgb(var(--red));
  }
  .l-nav-list__btn {
    margin: 200px 0 0 0;
  }
  .l-nav-list__btn-link {
    transition: all 0.3s ease;
  }
  .l-nav-list__btn-link:hover {
    background: rgb(var(--darkred));
  }
}

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

/* .l-ie-attention
================================================ */
.l-ie-attention {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  font-weight: 700;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  box-sizing: border-box;
}
.l-ie-attention__txt {
  font-size: 3rem;
  margin-bottom: 18px;
}
.l-ie-attention__note {
  color: #989898;
}
.l-ie-attention__note .l-ie-attention__note-link {
  display: inline-block;
}
.l-ie-attention__note-link {
  font-size: 1.8rem;
  border-bottom: 1px solid;
  position: relative;
  margin-right: 25px;
  display: inline-block;
}
.l-ie-attention__note-link::after {
  content: "";
  position: absolute;
  right: -18px;
  top: 13px;
  width: 11px;
  height: 11px;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2012%2012%22%3E%20%3Cg%20id%3D%22link%22%20transform%3D%22translate(0.5%200.5)%22%3E%20%3Crect%20id%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2_23829%22%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%2023829%22%20width%3D%228%22%20height%3D%228%22%20transform%3D%22translate(3)%22%20fill%3D%22none%22%20stroke%3D%22%23989898%22%20stroke-width%3D%221%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_4323%22%20data-name%3D%22%E3%83%91%E3%82%B9%204323%22%20d%3D%22M688%2C718.025h-6v-6%22%20transform%3D%22translate(-682%20-707.025)%22%20fill%3D%22none%22%20stroke%3D%22%23989898%22%20stroke-width%3D%221%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center/100%;
}

/* .l-main-img HOME
================================================ */
.l-main-img {
  position: relative;
}
.l-main-img__mv {
  overflow: hidden;
}
.l-main-img__mv .slick-list {
  font-size: 0;
}
.l-main-img__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.l-main-img__area-txt {
  margin-top: -140px;
  text-align: center;
  letter-spacing: 0.1em;
}
.l-main-img__copy {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.75;
  color: #fff;
  margin-bottom: 10px;
}
.l-main-img__txt {
  display: inline-block;
  text-align: center;
  font-size: 2.1rem;
  line-height: 1;
  font-weight: 700;
  background: #fff;
  padding: 0 0 1px 3px;
}
.l-main-img__scroll-link {
  display: inline-block;
  position: absolute;
  right: 10px;
  bottom: 165px;
  z-index: 2;
  padding: 10px 10px 40px;
  font-size: 1rem;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
  transition: 0.2s;
  overflow: hidden;
  color: #fff;
}
.l-main-img__scroll-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -1px;
  width: 1px;
  height: 30px;
  background: #fff;
  -webkit-animation: sdl03 2s cubic-bezier(1, 0, 0, 1) infinite;
  animation: sdl03 2s cubic-bezier(1, 0, 0, 1) infinite;
}
@media all and (max-width: 374px) {
  .l-main-img__inner {
    padding-right: 15px;
    padding-left: 15px;
  }
  .l-main-img__copy {
    font-size: 1.5rem;
  }
}
@media all and (min-width: 768px) {
  .l-main-img__inner {
    left: 50%;
    height: 740px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    justify-content: flex-start;
    align-items: flex-end;
    max-width: 100%;
  }
  .l-main-img__area-txt {
    padding-left: 120px;
    padding-bottom: 180px;
    text-align: left;
  }
  .l-main-img__copy {
    font-size: 2.6rem;
  }
  .l-main-img__txt {
    font-size: 5.3rem;
    padding: 0 0 3px 3px;
  }
  .l-main-img__mv-item {
    position: relative;
    overflow: hidden;
    height: 740px;
  }
  .l-main-img__mv img {
    /*max-width: 1800px!important;*/
				width: 100%;
    height: 740px;
				 object-fit: cover;
				/*
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -900px;
    margin-top: -370px;
				*/
  }
}

/* .l-main-img-news
================================================ */
.l-main-img-news {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}
.l-main-img-news::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgb(var(--black));
  opacity: 0.6;
  z-index: 1;
}
.l-main-img-news__inner {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 15px 20px ;
}
.l-main-img-news__meta {
  line-height: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 5px;
}
.l-main-img-news__cat {
  font-size: 1rem;
  padding: 3px 10px 2px;
  border: solid 1px;
  margin-right: 10px;
}
.l-main-img-news__date {
  font-size: 1.2rem;
}
.l-main-img-news__txt {
  line-height: 1.5;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.l-main-img-news__btn {
  margin: 15px auto 0;
  text-align: center;
  padding-top: 10px;
  border-top: solid 1px rgba(255, 255, 255, 0.6);
}
.l-main-img-news__btn-link {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
}
.l-main-img-news__btn-txt {
  position: relative;
}
.l-main-img-news__btn-txt::before {
  position: absolute;
  z-index: 1;
  right: -40px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: inline-block;
  width: 18px;
  height: 9px;
  vertical-align: middle;
  background: no-repeat center/contain;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2228.733%22%20height%3D%2214.732%22%20viewBox%3D%220%200%2028.733%2014.732%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_27733%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%2027733%22%20transform%3D%22translate(0%20-2.514)%22%3E%20%3Cpath%20id%3D%22line%22%20d%3D%22M486.931-7.681H459.175v-1h27.756Z%22%20transform%3D%22translate(-459.175%2018.061)%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22rightEdge%22%20d%3D%22M-7.159%2C9.366l-.682-.732L-.721%2C2l-7.12-6.634.682-.732L.746%2C2Z%22%20transform%3D%22translate(27.987%207.88)%22%20fill%3D%22%23fff%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
  content: "";
  transition: all 0.3s ease;
}
@media all and (max-width: 767px) {
  .l-main-img-news__list {
    width: 100%;
    max-height: 70px;
    overflow-y: scroll;
    padding-right: 10px;
    box-sizing: border-box;
  }
  .l-main-img-news__list::-webkit-scrollbar {
    width: 4px;
  }
  .l-main-img-news__list::-webkit-scrollbar-thumb {
    background-color: rgb(var(--red));
  }
  .l-main-img-news__list::-webkit-scrollbar-track {
    background-color: rgba(232, 232, 232, 0.3);
  }
  .l-main-img-news__item + .l-main-img-news__item {
    margin-top: 15px;
    padding-top: 15px;
    border-top: solid 1px rgba(255, 255, 255, 0.6);
  }
  .l-main-img-news__link {
    display: block;
    padding-right: 10px;
  }
}
@media all and (min-width: 768px) {
  .l-main-img-news {
    width: calc(100% - 20px);
    margin: 10px;
  }
  .l-main-img-news__inner {
    padding: 30px 0 30px 115px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .l-main-img-news__head {
    width: 220px;
  }
  .l-main-img-news__head-en {
    line-height: 1;
    font-size: 2.2rem;
    color: rgb(var(--red));
  }
  .l-main-img-news__list {
    width: calc(100% - 220px);
    display: flex;
    flex-wrap: wrap;
  }
  .l-main-img-news__item {
    width: 50%;
    padding: 0 40px;
    box-sizing: border-box;
  }
  .l-main-img-news__item + .l-main-img-news__item {
    border-left: solid 1px rgba(255, 255, 255, 0.6);
  }
  .l-main-img-news__link {
    transition: all 0.3s ease;
  }
  .l-main-img-news__link:hover {
    color: rgb(var(--gray));
  }
  .l-main-img-news__txt {
    font-size: 1.6rem;
  }
  .l-main-img-news__btn {
    border-top: none;
    text-align: left;
    padding-top: 0;
    margin-top: 8px;
  }
  .l-main-img-news__btn-txt {
    font-size: 1.3rem;
  }
  .l-main-img-news__btn-txt::before {
    right: -50px;
  }
  .l-main-img-news__btn-link {
    transition: all 0.3s ease;
  }
  .l-main-img-news__btn-link:hover {
    color: rgb(var(--gray));
  }
  .l-main-img-news__btn-link:hover .l-main-img-news__btn-txt::before {
    display: inline-block;
    width: 18px;
    height: 9px;
    vertical-align: middle;
    background: no-repeat center/contain;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2228.733%22%20height%3D%2214.732%22%20viewBox%3D%220%200%2028.733%2014.732%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_27733%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%2027733%22%20transform%3D%22translate(0%20-2.514)%22%3E%20%3Cpath%20id%3D%22line%22%20d%3D%22M486.931-7.681H459.175v-1h27.756Z%22%20transform%3D%22translate(-459.175%2018.061)%22%20fill%3D%22%23a0a0a0%22%2F%3E%20%3Cpath%20id%3D%22rightEdge%22%20d%3D%22M-7.159%2C9.366l-.682-.732L-.721%2C2l-7.12-6.634.682-.732L.746%2C2Z%22%20transform%3D%22translate(27.987%207.88)%22%20fill%3D%22%23a0a0a0%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
    content: "";
    transition: all 0.3s ease;
  }
}

/* .l-sub-img
================================================ */
.l-sub-img {
  background: #ccc;
  font-size: 1.5rem;
  text-align: center;
}
.l-sub-img__inner {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  height: 120px;
}
@media all and (min-width: 768px) {
  .l-sub-img {
    font-size: 2rem;
  }
}

/* .l-sidebar
================================================== */
.js-c-anime-elem[data-anime=fadein-up] {
  opacity: 0;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  transition: all 0.6s 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);
}

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

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

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

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

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

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

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

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

#home {
  background: rgb(var(--bg));
}

/* .home-about
================================================ */
.home-about {
  position: relative;
}
.home-about::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 375px;
  height: 164px;
  background: url(../img/home/bg_about01.png) no-repeat center 100%/cover;
  z-index: -2;
}
.home-about::after {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  width: 557px;
  height: 244px;
  background: url(../img/home/bg_about02.png) no-repeat center 100%/cover;
  z-index: -2;
}
.home-about__en {
  position: absolute;
  bottom: 25px;
  right: 25px;
  color: #F7F7F7;
  font-size: 5rem;
  letter-spacing: 0.1em;
  line-height: 1.1;
  text-align: right;
  z-index: -1;
}
.home-about__inner {
  padding-top: 45px;
  padding-bottom: 60px;
}
.home-about__tit {
  font-size: 2rem;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 30px;
}
.home-about__copy {
  margin-top: 10px;
  font-weight: 700;
  color: rgb(var(--red));
}
.home-about__img {
  margin: 30px 13px 0;
  text-align: center;
}
@media all and (min-width: 768px) {
  .home-about::before {
    width: 890px;
    height: 390px;
  }
  .home-about::after {
    width: 1259px;
    height: 552px;
    bottom: -50px;
  }
  .home-about__en {
    bottom: 60px;
    right: 60px;
    font-size: 11.7rem;
  }
  .home-about__inner {
    padding-top: 100px;
    padding-bottom: 120px;
  }
  .home-about__wrap {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
  }
  .home-about__area-txt {
    width: 50%;
    padding-top: 55px;
  }
  .home-about__area-img {
    width: 50%;
    box-sizing: border-box;
  }
  .home-about__img {
    margin: 0;
  }
  .home-about__tit {
    font-size: 3.2rem;
    margin-bottom: 40px;
    text-align: left;
  }
  .home-about__copy {
    margin-top: 20px;
    font-size: 1.8rem;
    letter-spacing: 0.02em;
  }
}
@media all and (min-width: 1360px ) {
  .home-about__inner {
    max-width: 1300px;
  }
  .home-about__area-img {
    padding-left: 60px;
  }
}

/* .home-strong
================================================ */
.home-strong {
  background: url(../img/home/bg_strong01_sp.jpg) no-repeat 0 100%/cover;
}
.home-strong__inner {
  padding-top: 60px;
  padding-bottom: 60px;
  color: #fff;
}
.home-strong__img {
  width: 105px;
  margin: 30px auto 0;
}
@media all and (min-width: 768px) {
  .home-strong {
    background: url(../img/home/bg_strong01_pc.jpg) no-repeat 0 100%/cover;
  }
  .home-strong__inner {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .home-strong__wrap {
    display: flex;
    flex-wrap: wrap;
  }
  .home-strong__head .c-head01__en {
    -webkit-transform: translateX(-32px);
    transform: translateX(-32px);
  }
  .home-strong__head .c-head01__main {
    -webkit-transform: translateX(-15px);
    transform: translateX(-15px);
  }
  .home-strong__area-txt {
    width: calc(100% - 192px);
    padding-left: 205px;
    padding-right: 60px;
    box-sizing: border-box;
  }
  .home-strong__img {
    width: 192px;
    margin: -70px 0 0;
  }
}
@media (min-width: 1600px) {
  .home-strong__inner {
    max-width: 1500px;
  }
  .home-strong__area-txt {
    width: calc(100% - 392px);
  }
  .home-strong__img {
    width: 392px;
    padding-right: 200px;
    box-sizing: border-box;
  }
}

/* .home-message
================================================ */
.home-message {
  position: relative;
}
.home-message::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 945px;
  left: 0;
  bottom: 0;
  background: url(../img/home/bg_message01_sp.jpg) no-repeat 0 100%/cover;
  z-index: -1;
}
.home-message__en {
  position: absolute;
  bottom: 940px;
  right: 25px;
  color: #F7F7F7;
  font-size: 5rem;
  line-height: 1.1;
  text-align: right;
  z-index: -1;
}
.home-message__inner {
  padding-top: 60px;
  padding-bottom: 60px;
}
.home-message__tit {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 15px;
}
.home-message__txt + .home-message__txt {
  margin-top: 2em;
}
.home-message__txt.has-mt {
  margin-top: 20px;
}
.home-message__img {
  width: 202px;
  margin: 30px auto 10px;
}
.home-message__cap {
  font-size: 1.3rem;
  line-height: 1.5;
}
@media all and (min-width: 768px) {
  .home-message {
    margin-top: 0;
  }
  .home-message::before {
    height: 743px;
    background: url(../img/home/bg_message01_pc.jpg) no-repeat 0 100%/cover;
  }
  .home-message__en {
    bottom: 728px;
    font-size: 15.3rem;
  }
  .home-message__inner {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .home-message__wrap {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
  }
  .home-message__area-txt {
    width: 50%;
  }
  .home-message__tit {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }
  .home-message__area-img {
    width: 50%;
    padding-right: 70px;
    box-sizing: border-box;
  }
  .home-message__img {
    width: 100%;
    margin: 0;
  }
  .home-message__cap {
    margin-top: 20px;
    font-size: 1.5rem;
    line-height: 2;
  }
}
@media (min-width: 1600px) {
  .home-message__inner {
    max-width: 1500px;
  }
  .home-message__wrap {
    width: 1100px;
    margin: 0 auto;
  }
}

/* .home-forth
================================================ */
.home-forth__inner {
  padding-top: 60px;
  padding-bottom: 60px;
}
.home-forth-list {
  border-bottom: solid 2px #fff;
}
.home-forth-list__item {
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: solid 2px #fff;
  position: relative;
}
.home-forth-list__item::before {
  position: absolute;
  content: "";
  width: 25px;
  height: 2px;
  top: -2px;
  right: 0;
  background: rgb(var(--red));
}
.home-forth-list__area-txt {
  margin: 0 10px;
}
.home-forth-list__num {
  position: absolute;
  top: 20px;
  right: 0;
  font-size: 7rem;
  color: #F7F7F7;
  letter-spacing: 0.1em;
  line-height: 1;
  z-index: -1;
}
.home-forth-list__en {
  font-size: 1rem;
  color: rgb(var(--red));
  margin-bottom: 5px;
}
.home-forth-list__tit {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 20px;
}
.home-forth-list__txt {
  position: relative;
  margin: 0 0 -15px;
  padding: 15px 10px;
  color: #fff;
  z-index: 2;
}
.home-forth-list__txt::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(var(--black));
  opacity: 0.85;
  z-index: -1;
}
.home-forth-list__btn {
  width: 200px;
}
@media all and (min-width: 768px) {
  .home-forth__inner {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .home-forth-list__item {
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
    min-height: 620px;
    box-sizing: border-box;
  }
  .home-forth-list__area-img {
    position: absolute;
    top: 100px;
    left: 665px;
    width: 836px;
    height: 420px;
  }
  .home-forth-list__area-txt {
    width: 750px;
    margin: 0;
  }
  .home-forth-list__num {
    font-size: 11.8rem;
    top: 70px;
    right: auto;
    left: 480px;
  }
  .home-forth-list__en {
    font-size: 1.4rem;
  }
  .home-forth-list__tit {
    font-size: 3.2rem;
    margin-bottom: 30px;
  }
  .home-forth-list__txt {
    margin: 0;
    padding: 30px 40px;
    position: relative;
    opacity: 0.85;
    z-index: 2;
  }
  .home-forth-list__btn {
    width: 405px;
    margin: 20px auto 0 0;
  }
}
@media (min-width: 1650px) {
  .home-forth__inner {
    max-width: 1500px;
  }
}

/* .home-work
================================================ */
.home-work {
  position: relative;
}
.home-work::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 475px;
  background: url(../img/home/bg_work02_sp.jpg) no-repeat 0 100%/cover;
  top: 0;
  left: 0;
  z-index: -1;
}
.home-work::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 273px;
  background: url(../img/home/bg_works01_sp.png) no-repeat 0 100%/cover;
  bottom: 0;
  left: 0;
  z-index: -2;
}
.home-work__inner {
  padding-top: 60px;
  padding-bottom: 60px;
}
.home-work-tag {
  padding-top: 10px;
  padding-bottom: 20px;
  text-align: center;
}
.home-work-tag__item {
  margin: 3px 0;
  display: inline-block;
}
.home-work-tag__item-link {
  display: block;
  line-height: 1;
  padding: 5px 8px;
  border-radius: 3px;
  font-weight: 700;
  background: #fff;
  border: solid 1px #fff;
}
.home-work-tag__item-link.is-current {
  background: rgb(var(--red));
  color: #fff;
}
.home-work-list {
  padding: 0 50px;
}
.home-work-list__item {
  background: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.home-work-list__item.is-hide {
  display: none !important;
}
.home-work-list__area-img {
  position: relative;
}
.home-work-list__cat {
  font-size: 1.3rem;
  padding: 0 10px;
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  background: rgb(var(--black));
  z-index: 2;
}
.home-work-list__area-txt {
  padding: 20px 15px;
}
.home-work-list__head {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.6;
}
.home-work-list__txt {
  margin-top: 5px;
  font-size: 1.3rem;
  line-height: 1.46;
}
.home-work-list__area {
  padding: 2px 5px;
  font-size: 1.3rem;
  line-height: 1.46;
  display: inline-block;
  background: #EFEFEF;
}
.home-work-list__wrap {
  margin: -10px -25px;
}
.home-work .slick-slide {
  margin: 10px;
}
.home-work .slick-arrow {
  overflow: hidden;
  text-indent: 300px;
  white-space: nowrap;
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  top: 50%;
  right: 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: rgb(var(--black));
  border: none;
  box-sizing: border-box;
  z-index: 2;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.home-work .slick-arrow::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  display: inline-block;
  width: 18px;
  height: 9px;
  vertical-align: middle;
  background: no-repeat center/contain;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2228.733%22%20height%3D%2214.732%22%20viewBox%3D%220%200%2028.733%2014.732%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_27733%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%2027733%22%20transform%3D%22translate(0%20-2.514)%22%3E%20%3Cpath%20id%3D%22line%22%20d%3D%22M486.931-7.681H459.175v-1h27.756Z%22%20transform%3D%22translate(-459.175%2018.061)%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22rightEdge%22%20d%3D%22M-7.159%2C9.366l-.682-.732L-.721%2C2l-7.12-6.634.682-.732L.746%2C2Z%22%20transform%3D%22translate(27.987%207.88)%22%20fill%3D%22%23fff%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
  content: "";
  transition: all 0.3s ease;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.home-work .slick-arrow.slick-prev {
  left: 10px;
  -webkit-transform: translateY(-50%) scale(-1, 1);
  transform: translateY(-50%) scale(-1, 1);
}
@media all and (min-width: 768px) {
  .home-work::before {
    height: 452px;
    background: url(../img/home/bg_work02_pc.jpg) no-repeat 0 100%/cover;
  }
  .home-work::after {
    width: 100%;
    height: 576px;
    right: 0;
    background: url(../img/home/bg_works01_pc.png) no-repeat 0 100%/cover;
  }
  .home-work__inner {
    padding-top: 80px;
    padding-bottom: 120px;
  }
  .home-work-tag__item {
    margin: 5px 0;
  }
  .home-work-tag__item-link {
    font-size: 1.6rem;
    padding: 7px 10px;
    transition: all 0.3s ease;
  }
  .home-work-tag__item-link:hover {
    background: rgb(var(--red));
    color: #fff;
  }
  .home-work-list {
    padding: 0 80px;
  }
  .home-work-list__wrap {
    margin: -10px 0 -20px;
  }
  .home-work .slick-slide {
    margin: 30px 20px 10px;
  }
  .home-work .slick-arrow {
    width: 56px;
    height: 56px;
  }
  .home-work .slick-arrow::before {
    display: inline-block;
    width: 22px;
    height: 12px;
    vertical-align: middle;
    background: no-repeat center/contain;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2228.733%22%20height%3D%2214.732%22%20viewBox%3D%220%200%2028.733%2014.732%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_27733%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%2027733%22%20transform%3D%22translate(0%20-2.514)%22%3E%20%3Cpath%20id%3D%22line%22%20d%3D%22M486.931-7.681H459.175v-1h27.756Z%22%20transform%3D%22translate(-459.175%2018.061)%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22rightEdge%22%20d%3D%22M-7.159%2C9.366l-.682-.732L-.721%2C2l-7.12-6.634.682-.732L.746%2C2Z%22%20transform%3D%22translate(27.987%207.88)%22%20fill%3D%22%23fff%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
    content: "";
    transition: all 0.3s ease;
  }
}
@media all and (min-width: 1160px) {
  .home-work .slick-arrow {
    transition: all 0.3s ease;
  }
  .home-work .slick-arrow:hover {
    background: rgb(var(--red));
  }
}
@media (min-width: 1600px) {
  .home-work-tag {
    margin: 0 -100px;
  }
  .home-work-tag__item-link {
    padding: 7px 14px;
  }
  .home-work-list__area-txt {
    padding: 20px;
  }
  .home-work-list__cat {
    font-size: 1.6rem;
  }
  .home-work-list__head {
    font-size: 1.8rem;
  }
  .home-work-list__txt {
    margin-top: 10px;
    font-size: 1.6rem;
  }
  .home-work-list__area {
    margin: 10px 0;
    font-size: 1.5rem;
  }
  .home-work-list__wrap {
    margin: -10px -14%;
  }
}

/* .home-links
================================================ */
.home-links {
  background: url(../img/home/bg_links01_sp.jpg) no-repeat 0 100%/cover;
  position: relative;
}
.home-links__en {
  position: absolute;
  top: 20px;
  left: 5px;
  font-size: 6rem;
  letter-spacing: 0.1em;
  line-height: 1;
}
.home-links__inner {
  padding-top: 60px;
  padding-bottom: 60px;
}
.home-links-sec {
  position: relative;
}
.home-links-sec + .home-links-sec {
  margin-top: 15px;
}
.home-links-sec:nth-child(2) .home-links-sec__link::before {
  background-image: url(../img/home/bg_links02.jpg);
}
.home-links-sec:nth-child(3) .home-links-sec__link::before {
  background-image: url(../img/home/bg_links03.jpg);
}
.home-links-sec:nth-child(4) .home-links-sec__link::before {
  background-image: url(../img/home/bg_links04.jpg);
}
.home-links-sec__link {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  height: 180px;
  position: relative;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  transition: all 0.3s ease;
  overflow: hidden;
}
.home-links-sec__link::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/home/bg_links01.jpg) no-repeat 0 100%/cover;
  z-index: -1;
}
.home-links-sec__area-txt {
  margin: 0 15px 30px 35px;
  line-height: 1.6;
  z-index: 2;
}
.home-links-sec__txt {
  font-size: 1.2rem;
  margin-bottom: 5px;
  font-weight: normal;
}
.home-links-sec__head {
  font-size: 2rem;
  font-weight: 700;
  position: relative;
}
.home-links-sec__head::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 1px;
  background: #fff;
  top: 50%;
  left: -35px;
}
@media all and (min-width: 768px) {
  .home-links {
    background: url(../img/home/bg_links01_pc.jpg) no-repeat 0 100%/cover;
  }
  .home-links__inner {
    max-width: 100%;
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .home-links__en {
    font-size: 11.7rem;
    top: 60px;
    left: 90px;
  }
  .home-links-sec {
    width: calc(50% - 50px);
    margin: 25px;
    box-sizing: border-box;
  }
  .home-links-sec__wrap {
    display: flex;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
  }
  .home-links-sec + .home-links-sec {
    margin: 25px;
  }
  .home-links-sec__area-txt {
    margin-left: 60px;
    margin-bottom: 40px;
  }
  .home-links-sec__link {
    height: 268px;
  }
  .home-links-sec__link::before {
    transition: all 0.3s ease;
  }
  .home-links-sec__link:hover::before {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  .home-links-sec__txt {
    font-size: 1.7rem;
  }
  .home-links-sec__head {
    font-size: 2.5rem;
  }
  .home-links-sec__head::before {
    width: 37px;
    left: -60px;
  }
}

/* .home-info
================================================ */
.home-info {
  position: relative;
}
.home-info::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 800px;
  background: url(../img/home/bg_info01_sp.png) no-repeat 0 100%/cover;
  bottom: -100px;
  left: 0;
  z-index: -1;
}
.home-info__inner {
  padding-top: 60px;
  padding-bottom: 60px;
}
.home-info-sec + .home-info-sec {
  margin-top: 60px;
}
.home-info-sheet {
  margin-top: 60px;
  position: relative;
  color: #fff;
}
.home-info-sheet::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/home/bg_sheet01_sp.jpg) no-repeat 0 100%/cover;
  top: 0;
  left: 0;
}
.home-info-sheet::after {
  position: absolute;
  content: "";
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  top: 10px;
  left: 10px;
  background: #000;
  opacity: 0.3;
}
.home-info-sheet__wrap {
  position: relative;
  z-index: 2;
  padding-bottom: 10px;
}
.home-info-sheet__area-txt {
  text-align: center;
  padding: 30px 30px 0;
}
.home-info-sheet__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.home-info-sheet__ico {
  width: 40px;
}
.home-info-sheet__tit {
  text-align: left;
  font-size: 2.1rem;
  font-weight: 700;
  padding-left: 15px;
  box-sizing: border-box;
}
.home-info-sheet__area-img {
  margin: 30px 10px 0;
  text-align: center;
}
@media all and (min-width: 768px) {
  .home-info::after {
    width: 100%;
    height: 1207px;
    background: url(../img/home/bg_info01_pc.png) no-repeat 0 100%/cover;
    bottom: -150px;
  }
  .home-info__inner {
    padding-top: 120px;
    padding-bottom: 120px;
    padding-right: 0;
    padding-left: 0;
  }
  .home-info-sec {
    width: calc(50% - 60px);
    margin: 0 30px;
  }
  .home-info-sec__wrap {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -30px;
  }
  .home-info-sec + .home-info-sec {
    margin-top: 0;
  }
  .home-info-sheet {
    width: 1100px;
    margin: 120px auto 0;
  }
  .home-info-sheet::before {
    background: url(../img/home/bg_sheet01_pc.jpg) no-repeat 0 100%/cover;
  }
  .home-info-sheet::after {
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    top: 15px;
    left: 15px;
  }
  .home-info-sheet__wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    box-sizing: border-box;
  }
  .home-info-sheet__area-txt {
    padding: 0 0 0 55px;
    width: calc(100% - 494px);
    box-sizing: border-box;
  }
  .home-info-sheet__head {
    justify-content: flex-start;
  }
  .home-info-sheet__ico {
    width: 59px;
    margin: 0;
  }
  .home-info-sheet__tit {
    font-size: 3.2rem;
    line-height: 1.5;
  }
  .home-info-sheet__txt {
    text-align: left;
    margin-top: 10px;
  }
  .home-info-sheet__btn {
    margin: 20px auto 0 0;
  }
  .home-info-sheet__area-img {
    margin: 0;
    width: 494px;
  }
}
@media all and (min-width: 1360px ) {
  .home-info__inner {
    max-width: 1260px;
  }
}

.pc-header{
 display: none;
}
@media all and (min-width: 768px) {
	.pc-header{
		position: fixed;
		left: 0px;
		top: 0px;
		width: 100%;
		display: block;
		z-index: 99999;
		background: #FFF;
	}
	.pc-header .pc-header-info{
		margin: 0px;
		padding: 0px;
		/*
		display: flex;
		flex-wrap: wrap;
		*/
		position: relative;
	}
	.pc-header .pc-header-info .logo{
	 padding: 0px 0px 0px 0px;
		background: #000;
		text-align: center;
		width: 100px;
		height: 100px;
		font-size: 0px;
		position: absolute;
	}
	.pc-header .pc-header-info .logo img{
	 width: 50px;
		margin-top: 25px;
	}
	.pc-header .pc-header-info .nav-list{
		margin: 0px 0px 0px 100px;
		padding: 17px 0px;
		border-bottom: 3px solid #c40406;
		display: flex;
		flex-wrap: wrap;
    /*width : -webkit-calc(100% - 120px) ;
    width : calc(100% - 120px) ;*/
	}
	.pc-header .pc-header-info .nav-list li{
	 display: block;
		border-left: 1px solid #DEDEDE;
		border-right: 1px solid #CCC;
		width: 12.2%;
	}
	.pc-header .pc-header-info .nav-list-8 li{
		width: 13%;
	}	
	.pc-header .pc-header-info .nav-list li.home{
		width: 12%;
	}
	.pc-header .pc-header-info .nav-list-8 li.home{
		width: 12%;
	}	
	.pc-header .pc-header-info .nav-list li a{
	 display: block;
		text-align: center;
		padding: 0px 0px;
		font-size: 0.93vw;
		line-height: 30px;
		text-decoration: none;
		color: #000;
		transition: all 300ms 0s ease;
	}
	.pc-header .pc-header-info .nav-list li a:hover{
	 color: #c40406;;
	}
	.pc-header .pc-header-info .nav-list li a .sub{
		font-size: 0.7vw;
		line-height: 1.2;
	}
}

.footNavi{
 margin: 0px;
	padding: 0px;
	position:fixed;
	left: 0px;
	bottom: 0px;
	width: 100%;
	z-index: 999999;
}
.footNavi .btnList{
 	width: 100%;
		display: flex;
		flex-wrap: wrap;
}
.footNavi .btnList .btn{
	 margin: 0px;
		padding: 0px;
		width: 50%;
		text-align: center;
}
.footNavi .btnList-3 .btn{
		width : -webkit-calc(100%/3);
   width : calc(100%/3) ;
}


.footNavi .btnList .btn-contact{
	background: #c40406;
	color: #FFF;
}
.footNavi .btnList .btn-request{
	background: #fcb7b7;
	color: #2c2c2c;
}
.footNavi .btnList .btn-case{
	background: #F7F7F7;
	color: #2c2c2c;
	letter-spacing: -0.05em;
}
.footNavi .btnList .btn a{
 display: block;
	padding: 5px 0px;
	font-size: 14px;
	text-decoration: none;
	line-height: 1.1;
}
.footNavi .btnList .btn a img{
 width: auto;
	height: 25px;
	margin: 0px 0px 5px 0px;
}

.topBtn{
 position: fixed;
	right: 10px;
	bottom: 65px;
	width: 80px;
	z-index: 999999;
}
.topBtn a{
 width: auto;
	padding: 20px 0px;
	font-size: 13px;
	line-height: 20px;
	display: block;
	background: #FFF;
	border-radius: 50%;
	box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.4);
	color: #000;
	text-align: center;
	text-decoration: none;
}

@media all and (min-width: 768px) {
	.footNavi{
		bottom: 0px;
		width: auto;
	}
	.footNavi .btnList{
			width: auto;
			display: block;
	}
	.footNavi .btnList .btn{
			margin: 0px 0px 20px -20px;
			padding: 0px 0px 0px 20px;
			width: 130px;
			text-align: center;
			border-radius: 0px 20px 20px 0px;
			overflow: hidden;
			transition: all 300ms 0s ease;
			box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.4);
	}
	.footNavi .btnList .btn:hover{
		 margin: 0px 0px 20px 0px;
	}
	.footNavi .btnList .btn a{
	 padding: 20px 0px;
	}
	.topBtn{
		right: 20px;
		bottom: 20px;
		width: 100px;
		transition: all 300ms 0s ease;
	}
	.topBtn a{
		width: auto;
		padding: 30px 0px;
		font-size: 16px;
		line-height: 20px;
	}
	.topBtn:hover{
	  bottom: 30px;
	}
	
}