@charset "UTF-8";
/*
  https://github.com/andy-piccalilli/modern-css-reset/blob/master/LICENSE
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

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

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

img,
picture {
  max-width: 100%;
}

picture {
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
/* ----------------------------------------------------------------
    Base
----------------------------------------------------------------- */
:root {
  font-size: 62.5%;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
li {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4 {
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
}

body {
  background: #fff;
  color: #222;
  font-family: "Noto Serif JP", sans-serif;
  font-feature-settings: "palt";
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.4222222222;
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 1.5rem;
  }
}

a {
  color: #222;
  text-decoration: underline;
  transition: 0.2s ease-in-out;
}
a[class] {
  text-decoration: none;
}
a:hover, a:active, a:focus {
  color: #157fc8;
  text-decoration: none;
}

button {
  cursor: pointer;
}

b,
em {
  color: #222;
  font-style: normal;
  font-weight: 700;
}

strong {
  color: #e83012;
  font-style: normal;
  font-weight: 700;
}

img {
  height: auto;
  vertical-align: bottom;
}

p {
  margin: 32px 0 0;
}
@media only screen and (max-width: 767px) {
  p {
    margin-top: 18px;
  }
}

ul,
ol,
dl {
  margin: 40px 0 0;
  padding: 0;
}
ul[class],
ol[class],
dl[class] {
  /* 既存のスタイルを残すためクラス指定時のみリセット */
  list-style: none;
}
@media only screen and (max-width: 767px) {
  ul,
  ol,
  dl {
    margin-top: 20px;
  }
}

dfn {
  font-style: normal;
}

dd {
  margin: 0;
}

table {
  border-collapse: collapse;
}

blockquote {
  margin: 0;
}

iframe {
  border: 0;
  margin: 0;
  padding: 0;
}

input,
select {
  font-size: 1.6rem;
  padding: 1px;
}

input[type=file] {
  width: 100%;
}

fieldset {
  border: 0;
  margin: 0;
}

select::-ms-expand {
  display: none;
}

/* ----------------------------------------------------------------
    Centering Content
----------------------------------------------------------------- */
/* ----------------------------------------------------------------
    Pseudo element (Block)
----------------------------------------------------------------- */
.panel-link_linktxt, .panel-step_txt::before, .panel-flow_inner::before, .panel-flow_inner::after, .list > li::before, .list-news dl > dd::before, .link_arrow:before, .link-txt::before, .link-anc:before, .hdg-l1::before, .hdg-l2::before, .h-toggle_btn::before, .h-toggle_btn::after, .h-cv > span::before {
  content: "";
  display: block;
}

/* ----------------------------------------------------------------
    Pseudo element (Inline Block)
----------------------------------------------------------------- */
.breadcrumb-list > li:before, .h-nav-list li > a::before, .h-nav-list li > a::after {
  content: "";
  display: inline-block;
} /* ----------------------------------------------------------------
    Header (.header and .h-*)
----------------------------------------------------------------- */
header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 45px;
  z-index: 1;
}
@media only screen and (max-width: 1000px) {
  header {
    padding: 8vw 4vw;
  }
}

@media only screen and (max-width: 1000px) {
  .logo > a {
    display: flex;
    align-items: center;
    width: 36vw;
  }
}

.h-nav-list {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  text-align: center;
}
.h-nav-list li {
  margin-left: 45px;
  list-style: none;
  font-size: 1.8rem;
}
.h-nav-list li:first-child {
  margin-left: 0;
}
.h-nav-list li > a {
  position: relative;
  display: inline-block;
  padding-top: 6px;
  padding-bottom: 12px;
  text-decoration: none;
  overflow: hidden;
}
.h-nav-list li > a::before, .h-nav-list li > a::after {
  position: absolute;
  bottom: 8px;
  width: 100%;
  height: 1px;
  transition: 0.6s ease-in-out;
}
.h-nav-list li > a::before {
  left: -180%;
  background: #e83012;
}
.h-nav-list li > a::after {
  left: 0;
  background: #222;
}
.h-nav-list li > a:hover, .h-nav-list li > a:active, .h-nav-list li > a:focus {
  color: #e83012;
}
.h-nav-list li > a:hover::before, .h-nav-list li > a:active::before, .h-nav-list li > a:focus::before {
  left: 0;
}
.h-nav-list li > a:hover::after, .h-nav-list li > a:active::after, .h-nav-list li > a:focus::after {
  left: 180%;
}
@media only screen and (max-width: 1000px) {
  .h-nav {
    display: none;
  }
}

