@charset "UTF-8";
:root {
  --black: 51,51,51;
  --dark_blue: 26,50,140;
  --logo_blue: 15, 164, 236;
  --sky_blue: 18,160,231;
  --note: 136, 136, 136;
  --border: 187, 199, 206;
  --bg_light_gray: 241, 244, 248;
  --bg_cv: 15, 91, 204;
  --contents_width: 1100px;
  --contents_wide_width: 1480px;
  --body_padding_side: 100px;
  --contents_width_with_padding: 1200px;
  --contents_wide_width_with_padding: 1580px;
  --sidebar_width: 250px;
  --header_height_sp: 40px;
  --header_height_pc: 70px;
  --line_height_def: 2;
  --line_height_medium: 1.8;
  --line_height_head: 1.45;
  --line_height_tight: 1.2;
}

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

picture source {
  position: absolute;
}

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: inherit;
  color: inherit;
  text-align: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  outline: none;
  border: 1px solid;
  border-radius: 0;
  background: none;
}

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

@media all and (max-width: 767px) {
  input[type=text], input[type=email], input[type=tel], textarea, select, option {
    font-size: 1.6rem;
  }
}

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

textarea {
  resize: vertical;
}

button {
  margin: 0;
  padding: 0;
  cursor: pointer;
  border: none;
}

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

.l-wrapper {
  position: relative;
}

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

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

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

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

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

