@charset "UTF-8";
:root {
  --black: 51,51,51;
  --dark_blue: 26,50,140;
  --logo_blue: 15, 164, 236;
  --sky_blue: 18,160,231;
  --note: 178,178,178;
  --border: 195,202,208;
  --border01: 212,212,212;
  --bg_light_gray: 244,245,246;
  --bg_light_blue: 236,240,245;
  --bg_cv: 5,73,174;
  --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: 1.77;
  --line_height_head: 1.57;
  --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;
}

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;
  }
}
@media (min-width: 768px) and (hover: hover) and (pointer: fine) {
  body {
    min-width: auto;
  }
}

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

.u-sans {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
  letter-spacing: 0.06em;
}

/* 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: 15px;
  padding-right: 15px;
}
@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;
    overflow: hidden;
    display: -webkit-box;
    max-height: 1.77em;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    line-height: 1.77;
    text-overflow: ellipsis;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-archive01__item-in:hover {
    color: rgb(var(--dark_blue));
  }
}

/*  .c-archive02.is-slider
================================================== */
.c-archive02.is-slider {
  display: flex;
  justify-content: center;
}
.c-archive02.is-slider .c-archive02__item-in[target=_blank]::before {
  bottom: 0.3em;
}
.c-archive02.is-slider .c-archive02__item-head {
  padding-right: 20px;
}
@media all and (max-width: 767px) {
  .c-archive02.is-slider {
    margin: 0 -15px;
  }
  .c-archive02.is-slider .c-archive02__item {
    width: 260px !important;
    margin: 0;
  }
  .c-archive02.is-slider .c-archive02__item-in {
    margin-left: 15px;
  }
}
@media all and (min-width: 768px) {
  .c-archive02.is-slider {
    margin: 0;
  }
  .c-archive02.is-slider .c-archive02__item {
    margin: 0;
    width: 502px !important;
  }
  .c-archive02.is-slider .c-archive02__item-in {
    margin: 0 13px;
  }
  .c-archive02.is-slider .c-archive02__item-head {
    padding-right: 25px;
  }
}

/*  .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-in[target=_blank] {
  position: relative;
}
.c-archive02__item-in[target=_blank]::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background: url(../img/common/ico_blank02.png) no-repeat center/contain;
  position: absolute;
  bottom: calc(-1em - 10px);
  right: 0;
}
.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;
}
.c-archive02__item-txt {
  overflow: hidden;
  display: -webkit-box;
  max-height: 1.57em;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  margin-top: 2px;
  line-height: 1.57;
  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;
  }
  .c-archive02__item-txt {
    max-height: 1.57em;
    -webkit-line-clamp: 1;
    margin-top: 3px;
    font-size: 1.6rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-archive02__item-in:hover {
    color: rgb(var(--dark_blue));
  }
}

/* .c-bnr01.is-medium
================================================ */
.c-bnr01.is-medium .c-bnr01__ico {
  bottom: 5px;
  right: 5px;
}
@media all and (min-width: 768px) {
  .c-bnr01.is-medium {
    max-width: 1280px;
    margin: 0 auto;
  }
  .c-bnr01.is-medium .c-bnr01__bg {
    min-height: 315px;
  }
  .c-bnr01.is-medium .c-bnr01__bg::before {
    display: block;
    content: "";
    width: 100%;
    padding-top: 28.90625%;
  }
  .c-bnr01.is-medium .c-bnr01__bg img {
    position: absolute;
    top: 0;
    left: 0;
  }
  .c-bnr01.is-medium .c-bnr01__ico {
    bottom: 30px;
    right: 30px;
  }
}