.h-toggle_btn {
  display: none;
}
.h-toggle_content {
  display: flex;
  justify-content: center;
  align-items: center;
}
.h-toggle-nav {
  display: none;
}
@media only screen and (max-width: 1000px) {
  .h-toggle {
    position: fixed;
    display: block;
    top: 0;
    right: 0;
    width: 22vw;
    height: 22vw;
  }
  .h-toggle_btn {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    margin-left: auto;
    background: none;
    border: none;
    outline: none;
    z-index: 5;
  }
  .h-toggle_btn::before, .h-toggle_btn::after {
    position: absolute;
    left: 7vw;
    width: 8vw;
    height: 1px;
    background: #157fc8;
    transition: 0.3s ease-in-out;
  }
  .h-toggle_btn::before {
    top: 9.2vw;
  }
  .h-toggle_btn::after {
    top: 12vw;
  }
  .h-toggle_btn.open::before, .h-toggle_btn.open::after {
    top: 10vw;
  }
  .h-toggle_btn.open::before {
    transform: rotate(30deg);
  }
  .h-toggle_btn.open::after {
    transform: rotate(-30deg);
  }
  .h-toggle_txt {
    opacity: 0;
  }
  .h-toggle_content {
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 3;
    opacity: 0;
    transition: 0.6s ease-in-out;
    pointer-events: none;
  }
  .h-toggle_content.active {
    opacity: 1;
    pointer-events: auto;
  }
  .h-toggle-nav {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 40px;
    padding: 0 10vw;
  }
  .h-toggle-nav-list {
    text-align: center;
  }
  .h-toggle-nav-list > *:last-child {
    margin-bottom: 0;
  }
  .h-toggle-nav-list > li {
    margin: 0 0 30px 0;
  }
  .h-toggle-nav-list > li > a {
    padding: 4px 0.75em 10px 0.75em;
    font-size: 2rem;
  }
  .h-toggle-nav-list-child {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0;
  }
  .h-toggle-nav-list-child > li {
    margin: 0;
  }
  .h-toggle-nav-list-child > li > a {
    padding: 0 2vw;
    border-right: solid 1px #e2ebec;
    font-size: 1.2rem;
  }
  .h-toggle-nav-list-child > li > a::before, .h-toggle-nav-list-child > li > a::after {
    display: none;
  }
  .h-toggle-nav-list-child > li > *:first-child {
    border-left: solid 1px #e2ebec;
  }
}

.h-cv {
  display: inline-block;
  margin-left: 15px;
  padding: 23px 30px;
  background: #e83012;
  color: #fff;
  border-radius: 50px;
  border: solid 1px #fff;
  font-size: 1.8rem;
}
.h-cv > span {
  position: relative;
  display: inline-block;
  padding-left: 30px;
}
.h-cv > span::before {
  position: absolute;
  top: 50%;
  left: -8px;
  width: 25px;
  height: 25px;
  transform: translateY(-38%);
  background-image: url(/common/img/icon-catalog.svg);
  background-size: cover;
  filter: brightness(0) invert(1);
  transition: 0.2s ease-in-out;
}
.h-cv:hover, .h-cv:active, .h-cv:focus {
  border: solid 1px #e83012;
  background: #fff;
  color: #e83012;
}
.h-cv:hover > span::before, .h-cv:active > span::before, .h-cv:focus > span::before {
  filter: none;
}
@media only screen and (max-width: 1000px) {
  .h-cv {
    margin-left: 0;
  }
}

/* ----------------------------------------------------------------
    sitemap
----------------------------------------------------------------- */
footer {
  padding: 20px 5% 20px 5%;
  background: #fff;
}
@media only screen and (max-width: 767px) {
  footer {
    padding: 10.6vw 6.6vw 10.6vw 6.6vw;
  }
}

.sitemap {
  display: flex;
}
.sitemap ul {
  width: 26.3%;
  margin-bottom: 0;
  padding: 0 0 0 30px;
  border-left: 1px solid #157fc8;
  list-style: none;
}
.sitemap ul > li {
  margin: 0 0 10px 0;
}
.sitemap ul > li > a {
  font-size: 1.7rem;
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  .sitemap ul {
    width: 45.5%;
    padding: 0 0 0 4vw;
  }
  .sitemap ul > li > a {
    font-size: 1.2rem;
  }
}

