@charset "UTF-8";
/* Scss Document */
/* 全体の70%の色 */
/* 全体の25%の色 */
/*----メディアクエリ(案件によって使い分け)----*/
/*----------PC・スマホのみ----------*/
/*----------end-PC・スマホのみ----------*/
/*----------PC・タブレット・スマホ----------*/
/*----------end-PC・タブレット・スマホ----------*/
/*--------br管理--------*/
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap");
@media (min-width: 0px) and (max-width: 560px) {
  .msBr {
    display: block;
  }
}
@media (min-width: 561px) and (max-width: 960px) {
  .msBr {
    display: none;
  }
}
@media (min-width: 961px) {
  .msBr {
    display: none;
  }
}

@media (min-width: 0px) and (max-width: 560px) {
  .mmBr {
    display: none;
  }
}
@media (min-width: 561px) and (max-width: 960px) {
  .mmBr {
    display: block;
  }
}
@media (min-width: 961px) {
  .mmBr {
    display: none;
  }
}

@media (min-width: 0px) and (max-width: 560px) {
  .mm-mlBr {
    display: none;
  }
}
@media (min-width: 561px) {
  .mm-mlBr {
    display: block;
  }
}

/*--------end-br管理--------*/
/* Scss Document */
/*! destyle.css v3.0.2 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.6; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 62.5%;
  color: #111111;
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
       appearance: radio;
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

table {
  border-spacing: 0;
}

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

/* Scss Document */
/* 全体の70%の色 */
/* 全体の25%の色 */
/*----メディアクエリ(案件によって使い分け)----*/
/*----------PC・スマホのみ----------*/
/*----------end-PC・スマホのみ----------*/
/*----------PC・タブレット・スマホ----------*/
/*----------end-PC・タブレット・スマホ----------*/
/*--------br管理--------*/
@media (min-width: 0px) and (max-width: 560px) {
  .msBr {
    display: block;
  }
}
@media (min-width: 561px) and (max-width: 960px) {
  .msBr {
    display: none;
  }
}
@media (min-width: 961px) {
  .msBr {
    display: none;
  }
}

@media (min-width: 0px) and (max-width: 560px) {
  .mmBr {
    display: none;
  }
}
@media (min-width: 561px) and (max-width: 960px) {
  .mmBr {
    display: block;
  }
}
@media (min-width: 961px) {
  .mmBr {
    display: none;
  }
}

@media (min-width: 0px) and (max-width: 560px) {
  .mm-mlBr {
    display: none;
  }
}
@media (min-width: 561px) {
  .mm-mlBr {
    display: block;
  }
}

/*--------end-br管理--------*/
/* Scss Document */
body.fixed {
  overflow: hidden;
}
body.fixed .header {
  top: 0 !important;
  position: fixed;
}