/* .c-bnr01.is-rounded
================================================ */
.c-bnr01.is-rounded {
  max-width: 1920px;
  margin: 0 auto;
}
.c-bnr01.is-rounded .c-bnr01__link {
  overflow: hidden;
  box-sizing: border-box;
}
.c-bnr01.is-rounded .c-bnr01__bg {
  height: 380px;
  padding: 15px;
  overflow: hidden;
  box-sizing: border-box;
  transition: padding 0.3s ease;
}
.c-bnr01.is-rounded .c-bnr01__bg img {
  border-radius: 10px;
  max-width: unset;
  display: block;
  transition: border-radius 0.3s ease;
}
.c-bnr01.is-rounded .c-bnr01__area-txt {
  padding: 0 30px 70px;
}
.c-bnr01.is-rounded .c-bnr01__ico {
  bottom: 25px;
  right: 25px;
}
@media all and (min-width: 768px) {
  .c-bnr01.is-rounded .c-bnr01__bg {
    height: 680px;
    padding: 40px;
  }
  .c-bnr01.is-rounded .c-bnr01__area-txt {
    padding: 0 10% 13px;
  }
  .c-bnr01.is-rounded .c-bnr01__ico {
    bottom: 80px;
    right: 80px;
  }
}
@media all and (min-width: 1780px) {
  .c-bnr01.is-rounded .c-bnr01__area-txt {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-bnr01.is-rounded .c-bnr01__link:hover .c-bnr01__bg {
    padding: 0;
  }
  .c-bnr01.is-rounded .c-bnr01__link:hover .c-bnr01__bg img {
    border-radius: 0;
  }
}

/* .c-bnr01
================================================ */
.c-bnr01__link {
  position: relative;
  display: block;
  color: #fff;
}
.c-bnr01__bg {
  position: relative;
  width: 100%;
}
.c-bnr01__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  box-sizing: border-box;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.c-bnr01__bg img.is-lazyload {
  opacity: 0;
}
.c-bnr01__inner {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.c-bnr01__ico {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 45px;
  height: 45px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  color: rgb(var(--dark_blue));
  transition: background 0.3s ease;
}
.c-bnr01__ico svg {
  width: 12.55px;
  height: 12.55px;
}
.c-bnr01__head {
  position: relative;
  padding-top: 12px;
}
.c-bnr01__head::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background: rgb(var(--sky_blue));
  width: 12px;
  height: 5.4px;
  transform: rotate(-30deg);
}
.c-bnr01__head-index {
  opacity: 0.4;
}
.c-bnr01__head-sub {
  font-weight: 700;
}
.c-bnr01__head-main {
  font-size: 3rem;
  word-break: break-word;
}
.c-bnr01__head-main-sub {
  font-size: 1.8rem;
  vertical-align: baseline;
}
.c-bnr01__head-main-sub.u-sans {
  position: relative;
  top: -2px;
  margin-left: 0.2em;
  letter-spacing: 0.08em;
  font-feature-settings: "palt" 1;
}
.c-bnr01__head-desc {
  margin-top: 5px;
}
.c-bnr01__head-desc.is-hide {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  height: 0;
}
.c-bnr01__box {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.c-bnr01__box.is-box01 {
  margin: 0 10px;
  padding: 30px 27.5px;
  background: #174093;
}
.c-bnr01__box-head {
  margin-bottom: 10px;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: var(--line_height_head);
}
.c-bnr01__box-head img {
  image-rendering: -webkit-optimize-contrast;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.c-bnr01__box-desc {
  margin-top: 5px;
}
@media all and (max-width: 767px) {
  .c-bnr01__inner {
    padding: 0 10px;
  }
  .c-bnr01__box.is-box01 {
    min-height: 67%;
  }
}
@media all and (min-width: 768px) {
  .c-bnr01__ico {
    bottom: 40px;
    right: 40px;
    width: 80px;
    height: 80px;
  }
  .c-bnr01__ico svg {
    width: 15px;
    height: 15px;
  }
  .c-bnr01__head {
    padding-top: 18px;
  }
  .c-bnr01__head::before {
    width: 20px;
    height: 8.1px;
  }
  .c-bnr01__head-sub {
    margin-top: 5px;
    font-size: 2.1rem;
    line-height: var(--line_height_head);
  }
  .c-bnr01__head-main {
    font-size: 6rem;
  }
  .c-bnr01__head-desc {
    margin-top: 30px;
  }
  .c-bnr01__box.is-box01 {
    margin: 0 auto;
    padding: 40px 50px 50px;
    width: 90%;
    max-width: 740px;
  }
  .c-bnr01__box-head {
    margin-bottom: 0;
    font-size: 3.8rem;
  }
}
@media all and (min-width: 1200px) {
  .c-bnr01__head-main {
    font-size: 6rem;
    font-size: clamp(4.2rem, 1.024rem + 2.4vw, 6rem);
    font-size: clamp(4.2rem, 1.024rem + var(--vw, 1vw) * 2.4, 6rem);
  }
  .c-bnr01__head-main-sub {
    font-size: clamp(2.1rem, 1.024rem + 1.2vw, 3.7rem);
    font-size: clamp(2.1rem, 1.024rem + var(--vw, 1vw) * 1.2, 3.7rem);
  }
  .c-bnr01__head-main-sub.u-sans {
    top: -2px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-bnr01__link .c-bnr01__head-desc.is-hide {
    height: auto;
  }
  .c-bnr01__link:hover .c-bnr01__ico {
    background: rgb(var(--sky_blue));
    color: #fff;
  }
  .c-bnr01__link:hover .c-bnr01__head-desc.is-hide {
    opacity: 1;
    transform: translateY(0);
  }
}

/* .c-btn01
===================================*/
.c-btn01 {
  margin-top: 20px;
  font-size: 1.3rem;
  white-space: nowrap;
}
.c-btn01__link {
  display: flex;
  align-items: center;
}
.c-btn01__ico {
  width: 38px;
  height: 38px;
  background: rgb(var(--bg_light_gray));
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: rgb(var(--dark_blue));
}
.c-btn01__ico svg {
  width: 15px;
  height: 3px;
}
.c-btn01__txt {
  margin-left: 12px;
  max-width: calc(100% - 50px);
}
.c-btn01.is-ico-bg-white .c-btn01__ico {
  background: #fff;
}
.c-btn01.is-right .c-btn01__link {
  justify-content: flex-end;
}
.c-btn01.is-center {
  display: flex;
  justify-content: center;
  margin-right: 1.5em;
}
.c-btn01.is-center .c-btn01__link {
  justify-content: center;
}
.c-btn01.is-external .c-btn01__ico svg {
  width: 12px;
  height: 12px;
}
.c-btn01.is-arrow .c-btn01__ico svg {
  width: 10px;
  height: 12px;
}
.c-btn01.is-back .c-btn01__ico svg {
  transform: scaleX(-1);
}
@media all and (max-width: 767px) {
  .c-btn01.is-right-sp .c-btn01__link {
    justify-content: flex-end;
  }
}
@media all and (min-width: 768px) {
  .c-btn01 {
    font-size: 1.4rem;
  }
  .c-btn01__ico {
    width: 42px;
    height: 42px;
  }
  .c-btn01__txt {
    max-width: calc(100% - 54px);
  }
  .c-btn01.is-arrow .c-btn01__ico svg {
    width: 12px;
    height: 14px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-btn01__link {
    transition: color 0.3s ease;
  }
  .c-btn01__link .c-btn01__ico {
    transition: background 0.3s ease;
  }
  .c-btn01__link:hover {
    color: rgb(var(--dark_blue));
  }
  .c-btn01__link:hover .c-btn01__ico {
    background: rgb(var(--sky_blue));
    color: #fff;
  }
  .c-btn01__wrap:hover .c-btn01__link {
    color: rgb(var(--dark_blue));
  }
  .c-btn01__wrap:hover .c-btn01__link .c-btn01__ico {
    background: rgb(var(--sky_blue));
    color: #fff;
  }
}

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

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

/* .c-head01.has-border
===================================*/
.c-head01.has-border::after {
  display: block;
  content: "";
  height: 0;
  border-top: 1px solid;
  margin: 10px -20px 0 0;
}
@media all and (min-width: 768px) {
  .c-head01.has-border::after {
    border-top-width: 2px;
    margin-top: 20px;
    margin-right: -50px;
  }
}
@media all and (min-width: 1200px) {
  .c-head01.has-border::after {
    margin-right: calc(var(--contents_width) / 2 - 50vw);
    margin-right: calc(var(--contents_width) / 2 - var(--vw, 1vw) * 50);
  }
}

/* .c-head01
===================================*/
.c-head01 {
  position: relative;
  margin-bottom: 20px;
  color: rgb(var(--dark_blue));
}
.c-head01__sub {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: rgb(var(--note));
  line-height: var(--line_height_head);
  font-weight: 700;
}
.c-head01__main {
  position: relative;
  font-size: 2.2rem;
}
.c-head01__main::before {
  position: absolute;
  top: 0.15em;
  left: -0.15em;
  content: "";
  background: rgba(var(--dark_blue), 0.2);
  width: 0.5em;
  height: 0.25em;
  transform: rotate(-30deg);
}
@media all and (max-width: 767px) {
  .c-head01 {
    margin-left: 5px;
    margin-right: 5px;
  }
}
@media all and (min-width: 768px) {
  .c-head01 {
    margin-bottom: 50px;
  }
  .c-head01__sub {
    font-size: 1.5rem;
  }
  .c-head01__main {
    font-size: 4.5rem;
  }
}

/* .c-head02
===================================*/
.c-head02 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 2.083;
  letter-spacing: 0.05em;
  color: rgb(var(--dark_blue));
  padding-top: 5px;
  position: relative;
}
.c-head02::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 6px;
  background: rgb(var(--sky_blue));
  transform: rotate(-30deg);
  position: absolute;
  top: 0;
  left: 0;
}
@media all and (min-width: 768px) {
  .c-head02 {
    font-size: 3.4rem;
  }
  .c-head02::before {
    width: 20px;
    height: 9px;
  }
}

/* .c-head03
===================================*/
.c-head03 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  padding: 15px 20px;
  background: rgb(var(--bg_light_gray));
  box-sizing: border-box;
  border-top: 2px solid rgb(var(--dark_blue));
}
@media all and (min-width: 768px) {
  .c-head03 {
    font-size: 2.2rem;
    padding: 15px 25px;
  }
}

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

/* .c-pager01
===================================*/
.c-pager01 {
  overflow: hidden;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  margin: 22px -5px -10px;
}
.c-pager01 li {
  margin: 0 9px 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: 42px;
  height: 42px;
  line-height: 1;
  text-decoration: none;
  color: rgb(var(--dark_blue));
  border-radius: 50%;
  background: #fff;
  font-size: 1.3rem;
  font-family: "Montserrat", sans-serif;
}
.c-pager01 li.pages {
  font-size: 0;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  border: none;
}
.c-pager01 li.pages span {
  font-size: 0;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  border: none;
}
.c-pager01 li.current span {
  color: #fff;
  background: rgb(var(--dark_blue));
}
.c-pager01 li.first, .c-pager01 li.previous {
  margin-right: 15px;
}
.c-pager01 li.first, .c-pager01 li.last {
  font-size: 0;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  border: none;
}
.c-pager01 li.first a, .c-pager01 li.last a {
  font-size: 0;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  border: none;
}
.c-pager01 li.next, .c-pager01 li.last {
  margin-left: 15px;
}
.c-pager01 li.extend {
  font-size: 1rem;
}
.c-pager01 li.extend span {
  width: auto;
  background: none;
}
.c-pager01 li.previous a, .c-pager01 li.next a {
  font-size: 0;
  background: none;
}
.c-pager01 li.previous a::before, .c-pager01 li.next a::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 16px;
  background: url(../img/common/ico_arrow03.png) no-repeat center/contain;
}
.c-pager01 li.previous a::before {
  transform: rotate(180deg);
}
@media all and (max-width: 767px) {
  .c-pager01.next, .c-pager01.previous {
    margin: 0 0 10px;
  }
}
@media all and (min-width: 768px) {
  .c-pager01 {
    margin-top: 70px;
  }
  .c-pager01 li a {
    transition: all 0.3s ease;
  }
  .c-pager01 li a::before {
    transition: all 0.3s ease;
  }
  .c-pager01 li a:hover {
    text-decoration: none;
    background-color: rgb(var(--dark_blue));
    color: #fff;
  }
  .c-pager01 li.previous a:hover {
    background: none;
  }
  .c-pager01 li.previous a:hover::before {
    transform: translateX(-10px) rotate(180deg);
  }
  .c-pager01 li.next a:hover {
    background: none;
  }
  .c-pager01 li.next a:hover::before {
    transform: translateX(10px);
  }
}

/*  .c-pager02
================================================== */
.c-pager02 {
  position: relative;
  overflow: hidden;
  margin-top: 40px;
  padding-top: 40px;
  line-height: 1;
  position: relative;
}
.c-pager02 a {
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  height: 56px;
  color: rgb(var(--note));
  letter-spacing: 0.05em;
}
.c-pager02__previous, .c-pager02__next {
  width: 140px;
}
.c-pager02__previous a, .c-pager02__next a {
  position: relative;
}
.c-pager02__previous a::before, .c-pager02__next a::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 11px;
  background: url(../img/common/ico_arrow03.png) no-repeat center/contain;
  transform: rotate(180deg);
  position: absolute;
  top: 23px;
  left: 23px;
  z-index: 1;
}
.c-pager02__previous a::after, .c-pager02__next a::after {
  content: "";
  display: inline-block;
  width: 56px;
  height: 56px;
  background: rgb(var(--bg_light_gray));
  border: 2px solid rgb(var(--bg_light_gray));
  border-radius: 50%;
  box-sizing: border-box;
}
.c-pager02__previous {
  float: left;
  margin-left: 25px;
}
.c-pager02__previous a {
  justify-content: flex-start;
  padding-left: 66px;
}
.c-pager02__previous a::after {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.c-pager02__next {
  float: right;
  margin-right: 25px;
}
.c-pager02__next a {
  padding-right: 30px;
}
.c-pager02__next a::before {
  transform: rotate(0);
  left: unset;
  right: 23px;
}
.c-pager02__next a::after {
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
  right: 0;
}
.c-pager02__all {
  width: auto;
  clear: both;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.c-pager02__all a {
  padding: 0;
  height: auto;
  justify-content: center;
  text-decoration: underline;
  color: rgb(var(--dark_blue));
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.c-pager02__all a::after {
  content: "";
  display: inline-block;
  width: 11px;
  height: 13px;
  background: url(../img/common/ico_arrow02.png) no-repeat center/contain;
  margin-left: 10px;
}
@media all and (min-width: 768px) {
  .c-pager02__previous, .c-pager02__next {
    width: 173px;
  }
}
@media all and (min-width: 1200px) {
  .c-pager02 {
    padding-top: 0;
    margin-top: 76px;
  }
  .c-pager02__previous, .c-pager02__next {
    width: 173px;
  }
  .c-pager02__previous a, .c-pager02__next a {
    height: 80px;
    white-space: nowrap;
    transition: all 0.3s ease;
  }
  .c-pager02__previous a::before, .c-pager02__next a::before {
    transition: all 0.3s ease;
    width: 14px;
    height: 16px;
  }
  .c-pager02__previous a::after, .c-pager02__next a::after {
    transition: all 0.3s ease;
    width: 80px;
    height: 80px;
  }
  .c-pager02__previous a:hover, .c-pager02__next a:hover {
    color: rgb(var(--dark_blue));
  }
  .c-pager02__previous a:hover::before, .c-pager02__next a:hover::before {
    background: url(../img/common/ico_arrow02.png) no-repeat center/contain;
  }
  .c-pager02__previous a:hover::after, .c-pager02__next a:hover::after {
    background: #fff;
    border-color: rgb(var(--dark_blue));
  }
  .c-pager02__previous {
    margin-left: 130px;
  }
  .c-pager02__previous a {
    justify-content: flex-end;
  }
  .c-pager02__previous a::before {
    top: 32px;
    left: 32px;
  }
  .c-pager02__next {
    margin-right: 130px;
  }
  .c-pager02__next a::before {
    top: 32px;
    right: 32px;
  }
  .c-pager02__all {
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .c-pager02__all a {
    font-size: 1.6rem;
    color: rgb(var(--bg_cv));
  }
}

/* .c-single01
===================================*/
.c-single01 {
  padding-bottom: 50px;
  position: relative;
}
.c-single01::before {
  content: "";
  display: inline-block;
  width: 100vw;
  height: 10px;
  background: rgb(var(--bg_light_gray));
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.c-single01__head {
  padding-bottom: 21px;
  border-bottom: 1px solid rgb(var(--border));
}
.c-single01__meta {
  display: flex;
  align-items: center;
}
.c-single01__date {
  font-size: 1rem;
  color: rgb(var(--note));
  letter-spacing: 0.05em;
  font-weight: 500;
  flex-shrink: 0;
}
.c-single01__cats {
  display: flex;
  align-items: center;
  overflow: auto;
  margin-left: 10px;
  flex: 1;
}
.c-single01__cat {
  color: #fff;
  background: rgb(var(--dark_blue));
  font-size: 1rem;
  border-radius: 12px;
  min-height: 20px;
  min-width: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-shrink: 0;
  padding-left: 1em;
  padding-right: 1em;
}
.c-single01__cat + .c-single01__cat {
  margin-left: 6px;
}
.c-single01__head {
  margin-top: 10px;
  font-size: 2.2rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.c-single01__thum {
  margin-top: 25px;
  text-align: center;
}
@media all and (min-width: 768px) {
  .c-single01 {
    box-sizing: border-box;
    padding: 8.09% 12.27%;
    border: 10px solid rgb(var(--bg_light_gray));
  }
  .c-single01::before {
    content: none;
  }
  .c-single01__inner {
    padding-top: 80px;
    padding-bottom: 100px;
  }
  .c-single01__date {
    font-size: 1.2rem;
  }
  .c-single01__cats {
    margin-left: 15px;
  }
  .c-single01__cat {
    font-size: 1.2rem;
    min-height: 23px;
    min-width: 86px;
  }
  .c-single01__meta {
    margin-bottom: 15px;
  }
  .c-single01__head {
    font-size: 2.6rem;
    margin-top: 0;
    padding-bottom: 30px;
  }
  .c-single01__thum {
    margin-top: 48px;
  }
}

/* .c-single-content
================================================== */
.c-single-content {
  margin-top: 25px;
  display: flow-root;
}
.c-single-content *:first-child {
  margin-top: 0;
}
.c-single-content *:last-child {
  margin-bottom: 0;
}
.c-single-content p {
  margin: 1em 0;
  font-weight: 700;
}
.c-single-content a {
  text-decoration: underline;
}
.c-single-content h2 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
  padding: 15px 20px;
  box-sizing: border-box;
  background: rgb(var(--bg_light_gray));
  border-top: 2px solid rgb(var(--dark_blue));
  margin-top: 30px;
  margin-bottom: 20px;
}
.c-single-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
  padding-bottom: 16px;
  border-bottom: 1px solid rgb(var(--dark_blue));
  margin-top: 20px;
  margin-bottom: 15px;
}
.c-single-content h4 {
  font-size: 1.6rem;
  font-weight: 700;
  padding-left: 15px;
  margin-top: 30px;
  margin-bottom: 15px;
  position: relative;
}
.c-single-content h4::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 80%;
  background: linear-gradient(180deg, #12a0e7 0%, #12a0e7 50%, #1a328c 50%, #1a328c 100%);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.c-single-content strong {
  color: rgb(var(--sky_blue));
  font-weight: 700;
}
.c-single-content ol, .c-single-content ul {
  margin: 20px 0;
}
.c-single-content ol li + li, .c-single-content ul li + li {
  margin-top: 12px;
}
.c-single-content ul {
  margin: 20px 0;
  padding-left: 0;
}
.c-single-content ul li {
  list-style: none;
}
.c-single-content ol {
  padding-left: 1.25em;
}
.c-single-content ol li {
  list-style-type: decimal;
}
.c-single-content ol li::marker {
  color: rgb(var(--dark_blue));
  font-family: "Montserrat", sans-serif;
}
.c-single-content ul li {
  position: relative;
  padding-left: 10px;
}
.c-single-content ul li::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  background: rgb(var(--dark_blue));
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.c-single-content blockquote {
  background: rgb(var(--bg_light_gray));
  padding: 20px 20px 20px 48px;
  margin: 40px 0;
  position: relative;
}
.c-single-content blockquote::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 13px;
  background: url(../img/common/ico_quote01.png) no-repeat center/contain;
  position: absolute;
  left: 30px;
  top: 0;
  transform: translateY(-50%);
}
.c-single-content blockquote::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 45.26%;
  background: rgb(var(--border01));
  position: absolute;
  top: 20px;
  left: 30px;
}
.c-single-content .alignleft, .c-single-content .alignright, .c-single-content .aligncenter {
  margin: 30px 0 20px;
}
@media all and (min-width: 768px) {
  .c-single-content a:hover {
    text-decoration: none;
  }
  .c-single-content .alignleft, .c-single-content .alignright, .c-single-content .aligncenter {
    margin: 0;
  }
  .c-single-content .alignleft + p, .c-single-content .alignright + p, .c-single-content .aligncenter + p {
    margin: 50px 0;
  }
  .c-single-content .alignleft {
    float: left;
    margin-right: 25px;
  }
  .c-single-content .alignright {
    float: right;
    margin-left: 25px;
  }
  .c-single-content .aligncenter {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .c-single-content .aligncenter + p {
    margin-top: 30px;
  }
  .c-single-content img.aligncenter {
    display: block;
  }
  .c-single-content ol, .c-single-content ul {
    margin: 13px 0;
  }
  .c-single-content ol li + li, .c-single-content ul li + li {
    margin-top: 6px;
  }
  .c-single-content p {
    margin: 0.7em 0;
    font-weight: 400;
  }
  .c-single-content h2 {
    margin-top: 50px;
    margin-bottom: 30px;
    font-size: 2.2rem;
    padding: 15px 22px;
  }
  .c-single-content h3 {
    font-size: 2rem;
    padding-bottom: 20px;
    margin-top: 30px;
    margin-bottom: 22px;
  }
  .c-single-content h4 {
    font-size: 1.8rem;
    margin-top: 26px;
    margin-bottom: 16px;
  }
  .c-single-content blockquote {
    padding: 40px 40px 40px 74px;
    margin: 50px 0;
  }
  .c-single-content blockquote::before {
    width: 20px;
    left: 40px;
  }
  .c-single-content blockquote::after {
    top: 20px;
    left: 50px;
  }
}

/* .l-breadcrumb
================================================ */
.l-breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  margin-left: auto;
  padding-top: 16px;
}
.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: "";
  display: inline-block;
  width: 11px;
  height: 7px;
  background: url(../img/common/ico_arrow01.png) no-repeat center/contain;
  margin-right: 5px;
}
.l-breadcrumb-list__item.is-current {
  color: rgb(var(--dark_blue));
}
.l-breadcrumb-list__txt {
  font-size: 1.2rem;
}
@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: 16px;
    justify-content: flex-end;
  }
  .l-breadcrumb-list__txt {
    font-size: 1.4rem;
  }
}

