@charset "UTF-8";

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

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

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

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

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

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

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

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

span {
  font-weight: inherit;
}

blockquote,
q {
  quotes: none;
}

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

a {
  color: inherit;
}

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

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

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

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

del {
  text-decoration: line-through;
}

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

address {
  font-style: normal;
}

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

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

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

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

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

picture source {
  position: absolute;
}

iframe {
  max-width: 100%;
}

/* form
================================================== */
input[type=text],
input[type=email],
input[type=tel],
textarea,
button,
select,
option {
  display: block;
  width: 100%;
  max-width: 100%;
  font: inherit;
  color: inherit;
  text-align: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  outline: none;
  border: 1px solid;
  border-radius: 0;
  background: none;
}

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

@media all and (max-width: 767px) {

  input[type=text],
  input[type=email],
  input[type=tel],
  textarea,
  select,
  option {
    font-size: 1.6rem;
  }
}

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

textarea {
  resize: vertical;
}

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

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

@media all and (min-width: 768px) {
  body {
    min-width: var(--contents_width_with_padding);
    padding-top: var(--header_height_pc);
    font-size: 1.6rem;
  }
}

.l-wrapper {
  position: relative;
}

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

  .l-container.is-col2 .l-contents {
    flex: 1;
  }

  .l-container.is-col2 .l-sidebar {
    order: -1;
    flex-basis: var(--sidebar_width);
  }
}

/* sp <--> tb <--> pc
-------------------------------------- */
.u-media-query {
  display: none;
  font-family: "sp";
}

@media all and (min-width: 768px) {
  .u-media-query {
    font-family: "tb";
  }
}

@media all and (min-width: 1200px) {
  .u-media-query {
    font-family: "pc";
  }
}

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

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

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

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

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

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

/* overflow
-------------------------------------- */
.u-overflow-wrap {
  overflow: auto;
}

.u-overflow-wrap .u-overflow-sec {
  overflow: hidden;
}

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

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

.u-en {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: var(--line_height_tight);
  font-style: italic;
}

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

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

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

.u-small {
  font-size: 1.2rem;
}

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

/* link
-------------------------------------- */
a.u-alpha {
  display: block;
  text-decoration: none;
}

@media (hover: hover) and (pointer: fine) {
  a.u-alpha {
    transition: all 0.3s ease;
  }

  a.u-alpha:hover {
    opacity: 0.7;
  }
}

a.u-zoom {
  display: block;
  text-decoration: none;
}

a.u-zoom .u-zoom__img {
  display: block;
}

a.u-zoom .u-zoom__img-wrap {
  display: block;
  overflow: hidden;
}

@media (hover: hover) and (pointer: fine) {
  a.u-zoom .u-zoom__img {
    transition: all 0.3s ease;
  }

  a.u-zoom:hover .u-zoom__img {
    transform: scale(1.1);
  }
}

/* layout
-------------------------------------- */
.u-inner {
  box-sizing: border-box;
  padding-left: 20px;
  padding-right: 20px;
}

@media all and (min-width: 768px) {
  .u-inner {
    width: 100%;
    max-width: var(--contents_width_with_padding);
    margin-right: auto;
    margin-left: auto;
    padding-left: 50px;
    padding-right: 50px;
  }

  .u-inner.is-wide {
    max-width: var(--contents_wide_width_with_padding);
  }
}

/*  .c-archive01
================================================== */
.c-archive01__item {
  padding-top: 30px;
  padding-bottom: 30px;
  list-style-type: none;
  border-bottom: 1px solid rgb(var(--border));
  display: flex;
  align-items: flex-start;
}

.c-archive01__item:first-of-type .c-archive01__item-in {
  padding-top: 0;
}

.c-archive01__item-img {
  width: 109px;
  flex-shrink: 0;
  margin-right: 16px;
}

.c-archive01__item-head {
  overflow: hidden;
  display: -webkit-box;
  max-height: 3.2em;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.6;
  text-overflow: ellipsis;
  font-size: 1.6rem;
  font-weight: 700;
}

.c-archive01__item-cats {
  margin-top: 10px;
}

.c-archive01__item-cat {
  font-size: 1.2rem;
  font-weight: 500;
  color: rgb(var(--note));
}

.c-archive01__item-txt {
  margin-top: 10px;
}

.c-archive01__item-size {
  font-size: 1.1rem;
}

.c-archive01__checkbox-field {
  display: block;
  margin-top: 20px;
}

.c-archive01__checkbox-field label {
  display: block;
  cursor: pointer;
}

.c-archive01__checkbox-field input {
  display: none;
}

.c-archive01__checkbox-field-text {
  position: relative;
  display: inline-block;
  padding-left: 40px;
  vertical-align: top;
}

.c-archive01__checkbox-field-text::before {
  box-sizing: border-box;
  position: absolute;
  top: 3px;
  left: 0;
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  border: 1px solid rgb(var(--border));
  background: linear-gradient(180deg, #bbc7ce 0%, rgba(255, 255, 255, 0.6) 15%);
}

@media all and (min-width: 768px) {

  .c-archive01__checkbox-field::before,
  .c-archive01__checkbox-field-text::before {
    top: 5px;
  }

  .c-archive01__item {
    border: none;
    padding: 0;
  }

  .c-archive01__item-img {
    width: 212px;
    margin-right: 30px;
  }

  .c-archive01__item-head {
    font-size: 1.8rem;
  }

  .c-archive01__item-cats {
    margin-top: 5px;
  }

  .c-archive01__item-cat {
    font-size: 1.4rem;
  }

  .c-archive01__item-txt {
    margin-top: 12px;
    font-size: 93%;
  }

  .c-archive01__item-size {
    font-size: 1.2rem;
    margin-top: 4px;
  }

  .c-archive01__checkbox-field {
    margin-top: 21px;
    padding-top: 20px;
    border-top: 1px solid rgb(var(--border));
  }
}

input:checked+.c-archive01__checkbox-field-text::after {
  position: absolute;
  top: 11px;
  left: 6px;
  content: "";
  display: block;
  width: 12px;
  height: 6px;
  border-style: solid;
  border-width: 2px 2px 0 0;
  border-color: rgb(var(--dark_blue));
  transform: rotate(135deg);
}

@media all and (min-width: 768px) {
  input:checked+.c-archive01__checkbox-field-text::after {
    top: 12px;
  }
}

/*  .c-archive02.is-slider
================================================== */
@media all and (max-width: 767px) {
  .c-archive02.is-slider {
    margin: 0 -15px;
  }

  .c-archive02.is-slider .c-archive02__item {
    max-width: 245px;
    margin: 0;
  }

  .c-archive02.is-slider .c-archive02__item-in {
    padding-left: 15px;
  }
}

@media all and (min-width: 768px) {
  .c-archive02.is-slider {
    margin: 0;
  }

  .c-archive02.is-slider .c-archive02__item {
    margin: 0;
  }

  .c-archive02.is-slider .c-archive02__item-in {
    max-width: 502px;
    padding: 0 13px;
  }
}

/*  .c-archive02
================================================== */
.c-archive02 {
  margin-left: -15px;
}

.c-archive02__item {
  margin-left: 15px;
  box-sizing: border-box;
}

.c-archive02__item-in {
  display: block;
  box-sizing: border-box;
  transition: color 0.3s ease;
}

.c-archive02__item-img {
  position: relative;
}

.c-archive02__item-img::before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 44.8979591837%;
}

.c-archive02__item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.c-archive02__item-head {
  line-height: 1.57;
  margin-top: 5px;
  font-size: 1.3rem;
}

@media all and (min-width: 768px) {
  .c-archive02__item {
    display: block;
  }

  .c-archive02__item-head {
    margin-top: 20px;
    font-size: 1.6rem;
  }
}

@media (hover: hover) and (pointer: fine) {
  .c-archive02__item-in:hover {
    color: rgb(var(--dark_blue));
  }
}

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

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

.c-btn01.is-white .c-btn01__link::before {
  border-bottom-color: #fff;
}

.c-btn01.is-white .c-btn01__link::after {
  background: #fff;
}

@media (hover: hover) and (pointer: fine) {
  .c-btn01.is-white .c-btn01__link:hover {
    color: rgb(var(--dark_blue));
  }
}

/* .c-btn01
===================================*/
.c-btn01 {
  max-width: 275px;
  margin-top: 10px;
  font-weight: 700;
  line-height: var(--line_height_head);
  color: rgb(var(--dark_blue));
}