.f-logo {
  max-width: 200px;
}

.f-copyright {
  display: inline-block;
  margin-top: 10px;
}

/* ----------------------------------------------------------------
    breadcrumb
----------------------------------------------------------------- */
.breadcrumb {
  width: 100%;
  margin-top: 40px;
  padding: 0 9.7%;
}
.breadcrumb-list {
  display: flex;
  margin-bottom: 0;
}
.breadcrumb-list *:first-child {
  margin-left: 0;
}
.breadcrumb-list *:first-child:before {
  display: none;
}
.breadcrumb-list > li {
  position: relative;
  margin-left: 25px;
}
.breadcrumb-list > li:before {
  position: absolute;
  top: 50%;
  left: -18px;
  width: 8px;
  height: 8px;
  border-top: solid 1px #e2ebec;
  border-right: solid 1px #e2ebec;
  transform: translateY(-50%) rotate(45deg);
}
.breadcrumb-list > li > a {
  text-decoration: none;
}
@media only screen and (max-width: 1000px) {
  .breadcrumb {
    padding: 0 20px;
  }
}

/* ----------------------------------------------------------------
    Content
----------------------------------------------------------------- */
.content-fluid {
  width: 100%;
  background: #fff;
}
.content-fluid.var-02 {
  background: #f1f8f9;
}
.content-inner {
  padding: 100px 0;
  padding-left: 15%;
  padding-right: 15%;
}
.content-inner > *:first-child {
  margin-top: 0;
}
@media only screen and (max-width: 1200px) {
  .content-inner {
    padding-left: 6.6vw;
    padding-right: 6.6vw;
  }
}

/* ----------------------------------------------------------------
    Hdg
----------------------------------------------------------------- */
.hdg-l1 {
  position: relative;
  margin: 20px 0 80px;
  padding: 0 12%;
  font-size: 6rem;
}
.hdg-l1::before {
  position: absolute;
  top: 0.8em;
  left: 0;
  width: 5.5vw;
  height: 2px;
  background: #157fc8;
  transform-origin: left center;
  transition: 0.4s ease-in-out;
}
@media only screen and (max-width: 767px) {
  .hdg-l1 {
    margin-bottom: 10vw;
    padding-left: 6.6vw;
    padding-right: 6.6vw;
    font-size: 3.6rem;
  }
  .hdg-l1::before {
    width: 4vw;
    left: 0;
    transform: scaleX(1);
  }
}

.hdg-l2 {
  position: relative;
  margin-top: 70px;
  padding-bottom: 40px;
  font-size: 4.4rem;
}
.hdg-l2::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 90px;
  height: 1px;
  background: #157fc8;
}
.hdg-l2_sub {
  display: block;
  margin-bottom: 10px 0 25px;
  font-size: 1.6rem;
  letter-spacing: 0;
}
@media only screen and (max-width: 767px) {
  .hdg-l2 {
    margin-top: 46px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    font-size: 2.2rem;
  }
  .hdg-l2::before {
    width: 60px;
  }
}

.hdg-l3 {
  margin-top: 70px;
  font-size: 3.6rem;
}
@media only screen and (max-width: 767px) {
  .hdg-l3 {
    margin-top: 46px;
    font-size: 2.2rem;
  }
}

/* ----------------------------------------------------------------
    Text
----------------------------------------------------------------- */
/* ----------------------------------------------------------------- */
.txt-lead {
  font-size: 2.6rem;
}
.txt-lead > b {
  color: #157fc8;
}
@media only screen and (max-width: 767px) {
  .txt-lead {
    font-size: 2rem;
  }
}

/* ----------------------------------------------------------------- */
.txt-note {
  margin-top: 20px;
  font-size: 1.4rem;
}
.txt-note_mark {
  display: inline-block;
  margin-right: 10px;
}
@media only screen and (max-width: 767px) {
  .txt-note {
    margin-top: 10px;
    font-size: 1.2rem;
  }
  .txt-note_mark {
    margin-right: 6px;
  }
}