/* .l-footer
================================================ */
.l-footer {
  position: relative;
  z-index: 1;
  color: #fff;
}
.l-footer::before {
  position: absolute;
  top: 130px;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background: #202d4b;
  z-index: -1;
}
.l-footer__inner {
  padding: 0 15px;
  max-width: 1680px;
  margin: 0 auto;
}
@media all and (min-width: 768px) {
  .l-footer::before {
    top: 122px;
  }
  .l-footer__inner {
    padding: 0 40px;
  }
}
@media (max-width: 1199px) and (hover: hover) and (pointer: fine) {
  .l-footer__inner {
    padding: 0 15px;
  }
}
@media (min-width: 1200px) and (hover: hover) and (pointer: fine) {
  .l-footer__inner {
    padding: 0 5.85%;
    padding-left: min(120px, 5.85%);
    padding-right: min(120px, 5.85%);
  }
}

.l-footer-cv {
  padding: 6px 15px 5px;
  background: rgb(var(--bg_cv));
}
.l-footer-cv__item {
  box-sizing: border-box;
}
.l-footer-cv__item-head {
  display: flex;
  align-items: center;
  line-height: var(--line_height_head);
  font-weight: 700;
  margin-bottom: 10px;
}
.l-footer-cv__item-head-ico {
  width: 41px;
  height: 41px;
  margin-right: 20px;
}
.l-footer-cv__item-content {
  margin-top: 18px;
}
.l-footer-cv__item-tel-head {
  opacity: 0.5;
  font-size: 1.2rem;
  margin-bottom: 2px;
}
.l-footer-cv__item-tel-num-link {
  display: flex;
  align-items: center;
}
.l-footer-cv__item-tel-num-ico {
  width: 22px;
  height: 22px;
  margin: -2px 9px 0 0;
}
.l-footer-cv__item-tel-num-main {
  font-size: 2.8rem;
}
.l-footer-cv__item-tel-txt {
  margin-top: 5px;
  font-size: 1.1rem;
}
.l-footer-cv__item-txt {
  margin-bottom: 15px;
}
.l-footer-cv__item-btn {
  margin-top: auto;
  font-size: 1.5rem;
  line-height: var(--line_height_head);
}
.l-footer-cv__item-btn-link {
  position: relative;
  min-height: 60px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 10px 20px;
  box-sizing: border-box;
  z-index: 1;
}
.l-footer-cv__item-btn-link::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  z-index: -1;
  transition: transform 0.3s ease;
  transform: scaleX(0);
  transform-origin: right top;
}
.l-footer-cv__item-btn-ico {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 11px;
  height: 13px;
}
.l-footer-cv__item-btn-ico.is-external {
  width: 12.55px;
  height: 12.55px;
}
.l-footer-cv__item-btn-txt {
  transition: color 0.3s ease;
}
@media all and (max-width: 767px) {
  .l-footer-cv__item {
    padding: 26px 10px 30px;
  }
  .l-footer-cv__item + .l-footer-cv__item {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
}
@media all and (min-width: 768px) {
  .l-footer-cv {
    padding: 10px 0;
    display: flex;
    justify-content: center;
  }
  .l-footer-cv__item {
    flex-basis: 33.33%;
    min-width: 33.33%;
    padding: 80px 75px 72px;
    padding: 4.76% 4.46% 4.29%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .l-footer-cv__item + .l-footer-cv__item {
    border-left: 1px solid rgba(255, 255, 255, 0.3);
  }
  .l-footer-cv__item-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }
  .l-footer-cv__item-txt {
    margin-bottom: 30px;
    font-size: 1.5rem;
  }
}
@media (max-width: 1199px) and (hover: hover) and (pointer: fine) {
  .l-footer-cv__item {
    padding: 2%;
    /* &:nth-child(1),
    &:nth-child(2) {
    	.l-footer-cv__item-txt {
    		br {
    			display: none;
    		}
    	}
    } */
  }
  .l-footer-cv__item-head-txt {
    font-size: 1.2rem;
  }
  .l-footer-cv__item-tel-num-main {
    font-size: 2.4rem;
  }
  .l-footer-cv__item-tel-txt {
    font-size: 1rem;
  }
  .l-footer-cv__item-txt {
    margin-bottom: 40px;
    font-size: 1.3rem;
  }
}
@media all and (min-width: 1580px) {
  .l-footer-cv__item-head {
    margin-bottom: 25px;
  }
  .l-footer-cv__item-head-ico {
    width: 50px;
    height: 50px;
  }
  .l-footer-cv__item-tel {
    margin-top: 0;
  }
  .l-footer-cv__item-tel-head {
    font-size: 1.4rem;
  }
  .l-footer-cv__item-tel-num-ico {
    width: 33px;
    height: 33px;
    margin: -2px 12px 0 0;
  }
  .l-footer-cv__item-tel-num-main {
    font-size: 4rem;
  }
  .l-footer-cv__item-tel-txt {
    font-size: 1.2rem;
  }
  .l-footer-cv__item-txt {
    margin-top: 0;
    margin-bottom: 50px;
  }
  .l-footer-cv__item-btn {
    font-size: 1.6rem;
  }
  .l-footer-cv__item-btn-link {
    min-height: 65px;
  }
  .l-footer-cv__item-btn-ico {
    width: 14px;
    height: 16px;
  }
  .l-footer-cv__item-btn-ico.is-external {
    width: 15px;
    height: 15px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-footer-cv__item-btn-link:hover {
    color: rgb(var(--dark_blue));
  }
  .l-footer-cv__item-btn-link:hover::before {
    transform: scaleX(1);
    transform-origin: left top;
  }
}

.l-footer-info {
  margin-top: 30px;
}
.l-footer-info__logo {
  width: 137px;
  height: 33px;
}
.l-footer-info-nav {
  margin-top: 22px;
  font-size: 1.2rem;
  line-height: var(--line_height_head);
  display: grid;
  grid-template-columns: repeat(2, 50%);
  grid-template-rows: auto;
  grid-column-gap: 0;
  grid-row-gap: 12px;
}
.l-footer-info-nav__item {
  box-sizing: border-box;
}
.l-footer-info-nav__item:nth-of-type(odd) {
  padding-right: 10px;
}
@media all and (max-width: 767px) {
  .l-footer-info {
    padding: 0 5px;
  }
}
@media all and (min-width: 768px) {
  .l-footer-info {
    margin-top: 64px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .l-footer-info__logo {
    width: 230px;
    height: 55px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  .l-footer-info-nav {
    margin-top: 10px;
    font-size: 1.5rem;
    grid-template-columns: repeat(2, auto);
    grid-column-gap: 60px;
    grid-row-gap: 15px;
  }
}

/* .l-footer-sns
------------------------------------------------ */
.l-footer-sns {
  margin-top: 40px;
}
.l-footer-sns__txt {
  line-height: var(--line_height_head);
  font-size: 1.2rem;
}
.l-footer-sns__txt-ico {
  width: 10px;
  height: 10px;
  margin: 0 0 2px 0.5em;
}
.l-footer-sns__txt + .l-footer-sns__bnr {
  margin-top: 15px;
}
.l-footer-sns__bnr {
  width: 237px;
}
@media all and (min-width: 768px) {
  .l-footer-sns {
    margin-top: 20px;
  }
  .l-footer-sns__txt {
    font-size: 1.4rem;
  }
  .l-footer-sns__txt + .l-footer-sns__bnr {
    margin-top: 30px;
  }
  .l-footer-sns__bnr {
    width: 316px;
  }
}

/* .l-footer__cr
------------------------------------------------ */
.l-footer__cr {
  margin-top: 30px;
  opacity: 0.2;
  font-size: 1.1rem;
}
@media all and (min-width: 768px) {
  .l-footer__cr {
    margin-top: 75px;
    font-size: 1.4rem;
  }
}

/* .l-footer-page-top
================================================ */
.l-footer-page-top {
  margin: 3px 0 0 auto;
  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: #313f60;
  transition: background 0.3s ease;
}
.l-footer-page-top__link::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  width: 5px;
  height: 5px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-45deg) translate(-12%, -35%);
}
@media all and (min-width: 768px) {
  .l-footer-page-top {
    margin-top: 29px;
    width: 60px;
    height: 60px;
  }
  .l-footer-page-top__link::after {
    width: 7px;
    height: 7px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-footer-page-top__link:hover {
    background: rgb(var(--sky_blue));
  }
}

/* .l-header
================================================ */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 320px;
  z-index: 2000;
  line-height: var(--line_height_head);
  display: table;
  background: #fff;
}
.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;
}
.l-guide__inner {
  position: static;
  box-sizing: border-box;
}
.l-guide__head {
  position: relative;
  margin: 19px 0 0 15px;
  z-index: 1;
  width: 120px;
  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.is-active {
  transform: translateY(0);
}
.l-guide.is-active:not(.is-shown) {
  transform: translateY(-80px);
}
@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: 165px;
    height: 38px;
    font-size: 1.2rem;
  }
  .l-guide.is-active {
    transform: translateY(-23px);
  }
  .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-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;
  z-index: 3000;
  overflow: hidden;
  transition: visibility 0.3s ease;
  transition-delay: 0.9s;
}
.l-loading__inner {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: -100%;
  right: -100%;
  transform: skewX(-30deg);
}
.l-loading__inner::before, .l-loading__inner::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  background: rgb(var(--dark_blue));
  transition: transform 0.3s ease;
  transition-delay: 0.6s;
}
.l-loading__inner::before {
  left: 0;
  right: 50%;
  transform-origin: left top;
}
.l-loading__inner::after {
  left: calc(50% - 1px);
  right: 0;
  transform-origin: left bottom;
}
.l-loading__line {
  position: absolute;
  width: 1px;
  left: 50%;
  top: 0;
  bottom: 0;
  z-index: 2;
}
.l-loading__line::before, .l-loading__line::after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  background: #fff;
  transform: scale(0);
}
.l-loading__line::before {
  top: 0;
  height: 35%;
  transform-origin: left top;
}
.l-loading__line::after {
  bottom: 0;
  height: 65%;
  transform-origin: left bottom;
}
.l-loading.is-loading .l-loading__line::before, .l-loading.is-loading .l-loading__line::after {
  transform: scale(0.9);
  transition: transform 2s ease, opacity 0.3s ease 0.9s;
}
.l-loading.is-loaded {
  visibility: hidden;
  pointer-events: none;
}
.l-loading.is-loaded .l-loading__inner::before {
  transform: scaleY(0);
}
.l-loading.is-loaded .l-loading__inner::after {
  transform: scaleY(0);
}
.l-loading.is-loaded .l-loading__line::before, .l-loading.is-loaded .l-loading__line::after {
  opacity: 0;
  transform: scale(1);
  transition: transform 0.6s ease, opacity 0.3s ease 0.6s;
}