.header {
  min-width: 100%;
  z-index: 9000;
  position: absolute;
  top: 0;
  left: 0;
  top: auto !important;
  background-color: #fff;
}
.header .h-nav {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1150px) {
  .header .h-nav {
    padding: 14px 3.4vw;
  }
}
.header .h-nav .h-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-left: 120px;
}
@media (max-width: 1540px) {
  .header .h-nav .h-logo {
    margin-left: 3.4vw;
  }
}
@media (max-width: 1150px) {
  .header .h-nav .h-logo {
    margin-left: 0;
  }
}
.header .h-nav .h-logo .h-logo_link {
  width: 103px;
  margin-right: 20px;
  display: block;
}
@media (min-width: 0px) and (max-width: 768px) {
  .header .h-nav .h-logo .h-logo_link {
    width: 90px;
    margin-right: 15px;
  }
}
.header .h-nav .h-logo .h-logo_link img {
  width: 100%;
}
.header .h-nav .h-logo .h-esco_link {
  font-size: 1.4rem;
}
@media (min-width: 0px) and (max-width: 768px) {
  .header .h-nav .h-logo .h-esco_link {
    font-size: 1.2rem;
  }
}
.header .h-nav .h-panellogo {
  display: none;
}
.header .h-nav .openbtn {
  z-index: 9999;
  width: 20px;
  height: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  visibility: hidden;
}
@media (max-width: 1150px) {
  .header .h-nav .openbtn {
    visibility: visible;
  }
}
.header .h-nav .openbtn span {
  display: block;
  background-color: #003399;
  width: 100%;
  height: 2px;
  border-radius: 5px;
}
@media (max-width: 1150px) {
  .header .h-nav .h-right {
    display: none;
  }
}
.header .h-nav .h-right .h-right_content {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.header .h-nav .h-right .h-right_content .h-list {
  padding-right: 40px;
}
@media (max-width: 1500px) {
  .header .h-nav .h-right .h-right_content .h-list {
    padding-right: 15px;
  }
}
@media (max-width: 1150px) {
  .header .h-nav .h-right .h-right_content .h-list {
    padding-right: 0;
  }
}
.header .h-nav .h-right .h-right_content .h-list:last-of-type {
  padding-right: 0;
}
@media (min-width: 1051px) {
  .header .h-nav .h-right .h-right_content .h-list.h-spOnly {
    display: none;
  }
}
.header .h-nav .h-right .h-right_content .h-list .h-list_link span::after {
  opacity: 0;
  top: -10px;
  transition: 0.2s;
}
@media (min-width: 1051px) {
  .header .h-nav .h-right .h-right_content .h-list .h-list_link:hover {
    color: #003399;
    transition: 0.2s;
  }
  .header .h-nav .h-right .h-right_content .h-list .h-list_link:hover span::after {
    opacity: 1;
    transition: 0.2s;
  }
}
.header .h-nav .h-right .h-right_content .h-list_link {
  display: block;
  font-size: 1.8rem;
  font-weight: 600;
  padding: 30px 0;
  transition: 0.2s;
}
@media (max-width: 1500px) {
  .header .h-nav .h-right .h-right_content .h-list_link {
    font-size: 1.6rem;
  }
}
@media (max-width: 1150px) {
  .header .h-nav .h-right .h-right_content .h-list_link {
    font-size: 1.8rem;
  }
}
.header .h-nav .h-right .h-right_content .h-list-contact .h-list_link {
  width: 168px;
  color: #fff;
  background-color: #003399;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1500px) {
  .header .h-nav .h-right .h-right_content .h-list-contact .h-list_link {
    width: 130px;
  }
}
@media (min-width: 1051px) {
  .header .h-nav .h-right .h-right_content .h-list-contact .h-list_link:hover {
    background-color: #BD1016;
    transition: 0.2s;
  }
}
.header .h-nav .h-search-content {
  display: none;
}

.header.fixed {
  position: fixed;
  top: 0 !important;
  bottom: auto !important;
}

.u-header {
  position: fixed;
  top: 0 !important;
  bottom: auto !important;
}

.h-nav.panelactive {
  padding: 0 3.4vw 14px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background-color: #003399;
  overflow-y: scroll;
}
.h-nav.panelactive .h-logo {
  display: none;
}
.h-nav.panelactive .h-panellogo {
  display: block;
}
.h-nav.panelactive .h-panellogo .h-panellogo_link {
  width: 95px;
  height: 95px;
  margin-bottom: 35px;
  background-color: #fff;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.h-nav.panelactive .h-panellogo .h-panellogo_link img {
  width: 79%;
}
.h-nav.panelactive .h-right {
  display: block;
  width: 100%;
  margin-bottom: 30px;
}
.h-nav.panelactive .h-right .h-right_content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.h-nav.panelactive .h-right .h-right_content .h-list {
  width: 100%;
  color: #fff;
  border-bottom: 1px solid #5082E6;
}
.h-nav.panelactive .h-right .h-right_content .h-list:first-of-type {
  border-top: 1px solid #5082E6;
}
.h-nav.panelactive .h-right .h-right_content .h-list_link {
  padding: 15px;
}
.h-nav.panelactive .h-right .h-right_content .h-list-contact {
  display: none;
}
.h-nav.panelactive .h-search-content {
  width: 100%;
  margin-bottom: 80px;
  display: flex;
  flex-direction: row;
}
.h-nav.panelactive .h-search-content .search-box {
  width: 47%;
  display: block;
  padding: 0 0 10px 0;
  border-bottom: 1px solid #fff;
}
.h-nav.panelactive .h-search-content .search-box:first-child {
  margin-right: 6%;
}
.h-nav.panelactive .h-search-content .search-box .pic {
  margin-bottom: 10px;
  overflow: hidden;
  border-radius: 6px;
}
.h-nav.panelactive .h-search-content .search-box .search-link {
  position: relative;
  transition: 0.2s;
}
.h-nav.panelactive .h-search-content .search-box .search-link::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  background-image: url(../images/arrow-w.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 9px;
  top: 50%;
  transform: translateY(-50%);
}
.h-nav.panelactive .h-search-content .search-box .search-link::after {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  border: 1px solid #fff;
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transform-origin: top;
}
.h-nav.panelactive .h-search-content .search-box .search-link .title, .h-nav.panelactive .h-search-content .search-box .search-link .text {
  transition: 0.2s;
  color: #fff;
}
.h-nav.panelactive .h-search-content .search-box .search-link .title {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 3px;
}
.h-nav.panelactive .h-search-content .search-box .search-link .text {
  font-size: 1.2rem;
}

.h-nav .openbtn.active {
  position: absolute;
  transition: all 0.4s;
  top: 30px;
  right: 30px;
}
.h-nav .openbtn.active span {
  background-color: #fff;
}
.h-nav .openbtn.active .op-btn01 {
  width: 30px;
  transform: translateY(7px) rotate(-45deg);
  transition: all 0.4s;
}
.h-nav .openbtn.active .op-btn02 {
  opacity: 0;
}
.h-nav .openbtn.active .op-btn03 {
  width: 30px;
  transform: translateY(-7px) rotate(45deg);
  transition: all 0.4s;
}

@media (min-width: 1151px) {
  .header .dropdown-btn {
    position: relative;
    display: inline-block;
    cursor: pointer;
  }
  .header .dropdown-btn:hover .h-dropdown.open {
    display: block;
  }
}
@media (min-width: 1151px) {
  .header .h-dropdown {
    z-index: 1000;
    background: #003399;
    position: absolute;
    left: 0;
    top: 89px;
    min-width: 200px;
    padding: 20px;
    display: none;
  }
}
@media (min-width: 1151px) and (max-width: 1500px) {
  .header .h-dropdown {
    top: 85px;
  }
}
@media (min-width: 1151px) {
  .header .h-dropdown .h-dropdown-list {
    display: block;
    padding-left: 10px;
    padding-right: 10px;
    line-height: 1em;
  }
  .header .h-dropdown .h-dropdown-list:not(:first-child) {
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid #5082E6;
  }
  .header .h-dropdown .h-dropdown-list a {
    color: #fff;
    transition: 0.2s;
  }
}
@media (min-width: 1151px) and (min-width: 961px) {
  .header .h-dropdown .h-dropdown-list a:hover {
    opacity: 0.5;
    transition: 0.2s;
  }
}
.header .hide-block01 {
  display: none;
}
@media (max-width: 1150px) {
  .header .hide-block01 {
    padding: 5px 0 20px 30px;
  }
  .header .hide-block01 li {
    margin-bottom: 15px;
    line-height: 1em;
    padding-left: 20px;
    position: relative;
  }
  .header .hide-block01 li:last-of-type {
    margin-bottom: 0;
  }
  .header .hide-block01 li::before {
    content: "";
    display: block;
    width: 10px;
    height: 1px;
    background-color: #fff;
    position: absolute;
    top: 7px;
    left: 0;
  }
  .header .hide-block01 li a {
    font-weight: 600;
    color: #fff;
  }
}
@media (max-width: 1150px) {
  .header .show_more01 {
    position: relative;
  }
  .header .show_more01::before {
    content: "";
    display: block;
    width: 28px !important;
    height: 28px !important;
    background-image: url(../images/h-open.svg) !important;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 15px;
    right: 0;
  }
  .header .show_more01 .h-list_link {
    display: inline-block !important;
  }
}
.header .show_more01.on-click01 {
  display: block;
}
.header .show_more01.on-click01::before {
  background-image: url(../images/h-close.svg) !important;
}

/* Scss Document */
/* 全体の70%の色 */
/* 全体の25%の色 */
/*----メディアクエリ(案件によって使い分け)----*/
/*----------PC・スマホのみ----------*/
/*----------end-PC・スマホのみ----------*/
/*----------PC・タブレット・スマホ----------*/
/*----------end-PC・タブレット・スマホ----------*/
/*--------br管理--------*/
@media (min-width: 0px) and (max-width: 560px) {
  .msBr {
    display: block;
  }
}
@media (min-width: 561px) and (max-width: 960px) {
  .msBr {
    display: none;
  }
}
@media (min-width: 961px) {
  .msBr {
    display: none;
  }
}

@media (min-width: 0px) and (max-width: 560px) {
  .mmBr {
    display: none;
  }
}
@media (min-width: 561px) and (max-width: 960px) {
  .mmBr {
    display: block;
  }
}
@media (min-width: 961px) {
  .mmBr {
    display: none;
  }
}

@media (min-width: 0px) and (max-width: 560px) {
  .mm-mlBr {
    display: none;
  }
}
@media (min-width: 561px) {
  .mm-mlBr {
    display: block;
  }
}

/*--------end-br管理--------*/
.footer {
  background-color: #003399;
  padding: 85px 0 30px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .footer {
    padding: 60px 0 90px;
  }
}
.footer .f-search-content {
  width: 100%;
  margin-bottom: 100px;
  display: flex;
  flex-direction: row;
}
@media (min-width: 0px) and (max-width: 768px) {
  .footer .f-search-content {
    flex-direction: column;
    margin-bottom: 60px;
  }
}
.footer .f-search-content .search-box {
  width: 47%;
  display: block;
  padding: 0 0 20px 0;
  border-bottom: 1px solid #fff;
}
@media (min-width: 0px) and (max-width: 768px) {
  .footer .f-search-content .search-box {
    width: 100%;
    padding: 0 0 15px 0;
  }
}
.footer .f-search-content .search-box:first-child {
  margin-right: 6%;
}
@media (min-width: 0px) and (max-width: 768px) {
  .footer .f-search-content .search-box:first-child {
    margin-right: 0;
    margin-bottom: 75px;
  }
}
@media (any-hover: hover) {
  .footer .f-search-content .search-box:hover .pic img {
    transform: scale(1.2);
    transition: 0.4s;
  }
  .footer .f-search-content .search-box:hover .search-link::before {
    background-image: url(../images/arrow-b.svg);
    z-index: 2;
    transition: 0.4s;
  }
  .footer .f-search-content .search-box:hover .search-link::after {
    background-color: #fff;
    transform: scale(1.2) translateY(-50%);
    transition: 0.4s;
  }
}
.footer .f-search-content .search-box .copy {
  font-weight: 600;
  color: #fff;
  text-align: center;
  margin-bottom: 15px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .footer .f-search-content .search-box .copy {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
}
.footer .f-search-content .search-box .pic {
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 30px;
  isolation: isolate;
}
@media (min-width: 0px) and (max-width: 768px) {
  .footer .f-search-content .search-box .pic {
    margin-bottom: 15px;
  }
}
.footer .f-search-content .search-box .pic img {
  transition: 0.4s;
}
.footer .f-search-content .search-box .search-link {
  position: relative;
  transition: 0.2s;
}
@media (min-width: 0px) and (max-width: 768px) {
  .footer .f-search-content .search-box .search-link {
    padding: 0 20px;
  }
}
.footer .f-search-content .search-box .search-link::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background-image: url(../images/arrow-w.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.4s;
}
@media (min-width: 0px) and (max-width: 768px) {
  .footer .f-search-content .search-box .search-link::before {
    right: 38px;
  }
}
.footer .f-search-content .search-box .search-link::after {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  border: 2px solid #fff;
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transform-origin: top;
  transition: 0.4s;
}
@media (min-width: 0px) and (max-width: 768px) {
  .footer .f-search-content .search-box .search-link::after {
    right: 20px;
  }
}
.footer .f-search-content .search-box .search-link .title, .footer .f-search-content .search-box .search-link .text {
  transition: 0.2s;
  color: #fff;
}
.footer .f-search-content .search-box .search-link .title {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 10px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .footer .f-search-content .search-box .search-link .title {
    margin-bottom: 5px;
  }
}
.footer .f-nav {
  margin-bottom: 100px;
  display: grid;
  justify-content: center;
  grid-template-rows: repeat(3, 1fr);
  grid-auto-flow: column;
  gap: 15px 60px;
}
@media (max-width: 1080px) {
  .footer .f-nav {
    justify-content: flex-start;
  }
}
@media (min-width: 0px) and (max-width: 768px) {
  .footer .f-nav {
    grid-template-rows: 1fr;
    grid-auto-flow: row;
    margin-bottom: 50px;
    padding: 0 20px;
    gap: 20px;
  }
}
.footer .f-nav .item a {
  color: #fff;
  font-weight: 600;
  transition: 0.2s;
}
@media (any-hover: hover) {
  .footer .f-nav .item a:hover {
    color: #B7CFFF;
    transition: 0.2s;
  }
  .footer .f-nav .item a:hover::after {
    opacity: 1;
    transition: 0.2s;
  }
}
.footer .f-nav .item a::after {
  opacity: 0;
  top: -10px;
  right: -12px;
  transition: 0.2s;
}
.footer .f-logo {
  width: 330px;
  height: 120px;
  background-color: #fff;
  border-radius: 10px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
@media (min-width: 0px) and (max-width: 768px) {
  .footer .f-logo {
    width: 100%;
    max-width: 330px;
  }
}
.footer .f-logo .waku {
  width: 90px;
  display: block;
  padding-bottom: 3px;
}
.footer .f-logo .eelink {
  width: 68px;
  display: block;
}
.footer .group {
  text-align: center;
  margin-bottom: 30px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .footer .group {
    margin-bottom: 20px;
  }
}
.footer .group__link {
  color: #fff;
  font-size: 1.6rem;
  display: block;
  margin: 0 auto;
}
@media (min-width: 0px) and (max-width: 768px) {
  .footer .group__link {
    font-size: 1.4rem;
  }
}
.footer .copyright {
  font-family: Arial, sans-serif;
  letter-spacing: 0.06em;
  text-align: center;
  color: #fff;
  font-size: 1.2rem;
}
@media (min-width: 0px) and (max-width: 768px) {
  .footer .copyright {
    font-size: 1rem;
  }
}
@media (min-width: 769px) {
  .footer .dropdown-btn {
    position: relative;
    display: inline-block;
    cursor: pointer;
  }
  .footer .dropdown-btn:hover .h-dropdown.open {
    display: block;
  }
}
@media (min-width: 769px) {
  .footer .h-dropdown {
    z-index: 1000;
    padding-top: 36px;
    position: absolute;
    left: 0;
    top: 0;
    display: none;
  }
  .footer .h-dropdown .h-dropdown-list {
    display: block;
    line-height: 1em;
  }
  .footer .h-dropdown .h-dropdown-list:not(:first-child) {
    margin-top: 13px;
  }
  .footer .h-dropdown .h-dropdown-list a {
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    transition: 0.2s;
    padding-left: 25px;
    position: relative;
  }
  .footer .h-dropdown .h-dropdown-list a::before {
    content: "";
    display: block;
    width: 15px;
    height: 1px;
    background-color: #fff;
    position: absolute;
    top: 7px;
    left: 0;
  }
}
@media (min-width: 769px) and (min-width: 961px) {
  .footer .h-dropdown .h-dropdown-list a:hover {
    opacity: 0.5;
    transition: 0.2s;
  }
}
.footer .hide-block01 {
  display: none;
}
@media (min-width: 0px) and (max-width: 768px) {
  .footer .hide-block01 {
    display: block;
    padding: 15px 0 15px 0;
  }
  .footer .hide-block01 li {
    line-height: 1em;
    padding-left: 25px;
    position: relative;
  }
  .footer .hide-block01 li:not(:first-child) {
    margin-top: 13px;
  }
  .footer .hide-block01 li::before {
    content: "";
    display: block;
    width: 15px;
    height: 1px;
    background-color: #fff;
    position: absolute;
    top: 8px;
    left: 0;
  }
  .footer .hide-block01 li a {
    font-weight: 600;
    color: #fff;
    font-size: 1.4rem;
  }
}

.container {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 961px) {
  .container {
    padding-right: 40px;
    padding-left: 40px;
  }
}
@media (min-width: 561px) and (max-width: 960px) {
  .container {
    padding-right: 3.4vw;
    padding-left: 3.4vw;
  }
}
@media (min-width: 0px) and (max-width: 560px) {
  .container {
    padding-right: 5.4vw;
    padding-left: 5.4vw;
  }
}

.contact-fixed {
  display: none;
  width: 168px;
  height: 130px;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 999;
}
@media (min-width: 0px) and (max-width: 768px) {
  .contact-fixed {
    width: 100%;
    height: 60px;
  }
}
.contact-fixed .fixed-box {
  display: block;
  position: relative;
}
@media (min-width: 0px) and (max-width: 768px) {
  .contact-fixed .fixed-box {
    display: flex;
    flex-direction: row;
  }
}
.contact-fixed .fixed-box::before, .contact-fixed .fixed-box::after {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  z-index: -1;
  transition: 0.2s;
}
@media (min-width: 0px) and (max-width: 768px) {
  .contact-fixed .fixed-box::before, .contact-fixed .fixed-box::after {
    width: 50%;
  }
}
.contact-fixed .fixed-box::before {
  background-color: #BD1016;
  height: 60px;
  top: 0;
  right: 0;
}
@media (min-width: 0px) and (max-width: 768px) {
  .contact-fixed .fixed-box::before {
    left: 0;
    right: auto;
  }
}
.contact-fixed .fixed-box::after {
  background-color: #003399;
  height: 70px;
  bottom: 0;
  right: 0;
}
@media (min-width: 0px) and (max-width: 768px) {
  .contact-fixed .fixed-box::after {
    height: 60px;
  }
}
@media (any-hover: hover) {
  .contact-fixed .fixed-box:hover::before {
    height: 70px;
    top: 60px;
    transition: 0.2s;
  }
}
@media (any-hover: hover) and (min-width: 0px) and (max-width: 768px) {
  .contact-fixed .fixed-box:hover::before {
    height: 60px;
    top: 0;
    left: 50%;
    right: auto;
  }
}
@media (any-hover: hover) {
  .contact-fixed .fixed-box:hover::after {
    height: 60px;
    bottom: 70px;
    transition: 0.2s;
  }
}
@media (any-hover: hover) and (min-width: 0px) and (max-width: 768px) {
  .contact-fixed .fixed-box:hover::after {
    top: 0;
    bottom: auto;
    right: 50%;
  }
}
@media (any-hover: hover) {
  .contact-fixed .fixed-box:hover .contact-bottom .time {
    color: #BD1016;
  }
}
.contact-fixed .fixed-box .contact-top {
  width: 100%;
  height: 60px;
  padding: 0 0 0 14px;
  display: flex;
  align-items: center;
  flex-direction: row;
}
@media (min-width: 0px) and (max-width: 768px) {
  .contact-fixed .fixed-box .contact-top {
    padding: 0;
    justify-content: center;
  }
}
.contact-fixed .fixed-box .contact-top img {
  width: 33px;
  margin-right: 11px;
}
.contact-fixed .fixed-box .contact-top .text {
  font-size: 1.4rem;
  line-height: 1.3;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0;
}
.contact-fixed .fixed-box .contact-bottom {
  width: 100%;
  height: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}
@media (min-width: 0px) and (max-width: 768px) {
  .contact-fixed .fixed-box .contact-bottom {
    height: 60px;
  }
}
.contact-fixed .fixed-box .contact-bottom .num {
  margin-bottom: 8px;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.08em;
  line-height: 1;
  font-size: 2.1rem;
  letter-spacing: 0.01em;
  color: #fff;
  font-weight: bold;
  text-align: center;
}
@media (min-width: 0px) and (max-width: 768px) {
  .contact-fixed .fixed-box .contact-bottom .num {
    margin-bottom: 4px;
  }
}
.contact-fixed .fixed-box .contact-bottom .time {
  padding: 0px 6px;
  font-size: 1.2rem;
  color: #003399;
  background-color: #fff;
  border-radius: 2px;
}

#Contact-fixed.fixed {
  display: block;
}
.red-icon {
  position: relative;
}
.red-icon::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url(../images/red-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: -3px;
  right: -10px;
}

.u-mv {
  margin-top: 80px;
  margin-bottom: 15px;
  width: 100%;
  height: 400px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
}
@media (max-width: 1150px) {
  .u-mv {
    margin-top: 54px;
    margin-bottom: 15px;
  }
}
@media (min-width: 0px) and (max-width: 560px) {
  .u-mv {
    height: 300px;
  }
}
.u-mv .title {
  width: 400px;
  height: 180px;
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #003399;
  background-color: #fff;
}
@media (min-width: 0px) and (max-width: 768px) {
  .u-mv .title {
    width: 220px;
    height: 110px;
    padding-top: 12px;
  }
}
.u-mv .title .en {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.08em;
  line-height: 1;
  font-weight: bold;
  font-size: 5rem;
  margin-bottom: 10px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .u-mv .title .en {
    font-size: 3.2rem;
    margin-bottom: 3px;
  }
}
.u-mv .title .en::after {
  width: 50px;
  height: 52px;
  top: -18px;
  right: -20px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .u-mv .title .en::after {
    width: 29px;
    height: 30px;
    top: -10px;
    right: -13px;
  }
}
.u-mv .title .ja {
  font-weight: 600;
}
@media (min-width: 0px) and (max-width: 768px) {
  .u-mv .title .ja {
    font-size: 1.4rem;
  }
}

.title-style01 {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #003399;
}
.title-style01 .en {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.08em;
  line-height: 1;
  font-weight: bold;
  font-size: 5rem;
  margin-bottom: 10px;
}
@media (min-width: 0px) and (max-width: 560px) {
  .title-style01 .en {
    font-size: 3.2rem;
    margin-bottom: 3px;
  }
}
.title-style01 .en::after {
  width: 50px;
  height: 52px;
  top: -18px;
  right: -20px;
}
@media (min-width: 0px) and (max-width: 560px) {
  .title-style01 .en::after {
    width: 29px;
    height: 30px;
    top: -10px;
    right: -13px;
  }
}
.title-style01 .ja {
  font-weight: 600;
}
@media (min-width: 0px) and (max-width: 560px) {
  .title-style01 .ja {
    font-size: 1.4rem;
  }
}

.details {
  margin-top: 100px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .details {
    margin-top: 110px;
    margin-bottom: 80px !important;
  }
}
.details .title-style01 {
  margin-bottom: 120px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .details .title-style01 {
    margin-bottom: 60px;
  }
}
.details .container {
  max-width: 960px;
  margin-top: 80px;
}
.details-title {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 80px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .details-title {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }
}
.details-mv {
  margin-bottom: 60px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .details-mv {
    margin-bottom: 30px;
  }
}
.details .back-link {
  max-width: 380px;
  width: 100%;
  height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  background: #BD1016;
  color: #fff;
  border-radius: 50px;
  z-index: 1;
  position: relative;
}
@media (min-width: 0px) and (max-width: 768px) {
  .details .back-link {
    font-size: 1.6rem;
  }
}
.details .back-link::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #003399;
  border-radius: 50px;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  z-index: -1;
  transition: all 0.3s;
}
.details .back-link::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background-image: url(../images/arrow-w.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 70px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  transition: 0.4s;
}
@media (min-width: 0px) and (max-width: 768px) {
  .details .back-link::after {
    left: 50px;
  }
}
@media (any-hover: hover) {
  .details .back-link:hover::before {
    opacity: 0;
  }
  .details .back-link:hover::after {
    left: 50px;
  }
}

.post-area {
  margin-bottom: 100px;
  overflow: hidden;
}
@media (min-width: 0px) and (max-width: 768px) {
  .post-area {
    margin-bottom: 30px;
    font-size: 1.6rem;
  }
}
.post-area figure {
  margin-bottom: 60px;
}
.post-area figcaption {
  text-align: center;
  font-size: 1.6rem;
  margin-top: 20px;
  margin-bottom: 0;
}
.post-area img {
  margin: 0 auto;
  display: block;
}
.post-area h2 {
  margin: 100px 0 40px;
  line-height: 38px;
  font-size: 2.6rem;
  font-weight: 600;
  text-align: left;
  color: #003399;
  padding: 0 0 16px 0;
  position: relative;
  padding-left: 1.2em;
  text-indent: -1.2em;
}
@media (min-width: 0px) and (max-width: 768px) {
  .post-area h2 {
    margin: 60px 0 30px;
    line-height: 32px;
    font-size: 2rem;
  }
}
.post-area h2::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #003399;
  position: absolute;
  bottom: 0;
  left: 0;
}
.post-area h2::after {
  content: "";
  display: block;
  width: 100px;
  height: 2px;
  background: #BD1016;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (min-width: 0px) and (max-width: 768px) {
  .post-area h2::after {
    width: 70px;
  }
}
.post-area h3 {
  margin: 75px 0 25px;
  padding: 5px 0 5px 66px;
  font-size: 2rem;
  font-weight: 600;
  color: #003399;
  line-height: 30px;
  position: relative;
  text-indent: -1.8em;
}
@media (min-width: 0px) and (max-width: 768px) {
  .post-area h3 {
    line-height: 24px;
    font-size: 1.8rem;
    padding: 5px 0 5px 52px;
    margin: 30px 0 15px;
  }
}
.post-area h3::before {
  content: "";
  display: block;
  width: 6px;
  height: 100%;
  border-radius: 1px;
  background: #003399;
  position: absolute;
  top: 0;
  left: 0;
}
.post-area h4 {
  margin: 40px 0;
  font-size: 1.8rem;
  font-weight: 600;
}
@media (min-width: 0px) and (max-width: 768px) {
  .post-area h4 {
    font-size: 1.6rem;
    margin: 50px 0 20px;
  }
}
.post-area p {
  font-size: 1.8rem;
  line-height: 1.8;
  margin: 0 0 30px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .post-area p {
    font-size: 1.6rem;
    margin: 0 0 20px;
  }
}
.post-area .btn a {
  padding: 20px 30px;
  margin: 0 auto;
  display: table;
  font-size: 1.8rem;
  background: #111;
  color: #fff;
  border-radius: 50px;
  z-index: 1;
  position: relative;
}
.post-area .btn a::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #003399;
  border-radius: 50px;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  z-index: -1;
  transition: all 0.3s;
}
@media (min-width: 0px) and (max-width: 768px) {
  .post-area .btn a {
    font-size: 1.6rem;
    padding: 15px 30px;
  }
}
@media (any-hover: hover) {
  .post-area .btn a:hover::before {
    opacity: 0;
  }
}
.post-area ul {
  margin: 60px 0;
}
@media (min-width: 0px) and (max-width: 768px) {
  .post-area ul {
    margin: 30px 0;
  }
}
.post-area ul li {
  font-size: 1.8rem;
  font-weight: 600;
  color: #003399;
  position: relative;
  padding-left: 28px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .post-area ul li {
    font-size: 1.6rem;
    padding-left: 25px;
  }
}
.post-area ul li:not(:last-of-type) {
  margin-bottom: 15px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .post-area ul li:not(:last-of-type) {
    margin-bottom: 15px;
  }
}
.post-area ul li::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background-color: #003399;
  border-radius: 50px;
  position: absolute;
  top: 5px;
  left: 0px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .post-area ul li::before {
    width: 16px;
    height: 16px;
  }
}
.post-area ol {
  margin: 60px 0;
}
@media (min-width: 0px) and (max-width: 768px) {
  .post-area ol {
    margin: 30px 0;
  }
}
.post-area ol li {
  font-size: 1.8rem;
  font-weight: 600;
  color: #003399;
  position: relative;
  padding-left: 28px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .post-area ol li {
    font-size: 1.6rem;
    padding-left: 25px;
  }
}
.post-area ol li:not(:last-of-type) {
  margin-bottom: 15px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .post-area ol li:not(:last-of-type) {
    margin-bottom: 15px;
  }
}
.post-area .table-wrap {
  overflow-x: auto;
  width: 100%;
  margin: 60px 0;
}
@media (min-width: 0px) and (max-width: 768px) {
  .post-area .table-wrap {
    margin: 40px 0;
  }
}
.post-area table {
  font-size: 1.6rem;
  border-top: thin solid #707070;
  border-left: thin solid #707070;
}
.post-area table th {
  background-color: #003399;
  border-right: thin solid #707070;
  border-bottom: thin solid #707070;
  padding: 17px;
  color: #fff;
  font-weight: 600;
  text-align: center;
}
@media (min-width: 0px) and (max-width: 768px) {
  .post-area table th {
    font-size: 1.6rem;
  }
}
.post-area table td {
  padding: 17px 25px;
  border-right: thin solid #707070;
  border-bottom: thin solid #707070;
  vertical-align: middle;
}
.post-area table td:first-child {
  padding: 17px 30px;
  font-weight: 600;
  white-space: nowrap;
  background-color: #E6EFFF;
}
.post-area table .teble-source {
  margin-top: 20px;
  font-size: 1.8rem;
  caption-side: bottom; /* 下 */
  transition: all 0.2s;
}
@media (any-hover: hover) {
  .post-area table .teble-source:hover {
    opacity: 0.5;
  }
}
@media (min-width: 0px) and (max-width: 768px) {
  .post-area table .teble-source {
    font-size: 1.6rem;
  }
}
.post-area iframe {
  width: 100%;
  aspect-ratio: 1000/594;
  position: relative;
  margin-bottom: 80px;
  overflow: hidden;
}
@media (min-width: 0px) and (max-width: 768px) {
  .post-area iframe {
    margin-bottom: 40px;
  }
}
.post-area b, .post-area strong {
  font-weight: 600;
}
.post-area b span, .post-area strong span {
  font-weight: 600;
}
.post-area .source a {
  transition: all 0.2s;
}
@media (any-hover: hover) {
  .post-area .source a:hover {
    opacity: 0.5;
  }
}