/* ----------------------------------------------------------------
    Link
----------------------------------------------------------------- */
.link {
  position: relative;
  display: inline-block;
  padding-left: 60px;
  font-size: 1.8rem;
}
.link_arrow {
  position: absolute;
  top: 0.8em;
  left: 0;
  width: 40px;
  height: 1px;
  display: block;
  overflow: hidden;
}
.link_arrow:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 1px;
  background: #157fc8;
  transition: 0.4s ease-in-out;
  overflow: hidden;
}
.link:hover, .link:active, .link:focus {
  color: #157fc8;
}
.link:hover .link_arrow:before, .link:active .link_arrow:before, .link:focus .link_arrow:before {
  animation: arrow 1.2s linear infinite;
}
@media only screen and (max-width: 767px) {
  .link {
    padding-left: 35px;
    font-size: 1.2rem;
  }
  .link_arrow {
    width: 25px;
  }
}

@keyframes arrow {
  0% {
    width: 100%;
    left: auto;
    right: 0;
  }
  25% {
    width: 0;
    left: auto;
    right: 0;
  }
  26% {
    width: 0;
    left: 0;
    right: auto;
  }
  50% {
    width: 100%;
    left: 0;
    right: auto;
  }
  51% {
    width: 100%;
    right: 0;
    left: auto;
  }
  100% {
    width: 100%;
    right: 0;
    left: auto;
  }
}
/* ----------------------------------------------------------------- */
.link-txt {
  position: relative;
}
.link-txt::before {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: #222;
  transition: 0.2s ease-in-out;
}
.link-txt:hover:before, .link-txt:active:before, .link-txt:focus:before {
  opacity: 0;
}

/* ----------------------------------------------------------------- */
.link-anc {
  position: relative;
  display: inline-block;
  padding-left: 25px;
  font-size: 1.8rem;
}
.link-anc:before {
  position: absolute;
  top: 12px;
  left: 0;
  border: solid 7px transparent;
  border-top: solid 7px #157fc8;
  transition: 0.1s ease-in-out;
}
.link-anc:hover:before, .link-anc:active:before, .link-anc:focus:before {
  top: 15px;
}
@media only screen and (max-width: 767px) {
  .link-anc {
    font-size: 1.2rem;
  }
  .link-anc:before {
    top: 8px;
    border-width: 5px;
  }
  .link-anc:hover:before, .link-anc:active:before, .link-anc:focus:before {
    top: 10px;
  }
}

/* ----------------------------------------------------------------
    List
----------------------------------------------------------------- */
.list > li {
  position: relative;
  padding-left: 10px;
}
.list > li::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50px;
  background: #157fc8;
}
.list > li + li {
  margin-top: 10px;
}
.list > li:last-child {
  margin-bottom: 0;
}

/* ----------------------------------------------------------------- */
.list-num > li {
  display: flex;
}
.list-num > li + li {
  margin-top: 15px;
}
.list-num_item {
  margin-right: 15px;
}
@media only screen and (max-width: 767px) {
  .list-num > li + li {
    margin-top: 6px;
  }
}

/* ----------------------------------------------------------------- */
.list-def {
  margin-top: 40px;
}
.list-def > *:first-child {
  margin-top: 0;
}
.list-def_title {
  margin-top: 20px;
  font-size: 2rem;
}
.list-def_title > b {
  color: #157fc8;
}
.list-def_desc {
  margin-top: 10px;
}
@media only screen and (max-width: 767px) {
  .list-def {
    margin-top: 20px;
  }
  .list-def_title {
    margin-top: 14px;
    font-size: 1.8rem;
  }
  .list-def_desc {
    margin-top: 6px;
  }
}

/* ----------------------------------------------------------------- */
.list-link._row {
  display: flex;
  flex-wrap: wrap;
  margin: 40px -15px -15px 0;
}
.list-link._row > li {
  margin-right: 15px;
}
.list-link > li {
  margin: 0 0 15px;
}
@media only screen and (max-width: 767px) {
  .list-link._row {
    flex-direction: column;
  }
  .list-link._row > li {
    margin-right: 0;
  }
}

/* ----------------------------------------------------------------- */
.list-note {
  margin-top: 20px;
}
.list-note > li {
  display: flex;
  font-size: 1.4rem;
}
.list-note > li + li {
  margin-top: 10px;
}
.list-note_mark {
  display: inline-block;
  margin-right: 10px;
}
@media only screen and (max-width: 767px) {
  .list-note {
    margin-top: 10px;
  }
  .list-note > li {
    font-size: 1.2rem;
  }
  .list-note > li + li {
    margin-top: 6px;
  }
  .list-note_mark {
    margin-right: 6px;
  }
}