/* .l-main-visual
================================================ */
.l-main-visual__inner {
  position: relative;
}
.l-main-visual__loop {
  position: absolute;
  top: -40px;
  left: 0;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  white-space: nowrap;
  width: 100%;
  height: 147px;
  z-index: 2;
}
.l-main-visual__loop-list {
  display: flex;
  width: 100%;
  height: 100%;
}
.l-main-visual__loop-item {
  flex: 0 0 auto;
  padding: 0 0.5em;
}
.l-main-visual__loop-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.l-main-visual__loop-item:nth-of-type(odd) {
  -webkit-animation: loop01 100s -50s linear infinite;
  animation: loop01 100s -50s linear infinite;
}
.l-main-visual__loop-item:nth-of-type(even) {
  -webkit-animation: loop02 100s linear infinite;
  animation: loop02 100s linear infinite;
}
.l-main-visual__scroll {
  width: 69px;
  height: 69px;
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
}
.l-main-visual__scroll::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/home/img_scroll01.png) no-repeat center/contain;
  -webkit-animation: scroll 20s linear infinite;
  animation: scroll 20s linear infinite;
}
.l-main-visual__scroll-ico {
  width: 5px;
  color: rgb(var(--dark_blue));
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.l-main-visual__headers {
  left: 20px;
  bottom: 110px;
  width: 78.4%;
  height: 105px;
}
.l-main-visual__headers.slick-slider {
  position: absolute;
}
.l-main-visual__head {
  color: rgb(var(--dark_blue));
  font-size: 3rem;
  line-height: 1.366;
}
.l-main-visual__head-en {
  display: block;
  font-style: italic;
  font-size: 1.4rem;
}
.l-main-visual__head-en::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 13px;
  background: url(../img/common/ico_head01.png) no-repeat center/contain;
  margin-right: 6px;
}
.l-main-visual__step {
  position: absolute !important;
  right: 0;
  bottom: 117px;
  max-width: 56px;
}
.l-main-visual__step .slick-current .l-main-visual__step-txt {
  transform: translateX(0);
}
.l-main-visual__step .slick-current .l-main-visual__step-txt::after {
  width: 38px;
}
.l-main-visual__step-txt {
  box-sizing: border-box;
  font-style: italic;
  color: rgb(var(--dark_blue));
  font-size: 1rem;
  transform: translateX(3em);
  transition: all 0.3s ease;
}
.l-main-visual__step-txt::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1px;
  background: rgb(var(--dark_blue));
  position: relative;
  top: -0.3em;
  margin-left: 5px;
  transition: all 0.3s ease;
}
@media all and (min-width: 768px) {
  .l-main-visual__movie-wrap {
    position: relative;
    width: 100%;
    padding-top: 45.3125%;
  }
  .l-main-visual__movie.is-pc {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .l-main-visual__loop {
    height: clamp(147px, 16.6vw, 319px);
    top: -10%;
  }
  .l-main-visual__scroll {
    left: unset;
    transform: none;
    right: 50px;
    bottom: 50px;
    width: 166px;
    height: 166px;
  }
  .l-main-visual__scroll-ico {
    width: 14px;
  }
  .l-main-visual__headers {
    bottom: 58px;
    left: 58px;
    height: 312px;
  }
  .l-main-visual__header {
    height: 100%;
  }
  .l-main-visual__head {
    font-size: clamp(3rem, 5.72vw, 11rem);
    height: 312px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .l-main-visual__head-en {
    font-size: 3rem;
  }
  .l-main-visual__head-en::before {
    width: 17px;
    height: 21px;
    margin-left: 9px;
  }
  .l-main-visual__step {
    max-width: 70px;
    bottom: unset;
    top: 50%;
    transform: translateY(-50%);
  }
  .l-main-visual__step .slick-current .l-main-visual__step-txt::after {
    width: 48px;
  }
  .l-main-visual__step-txt {
    font-size: 1.2rem;
  }
}

@-webkit-keyframes loop01 {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes loop01 {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@-webkit-keyframes loop02 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-200%);
  }
}
@keyframes loop02 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-200%);
  }
}
@-webkit-keyframes scroll {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes scroll {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes title {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes title {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/* .l-main-img HOME
================================================ */
@-webkit-keyframes homeMvTxtLoopSp {
  100% {
    background-position-x: -1060px;
  }
}
@keyframes homeMvTxtLoopSp {
  100% {
    background-position-x: -1060px;
  }
}
@-webkit-keyframes homeMvTxtLoopPc {
  100% {
    background-position-x: -2148px;
  }
}
@keyframes homeMvTxtLoopPc {
  100% {
    background-position-x: -2148px;
  }
}
.l-main-img {
  position: relative;
  display: flex;
  height: min(870px, calc(100vh - var(--header_height_sp)));
  height: min(870px, calc(var(--vh, 1vh) * 100 - var(--header_height_sp)));
  min-height: 500px;
  margin: 0 auto;
  overflow: hidden;
}
.l-main-img::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background: url(../img/home/bg_mv_layer01.jpg) no-repeat center center/cover;
  z-index: 1;
  opacity: 0.05;
}
.l-main-img::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background: url(../img/home/txt_mv02.png) repeat-x left center/1060px auto;
  mix-blend-mode: overlay;
  opacity: 0.2;
  z-index: 1;
  -webkit-animation: homeMvTxtLoopSp 30s linear infinite;
  animation: homeMvTxtLoopSp 30s linear infinite;
}
.l-main-img__inner {
  position: static;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 14px;
}
.l-main-img__bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.l-main-img__bg .slick-list .slick-slide {
  border: none;
}
.l-main-img__bg .slick-dots {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 20px;
  bottom: 20px;
  display: flex;
  z-index: 10;
  pointer-events: none;
}
.l-main-img__bg .slick-dots li {
  margin-right: 15px;
}
.l-main-img__bg .slick-dots li.slick-active button::before {
  background: #fff;
}
.l-main-img__bg .slick-dots button {
  width: 6px;
  height: 6px;
  font-size: 0rem;
  line-height: 0;
  overflow: hidden;
}
.l-main-img__bg .slick-dots button::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid #fff;
  box-sizing: border-box;
  border-radius: 50%;
  transition: background 0.3s ease;
}
.l-main-img__bg-col {
  height: 100%;
}
.l-main-img__bg-col.is-col01 {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: -50%;
  right: 50%;
  transform: skewX(-30deg);
  overflow: hidden;
}
.l-main-img__bg-col.is-col01 .l-main-img__bg-col-adjust {
  transform: skewX(30deg) translateX(50%) scale(1.001);
}
.l-main-img__bg-col.is-col02 img {
  margin-left: auto;
}
.l-main-img__bg-col-slider-item {
  display: block !important;
  position: relative;
}
.l-main-img__bg-col-slider-item-img {
  display: block;
  height: min(870px, calc(100vh - var(--header_height_sp)));
  height: min(870px, calc(var(--vh, 1vh) * 100 - var(--header_height_sp)));
  min-height: 500px;
}
.l-main-img__bg-col-slider-item-img img {
  display: block;
  width: 100%;
  min-width: 63vw;
  min-width: calc(var(--vw, 1vw) * 63);
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center top;
  object-position: center top;
  max-width: unset;
}
.l-main-img__layer {
  position: absolute;
  top: 156px;
  bottom: 160px;
  left: 0;
  right: 0;
  transform: skewY(14deg);
  overflow: hidden;
  opacity: 0.175;
}
.l-main-img__layer img {
  max-width: unset;
  width: 100%;
  height: 150vh;
  height: calc(var(--vh, 1vh) * 150);
  -o-object-fit: cover;
  object-fit: cover;
  transform: skewY(-14deg) translateY(-25%);
}
.l-main-img__copy {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
}
.l-main-img__copy-main {
  margin: 30px 25px 0;
}
@media all and (max-width: 767px) {
  .l-main-img__bg-col img {
    min-width: 100vw;
    min-width: calc(var(--vw, 1vw) * 100);
  }
}
@media all and (min-width: 768px) {
  .l-main-img::after {
    background-position: left 48%;
    background-size: 2148px auto;
    -webkit-animation-name: homeMvTxtLoopPc;
    animation-name: homeMvTxtLoopPc;
    -webkit-animation-duration: 50s;
    animation-duration: 50s;
  }
  .l-main-img__inner {
    padding-bottom: 38px;
  }
  .l-main-img__bg .slick-dots {
    opacity: 1;
    visibility: visible;
    left: 60px;
    bottom: 60px;
  }
  .l-main-img__bg .slick-dots li {
    margin-right: 28px;
  }
  .l-main-img__bg .slick-dots button {
    width: 12px;
    height: 12px;
  }
  .l-main-img__bg-col-slider-item-img img {
    width: auto;
  }
  .l-main-img__layer {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    right: 0;
    width: 1000px;
    transform: skewX(19deg) translateX(-50%);
    margin-left: -20px;
    z-index: 1;
  }
  .l-main-img__layer img {
    width: 200%;
    height: 100%;
    transform: skewX(-19deg) translateX(-25%);
  }
  .l-main-img__copy-sub {
    font-size: 1.8rem;
  }
  .l-main-img__copy-main {
    margin: 40px auto 0;
  }
}
@media (orientation: landscape) {
  .l-main-img__bg-col.is-col02 .l-main-img__bg-col-adjust {
    padding-left: 15%;
  }
}
@media (orientation: portrait) and (hover: hover) and (pointer: fine) {
  .l-main-img__bg-col.is-col02 .l-main-img__bg-col-adjust {
    margin-left: -10%;
  }
}

/* .l-sub-img
================================================ */
.l-sub-img {
  background: url(../img/common/img_mv01_sp.jpg) no-repeat center/cover;
  font-size: 1.5rem;
  text-align: center;
}
.l-sub-img__inner {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  height: 150px;
  padding-left: 25px;
}
.l-sub-img__head {
  display: block;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  text-align: left;
  color: rgba(255, 255, 255, 0.5);
}
.l-sub-img__head-en {
  text-align: left;
  display: block;
  color: #fff;
  font-weight: 700;
  font-size: 3rem;
  padding-top: 10px;
  position: relative;
}
.l-sub-img__head-en::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 6px;
  background: rgb(var(--sky_blue));
  transform: rotate(-30deg);
  position: absolute;
  top: 0;
  left: 0;
}
@media all and (min-width: 768px) {
  .l-sub-img {
    background: url(../img/common/img_mv01_pc.jpg) no-repeat center/cover;
    font-size: 2rem;
  }
  .l-sub-img__inner {
    height: 270px;
  }
  .l-sub-img__head {
    font-size: 1.5rem;
  }
  .l-sub-img__head-en {
    font-size: 5rem;
  }
  .l-sub-img__head-en::before {
    width: 18px;
    height: 8px;
  }
}

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

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

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