@media all and (min-width: 1200px) {
  .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-en {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: var(--line_height_tight);
  font-style: italic;
}

.u-underline {
  text-decoration: underline;
}

.u-italic {
  font-style: italic;
  letter-spacing: 0.02em;
}

.u-palt {
  font-feature-settings: "palt" 1;
}

.u-small {
  font-size: 1.2rem;
}
@media all and (min-width: 768px) {
  .u-small {
    font-size: 1.4rem;
  }
}

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

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

/* layout
-------------------------------------- */
.u-inner {
  box-sizing: border-box;
  padding-left: 20px;
  padding-right: 20px;
}
@media all and (min-width: 768px) {
  .u-inner {
    width: 100%;
    max-width: var(--contents_width_with_padding);
    margin-right: auto;
    margin-left: auto;
    padding-left: 50px;
    padding-right: 50px;
  }
  .u-inner.is-wide {
    max-width: var(--contents_wide_width_with_padding);
  }
}

/*  .c-archive01
================================================== */
.c-archive01__item {
  border-bottom: 1px solid rgba(var(--border), 0.7);
}
.c-archive01__item:first-of-type .c-archive01__item-in {
  padding-top: 0;
}
.c-archive01__item-in {
  display: flex !important;
  justify-content: space-between;
  align-items: flex-start;
  padding: 15px 0;
  transition: color 0.3s ease;
}
.c-archive01__item-date {
  background: #fff;
  width: 62px;
  height: 62px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 1.3rem;
  line-height: 1;
  border-radius: 50%;
  box-sizing: border-box;
}
.c-archive01__item-date-year {
  font-size: 1.1rem;
  margin-left: 0.2em;
}
.c-archive01__item-data {
  flex-basis: calc(100% - 75px);
  max-width: calc(100% - 75px);
}
.c-archive01__item-cat {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin: 0 -5px -5px 0;
  font-size: 1rem;
  line-height: var(--line_height_tight);
}
.c-archive01__item-cat-item {
  margin: 0 5px 5px 0;
  padding: 3px 15px;
  background: rgb(var(--dark_blue));
  color: #fff;
  border-radius: 999px;
  white-space: nowrap;
}
@media all and (max-width: 767px) {
  .c-archive01__item-head {
    font-size: 1.3rem;
    margin-top: 5px;
  }
}
@media all and (min-width: 768px) {
  .c-archive01__item-in {
    padding: 12px 0;
  }
  .c-archive01__item-date {
    width: 75px;
    height: 75px;
    font-size: 1.7rem;
  }
  .c-archive01__item-date-year {
    font-size: 1.2rem;
  }
  .c-archive01__item-data {
    flex-basis: calc(100% - 110px);
    max-width: calc(100% - 110px);
    display: flex;
    align-items: center;
    align-self: center;
  }
  .c-archive01__item-cat {
    font-size: 1.2rem;
  }
  .c-archive01__item-cat-item {
    padding-bottom: 4px;
  }
  .c-archive01__item-head {
    margin-left: 20px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-archive01__item-in:hover {
    color: rgb(var(--dark_blue));
  }
}

/*  .c-archive02.is-slider
================================================== */
@media all and (max-width: 767px) {
  .c-archive02.is-slider {
    margin: 0 -15px;
  }
  .c-archive02.is-slider .c-archive02__item {
    max-width: 245px;
    margin: 0;
  }
  .c-archive02.is-slider .c-archive02__item-in {
    padding-left: 15px;
  }
}
@media all and (min-width: 768px) {
  .c-archive02.is-slider {
    margin: 0;
  }
  .c-archive02.is-slider .c-archive02__item {
    margin: 0;
  }
  .c-archive02.is-slider .c-archive02__item-in {
    max-width: 502px;
    padding: 0 13px;
  }
}

/*  .c-archive02
================================================== */
.c-archive02 {
  margin-left: -15px;
}
.c-archive02__item {
  margin-left: 15px;
  box-sizing: border-box;
}
.c-archive02__item-in {
  display: block;
  box-sizing: border-box;
  transition: color 0.3s ease;
}
.c-archive02__item-img {
  position: relative;
}
.c-archive02__item-img::before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 44.8979591837%;
}
.c-archive02__item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.c-archive02__item-head {
  line-height: 1.57;
  margin-top: 5px;
  font-size: 1.3rem;
}
@media all and (min-width: 768px) {
  .c-archive02__item {
    display: block;
  }
  .c-archive02__item-head {
    margin-top: 20px;
    font-size: 1.6rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-archive02__item-in:hover {
    color: rgb(var(--dark_blue));
  }
}

/* .c-btn01.is-center
===================================*/
.c-btn01.is-center {
  margin-left: auto;
  margin-right: auto;
}

/* .c-btn01.is-white
===================================*/
.c-btn01.is-white {
  color: #fff;
}
.c-btn01.is-white .c-btn01__link::before {
  border-bottom-color: #fff;
}
.c-btn01.is-white .c-btn01__link::after {
  background: #fff;
}
@media (hover: hover) and (pointer: fine) {
  .c-btn01.is-white .c-btn01__link:hover {
    color: rgb(var(--dark_blue));
  }
}

/* .c-btn01
===================================*/
.c-btn01 {
  max-width: 275px;
  margin-top: 10px;
  font-weight: 700;
  line-height: var(--line_height_head);
  color: rgb(var(--dark_blue));
}
.c-btn01__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 30px;
  min-height: 62px;
  box-sizing: border-box;
  z-index: 1;
}
.c-btn01__link::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  border-bottom: 2px solid rgb(var(--note));
  z-index: -1;
}
.c-btn01__link::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background: rgb(var(--dark_blue));
  transition: transform 0.3s ease;
  transform: scaleX(0);
  transform-origin: right top;
  z-index: -1;
}
.c-btn01__img {
  margin-right: 10px;
}
.c-btn01__img.is-mail01 {
  width: 21px;
  height: 14px;
}
.c-btn01__img.is-document01 {
  width: 19px;
  height: 17px;
  margin-bottom: -1px;
}
.c-btn01__ico {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  width: 10px;
  height: 12px;
}
.c-btn01__ico.is-external01 {
  width: 10.2px;
  height: 10.2px;
}
.c-btn01__txt {
  transition: color 0.3s ease;
}
@media all and (max-width: 767px) {
  .c-btn01 {
    margin-left: auto;
    margin-right: auto;
  }
}
@media all and (min-width: 768px) {
  .c-btn01 {
    max-width: 280px;
    margin-top: 50px;
  }
  .c-btn01__link {
    padding: 10px 44px;
    min-height: 65px;
  }
  .c-btn01__img {
    margin-right: 12px;
  }
  .c-btn01__img.is-mail01 {
    width: 23px;
    height: 16px;
  }
  .c-btn01__img.is-document01 {
    width: 23px;
    height: 20px;
    margin-bottom: -2px;
  }
  .c-btn01__ico {
    width: 14px;
    height: 16px;
    right: 20px;
  }
  .c-btn01__ico.is-external01 {
    width: 12.4px;
    height: 12.4px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-btn01__link:hover {
    color: #fff;
  }
  .c-btn01__link:hover::after {
    transform: scaleX(1);
    transform-origin: left top;
  }
}

/* .c-btn02
===================================*/
.c-btn02 {
  font-weight: 700;
  line-height: var(--line_height_head);
  color: rgb(var(--dark_blue));
}
.c-btn02__link {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  z-index: 1;
}
.c-btn02__txt {
  transition: color 0.3s ease;
  text-decoration: underline;
  max-width: calc(100% - 13px);
}
.c-btn02__ico {
  margin: 0 0 1px 5px;
  width: 8px;
  height: 9px;
  vertical-align: baseline;
}
@media (hover: hover) and (pointer: fine) {
  .c-btn02__link:hover {
    color: rgb(var(--note));
  }
  .c-btn02__link:hover .c-btn02__txt {
    text-decoration: none;
  }
}

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

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

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

/* .c-head01.is-white
===================================*/
.c-head01.is-white {
  color: #fff;
}
.c-head01.is-white .c-head01__sub {
  color: #fff;
}
.c-head01.is-white .c-head01__sub::before {
  border-left-color: #fff;
}

/* .c-head01
===================================*/
.c-head01 {
  position: relative;
  margin-bottom: 25px;
}
.c-head01__sub {
  display: flex;
  align-items: flex-start;
  font-size: 1.5rem;
  color: rgb(var(--dark_blue));
  margin-bottom: 10px;
}
.c-head01__sub::before {
  display: inline-block;
  content: "";
  height: 1.1em;
  width: 0;
  margin: 0 17px 0 0;
  border-left: 4px solid rgb(var(--logo_blue));
  transform: skewX(-30deg);
  transform-origin: left bottom;
}
.c-head01__main {
  line-height: var(--line_height_head);
  font-size: 2.4rem;
  font-weight: 700;
}
@media all and (min-width: 768px) {
  .c-head01 {
    margin-bottom: 50px;
  }
  .c-head01__sub {
    font-size: 1.9rem;
  }
  .c-head01__main {
    font-size: 4rem;
  }
}

/* .c-head02
===================================*/
.c-head02 {
  position: relative;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  font-size: 2.2rem;
  flex-basis: 700px;
  line-height: var(--line_height_head);
}
.c-head02::after {
  margin-top: 15px;
  content: "";
  display: block;
  width: 30px;
  height: 0;
  border-top: 2px solid rgb(var(--dark_blue));
}
@media all and (min-width: 768px) {
  .c-head02 {
    margin-bottom: 50px;
    font-size: 3.6rem;
  }
  .c-head02::after {
    margin-top: 25px;
    width: 40px;
  }
}

/* .c-head03
===================================*/
.c-head03 {
  position: relative;
  padding: 0 0 10px 22px;
  margin-bottom: 15px;
  font-size: 1.8rem;
  flex-basis: 700px;
  line-height: var(--line_height_head);
  border-bottom: 1px solid rgb(var(--border));
}
.c-head03::before {
  position: absolute;
  top: 0.15em;
  left: 0;
  content: "";
  height: 1.1em;
  width: 0;
  margin: 0 17px 0 0;
  border-left: 4px solid rgb(var(--logo_blue));
  transform: skewX(-30deg);
  transform-origin: left bottom;
}
@media all and (min-width: 768px) {
  .c-head03 {
    padding: 0 0 21px 28px;
    margin-bottom: 25px;
    font-size: 2rem;
  }
  .c-head03::before {
    top: 0.2em;
    border-left-width: 5px;
  }
}

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

/* .c-list01
===================================*/
.c-list01 {
  position: relative;
  line-height: var(--line_height_head);
}
.c-list01__item {
  position: relative;
  padding-left: 11px;
}
.c-list01__item + .c-list01__item {
  margin-top: 10px;
}
.c-list01__item::before {
  position: absolute;
  top: 0.75em;
  left: 0;
  transform: translateY(-50%);
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgb(var(--dark_blue));
}
@media all and (min-width: 768px) {
  .c-list01__item {
    padding-left: 12px;
  }
  .c-list01__item::before {
    width: 6px;
    height: 6px;
  }
}

/* .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: 1200px) {
  .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 {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.l-breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  padding-top: 20px;
  line-height: var(--line_height_tight);
  font-size: 1.1rem;
  text-align: right;
}
.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;
}
.l-breadcrumb-list__item > span {
  color: rgb(var(--note));
}
@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: 30px;
    font-size: 1.2rem;
    justify-content: flex-end;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-breadcrumb-list__item a {
    transition: color 0.3s ease;
  }
  .l-breadcrumb-list__item a:hover {
    color: rgb(var(--note));
  }
}

/* .l-footer
================================================ */
.l-footer {
  position: relative;
  z-index: 1;
  color: #fff;
  overflow: hidden;
}
.l-footer::before {
  position: absolute;
  top: 130px;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background: #202d4b;
  z-index: -1;
}
.l-footer__inner {
  max-width: 1680px;
  margin: 0 auto;
  padding-bottom: 40px;
}
@media all and (min-width: 768px) {
  .l-footer::before {
    top: 120px;
  }
  .l-footer__inner {
    padding-bottom: 50px;
  }
}

@-webkit-keyframes footCvTxtLoopSp {
  100% {
    background-position-x: -1060px;
  }
}

@keyframes footCvTxtLoopSp {
  100% {
    background-position-x: -1060px;
  }
}
@-webkit-keyframes footCvTxtLoopPc {
  100% {
    background-position-x: -2148px;
  }
}
@keyframes footCvTxtLoopPc {
  100% {
    background-position-x: -2148px;
  }
}
.l-footer-cv {
  position: relative;
  padding: 52px 0 70px;
  margin: 0 -20px;
  background: rgb(var(--bg_cv));
  z-index: 1;
  overflow: hidden;
}
.l-footer-cv::before, .l-footer-cv::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
.l-footer-cv::before {
  background: url(../img/common/bg_noise01.png) repeat left top/100px 100px;
  opacity: 0.2;
  mix-blend-mode: multiply;
}
.l-footer-cv::after {
  left: 50%;
  right: -50%;
  background: linear-gradient(to bottom, #fff 0%, rgba(255, 255, 255, 0) 130%);
  transform: skewX(-30deg);
  transform-origin: left 100px;
  opacity: 0.05;
}
.l-footer-cv__shine {
  position: absolute !important;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
}
.l-footer-cv__head {
  position: relative;
  padding: 0 40px;
  height: 60px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
.l-footer-cv__head::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background: url(../img/common/txt_cv02.png) repeat-x left center/1060px auto;
  mix-blend-mode: overlay;
  opacity: 0.2;
  z-index: 1;
  -webkit-animation: footCvTxtLoopSp 30s linear infinite;
  animation: footCvTxtLoopSp 30s linear infinite;
}
.l-footer-cv__head img {
  display: block;
}
.l-footer-cv__list-item + .l-footer-cv__list-item {
  margin-top: 15px;
}
@media all and (min-width: 768px) {
  .l-footer-cv {
    padding: 168px 0 171px;
    margin: 0 -140px;
  }
  .l-footer-cv::before {
    background-size: 200px 200px;
  }
  .l-footer-cv::after {
    left: max(calc(50vw - 80px), 50%);
    transform-origin: left calc(50% + 390px);
  }
  .l-footer-cv__head {
    padding: 0 140px;
    height: 120px;
  }
  .l-footer-cv__head::before {
    background-size: 2148px auto;
    -webkit-animation-name: footCvTxtLoopPc;
    animation-name: footCvTxtLoopPc;
    -webkit-animation-duration: 45s;
    animation-duration: 45s;
  }
  .l-footer-cv__list {
    position: absolute;
    top: 50%;
    right: 140px;
    transform: translateY(-50%);
    z-index: 1;
    width: 350px;
  }
  .l-footer-cv__list-item {
    margin-top: 0;
    max-width: 350px;
  }
  .l-footer-cv__list-item + .l-footer-cv__list-item {
    margin-top: 50px;
  }
  .l-footer-cv__list-item-link {
    min-height: 85px;
  }
}

.l-footer-info {
  position: relative;
  margin-top: 30px;
}
.l-footer-info__logo {
  line-height: var(--line_height_tight);
}
.l-footer-info__logo-link {
  display: flex !important;
  align-items: flex-end;
}
.l-footer-info__logo-img {
  display: block;
  width: 125px;
  height: 30px;
}
.l-footer-info__logo-sub {
  display: flex;
  align-items: flex-end;
  margin-left: 16px;
}
.l-footer-info__logo-sub-ico {
  width: 19.7px;
  height: 19px;
  opacity: 0.5;
  margin: 0 6px -2px 0;
}
.l-footer-info__logo-sub-txt {
  margin-bottom: -2px;
  font-size: 1.2rem;
}
.l-footer-info-nav {
  margin-top: 12px;
  line-height: var(--line_height_head);
}
.l-footer-info-nav__item-link, .l-footer-info-nav__item-trigger {
  position: relative;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}
.l-footer-info-nav__item-ico {
  width: 10px;
  height: 10px;
  margin-left: 10px;
}
.l-footer-info-nav-child {
  color: rgb(var(--border));
  padding: 0 0 10px 15px;
}
.l-footer-info-nav-child__item {
  margin-bottom: 10px;
}
.l-footer-info-other {
  margin-top: 50px;
  line-height: var(--line_height_head);
  font-size: 1.3rem;
  display: flex;
}
.l-footer-info-other__item {
  margin-right: 30px;
}
.l-footer-info-other__item-ico {
  width: 10px;
  height: 10px;
  margin-left: 10px;
}
@media all and (max-width: 767px) {
  .l-footer-info-nav__item {
    border-bottom: 1px solid;
  }
  .l-footer-info-nav__item-link, .l-footer-info-nav__item-trigger {
    padding: 10px 0;
    min-height: 60px;
  }
  .l-footer-info-nav__item-trigger::before, .l-footer-info-nav__item-trigger::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    width: 15px;
    height: 0;
    border-top: 1px solid;
    margin-top: -1px;
  }
  .l-footer-info-nav__item-trigger::after {
    transition: transform 0.3s ease;
  }
  .l-footer-info-nav__item-trigger:not(.is-active)::after {
    transform: rotate(90deg);
  }
}
@media (max-width: 767px) and (hover: hover) and (pointer: fine) {
  .l-footer-info-other__item-link {
    transition: color 0.3s ease;
  }
  .l-footer-info-other__item-link:hover {
    color: rgb(var(--border));
  }
}
@media all and (min-width: 768px) {
  .l-footer-info {
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .l-footer-info__logo-img {
    width: 228px;
    height: 55px;
  }
  .l-footer-info__logo-sub {
    margin-left: 20px;
  }
  .l-footer-info__logo-sub-ico {
    width: 26.5px;
    height: 25.5px;
    margin: 0 10px 1px 0;
  }
  .l-footer-info__logo-sub-txt {
    margin-bottom: 0;
    font-size: 1.6rem;
  }
  .l-footer-info-nav {
    margin-top: 33px;
    display: grid;
    grid-auto-flow: row dense;
    grid-template-columns: auto auto auto;
    grid-template-rows: auto 1fr;
    gap: 20px 80px;
    grid-template-areas: "i01 i02 i03" "i01 i02 i04";
  }
  .l-footer-info-nav__item:nth-of-type(1) {
    grid-area: i01;
  }
  .l-footer-info-nav__item:nth-of-type(2) {
    grid-area: i02;
  }
  .l-footer-info-nav__item:nth-of-type(3) {
    grid-area: i03;
  }
  .l-footer-info-nav__item:nth-of-type(44) {
    grid-area: i04;
  }
  .l-footer-info-nav__item-trigger {
    pointer-events: none;
  }
  .l-footer-info-nav-child {
    margin-top: 15px;
    font-size: 1.4rem;
  }
  .l-footer-info-nav-child__wrap {
    display: block !important;
    height: auto !important;
  }
  .l-footer-info-other {
    position: absolute;
    top: 55px;
    left: 0;
    margin-top: 63px;
    font-size: 1.4rem;
  }
  .l-footer-info-other__item-link {
    position: relative;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid rgb(var(--note));
    box-sizing: border-box;
  }
  .l-footer-info-other__item-link::after {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    border-bottom: 1px solid #fff;
    content: "";
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: right bottom;
  }
  .l-footer-info-other__item-ico {
    width: 12px;
    height: 12px;
    margin-left: 0;
  }
}
@media all and (min-width: 768px){
  .l-footer-info-nav__item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    -ms-grid-column: 1;
  }
  .l-footer-info-nav__item:nth-of-type(2) {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    -ms-grid-column: 3;
  }
  .l-footer-info-nav__item:nth-of-type(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
  }
  .l-footer-info-nav__item:nth-of-type(44) {
    -ms-grid-row: 3;
    -ms-grid-column: 5;
  }
}
@media (min-width: 768px) and (hover: hover) and (pointer: fine) {
  .l-footer-info-other__item-link:hover::after {
    transform: scaleX(1);
    transform-origin: left bottom;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-footer-info-nav__item-ico svg {
    transition: none;
  }
  .l-footer-info-nav__item-link, .l-footer-info-nav__item-trigger {
    transition: color 0.3s ease;
  }
  .l-footer-info-nav__item-link:hover, .l-footer-info-nav__item-trigger:hover {
    color: rgb(var(--border));
  }
  .l-footer-info-nav-child__item-link {
    transition: color 0.3s ease;
  }
  .l-footer-info-nav-child__item-link:hover {
    color: #fff;
  }
}

.l-footer__cr {
  margin-top: 35px;
  opacity: 0.2;
  font-size: 1.2rem;
}
@media all and (min-width: 768px) {
  .l-footer__cr {
    margin-top: 118px;
    font-size: 1.4rem;
  }
}

/* .l-footer-page-top
================================================ */
.l-footer-page-top {
  position: absolute;
  bottom: 40px;
  right: 20px;
  width: 40px;
  height: 40px;
}
.l-footer-page-top__link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  white-space: nowrap;
  color: transparent;
  font-size: 0;
  line-height: 0;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 50%;
  transition: background 0.3s ease;
}
.l-footer-page-top__ico {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 10px;
  margin-left: -2px;
  transform: rotate(-90deg) translate(50%, -50%);
}
@media all and (min-width: 768px) {
  .l-footer-page-top {
    right: 80px;
    width: 60px;
    height: 60px;
  }
  .l-footer-page-top__ico {
    width: 16px;
    height: 14px;
    margin-left: -3px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-footer-page-top__link:hover {
    background: rgba(255, 255, 255, 0.3);
  }
}

/* .l-header
================================================ */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 320px;
  z-index: 2000;
  line-height: var(--line_height_head);
  background: #fff;
}
.l-header__inner {
  display: table;
  width: 100%;
}
.l-header.is-loading {
  transition: none !important;
}
.l-header.is-loading a {
  transition: none !important;
}

/* .l-header-info
================================================== */
.l-header-info {
  display: table-cell;
  position: relative;
  z-index: 3;
  height: var(--header_height_sp);
  box-sizing: border-box;
  border-bottom: 1px solid rgb(var(--border));
  width: 42px;
  text-align: center;
  vertical-align: middle;
  background: #fff;
}
.l-header-info__logo {
  display: block;
  margin: 0 auto;
  color: rgb(var(--logo_blue));
}
.l-header-info__logo-link-svg {
  width: 21px;
  height: 19px;
}
@media all and (min-width: 768px) {
  .l-header-info {
    height: var(--header_height_pc);
    width: 240px;
  }
  .l-header-info__logo {
    width: 147px;
    margin-top: -15px;
  }
  .l-header-info__btn-contact {
    margin: 0;
  }
}

/* .l-nav
================================================ */
.l-nav {
  position: relative;
  z-index: 2;
  display: table-cell;
  height: var(--header_height_sp);
  box-sizing: border-box;
  background: #fff;
}
@media all and (min-width: 768px) {
  .l-nav {
    height: var(--header_height_pc);
  }
}

/* .l-nav-list
================================================== */
.l-nav-list {
  display: table;
  width: 100%;
  font-weight: 500;
}
.l-nav-list__item {
  display: table-cell;
}
.l-nav-list__item-trigger {
  position: relative;
  height: var(--header_height_sp);
  border-left: 1px solid rgb(var(--border));
  border-bottom: 1px solid rgb(var(--border));
  color: rgb(var(--dark_blue));
  text-align: center;
  box-sizing: border-box;
  transition: color 0.3s ease;
}
.l-nav-list__item-trigger::before, .l-nav-list__item-trigger::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgb(var(--bg_light_gray));
  transition: transform 0.3s ease;
  transform: scaleX(0);
  transform-origin: right top;
}
.l-nav-list__item-trigger::after {
  background: rgb(var(--dark_blue));
}
.l-nav-list__item-trigger-txt {
  position: relative;
  z-index: 1;
}
.l-nav-list__item-trigger.is-active {
  color: #fff;
}
.l-nav-list__item-trigger.is-active::after {
  transform: scaleX(1);
  transform-origin: left top;
}
@media all and (max-width: 767px) {
  .l-nav-list__item-trigger {
    font-size: 1rem;
  }
}
@media all and (min-width: 768px) {
  .l-nav-list__item {
    width: 25%;
  }
  .l-nav-list__item-trigger {
    height: var(--header_height_pc);
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-nav-list__item-trigger:hover::before {
    transform: scaleX(1);
    transform-origin: left top;
  }
}

.l-nav-list-child__wrap {
  display: none;
  position: fixed;
  top: var(--header_height_sp);
  left: 0;
  right: 0;
  background: #fff;
  padding: 15px 15px 20px;
  max-height: calc(100vh - var(--header_height_sp) - 50px);
  max-height: calc(var(--vh, 1vh) * 100 - var(--header_height_sp) - 50px);
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  overflow: auto;
}
.l-nav-list-child__item-bnr-link {
  position: relative;
  display: block;
  width: 100%;
  height: 80px;
  color: #fff;
}
.l-nav-list-child__item-bnr-link-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.l-nav-list-child__item-bnr-link-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.l-nav-list-child__item-bnr-link-txt {
  position: absolute;
  top: 50%;
  left: 20px;
  font-weight: 700;
  font-size: 1.6rem;
  transform: translateY(-50%);
}
.l-nav-list-child__item-bnr-link-ico {
  position: absolute;
  right: 8.5px;
  bottom: 8.5px;
  width: 12.55px;
  height: 12.55px;
  color: rgb(var(--dark_blue));
}
.l-nav-list-child__item-bnr-link-ico::before {
  position: absolute;
  right: -8.5px;
  bottom: -8.5px;
  content: "";
  width: 30px;
  height: 30px;
  background: #fff;
}
@media all and (max-width: 767px) {
  .l-nav-list-child__item + .l-nav-list-child__item {
    margin-top: 15px;
  }
}
@media all and (min-width: 768px) {
  .l-nav-list-child {
    display: flex;
    justify-content: center;
    margin: 0 -13px;
  }
  .l-nav-list-child__wrap {
    top: var(--header_height_pc);
    padding: 50px 30px 60px;
  }
  .l-nav-list-child__item {
    flex-basis: calc(50% - 26px);
    max-width: 476px;
    margin: 0 13px;
  }
  .l-nav-list-child__item-bnr-link-txt {
    font-size: 1.8rem;
    left: 30px;
  }
  .l-nav-list-child__item-bnr-link-ico {
    right: 10px;
    bottom: 12px;
    width: 13px;
    height: 13px;
  }
  .l-nav-list-child__item-bnr-link-ico::before {
    right: -10px;
    bottom: -12px;
    width: 35px;
    height: 35px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-nav-list-child__item-bnr-link-bg {
    transition: opacity 0.3s ease;
  }
  .l-nav-list-child__item-bnr-link:hover .l-nav-list-child__item-bnr-link-bg {
    opacity: 0.7;
  }
}

.l-nav-list-grandchild {
  color: rgb(var(--dark_blue));
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
}
.l-nav-list-grandchild__item {
  display: flex;
  flex-basis: calc(50% - 15px);
  max-width: calc(50% - 15px);
  margin-left: 15px;
}
.l-nav-list-grandchild__item-link {
  display: flex !important;
  width: 100%;
  align-items: center;
  padding: 10px 0;
  box-sizing: border-box;
}
.l-nav-list-grandchild__item-link-ico {
  width: 11px;
  height: 12.79px;
  margin-right: 9px;
}
.l-nav-list-grandchild__item-link-txt {
  max-width: calc(100% - 20px);
}
@media all and (max-width: 767px) {
  .l-nav-list-grandchild {
    margin-bottom: 30px;
  }
  .l-nav-list-grandchild__item {
    border-bottom: 1px solid rgba(var(--border), 0.7);
  }
  .l-nav-list-grandchild__item-link {
    min-height: 60px;
  }
}
@media all and (min-width: 768px) {
  .l-nav-list-grandchild {
    margin-top: 15px;
    max-width: 385px;
    font-size: 1.4rem;
  }
  .l-nav-list-grandchild__item-link {
    padding: 4px 0;
  }
  .l-nav-list-grandchild__item-link-ico {
    width: 9px;
    height: 10px;
    margin-right: 10px;
  }
}

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

/* .l-guide
================================================== */
.l-guide {
  position: absolute;
  top: var(--header_height_sp);
  left: 0;
  right: 0;
  transition: transform 0.3s ease, background 0.3s ease;
}
.l-guide__inner {
  position: static;
  box-sizing: border-box;
}
.l-guide__head {
  position: relative;
  margin: 19px 0 0 15px;
  z-index: 1;
  width: 145px;
  height: 30px;
  line-height: var(--line_height_head);
  letter-spacing: 0.02em;
  font-size: 1rem;
}
.l-guide__head-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: rgba(255, 255, 255, 0.85);
  color: rgb(var(--dark_blue));
  border-radius: 999px;
}
.l-guide__head-ico {
  width: 18px;
  height: 17px;
  margin-right: 4px;
}
.l-guide__content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  min-width: 320px;
  padding: 50px 20px;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
}
.l-guide.is-active {
  transform: translateY(0);
}
.l-guide.is-active:not(.is-shown) {
  transform: translateY(-80px);
}
@media all and (max-width: 767px) {
  .l-guide__content {
    height: calc(100vh - var(--header_height_sp));
    height: calc(var(--vh, 1vh) * 100 - var(--header_height_sp));
    overflow: auto;
    transform: translateX(120%);
    z-index: -1;
    transition: all 0.3s ease;
    background: rgb(var(--dark_blue));
  }
  .l-guide__content::-webkit-scrollbar {
    display: none;
  }
  .l-guide__content.is-open {
    transform: translateX(0);
  }
}
@media all and (min-width: 768px) {
  .l-guide {
    top: var(--header_height_pc);
  }
  .l-guide__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 33px 60px 10px 30px;
  }
  .l-guide__head {
    margin: 0;
    width: 190px;
    height: 38px;
    font-size: 1.2rem;
  }
  .l-guide__head-ico {
    width: 21px;
    height: 20px;
    margin-right: 6px;
  }
  .l-guide__content {
    position: static;
    width: auto;
    min-width: auto;
    padding: 0;
  }
  .l-guide.is-active {
    transform: translateY(-23px);
    background: #fff;
  }
  .l-guide.is-active .l-guide__head-link {
    background: rgb(var(--bg_light_gray));
  }
  .l-guide.is-active:not(.is-shown) {
    transform: translateY(-120px);
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-guide__head-link {
    transition: background 0.3s ease;
  }
  .l-guide__head-link:hover {
    background: #fff !important;
  }
}