.c-btn01__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 30px;
  min-height: 62px;
  box-sizing: border-box;
  z-index: 1;
}

.c-btn01__link::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  border-bottom: 2px solid rgb(var(--note));
  z-index: -1;
}

.c-btn01__link::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background: rgb(var(--dark_blue));
  transition: transform 0.3s ease;
  transform: scaleX(0);
  transform-origin: right top;
  z-index: -1;
}

.c-btn01__img {
  margin-right: 10px;
}

.c-btn01__img.is-mail01 {
  width: 21px;
  height: 14px;
}

.c-btn01__img.is-document01 {
  width: 19px;
  height: 17px;
  margin-bottom: -1px;
}

.c-btn01__ico {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  width: 10px;
  height: 12px;
}

.c-btn01__ico.is-external01 {
  width: 10.2px;
  height: 10.2px;
}

.c-btn01__txt {
  transition: color 0.3s ease;
}

@media all and (max-width: 767px) {
  .c-btn01 {
    margin-left: auto;
    margin-right: auto;
  }
}

@media all and (min-width: 768px) {
  .c-btn01 {
    max-width: 280px;
    margin-top: 50px;
  }

  .c-btn01__link {
    padding: 10px 44px;
    min-height: 65px;
  }

  .c-btn01__img {
    margin-right: 12px;
  }

  .c-btn01__img.is-mail01 {
    width: 23px;
    height: 16px;
  }

  .c-btn01__img.is-document01 {
    width: 23px;
    height: 20px;
    margin-bottom: -2px;
  }

  .c-btn01__ico {
    width: 14px;
    height: 16px;
    right: 20px;
  }

  .c-btn01__ico.is-external01 {
    width: 12.4px;
    height: 12.4px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .c-btn01__link:hover {
    color: #fff;
  }

  .c-btn01__link:hover::after {
    transform: scaleX(1);
    transform-origin: left top;
  }
}

/* .c-btn02
===================================*/
.c-btn02__link {
  box-sizing: border-box;
  font-weight: 500;
  background: #fff;
  position: relative;
  display: block;
  z-index: 1;
  text-decoration: none;
  color: rgb(var(--dark_blue));
  padding-top: 15px;
  padding-bottom: 15px;
  text-align: center;
  border: 1px solid rgb(var(--dark_blue));
}

.c-btn02__link::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  z-index: -1;
}

.c-btn02__link::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background: rgb(var(--dark_blue));
  transition: transform 0.3s ease;
  transform: scaleX(0);
  transform-origin: right top;
  z-index: -1;
}

.c-btn02__txt {
  line-height: var(--line_height_head);
  transition: all 0.3s ease;
}