.js-c-anime-elem[data-anime-delay="0.1"] {
  transition-delay: 0.1s;
}
.js-c-anime-elem[data-anime-delay="0.2"] {
  transition-delay: 0.2s;
}
.js-c-anime-elem[data-anime-delay="0.3"] {
  transition-delay: 0.3s;
}
.js-c-anime-elem[data-anime-delay="0.4"] {
  transition-delay: 0.4s;
}
.js-c-anime-elem[data-anime-delay="0.5"] {
  transition-delay: 0.5s;
}
.js-c-anime-elem[data-anime-delay="0.6"] {
  transition-delay: 0.6s;
}
.js-c-anime-elem[data-anime-delay="0.7"] {
  transition-delay: 0.7s;
}
.js-c-anime-elem[data-anime-delay="0.8"] {
  transition-delay: 0.8s;
}
.js-c-anime-elem[data-anime-delay="0.9"] {
  transition-delay: 0.9s;
}
.js-c-anime-elem[data-anime-delay="1"] {
  transition-delay: 1s;
}
.js-c-anime-elem[data-anime-delay="1.1"] {
  transition-delay: 1.1s;
}
.js-c-anime-elem[data-anime-delay="1.2"] {
  transition-delay: 1.2s;
}
.js-c-anime-elem[data-anime-delay="1.3"] {
  transition-delay: 1.3s;
}
.js-c-anime-elem[data-anime-delay="1.4"] {
  transition-delay: 1.4s;
}
.js-c-anime-elem[data-anime-delay="1.5"] {
  transition-delay: 1.5s;
}
.js-c-anime-elem[data-anime-delay="1.6"] {
  transition-delay: 1.6s;
}
.js-c-anime-elem[data-anime-delay="1.7"] {
  transition-delay: 1.7s;
}
.js-c-anime-elem[data-anime-delay="1.8"] {
  transition-delay: 1.8s;
}
.js-c-anime-elem[data-anime-delay="1.9"] {
  transition-delay: 1.9s;
}
.js-c-anime-elem[data-anime-delay="2"] {
  transition-delay: 2s;
}

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