/* .l-guide-btn
================================================== */
.l-guide-btn {
  position: absolute;
  z-index: 1;
  top: 14px;
  right: 20px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  border: 1px solid rgb(var(--dark_blue));
  box-sizing: border-box;
  border-radius: 50%;
}
.l-guide-btn__line {
  position: absolute;
  content: "";
  top: calc(50% - 1.5px);
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background: rgb(var(--dark_blue));
  box-sizing: border-box;
  transition: all 0.3s ease;
}
.l-guide-btn__line:nth-child(1) {
  left: 11px;
}
.l-guide-btn__line:nth-child(2) {
  left: 18px;
}
.l-guide-btn__line:nth-child(3) {
  left: 25px;
}
.l-guide-btn__txt {
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
}
.l-guide-btn.is-open {
  border-color: #fff;
}
.l-guide-btn.is-open .l-guide-btn__line {
  left: 11px;
  width: 16px;
  height: 1px;
  background: #fff;
}
.l-guide-btn.is-open .l-guide-btn__line:nth-child(1) {
  transform: rotate(-45deg);
}
.l-guide-btn.is-open .l-guide-btn__line:nth-child(2) {
  opacity: 0;
}
.l-guide-btn.is-open .l-guide-btn__line:nth-child(3) {
  transform: rotate(45deg);
}
.l-guide-btn__txt {
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 100%;
  font-size: 1rem;
  line-height: 1.2;
  text-align: center;
}