/* ----------------------------------------------------------------- */
.list-news *:last-child {
  margin-bottom: 0;
}
.list-news dl {
  display: flex;
  margin: 0 0 20px;
}
.list-news dl > dt,
.list-news dl > dd {
  display: inline-block;
}
.list-news dl > dt {
  width: 130px;
  font-size: 1.4rem;
  line-height: 2;
}
.list-news dl > dd {
  position: relative;
  padding-left: 60px;
  font-size: 1.8rem;
}
.list-news dl > dd::before {
  position: absolute;
  top: 14px;
  left: 0;
  width: 40px;
  height: 1px;
  background: #157fc8;
  transition: 0.4s ease-in-out;
}
@media only screen and (max-width: 767px) {
  .list-news {
    margin-bottom: 0;
  }
  .list-news dl {
    display: block;
  }
  .list-news dl > dt {
    width: 100%;
    font-size: 1.2rem;
    line-height: 2;
  }
  .list-news dl > dd {
    padding-left: 0;
    font-size: 1.4rem;
  }
  .list-news dl > dd::before {
    display: none;
  }
}

/* ----------------------------------------------------------------- */
.list-faq {
  margin-top: 70px;
}
.list-faq > *:first-child {
  margin-top: 0;
}
.list-faq > dl + dl {
  padding-top: 40px;
  border-top: solid 1px #e2ebec;
}
.list-faq > dl dt,
.list-faq > dl dd {
  display: flex;
  align-items: flex-start;
}
.list-faq > dl dt > .list-faq_mark,
.list-faq > dl dd > .list-faq_mark {
  font-size: 6rem;
  line-height: 0.95;
}
.list-faq > dl dt > .list-faq_txt,
.list-faq > dl dd > .list-faq_txt {
  margin: 10px 0 0 10px;
}
.list-faq > dl dt > .list-faq_txt > *:first-child,
.list-faq > dl dd > .list-faq_txt > *:first-child {
  margin-top: 0;
}
.list-faq > dl dt > .list-faq_mark {
  color: #4d4d4d;
}
.list-faq > dl dt > .list-faq_txt {
  font-size: 2.8rem;
  font-weight: 700;
}
.list-faq > dl dd {
  margin-top: 30px;
}
.list-faq > dl dd > .list-faq_mark {
  color: #e83012;
}
@media only screen and (max-width: 767px) {
  .list-faq {
    margin-top: 46px;
  }
  .list-faq > dl + dl {
    padding-top: 20px;
  }
  .list-faq > dl dt > .list-faq_mark,
  .list-faq > dl dd > .list-faq_mark {
    font-size: 3rem;
  }
  .list-faq > dl dt > .list-faq_txt,
  .list-faq > dl dd > .list-faq_txt {
    margin-top: 0;
  }
  .list-faq > dl dt > .list-faq_txt {
    font-size: 2rem;
  }
}

/* ----------------------------------------------------------------
    btn
----------------------------------------------------------------- */
.btn {
  position: relative;
  display: inline-block;
  padding: 5px 27px;
  border: 1px solid #222;
  border-radius: 200px;
  font-size: 1.8rem;
  transition: 0.2s ease-in-out;
}
.btn:hover, .btn:active, .btn:focus {
  padding-left: 2em;
  padding-right: 2em;
  background: #e83012;
  border-color: #e83012;
  color: #fff;
}
.btn-lyt {
  text-align: center;
}

/* ----------------------------------------------------------------- */
.btn-cv {
  text-align: center;
}
.btn-cv > a {
  display: inline-block;
  padding: 7px 40px;
  border: solid 1px #fff;
  border-radius: 50px;
  background: #e83012;
  color: #fff;
  font-size: 3rem;
  text-decoration: none;
  transition: 0.2s ease-in-out;
}
.btn-cv > a:hover, .btn-cv > a:active, .btn-cv > a:focus {
  background: #fff;
  border-color: #e83012;
  color: #e83012;
}
@media only screen and (max-width: 767px) {
  .btn-cv > a {
    width: 100%;
    padding: 20px 40px;
    font-size: 2rem;
  }
}

/* ----------------------------------------------------------------
    Media
----------------------------------------------------------------- */
.media {
  margin-top: 70px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .media {
    margin-top: 46px;
  }
}