.slick-vertical .slick-slide {
  border: none;
}

/* .environment-policy-main
================================================ */
.environment-policy-main__txt {
  text-align: right;
  margin-top: 10px;
}
.environment-policy-main__inner {
  padding-top: 51px;
}
@media all and (min-width: 768px) {
  .environment-policy-main__txt {
    margin-top: 27px;
  }
  .environment-policy-main__inner {
    padding-top: 77px;
  }
}

/* .environment-policy-main-sec
================================================ */
.environment-policy-main-sec {
  margin-top: 38px;
}
.environment-policy-main-sec:last-child {
  padding-bottom: 60px;
}
.environment-policy-main-sec + .environment-policy-main-sec {
  margin-top: 50px;
}
.environment-policy-main-sec__txt {
  margin-top: 17px;
}
.environment-policy-main-sec__list {
  background: rgb(var(--bg_light_gray));
  margin-top: 20px;
  padding: 16px 20px 20px calc(20px + 1em);
}
.environment-policy-main-sec__list.is-ul li {
  list-style-type: square;
}
.environment-policy-main-sec__item {
  list-style-type: decimal;
  letter-spacing: 0.05em;
}
.environment-policy-main-sec__item::marker {
  font-weight: 700;
  color: rgb(var(--dark_blue));
}
.environment-policy-main-sec__item + li {
  margin-top: 8px;
}
@media all and (min-width: 768px) {
  .environment-policy-main-sec {
    margin-top: 58px;
  }
  .environment-policy-main-sec:last-child {
    padding-bottom: 100px;
  }
  .environment-policy-main-sec + .environment-policy-main-sec {
    margin-top: 57px;
  }
  .environment-policy-main-sec__txt {
    margin-top: 30px;
  }
  .environment-policy-main-sec__list {
    padding: 35px 40px 40px calc(40px + 1.5em);
    margin-top: 40px;
  }
  .environment-policy-main-sec__item + li {
    margin-top: 6px;
  }
}

/* .error-page404
================================================ */
.error-page404 {
  text-align: center;
}
.error-page404__head {
  display: inline-block;
}
.error-page404__inner {
  padding-top: 45px;
  padding-bottom: 60px;
}
@media all and (min-width: 768px) {
  .error-page404__inner {
    padding-top: 90px;
    padding-bottom: 100px;
  }
  .error-page404__btn {
    margin-top: 50px;
  }
}

/* .home-feature
================================================ */
.home-feature {
  overflow: hidden;
}
.home-feature__inner {
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
}
.home-feature__more {
  position: absolute;
  top: 44px;
  right: 15px;
  margin-top: 0;
}
@media all and (min-width: 768px) {
  .home-feature__inner {
    padding-top: 90px;
    padding-bottom: 100px;
  }
  .home-feature__more {
    top: 115px;
    right: 50px;
  }
}

.home-feature-arvhive {
  position: relative;
}
.home-feature-arvhive__nav {
  margin: 22px 5px 0 0;
  display: flex;
  justify-content: flex-end;
}
.home-feature-arvhive__nav .slick-arrow {
  width: 11px;
  height: 13px;
  color: rgb(var(--dark_blue));
}
.home-feature-arvhive__nav .slick-arrow__ico {
  display: block;
  width: 100%;
  height: 100%;
}
.home-feature-arvhive__nav .slick-arrow.slick-prev .slick-arrow__ico {
  transform: scaleX(-1);
}
.home-feature-arvhive__nav .slick-arrow.slick-next {
  margin-left: 25px;
}
@media all and (max-width: 767px) {
  .home-feature-arvhive__arrows {
    display: none;
  }
}
@media all and (min-width: 768px) {
  .home-feature-arvhive__nav {
    position: absolute;
    top: -111px;
    right: 160px;
    margin: 0;
  }
  .home-feature-arvhive__nav .slick-arrow {
    width: 14px;
    height: 16px;
  }
  .home-feature-arvhive__nav .slick-arrow__ico {
    display: block;
    width: 100%;
    height: 100%;
  }
  .home-feature-arvhive__nav .slick-arrow.slick-prev .slick-arrow__ico {
    transform: scaleX(-1);
  }
  .home-feature-arvhive__nav .slick-arrow.slick-next {
    margin-left: 20px;
  }
  .home-feature-arvhive__arrows {
    position: absolute;
    top: 65px;
    left: -40px;
    right: -40px;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
  }
  .home-feature-arvhive__arrows-btn {
    width: 80px;
    height: 80px;
    color: rgb(var(--dark_blue));
    background: rgb(var(--bg_light_gray));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: auto;
  }
  .home-feature-arvhive__arrows-btn-ico {
    display: block;
    width: 14px;
    height: 16px;
  }
  .home-feature-arvhive__arrows-btn.is-prev .home-feature-arvhive__arrows-btn-ico {
    transform: scaleX(-1);
  }
}
@media (hover: hover) and (pointer: fine) {
  .home-feature-arvhive__nav .slick-arrow:hover {
    color: rgb(var(--note));
  }
  .home-feature-arvhive__arrows-btn:hover {
    color: rgb(var(--note));
  }
}