.l-guide.is-white:not(.is-active) .l-guide-btn {
  border-color: #fff;
}
.l-guide.is-white:not(.is-active) .l-guide-btn__line {
  background: #fff;
}

/* .l-guide-nav
================================================== */
.l-guide-nav {
  position: relative;
  z-index: 1;
  color: #fff;
  line-height: var(--line_height_head);
}
.l-guide-nav__item-link, .l-guide-nav__item-trigger {
  position: relative;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}
.l-guide-nav__item-ico {
  width: 10px;
  height: 10px;
  margin-left: 10px;
}
.l-guide-nav-child {
  color: rgb(var(--border));
  padding: 0 0 10px 15px;
}
.l-guide-nav-child__item {
  margin-bottom: 10px;
}
@media all and (max-width: 767px) {
  .l-guide-nav {
    margin-top: 12px;
  }
  .l-guide-nav__item {
    border-bottom: 1px solid;
  }
  .l-guide-nav__item-link, .l-guide-nav__item-trigger {
    padding: 10px 0;
    min-height: 60px;
  }
  .l-guide-nav__item-trigger::before, .l-guide-nav__item-trigger::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    width: 15px;
    height: 0;
    border-top: 1px solid;
    margin-top: -1px;
  }
  .l-guide-nav__item-trigger::after {
    transition: transform 0.3s ease;
  }
  .l-guide-nav__item-trigger:not(.is-active)::after {
    transform: rotate(90deg);
  }
}
@media all and (min-width: 768px) {
  .l-guide-nav {
    color: rgb(var(--dark_blue));
    display: flex;
    justify-content: flex-end;
  }
  .l-guide-nav__item {
    margin-left: 50px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-guide-nav__item-ico svg {
    transition: none;
  }
  .l-guide-nav__item-link, .l-guide-nav__item-trigger {
    transition: color 0.3s ease;
  }
  .l-guide-nav__item-link:hover, .l-guide-nav__item-trigger:hover {
    color: rgb(var(--border));
  }
}
@media (hover: hover) and (pointer: fine) and (min-width: 768px) {
  .l-guide-nav__item-link:hover, .l-guide-nav__item-trigger:hover {
    color: rgb(var(--black));
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-guide-nav-child__item-link {
    transition: color 0.3s ease;
  }
  .l-guide-nav-child__item-link:hover {
    color: #fff;
  }
}

.l-guide.is-white:not(.is-active) .l-guide-nav {
  color: #fff;
}
.l-guide.is-white:not(.is-active) .l-guide-nav__item-link:hover {
  color: rgb(var(--border));
}

.l-guide-cv {
  margin-top: 50px;
  padding: 5px 10px 33px;
  background: rgb(var(--bg_cv));
}

/* .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-loading
================================================ */
.l-loading {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 3000;
  overflow: hidden;
  transition: visibility 0.3s ease;
  transition: visibility 0s linear 1.5s, opacity 1.5s ease;
}
.l-loading__logo {
  width: 200px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.6s ease;
  opacity: 0;
  z-index: 2;
}
.l-loading__mov {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: opacity 0.6s ease;
  opacity: 0;
}
.l-loading__mov-video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 0.25;
}
.l-loading.is-start .l-loading__logo, .l-loading.is-start .l-loading__mov {
  opacity: 1;
}
.l-loading.is-loaded {
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
}
@media all and (min-width: 768px) {
  .l-loading__logo {
    width: 242px;
  }
}

/* .l-main-img HOME
================================================ */
.l-main-img {
  position: relative;
  overflow: hidden;
}
.l-main-img__bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}
.l-main-img__bg img {
  max-width: unset;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.l-main-img__inner {
  padding-top: 78px;
  padding-bottom: 100px;
}
.l-main-img__dots {
  position: absolute;
  left: 20px;
  bottom: 40px;
}
.l-main-img__dots .slick-dots {
  display: flex;
  z-index: 10;
}
.l-main-img__dots .slick-dots li {
  margin-right: 11px;
}
.l-main-img__dots .slick-dots li.slick-active button::before {
  transform: scale(1);
  background: rgb(var(--dark_blue));
}
.l-main-img__dots .slick-dots button {
  width: 9px;
  height: 9px;
  font-size: 0rem;
  line-height: 0;
  overflow: hidden;
}
.l-main-img__dots .slick-dots button::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #cacaca;
  box-sizing: border-box;
  border-radius: 50%;
  transition: all 0.3s ease;
  transform: scale(0.6);
}
.l-main-img__scroll {
  position: absolute;
  bottom: 0;
  right: 10px;
  color: rgb(var(--dark_blue));
  border-left: 1px solid;
  width: 15px;
  height: 60px;
}
.l-main-img__scroll-txt {
  position: absolute;
  top: 0;
  left: 1.3em;
  overflow: visible;
  white-space: nowrap;
  font-size: 1rem;
  transform: rotate(90deg);
  transform-origin: left top;
}
@media all and (max-width: 767px) {
  .l-main-img {
    margin-bottom: -15px;
  }
  .l-main-img__bg {
    bottom: 15px;
  }
  .l-main-img__scroll-txt {
    transform: rotate(90deg) scale(0.9);
  }
}
@media all and (min-width: 768px) {
  .l-main-img__inner {
    padding-top: 157px;
    padding-bottom: 163px;
  }
  .l-main-img__dots {
    left: 50px;
  }
  .l-main-img__scroll {
    right: 50px;
    width: 23px;
    height: 160px;
  }
  .l-main-img__scroll-txt {
    left: 1.5em;
    font-size: 1.3rem;
  }
}

.l-main-img-visual {
  position: relative;
  line-height: 1;
  min-width: 280px;
  min-height: 294px;
}
.l-main-img-visual::before {
  content: "";
  position: absolute;
  width: 90px;
  height: 93px;
  background-color: #335fb5;
  bottom: -10px;
  right: -10px;
}
.l-main-img-visual__copy {
  position: absolute;
  left: 15px;
  max-width: 203px;
  transition: opacity 0.3s ease;
}
.l-main-img-visual__copy.is-hide {
  opacity: 0;
}
@media all and (max-width: 767px) {
  .l-main-img-visual__copy {
    bottom: 47px;
  }
}
@media all and (min-width: 768px) {
  .l-main-img-visual {
    min-width: 1100px;
    min-height: 418px;
  }
  .l-main-img-visual::before {
    background-image: url(../img/home/bg_mv02_pc.jpg);
    background-size: cover;
    width: 414px;
    height: 282px;
    bottom: -57px;
    right: -55px;
  }
  .l-main-img-visual__copy {
    top: 50%;
    left: 144px;
    max-width: 400px;
    transform: translateY(-50%);
  }
}