.bread {
  display: flex;
  flex-direction: row;
}
@media (min-width: 0px) and (max-width: 768px) {
  .bread {
    display: none;
  }
}
.bread li {
  font-size: 1.4rem;
  position: relative;
}
.bread li:not(:first-of-type) {
  margin-left: 40px;
}
.bread li:not(:first-of-type)::before {
  content: "＞";
  color: #003399;
  position: absolute;
  top: 0;
  left: -25px;
}

.works-link-box {
  display: flex;
  flex-direction: row;
}
@media (min-width: 0px) and (max-width: 768px) {
  .works-link-box {
    flex-direction: column;
  }
}
.works-link-box .link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 7vw;
  width: 50%;
  height: 320px;
  color: #fff;
  font-weight: 600;
  font-size: 3.6rem;
  position: relative;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (min-width: 0px) and (max-width: 768px) {
  .works-link-box .link {
    width: 100%;
    height: 160px;
    font-size: 2.2rem;
  }
}
@media (any-hover: hover) {
  .works-link-box .link:hover::before {
    transform: scale(1.2) translate(-50%, -50%);
  }
  .works-link-box .link:hover::after {
    transform: scale(1.1) translate(-50%, -50%);
  }
}
.works-link-box .link::before {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  background-image: url(../images/btn-red.svg);
  background-position: center;
  background-size: cover;
  position: absolute;
  right: 5px;
  bottom: 5px;
  transform: translate(-50%, -50%);
  transform-origin: 0 0;
  transition: 0.4s;
}
@media (min-width: 0px) and (max-width: 768px) {
  .works-link-box .link::before {
    width: 35px;
    height: 35px;
  }
}
.works-link-box .link::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transform-origin: 0 0;
  z-index: -1;
  transition: 0.4s;
}
.works-link-box .link .small {
  font-size: 2.2rem;
}
@media (min-width: 0px) and (max-width: 768px) {
  .works-link-box .link .small {
    font-size: 1.8rem;
  }
}
.works-link-box .link01::after {
  background-image: url(../images/link01-bg.jpg);
}
.works-link-box .link02::after {
  background-image: url(../images/link02-bg.jpg);
}