.c-btn02__ico {
  width: 13px;
  height: 15px;
  vertical-align: baseline;
  position: absolute;
  top: 50%;
  right: 21px;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

@media all and (min-width: 768px) {
  .c-btn02 {
    width: 410px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (hover: hover) and (pointer: fine) {
  .c-btn02__link:hover .c-btn02__txt {
    color: #fff;
  }

  .c-btn02__link:hover .c-btn02__ico {
    filter: brightness(0) invert(1);
  }

  .c-btn02__link:hover::after {
    transform: scaleX(1);
    transform-origin: left top;
  }
}

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

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

/* .c-form
================================================== */
.c-form__memo {
  font-size: 1.2rem;
  font-weight: 400;
  display: block;
  line-height: 1;
  margin-top: 5px;
}

.c-form__note {
  color: rgb(var(--note));
  line-height: 1;
  margin-top: 15px;
  display: block;
}

.c-form__note.is-name {
  margin-top: 0;
  margin-bottom: 15px;
}

.c-form__name {
  display: inline-block !important;
  width: 40%;
}

.c-form__name+.c-form__name {
  margin-left: 20px;
}

input.c-form-parts,
select.c-form-parts,
textarea.c-form-parts,
button.c-form-parts {
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 40px;
  padding: 5px 10px;
  font-size: 1.6rem;
  border: 1px solid #ccc;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
}

textarea.c-form-parts {
  height: 200px;
  resize: vertical;
}

select.c-form-parts {
  width: 300px;
  padding-right: 24px;
  background: no-repeat right 15px top 50%/8px;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAOCAYAAAAmL5yKAAAAzUlEQVQokZ2RsQ3CMBBFfxxaS9RXMQIlJSV0pKTMCIyQDWACYAM2wBvACFRXW3IDHTrJRlZiRyZXnHLWfz+n+xURnQEsMK26GYArgPsE3DCzUdJkmGDQSVN+aP+EL/7HqKU556zWeg5gVQBbAHth4g3CSrbA4MTMrzDU4cM599ZafwBsRmABW9GGh6qvIKIHgGXGoGHmW/ygEqJDBjZ9OGngrzsQ5oxTG6TEEtszJfwdMS4fq9xn7ZPZxocr2UDq6GGJrSTeYRHRblQA4Av4tkvSJ5wq3wAAAABJRU5ErkJggg==");
}

.c-form-parts-list {
  display: flex;
  flex-wrap: wrap;
  margin-right: -20px;
}

.c-form-parts-list .c-form-parts {
  margin-right: 20px;
}

.c-form-parts-list.is-flex-enb {
  justify-content: flex-end;
}

/* .c-form.is-default
================================================== */
.c-form.is-default table {
  padding-bottom: 30px;
  border-bottom: 1px solid rgb(var(--border));
}

.c-form.is-default tr+tr th {
  margin-top: 20px;
}

.c-form.is-default th,
.c-form.is-default td {
  border-style: solid;
  border-width: 0;
  box-sizing: border-box;
}

.c-form.is-default th {
  font-weight: 700;
  text-align: left;
  font-size: 1.6rem;
  padding-bottom: 15px;
}

.c-form.is-default table,
.c-form.is-default thead,
.c-form.is-default tbody,
.c-form.is-default tr,
.c-form.is-default th,
.c-form.is-default td {
  display: block;
}

/* .c-form-label
================================================== */
.c-form-label {
  float: right;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 46px;
  height: 22px;
  margin-left: 10px;
  background: rgb(var(--black));
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
  border-radius: 3px;
}

.c-form-label.is-required {
  background: rgb(var(--logo_blue));
}

/* .c-form-note
================================================== */
.c-form-note {
  display: block;
  font-weight: 400;
  color: #666666;
  font-size: 1.3rem;
}

td .c-form-note {
  margin-top: 10px;
}

.mw_wp_form_confirm .c-form-note {
  display: none;
}

/* .c-form-postcode
================================================== */
.c-form-postcode {
  display: flex;
  flex-wrap: wrap;
}

.c-form-postcode__prefix {
  max-width: 26px;
  flex-basis: 26px;
  padding-top: 5px;
}

.c-form-postcode__input {
  max-width: 100px;
  flex-basis: 100px;
}

/* 確認画面
================================================ */
.mw_wp_form_confirm .c-form-postcode .c-form-postcode__prefix,
.is-confirm .c-form-postcode .c-form-postcode__prefix {
  max-width: none;
  flex-basis: 0;
  padding-top: 0;
}

.mw_wp_form_confirm .c-form-postcode .c-form-postcode__input,
.is-confirm .c-form-postcode .c-form-postcode__input {
  max-width: none;
  flex-basis: 0;
}

/* .c-form-item
================================================== */
.c-form-item {
  display: flex;
}

.c-form-item+.c-form-item {
  margin-top: 10px;
}

.c-form-item-list {
  display: flex;
}

.c-form-item-list .c-form-item+.c-form-item {
  margin-top: 0;
  margin-left: 14px;
}

.c-form-item__prefix {
  min-width: 20px;
  margin-right: 10px;
  padding-top: 5px;
}

.c-form-item__suffix {
  min-width: 20px;
  margin-left: 10px;
  padding-top: 5px;
}

.c-form-item__input {
  flex: 1;
}

.c-form-item .c-form-item__input [name*=year] {
  width: 80px;
}

.c-form-item .c-form-item__input [name*=month] {
  width: 64px;
}

.c-form-item .c-form-item__input [name*=day] {
  width: 64px;
}

@media all and (max-width: 374px) {
  .c-form-item .c-form-item__input [name*=year] {
    width: 58px;
  }

  .c-form-item .c-form-item__input [name*=month] {
    width: 50px;
    padding: 5px;
    background-position: right 8px top 50%;
  }

  .c-form-item .c-form-item__input [name*=day] {
    width: 50px;
    padding: 5px;
    background-position: right 8px top 50%;
  }
}

@media all and (min-width: 1200px) {
  .c-form-item {
    display: inline-flex;
  }

  .c-form-item+.c-form-item {
    margin: 0 0 0 20px;
  }

  .c-form-item__input {
    width: 200px;
  }

  .c-form-item-list .c-form-item__input {
    width: auto;
  }

  .c-form-item .c-form-item__input [name*=year] {
    width: 82px;
  }

  .c-form-item .c-form-item__input [name*=month] {
    width: 62px;
  }

  .c-form-item .c-form-item__input [name*=day] {
    width: 62px;
  }
}

/* 確認画面
================================================ */
.mw_wp_form_confirm .c-form-item .c-form-item__prefix,
.mw_wp_form_confirm .c-form-item .c-form-item__suffix,
.is-confirm .c-form-item .c-form-item__prefix,
.is-confirm .c-form-item .c-form-item__suffix {
  min-width: 0;
  padding-top: 0;
}

.mw_wp_form_confirm .c-form-item .c-form-item__input,
.is-confirm .c-form-item .c-form-item__input {
  width: auto;
}

/* .c-form-address
================================================== */
.c-form-address {
  margin-top: 15px;
}

/* .c-form-agreement
================================================== */
.c-form-agreement {
  margin-top: 30px;
  text-align: center;
}

.c-form-agreement__link {
  font-size: 1.2rem;
  text-decoration: underline !important;
  margin-bottom: 21px;
  display: block;
}

@media all and (min-width: 768px) {
  .c-form-agreement__link {
    font-size: 1.4rem;
  }
}

.mw_wp_form_confirm .c-form-agreement {
  display: none;
}

/* .c-form-btn
================================================== */
.c-form-area-btn {
  margin: 30px -20px 0;
  background-color: rgb(var(--bg_light_gray));
  padding: 30px 20px;
}

@media all and (min-width: 768px) {
  .c-form-area-btn {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-left: 0;
    margin-right: 0;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.c-form-btn {
  box-sizing: border-box;
  background: #fff;
  border: 1px solid rgb(var(--dark_blue));
  display: block;
  width: 335px;
  height: 50px;
  font-weight: 500;
  color: rgb(var(--dark_blue));
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
  text-align: center;
  cursor: pointer;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.c-form-btn+.c-form-btn {
  margin-top: 10px;
}

.c-form-btn::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background: url(../img/common/ico_download01.png) no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.c-form-btn::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background: rgb(var(--dark_blue));
  transition: transform 0.3s ease;
  transform: scaleX(0);
  transform-origin: right top;
  z-index: -1;
}

.c-form-btn.is-back {
  margin-bottom: 2em;
}

.c-form-btn.is-back::before {
  content: none;
}

@media all and (min-width: 768px) {
  .c-form-btn {
    width: 300px;
    transition: all 0.3s ease;
  }

  .c-form-btn+.c-form-btn {
    margin-top: 0;
    margin-left: 20px;
  }

  .c-form-btn:hover {
    color: #fff;
  }

  .c-form-btn:hover::before {
    filter: brightness(0) invert(1);
  }

  .c-form-btn:hover::after {
    transform: scaleX(1);
    transform-origin: left top;
  }
}

/* .c-form .mwform-radio-field
================================================ */
.c-form .mwform-radio-field,
.c-form .c-radio {
  display: block;
}

.c-form .mwform-radio-field+.mwform-radio-field,
.c-form .mwform-radio-field+.c-radio,
.c-form .c-radio+.mwform-radio-field,
.c-form .c-radio+.c-radio {
  margin-top: 10px;
}

.c-form .mwform-radio-field label,
.c-form .c-radio label {
  display: block;
  cursor: pointer;
}

.c-form .mwform-radio-field input,
.c-form .c-radio input {
  display: none;
}

.c-form .mwform-radio-field .mwform-radio-field-text,
.c-form .mwform-radio-field .c-radio__text,
.c-form .c-radio .mwform-radio-field-text,
.c-form .c-radio .c-radio__text {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  vertical-align: top;
}

.c-form .mwform-radio-field .mwform-radio-field-text::before,
.c-form .mwform-radio-field .c-radio__text::before,
.c-form .c-radio .mwform-radio-field-text::before,
.c-form .c-radio .c-radio__text::before {
  box-sizing: border-box;
  position: absolute;
  top: 3px;
  left: 0;
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  border: 1px solid;
  border-radius: 50%;
}

.c-form .mwform-radio-field input:checked+.mwform-radio-field-text::after,
.c-form .mwform-radio-field input:checked+.c-radio__text::after,
.c-form .c-radio input:checked+.mwform-radio-field-text::after,
.c-form .c-radio input:checked+.c-radio__text::after {
  box-sizing: border-box;
  position: absolute;
  top: 4px;
  left: 1px;
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  border: 6px solid #fff;
  border-radius: 50%;
  background: rgb(var(--black));
}

@media all and (min-width: 768px) {

  .c-form .mwform-radio-field .mwform-radio-field-text::before,
  .c-form .mwform-radio-field .c-radio__text::before,
  .c-form .c-radio .mwform-radio-field-text::before,
  .c-form .c-radio .c-radio__text::before {
    top: 5px;
  }

  .c-form .mwform-radio-field input:checked+.mwform-radio-field-text::after,
  .c-form .mwform-radio-field input:checked+.c-radio__text::after,
  .c-form .c-radio input:checked+.mwform-radio-field-text::after,
  .c-form .c-radio input:checked+.c-radio__text::after {
    top: 6px;
  }
}

.c-radio-list {
  display: flex;
  flex-wrap: wrap;
}

.c-radio-list .mwform-radio-field,
.c-radio-list .c-radio {
  display: inline-block;
  margin-right: 20px;
}

.c-radio-list .mwform-radio-field+.mwform-radio-field,
.c-radio-list .mwform-radio-field+.c-radio,
.c-radio-list .c-radio+.mwform-radio-field,
.c-radio-list .c-radio+.c-radio {
  margin-top: 0;
}

/* .c-form .mwform-checkbox-field
================================================ */
.c-form .mwform-checkbox-field,
.c-form .c-checkbox {
  display: block;
}

.c-form .mwform-checkbox-field+.mwform-checkbox-field,
.c-form .mwform-checkbox-field+.c-checkbox,
.c-form .c-checkbox+.mwform-checkbox-field,
.c-form .c-checkbox+.c-checkbox {
  margin-top: 10px;
}

.c-form .mwform-checkbox-field label,
.c-form .c-checkbox label {
  display: block;
  cursor: pointer;
}

.c-form .mwform-checkbox-field input,
.c-form .c-checkbox input {
  display: none;
}

.c-form .mwform-checkbox-field .mwform-checkbox-field-text,
.c-form .mwform-checkbox-field .c-checkbox__text,
.c-form .c-checkbox .mwform-checkbox-field-text,
.c-form .c-checkbox .c-checkbox__text {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  vertical-align: top;
}

.c-form .mwform-checkbox-field .mwform-checkbox-field-text::before,
.c-form .mwform-checkbox-field .c-checkbox__text::before,
.c-form .c-checkbox .mwform-checkbox-field-text::before,
.c-form .c-checkbox .c-checkbox__text::before {
  box-sizing: border-box;
  position: absolute;
  top: 3px;
  left: 0;
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  border: 1px solid rgb(var(--border));
  background: linear-gradient(180deg, #bbc7ce 0%, rgba(255, 255, 255, 0.6) 15%);
}

.c-form .mwform-checkbox-field input:checked+.mwform-checkbox-field-text::after,
.c-form .mwform-checkbox-field input:checked+.c-checkbox__text::after,
.c-form .c-checkbox input:checked+.mwform-checkbox-field-text::after,
.c-form .c-checkbox input:checked+.c-checkbox__text::after {
  position: absolute;
  top: 11px;
  left: 6px;
  content: "";
  display: block;
  width: 12px;
  height: 6px;
  border-style: solid;
  border-width: 2px 2px 0 0;
  border-color: rgb(var(--dark_blue));
  transform: rotate(135deg);
}

@media all and (min-width: 768px) {

  .c-form .mwform-checkbox-field .mwform-checkbox-field-text::before,
  .c-form .mwform-checkbox-field .c-checkbox__text::before,
  .c-form .c-checkbox .mwform-checkbox-field-text::before,
  .c-form .c-checkbox .c-checkbox__text::before {
    top: 5px;
  }

  .c-form .mwform-checkbox-field input:checked+.mwform-checkbox-field-text::after,
  .c-form .mwform-checkbox-field input:checked+.c-checkbox__text::after,
  .c-form .c-checkbox input:checked+.mwform-checkbox-field-text::after,
  .c-form .c-checkbox input:checked+.c-checkbox__text::after {
    top: 12px;
  }
}

.c-checkbox-list {
  display: flex;
  flex-wrap: wrap;
}

.c-checkbox-list .mwform-checkbox-field,
.c-checkbox-list .c-checkbox {
  display: inline-block;
  margin-right: 20px;
}

.c-checkbox-list .mwform-checkbox-field+.mwform-checkbox-field,
.c-checkbox-list .mwform-checkbox-field+.c-checkbox,
.c-checkbox-list .c-checkbox+.mwform-checkbox-field,
.c-checkbox-list .c-checkbox+.c-checkbox {
  margin-top: 0;
}

/* .mw_wp_form リセット
================================================ */
.mw_wp_form .c-form .horizontal-item+.horizontal-item {
  margin-left: 0;
}

/* .c-form-thanks
================================================ */
.c-form-thanks__inner {
  padding-top: 40px;
  padding-bottom: 60px;
}

.c-form-thanks__head {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}

.c-form-thanks__head::before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  background: url(../img/common/ico_check01.png) no-repeat center/contain;
  margin-left: auto;
  margin-right: auto;
}

.c-form-thanks__txt {
  margin-top: 20px;
  margin-bottom: 10px;
}

@media all and (min-width: 768px) {
  .c-form-thanks__inner {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .c-form-thanks__txt {
    text-align: center;
  }
}

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

.c-head01.is-center .c-head01__sub {
  justify-content: center;
}

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

.c-head01.is-white .c-head01__sub {
  color: #fff;
}

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

/* .c-head01
===================================*/
.c-head01 {
  position: relative;
  margin-bottom: 25px;
}

.c-head01__sub {
  display: flex;
  align-items: flex-start;
  font-size: 1.5rem;
  color: rgb(var(--dark_blue));
  margin-bottom: 10px;
}

.c-head01__sub::before {
  display: inline-block;
  content: "";
  height: 1.1em;
  width: 0;
  margin: 0 17px 0 0;
  border-left: 4px solid rgb(var(--logo_blue));
  transform: skewX(-30deg);
  transform-origin: left bottom;
}

.c-head01__main {
  line-height: var(--line_height_head);
  font-size: 2.4rem;
  font-weight: 700;
}

@media all and (min-width: 768px) {
  .c-head01 {
    margin-bottom: 50px;
  }

  .c-head01__sub {
    font-size: 1.9rem;
  }

  .c-head01__main {
    font-size: 4rem;
  }
}

/* .c-head02
===================================*/
.c-head02 {
  font-size: 1.8rem;
  font-weight: 700;
  padding-bottom: 10px;
  border-bottom: 1px solid rgb(var(--border));
  line-height: 1;
  margin-bottom: 20px;
}

.c-head02::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 18px;
  background: url(../img/common/ico_head01.png) no-repeat center/contain;
  margin-right: 7px;
  transform: translateY(2px);
}

@media all and (min-width: 768px) {
  .c-head02 {
    font-size: 2rem;
    padding-bottom: 21px;
    margin-bottom: 30px;
  }
}

/* .c-head03
===================================*/
.c-head03 {
  position: relative;
  padding: 0 0 10px 22px;
  margin-bottom: 15px;
  font-size: 1.8rem;
  flex-basis: 700px;
  line-height: var(--line_height_head);
  border-bottom: 1px solid rgb(var(--border));
}

.c-head03::before {
  position: absolute;
  top: 0.15em;
  left: 0;
  content: "";
  height: 1.1em;
  width: 0;
  margin: 0 17px 0 0;
  border-left: 4px solid rgb(var(--logo_blue));
  transform: skewX(-30deg);
  transform-origin: left bottom;
}

@media all and (min-width: 768px) {
  .c-head03 {
    padding: 0 0 21px 28px;
    margin-bottom: 25px;
    font-size: 2rem;
  }

  .c-head03::before {
    top: 0.2em;
    border-left-width: 5px;
  }
}

/* .c-ico
================================================== */
.c-ico {
  display: inline-block;
  vertical-align: middle;
}

.c-ico svg {
  position: relative;
  display: block;
  transition: all 0.3s ease;
}

/* .c-list01
===================================*/
.c-list01 {
  position: relative;
  line-height: var(--line_height_head);
}

.c-list01__item {
  position: relative;
  padding-left: 11px;
}

.c-list01__item+.c-list01__item {
  margin-top: 10px;
}

.c-list01__item::before {
  position: absolute;
  top: 0.75em;
  left: 0;
  transform: translateY(-50%);
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgb(var(--dark_blue));
}

@media all and (min-width: 768px) {
  .c-list01__item {
    padding-left: 12px;
  }

  .c-list01__item::before {
    width: 6px;
    height: 6px;
  }
}

/* .c-pager01
===================================*/
.c-pager01 {
  overflow: hidden;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  margin: 30px -5px -10px;
}

.c-pager01 li {
  margin: 0 5px 10px;
}

.c-pager01 li a,
.c-pager01 li span {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 30px;
  height: 30px;
  line-height: 1;
  border: 1px solid rgb(var(--black));
  text-decoration: none;
}

.c-pager01 li.pages span {
  width: auto;
  border: 0;
}

.c-pager01 li.current span {
  color: #fff;
  background: rgb(var(--black));
}

.c-pager01 li.first,
.c-pager01 li.previous {
  margin-right: 15px;
}

.c-pager01 li.first a,
.c-pager01 li.last a {
  width: auto;
  border-color: transparent;
  padding-right: 15px;
  padding-left: 15px;
}

.c-pager01 li.next,
.c-pager01 li.last {
  margin-left: 15px;
}

.c-pager01 li.extend span {
  border: 0;
}

@media all and (min-width: 768px) {
  .c-pager01 li a:hover {
    text-decoration: none;
    border: 1px solid rgb(var(--black));
    background-color: rgb(var(--black));
    color: #fff;
  }
}

/*  .c-pager02
================================================== */
.c-pager02 {
  position: relative;
  overflow: hidden;
  margin-top: 30px;
  line-height: 1;
}

.c-pager02 a {
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  height: 50px;
  padding: 15px;
  border: 1px solid;
  text-decoration: none;
}

.c-pager02__previous,
.c-pager02__next {
  width: calc(50% - 10px);
}

.c-pager02__previous {
  float: left;
}

.c-pager02__previous a {
  justify-content: flex-start;
  padding-left: 30px;
}

.c-pager02__next {
  float: right;
}

.c-pager02__next a {
  justify-content: flex-end;
  padding-right: 30px;
}

.c-pager02__all {
  width: 100%;
  clear: both;
  padding-top: 20px;
}

.c-pager02__all a {
  justify-content: center;
}

@media all and (min-width: 768px) {
  .c-pager02 a {
    transition: all 0.3s ease;
  }

  .c-pager02 a:hover {
    background: rgb(var(--black));
    color: #fff;
    border-color: rgb(var(--black));
  }
}

/* .c-single-content
================================================== */
.c-single-content *:first-child {
  margin-top: 0;
}

.c-single-content *:last-child {
  margin-bottom: 0;
}

.c-single-content p {
  margin: 1em 0;
}

.c-single-content a {
  text-decoration: underline;
}

@media all and (min-width: 1200px) {
  .c-single-content a:hover {
    text-decoration: none;
  }

  .c-single-content .alignleft {
    float: left;
  }

  .c-single-content .alignright {
    float: right;
  }

  .c-single-content .aligncenter {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}

/*  .c-tab01
================================================== */
.c-tab01 {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  border-bottom: 1px solid rgb(var(--dark_blue));
  padding-left: 10px;
  padding-right: 10px;
}

.c-tab01::-webkit-scrollbar {
  display: none;
}

.c-tab01__item {
  margin-right: 7px;
  min-width: 154px;
}

.c-tab01__item.is-current .c-tab01__item-in {
  background: rgb(var(--bg_cv));
  border-color: rgb(var(--bg_cv));
  color: #fff;
  padding-top: 10px;
  padding-bottom: 10px;
}

.c-tab01__item-in {
  text-align: center;
  font-weight: 700;
  color: rgb(var(--dark_blue));
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
  box-sizing: border-box;
  border: 1px solid rgb(var(--dark_blue));
  padding: 5px 20px;
  display: block;
  white-space: nowrap;
}

@media all and (min-width: 768px) {
  .c-tab01 {
    padding: 0;
  }

  .c-tab01__item {
    min-width: calc(20% - 10px);
    margin-right: 10px;
  }

  .c-tab01__item-in {
    transition: background-color 0.3s ease, color 0.3s ease;
  }

  .c-tab01__item-in:hover {
    background: rgb(var(--bg_cv));
    color: #fff;
  }
}

/* .l-breadcrumb
================================================ */
.l-breadcrumb {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

@media all and (min-width: 768px) {
  .l-breadcrumb {
    z-index: 1;
  }
}

@media all and (min-width: 1780px) {
  .l-breadcrumb {
    position: absolute;
    top: 225px;
    right: 220px;
  }
}

.l-breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  padding-top: 20px;
  line-height: var(--line_height_tight);
  font-size: 1.1rem;
  text-align: right;
}

.l-breadcrumb-list__item {
  display: inline-block;
  vertical-align: top;
}

.l-breadcrumb-list__item+.l-breadcrumb-list__item {
  margin-left: 5px;
}

.l-breadcrumb-list__item+.l-breadcrumb-list__item:before {
  content: "-";
  margin-right: 5px;
}

.l-breadcrumb-list__item>span {
  color: rgb(var(--note));
}

@media all and (max-width: 767px) {
  .l-breadcrumb-list {
    white-space: nowrap;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    overflow: auto;
  }

  .l-breadcrumb-list::-webkit-scrollbar {
    display: none;
  }
}

@media all and (min-width: 768px) {
  .l-breadcrumb-list {
    font-size: 1.2rem;
    justify-content: flex-end;
  }
}

@media all and (min-width: 1780px) {
  .l-breadcrumb-list {
    padding-top: 0;
  }
}

@media (hover: hover) and (pointer: fine) {
  .l-breadcrumb-list__item a {
    transition: color 0.3s ease;
  }

  .l-breadcrumb-list__item a:hover {
    color: rgb(var(--note));
  }
}

/* .l-footer
================================================ */
.l-footer {
  position: relative;
  z-index: 1;
  color: #fff;
  overflow: hidden;
  background: rgb(var(--bg_light_gray));
}

.l-footer::before {
  position: absolute;
  top: 130px;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background: #202d4b;
  z-index: -1;
}

.l-footer__inner {
  max-width: 1680px;
  margin: 0 auto;
  padding-bottom: 40px;
}

@media all and (min-width: 768px) {
  .l-footer::before {
    top: 120px;
  }

  .l-footer__inner {
    padding-bottom: 50px;
  }
}

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

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

@-webkit-keyframes footCvTxtLoopPc {
  100% {
    background-position-x: -2148px;
  }
}

@keyframes footCvTxtLoopPc {
  100% {
    background-position-x: -2148px;
  }
}

.l-footer-cv {
  position: relative;
  padding: 52px 0 70px;
  margin: 0 -20px;
  background: rgb(var(--bg_cv));
  z-index: 1;
  overflow: hidden;
}

.l-footer-cv::before,
.l-footer-cv::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}

.l-footer-cv::before {
  background: url(../img/common/bg_noise01.png) repeat left top/100px 100px;
  opacity: 0.2;
  mix-blend-mode: multiply;
}

.l-footer-cv::after {
  left: 50%;
  right: -50%;
  background: linear-gradient(to bottom, #fff 0%, rgba(255, 255, 255, 0) 130%);
  transform: skewX(-30deg);
  transform-origin: left 100px;
  opacity: 0.05;
}

.l-footer-cv__shine {
  position: absolute !important;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
}

.l-footer-cv__head {
  position: relative;
  padding: 0 40px;
  height: 60px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.l-footer-cv__head::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background: url(../img/common/txt_cv02.png) repeat-x left center/1060px auto;
  mix-blend-mode: overlay;
  opacity: 0.2;
  z-index: 1;
  -webkit-animation: footCvTxtLoopSp 30s linear infinite;
  animation: footCvTxtLoopSp 30s linear infinite;
}

.l-footer-cv__head img {
  display: block;
}

.l-footer-cv__list-item+.l-footer-cv__list-item {
  margin-top: 15px;
}

@media all and (min-width: 768px) {
  .l-footer-cv {
    padding: 168px 0 171px;
    margin: 0 -140px;
  }

  .l-footer-cv::before {
    background-size: 200px 200px;
  }

  .l-footer-cv::after {
    left: max(calc(50vw - 80px), 50%);
    transform-origin: left calc(50% + 390px);
  }

  .l-footer-cv__head {
    padding: 0 140px;
    height: 120px;
  }

  .l-footer-cv__head::before {
    background-size: 2148px auto;
    -webkit-animation-name: footCvTxtLoopPc;
    animation-name: footCvTxtLoopPc;
    -webkit-animation-duration: 45s;
    animation-duration: 45s;
  }

  .l-footer-cv__list {
    position: absolute;
    top: 50%;
    right: 140px;
    transform: translateY(-50%);
    z-index: 1;
    width: 350px;
  }

  .l-footer-cv__list-item {
    margin-top: 0;
    max-width: 350px;
  }

  .l-footer-cv__list-item+.l-footer-cv__list-item {
    margin-top: 50px;
  }

  .l-footer-cv__list-item-link {
    min-height: 85px;
  }
}

.l-footer-info {
  position: relative;
  margin-top: 30px;
}

.l-footer-info__logo {
  line-height: var(--line_height_tight);
}

.l-footer-info__logo-link {
  display: flex !important;
  align-items: flex-end;
}

.l-footer-info__logo-img {
  display: block;
  width: 125px;
  height: 30px;
}

.l-footer-info__logo-sub {
  display: flex;
  align-items: flex-end;
  margin-left: 16px;
}

.l-footer-info__logo-sub-ico {
  width: 19.7px;
  height: 19px;
  opacity: 0.5;
  margin: 0 6px -2px 0;
}

.l-footer-info__logo-sub-txt {
  margin-bottom: -2px;
  font-size: 1.2rem;
}

.l-footer-info-nav {
  margin-top: 12px;
  line-height: var(--line_height_head);
}

.l-footer-info-nav__item-link,
.l-footer-info-nav__item-trigger {
  position: relative;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.l-footer-info-nav__item-ico {
  width: 10px;
  height: 10px;
  margin-left: 10px;
}

.l-footer-info-nav-child {
  color: rgb(var(--border));
  padding: 0 0 10px 15px;
}

.l-footer-info-nav-child__item {
  margin-bottom: 10px;
}

.l-footer-info-other {
  margin-top: 50px;
  line-height: var(--line_height_head);
  font-size: 1.3rem;
  display: flex;
}

.l-footer-info-other__item {
  margin-right: 30px;
}

.l-footer-info-other__item-ico {
  width: 10px;
  height: 10px;
  margin-left: 10px;
}

@media all and (max-width: 767px) {
  .l-footer-info-nav__item {
    border-bottom: 1px solid;
  }

  .l-footer-info-nav__item-link,
  .l-footer-info-nav__item-trigger {
    padding: 10px 0;
    min-height: 60px;
  }

  .l-footer-info-nav__item-trigger::before,
  .l-footer-info-nav__item-trigger::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    width: 15px;
    height: 0;
    border-top: 1px solid;
    margin-top: -1px;
  }

  .l-footer-info-nav__item-trigger::after {
    transition: transform 0.3s ease;
  }

  .l-footer-info-nav__item-trigger:not(.is-active)::after {
    transform: rotate(90deg);
  }
}

@media (max-width: 767px) and (hover: hover) and (pointer: fine) {
  .l-footer-info-other__item-link {
    transition: color 0.3s ease;
  }

  .l-footer-info-other__item-link:hover {
    color: rgb(var(--border));
  }
}

@media all and (min-width: 768px) {
  .l-footer-info {
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .l-footer-info__logo-img {
    width: 228px;
    height: 55px;
  }

  .l-footer-info__logo-sub {
    margin-left: 20px;
  }

  .l-footer-info__logo-sub-ico {
    width: 26.5px;
    height: 25.5px;
    margin: 0 10px 1px 0;
  }

  .l-footer-info__logo-sub-txt {
    margin-bottom: 0;
    font-size: 1.6rem;
  }

  .l-footer-info-nav {
    margin-top: 33px;
    display: grid;
    grid-auto-flow: row dense;
    grid-template-columns: auto auto auto;
    grid-template-rows: auto 1fr;
    gap: 20px 80px;
    grid-template-areas: "i01 i02 i03" "i01 i02 i04";
  }

  .l-footer-info-nav__item:nth-of-type(1) {
    grid-area: i01;
  }

  .l-footer-info-nav__item:nth-of-type(2) {
    grid-area: i02;
  }

  .l-footer-info-nav__item:nth-of-type(3) {
    grid-area: i03;
  }

  .l-footer-info-nav__item:nth-of-type(44) {
    grid-area: i04;
  }

  .l-footer-info-nav__item-trigger {
    pointer-events: none;
  }

  .l-footer-info-nav-child {
    margin-top: 15px;
    font-size: 1.4rem;
  }

  .l-footer-info-nav-child__wrap {
    display: block !important;
    height: auto !important;
  }

  .l-footer-info-other {
    position: absolute;
    top: 55px;
    left: 0;
    margin-top: 63px;
    font-size: 1.4rem;
  }

  .l-footer-info-other__item-link {
    position: relative;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid rgb(var(--note));
    box-sizing: border-box;
  }

  .l-footer-info-other__item-link::after {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    border-bottom: 1px solid #fff;
    content: "";
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: right bottom;
  }

  .l-footer-info-other__item-ico {
    width: 12px;
    height: 12px;
    margin-left: 0;
  }
}

@media all and (min-width: 768px) {
  .l-footer-info-nav__item:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    -ms-grid-column: 1;
  }

  .l-footer-info-nav__item:nth-of-type(2) {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    -ms-grid-column: 3;
  }

  .l-footer-info-nav__item:nth-of-type(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
  }

  .l-footer-info-nav__item:nth-of-type(44) {
    -ms-grid-row: 3;
    -ms-grid-column: 5;
  }
}

@media (min-width: 768px) and (hover: hover) and (pointer: fine) {
  .l-footer-info-other__item-link:hover::after {
    transform: scaleX(1);
    transform-origin: left bottom;
  }
}

@media (hover: hover) and (pointer: fine) {
  .l-footer-info-nav__item-ico svg {
    transition: none;
  }

  .l-footer-info-nav__item-link,
  .l-footer-info-nav__item-trigger {
    transition: color 0.3s ease;
  }

  .l-footer-info-nav__item-link:hover,
  .l-footer-info-nav__item-trigger:hover {
    color: rgb(var(--border));
  }

  .l-footer-info-nav-child__item-link {
    transition: color 0.3s ease;
  }

  .l-footer-info-nav-child__item-link:hover {
    color: #fff;
  }
}

.l-footer__cr {
  margin-top: 35px;
  opacity: 0.2;
  font-size: 1.2rem;
}

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

/* .l-footer-page-top
================================================ */
.l-footer-page-top {
  position: absolute;
  bottom: 40px;
  right: 20px;
  width: 40px;
  height: 40px;
}

.l-footer-page-top__link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  white-space: nowrap;
  color: transparent;
  font-size: 0;
  line-height: 0;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.l-footer-page-top__ico {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 10px;
  margin-left: -2px;
  transform: rotate(-90deg) translate(50%, -50%);
}

@media all and (min-width: 768px) {
  .l-footer-page-top {
    right: 80px;
    width: 60px;
    height: 60px;
  }

  .l-footer-page-top__ico {
    width: 16px;
    height: 14px;
    margin-left: -3px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .l-footer-page-top__link:hover {
    background: rgba(255, 255, 255, 0.3);
  }
}

/* .l-header
================================================ */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 320px;
  z-index: 2000;
  line-height: var(--line_height_head);
  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, background 0.3s ease;
}

.l-guide__inner {
  position: static;
  box-sizing: border-box;
}

.l-guide__head {
  position: relative;
  margin: 19px 0 0 15px;
  z-index: 1;
  width: 145px;
  height: 30px;
  line-height: var(--line_height_head);
  letter-spacing: 0.02em;
  font-size: 1rem;
}

.l-guide__head-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: rgba(255, 255, 255, 0.85);
  color: rgb(var(--dark_blue));
  border-radius: 999px;
}

.l-guide__head-ico {
  width: 18px;
  height: 17px;
  margin-right: 4px;
}

.l-guide__content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  min-width: 320px;
  padding: 50px 20px;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
}

.l-guide.is-active {
  transform: translateY(0);
}

.l-guide.is-active:not(.is-shown) {
  transform: translateY(-80px);
}

@media all and (max-width: 767px) {
  .l-guide__content {
    height: calc(100vh - var(--header_height_sp));
    height: calc(var(--vh, 1vh) * 100 - var(--header_height_sp));
    overflow: auto;
    transform: translateX(120%);
    z-index: -1;
    transition: all 0.3s ease;
    background: rgb(var(--dark_blue));
  }

  .l-guide__content::-webkit-scrollbar {
    display: none;
  }

  .l-guide__content.is-open {
    transform: translateX(0);
  }
}

@media all and (min-width: 768px) {
  .l-guide {
    top: var(--header_height_pc);
  }

  .l-guide__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 33px 60px 10px 30px;
  }

  .l-guide__head {
    margin: 0;
    width: 190px;
    height: 38px;
    font-size: 1.2rem;
  }

  .l-guide__head-ico {
    width: 21px;
    height: 20px;
    margin-right: 6px;
  }

  .l-guide__content {
    position: static;
    width: auto;
    min-width: auto;
    padding: 0;
  }

  .l-guide.is-active {
    transform: translateY(-23px);
    background: #fff;
  }

  .l-guide.is-active .l-guide__head-link {
    background: rgb(var(--bg_light_gray));
  }

  .l-guide.is-active:not(.is-shown) {
    transform: translateY(-120px);
  }
}

@media (hover: hover) and (pointer: fine) {
  .l-guide__head-link {
    transition: background 0.3s ease;
  }

  .l-guide__head-link:hover {
    background: #fff !important;
  }
}

/* .l-guide-btn
================================================== */
.l-guide-btn {
  position: absolute;
  z-index: 1;
  top: 14px;
  right: 20px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  border: 1px solid rgb(var(--dark_blue));
  box-sizing: border-box;
  border-radius: 50%;
}

.l-guide-btn__line {
  position: absolute;
  content: "";
  top: calc(50% - 1.5px);
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background: rgb(var(--dark_blue));
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.l-guide-btn__line:nth-child(1) {
  left: 11px;
}

.l-guide-btn__line:nth-child(2) {
  left: 18px;
}

.l-guide-btn__line:nth-child(3) {
  left: 25px;
}

.l-guide-btn__txt {
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
}

.l-guide-btn.is-open {
  border-color: #fff;
}

.l-guide-btn.is-open .l-guide-btn__line {
  left: 11px;
  width: 16px;
  height: 1px;
  background: #fff;
}

.l-guide-btn.is-open .l-guide-btn__line:nth-child(1) {
  transform: rotate(-45deg);
}

.l-guide-btn.is-open .l-guide-btn__line:nth-child(2) {
  opacity: 0;
}

.l-guide-btn.is-open .l-guide-btn__line:nth-child(3) {
  transform: rotate(45deg);
}

.l-guide-btn__txt {
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 100%;
  font-size: 1rem;
  line-height: 1.2;
  text-align: center;
}

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

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

/* .l-guide-nav
================================================== */
.l-guide-nav {
  position: relative;
  z-index: 1;
  color: #fff;
  line-height: var(--line_height_head);
}

.l-guide-nav__item-link,
.l-guide-nav__item-trigger {
  position: relative;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.l-guide-nav__item-ico {
  width: 10px;
  height: 10px;
  margin-left: 10px;
}

.l-guide-nav-child {
  color: rgb(var(--border));
  padding: 0 0 10px 15px;
}

.l-guide-nav-child__item {
  margin-bottom: 10px;
}

@media all and (max-width: 767px) {
  .l-guide-nav {
    margin-top: 12px;
  }

  .l-guide-nav__item {
    border-bottom: 1px solid;
  }

  .l-guide-nav__item-link,
  .l-guide-nav__item-trigger {
    padding: 10px 0;
    min-height: 60px;
  }

  .l-guide-nav__item-trigger::before,
  .l-guide-nav__item-trigger::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    width: 15px;
    height: 0;
    border-top: 1px solid;
    margin-top: -1px;
  }

  .l-guide-nav__item-trigger::after {
    transition: transform 0.3s ease;
  }

  .l-guide-nav__item-trigger:not(.is-active)::after {
    transform: rotate(90deg);
  }
}

@media all and (min-width: 768px) {
  .l-guide-nav {
    color: rgb(var(--dark_blue));
    display: flex;
    justify-content: flex-end;
  }

  .l-guide-nav__item {
    margin-left: 50px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .l-guide-nav__item-ico svg {
    transition: none;
  }

  .l-guide-nav__item-link,
  .l-guide-nav__item-trigger {
    transition: color 0.3s ease;
  }

  .l-guide-nav__item-link:hover,
  .l-guide-nav__item-trigger:hover {
    color: rgb(var(--border));
  }
}

@media (hover: hover) and (pointer: fine) and (min-width: 768px) {

  .l-guide-nav__item-link:hover,
  .l-guide-nav__item-trigger:hover {
    color: rgb(var(--black));
  }
}

@media (hover: hover) and (pointer: fine) {
  .l-guide-nav-child__item-link {
    transition: color 0.3s ease;
  }

  .l-guide-nav-child__item-link:hover {
    color: #fff;
  }
}

.l-guide.is-white:not(.is-active) .l-guide-nav {
  color: #fff;
}

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

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

/* .l-ie-attention
================================================ */
.l-ie-attention {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  font-weight: 700;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  box-sizing: border-box;
}

.l-ie-attention__txt {
  font-size: 3rem;
  margin-bottom: 18px;
}

.l-ie-attention__note {
  color: #989898;
}

.l-ie-attention__note .l-ie-attention__note-link {
  display: inline-block;
}

.l-ie-attention__note-link {
  font-size: 1.8rem;
  border-bottom: 1px solid;
  position: relative;
  margin-right: 25px;
  display: inline-block;
}

.l-ie-attention__note-link::after {
  content: "";
  position: absolute;
  right: -18px;
  top: 13px;
  width: 11px;
  height: 11px;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2012%2012%22%3E%20%3Cg%20id%3D%22link%22%20transform%3D%22translate(0.5%200.5)%22%3E%20%3Crect%20id%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2_23829%22%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%2023829%22%20width%3D%228%22%20height%3D%228%22%20transform%3D%22translate(3)%22%20fill%3D%22none%22%20stroke%3D%22%23989898%22%20stroke-width%3D%221%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_4323%22%20data-name%3D%22%E3%83%91%E3%82%B9%204323%22%20d%3D%22M688%2C718.025h-6v-6%22%20transform%3D%22translate(-682%20-707.025)%22%20fill%3D%22none%22%20stroke%3D%22%23989898%22%20stroke-width%3D%221%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center/100%;
}

/* .l-main-img HOME
================================================ */
/* .l-sub-img
================================================ */
.l-sub-img__inner {
  box-sizing: border-box;
  padding-top: 42px;
  position: relative;
  height: 187px;
  z-index: 1;
}

.l-sub-img__inner::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url(../img/common/bg_mv01_sp.png) no-repeat center/cover;
  z-index: -1;
}

.l-sub-img__head-sub {
  margin-bottom: 5px;
  color: rgb(var(--dark_blue));
}

.l-sub-img__head-sub::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 18px;
  background: url(../img/common/ico_head01.png) no-repeat center/contain;
  margin-right: 7px;
  transform: translateY(3px);
}

.l-sub-img__head-main {
  font-size: 6.2vw;
  font-weight: 700;
  line-height: var(--line_height_head);
}

.l-sub-img__visual {
  position: relative;
  height: 0;
  padding-top: 57.9710144928%;
}

.l-sub-img__visual img {
  position: absolute;
  top: 0;
  left: 0;
  max-width: unset;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media all and (min-width: 768px) {
  .l-sub-img__inner {
    padding-top: 138px;
    height: 335px;
    margin-left: auto;
    margin-right: 0;
  }

  .l-sub-img__inner::before {
    background: url(../img/common/bg_mv01_pc.png) no-repeat center/cover;
  }

  .l-sub-img__head-main {
    font-size: 5rem;
  }
}

@media all and (min-width: 1780px) {
  .l-sub-img__inner {
    max-width: 1700px;
  }
}

/* .l-relate
================================================ */
.l-relate {
  background: rgb(var(--bg_light_gray));
}

.l-relate__inner {
  padding-top: 35px;
  padding-bottom: 50px;
}

@media all and (min-width: 768px) {
  .l-relate {
    margin-bottom: -120px;
  }

  .l-relate__inner {
    padding-top: 70px;
    padding-bottom: 220px;
  }
}

.l-relate-list {
  color: rgb(var(--dark_blue));
  line-height: var(--line_height_head);
  font-weight: 700;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -10px;
}

.l-relate-list__item {
  flex-basis: calc(50% - 20px);
  max-width: calc(50% - 20px);
  margin: 0 10px;
}

.l-relate-list__item.is-current {
  color: rgb(var(--note));
}

.l-relate-list__item-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 5px 15px 0;
  border-bottom: 1px solid rgb(var(--border));
  box-sizing: border-box;
}

.l-relate-list__item-link::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  border-bottom: 1px solid;
  content: "";
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: right bottom;
}

.l-relate-list__item-ico {
  width: 10px;
  height: 12px;
}

@media all and (min-width: 768px) {
  .l-relate-list {
    margin: 0 -15px;
  }

  .l-relate-list__item {
    flex-basis: calc((100% - 90px) / 3);
    max-width: calc((100% - 90px) / 3);
    margin: 0 15px;
  }

  .l-relate-list__item-link {
    padding: 30px 9px 30px 0;
  }

  .l-relate-list__item-ico {
    width: 13px;
    height: 16px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .l-relate-list__item-link:hover::after {
    transform: scaleX(1);
    transform-origin: left bottom;
  }
}

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

.js-c-anime-elem.is-animated[data-anime=fadein-left],
.js-c-anime-elem.is-animated [data-anime=fadein-left] {
  opacity: 1;
  transform: translateX(0);
}

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

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

.js-c-anime-elem[data-anime=uncover],
.js-c-anime-elem [data-anime=uncover] {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(120deg, white 52%, rgba(255, 255, 255, 0) 58%);
  mask-image: linear-gradient(120deg, white 52%, rgba(255, 255, 255, 0) 58%);
  mask-mode: alpha;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 300% 300%;
  mask-size: 300% 300%;
  -webkit-mask-position: 150% center;
  mask-position: 150% center;
}

.js-c-anime-elem[data-anime=uncover]::before,
.js-c-anime-elem [data-anime=uncover]::before {
  content: "";
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: 0;
  right: -200%;
  background: linear-gradient(to right, rgba(15, 91, 204, 0) 0%, rgba(15, 91, 204, 0.8) 25%, rgba(15, 91, 204, 0) 100%);
  transition: all 2s cubic-bezier(0, 0.25, 0.7, 1);
  transform: skewX(-30deg) translateX(-66%);
  transform-origin: right bottom;
  z-index: 1;
}

.js-c-anime-elem.is-animated[data-anime=uncover],
.js-c-anime-elem.is-animated [data-anime=uncover] {
  -webkit-animation: animeUncoverMask 0.5s cubic-bezier(0, 0.25, 0.7, 1) forwards;
  animation: animeUncoverMask 0.5s cubic-bezier(0, 0.25, 0.7, 1) forwards;
}

.js-c-anime-elem.is-animated[data-anime=uncover]::before,
.js-c-anime-elem.is-animated [data-anime=uncover]::before {
  transform: skewX(-30deg) translateX(100%);
}

.js-c-anime-elem[data-anime=shine],
.js-c-anime-elem [data-anime=shine] {
  position: relative;
  overflow: hidden;
}

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

.js-c-anime-elem.is-animated[data-anime=shine]::before,
.js-c-anime-elem.is-animated [data-anime=shine]::before {
  transform: skewX(-30deg) translateX(100%);
}

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

.js-c-anime-elem.is-animated[data-anime=fadein-blur],
.js-c-anime-elem.is-animated [data-anime=fadein-blur] {
  opacity: 1;
  filter: blur(0px);
}

.js-c-anime-elem[data-anime-delay="0.1"],
.js-c-anime-elem [data-anime-delay="0.1"] {
  transition-delay: 0.1s;
}

.js-c-anime-elem[data-anime-delay="0.2"],
.js-c-anime-elem [data-anime-delay="0.2"] {
  transition-delay: 0.2s;
}

.js-c-anime-elem[data-anime-delay="0.3"],
.js-c-anime-elem [data-anime-delay="0.3"] {
  transition-delay: 0.3s;
}

.js-c-anime-elem[data-anime-delay="0.4"],
.js-c-anime-elem [data-anime-delay="0.4"] {
  transition-delay: 0.4s;
}

.js-c-anime-elem[data-anime-delay="0.5"],
.js-c-anime-elem [data-anime-delay="0.5"] {
  transition-delay: 0.5s;
}

.js-c-anime-elem[data-anime-delay="0.6"],
.js-c-anime-elem [data-anime-delay="0.6"] {
  transition-delay: 0.6s;
}

.js-c-anime-elem[data-anime-delay="0.7"],
.js-c-anime-elem [data-anime-delay="0.7"] {
  transition-delay: 0.7s;
}

.js-c-anime-elem[data-anime-delay="0.8"],
.js-c-anime-elem [data-anime-delay="0.8"] {
  transition-delay: 0.8s;
}

.js-c-anime-elem[data-anime-delay="0.9"],
.js-c-anime-elem [data-anime-delay="0.9"] {
  transition-delay: 0.9s;
}

.js-c-anime-elem[data-anime-delay="1"],
.js-c-anime-elem [data-anime-delay="1"] {
  transition-delay: 1s;
}

.js-c-anime-elem[data-anime-delay="1.1"],
.js-c-anime-elem [data-anime-delay="1.1"] {
  transition-delay: 1.1s;
}

.js-c-anime-elem[data-anime-delay="1.2"],
.js-c-anime-elem [data-anime-delay="1.2"] {
  transition-delay: 1.2s;
}

.js-c-anime-elem[data-anime-delay="1.3"],
.js-c-anime-elem [data-anime-delay="1.3"] {
  transition-delay: 1.3s;
}

.js-c-anime-elem[data-anime-delay="1.4"],
.js-c-anime-elem [data-anime-delay="1.4"] {
  transition-delay: 1.4s;
}

.js-c-anime-elem[data-anime-delay="1.5"],
.js-c-anime-elem [data-anime-delay="1.5"] {
  transition-delay: 1.5s;
}

.js-c-anime-elem[data-anime-delay="1.6"],
.js-c-anime-elem [data-anime-delay="1.6"] {
  transition-delay: 1.6s;
}

.js-c-anime-elem[data-anime-delay="1.7"],
.js-c-anime-elem [data-anime-delay="1.7"] {
  transition-delay: 1.7s;
}

.js-c-anime-elem[data-anime-delay="1.8"],
.js-c-anime-elem [data-anime-delay="1.8"] {
  transition-delay: 1.8s;
}

.js-c-anime-elem[data-anime-delay="1.9"],
.js-c-anime-elem [data-anime-delay="1.9"] {
  transition-delay: 1.9s;
}

.js-c-anime-elem[data-anime-delay="2"],
.js-c-anime-elem [data-anime-delay="2"] {
  transition-delay: 2s;
}

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

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

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

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

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

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

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

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

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

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

/* .application-wrapper
================================================ */
.application-wrapper__inner {
  padding-top: 40px;
}

@media all and (min-width: 768px) {
  .application-wrapper__inner {
    padding-top: 100px;
    padding-bottom: 120px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

/* .application-list
================================================ */
@media all and (max-width: 767px) {
  .application-list {
    display: flex;
    align-items: flex-start;
    overflow-x: auto;
    padding-bottom: 30px;
  }

  .application-list::-webkit-scrollbar {
    height: 3px;
  }

  .application-list::-webkit-scrollbar-thumb {
    background-color: rgb(var(--dark_blue));
  }

  .application-list::-webkit-scrollbar-track {
    background-color: rgb(var(--bg_light_gray));
  }

  .application-list .c-archive01__item {
    margin-left: 10px;
    margin-right: 10px;
    border: none;
    padding: 0;
    flex-shrink: 0;
    width: 255px;
    display: grid;
    grid-template-columns: 56px 1fr;
    grid-template-rows: repeat(4, auto);
    grid-column-gap: 16px;
    grid-row-gap: 0px;
  }

  .application-list .c-archive01__item-img {
    width: auto;
    margin: 0;
    grid-area: 1/1/3/2;
  }

  .application-list .c-archive01__item-area-txt {
    display: contents;
  }

  .application-list .c-archive01__item-head {
    grid-area: 1/2/2/3;
  }

  .application-list .c-archive01__item-cats {
    grid-area: 2/2/3/3;
  }

  .application-list .c-archive01__item-txt {
    grid-area: 3/1/4/3;
  }

  .application-list .c-archive01__item-size {
    grid-area: 4/1/5/3;
  }
}

@media all and (min-width: 768px) {
  .application-list .c-archive01__item+div {
    margin-top: 30px;
  }
}

/* .application-contact
================================================ */
.application-contact__form {
  margin-top: 70px;
}

@media all and (max-width: 767px) {
  .application-contact {
    margin-top: 40px;
  }
}

@media all and (min-width: 768px) {
  .application-contact__form {
    margin-top: 40px;
  }
}

/* .error-page404
================================================ */
.error-page404__inner {
  padding-top: 50px;
  padding-bottom: 50px;
}

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

#home .l-footer {
  background: rgb(var(--bg_light_gray));
}

/* .home-lead
================================================ */
.home-lead__inner {
  padding-top: 40px;
  padding-bottom: 40px;
}

@media all and (min-width: 768px) {
  .home-lead__inner {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .home-lead__txt {
    text-align: center;
  }
}

/* .home-content
================================================ */
.home-content__cats {
  padding-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px 44px;
}

.home-content__cats:empty {
  padding: 0;
}

.home-content__cat-in::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 1px solid rgb(var(--dark_blue));
  border-bottom: 1px solid rgb(var(--dark_blue));
  transform: rotate(-45deg) translateY(-3px);
  margin-right: 0.7em;
}

@media all and (min-width: 768px) {
  .home-content__cats {
    padding-top: 40px;
    padding-bottom: 0;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
  }

  .home-content__cat-in {
    transition: all 0.3s ease;
  }

  .home-content__cat-in::before {
    transition: all 0.3s ease;
  }

  .home-content__cat-in:hover {
    color: rgb(var(--dark_blue));
  }

  .home-content__cat-in:hover::before {
    transform: rotate(-45deg) translateX(5px);
  }
}

/* .home-wrapper
================================================ */
.home-wrapper__btn {
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
  background: rgb(var(--bg_light_gray));
  padding: 30px 20px;
  pointer-events: none;
}

.home-wrapper__note {
  font-size: smaller;
  text-align: right;
  color: rgb(var(--note));
  margin-top: 20px;
}

.home-content__head {
  background: #ECF6FF;
  font-size: 20px;
  font-weight: bold;
  padding: 30px 0 0 4%;
}

@media all and (max-width: 768px) {
  .home-content__head {
    font-size: 16px;
  }
}

.home-content__filters {
  background: #ECF6FF;
  display: flex;
  justify-content: flex-start;
  gap: 30px 60px;
  padding: 20px 5% 50px;
  font-weight: bold;
  flex-wrap: wrap;
}

.home-content__filters label {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: nowrap;
}

.home-content__filters label input[type="checkbox"] {
  transform: scale(1.2);
  margin-right: 5px;
}

@media all and (min-width: 768px) {
  .home-wrapper {
    margin-top: -80px;
    padding-top: 80px;
  }

  .home-wrapper__btn {
    padding-top: min(60px, 3.125vw);
    padding-bottom: min(60px, 3.125vw);
  }

  .home-wrapper__note {
    margin-top: 40px;
  }

}

/* .home-archive
================================================ */
.home-archive__btn {
  box-sizing: border-box;
  width: auto;
  border: 1px solid rgb(var(--dark_blue));
  border-radius: 3px;
  padding: 8px 14px;
  color: rgb(var(--dark_blue));
  font-weight: 500;
  margin-left: auto;
}

.home-archive__list {
  padding-top: 25px;
  padding-bottom: 30px;
}

@media all and (max-width: 767px) {
  .home-archive {
    margin-top: 30px;
  }
}

@media all and (min-width: 768px) {
  .home-archive {
    margin-top: 80px;
    position: relative;
  }

  .home-archive__btn {
    position: absolute;
    top: -20px;
    right: 0;
    width: 120px;
    text-align: center;
    padding: 4px 14px;
    transition: all 0.3s ease;
  }

  .home-archive__btn:hover {
    background: rgb(var(--dark_blue));
    color: #fff;
  }

  .home-archive__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px 60px;
    padding-top: 20px;
    padding-bottom: 120px;
  }
}