/* .l-sub-img
================================================ */
.l-sub-img {
  position: relative;
  z-index: 1;
}
.l-sub-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 254px;
  background: rgb(var(--dark_blue)) url(../img/common/bg_mv01_sp.png) center top/cover;
  z-index: -1;
}
.l-sub-img__inner {
  padding-top: 80px;
  padding-bottom: 35px;
}
.l-sub-img__head {
  color: #fff;
}
.l-sub-img__head-sub {
  margin-bottom: 5px;
}
.l-sub-img__head-main {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: var(--line_height_head);
}
.l-sub-img__visual {
  position: relative;
  height: 0;
  padding-top: 57.9710144928%;
}
.l-sub-img__visual img {
  position: absolute;
  top: 0;
  left: 0;
  max-width: unset;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media all and (min-width: 768px) {
  .l-sub-img::before {
    background-image: url(../img/common/bg_mv01_pc.png);
    height: 494px;
  }
  .l-sub-img__inner {
    padding-top: 128px;
    padding-bottom: 68px;
  }
  .l-sub-img__head {
    color: #fff;
  }
  .l-sub-img__head-sub {
    margin-bottom: 12px;
  }
  .l-sub-img__head-main {
    font-size: 5rem;
  }
  .l-sub-img__visual {
    padding-top: 28.125%;
    margin-left: 50px;
  }
}
@media all and (min-width: 1780px) {
  .l-sub-img__visual {
    padding-top: 540px;
    margin-left: 80px;
  }
}

/* .l-relate
================================================ */
.l-relate {
  background: rgb(var(--bg_light_gray));
}
.l-relate__inner {
  padding-top: 35px;
  padding-bottom: 50px;
}
@media all and (min-width: 768px) {
  .l-relate {
    margin-bottom: -120px;
  }
  .l-relate__inner {
    padding-top: 70px;
    padding-bottom: 220px;
  }
}

.l-relate-list {
  color: rgb(var(--dark_blue));
  line-height: var(--line_height_head);
  font-weight: 700;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -10px;
}
.l-relate-list__item {
  flex-basis: calc(50% - 20px);
  max-width: calc(50% - 20px);
  margin: 0 10px;
}
.l-relate-list__item.is-current {
  color: rgb(var(--note));
}
.l-relate-list__item-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 5px 15px 0;
  border-bottom: 1px solid rgb(var(--border));
  box-sizing: border-box;
}
.l-relate-list__item-link::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  border-bottom: 1px solid;
  content: "";
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: right bottom;
}
.l-relate-list__item-ico {
  width: 10px;
  height: 12px;
}
@media all and (min-width: 768px) {
  .l-relate-list {
    margin: 0 -15px;
  }
  .l-relate-list__item {
    flex-basis: calc((100% - 90px) / 3);
    max-width: calc((100% - 90px) / 3);
    margin: 0 15px;
  }
  .l-relate-list__item-link {
    padding: 30px 9px 30px 0;
  }
  .l-relate-list__item-ico {
    width: 13px;
    height: 16px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-relate-list__item-link:hover::after {
    transform: scaleX(1);
    transform-origin: left bottom;
  }
}

/* .l-sidebar
================================================== */
.js-c-anime-elem[data-anime=fadein-left], .js-c-anime-elem [data-anime=fadein-left] {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.9s cubic-bezier(0.45, 0, 0.2, 1);
}
.js-c-anime-elem.is-animated[data-anime=fadein-left], .js-c-anime-elem.is-animated [data-anime=fadein-left] {
  opacity: 1;
  transform: translateX(0);
}

@-webkit-keyframes animeUncoverMask {
  100% {
    -webkit-mask-position: 0% center;
    mask-position: 0% center;
  }
}

@keyframes animeUncoverMask {
  100% {
    -webkit-mask-position: 0% center;
    mask-position: 0% center;
  }
}
.js-c-anime-elem[data-anime=uncover], .js-c-anime-elem [data-anime=uncover] {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(120deg, white 52%, rgba(255, 255, 255, 0) 58%);
  mask-image: linear-gradient(120deg, white 52%, rgba(255, 255, 255, 0) 58%);
  mask-mode: alpha;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 300% 300%;
  mask-size: 300% 300%;
  -webkit-mask-position: 150% center;
  mask-position: 150% center;
}
.js-c-anime-elem[data-anime=uncover]::before, .js-c-anime-elem [data-anime=uncover]::before {
  content: "";
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: 0;
  right: -200%;
  background: linear-gradient(to right, rgba(15, 91, 204, 0) 0%, rgba(15, 91, 204, 0.8) 25%, rgba(15, 91, 204, 0) 100%);
  transition: all 2s cubic-bezier(0, 0.25, 0.7, 1);
  transform: skewX(-30deg) translateX(-66%);
  transform-origin: right bottom;
  z-index: 1;
}
.js-c-anime-elem.is-animated[data-anime=uncover], .js-c-anime-elem.is-animated [data-anime=uncover] {
  -webkit-animation: animeUncoverMask 0.5s cubic-bezier(0, 0.25, 0.7, 1) forwards;
  animation: animeUncoverMask 0.5s cubic-bezier(0, 0.25, 0.7, 1) forwards;
}
.js-c-anime-elem.is-animated[data-anime=uncover]::before, .js-c-anime-elem.is-animated [data-anime=uncover]::before {
  transform: skewX(-30deg) translateX(100%);
}

.js-c-anime-elem[data-anime=shine], .js-c-anime-elem [data-anime=shine] {
  position: relative;
  overflow: hidden;
}
.js-c-anime-elem[data-anime=shine]::before, .js-c-anime-elem [data-anime=shine]::before {
  content: "";
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: 0;
  right: 0;
  background: linear-gradient(to right, rgba(15, 164, 236, 0) 0%, rgba(15, 164, 236, 0.5) 50%, rgba(15, 164, 236, 0) 100%);
  transition: all 0.8s cubic-bezier(0, 0.25, 0.7, 1);
  transform: skewX(-30deg) translateX(-100%);
  transform-origin: right bottom;
}
.js-c-anime-elem.is-animated[data-anime=shine]::before, .js-c-anime-elem.is-animated [data-anime=shine]::before {
  transform: skewX(-30deg) translateX(100%);
}

.js-c-anime-elem[data-anime=fadein-blur], .js-c-anime-elem [data-anime=fadein-blur] {
  opacity: 0;
  filter: blur(20px);
  transition: all 0.9s cubic-bezier(0.45, 0, 0.2, 1);
}
.js-c-anime-elem.is-animated[data-anime=fadein-blur], .js-c-anime-elem.is-animated [data-anime=fadein-blur] {
  opacity: 1;
  filter: blur(0px);
}

.js-c-anime-elem[data-anime-delay="0.1"], .js-c-anime-elem [data-anime-delay="0.1"] {
  transition-delay: 0.1s;
}
.js-c-anime-elem[data-anime-delay="0.2"], .js-c-anime-elem [data-anime-delay="0.2"] {
  transition-delay: 0.2s;
}
.js-c-anime-elem[data-anime-delay="0.3"], .js-c-anime-elem [data-anime-delay="0.3"] {
  transition-delay: 0.3s;
}
.js-c-anime-elem[data-anime-delay="0.4"], .js-c-anime-elem [data-anime-delay="0.4"] {
  transition-delay: 0.4s;
}
.js-c-anime-elem[data-anime-delay="0.5"], .js-c-anime-elem [data-anime-delay="0.5"] {
  transition-delay: 0.5s;
}
.js-c-anime-elem[data-anime-delay="0.6"], .js-c-anime-elem [data-anime-delay="0.6"] {
  transition-delay: 0.6s;
}
.js-c-anime-elem[data-anime-delay="0.7"], .js-c-anime-elem [data-anime-delay="0.7"] {
  transition-delay: 0.7s;
}
.js-c-anime-elem[data-anime-delay="0.8"], .js-c-anime-elem [data-anime-delay="0.8"] {
  transition-delay: 0.8s;
}
.js-c-anime-elem[data-anime-delay="0.9"], .js-c-anime-elem [data-anime-delay="0.9"] {
  transition-delay: 0.9s;
}
.js-c-anime-elem[data-anime-delay="1"], .js-c-anime-elem [data-anime-delay="1"] {
  transition-delay: 1s;
}
.js-c-anime-elem[data-anime-delay="1.1"], .js-c-anime-elem [data-anime-delay="1.1"] {
  transition-delay: 1.1s;
}
.js-c-anime-elem[data-anime-delay="1.2"], .js-c-anime-elem [data-anime-delay="1.2"] {
  transition-delay: 1.2s;
}
.js-c-anime-elem[data-anime-delay="1.3"], .js-c-anime-elem [data-anime-delay="1.3"] {
  transition-delay: 1.3s;
}
.js-c-anime-elem[data-anime-delay="1.4"], .js-c-anime-elem [data-anime-delay="1.4"] {
  transition-delay: 1.4s;
}
.js-c-anime-elem[data-anime-delay="1.5"], .js-c-anime-elem [data-anime-delay="1.5"] {
  transition-delay: 1.5s;
}
.js-c-anime-elem[data-anime-delay="1.6"], .js-c-anime-elem [data-anime-delay="1.6"] {
  transition-delay: 1.6s;
}
.js-c-anime-elem[data-anime-delay="1.7"], .js-c-anime-elem [data-anime-delay="1.7"] {
  transition-delay: 1.7s;
}
.js-c-anime-elem[data-anime-delay="1.8"], .js-c-anime-elem [data-anime-delay="1.8"] {
  transition-delay: 1.8s;
}
.js-c-anime-elem[data-anime-delay="1.9"], .js-c-anime-elem [data-anime-delay="1.9"] {
  transition-delay: 1.9s;
}
.js-c-anime-elem[data-anime-delay="2"], .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;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

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

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

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

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

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

/* .access-section
================================================ */
.access-section {
  position: relative;
}
.access-section__inner {
  padding-top: 50px;
  padding-bottom: 60px;
}
@media all and (min-width: 768px) {
  .access-section__inner {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.access-section-nav {
  color: rgb(var(--dark_blue));
  line-height: var(--line_height_head);
  font-weight: 700;
  display: flex;
  flex-wrap: wrap;
  margin: -15px -10px 60px;
}
.access-section-nav__item {
  flex-basis: calc(50% - 20px);
  max-width: calc(50% - 20px);
  margin: 0 10px;
}
.access-section-nav__item-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 5px 15px 0;
  border-bottom: 1px solid rgb(var(--border));
  box-sizing: border-box;
}
.access-section-nav__item-link::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  border-bottom: 1px solid;
  content: "";
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: right bottom;
}
.access-section-nav__item-ico {
  width: 10px;
  height: 12px;
  transform: rotate(90deg) translateY(-20%);
}
@media all and (min-width: 768px) {
  .access-section-nav {
    margin: -30px -15px 120px;
    font-size: 1.8rem;
  }
  .access-section-nav__item {
    flex-basis: calc((100% - 120px) / 4);
    max-width: calc((100% - 120px) / 4);
    margin: 0 15px;
  }
  .access-section-nav__item-link {
    padding: 30px 9px 30px 0;
  }
  .access-section-nav__item-ico {
    width: 13px;
    height: 16px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .access-section-nav__item-link:hover::after {
    transform: scaleX(1);
    transform-origin: left bottom;
  }
}

.access-section-content + .access-section-content {
  margin-top: 30px;
}
.access-section-content__btn {
  color: rgb(var(--dark_blue));
  line-height: var(--line_height_head);
  max-width: 157px;
  margin-top: 20px;
}
.access-section-content__btn-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid rgb(var(--note));
  box-sizing: border-box;
}
.access-section-content__btn-link::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  border-bottom: 1px solid;
  content: "";
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: right bottom;
}
.access-section-content__btn-ico {
  width: 10.2px;
  height: 10.2px;
}
.access-section-content__map {
  height: 168px;
  margin-bottom: 20px;
}
.access-section-content__map iframe {
  width: 100%;
  height: 100%;
}
@media all and (max-width: 767px) {
  .access-section-content__btn {
    margin-left: auto;
    margin-right: 10px;
  }
}
@media all and (min-width: 768px) {
  .access-section-content {
    display: flex;
    justify-content: space-between;
  }
  .access-section-content + .access-section-content {
    margin-top: 60px;
  }
  .access-section-content__area-img {
    flex-basis: 50%;
    max-width: 50%;
  }
  .access-section-content__area-txt {
    flex-basis: calc(50% - 50px);
    max-width: calc(50% - 50px);
  }
  .access-section-content__map {
    height: 275px;
  }
  .access-section-content__btn {
    margin-top: 50px;
    max-width: 200px;
    font-size: 1.4rem;
  }
  .access-section-content__btn-link {
    padding-bottom: 20px;
  }
  .access-section-content__btn-ico {
    width: 12.4px;
    height: 12.4px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .access-section-content__btn-link:hover::after {
    transform: scaleX(1);
    transform-origin: left bottom;
  }
}

/* #company
================================================ */
/* #outline
------------------------------------------------ */
.company-outline {
  position: relative;
  padding-top: 50px;
}
.company-outline::before {
  position: absolute;
  content: "";
  top: -40px;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(../img/company/bg_content01_sp.png) no-repeat center top/100% auto;
  z-index: -1;
}
.company-outline__inner {
  position: relative;
}
.company-outline__table {
  line-height: var(--line_height_head);
  text-align: left;
}
.company-outline__table table {
  border-top: 1px solid rgb(var(--border));
}
.company-outline__table th, .company-outline__table td {
  padding: 20px 0 15px;
  border-bottom: 1px solid rgb(var(--border));
  box-sizing: border-box;
}
.company-outline__table th {
  font-weight: 700;
  color: rgb(var(--dark_blue));
}
.company-outline__table h4 {
  font-weight: 700;
  margin-bottom: 10px;
}
.company-outline__table p + .company-outline__table p, .company-outline__table p + h4, .company-outline__table p + .company-outline__table ul, .company-outline__table ul + h4, .company-outline__table ul + .company-outline__table p, .company-outline__table ul + .company-outline__table ul {
  margin-top: 20px;
}
@media all and (max-width: 767px) {
  .company-outline__table table, .company-outline__table thead, .company-outline__table tbody, .company-outline__table tr, .company-outline__table th, .company-outline__table td {
    display: block;
  }
  .company-outline__table th {
    border-bottom: none;
    padding-bottom: 10px;
  }
  .company-outline__table td {
    padding-top: 0;
  }
}
@media all and (min-width: 768px) {
  .company-outline {
    padding-top: 120px;
  }
  .company-outline::before {
    top: -395px;
    background-image: url(../img/company/bg_content01_pc.png);
  }
  .company-outline__table th {
    width: 260px;
    padding: 30px 40px;
  }
  .company-outline__table td {
    padding: 30px 0;
  }
  .company-outline__table ul + .company-outline__table ul, .company-outline__table ul + h4 {
    margin-top: 30px;
  }
}

/* #organization
------------------------------------------------ */
.company-organization {
  padding-top: 60px;
}
.company-organization__table {
  margin-top: 30px;
  line-height: var(--line_height_head);
  text-align: left;
}
.company-organization__table table {
  border-top: 1px solid rgb(var(--border));
}
.company-organization__table th, .company-organization__table td {
  padding: 20px 0 15px;
  border-bottom: 1px solid rgb(var(--border));
  box-sizing: border-box;
}
.company-organization__table th {
  font-weight: 700;
  color: rgb(var(--dark_blue));
}
.company-organization__table h4 {
  font-weight: 700;
  margin-bottom: 10px;
}
.company-organization__table p + .company-organization__table p, .company-organization__table p + h4, .company-organization__table p + .company-organization__table ul, .company-organization__table ul + h4, .company-organization__table ul + .company-organization__table p, .company-organization__table ul + .company-organization__table ul {
  margin-top: 20px;
}
@media all and (max-width: 767px) {
  .company-organization__img {
    margin: 0 20px;
  }
  .company-organization__table table, .company-organization__table thead, .company-organization__table tbody, .company-organization__table tr, .company-organization__table th, .company-organization__table td {
    display: block;
  }
  .company-organization__table th {
    border-bottom: none;
    padding-bottom: 10px;
  }
  .company-organization__table td {
    padding-top: 0;
  }
}
@media all and (min-width: 768px) {
  .company-organization {
    padding-top: 120px;
  }
  .company-organization__table {
    margin-top: 90px;
  }
  .company-organization__table th {
    width: 260px;
    padding: 30px 40px;
  }
  .company-organization__table td {
    padding: 30px 0;
  }
  .company-organization__table ul + .company-organization__table ul, .company-organization__table ul + h4 {
    margin-top: 30px;
  }
}

/* #about
------------------------------------------------ */
.company-about {
  position: relative;
  padding: 60px 0;
}
@media all and (min-width: 768px) {
  .company-about {
    padding: 120px 0;
  }
}

.company-about-list {
  line-height: var(--line_height_head);
}
.company-about-list__item-bnr {
  position: relative;
  color: #fff;
}
.company-about-list__item-bnr-bg {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 50.1492537313%;
}
.company-about-list__item-bnr-bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: unset;
  -o-object-fit: cover;
  object-fit: cover;
}
.company-about-list__item-bnr-txt {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  font-size: 2rem;
  font-weight: 700;
}
.company-about-list__item-bnr-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border: 1px solid;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.company-about-list__item-bnr-btn-ico {
  width: 9px;
  height: 11px;
}
.company-about-list__item-desc {
  margin-top: 10px;
}
@media all and (max-width: 767px) {
  .company-about-list__item + .company-about-list__item {
    margin-top: 20px;
  }
}
@media all and (min-width: 768px) {
  .company-about-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: -50px -20px 0;
  }
  .company-about-list__item {
    margin: 50px 20px 0;
    flex-basis: calc(50% - 40px);
    max-width: calc(50% - 40px);
  }
  .company-about-list__item-bnr-txt {
    left: 50px;
    font-size: 2.4rem;
  }
  .company-about-list__item-bnr-btn {
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
  }
  .company-about-list__item-bnr-btn-ico {
    width: 14px;
    height: 16px;
  }
  .company-about-list__item-desc {
    margin-top: 20px;
  }
}