/* ----------------------------------------------------------------- */
.media-lyt {
  display: flex;
  justify-content: space-between;
  margin-top: 70px;
}
.media-lyt_desc {
  margin-right: 20px;
}
.media-lyt_desc > *:first-child {
  margin-top: 0;
}
.media-lyt_img {
  flex-shrink: 0;
}
.media-lyt._left {
  flex-direction: row-reverse;
  justify-content: flex-end;
}
.media-lyt._left .media-lyt_desc {
  margin: 0 0 0 20px;
}
@media only screen and (max-width: 767px) {
  .media-lyt {
    flex-direction: column;
    margin-top: 46px;
  }
  .media-lyt_desc {
    margin: 0;
  }
  .media-lyt_img {
    margin-top: 20px;
    text-align: center;
  }
  .media-lyt._left {
    flex-direction: column;
  }
  .media-lyt._left .media-lyt_desc {
    margin: 0;
  }
}

/* ----------------------------------------------------------------
    Box
----------------------------------------------------------------- */
.box {
  margin-top: 70px;
  padding: 40px 70px;
  background: #f1f8f9;
}
.box > *:first-child {
  margin-top: 0;
}
@media only screen and (max-width: 767px) {
  .box {
    margin-top: 46px;
    padding: 8vw 10vw;
  }
}

/* ----------------------------------------------------------------
    Layout
----------------------------------------------------------------- */
.lyt {
  display: flex;
  flex-wrap: wrap;
  margin-top: 70px;
}
.lyt-col > *:first-child {
  margin-top: 0;
}
.lyt.col-02 {
  gap: 30px 10%;
}
.lyt.col-02 .lyt-col {
  width: 45%;
}
.lyt.col-03 {
  gap: 30px 5%;
}
.lyt.col-03 .lyt-col {
  width: 30%;
}
@media only screen and (max-width: 767px) {
  .lyt {
    flex-direction: column;
    margin-top: 46px;
  }
  .lyt.col-02, .lyt.col-03 {
    gap: 15px;
  }
  .lyt.col-02 .lyt-col, .lyt.col-03 .lyt-col {
    width: 100%;
  }
}

/* ----------------------------------------------------------------
    Panel
----------------------------------------------------------------- */
/* ----------------------------------------------------------------- */
.panel-link {
  margin-top: 70px;
}
.panel-link + .panel-link {
  margin-top: 30px;
}
.panel-link_link {
  display: flex;
  justify-content: space-between;
  border: solid 1px #e2ebec;
}
.panel-link_link > *:first-child {
  margin-top: 0;
}
.panel-link_link:hover, .panel-link_link:active, .panel-link_link:focus {
  border: solid 1px #157fc8;
}
.panel-link_link:hover .link_arrow:before, .panel-link_link:active .link_arrow:before, .panel-link_link:focus .link_arrow:before {
  animation: arrow 1.2s linear infinite;
}
.panel-link_link:hover .panel-link_title > b, .panel-link_link:active .panel-link_title > b, .panel-link_link:focus .panel-link_title > b {
  color: #157fc8;
  transition: 0.2s ease-in-out;
}
.panel-link_link:hover .panel-link_img > img, .panel-link_link:active .panel-link_img > img, .panel-link_link:focus .panel-link_img > img {
  transform: scale(1.1, 1.1);
}
.panel-link_desc {
  position: relative;
  width: 100%;
  padding: 20px 20px 50px;
}
.panel-link_desc > *:first-child {
  margin-top: 0;
}
.panel-link_title {
  font-size: 2.5rem;
}
.panel-link_linktxt {
  position: absolute;
  bottom: 20px;
  right: 20px;
}
.panel-link_img {
  flex-shrink: 0;
  max-width: 400px;
  overflow: hidden;
}
.panel-link_img > img {
  transition: 0.5s all;
}
@media only screen and (max-width: 767px) {
  .panel-link {
    margin-top: 46px;
  }
  .panel-link_link {
    flex-direction: column;
  }
  .panel-link_title {
    font-size: 2rem;
  }
  .panel-link_linktxt {
    bottom: 10px;
    right: 10px;
  }
  .panel-link_img {
    max-width: 100%;
  }
}