/* .home-news
================================================ */
.home-news {
  position: relative;
  overflow: hidden;
  background: rgb(var(--bg_light_gray));
}
.home-news__inner {
  position: relative;
  padding-top: 45px;
  padding-bottom: 40px;
}
@media all and (max-width: 767px) {
  .home-news__bg {
    display: none;
  }
  .home-news__more {
    margin-right: 5px;
  }
}
@media all and (min-width: 768px) {
  .home-news__bg {
    position: absolute;
    bottom: -72px;
    left: -340px;
    width: 623px;
    height: 550px;
    color: #eeeff0;
  }
  .home-news__inner {
    padding-top: 90px;
    padding-bottom: 90px;
    display: flex;
    justify-content: space-between;
  }
  .home-news__arvhive {
    flex-basis: 1187px;
    max-width: calc(100% - 200px);
  }
  .home-news__more {
    position: absolute;
    top: 230px;
    left: 50px;
    margin-top: 0;
  }
}

/* .home-service
================================================ */
.home-service {
  overflow: hidden;
  margin-bottom: 40px;
}
.home-service__inner {
  padding-top: 30px;
}
.home-service__info {
  background: #151e48 url(../img/home/bg_service03_sp.jpg) no-repeat center center/cover;
  padding: 10px;
  margin: 0 10px;
}
@media all and (min-width: 768px) {
  .home-service__inner {
    padding-top: 65px;
  }
  .home-service__info {
    background-image: url(../img/home/bg_service03_pc.jpg);
    padding: 110px 40px;
  }
}
@media all and (min-width: 1200px) {
  .home-service {
    margin-bottom: 0;
  }
  .home-service__info {
    margin: 0;
  }
}

.home-service-bnr__wrap {
  margin: 0 10px;
}
.home-service-bnr.is-service01 .home-service-bnr__bg {
  max-height: 400px;
}
.home-service-bnr.is-service02 {
  max-height: 550px;
  margin: 2px 0;
}
.home-service-bnr.is-service02 .home-service-bnr__bg {
  max-height: 350px;
}
.home-service-bnr__area-txt {
  padding-bottom: 43px;
}
.home-service-bnr__link {
  background: rgb(var(--bg_cv));
  min-height: 220px;
  display: flex;
}
.home-service-bnr__bg {
  transition: opacity 0.3s ease;
}
.home-service-bnr__area-txt {
  padding: 0 15px;
}
@media all and (min-width: 768px) {
  .home-service-bnr__area-txt {
    padding: 0 100px;
    padding: 0 min(100px, 10%);
  }
}
@media all and (min-width: 1200px) {
  .home-service-bnr__wrap {
    display: flex;
    margin: 0;
  }
  .home-service-bnr.is-service01 {
    width: 64%;
  }
  .home-service-bnr.is-service02 {
    margin: 0;
    width: 36%;
    min-width: 490px;
  }
  .home-service-bnr__link {
    height: 650px !important;
  }
  .home-service-bnr__bg {
    max-height: 100% !important;
  }
}
@media (hover: hover) and (pointer: fine) {
  .home-service-bnr__link:hover .home-service-bnr__bg {
    opacity: 0.15;
  }
}

/* .home-foot
================================================ */
.home-foot {
  position: relative;
  overflow: hidden;
  background: rgb(var(--bg_light_blue));
  margin-bottom: -130px;
}
.home-foot__bg {
  position: absolute;
  bottom: -52px;
  right: -305px;
  width: 881px;
  height: 779px;
  color: #e4e8ed;
}
.home-foot__inner {
  padding-top: 20px;
  padding-bottom: 185px;
}
@media all and (max-width: 767px) {
  .home-foot {
    padding-top: 25px;
  }
}
@media all and (min-width: 768px) {
  .home-foot {
    margin-bottom: -122px;
  }
  .home-foot__inner {
    padding-top: 70px;
    padding-bottom: 242px;
  }
}

.home-foot-partner__deco {
  position: absolute;
  right: 36px;
  bottom: 37px;
  max-width: 60%;
  opacity: 0.16;
}
.home-foot-partner__box {
  box-sizing: border-box;
  position: absolute;
  position: relative;
  padding: 22px 20px 38px;
  background: linear-gradient(to right, rgba(74, 182, 246, 0.6) 0%, rgba(9, 151, 233, 0.6) 100%);
}
.home-foot-partner__box::before {
  display: block;
  content: "";
  background: rgb(var(--sky_blue));
  width: 12px;
  height: 5.4px;
  transform: rotate(-30deg);
}
.home-foot-partner__box-head {
  font-size: 1.9rem;
  font-weight: 700;
  line-height: var(--line_height_head);
}
.home-foot-partner__box-desc {
  margin-top: 5px;
}
@media all and (max-width: 767px) {
  .home-foot-partner__deco {
    display: none;
  }
  .home-foot-partner__box {
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    font-size: 1.3rem;
  }
}
@media all and (min-width: 768px) {
  .home-foot-partner__box {
    position: absolute;
    bottom: 80px;
    left: 80px;
    padding: 55px 3.5% 50px;
    padding-left: max(40px, 3.5%);
    padding-right: max(40px, 3.5%);
    width: calc(100% - 160px);
    max-width: 730px;
  }
  .home-foot-partner__box::before {
    width: 20px;
    height: 8.1px;
    margin-bottom: -5px;
  }
  .home-foot-partner__box-head {
    font-size: 3.8rem;
  }
}

.home-foot-list__item-link {
  position: relative;
  display: block;
  width: 100%;
  height: 130px;
  color: #fff;
}
.home-foot-list__item-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.home-foot-list__item-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.home-foot-list__item-head {
  position: absolute;
  left: 24px;
  right: 45px;
  bottom: 20px;
}
.home-foot-list__item-head-sub {
  font-size: 1rem;
  opacity: 0.4;
}
.home-foot-list__item-head-main {
  margin-top: 1px;
  font-size: 1.7rem;
  line-height: var(--line_height_tight);
}
.home-foot-list__item-ico {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 12.55px;
  height: 12.55px;
}
@media all and (max-width: 767px) {
  .home-foot-list__item + .home-foot-list__item {
    margin-top: 10px;
  }
}
@media all and (min-width: 768px) {
  .home-foot-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: -0.88% -0.88% 0;
  }
  .home-foot-list__item {
    flex-basis: 31.5733333333%;
    max-width: 31.5733333333%;
    margin: 0.88% 0.88% 0;
  }
  .home-foot-list__item-link {
    height: 0;
    padding-top: 60.9243697479%;
  }
}
@media all and (min-width: 1200px) {
  .home-foot-list__item-head {
    left: 40px;
    right: 78px;
    bottom: 28px;
  }
  .home-foot-list__item-head-sub {
    font-size: 1.3rem;
  }
  .home-foot-list__item-head-main {
    font-size: 2.2rem;
  }
  .home-foot-list__item-ico {
    right: 30px;
    bottom: 30px;
    width: 15px;
    height: 15px;
  }
}

/* .news
================================================ */
#news .l-wrapper {
  background: rgb(var(--bg_light_gray));
}
#news.is-single .l-wrapper {
  background: transparent;
}

/* .news-archive
================================================ */
.news-archive__inner {
  padding-top: 50px;
  padding-bottom: 60px;
}
.news-archive__anchors {
  display: flex;
  overflow: auto;
  white-space: nowrap;
  flex-wrap: nowrap;
  -webkit-overflow-scrolling: touch;
  margin-right: -15px;
}
.news-archive__anchor.is-current .news-archive__anchor-in {
  background: #fff;
  color: rgb(var(--dark_blue));
}
.news-archive__anchor + .news-archive__anchor {
  margin-left: 6px;
}
.news-archive__anchor-in {
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  min-height: 40px;
  min-width: 100px;
  padding-left: 1em;
  padding-right: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-sizing: border-box;
  border: 2px solid rgb(var(--dark_blue));
  color: #fff;
  background: rgb(var(--dark_blue));
}
.news-archive__wrap {
  margin-top: 40px;
}
.news-archive__meta {
  padding-bottom: 40px;
  border-bottom: 1px solid rgb(var(--dark_blue));
}
.news-archive__search {
  margin-top: 25px;
}
.news-archive__search-txt {
  color: rgb(var(--dark_blue));
  font-size: 1.3rem;
  letter-spacing: 0.05em;
}
.news-archive__search-txt::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(../img/common/ico_search01.png) no-repeat center/contain;
  margin-right: 6px;
  transform: translateY(3px);
}
.news-archive__search select {
  margin-top: 12px;
  padding: 8px 10px;
  border: 2px solid rgb(var(--border));
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: no-repeat right 15px top 50%/8px;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAOCAYAAAAmL5yKAAAAzUlEQVQokZ2RsQ3CMBBFfxxaS9RXMQIlJSV0pKTMCIyQDWACYAM2wBvACFRXW3IDHTrJRlZiRyZXnHLWfz+n+xURnQEsMK26GYArgPsE3DCzUdJkmGDQSVN+aP+EL/7HqKU556zWeg5gVQBbAHth4g3CSrbA4MTMrzDU4cM599ZafwBsRmABW9GGh6qvIKIHgGXGoGHmW/ygEqJDBjZ9OGngrzsQ5oxTG6TEEtszJfwdMS4fq9xn7ZPZxocr2UDq6GGJrSTeYRHRblQA4Av4tkvSJ5wq3wAAAABJRU5ErkJggg==");
}
@media all and (min-width: 768px) {
  .news-archive {
    overflow: hidden;
  }
  .news-archive_wrap {
    margin-top: 50px;
  }
  .news-archive__inner {
    padding-top: 90px;
    padding-bottom: 120px;
  }
  .news-archive__anchors {
    max-width: 530px;
    flex-wrap: wrap;
    margin-top: -6px;
    margin-left: -6px;
  }
  .news-archive__anchor {
    margin-left: 6px;
    margin-top: 6px;
  }
  .news-archive__anchor-in {
    min-height: 27px;
    font-size: 1.5rem;
  }
  .news-archive__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 60px;
    border-bottom: none;
    position: relative;
  }
  .news-archive__meta::before {
    content: "";
    display: inline-block;
    width: 100vw;
    height: 1px;
    background: rgb(var(--dark_blue));
    position: absolute;
    bottom: 0;
  }
  .news-archive__search {
    display: flex;
    align-items: center;
    margin-top: 0;
  }
  .news-archive__search-txt {
    white-space: nowrap;
    margin-right: 20px;
  }
  .news-archive__search select {
    font-size: 1.6rem;
    padding: 10px 15px;
    min-width: 250px;
    margin-top: 0;
  }
}

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