/* .customer-section
================================================ */
.customer-section {
  position: relative;
  padding-top: 50px;
}
.customer-section::before {
  position: absolute;
  content: "";
  top: -40px;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(../img/company/customer/bg_content01_sp.png) no-repeat center top/100% auto;
  z-index: -1;
}
.customer-section__inner {
  position: relative;
  padding-top: 40px;
  padding-bottom: 60px;
}
@media all and (min-width: 768px) {
  .customer-section {
    padding-top: 120px;
  }
  .customer-section::before {
    top: -395px;
    background-image: url(../img/company/customer/bg_content01_pc.png);
  }
  .customer-section__inner {
    padding-top: 70px;
    padding-bottom: 120px;
  }
}

.customer-section-first {
  position: relative;
  overflow: hidden;
  padding: 102px 0 114px;
}
.customer-section-first__bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.customer-section-first__box {
  position: relative;
  max-width: 295px;
  padding: 35px 20px 28px;
  box-sizing: border-box;
  margin: 0 auto;
  background: rgba(var(--logo_blue), 0.7);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  text-align: center;
}
.customer-section-first__box::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url(../img/common/bg_noise01.png) repeat left top/100px 100px;
  opacity: 0.08;
  mix-blend-mode: multiply;
}
.customer-section-first__head {
  margin-bottom: 15px;
}
.customer-section-first__head-main {
  font-size: 2.2rem;
}
.customer-section-first__txt {
  text-align: left;
  color: #fff;
}
@media all and (min-width: 768px) {
  .customer-section-first {
    padding: 72px 0 125px;
  }
  .customer-section-first__bg {
    min-width: 1546px;
    left: 50%;
    right: -50%;
    transform: translateX(-50%);
  }
  .customer-section-first__box {
    position: relative;
    max-width: 519px;
    padding: 110px 60px;
  }
  .customer-section-first__head {
    margin-bottom: 25px;
  }
  .customer-section-first__head-main {
    font-size: 3.4rem;
  }
}