/* ----------------------------------------------------------------- */
.panel-linklist {
  margin-top: 70px;
}
.panel-linklist.col-03 .panel-linklist_inner {
  gap: 80px 3.5%;
}
.panel-linklist.col-03 .panel-linklist_inner > li {
  width: 31%;
}
.panel-linklist.col-04 .panel-linklist_inner {
  gap: 10px 1%;
}
.panel-linklist.col-04 .panel-linklist_inner > li {
  width: 24.25%;
}
.panel-linklist_inner {
  display: flex;
  flex-wrap: wrap;
}
.panel-linklist_link {
  display: flex;
  flex-direction: column-reverse;
  height: 100%;
  border: solid 1px #e2ebec;
}
.panel-linklist_link > *:first-child {
  margin-top: 0;
}
.panel-linklist_link:hover, .panel-linklist_link:active, .panel-linklist_link:focus {
  border: solid 1px #157fc8;
}
.panel-linklist_link:hover .link_arrow:before, .panel-linklist_link:active .link_arrow:before, .panel-linklist_link:focus .link_arrow:before {
  animation: arrow 1.2s linear infinite;
}
.panel-linklist_link:hover .panel-linklist_title > b, .panel-linklist_link:active .panel-linklist_title > b, .panel-linklist_link:focus .panel-linklist_title > b {
  color: #157fc8;
  transition: 0.2s ease-in-out;
}
.panel-linklist_link:hover .panel-linklist_img > img, .panel-linklist_link:active .panel-linklist_img > img, .panel-linklist_link:focus .panel-linklist_img > img {
  transform: scale(1.1, 1.1);
}
.panel-linklist_desc {
  position: relative;
  padding: 40px 20px;
}
.panel-linklist_desc > *:first-child {
  margin-top: 0;
}
.panel-linklist_title {
  text-align: center;
  font-size: 2.8rem;
}
.panel-linklist_img {
  overflow: hidden;
}
.panel-linklist_img > img {
  width: 100%;
  transition: 0.5s all;
}
@media only screen and (max-width: 767px) {
  .panel-linklist.col-03 .panel-linklist_inner, .panel-linklist.col-04 .panel-linklist_inner {
    gap: 5px 2%;
  }
  .panel-linklist.col-03 .panel-linklist_inner > li, .panel-linklist.col-04 .panel-linklist_inner > li {
    width: 49%;
  }
  .panel-linklist_desc {
    padding: 20px 10px;
  }
  .panel-linklist_title {
    font-size: 1.4rem;
  }
}

/* ----------------------------------------------------------------- */
.panel-step {
  margin-top: 70px;
}
.panel-step_inner > *:first-child {
  margin-top: 0;
}
.panel-step_inner + .panel-step_inner {
  margin-top: 70px;
}
.panel-step_title {
  display: flex;
  align-items: flex-end;
}
.panel-step_num {
  margin-right: 10px;
  padding: 3px 8px;
  color: #f1f8f9;
  font-size: 20rem;
  font-weight: 700;
  line-height: 0.95;
}
.panel-step_txt {
  position: relative;
  padding-bottom: 20px;
  font-size: 4rem;
}
.panel-step_txt::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 90px;
  height: 1px;
  background: #157fc8;
}
.panel-step_desc {
  margin-top: 70px;
}
.panel-step_desc > *:first-child {
  margin-top: 0;
}
@media only screen and (max-width: 767px) {
  .panel-step {
    margin-top: 46px;
  }
  .panel-step_num {
    font-size: 9rem;
  }
  .panel-step_txt {
    padding-bottom: 10px;
    font-size: 2.5rem;
  }
  .panel-step_desc {
    margin-top: 40px;
  }
}

/* ----------------------------------------------------------------- */
.panel-flow {
  margin-top: 70px;
}
.panel-flow_inner {
  position: relative;
  padding: 30px 40px;
  border: solid 1px #e2ebec;
}
.panel-flow_inner:first-child::before, .panel-flow_inner:first-child::after {
  display: none;
}
.panel-flow_inner > *:first-child {
  margin-top: 0;
}
.panel-flow_inner::before, .panel-flow_inner::after {
  position: absolute;
  left: 50%;
}
.panel-flow_inner::before {
  top: -61px;
  width: 25px;
  height: 25px;
  background: #4599c0;
  transform: translateX(-50%);
}
.panel-flow_inner::after {
  top: -43px;
  border: solid 30px transparent;
  border-top: solid 25px #4599c0;
  transform: translateX(-50%);
}
.panel-flow_inner + .panel-flow_inner {
  margin-top: 80px;
}
.panel-flow_title {
  font-size: 2rem;
}
.panel-flow_title > b {
  color: #157fc8;
}
.txt-lead + .panel-flow {
  margin-top: 15px;
}
@media only screen and (max-width: 767px) {
  .panel-flow {
    margin-top: 46px;
  }
  .panel-flow_inner::before {
    top: -37px;
    width: 15px;
    height: 15px;
  }
  .panel-flow_inner::after {
    top: -28px;
    border: solid 18px transparent;
    border-top: solid 14px #157fc8;
  }
  .panel-flow_inner + .panel-flow_inner {
    margin-top: 50px;
  }
}