/* .pickup-archive
================================================ */
.pickup-archive {
  overflow: hidden;
}
.pickup-archive__inner {
  padding-top: 50px;
  padding-bottom: 60px;
}
.pickup-archive__list {
  padding-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 65px;
  position: relative;
}
.pickup-archive__list::before {
  content: "";
  display: inline-block;
  width: 100vw;
  height: 1px;
  background: rgb(var(--dark_blue));
  position: absolute;
  top: 0;
  left: 15px;
}
@media all and (min-width: 768px) {
  .pickup-archive .c-pager01 {
    margin-top: 150px;
  }
  .pickup-archive__inner {
    padding-top: 80px;
    padding-bottom: 100px;
  }
  .pickup-archive__list {
    padding-top: 50px;
    grid-template-columns: repeat(3, 1fr);
    gap: 90px 56px;
  }
}

/* .pickup-single
================================================ */
.pickup-single__inner {
  padding-top: 50px;
  padding-bottom: 60px;
}
@media all and (min-width: 768px) {
  .pickup-single__inner {
    padding-top: 80px;
    padding-bottom: 100px;
  }
}

/* .privacy-main
================================================ */
.privacy-main__txt {
  text-align: right;
  margin-top: 10px;
}
.privacy-main__inner {
  padding-top: 51px;
}
@media all and (min-width: 768px) {
  .privacy-main__txt {
    margin-top: 27px;
  }
  .privacy-main__inner {
    padding-top: 77px;
  }
}

/* .privacy-main-sec
================================================ */
.privacy-main-sec {
  margin-top: 38px;
}
.privacy-main-sec:last-child {
  padding-bottom: 60px;
}
.privacy-main-sec + .privacy-main-sec {
  margin-top: 50px;
}
.privacy-main-sec__txt {
  margin-top: 17px;
}
.privacy-main-sec__list {
  background: rgb(var(--bg_light_gray));
  margin-top: 20px;
  padding: 16px 20px 20px calc(20px + 1em);
}
.privacy-main-sec__list.is-ul li {
  list-style-type: square;
}
.privacy-main-sec__item {
  list-style-type: decimal;
  letter-spacing: 0.05em;
}
.privacy-main-sec__item::marker {
  font-weight: 700;
  color: rgb(var(--dark_blue));
}
.privacy-main-sec__item + li {
  margin-top: 8px;
}
@media all and (min-width: 768px) {
  .privacy-main-sec {
    margin-top: 58px;
  }
  .privacy-main-sec:last-child {
    padding-bottom: 100px;
  }
  .privacy-main-sec + .privacy-main-sec {
    margin-top: 57px;
  }
  .privacy-main-sec__txt {
    margin-top: 30px;
  }
  .privacy-main-sec__list {
    padding: 35px 40px 40px calc(40px + 1.5em);
    margin-top: 40px;
  }
  .privacy-main-sec__item + li {
    margin-top: 6px;
  }
}

/* .securitypolicy
================================================ */
.securitypolicy__hr {
  margin: 0;
}

/* .securitypolicy-main
================================================ */
.securitypolicy-main:first-child {
  padding-bottom: 50px;
}
.securitypolicy-main:last-child {
  padding-bottom: 60px;
}
.securitypolicy-main__txt {
  text-align: right;
  margin-top: 10px;
}
.securitypolicy-main__inner {
  padding-top: 51px;
}
@media all and (min-width: 768px) {
  .securitypolicy-main {
    padding-bottom: 100px !important;
  }
  .securitypolicy-main:last-child {
    padding-top: 100px;
  }
  .securitypolicy-main:last-child .securitypolicy-main__inner {
    padding-top: 0;
  }
  .securitypolicy-main__txt {
    margin-top: 27px;
  }
  .securitypolicy-main__inner {
    padding-top: 77px;
  }
}

/* .securitypolicy-main-sec
================================================ */
.securitypolicy-main-sec {
  margin-top: 38px;
}
.securitypolicy-main-sec + .securitypolicy-main-sec {
  margin-top: 50px;
}
.securitypolicy-main-sec__head {
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgb(var(--dark_blue));
  box-sizing: border-box;
  line-height: 1.5;
}
.securitypolicy-main-sec__subhead {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
  padding-left: 15px;
  margin-top: 30px;
  position: relative;
}
.securitypolicy-main-sec__subhead::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 80%;
  background: linear-gradient(180deg, #12a0e7 0%, #12a0e7 50%, #1a328c 50%, #1a328c 100%);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.securitypolicy-main-sec__txt {
  margin-top: 17px;
}
.securitypolicy-main-sec__list {
  background: rgb(var(--bg_light_gray));
  margin-top: 20px;
  padding: 16px 20px 20px calc(20px + 1em);
}
.securitypolicy-main-sec__list.is-ul li {
  list-style-type: square;
}
.securitypolicy-main-sec__item {
  list-style-type: decimal;
  letter-spacing: 0.05em;
}
.securitypolicy-main-sec__item::marker {
  font-weight: 700;
  color: rgb(var(--dark_blue));
}
.securitypolicy-main-sec__item + li {
  margin-top: 8px;
}
@media all and (min-width: 768px) {
  .securitypolicy-main-sec {
    margin-top: 58px;
  }
  .securitypolicy-main-sec + .securitypolicy-main-sec {
    margin-top: 57px;
  }
  .securitypolicy-main-sec__head {
    margin-top: 30px;
    font-size: 2rem;
    padding-bottom: 20px;
  }
  .securitypolicy-main-sec__txt {
    margin-top: 30px;
  }
  .securitypolicy-main-sec__list {
    padding: 35px 40px 40px calc(40px + 1.5em);
    margin-top: 40px;
  }
  .securitypolicy-main-sec__item + li {
    margin-top: 6px;
  }
}

/* .sitemap-wrap
================================================ */
.sitemap-wrap__inner {
  padding-top: 45px;
  padding-bottom: 60px;
}
@media all and (min-width: 768px) {
  .sitemap-wrap__inner {
    padding-top: 90px;
    padding-bottom: 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px 60px;
  }
}

/* .sitemap-box
================================================ */
.sitemap-box + .sitemap-box {
  margin-top: 40px;
}
.sitemap-box__head + .sitemap-box__head {
  margin-top: 20px;
}
.sitemap-box__head-in {
  display: block;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  padding-bottom: 16px;
  border-bottom: 1px solid rgb(var(--border));
  line-height: 1.833;
  font-weight: 700;
  box-sizing: border-box;
  position: relative;
}
.sitemap-box__head-in::before {
  content: "";
  display: inline-block;
  width: 11px;
  height: 13px;
  background: url(../img/common/ico_arrow02.png) no-repeat center/contain;
  position: absolute;
  top: 10px;
  right: 15px;
}
.sitemap-box__head-in[target=_blank]::before {
  width: 13px;
  height: 13px;
  background: url(../img/common/ico_blank01.png) no-repeat center/contain;
}
.sitemap-box__head-in.is-notico::before {
  content: none;
}
.sitemap-box__list {
  display: flex;
  flex-wrap: wrap;
}
.sitemap-box__item {
  width: 50%;
  margin-top: 15px;
}
.sitemap-box__item.has-child {
  width: 100%;
}
.sitemap-box__item-in {
  letter-spacing: 0.05em;
}
.sitemap-box__item-in::before {
  content: "-";
  display: inline-block;
  margin-right: 0.5em;
}
.sitemap-box__child {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.sitemap-box__child-item {
  margin-top: 15px;
}
.sitemap-box__child-in {
  letter-spacing: 0.05em;
  color: rgb(var(--note));
}
.sitemap-box__child-in::before {
  content: "-";
  display: inline-block;
  margin-right: 0.5em;
}
@media all and (min-width: 768px) {
  .sitemap-box + .sitemap-box {
    margin-top: 0;
  }
  .sitemap-box__head-in {
    transition: all 0.3s ease;
  }
  .sitemap-box__head-in:hover {
    color: rgb(var(--dark_blue));
  }
  .sitemap-box__list {
    display: block;
  }
  .sitemap-box__item {
    width: 100%;
    margin-top: 20px;
  }
  .sitemap-box__item-in {
    transition: all 0.3s ease;
  }
  .sitemap-box__item-in:hover {
    color: rgb(var(--dark_blue));
  }
  .sitemap-box__child {
    display: block;
    margin-left: 1em;
  }
  .sitemap-box__child-in {
    transition: all 0.3s ease;
  }
  .sitemap-box__child-in:hover {
    color: rgb(var(--dark_blue));
  }
  .sitemap-box__child-item {
    margin-top: 10px;
  }
}