.customer-section-content__note {
  margin-bottom: 15px;
}
@media all and (max-width: 767px) {
  .customer-section-content__list + .customer-section-content__list {
    margin-top: 10px;
  }
}
@media all and (min-width: 768px) {
  .customer-section-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .customer-section-content__note {
    width: 100%;
    margin-bottom: 15px;
  }
  .customer-section-content__list {
    max-width: 512px;
  }
}

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

/* .history-section
================================================ */
.history-section {
  position: relative;
}
.history-section::before {
  position: absolute;
  content: "";
  top: 180px;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(../img/company/history/bg_content01_sp.png) no-repeat center top/100% auto;
  z-index: -1;
}
.history-section__inner {
  padding-top: 50px;
  padding-bottom: 60px;
}
@media all and (min-width: 768px) {
  .history-section::before {
    top: -50px;
    background-image: url(../img/company/history/bg_content01_pc.png);
  }
  .history-section__inner {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.history-section-content.is-first {
  padding-bottom: 30px;
}
.history-section-content__year {
  color: rgb(var(--dark_blue));
  margin-bottom: 10px;
  line-height: var(--line_height_head);
  font-weight: 700;
}
.history-section-content__year-num {
  font-size: 4.6rem;
}
.history-section-content__year-unit {
  font-size: 2.4rem;
}
.history-section-content__head {
  margin-bottom: 15px;
  line-height: var(--line_height_head);
  font-weight: 700;
  font-size: 2rem;
}
.history-section-content__dl dt {
  font-weight: 700;
}
.history-section-content__caption {
  margin-top: 5px;
  color: rgb(var(--note));
}
@media all and (max-width: 767px) {
  .history-section-content__area-img {
    margin-bottom: 30px;
  }
  .history-section-content__dl dd + dt {
    margin-top: 5px;
  }
}
@media all and (min-width: 768px) {
  .history-section-content.is-reverse-pc .history-section-content__inner {
    flex-direction: row-reverse;
  }
  .history-section-content__year {
    margin-bottom: 25px;
  }
  .history-section-content__year-num {
    font-size: 5rem;
  }
  .history-section-content__year-unit {
    font-size: 2.8rem;
  }
  .history-section-content__head {
    margin-bottom: 25px;
    font-size: 2.4rem;
  }
  .history-section-content__inner {
    display: flex;
    justify-content: space-between;
  }
  .history-section-content__area-img, .history-section-content__area-txt {
    flex-basis: calc(50% - 45px);
    max-width: calc(50% - 45px);
  }
  .history-section-content__dl {
    display: flex;
    flex-wrap: wrap;
    margin-top: -12px;
  }
  .history-section-content__dl dt {
    margin-top: 12px;
    flex-basis: 74px;
  }
  .history-section-content__dl dd {
    margin-top: 12px;
    flex-basis: calc(100% - 74px);
  }
  .history-section-content__caption {
    margin-top: 12px;
  }
}

.history-section-content.has-line {
  margin-top: 30px;
}
.history-section-content.has-line .history-section-content__inner {
  position: relative;
}
.history-section-content.has-line .history-section-content__inner::before {
  color: rgb(var(--dark_blue));
  content: "";
  position: absolute;
  top: 23px;
  bottom: 0;
  left: 11px;
  border-left: 1px solid;
}
.history-section-content.has-line .history-section-content__point {
  color: rgb(var(--dark_blue));
  position: absolute;
  top: 0;
  left: 0;
  width: 23px;
  height: 23px;
  border: 1px solid;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.history-section-content.has-line .history-section-content__point::before {
  display: block;
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgb(var(--dark_blue));
}
@media all and (max-width: 767px) {
  .history-section-content.has-line .history-section-content__inner {
    padding-left: 40px;
    padding-bottom: 1px;
  }
  .history-section-content.has-line .history-section-content__area-txt {
    padding: 15px 0;
  }
}
@media all and (min-width: 768px) {
  .history-section-content.has-line .history-section-content {
    margin-top: 50px;
  }
  .history-section-content.has-line .history-section-content__year {
    text-align: center;
  }
  .history-section-content.has-line .history-section-content__inner {
    padding: 30px 0;
  }
  .history-section-content.has-line .history-section-content__inner::before {
    left: 50%;
  }
  .history-section-content.has-line .history-section-content__point {
    left: 50%;
    margin-left: -11px;
  }
}

.history-section-content-box {
  margin-top: 30px;
  padding: 20px;
  position: relative;
  background: #fff;
  overflow: hidden;
}
.history-section-content-box__area-img {
  width: 97px;
}
.history-section-content-box__pos {
  margin-bottom: 5px;
  font-size: 1.2rem;
  color: rgb(var(--note));
}
.history-section-content-box__name {
  font-size: 1.6rem;
  font-weight: 700;
  color: rgb(var(--dark_blue));
  line-height: var(--line_height_head);
  display: flex;
  flex-wrap: wrap;
}
.history-section-content-box__name-kana {
  font-size: 1.4rem;
  margin-left: -0.5em;
}
.history-section-content-box__copy {
  font-size: 1.2rem;
  font-weight: 700;
}
.history-section-content-box__btn {
  margin-top: 5px;
  font-size: 1.2rem;
}
@media all and (max-width: 767px) {
  .history-section-content-box__area-img {
    float: left;
    margin: 0 15px 10px 0;
  }
  .history-section-content-box__name-kana {
    width: 100%;
  }
  .history-section-content-box__copy {
    clear: both;
  }
}
@media all and (min-width: 768px) {
  .history-section-content-box {
    margin-top: 35px;
    padding: 30px 20px 30px 30px;
    display: flex;
    justify-content: space-between;
  }
  .history-section-content-box__area-img {
    width: 195px;
  }
  .history-section-content-box__area-txt {
    flex-basis: calc(100% - 215px);
  }
  .history-section-content-box__pos {
    margin-bottom: 0;
    font-size: 1.4rem;
  }
  .history-section-content-box__name {
    font-size: 1.8rem;
    align-items: center;
  }
  .history-section-content-box__name-kana {
    font-size: 1.6rem;
    margin: 0 0 0 -0.2em;
  }
  .history-section-content-box__copy {
    margin-top: 12px;
    font-size: 1.4rem;
    letter-spacing: 0.02em;
  }
  .history-section-content-box__btn {
    margin-top: 9px;
    font-size: 1.4rem;
  }
}

.home-wrap {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.home-wrap.is-wrap01 {
  z-index: 1;
}
.home-wrap.is-wrap01::before {
  content: "";
  position: absolute;
  background: url(../img/home/bg_parts01_sp.png) no-repeat left top/contain;
  padding-top: 160.4081632653%;
  z-index: -1;
  top: 0;
  left: 0;
  width: 215px;
}
.home-wrap.is-wrap02 {
  background: url(../img/home/bg_parts03_sp.png) no-repeat center top/cover;
}
@media all and (min-width: 768px) {
  .home-wrap.is-wrap01::before {
    background-image: url(../img/home/bg_parts01_pc.png);
    padding-top: 174.8241912799%;
    width: 711px;
  }
  .home-wrap.is-wrap01::after {
    content: "";
    position: absolute;
    background: url(../img/home/bg_parts02_pc.png) no-repeat left bottom/100% auto;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: max(calc(50% + 173px), 59%);
    right: 0;
  }
  .home-wrap.is-wrap02 {
    padding-bottom: 120px;
    margin-bottom: -120px;
    background-image: url(../img/home/bg_parts03_pc.png);
    background-size: max(100%, 1920px) auto;
  }
}

/* .home-about
================================================ */
.home-about {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.home-about__inner {
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
}
.home-about__head {
  margin-bottom: 20px;
}
@media all and (max-width: 767px) {
  .home-about::before {
    content: "";
    position: absolute;
    background: url(../img/home/bg_parts01_sp.png) no-repeat left top/contain;
    padding-top: 160.4081632653%;
    z-index: -1;
    bottom: 0;
    right: 0;
    width: 245px;
    transform: rotate(180deg);
  }
  .home-about__area-img {
    margin-top: 40px;
  }
}
@media all and (min-width: 768px) {
  .home-about__inner {
    padding-top: 120px;
    padding-bottom: 120px;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
  }
  .home-about__head {
    margin-bottom: 25px;
  }
  .home-about__head-main {
    letter-spacing: 0;
  }
  .home-about__area-img {
    flex-basis: 50%;
    max-width: 600px;
  }
  .home-about__area-txt {
    flex-basis: 50%;
    padding-left: 65px;
    box-sizing: border-box;
  }
}
@media all and (min-width: 1200px) {
  .home-about__area-img {
    flex-basis: calc(50% + 50px);
    margin-left: -50px;
  }
}

/* .home-message
================================================ */
.home-message {
  position: relative;
  padding-bottom: 60px;
  z-index: 1;
}
.home-message__box {
  position: relative;
  padding: 30px 20px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 0px 15px rgba(var(--sky_blue), 0.2);
}
.home-message__head {
  margin-bottom: 15px;
}
@media all and (max-width: 767px) {
  .home-message {
    background: url(../img/home/bg_parts02_sp.png) no-repeat center bottom/100% auto;
  }
  .home-message__bg {
    margin-left: 20px;
  }
  .home-message__box {
    margin: -30px 20px 0;
  }
}
@media all and (min-width: 768px) {
  .home-message {
    padding-bottom: 120px;
  }
  .home-message__bg {
    position: absolute !important;
    top: 0;
    bottom: 120px;
    left: 0;
    right: 0;
  }
  .home-message__bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 80% top;
    object-position: 80% top;
  }
  .home-message__inner {
    padding-top: 85px;
    padding-bottom: 85px;
  }
  .home-message__box {
    max-width: 624px;
    padding: 70px;
    box-shadow: 0px 0px 30px rgba(var(--sky_blue), 0.2);
  }
  .home-message__head {
    margin-bottom: 22px;
  }
}
@media all and (min-width: 1580px) {
  .home-message__bg {
    left: 40px;
    left: min(40px, 2.08%);
  }
}
@media all and (min-width: 1780px) {
  .home-message__bg {
    left: 80px;
    left: min(80px, 4.17%);
  }
}

/* .home-company
================================================ */
.home-company {
  position: relative;
  overflow: hidden;
}
.home-company::before {
  content: "";
  position: absolute;
  background: url(../img/home/bg_parts03_sp.png) no-repeat left top/200% auto;
  z-index: -1;
  padding-top: 87%;
  bottom: 0;
  right: 0;
  left: 50%;
  opacity: 0.5;
}
.home-company__inner {
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
  box-sizing: border-box;
  background: #115fb1 url(../img/home/bg_company01_sp.jpg) no-repeat center top/cover;
  color: #fff;
}
.home-company__head {
  margin-bottom: 20px;
}
@media all and (min-width: 768px) {
  .home-company::before {
    background: linear-gradient(to bottom, #e8f0f8 0%, #fff 90%);
    left: max(calc(50% + 173px), 59%);
    transform: skewX(-30deg);
    transform-origin: left top;
    padding-top: unset;
    top: 0;
    right: -50%;
  }
  .home-company__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 546px;
    background-image: url(../img/home/bg_company01_pc.jpg);
    background-size: max(100%, 1920px) auto;
  }
  .home-company__area-first {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .home-company__head {
    margin-bottom: 30px;
  }
}

.home-company-list {
  margin-top: 25px;
}
.home-company-list__item {
  border-bottom: 1px solid;
}
.home-company-list__item-link {
  position: relative;
  min-height: 90px;
  height: 100%;
  padding: 10px 40px 10px 20px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  z-index: 1;
}
.home-company-list__item-link::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background: #fff;
  opacity: 0.05;
  transition: transform 0.3s ease;
  transform: scaleX(0);
  transform-origin: right top;
  z-index: -1;
}
.home-company-list__item-img {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}
.home-company-list__item-img img {
  width: 26px;
  height: 26px;
}
.home-company-list__item-txt {
  font-weight: 700;
  font-size: 1.8rem;
  padding-left: 15px;
  box-sizing: border-box;
  flex-basis: calc(100% - 60px);
  max-width: calc(100% - 60px);
  line-height: var(--line_height_head);
}
.home-company-list__item-ico {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  width: 10px;
  height: 12px;
}
@media all and (max-width: 767px) {
  .home-company-list {
    border-top: 1px solid;
  }
}
@media all and (min-width: 768px) {
  .home-company-list {
    display: flex;
    justify-content: center;
    margin: 30px -20px -20px;
  }
  .home-company-list__item {
    border-top: 1px solid;
    flex-basis: calc((100% - 120px) / 3);
    max-width: 467px;
    margin: 0 20px 20px;
  }
  .home-company-list__item-link {
    min-height: 142px;
    padding-left: 30px;
  }
  .home-company-list__item-img {
    width: 80px;
    height: 80px;
  }
  .home-company-list__item-img img {
    width: 34px;
    height: 34px;
  }
  .home-company-list__item-txt {
    font-size: 2.4rem;
    padding-left: 30px;
    flex-basis: calc(100% - 80px);
    max-width: calc(100% - 80px);
  }
  .home-company-list__item-ico {
    width: 13px;
    height: 16px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .home-company-list__item-link:hover::before {
    transform: scaleX(1);
    transform-origin: left top;
  }
}

/* .home-customer
================================================ */
.home-customer {
  position: relative;
  z-index: 1;
}
.home-customer__bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-customer__inner {
  position: relative;
  padding-top: 154px;
  padding-bottom: 189px;
}
.home-customer__box {
  position: relative;
  max-width: 295px;
  padding: 45px 20px;
  box-sizing: border-box;
  margin: 0 auto;
  background: rgba(var(--logo_blue), 0.7);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  text-align: center;
}
.home-customer__box::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url(../img/common/bg_noise01.png) repeat left top/100px 100px;
  opacity: 0.08;
  mix-blend-mode: multiply;
}
.home-customer__head {
  margin-bottom: 0;
}
.home-customer__head-main {
  font-size: 2.2rem;
}
@media all and (min-width: 768px) {
  .home-customer__bg {
    min-width: 1546px;
    left: 50%;
    right: -50%;
    transform: translateX(-50%);
  }
  .home-customer__inner {
    padding-top: 153px;
    padding-bottom: 215px;
  }
  .home-customer__box {
    position: relative;
    max-width: 519px;
    padding: 100px 80px;
  }
  .home-customer__head-sub {
    margin-bottom: 32px;
  }
  .home-customer__head-main {
    font-size: 3.4rem;
  }
}

/* .home-recruit
================================================ */
.home-recruit {
  position: relative;
  padding-bottom: 60px;
  z-index: 1;
}
.home-recruit__box {
  position: relative;
  padding: 30px 20px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 0px 15px rgba(var(--sky_blue), 0.2);
}
.home-recruit__head {
  margin-bottom: 15px;
}
@media all and (max-width: 767px) {
  .home-recruit__bg {
    margin-right: 20px;
  }
  .home-recruit__box {
    margin: -30px 20px 0;
  }
}
@media all and (min-width: 768px) {
  .home-recruit {
    padding-bottom: 140px;
  }
  .home-recruit__bg {
    position: absolute !important;
    top: 0;
    bottom: 140px;
    left: 0;
    right: 0;
  }
  .home-recruit__bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 40% top;
    object-position: 40% top;
  }
  .home-recruit__inner {
    padding-top: 85px;
    padding-bottom: 85px;
  }
  .home-recruit__box {
    margin-left: auto;
    max-width: 624px;
    padding: 70px;
    box-shadow: 0px 0px 30px rgba(var(--sky_blue), 0.2);
  }
  .home-recruit__head {
    margin-bottom: 22px;
  }
}
@media all and (min-width: 1580px) {
  .home-recruit__bg {
    right: 40px;
    right: min(40px, 2.08%);
  }
}
@media all and (min-width: 1780px) {
  .home-recruit__bg {
    right: 80px;
    right: min(80px, 4.17%);
  }
}

/* .message-section
================================================ */
.message-section {
  position: relative;
}
.message-section__inner {
  padding-top: 50px;
  padding-bottom: 60px;
}
.message-section__head {
  line-height: var(--line_height_medium);
  font-weight: 700;
  margin-bottom: 40px;
  font-size: 2rem;
}
@media all and (min-width: 768px) {
  .message-section__inner {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .message-section__head {
    margin-bottom: 75px;
    text-align: center;
    font-size: 3rem;
  }
}

.message-section-content + .message-section-content {
  margin-top: 30px;
}
.message-section-content__set {
  margin-top: 30px;
}
.message-section-content__set + .message-section-content__set {
  padding-top: 30px;
  border-top: 1px solid rgb(var(--border));
}
.message-section-content__head {
  line-height: var(--line_height_head);
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 2rem;
}
.message-section-content__txt + .message-section-content__txt {
  margin-top: 1.5em;
}
.message-section-content__autograph {
  margin: 30px 0 0 auto;
  max-width: 255px;
}
@media all and (max-width: 767px) {
  .message-section-content__img {
    margin: 0 -20px;
  }
}
@media all and (min-width: 768px) {
  .message-section-content + .message-section-content {
    margin-top: 80px;
  }
  .message-section-content__set {
    margin-top: 80px;
    display: flex;
    justify-content: space-between;
  }
  .message-section-content__set + .message-section-content__set {
    padding-top: 80px;
  }
  .message-section-content__set-outline {
    flex-basis: 374px;
    max-width: 374px;
  }
  .message-section-content__set-detail {
    flex-basis: 616px;
    max-width: 616px;
  }
  .message-section-content__head {
    font-size: 2.4rem;
  }
  .message-section-content__autograph {
    margin-top: 60px;
    max-width: 349px;
  }
}
@media all and (min-width: 1580px) {
  .message-section-content__img {
    margin: 0 -190px;
  }
}

/* .philosophy-first
================================================ */
.philosophy-first {
  position: relative;
}
.philosophy-first::before {
  position: absolute;
  content: "";
  top: -40px;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(../img/philosophy/bg_content01_sp.jpg) no-repeat center top/cover;
  z-index: -1;
}
.philosophy-first__inner {
  position: relative;
  padding-top: 50px;
  padding-bottom: 60px;
}
@media all and (min-width: 768px) {
  .philosophy-first::before {
    top: -395px;
    background-image: url(../img/philosophy/bg_content01_pc.jpg);
  }
  .philosophy-first__inner {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.philosophy-first-box {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 0px 15px rgba(var(--sky_blue), 0.05);
  padding: 30px 19px;
}
.philosophy-first-box__head {
  color: rgb(var(--dark_blue));
  line-height: var(--line_height_head);
  text-align: center;
  font-size: 2rem;
  margin-bottom: 15px;
}
@media all and (min-width: 768px) {
  .philosophy-first-box {
    box-shadow: 0px 0px 30px rgba(var(--sky_blue), 0.05);
    padding: 70px 70px 80px;
    text-align: center;
  }
  .philosophy-first-box__head {
    font-size: 3rem;
    margin-bottom: 35px;
  }
}

/* .philosophy-section
================================================ */
.philosophy-section__inner {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media all and (min-width: 768px) {
  .philosophy-section__inner {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .philosophy-section__lead {
    text-align: center;
  }
}

.philosophy-section-content {
  margin-top: 35px;
}
@media all and (max-width: 767px) {
  .philosophy-section-content__area-img {
    margin-bottom: 20px;
  }
}
@media all and (min-width: 768px) {
  .philosophy-section-content {
    margin-top: 80px;
    display: flex;
    justify-content: space-between;
  }
  .philosophy-section-content.is-reverse-pc {
    flex-direction: row-reverse;
  }
  .philosophy-section-content__area-img {
    flex-basis: 50%;
    max-width: 50%;
  }
  .philosophy-section-content__area-txt {
    flex-basis: calc(50% - 50px);
    max-width: calc(50% - 50px);
  }
}