/* ----------------------------------------------------------------- */
.panel-cv {
  margin-top: 100px;
}
.panel-cv_inner {
  display: flex;
  flex-direction: row-reverse;
}
.panel-cv_desc {
  margin-left: 30px;
}
.panel-cv_desc > *:first-child {
  margin-top: 0;
}
.panel-cv_title {
  font-size: 2.6rem;
}
.panel-cv_img {
  flex-shrink: 0;
}
.panel-cv_btn {
  text-align: center;
}
.panel-cv_btn > a {
  display: inline-block;
  padding: 7px 40px;
  border: solid 1px #fff;
  border-radius: 50px;
  background: #e83012;
  color: #fff;
  font-size: 3rem;
  text-decoration: none;
  transition: 0.2s ease-in-out;
}
.panel-cv_btn > a:hover, .panel-cv_btn > a:active, .panel-cv_btn > a:focus {
  background: #fff;
  border-color: #e83012;
  color: #e83012;
}
@media only screen and (max-width: 767px) {
  .panel-cv {
    margin-top: 60px;
  }
  .panel-cv_inner {
    flex-direction: column;
  }
  .panel-cv_desc {
    margin: 0;
  }
  .panel-cv_img {
    margin-top: 20px;
  }
  .panel-cv_btn > a {
    width: 100%;
    padding: 20px 40px;
    font-size: 2rem;
  }
}

/* ----------------------------------------------------------------
    Table
----------------------------------------------------------------- */
/* ----------------------------------------------------------------- */
.table {
  margin-top: 70px;
}
.table table {
  width: 100%;
}
.table thead td {
  background: #f1f8f9;
}
.table th,
.table td {
  padding: 20px;
  border: solid 1px #e2ebec;
}
.table th > *:first-child,
.table td > *:first-child {
  margin-top: 0;
}
.table th {
  background: #f1f8f9;
}
.table td > *:first-child {
  margin-top: 0;
}
.table._scroll {
  overflow-x: auto;
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  .table {
    margin-top: 46px;
  }
}

/* ----------------------------------------------------------------- */
.table-02 {
  margin-top: 70px;
}
.table-02 table {
  width: 100%;
}
.table-02 th,
.table-02 td {
  padding: 20px;
  border: solid 1px #e2ebec;
}
.table-02 th {
  background: #f1f8f9;
}
.table-02 td > *:first-child {
  margin-top: 0;
}
@media only screen and (max-width: 767px) {
  .table-02 {
    margin-top: 46px;
  }
  .table-02 tr {
    display: flex;
    flex-direction: column;
  }
}

/* ----------------------------------------------------------------- */
.break {
  display: block;
}

/* ----------------------------------------------------------------- */
.ta-l {
  text-align: left !important;
}

.ta-c {
  text-align: center !important;
}

.ta-r {
  text-align: right !important;
}

/* ----------------------------------------------------------------- */
.w-05 {
  width: 5% !important;
}

.w-10 {
  width: 10% !important;
}

.w-15 {
  width: 15% !important;
}

.w-20 {
  width: 20% !important;
}

.w-25 {
  width: 25% !important;
}

.w-30 {
  width: 30% !important;
}

.w-35 {
  width: 35% !important;
}

.w-40 {
  width: 40% !important;
}

.w-45 {
  width: 45% !important;
}

.w-50 {
  width: 50% !important;
}

.w-55 {
  width: 55% !important;
}

.w-60 {
  width: 60% !important;
}

.w-65 {
  width: 65% !important;
}

.w-70 {
  width: 70% !important;
}

.w-75 {
  width: 75% !important;
}

.w-80 {
  width: 80% !important;
}

.w-85 {
  width: 85% !important;
}

.w-90 {
  width: 90% !important;
}

.w-95 {
  width: 95% !important;
}

.w-100 {
  width: 100% !important;
}

/* ----------------------------------------------------------------- */
._red {
  color: #e83012 !important;
}