html {
  scroll-behavior: smooth;
}

.mainvisual {
  width: 100%;
  padding-top: 80px;
  height: 100vh;
  height: 100svh;
}
@media (max-width: 1150px) {
  .mainvisual {
    padding-top: 54px;
  }
}
.mainvisual .slide-box {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.mainvisual .slide-item {
  width: 100%;
  height: 100%;
}
.mainvisual .slide-item .image-box {
  animation: image-anime 25s 0s infinite;
  z-index: -1;
  opacity: 0;
  transform: scale(1.1);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.mainvisual .slide-item .image-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.mainvisual .slide-item .text-box {
  opacity: 0;
  animation: text-anime 25s 0s infinite;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.mainvisual .slide-item .text-box .text {
  color: #fff;
  font-size: 7rem;
  font-family: "YuMincho", "Yu Mincho", "MS PMincho", serif;
  font-weight: 600;
  line-height: 90px;
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  left: 50px;
  bottom: 50px;
}
@media (max-width: 1200px) {
  .mainvisual .slide-item .text-box .text {
    bottom: 150px;
  }
}
@media (min-width: 0px) and (max-width: 768px) {
  .mainvisual .slide-item .text-box .text {
    font-size: 3.5rem;
    line-height: 40px;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.mainvisual .slide-item .text-box .btn-box {
  display: flex;
  gap: 20px;
  position: absolute;
  right: 10%;
  bottom: 60px;
  z-index: 11;
}
@media (min-width: 0px) and (max-width: 768px) {
  .mainvisual .slide-item .text-box .btn-box {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: 30px;
    gap: 15px;
  }
}
.mainvisual .slide-item .text-box .btn-box a {
  width: 216px;
  height: 70px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.4;
  transition: 0.2s;
}
@media (any-hover: hover) {
  .mainvisual .slide-item .text-box .btn-box a:hover {
    font-size: 2rem;
    box-shadow: none;
    transition: 0.2s;
  }
}
@media (any-hover: hover) and (min-width: 0px) and (max-width: 768px) {
  .mainvisual .slide-item .text-box .btn-box a:hover {
    font-size: 2rem;
  }
}
@media (min-width: 0px) and (max-width: 768px) {
  .mainvisual .slide-item .text-box .btn-box a {
    font-size: 1.4rem;
    max-width: 150px;
    height: 50px;
  }
}
.mainvisual .slide-item .text-box .btn-box .job {
  background-color: #003399;
  box-shadow: 6px 6px 0 #AEC4EF;
}
.mainvisual .slide-item .text-box .btn-box .first_time {
  background-color: #BD1016;
  box-shadow: 6px 6px 0 #EFB6B6;
}
.mainvisual .slide1 .text-box .text {
  left: 10%;
  bottom: auto;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 0px) and (max-width: 768px) {
  .mainvisual .slide1 .text-box .text {
    top: 80px;
    left: 5%;
  }
}
.mainvisual .slide2 .image-box, .mainvisual .slide2 .text-box {
  animation-delay: 5s;
}
.mainvisual .slide3 .image-box, .mainvisual .slide3 .text-box {
  animation-delay: 10s;
}
.mainvisual .slide4 .image-box, .mainvisual .slide4 .text-box {
  animation-delay: 15s;
}
.mainvisual .slide5 .image-box, .mainvisual .slide5 .text-box {
  animation-delay: 20s;
}
@keyframes image-anime {
  0% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  30% {
    opacity: 0;
    transform: scale(1);
    z-index: 10;
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}
@keyframes text-anime {
  0% {
    opacity: 1;
    z-index: 112;
  }
  20% {
    opacity: 1;
  }
  30% {
    opacity: 0;
    z-index: 11;
  }
  100% {
    opacity: 0;
  }
}
.mainvisual .scrolldown {
  position: absolute;
  bottom: 0;
  right: 2.5%;
  z-index: 9;
}
@media (min-width: 0px) and (max-width: 768px) {
  .mainvisual .scrolldown {
    display: none;
  }
}
.mainvisual .scrolldown::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 20px;
  background: #003399;
  z-index: 5;
  animation: insidemove 3s ease-in-out infinite, movehide 3s ease-out infinite;
}
@media (min-width: 0px) and (max-width: 768px) {
  .mainvisual .scrolldown::before {
    animation: insidemove-sp 3s ease-in-out infinite, movehide 3s ease-out infinite;
  }
}
.mainvisual .scrolldown::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 340px;
  background: #fff;
}
@media (min-width: 0px) and (max-width: 768px) {
  .mainvisual .scrolldown::after {
    height: 250px;
  }
}
.mainvisual .scrolldown span {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.08em;
  line-height: 1;
  font-size: 1.2rem;
  color: #fff;
  position: absolute;
  bottom: 350px;
  left: 7px;
  transform: rotate(-90deg);
  transform-origin: left bottom;
}
@media (min-width: 0px) and (max-width: 768px) {
  .mainvisual .scrolldown span {
    bottom: 260px;
  }
}
@keyframes insidemove {
  0% {
    bottom: 320px;
  }
  100% {
    bottom: 0px;
  }
}
@keyframes insidemove-sp {
  0% {
    bottom: 230px;
  }
  100% {
    bottom: 0px;
  }
}
@keyframes movehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  90% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}

.works {
  max-width: 1200px;
  margin-top: 90px;
  margin-bottom: 150px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .works {
    margin-top: 60px;
    margin-bottom: 80px;
  }
}
.works .title {
  width: 460px;
  margin: 0 auto 100px;
}
@media (min-width: 0px) and (max-width: 560px) {
  .works .title {
    width: 80%;
    margin: 0 auto 60px;
  }
}
.works .title img {
  width: 100%;
}
.works .works-style {
  margin-bottom: 120px;
  display: flex;
  flex-direction: row;
  gap: 7%;
}
@media (min-width: 0px) and (max-width: 768px) {
  .works .works-style {
    flex-direction: column;
    margin-bottom: 80px;
  }
}
@media (min-width: 0px) and (max-width: 768px) {
  .works .works-style.style-2 {
    flex-direction: column-reverse;
  }
}
.works .works-style .image-box {
  display: flex;
  flex-direction: row;
  gap: 2%;
  width: 50%;
}
@media (min-width: 0px) and (max-width: 768px) {
  .works .works-style .image-box {
    width: 100%;
  }
}
.works .works-style .image-box .pic {
  width: 49%;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 10px;
  overflow: hidden;
  display: block;
}
.works .works-style .image-box .pic:nth-child(2) {
  margin-top: 50px;
}
@media (min-width: 0px) and (max-width: 560px) {
  .works .works-style .image-box .pic:nth-child(2) {
    margin-top: 30px;
  }
}
.works .works-style .image-box .pic img {
  width: 100%;
  height: auto;
}
.works .works-style .text-box {
  width: 43%;
  margin-top: 50px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .works .works-style .text-box {
    width: 100%;
    margin-top: 30px;
  }
}
.works .works-style .text-box .works-title {
  font-size: 3rem;
  font-weight: 600;
  color: #003399;
  margin-bottom: 50px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .works .works-style .text-box .works-title {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }
}
.works .works-style .text-box .works-list {
  font-weight: 600;
  display: flex;
  flex-wrap: wrap;
  gap: 25px 35px;
  margin-bottom: 67px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .works .works-style .text-box .works-list {
    font-size: 1.4rem;
    gap: 20px 30px;
    margin-bottom: 40px;
  }
}
.works .works-style .text-box .works-list .item {
  position: relative;
}
.works .works-style .text-box .works-list .item:not(:last-of-type)::after {
  content: "";
  display: block;
  width: 1px;
  height: 35px;
  background-color: #003399;
  transform: rotate(30deg) translate(-100%, -50%);
  position: absolute;
  right: -10px;
  top: 45%;
}
@media (min-width: 0px) and (max-width: 768px) {
  .works .works-style .text-box .works-list .item:not(:last-of-type)::after {
    height: 30px;
  }
}
.works .works-style .text-box .works-link {
  display: inline-block;
  color: #003399;
  position: relative;
  font-weight: 600;
  transition: 0.2s;
}
@media (min-width: 0px) and (max-width: 768px) {
  .works .works-style .text-box .works-link {
    font-size: 1.4rem;
  }
}
.works .works-style .text-box .works-link::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background-image: url(../images/arrow-b.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: -32px;
  top: 50%;
  transform: translate(100%, -50%);
  transition: 0.2s;
  z-index: 1;
}
@media (min-width: 0px) and (max-width: 768px) {
  .works .works-style .text-box .works-link::before {
    width: 10px;
    height: 10px;
    right: -27px;
  }
}
.works .works-style .text-box .works-link::after {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  border: 2px solid #003399;
  border-radius: 50%;
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translate(100%, -50%);
  transition: 0.2s;
}
@media (min-width: 0px) and (max-width: 768px) {
  .works .works-style .text-box .works-link::after {
    width: 35px;
    height: 35px;
  }
}
@media (any-hover: hover) {
  .works .works-style .text-box .works-link:hover::before {
    background-image: url(../images/arrow-w.svg);
  }
  .works .works-style .text-box .works-link:hover::after {
    background-color: #003399;
  }
}

.search-content {
  width: 100%;
  margin-bottom: 160px;
  display: flex;
  flex-direction: row;
}
@media (min-width: 0px) and (max-width: 560px) {
  .search-content {
    flex-direction: column;
    margin-bottom: 80px;
  }
}
.search-content .search-box {
  width: 50%;
}
@media (min-width: 0px) and (max-width: 560px) {
  .search-content .search-box {
    width: 100%;
  }
}
.search-content .search-box .search-link {
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 140px 0 18%;
  background: linear-gradient(90deg, rgb(203, 227, 255) 0%, rgb(253, 253, 253) 100%);
  position: relative;
  transition: 0.2s;
}
@media (min-width: 0px) and (max-width: 768px) {
  .search-content .search-box .search-link {
    height: 160px;
    padding: 0 70px 0 20px;
  }
}
@media (min-width: 0px) and (max-width: 560px) {
  .search-content .search-box .search-link {
    height: 120px;
  }
}
.search-content .search-box .search-link::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background-image: url(../images/arrow-b.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 78px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s;
}
@media (min-width: 0px) and (max-width: 768px) {
  .search-content .search-box .search-link::before {
    width: 10px;
    height: 10px;
    right: 27px;
  }
}
.search-content .search-box .search-link::after {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  border: 2px solid #003399;
  border-radius: 50%;
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s;
}
@media (min-width: 0px) and (max-width: 768px) {
  .search-content .search-box .search-link::after {
    width: 35px;
    height: 35px;
    right: 15px;
  }
}
@media (any-hover: hover) {
  .search-content .search-box .search-link:hover {
    background: #003399;
    transition: 0.2s;
  }
  .search-content .search-box .search-link:hover::before {
    background-image: url(../images/arrow-w.svg);
    transition: 0.2s;
  }
  .search-content .search-box .search-link:hover::after {
    border: 2px solid #fff;
    transition: 0.2s;
  }
  .search-content .search-box .search-link:hover .title, .search-content .search-box .search-link:hover .text {
    color: #fff;
  }
}
.search-content .search-box .search-link .title, .search-content .search-box .search-link .text {
  transition: 0.2s;
}
.search-content .search-box .search-link .title {
  font-size: 2.8rem;
  color: #003399;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 15px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .search-content .search-box .search-link .title {
    font-size: 1.8rem;
    margin-bottom: 8px;
  }
}
.search-content .search-box .search-link .text {
  font-size: 1.4rem;
}

.top-column {
  padding-top: 150px;
  margin-top: -150px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .top-column {
    padding-top: 100px;
    margin-top: -100px;
  }
}

.column {
  margin-bottom: 120px;
}
@media (min-width: 0px) and (max-width: 560px) {
  .column {
    margin-bottom: 60px;
  }
}
.column .title-style01 .en {
  margin-right: 14px;
}
.column .column-content {
  margin-top: 80px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (min-width: 0px) and (max-width: 560px) {
  .column .column-content {
    margin-top: 50px;
  }
}
.column .column-content .column-item {
  width: 30%;
  margin-right: 5%;
  margin-bottom: 60px;
  position: relative;
}
@media (min-width: 0px) and (max-width: 768px) {
  .column .column-content .column-item {
    width: 48%;
    margin-right: 4%;
  }
}
@media (min-width: 0px) and (max-width: 560px) {
  .column .column-content .column-item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 40px;
  }
}
@media (min-width: 769px) {
  .column .column-content .column-item:nth-child(3n) {
    margin-right: 0;
  }
}
@media (min-width: 0px) and (max-width: 768px) {
  .column .column-content .column-item:nth-child(2n) {
    margin-right: 0;
  }
}
.column .column-content .column-item a {
  display: block;
  transition: all 0.2s;
}
@media (min-width: 561px) {
  .column .column-content .column-item a:hover {
    opacity: 0.7;
    transition: all 0.2s;
  }
}
.column .column-content .column-img {
  width: 100%;
  height: 100%;
  aspect-ratio: 300/200;
  margin-bottom: 25px;
  position: relative;
}
@media (min-width: 0px) and (max-width: 560px) {
  .column .column-content .column-img {
    margin-bottom: 15px;
  }
}
.column .column-content .column-img img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.column .column-content .column-title {
  font-weight: 600;
  line-height: 24px;
}

.qa {
  max-width: 1080px;
  margin-top: -150px;
  padding-top: 150px;
  margin-bottom: 120px;
}
@media (min-width: 0px) and (max-width: 560px) {
  .qa {
    margin-bottom: 80px;
    margin-top: -100px;
    padding-top: 100px;
  }
}
.qa .title {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.08em;
  line-height: 1;
  color: #003399;
  font-weight: bold;
  font-size: 8rem;
  text-align: center;
  margin-bottom: 24px;
}
@media (min-width: 0px) and (max-width: 560px) {
  .qa .title {
    font-size: 5rem;
    margin-bottom: 20px;
  }
}
.qa .title .red-icon::after {
  width: 65px;
  height: 67px;
  top: -18px;
  right: -27px;
}
@media (min-width: 0px) and (max-width: 560px) {
  .qa .title .red-icon::after {
    width: 42px;
    height: 43px;
    top: -8px;
    right: -16px;
  }
}
.qa .title .and {
  font-size: 6rem;
  color: #BD1016;
}
@media (min-width: 0px) and (max-width: 560px) {
  .qa .title .and {
    font-size: 4rem;
  }
}
.qa .text {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 65px;
}
@media (min-width: 0px) and (max-width: 560px) {
  .qa .text {
    font-size: 1.6rem;
    margin-bottom: 45px;
  }
}
.qa .faq-item {
  margin-bottom: 30px;
}
@media (min-width: 0px) and (max-width: 560px) {
  .qa .faq-item {
    margin-bottom: 15px;
  }
}
.qa .faq-item:last-child {
  margin-bottom: 0;
}
.qa .faqInnItem {
  cursor: pointer;
  display: block;
  display: flex;
  flex-direction: column;
  position: relative;
  transition-duration: 0.1s;
  padding-bottom: 30px;
  border-bottom: 1px solid #DDDDDD;
}
@media (min-width: 0px) and (max-width: 560px) {
  .qa .faqInnItem {
    padding-bottom: 15px;
  }
}
.qa .faqInnItem .q, .qa .faqInnItem .a {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.qa .faqInnItem .q {
  position: relative;
}
.qa .faqInnItem .q:before, .qa .faqInnItem .q:after {
  content: "";
  display: block;
  background-color: #003399;
  border-radius: 5px;
  transform: translateY(-50%);
  transition: all 0.2s;
  position: absolute;
}
.qa .faqInnItem .q:before {
  width: 5px;
  height: 32px;
  top: 50%;
  right: 27px;
}
@media (min-width: 0px) and (max-width: 560px) {
  .qa .faqInnItem .q:before {
    width: 3px;
    height: 20px;
    right: 8px;
  }
}
.qa .faqInnItem .q:after {
  width: 32px;
  height: 5px;
  top: 50%;
  right: 14px;
}
@media (min-width: 0px) and (max-width: 560px) {
  .qa .faqInnItem .q:after {
    width: 20px;
    height: 3px;
    right: 0;
  }
}
.qa .faqInnItem .q .icon {
  background-color: #003399;
  box-shadow: 6px 6px 0 rgba(174, 196, 239, 0.2);
  padding-bottom: 6px;
  min-width: 60px;
  min-height: 60px;
  border-radius: 10px;
  text-align: center;
  margin-right: 30px;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.08em;
  line-height: 1;
  font-size: 3.4rem;
  line-height: 1;
  letter-spacing: 0;
  font-weight: bold;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
@media (min-width: 0px) and (max-width: 560px) {
  .qa .faqInnItem .q .icon {
    margin-right: 20px;
    font-size: 2rem;
    min-width: 40px;
    min-height: 40px;
    padding-bottom: 5px;
    box-shadow: 4px 4px 0 rgba(174, 196, 239, 0.2);
  }
}
.qa .faqInnItem .q .faqTxt {
  font-size: 2rem;
  color: #003399;
  font-weight: bold;
  margin-right: 50px;
  transition: all 0.6s;
}
@media (min-width: 0px) and (max-width: 560px) {
  .qa .faqInnItem .q .faqTxt {
    font-size: 1.4rem;
    margin-right: 45px;
    line-height: 20px;
  }
}
.qa .faqInnItem .a {
  padding-top: 0;
  margin-bottom: 0;
  opacity: 0;
  max-height: 0px;
  padding-right: 60px;
  padding-left: 40px;
  border: 2px solid #BD1016;
  overflow: hidden;
  border-radius: 10px;
  transition-duration: 0.4s;
}
@media (min-width: 0px) and (max-width: 560px) {
  .qa .faqInnItem .a {
    padding-right: 15px;
    padding-left: 20px;
  }
}
.qa .faqInnItem .a .icon {
  color: #BD1016;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.08em;
  line-height: 1;
  font-size: 3.8rem;
  line-height: 1;
  letter-spacing: 0;
  font-weight: bold;
  margin-right: 40px;
}
@media (min-width: 0px) and (max-width: 560px) {
  .qa .faqInnItem .a .icon {
    font-size: 2.2rem;
    margin-right: 20px;
  }
}
.qa .faqInnItem .a .faqTxt {
  font-size: 1.8rem;
  text-align: justify;
}
@media (min-width: 0px) and (max-width: 560px) {
  .qa .faqInnItem .a .faqTxt {
    font-size: 1.4rem;
  }
}
.qa .faqInnItem.active {
  border-bottom: transparent;
}
.qa .faqInnItem.active .a {
  opacity: 1;
  max-height: 200px;
  transition-duration: 0.6s;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-top: 35px;
  padding-bottom: 35px;
}
@media (min-width: 0px) and (max-width: 560px) {
  .qa .faqInnItem.active .a {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.qa .faqInnItem.active .q:before {
  transform: rotate(-90deg) translateY(-50%);
  transform-origin: top;
  transition: all 0.2s;
}

.about .u-mv {
  background-image: url(../images/about-mv.jpg);
}
@media (min-width: 0px) and (max-width: 768px) {
  .about .u-mv {
    background-image: url(../images/about-mv-sp.jpg);
  }
}
.about .about-copy {
  margin-top: 80px;
  margin-bottom: 80px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .about .about-copy {
    margin-top: 60px;
  }
}
.about .about-copy .copy-title {
  text-align: center;
  font-size: 2.4rem;
  color: #003399;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 70px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .about .about-copy .copy-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }
}
.about .about-copy .copy-title .text-inn {
  position: relative;
  padding: 0 88px;
  display: inline-block;
}
@media (min-width: 0px) and (max-width: 768px) {
  .about .about-copy .copy-title .text-inn {
    padding: 0 40px;
    display: block;
  }
}
.about .about-copy .copy-title .text-inn::before, .about .about-copy .copy-title .text-inn::after {
  content: "";
  display: block;
  width: 41px;
  height: 128px;
  background-image: url(../images/kakko-b.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 48%;
  transform-origin: top;
}
@media (min-width: 0px) and (max-width: 768px) {
  .about .about-copy .copy-title .text-inn::before, .about .about-copy .copy-title .text-inn::after {
    width: 30px;
    height: 95px;
  }
}
.about .about-copy .copy-title .text-inn::before {
  left: 0;
  transform: translateY(-50%);
}
.about .about-copy .copy-title .text-inn::after {
  right: 0;
  transform: scale(-1, -1) translateY(-50%);
}
.about .about-copy .copy-title .red {
  font-size: 5rem;
  color: #BD1016;
}
@media (min-width: 0px) and (max-width: 768px) {
  .about .about-copy .copy-title .red {
    font-size: 3rem;
  }
}
@media (min-width: 0px) and (max-width: 560px) {
  .about .about-copy .copy-title .red {
    font-size: 2.5rem;
  }
}
.about .about-copy .copy-title .blue-50 {
  font-size: 5rem;
}
@media (min-width: 0px) and (max-width: 768px) {
  .about .about-copy .copy-title .blue-50 {
    font-size: 3rem;
  }
}
@media (min-width: 0px) and (max-width: 560px) {
  .about .about-copy .copy-title .blue-50 {
    font-size: 2.5rem;
  }
}
.about .about-copy .copy-title .blue-60 {
  font-size: 6rem;
}
@media (min-width: 0px) and (max-width: 768px) {
  .about .about-copy .copy-title .blue-60 {
    font-size: 3.5rem;
  }
}
@media (min-width: 0px) and (max-width: 560px) {
  .about .about-copy .copy-title .blue-60 {
    font-size: 2.5rem;
  }
}
.about .about-copy .text {
  margin-bottom: 30px;
  line-height: 1.8;
  text-align: justify;
}
@media (min-width: 0px) and (max-width: 560px) {
  .about .about-copy .text {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
}
.about .about-sec {
  margin-bottom: 120px;
}
@media (min-width: 0px) and (max-width: 560px) {
  .about .about-sec {
    margin-bottom: 80px;
  }
}
.about .about-sec .pic {
  width: 100%;
  height: 460px;
  margin-bottom: 80px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .about .about-sec .pic {
    height: 240px;
    margin-bottom: 50px;
  }
}
.about .about-sec .pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.about .about-sec .text-box {
  display: flex;
  align-items: center;
  flex-direction: row;
}
@media (min-width: 0px) and (max-width: 768px) {
  .about .about-sec .text-box {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (min-width: 0px) and (max-width: 560px) {
  .about .about-sec .text-box {
    margin-bottom: 50px;
  }
}
.about .about-sec .text-box .left {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 0px) and (max-width: 768px) {
  .about .about-sec .text-box .left {
    width: 100%;
    margin-bottom: 40px;
    align-items: flex-start;
  }
}
@media (min-width: 0px) and (max-width: 560px) {
  .about .about-sec .text-box .left {
    margin-bottom: 30px;
  }
}
.about .about-sec .text-box .left .point-title {
  margin-bottom: 15px;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.08em;
  line-height: 1;
  font-weight: bold;
}
@media (min-width: 0px) and (max-width: 560px) {
  .about .about-sec .text-box .left .point-title {
    margin-bottom: 5px;
  }
}
.about .about-sec .text-box .left .point-title .point-text {
  font-size: 1.9rem;
  color: #fff;
  background-color: #003399;
  border-radius: 6px;
  margin-right: 16px;
  margin-bottom: 8px;
  width: 86px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.08em;
}
@media (min-width: 0px) and (max-width: 560px) {
  .about .about-sec .text-box .left .point-title .point-text {
    font-size: 1.4rem;
    width: 65px;
    height: 22px;
    margin-right: 12px;
  }
}
.about .about-sec .text-box .left .point-title .point-num {
  font-size: 6.5rem;
  line-height: 1;
  color: #003399;
  letter-spacing: 0.08em;
}
@media (min-width: 0px) and (max-width: 560px) {
  .about .about-sec .text-box .left .point-title .point-num {
    font-size: 5.5rem;
  }
}
.about .about-sec .text-box .left .point-title .point-num::after {
  width: 52px;
  height: 53px;
  top: -14px;
  right: -17px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .about .about-sec .text-box .left .point-title .point-num::after {
    width: 46px;
    height: 47px;
  }
}
.about .about-sec .text-box .left .title {
  font-size: 3rem;
  color: #003399;
  font-weight: 600;
}
@media (min-width: 0px) and (max-width: 560px) {
  .about .about-sec .text-box .left .title {
    font-size: 2rem;
  }
}
.about .about-sec .text-box .right {
  width: 50%;
}
@media (min-width: 0px) and (max-width: 768px) {
  .about .about-sec .text-box .right {
    width: 100%;
  }
}
.about .about-sec .text-box .right .sub-title {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 40px;
}
@media (min-width: 0px) and (max-width: 560px) {
  .about .about-sec .text-box .right .sub-title {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
}
.about .about-sec .text-box .right .text {
  font-size: 1.8rem;
  line-height: 1.7;
}
@media (min-width: 0px) and (max-width: 560px) {
  .about .about-sec .text-box .right .text {
    font-size: 1.4rem;
  }
}

@media (min-width: 561px) {
  .flow-content {
    margin-bottom: 120px;
  }
}
@media (min-width: 0px) and (max-width: 560px) {
  .flow-content {
    margin-bottom: 80px;
  }
}
.flow .u-mv {
  background-image: url(../images/flow-mv.jpg);
}
@media (min-width: 0px) and (max-width: 768px) {
  .flow .u-mv {
    background-image: url(../images/flow-mv-sp.jpg);
  }
}
.flow .flow-title {
  font-size: 3rem;
  color: #003399;
  font-weight: 600;
  text-align: center;
  margin-top: 80px;
  margin-bottom: 80px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .flow .flow-title {
    font-size: 2.4rem;
    margin-top: 60px;
    margin-bottom: 40px;
  }
}
.flow .tab-box {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-bottom: 3px solid #003399;
  margin-bottom: 60px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .flow .tab-box {
    margin-bottom: 40px;
  }
}
.flow .tab-box .tab-item {
  width: 48%;
  height: 63px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  background-color: #F2F2F2;
  font-weight: 600;
}
@media (min-width: 0px) and (max-width: 768px) {
  .flow .tab-box .tab-item {
    height: 45px;
    font-size: 1.4rem;
  }
}
.flow .tab-box .tab-item.active {
  background-color: #003399;
  color: #fff;
  font-size: 2rem;
  padding-top: 3px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .flow .tab-box .tab-item.active {
    font-size: 1.8rem;
  }
}
.flow .tab-box .tab-item .tab-title {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flow .flow-sec {
  padding: 0 60px;
  display: none;
  opacity: 0;
}
@media (min-width: 0px) and (max-width: 768px) {
  .flow .flow-sec {
    padding: 0;
  }
}
.flow .flow-sec.is-active {
  display: block;
  animation-name: displayAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.flow .flow-sec .flow-step {
  display: flex;
  flex-direction: row;
  position: relative;
}
@media (min-width: 0px) and (max-width: 560px) {
  .flow .flow-sec .flow-step {
    flex-wrap: wrap;
  }
}
.flow .flow-sec .flow-step::before {
  content: "";
  display: block;
  width: 8px;
  height: 100px;
  background-image: url(../images/step-red.png);
  background-position: top center;
  background-size: contain;
  background-repeat: repeat-y;
  position: absolute;
  top: 110px;
  left: 50px;
  transform: translateX(-50%);
}
@media (min-width: 0px) and (max-width: 768px) {
  .flow .flow-sec .flow-step::before {
    width: 6px;
    height: calc(100% - 80px);
    top: 80px;
    left: 35px;
  }
}
.flow .flow-sec .flow-step:last-of-type::before {
  display: none;
}
.flow .flow-sec .flow-step:last-of-type .step-title {
  margin-bottom: 0;
}
.flow .flow-sec .flow-step .step-title {
  width: 100px;
  height: 100px;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.08em;
  line-height: 1;
  color: #fff;
  font-weight: bold;
  background-color: #003399;
  border-radius: 50px;
  margin-right: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-shrink: 0;
  margin-bottom: 120px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .flow .flow-sec .flow-step .step-title {
    width: 70px;
    height: 70px;
    margin-right: 20px;
    margin-bottom: 95px;
  }
}
@media (min-width: 0px) and (max-width: 560px) {
  .flow .flow-sec .flow-step .step-title {
    margin-bottom: 0;
  }
}
.flow .flow-sec .flow-step .step-title .step-text {
  font-size: 1.8rem;
  padding-bottom: 3px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .flow .flow-sec .flow-step .step-title .step-text {
    font-size: 1.2rem;
    padding-bottom: 2px;
  }
}
.flow .flow-sec .flow-step .step-title .step-num {
  font-size: 4rem;
}
@media (min-width: 0px) and (max-width: 768px) {
  .flow .flow-sec .flow-step .step-title .step-num {
    font-size: 2.8rem;
  }
}
.flow .flow-sec .flow-step .text-box {
  margin-top: 25px;
  padding-right: 6%;
}
@media (min-width: 0px) and (max-width: 768px) {
  .flow .flow-sec .flow-step .text-box {
    margin-top: 20px;
    padding-right: 4%;
  }
}
@media (min-width: 0px) and (max-width: 560px) {
  .flow .flow-sec .flow-step .text-box {
    width: calc(100% - 90px);
    padding-right: 0;
  }
}
.flow .flow-sec .flow-step .text-box .title {
  font-size: 2.6rem;
  font-weight: 600;
  color: #003399;
  margin-bottom: 15px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .flow .flow-sec .flow-step .text-box .title {
    font-size: 1.8rem;
    margin-bottom: 5px;
  }
}
@media (min-width: 0px) and (max-width: 768px) {
  .flow .flow-sec .flow-step .text-box .text {
    font-size: 1.4rem;
  }
}
.flow .flow-sec .flow-step .pic {
  width: 27.3%;
  margin-left: auto;
  flex-shrink: 0;
}
@media (min-width: 0px) and (max-width: 768px) {
  .flow .flow-sec .flow-step .pic {
    margin-top: 20px;
  }
}
@media (min-width: 0px) and (max-width: 560px) {
  .flow .flow-sec .flow-step .pic {
    width: calc(100% - 90px);
    padding-bottom: 30px;
  }
}

.jinzai .u-mv {
  background-image: url(../images/jinzai-mv.jpg);
}
@media (min-width: 0px) and (max-width: 768px) {
  .jinzai .u-mv {
    background-image: url(../images/jinzai-mv-sp.jpg);
  }
}
@media (min-width: 0px) and (max-width: 560px) {
  .jinzai .u-mv {
    height: 190px;
    position: relative;
    margin-bottom: 170px;
  }
}
.jinzai .u-mv .title {
  width: 683px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .jinzai .u-mv .title {
    width: 100%;
  }
}
@media (min-width: 0px) and (max-width: 560px) {
  .jinzai .u-mv .title {
    position: absolute;
    bottom: -110px;
    left: 0;
  }
}
.jinzai .jinzai-title {
  font-size: 3rem;
  color: #003399;
  font-weight: 600;
  text-align: center;
  margin-top: 80px;
  margin-bottom: 40px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .jinzai .jinzai-title {
    font-size: 2.4rem;
    margin-top: 60px;
    margin-bottom: 40px;
  }
}
.jinzai .jinzai-text {
  margin-bottom: 100px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .jinzai .jinzai-text {
    font-size: 1.4rem;
    margin-bottom: 60px;
  }
}
.jinzai .jinzai-logo {
  width: 460px;
  margin: 0 auto 150px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .jinzai .jinzai-logo {
    width: 80%;
    margin: 0 auto 120px;
  }
}
.jinzai .jinzai-logo img {
  width: 100%;
}
.jinzai .jinzai-point {
  position: relative;
  margin-bottom: 130px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .jinzai .jinzai-point {
    margin-bottom: 100px;
  }
}
.jinzai .jinzai-point:last-of-type {
  margin-bottom: 120px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .jinzai .jinzai-point:last-of-type {
    margin-bottom: 80px;
  }
}
.jinzai .jinzai-point .point-title {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0, 51, 153, 0.2);
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.08em;
  line-height: 1;
  color: #003399;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
}
@media (min-width: 0px) and (max-width: 768px) {
  .jinzai .jinzai-point .point-title {
    width: 110px;
    height: 110px;
  }
}
.jinzai .jinzai-point .point-title .point-text {
  font-size: 2rem;
  padding-bottom: 5px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .jinzai .jinzai-point .point-title .point-text {
    font-size: 1.5rem;
    padding-bottom: 0;
  }
}
.jinzai .jinzai-point .point-title .point-num {
  font-size: 5rem;
}
@media (min-width: 0px) and (max-width: 768px) {
  .jinzai .jinzai-point .point-title .point-num {
    font-size: 4.5rem;
  }
}
.jinzai .jinzai-point .text-box {
  width: 100%;
  min-height: 350px;
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: #003399;
  border-radius: 20px;
  padding: 30px 30px 30px 60px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .jinzai .jinzai-point .text-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 30px 30px 30px;
  }
}
.jinzai .jinzai-point .text-box .left {
  width: 48%;
  color: #fff;
}
@media (min-width: 0px) and (max-width: 768px) {
  .jinzai .jinzai-point .text-box .left {
    width: 100%;
    margin-bottom: 30px;
  }
}
.jinzai .jinzai-point .text-box .left .title {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 1.4;
}
@media (min-width: 0px) and (max-width: 768px) {
  .jinzai .jinzai-point .text-box .left .title {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
}
.jinzai .jinzai-point .text-box .left .text {
  line-height: 1.7;
}
@media (min-width: 0px) and (max-width: 768px) {
  .jinzai .jinzai-point .text-box .left .text {
    font-size: 1.4rem;
  }
}
.jinzai .jinzai-point .text-box .right {
  width: 48.57%;
  margin-left: auto;
}
@media (min-width: 0px) and (max-width: 768px) {
  .jinzai .jinzai-point .text-box .right {
    width: 100%;
  }
}

.company .u-mv {
  background-image: url(../images/company-mv.jpg);
}
@media (min-width: 0px) and (max-width: 768px) {
  .company .u-mv {
    background-image: url(../images/company-mv-sp.jpg);
  }
}
.company .u-mv .title {
  width: 500px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .company .u-mv .title {
    width: 270px;
  }
}
.company .message {
  margin-top: 120px;
  margin-bottom: 60px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .company .message {
    margin-top: 80px;
    margin-bottom: 50px;
  }
}
.company .message-lead {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 60px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .company .message-lead {
    flex-direction: column;
  }
}
.company .message-title {
  font-weight: 600;
  font-size: 3rem;
  margin-bottom: 40px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .company .message-title {
    font-size: 2.4rem;
  }
}
.company .message-text {
  line-height: 1.8;
}
.company .message-text:not(:last-of-type) {
  margin-bottom: 30px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .company .message-text:not(:last-of-type) {
    margin-bottom: 20px;
  }
}
.company .message-text .bold {
  font-weight: 600;
}
.company .message-image {
  width: 45%;
  flex-shrink: 0;
}
@media (min-width: 0px) and (max-width: 768px) {
  .company .message-image {
    width: 70%;
  }
}
.company .message-image img {
  margin-bottom: 20px;
}
.company .message-name {
  text-align: right;
}
@media (min-width: 0px) and (max-width: 768px) {
  .company .message-name {
    font-size: 1.4rem;
  }
}
.company-profile {
  margin-top: 120px;
  margin-bottom: 60px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .company-profile {
    margin-top: 80px;
    margin-bottom: 50px;
  }
}
.company .list {
  margin-top: 80px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .company .list {
    margin-top: 40px;
  }
}
.company .list .item {
  padding: 32px 0;
  border-bottom: 1px solid #ddd;
  position: relative;
}
@media (min-width: 0px) and (max-width: 560px) {
  .company .list .item {
    padding: 20px 0;
  }
}
.company .list .item:first-of-type {
  border-top: 1px solid #ddd;
}
.company .list .item:first-of-type::after {
  content: "";
  display: block;
  width: 16%;
  height: 1px;
  background-color: #003399;
  position: absolute;
  left: 0;
  top: -1px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .company .list .item:first-of-type::after {
    width: 20%;
  }
}
.company .list .item::before {
  content: "";
  display: block;
  width: 16%;
  height: 1px;
  background-color: #003399;
  position: absolute;
  left: 0;
  bottom: -1px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .company .list .item::before {
    width: 20%;
  }
}
@media (min-width: 0px) and (max-width: 560px) {
  .company .list .item.center dl {
    align-items: center;
  }
  .company .list .item.center dl dt {
    line-height: 1.4;
  }
}
.company .list dl {
  display: flex;
  flex-direction: row;
}
.company .list dl dt, .company .list dl dd {
  flex-shrink: 0;
}
@media (min-width: 0px) and (max-width: 768px) {
  .company .list dl dt, .company .list dl dd {
    font-size: 1.4rem;
  }
}
.company .list dl dt {
  width: 16%;
  text-align: center;
  font-weight: 600;
}
@media (min-width: 0px) and (max-width: 768px) {
  .company .list dl dt {
    width: 20%;
  }
}
.company .list dl dd {
  width: 80%;
  padding-left: 50px;
}
@media (min-width: 0px) and (max-width: 560px) {
  .company .list dl dd {
    padding-left: 30px;
  }
}
@media (min-width: 0px) and (max-width: 560px) {
  .company .list dl .jigyo-list .jigyo-item {
    padding-bottom: 5px;
  }
}
.company .list dl .history-list dt {
  font-weight: 500;
  text-align: left;
  width: 12%;
  flex-shrink: 1;
}
@media (min-width: 0px) and (max-width: 768px) {
  .company .list dl .history-list dt {
    width: 25%;
  }
}
.company .list dl .history-list dd {
  width: 88%;
  padding-left: 0;
}
@media (min-width: 0px) and (max-width: 768px) {
  .company .list dl .history-list dd {
    width: 75%;
  }
}
.company .pdf-box {
  margin-bottom: 130px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .company .pdf-box {
    margin-bottom: 80px;
  }
}
.company .pdf-box .pdf-item {
  margin-bottom: 40px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .company .pdf-box .pdf-item {
    margin-bottom: 25px;
  }
}
.company .pdf-box .pdf-item a {
  display: inline-block;
  padding-left: 50px;
  font-weight: 600;
  position: relative;
  transition: 0.2s;
}
@media (min-width: 0px) and (max-width: 768px) {
  .company .pdf-box .pdf-item a {
    font-size: 1.4rem;
    padding-left: 40px;
  }
}
@media (any-hover: hover) {
  .company .pdf-box .pdf-item a:hover {
    color: #003399;
    transition: 0.2s;
  }
}
.company .pdf-box .pdf-item a::before {
  content: "";
  display: block;
  width: 30px;
  height: 37px;
  background-image: url(../images/pdf-icon.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media (min-width: 0px) and (max-width: 768px) {
  .company .pdf-box .pdf-item a::before {
    width: 25px;
    height: 31px;
  }
}

.contact .u-mv {
  background-image: url(../images/contact-mv.jpg);
}
@media (min-width: 0px) and (max-width: 768px) {
  .contact .u-mv {
    background-image: url(../images/contact-mv-sp.jpg);
    margin-bottom: 80px;
  }
}
.contact .u-mv .title {
  width: 480px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .contact .u-mv .title {
    width: 240px;
  }
}
.contact .contact-text {
  text-align: center;
  margin-top: 80px;
  margin-bottom: 80px;
}
@media (min-width: 0px) and (max-width: 560px) {
  .contact .contact-text {
    font-size: 1.4rem;
    margin-top: 60px;
    margin-bottom: 40px;
  }
}
.contact .iframe_wrap {
  margin-bottom: 100px;
}
@media (min-width: 0px) and (max-width: 560px) {
  .contact .iframe_wrap {
    margin-bottom: 80px;
  }
}
.contact .iframe_wrap #advanced_iframe {
  width: 100%;
  height: 1250px;
}
@media (min-width: 0px) and (max-width: 560px) {
  .contact .iframe_wrap #advanced_iframe {
    height: 1660px !important;
  }
}

.contact-end {
  margin-top: 100px;
  margin-bottom: 150px;
  text-align: center;
}
@media (min-width: 0px) and (max-width: 768px) {
  .contact-end {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}
.contact-end .title {
  font-size: 2.8rem;
  font-weight: 600;
  margin-top: 80px;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 0px) and (max-width: 768px) {
  .contact-end .title {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }
}
.contact-end .title::before {
  content: attr(data-title);
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.08em;
  line-height: 1;
  line-height: 1;
  font-weight: bold;
  color: #003399;
}
@media (min-width: 0px) and (max-width: 768px) {
  .contact-end .title::before {
    font-size: 1.8rem;
    margin-bottom: 5px;
  }
}
@media (min-width: 769px) {
  .contact-end .title::before {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
}
.contact-end .text {
  margin-bottom: 15px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .contact-end .text {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
}
.contact-end .end-btn {
  width: 300px;
  height: 70px;
  margin: 80px auto 0;
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  background-color: #003399;
  box-shadow: 6px 6px 0 #AEC4EF;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}
@media (any-hover: hover) {
  .contact-end .end-btn:hover {
    font-size: 2.4rem;
    box-shadow: none;
    transition: 0.2s;
  }
}
@media (any-hover: hover) and (min-width: 0px) and (max-width: 768px) {
  .contact-end .end-btn:hover {
    font-size: 2rem;
  }
}
@media (min-width: 0px) and (max-width: 768px) {
  .contact-end .end-btn {
    margin: 40px auto 0;
    font-size: 1.4rem;
    max-width: 180px;
    height: 50px;
  }
}

.privacy {
  margin-top: 100px;
  margin-bottom: 120px;
  line-height: 1.8;
}
@media (min-width: 0px) and (max-width: 768px) {
  .privacy {
    margin-top: 110px;
    margin-bottom: 80px;
  }
}
.privacy .container {
  max-width: 960px;
  margin-top: 80px;
}
.privacy-content {
  margin-top: 120px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .privacy-content {
    margin-top: 80px;
  }
}
.privacy-lead {
  margin-bottom: 30px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .privacy-lead {
    margin-bottom: 20px;
  }
}
.privacy-text {
  display: flex;
  flex-direction: row;
}
.privacy-text:not(:last-of-type) {
  margin-bottom: 30px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .privacy-text:not(:last-of-type) {
    margin-bottom: 20px;
  }
}
.privacy-text .num {
  color: #003399;
  font-weight: 600;
  margin-right: 30px;
  flex-shrink: 0;
}
@media (min-width: 0px) and (max-width: 768px) {
  .privacy-text .num {
    margin-right: 15px;
  }
}
.privacy-lead-dl {
  margin-top: 30px;
  margin-left: 45px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .privacy-lead-dl {
    margin-left: 30px;
  }
}
.privacy-lead-dt {
  font-weight: 600;
}
.privacy-inner .privacy-title {
  margin: 80px 0 40px;
  line-height: 38px;
  font-size: 2.6rem;
  font-weight: 600;
  text-align: left;
  color: #003399;
  padding: 0 0 16px 0;
  position: relative;
  padding-left: 1.2em;
  text-indent: -1.2em;
}
@media (min-width: 0px) and (max-width: 768px) {
  .privacy-inner .privacy-title {
    margin: 60px 0 30px;
    line-height: 32px;
    font-size: 2rem;
  }
}
.privacy-inner .privacy-title::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #003399;
  position: absolute;
  bottom: 0;
  left: 0;
}
.privacy-inner .privacy-title::after {
  content: "";
  display: block;
  width: 100px;
  height: 2px;
  background: #BD1016;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (min-width: 0px) and (max-width: 768px) {
  .privacy-inner .privacy-title::after {
    width: 70px;
  }
}
.privacy-inner .privacy-subtitle {
  margin: 45px 0 35px;
  padding: 0 0 0 48px;
  font-size: 2rem;
  font-weight: 600;
  color: #003399;
  line-height: 30px;
  position: relative;
  text-indent: -1.2em;
}
@media (min-width: 0px) and (max-width: 768px) {
  .privacy-inner .privacy-subtitle {
    line-height: 26px;
    font-size: 1.8rem;
    padding: 0 0 0 45px;
    margin: 30px 0 15px;
  }
}
.privacy-inner .privacy-subtitle::before {
  content: "";
  display: block;
  width: 6px;
  height: 100%;
  border-radius: 1px;
  background: #003399;
  position: absolute;
  top: 0;
  left: 0;
}
.privacy-inner .privacy-text {
  line-height: 1.8;
  margin: 0 0 30px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .privacy-inner .privacy-text {
    font-size: 1.6rem;
    margin: 0 0 20px;
  }
}
.privacy-inner .privacy-dl {
  margin-top: 30px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .privacy-inner .privacy-dl {
    margin-top: 20px;
  }
}
.privacy-inner .privacy-dt {
  font-weight: 600;
  margin-bottom: 5px;
}
.privacy-inner .privacy-list {
  margin: 30px 0 60px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .privacy-inner .privacy-list {
    margin: 20px 0 40px;
  }
}
.privacy-inner .privacy-list-item {
  position: relative;
  margin-left: 15px;
}
.privacy-inner .privacy-list-item::before {
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  background-color: #111;
  border-radius: 50%;
  position: absolute;
  left: -12px;
  top: 12px;
}
.privacy-inner .privacy-list-item:not(:last-of-type) {
  margin-bottom: 10px;
}
.privacy-about-box {
  margin-top: 80px;
  text-align: right;
}
@media (min-width: 0px) and (max-width: 768px) {
  .privacy-about-box {
    margin-top: 60px;
    font-size: 1.6rem;
  }
}
.privacy-about {
  font-weight: 600;
  margin-bottom: 20px;
}
@media (min-width: 0px) and (max-width: 560px) {
  .privacy-info {
    margin-bottom: 10px;
    font-size: 1.4rem;
  }
}
.privacy-info a {
  color: #003399;
}
.privacy-ol li {
  padding-left: 1.2em;
  text-indent: -1.2em;
}
.privacy-ol li:not(:last-of-type) {
  margin-bottom: 10px;
}

.job-care .u-mv {
  background-image: url(../images/job-care-mv.jpg);
}
@media (min-width: 0px) and (max-width: 768px) {
  .job-care .u-mv {
    background-image: url(../images/job-care-mv-sp.jpg);
  }
}

.job-fashion .u-mv {
  background-image: url(../images/job-fashion-mv.jpg);
}
@media (min-width: 0px) and (max-width: 768px) {
  .job-fashion .u-mv {
    background-image: url(../images/job-fashion-mv-sp.jpg);
  }
}

@media (min-width: 0px) and (max-width: 560px) {
  .job .u-mv {
    height: 190px;
    position: relative;
    margin-bottom: 170px;
  }
}
.job .u-mv .title {
  width: 667px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .job .u-mv .title {
    width: 100%;
  }
}
@media (min-width: 0px) and (max-width: 560px) {
  .job .u-mv .title {
    position: absolute;
    bottom: -110px;
    left: 0;
  }
}
.job-catch {
  max-width: 1080px;
}
.job-title {
  font-size: 3rem;
  color: #003399;
  font-weight: 600;
  text-align: center;
  margin-top: 80px;
  margin-bottom: 40px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .job-title {
    font-size: 2.4rem;
    margin-top: 60px;
    margin-bottom: 40px;
  }
}
.job-text {
  margin-bottom: 100px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .job-text {
    font-size: 1.4rem;
    margin-bottom: 60px;
  }
}
.job .brand {
  margin-bottom: 120px;
}
@media (min-width: 0px) and (max-width: 560px) {
  .job .brand {
    margin-bottom: 80px;
  }
}
.job .brand-content {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 5%;
}
@media (min-width: 0px) and (max-width: 560px) {
  .job .brand-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 4%;
    margin-top: 40px;
  }
}
.job .brand-content .name {
  margin-top: 30px;
}
@media (min-width: 0px) and (max-width: 560px) {
  .job .brand-content .name {
    margin-top: 15px;
    font-size: 1.4rem;
  }
}

.point {
  max-width: 1200px;
  margin-top: 115px;
  margin-bottom: 165px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .point {
    margin-top: 80px;
    margin-bottom: 0;
  }
}
.point .title {
  width: 460px;
  margin: 0 auto 100px;
}
@media (min-width: 0px) and (max-width: 560px) {
  .point .title {
    width: 80%;
    margin: 0 auto 80px;
  }
}
.point .title img {
  width: 100%;
}
.point .point-style {
  margin-bottom: 110px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 0px) and (max-width: 768px) {
  .point .point-style {
    flex-direction: column;
    align-items: flex-start;
  }
}
.point .point-style .pic {
  width: calc(43% + 15px);
  position: relative;
}
@media (min-width: 0px) and (max-width: 768px) {
  .point .point-style .pic {
    width: 100%;
    padding: 0 15px;
  }
}
.point .point-style .pic::before, .point .point-style .pic::after {
  content: "";
  display: block;
  width: calc(100% - 15px);
  height: 100%;
  border-radius: 15px;
  position: absolute;
}
@media (min-width: 0px) and (max-width: 768px) {
  .point .point-style .pic::before, .point .point-style .pic::after {
    width: calc(100% - 30px);
  }
}
.point .point-style .text-box {
  width: 44%;
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media (min-width: 0px) and (max-width: 768px) {
  .point .point-style .text-box {
    width: 100%;
    align-items: flex-start;
    margin-bottom: 60px;
  }
}
.point .point-style .text-box .point-title {
  margin-bottom: 15px;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.08em;
  line-height: 1;
  font-weight: bold;
}
.point .point-style .text-box .point-title .point-text {
  font-size: 1.9rem;
  color: #fff;
  background-color: #003399;
  border-radius: 6px;
  margin-right: 16px;
  margin-bottom: 8px;
  width: 86px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.08em;
}
@media (min-width: 0px) and (max-width: 768px) {
  .point .point-style .text-box .point-title .point-text {
    font-size: 1.4rem;
    width: 65px;
    height: 22px;
    margin-right: 12px;
  }
}
.point .point-style .text-box .point-title .point-num {
  font-size: 6.5rem;
  line-height: 1;
  color: #003399;
  letter-spacing: 0.08em;
}
@media (min-width: 0px) and (max-width: 768px) {
  .point .point-style .text-box .point-title .point-num {
    font-size: 5.5rem;
  }
}
.point .point-style .text-box .point-title .point-num::after {
  width: 52px;
  height: 53px;
  top: -14px;
  right: -17px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .point .point-style .text-box .point-title .point-num::after {
    width: 46px;
    height: 47px;
  }
}
.point .point-style .text-box .sub-title {
  font-size: 3rem;
  color: #003399;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .point .point-style .text-box .sub-title {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
.point .point-style .text-box .text {
  font-size: 1.8rem;
}
@media (min-width: 0px) and (max-width: 768px) {
  .point .point-style .text-box .text {
    font-size: 1.4rem;
  }
}
@media (min-width: 0px) and (max-width: 768px) {
  .point .point-style01 {
    flex-direction: column-reverse;
  }
}
@media (min-width: 769px) {
  .point .point-style01 .pic {
    padding-left: 15px;
  }
}
.point .point-style01 .pic::before {
  border: 3px solid #003399;
  left: 0;
  top: -15px;
}
.point .point-style01 .pic::after {
  border: 3px solid #BD1016;
  right: -15px;
  bottom: -15px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .point .point-style01 .pic::after {
    right: 0;
  }
}
@media (min-width: 769px) {
  .point .point-style02 .pic {
    padding-right: 15px;
  }
}
.point .point-style02 .pic::before {
  border: 3px solid #003399;
  left: -15px;
  top: -15px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .point .point-style02 .pic::before {
    left: 0;
  }
}
.point .point-style02 .pic::after {
  border: 3px solid #BD1016;
  right: 0;
  bottom: -15px;
}

.job-recruit {
  background-color: #BD1016;
  padding: 50px 0;
}
@media (min-width: 0px) and (max-width: 768px) {
  .job-recruit {
    padding: 30px 0;
  }
}
.job-recruit .link {
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 5.8%;
  width: 750px;
  height: 200px;
  padding: 20px 30px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  transition: 0.2s;
}
@media (min-width: 0px) and (max-width: 768px) {
  .job-recruit .link {
    flex-direction: column;
    gap: 20px;
    width: 93%;
    height: auto;
    padding: 20px 30px;
  }
}
@media (any-hover: hover) {
  .job-recruit .link:hover {
    box-shadow: none;
    color: #BD1016;
  }
  .job-recruit .link:hover::after {
    transform: scale(1.2);
  }
}
.job-recruit .link::after {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  background-image: url(../images/tab-red.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.2s;
}
@media (min-width: 0px) and (max-width: 768px) {
  .job-recruit .link::after {
    width: 40px;
    height: 40px;
    position: absolute;
    bottom: 30px;
    right: 20px;
  }
}
.job-recruit .image-box {
  width: 48.5%;
  display: flex;
  gap: 4.5%;
}
@media (min-width: 0px) and (max-width: 768px) {
  .job-recruit .image-box {
    width: 100%;
    gap: 4%;
  }
}
.job-recruit .text {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.4;
}
@media (min-width: 0px) and (max-width: 768px) {
  .job-recruit .text {
    align-self: flex-start;
  }
}
.job-recruit .text .small {
  font-size: 2rem;
}

.recruit {
  margin-top: 100px;
  margin-bottom: 120px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .recruit {
    margin-top: 110px;
    margin-bottom: 80px;
  }
}
.recruit .container {
  margin-top: 80px;
}
.recruit-content {
  margin-top: 80px;
  display: flex;
  gap: 6%;
}
@media (min-width: 0px) and (max-width: 768px) {
  .recruit-content {
    margin-top: 60px;
  }
}
@media (min-width: 0px) and (max-width: 560px) {
  .recruit-content {
    flex-direction: column;
    gap: 80px;
  }
}
.recruit-box {
  width: 47%;
}
@media (min-width: 0px) and (max-width: 560px) {
  .recruit-box {
    width: 100%;
  }
}
.recruit-box .link {
  display: block;
  padding-bottom: 30px;
  border-bottom: 1px solid #003399;
}
@media (min-width: 0px) and (max-width: 560px) {
  .recruit-box .link {
    padding-bottom: 20px;
  }
}
@media (any-hover: hover) {
  .recruit-box .link:hover img {
    transform: scale(1.2);
  }
  .recruit-box .link:hover .title::after {
    transform: scale(1.2);
  }
}
.recruit-box .image-box {
  display: flex;
  gap: 2%;
  margin-bottom: 35px;
}
@media (min-width: 0px) and (max-width: 560px) {
  .recruit-box .image-box {
    margin-bottom: 25px;
  }
}
.recruit-box .image-box .item {
  width: 49%;
  border-radius: 10px;
  overflow: hidden;
}
.recruit-box .image-box .item img {
  transition: 0.4s;
}
.recruit-box .title {
  font-size: 2.4rem;
  font-weight: 600;
  color: #003399;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 0px) and (max-width: 560px) {
  .recruit-box .title {
    font-size: 2rem;
  }
}
.recruit-box .title::after {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  margin-left: 30px;
  background-image: url(../images/tab-blue.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.4s;
}
@media (min-width: 0px) and (max-width: 768px) {
  .recruit-box .title::after {
    width: 40px;
    height: 40px;
  }
}

.documents {
  margin-top: 100px;
  margin-bottom: 120px;
  line-height: 1.8;
}
@media (min-width: 0px) and (max-width: 768px) {
  .documents {
    margin-top: 110px;
    margin-bottom: 80px;
  }
}
.documents .container {
  max-width: 960px;
  margin-top: 80px;
}
.documents-content {
  margin-top: 120px;
}
@media (min-width: 0px) and (max-width: 560px) {
  .documents-content {
    margin-top: 80px;
  }
}
.documents-box:not(:last-of-type) {
  margin-bottom: 80px;
}
.documents-box .subtitle {
  height: 60px;
  font-size: 2rem;
  font-weight: 600;
  background-color: #003399;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 0px) and (max-width: 560px) {
  .documents-box .subtitle {
    font-size: 1.8rem;
    height: 50px;
  }
}
.documents-box .list {
  margin-top: 5px;
}
.documents-box .list .item {
  padding: 10px 0;
  border-bottom: 1px solid #B7CFFF;
  font-size: 1.8rem;
  font-weight: 600;
  color: #003399;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 0px) and (max-width: 560px) {
  .documents-box .list .item {
    flex-direction: column;
    padding: 20px 0 10px;
  }
}
.documents-box .list .link-box {
  padding-left: 60px;
  display: flex;
  gap: 10px;
}
@media (min-width: 0px) and (max-width: 560px) {
  .documents-box .list .link-box {
    padding-left: 0;
    padding-top: 15px;
    width: 100%;
    gap: 4%;
    justify-content: center;
  }
}
.documents-box .list .link-box .btn {
  width: 140px;
  height: 44px;
  padding: 0 10px;
  gap: 12px;
  color: #fff;
  font-size: 1.4rem;
  border-radius: 5px;
  display: flex;
  align-items: center;
  transition: 0.2s;
}
@media (min-width: 0px) and (max-width: 560px) {
  .documents-box .list .link-box .btn {
    width: 48%;
    height: 40px;
  }
}
.documents-box .list .link-box .btn::before {
  content: "";
  display: block;
  background-size: contain;
  background-position: center;
}
@media (any-hover: hover) {
  .documents-box .list .link-box .btn:hover {
    opacity: 0.7;
  }
}
.documents-box .list .link-box .pdf {
  background-color: #BD1016;
}
.documents-box .list .link-box .pdf::before {
  width: 22px;
  height: 27px;
  background-image: url(../images/pdf-icon-white.png);
}
.documents-box .list .link-box .download {
  background-color: #003399;
}
.documents-box .list .link-box .download::before {
  width: 22px;
  height: 19px;
  background-image: url(../images/download-icon-white.png);
}/*# sourceMappingURL=common.css.map */