@charset "UTF-8";
/* ---------------------------------------
  基本情報
-----------------------------------------*/
html {
  overflow-y: scroll;
  font-size: 62.5%;
}
@media screen and (max-width: 1280px) {
  html {
    font-size: 0.7142857143vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body, h1, h2, h3, h4, h5, h6, p, address,
ul, ol, li, dl, dt, dd,
table, th, td, img, form {
  margin: 0;
  padding: 0;
  border: none;
  line-height: 100%;
  list-style-type: none;
  font-style: normal;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  text-align: left;
  color: #252B30;
  word-break: break-word;
}

input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #252B30;
  font-weight: 500;
}

textarea {
  resize: vertical;
}

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

a {
  text-decoration: none;
  color: inherit;
  outline: none;
}

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

*, *:after, *:before {
  box-sizing: border-box;
}

/* responsive
--------------------------------*/
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
/* base
--------------------------------*/
p, dt, dd, li, th, td,
input, button, textarea, select {
  font-size: 1.5rem;
  line-height: 2.266666;
}
@media screen and (max-width: 767px) {
  p, dt, dd, li, th, td,
  input, button, textarea, select {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}

.aligncenter {
  display: block;
  margin: 0 auto;
}

.alignright {
  float: right;
}

.alignleft {
  float: left;
}

.tac {
  text-align: center !important;
}

.tar {
  text-align: right !important;
}

.tal {
  text-align: left !important;
}

@media screen and (min-width: 768px) {
  .tel-link {
    pointer-events: none;
  }
}

@media screen and (max-width: 767px) {
  body {
    -webkit-text-size-adjust: 100%;
  }
  img {
    width: 100%;
  }
  .sp-tac {
    text-align: center !important;
  }
  .sp-tar {
    text-align: right !important;
  }
  .sp-tal {
    text-align: left !important;
  }
}
/* ---------------------------------------------
  レイアウト
-----------------------------------------------*/
.l-wrap {
  max-width: 120rem;
  width: calc(100% - 4rem);
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .l-wrap {
    width: calc(100% - 3rem);
  }
}
.l-wrap.-s {
  max-width: 110rem;
}
.l-wrap.-ss {
  max-width: 90rem;
}

.l-container {
  overflow: hidden;
}

/* ---------------------------------------------
  装飾
-----------------------------------------------*/
.u-bold {
  font-weight: 700;
}

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

.u-english {
  font-family: "Roboto", sans-serif;
}

.u-blue {
  color: #006CB8;
}

.u-point span {
  position: relative;
}
.u-point span::before {
  content: "";
  position: absolute;
  top: -0.3rem;
  transform: translateX(-50%);
  left: 50%;
  width: 0.6rem;
  height: 0.6rem;
  background-color: #252B30;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .u-point span::before {
    width: 0.4rem;
    height: 0.4rem;
  }
}
.u-point.-blue span::before {
  background-color: #006CB8;
}
.u-point.-s span::before {
  width: 0.3rem;
  height: 0.3rem;
}

/* ---------------------------------------------
  パーツ
-----------------------------------------------*/
/* ボタン
--------------------------------*/
.c-btn_link {
  width: 25rem;
  height: 5.3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #009ADC;
  border: 1px solid #009ADC;
  border-radius: 3.6rem;
  color: #fff;
  transition: 0.3s;
  position: relative;
}
.c-btn_link::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1.9rem;
  width: 1.4rem;
  height: 1.4rem;
  background-color: #fff;
  border-radius: 50%;
  transition: 0.3s;
}
.c-btn_link::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2.3rem;
  width: 0.5rem;
  height: 1rem;
  mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-image: url(../img/common/arrow_right.svg);
  background-color: #009ADC;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .c-btn_link.-sp-center {
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) {
  .c-btn_link:hover {
    color: #009ADC;
    background-color: #fff;
  }
  .c-btn_link:hover::before {
    background-color: #009ADC;
  }
  .c-btn_link:hover::after {
    background-color: #fff;
  }
}
.c-btn_link.-orange {
  background-color: #FEAA2D;
  border: 1px solid #FEAA2D;
}
.c-btn_link.-orange::after {
  background-color: #FEAA2D;
}
@media screen and (min-width: 768px) {
  .c-btn_link.-orange:hover {
    color: #FEAA2D;
    background-color: #fff;
  }
  .c-btn_link.-orange:hover::before {
    background-color: #FEAA2D;
  }
  .c-btn_link.-orange:hover::after {
    background-color: #fff;
  }
}
.c-btn_link.-orange02 {
  border: 2px solid #FEAA2D;
  background-color: #fff;
  color: #FEAA2D;
}
.c-btn_link.-orange02::before {
  background-color: #FEAA2D;
}
.c-btn_link.-orange02::after {
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .c-btn_link.-orange02:hover {
    background-color: #FEAA2D;
    color: #fff;
  }
  .c-btn_link.-orange02:hover::before {
    background-color: #fff;
  }
  .c-btn_link.-orange02:hover::after {
    background-color: #FEAA2D;
  }
}
.c-btn_link.-blue03 {
  background-color: #0699D9;
  border: 1px solid #0699D9;
}
.c-btn_link.-blue03::after {
  background-color: #0699D9;
}
@media screen and (min-width: 768px) {
  .c-btn_link.-blue03:hover {
    background-color: #fff;
    color: #0699D9;
  }
  .c-btn_link.-blue03:hover::before {
    background-color: #0699D9;
  }
  .c-btn_link.-blue03:hover::after {
    background-color: #fff;
  }
}
.c-btn_link.-white {
  background-color: #fff;
  border: 1px solid #fff;
  color: #0699D9;
}
.c-btn_link.-white::before {
  background-color: #0699D9;
}
.c-btn_link.-white::after {
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .c-btn_link.-white:hover {
    background-color: #0699D9;
    color: #fff;
  }
  .c-btn_link.-white:hover::before {
    background-color: #fff;
  }
  .c-btn_link.-white:hover::after {
    background-color: #0699D9;
  }
}
.c-btn_link.-l {
  width: 33.4rem;
  height: 5.3rem;
  justify-content: flex-start;
  padding-left: 2.6rem;
}
.c-btn_link.-ll {
  width: 33.6rem;
  height: 6rem;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .c-btn_link.-ll {
    width: 26rem;
    height: 5.3rem;
    font-size: 1.5rem;
  }
  .c-btn_link.-ll::before {
    right: 1.2rem;
  }
  .c-btn_link.-ll::after {
    right: 1.6rem;
  }
}
.c-btn_link.-s {
  width: 20rem;
  height: 4.2rem;
}
.c-btn_link.-center {
  margin: 0 auto;
}

.c-link_txt {
  display: inline-block;
  padding-left: 2.5rem;
  transition: 0.3s;
  position: relative;
}
.c-link_txt::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 1.4rem;
  height: 1.4rem;
  background-color: #0699D9;
  border-radius: 50%;
  transition: 0.3s;
}
.c-link_txt::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0.4rem;
  width: 0.5rem;
  height: 1rem;
  mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-image: url(../img/common/arrow_right.svg);
  background-color: #fff;
  transition: 0.3s;
}
.c-link_txt:hover {
  color: #0699D9;
}
.c-link.-center {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-link.-sp-center {
    text-align: center;
  }
}

/* タイトル
--------------------------------*/
.c-secttl-box .c-secsubttl {
  font-size: 1.8rem;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: #006CB8;
  line-height: 1.78571;
}
@media screen and (max-width: 767px) {
  .c-secttl-box .c-secsubttl {
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    text-align: center;
  }
}
.c-secttl-box .c-secsubttl.-l {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .c-secttl-box .c-secsubttl.-l {
    font-size: 1.6rem;
  }
}
.c-secttl-box .c-secsubttl.-ll {
  font-size: 2.7rem;
}
@media screen and (max-width: 767px) {
  .c-secttl-box .c-secsubttl.-ll {
    font-size: 2rem;
  }
}
.c-secttl-box .c-secsubttl.-letter100 {
  letter-spacing: 0.1em;
}
.c-secttl-box .c-secsubttl.-black {
  color: #252B30;
}
.c-secttl-box .c-secttl {
  margin-top: 1rem;
  line-height: 1.78571;
  font-size: 2.8rem;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: #006CB8;
}
@media screen and (max-width: 767px) {
  .c-secttl-box .c-secttl {
    margin-top: 0.5rem;
    font-size: 1.8rem;
    text-align: center;
    line-height: 1.7;
    letter-spacing: 0.1em;
  }
}
.c-secttl-box .c-secttl.-l {
  font-size: 3.7rem;
}
@media screen and (max-width: 767px) {
  .c-secttl-box .c-secttl.-l {
    font-size: 2.4rem;
  }
}
.c-secttl-box .c-secttl.-letter100 {
  letter-spacing: 0.1em;
}
.c-secttl-box .c-secttl.-black {
  color: #252B30;
}
.c-secttl-box .c-secttl.-normal {
  font-weight: 500;
}
.c-secttl-box .c-secttl.-mt0 {
  margin-top: 0;
}
.c-secttl-box .c-secttl.-icon {
  position: relative;
  display: inline-block;
  padding: 0 3rem;
}
.c-secttl-box .c-secttl.-icon::before {
  content: "";
  position: absolute;
  bottom: 1rem;
  left: 0;
  width: 2rem;
  height: 2rem;
  background: url(../img/common/icon_ttl_left.svg) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .c-secttl-box .c-secttl.-icon::before {
    width: 3rem;
    height: 3rem;
    left: 1rem;
  }
}
.c-secttl-box .c-secttl.-icon::after {
  content: "";
  position: absolute;
  bottom: 1rem;
  right: 0;
  width: 2rem;
  height: 2rem;
  background: url(../img/common/icon_ttl_right.svg) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .c-secttl-box .c-secttl.-icon::after {
    width: 3rem;
    height: 3rem;
    right: 0;
    bottom: 0.5rem;
  }
}
.c-secttl-box .c-secttl .num {
  font-size: 5.8rem;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.05em;
  margin-left: 1rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .c-secttl-box .c-secttl .num {
    font-size: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .c-secttl-box .c-secttl .-sp-l {
    font-size: 2.8rem;
    letter-spacing: 0;
  }
}
.c-secttl-box.-center {
  text-align: center;
}
.c-secttl-box.-center * {
  text-align: center;
}
.c-secttl-box.-white * {
  color: #fff;
}
.c-secttl-box + .txt {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .c-secttl-box + .txt {
    margin-top: 2rem;
  }
}

.c-ttl01 {
  font-size: 2.8rem;
  letter-spacing: 0.2em;
  font-weight: 700;
}

/* アンカーリスト
--------------------------------*/
.c-anchor-list {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
@media screen and (max-width: 767px) {
  .c-anchor-list {
    flex-direction: column;
    align-items: flex-start;
    width: 12rem;
    margin: 0 auto;
    gap: 1rem;
  }
  .c-anchor-list.-sp-two {
    width: 27rem;
    flex-wrap: wrap;
    flex-direction: row;
  }
  .c-anchor-list.-sp-two .c-anchor-list_item {
    width: calc(50% - 0.5rem);
  }
}
.c-anchor-list_item a {
  padding-left: 2.4rem;
  display: block;
  position: relative;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-anchor-list_item a:hover {
    color: #009ADC;
  }
}
.c-anchor-list_item a::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 1.4rem;
  height: 1.4rem;
  background-color: #0699D9;
  border-radius: 50%;
  transition: 0.3s;
}
.c-anchor-list_item a::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0.4rem;
  width: 0.5rem;
  height: 1rem;
  mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-image: url(../img/common/arrow_right.svg);
  background-color: #fff;
  border-radius: 50%;
  transition: 0.3s;
}

.c-breadcrumb .list {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb .list {
    overflow-x: scroll;
    padding: 0 1.5rem 0.5rem;
    width: calc(100% + 3rem);
    margin-left: -1.5rem;
  }
}
.c-breadcrumb .list_item {
  font-size: 1.4rem;
  color: #006CB8;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb .list_item {
    white-space: nowrap;
  }
}
.c-breadcrumb .list_item_link {
  font-size: 1.4rem;
  color: #5C5C5C;
  text-decoration: underline;
  padding-right: 1rem;
  margin-right: 1rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb .list_item_link {
    white-space: nowrap;
  }
}
.c-breadcrumb .list_item_link::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 0.4rem;
  height: 1px;
  background-color: #5C5C5C;
}

.c-modal_img {
  position: relative;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .c-modal_img:hover::after {
    transform: translate(-50%, -50%) scale(1.1);
  }
}
.c-modal_img::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
.c-modal_img::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  width: 3.6rem;
  height: 3.6rem;
  transition: 0.3s;
  background: url(../img/common/icon_modal_search.svg) no-repeat center center/contain;
}

.modal-section .modal-overlay {
  background-color: rgba(76, 76, 76, 0.4);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.modal-section .modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.modal-section .modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100001;
  max-width: 90rem;
  border: 1px solid #707070;
  box-shadow: 0 0 0 3rem #fff;
  width: 100%;
  height: auto;
  display: none;
}
@media screen and (max-width: 767px) {
  .modal-section .modal {
    box-shadow: 0 0 0 1rem #fff;
  }
}
.modal-section .modal.-s {
  max-width: 46rem;
}
@media screen and (max-width: 767px) {
  .modal-section .modal {
    width: calc(100% - 6rem);
  }
}
.modal-section .modal.is-open {
  display: block;
}
.modal-section .modal_close {
  position: absolute;
  top: -5rem;
  right: -5rem;
  width: 4rem;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .modal-section .modal_close {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .modal-section .modal_close:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .modal-section .modal_close {
    right: -2.5rem;
    top: -2.5rem;
  }
}
.modal-section .modal_inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

.c-present {
  margin-top: 2rem;
  width: 57.5rem;
}
@media screen and (max-width: 767px) {
  .c-present {
    margin-top: 2.5rem;
    width: 100%;
  }
}
.c-present .item {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .c-present .item {
    display: block;
  }
}
.c-present .item dt {
  background-color: #F5990E;
  border-radius: 1rem 0 0 1rem;
  font-size: 2.5rem;
  letter-spacing: 0.08em;
  color: #fff;
  line-height: 1.2;
  height: 10.8rem;
  width: 13.3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .c-present .item dt {
    width: 100%;
    height: auto;
    text-align: center;
    display: block;
    font-size: 1.7rem;
    padding: 1rem 0;
    border-radius: 1rem 1rem 0 0;
  }
}
.c-present .item dt .-s {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .c-present .item dt .-s {
    font-size: 1.7rem;
  }
}
.c-present .item dd {
  background-color: #FEAA2D;
  height: 10.8rem;
  flex: 1;
  border-radius: 0 1rem 1rem 0;
  padding-left: 2.2rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .c-present .item dd {
    height: auto;
    border-radius: 0 0 1rem 1rem;
    padding: 1.5rem 1.3rem 1.5rem 2rem;
  }
}
.c-present .item dd ol {
  padding-left: 2rem;
}
.c-present .item dd ol li {
  list-style-type: decimal;
  font-size: 2.1rem;
  letter-spacing: 0.08em;
  color: #fff;
  line-height: 1.238;
}
.c-present .item dd ol li:nth-child(n+2) {
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .c-present .item dd ol li {
    font-size: 1.6rem;
  }
}
.c-present .item dd ol li .-s {
  font-size: 1.4rem;
  margin-left: 1rem;
}
@media screen and (max-width: 767px) {
  .c-present .item dd ol li .-s {
    font-size: 1.2rem;
  }
}

/* ---------------------------------------------
  header
-----------------------------------------------*/
.l-header {
  position: fixed;
  z-index: 9999;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .l-header {
    height: 6rem;
  }
}
.l-header.-recruit {
  background-color: #E3F5FD;
}
.l-header_inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0.95rem 2rem 2rem;
  max-width: 144rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-header_inner {
    height: 100%;
    align-items: center;
    padding: 0.8rem 1.5rem 1rem;
  }
}
.l-header_left .txt {
  font-size: 1.2rem;
  letter-spacing: 0.08em;
}
.l-header_left .logo {
  margin-top: 1.5rem;
  max-width: 32.6rem;
}
@media screen and (max-width: 767px) {
  .l-header_left .logo {
    max-width: 18rem;
    margin-top: 0;
  }
}
.l-header_left-top {
  transition: 0.3s;
}
.l-header_left-top.is-close {
  transform: translateY(-5rem);
}
.l-header_left-bottom {
  transition: 0.3s;
  opacity: 0;
  position: absolute;
  transform: translateY(5rem);
  pointer-events: none;
}
.l-header_left-bottom.is-active {
  pointer-events: auto;
  z-index: 1;
  opacity: 1;
  top: 50%;
  transform: translateY(-50%);
}
.l-header_right .menu {
  margin-top: 1.5rem;
}
.l-header_right .menu .list {
  display: flex;
  justify-content: flex-end;
  gap: 3.7rem;
}
.l-header_right .menu .list_item {
  position: relative;
}
.l-header_right .menu .list_item_link {
  letter-spacing: 0.08em;
  transition: 0.3s;
}
.l-header_right .menu .list_item_link.has-child {
  padding-right: 1.6rem;
  display: block;
  position: relative;
  z-index: 2;
}
.l-header_right .menu .list_item_link.has-child::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 1rem;
  height: 0.6rem;
  mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-image: url(../img/common/arrow_bottom.svg);
  background-color: #252B30;
}
.l-header_right .menu .list_item_link.has-child:hover + .child {
  opacity: 1;
  visibility: visible;
}
.l-header_right .menu .list_item_link:hover {
  color: #0699D9;
}
.l-header_right .menu .list_item_link:hover::before {
  background-color: #0699D9;
}
.l-header_right .menu .list_item .child {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-top: 10rem;
}
.l-header_right .menu .list_item .child:hover {
  opacity: 1;
  visibility: visible;
}
.l-header_right .menu .list_item .child .child-list {
  width: 36rem;
  position: absolute;
  top: 5rem;
  left: 0;
  background-color: #fff;
  box-shadow: 0.3rem 0.3rem 1rem rgba(0, 0, 0, 0.16);
  border-radius: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 1.5rem;
}
.l-header_right .menu .list_item .child .child-list_item_link {
  transition: 0.3s;
}
.l-header_right .menu .list_item .child .child-list_item_link:hover {
  color: #0699D9;
}
.l-header_right .menu-trigger {
  width: 5.7rem;
  height: 2.3rem;
  border: 1px solid #006CB8;
  border-radius: 2.3rem;
  background-color: #fff;
  position: relative;
}
.l-header_right .menu-trigger span {
  width: 2.7rem;
  height: 1px;
  background-color: #006CB8;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0.7rem;
  transition: 0.3s;
}
.is-fixed .l-header_right .menu-trigger span {
  top: 50%;
  transform: translateX(-50%) rotate(200deg);
}
.l-header_right .menu-trigger span:nth-child(2) {
  top: 1.3rem;
}
.is-fixed .l-header_right .menu-trigger span:nth-child(2) {
  top: 50%;
  transform: translateX(-50%) rotate(-200deg);
}
.l-header .btn-box {
  display: flex;
  justify-content: flex-end;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .l-header .btn-box {
    gap: 0.6rem;
  }
}
.l-header .btn-box .c-btn_link {
  padding-right: 2rem;
}
@media screen and (max-width: 767px) {
  .l-header .btn-box .c-btn_link {
    font-size: 1.2rem;
  }
  .l-header .btn-box .c-btn_link::before {
    right: 1rem;
  }
  .l-header .btn-box .c-btn_link::after {
    right: 1.3rem;
  }
}
.l-header .btn-box .c-btn_link.-orange {
  width: 29.2rem;
  height: 4.5rem;
}
@media screen and (max-width: 767px) {
  .l-header .btn-box .c-btn_link.-orange {
    width: 17.5rem;
    height: 3.2rem;
    padding-left: 1rem;
  }
}
.l-header .btn-box .c-btn_link.-blue03 {
  width: 18.5rem;
  height: 4.5rem;
}
@media screen and (max-width: 767px) {
  .l-header .btn-box .c-btn_link.-blue03 {
    width: 9.5rem;
    height: 3.2rem;
  }
}

.gnavi {
  background-color: #036BB8;
  position: fixed;
  z-index: 100;
  top: 0;
  padding: 6rem 0 0;
  width: 100%;
  height: 100vh;
  transform: translateY(-100%);
  transition: 0.3s;
}
.is-fixed .gnavi {
  transform: translate(0);
}
.gnavi_inner {
  overflow-y: scroll;
  height: 100%;
  padding: 2rem 1.5rem 2rem;
}
.gnavi_inner .menu .list_item {
  border-bottom: 1px dashed rgba(255, 255, 255, 0.5);
}
.gnavi_inner .menu .list_item_link {
  color: #fff;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  padding: 1rem 0;
  display: block;
  position: relative;
}
.gnavi_inner .menu .list_item_link::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 1rem;
  height: 1rem;
  background: url(../img/common/arrow_right_02.svg) no-repeat center center/contain;
}
.gnavi_inner .menu .list_item .child-list {
  margin-top: -1rem;
  padding-top: 1rem;
  margin-bottom: 2rem;
  background-color: #036BB8;
  position: relative;
}
.gnavi_inner .menu .list_item .child-list_item {
  margin-top: 0.3rem;
}
.gnavi_inner .menu .list_item .child-list_item_link {
  padding-left: 1rem;
  display: block;
  letter-spacing: 0.08em;
  color: #fff;
  font-weight: 400;
  position: relative;
}
.gnavi_inner .menu .list_item .child-list_item_link::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 0.4rem;
  height: 1px;
  background-color: #fff;
}
.gnavi_inner .copyright {
  margin-top: 1rem;
  text-align: center;
  color: #fff;
}
.gnavi_inner .copyright small {
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}

/* ---------------------------------------------
  footer
-----------------------------------------------*/
.l-footer {
  padding: 8.5rem 0 10rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding: 8rem 0 1rem;
  }
}
.l-footer .flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-footer .flex {
    display: block;
  }
}
.l-footer .flex .ttl-box {
  margin-top: 1rem;
}
.l-footer .flex .ttl-box .logo {
  width: 23rem;
}
@media screen and (max-width: 767px) {
  .l-footer .flex .ttl-box .logo {
    width: 29.5rem;
    margin: 0 auto;
  }
}
.l-footer .flex .ttl-box .txt {
  margin-top: 2.5rem;
  line-height: 1.63333;
}
@media screen and (max-width: 767px) {
  .l-footer .flex .ttl-box .txt {
    text-align: center;
    font-size: 1.2rem;
    letter-spacing: 0.08em;
  }
}
.l-footer .flex .menu {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 9rem;
}
@media screen and (max-width: 767px) {
  .l-footer .flex .menu {
    margin-top: 4rem;
    padding: 3rem 0 8rem;
    border-top: 1px solid #7C7C7C;
    border-bottom: 1px solid #7C7C7C;
    gap: 0;
    justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  .l-footer .flex .menu .list:first-child .list_item:nth-child(2) {
    margin-top: 0;
  }
}
.l-footer .flex .menu .list_item:nth-child(n+2) {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .l-footer .flex .menu .list_item:nth-child(n+2) {
    margin-top: 1rem;
  }
}
.l-footer .flex .menu .list_item_link {
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .l-footer .flex .menu .list_item_link {
    font-size: 1.4rem;
  }
}
.l-footer .flex .menu .list_item_link:hover {
  color: #0699D9;
}
@media screen and (max-width: 767px) {
  .l-footer .flex .menu .list_item .child-list {
    margin-top: 0.5rem;
  }
}
.l-footer .flex .menu .list_item .child-list_item {
  line-height: 2;
}
.l-footer .flex .menu .list_item .child-list_item_link {
  padding-left: 2rem;
  letter-spacing: 0.08em;
  position: relative;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .l-footer .flex .menu .list_item .child-list_item_link {
    font-size: 1.2rem;
    padding-left: 1rem;
  }
}
.l-footer .flex .menu .list_item .child-list_item_link::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 0.8rem;
  height: 2px;
  background-color: #252B30;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .l-footer .flex .menu .list_item .child-list_item_link::before {
    width: 0.3rem;
    height: 1px;
  }
}
.l-footer .flex .menu .list_item .child-list_item_link:hover {
  color: #0699D9;
}
.l-footer .flex .menu .list_item .child-list_item_link:hover::before {
  background-color: #0699D9;
}
.l-footer .fb {
  width: 3.5rem;
  position: absolute;
  bottom: 3rem;
  right: 0;
}
@media screen and (min-width: 768px) {
  .l-footer .fb {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .l-footer .fb:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .l-footer .fb {
    right: 1rem;
  }
}
.l-footer .copyright {
  margin-top: -3rem;
}
@media screen and (max-width: 767px) {
  .l-footer .copyright {
    margin-top: 1rem;
    text-align: center;
  }
}
.l-footer .copyright small {
  font-size: 1.5rem;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .l-footer .copyright small {
    font-size: 1rem;
    letter-spacing: 0.05em;
  }
}
.l-footer .page-top {
  position: absolute;
  bottom: 0.8rem;
  right: 1.5rem;
}
.l-footer .page-top a {
  padding-right: 2.3rem;
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  line-height: 1;
  position: relative;
}
.l-footer .page-top a::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 1.2rem;
  height: 1.3rem;
  background: url(../img/common/arrow_page-top.svg) no-repeat center center/contain;
}

/* ---------------------------------------------
  main
-----------------------------------------------*/
.c-flex-box {
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-flex-box {
    display: flex;
    flex-direction: column-reverse;
    gap: 3.2rem;
  }
}
.c-flex-box .txt-box {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .c-flex-box .txt-box {
    width: 100%;
  }
}
.c-flex-box .txt-box .c-anchor-list {
  margin-top: 2.5rem;
}
.c-flex-box .txt-box .txt {
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .c-flex-box .txt-box .txt {
    font-size: 1.5rem;
    letter-spacing: 0.04em;
  }
}
.c-flex-box .txt-box .c-btn {
  margin-top: 3.5rem;
}
.c-flex-box .img {
  position: absolute;
  max-width: 71.5rem;
  right: -24rem;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .c-flex-box .img {
    position: static;
    transform: translate(0);
    max-width: 26.8rem;
    margin: 0 auto;
  }
}
.c-flex-box .img img {
  object-fit: cover;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .c-flex-box .img img {
    border-radius: 1rem;
  }
}
.c-flex-box.-revers .txt-box {
  margin-left: auto;
}
.c-flex-box.-revers .img {
  left: -24rem;
  right: auto;
}
.c-flex-box.-start .img {
  top: -3rem;
  transform: translate(0);
}

.c-news-list .list_item {
  border-bottom: 1px solid #C4D6DF;
}
.c-news-list .list_item:first-child {
  border-top: 1px solid #C4D6DF;
}
.c-news-list .list_item a {
  display: block;
  padding: 2.3rem 0;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-news-list .list_item a:hover {
    background-color: rgba(0, 108, 184, 0.05);
  }
}
.c-news-list .list_item_date {
  font-family: "Roboto", sans-serif;
  font-size: 1.3rem;
  color: #93A9BB;
}
.c-news-list .list_item_ttl {
  margin-top: 0.5rem;
  font-size: 1.8rem;
  color: #006CB8;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
@media screen and (max-width: 767px) {
  .c-news-list .list_item_ttl {
    -webkit-line-clamp: 2;
    font-size: 1.5rem;
    line-height: 1.866666;
  }
}

.c-contact {
  background-color: #0699D9;
  padding: 6.5rem 0 8rem;
}
.c-contact .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .c-contact .flex {
    display: block;
  }
}
.c-contact .flex .ttl-box .c-secttl-box .c-secsubttl {
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .c-contact .flex .ttl-box .c-secttl-box .c-secsubttl {
    font-weight: 500;
  }
}
.c-contact .flex .ttl-box .c-secttl-box .c-secttl {
  margin-top: 0;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .c-contact .flex .ttl-box .c-secttl-box .c-secttl {
    font-size: 3.2rem;
  }
}
.c-contact .flex .ttl-box .list {
  margin-top: 1.4rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.9rem;
}
@media screen and (max-width: 767px) {
  .c-contact .flex .ttl-box .list {
    margin-top: 1rem;
  }
}
.c-contact .flex .ttl-box .list_item {
  font-size: 1.3rem;
  color: #fff;
  letter-spacing: 0.04em;
  padding: 0 0.8rem;
  border: 1px solid #fff;
  border-radius: 0.3rem;
}
@media screen and (max-width: 767px) {
  .c-contact .flex .txt-box {
    margin-top: 2.3rem;
  }
}
.c-contact .flex .txt-box .lead {
  font-size: 2.1rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding-right: 5.6rem;
}
@media screen and (max-width: 767px) {
  .c-contact .flex .txt-box .lead {
    font-size: 1.5rem;
    padding-right: 0;
    letter-spacing: 0.08em;
    text-align: center;
  }
}
.c-contact .flex .txt-box .btn-box {
  margin-top: 2.5rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2.7rem;
}
@media screen and (max-width: 767px) {
  .c-contact .flex .txt-box .btn-box {
    flex-direction: column;
    justify-content: center;
  }
}
.c-contact .flex .txt-box .btn-box .tel-box .tel a {
  line-height: 1;
  color: #fff;
  font-size: 4rem;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-contact .flex .txt-box .btn-box .tel-box .tel a {
    font-size: 3.3rem;
    padding-left: 2rem;
  }
}
.c-contact .flex .txt-box .btn-box .tel-box .tel a::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -3rem;
  width: 2rem;
  height: 2.5rem;
  background: url(../img/common/icon_tel.svg) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .c-contact .flex .txt-box .btn-box .tel-box .tel a::before {
    left: -1rem;
  }
}
.c-contact .flex .txt-box .btn-box .tel-box .txt {
  margin-top: 0.2rem;
  line-height: 1;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .c-contact .flex .txt-box .btn-box .tel-box .txt {
    text-align: center;
    font-size: 1.2rem;
  }
}
.c-contact .flex .txt-box .btn-box .c-btn_link {
  justify-content: flex-start;
  padding-left: 2.5rem;
}

.c-gassyuku .content {
  border: 3px solid #FEAA2D;
  border-radius: 3rem;
  padding: 4.5rem 6rem 6rem;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-gassyuku .content {
    border-radius: 2rem;
    padding: 3rem 2.8rem 4.8rem;
  }
}
.c-gassyuku .content::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  z-index: -1;
  width: 73rem;
  height: 57.8rem;
  background: url(../img/common/img_gassyuku.png) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .c-gassyuku .content::before {
    width: 22.1rem;
    height: 17.5rem;
    top: 15rem;
    transform: translate(0);
  }
}
.c-gassyuku .content .ttl-box .subttl {
  font-size: 2.1rem;
  letter-spacing: 0.08em;
  color: #FEAA2D;
}
@media screen and (max-width: 767px) {
  .c-gassyuku .content .ttl-box .subttl {
    text-align: center;
    font-size: 1.7rem;
    white-space: nowrap;
  }
}
.c-gassyuku .content .ttl-box .ttl {
  font-size: 5.6rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #FEAA2D;
}
@media screen and (max-width: 767px) {
  .c-gassyuku .content .ttl-box .ttl {
    font-size: 3.8rem;
    letter-spacing: 0.05em;
    text-align: center;
    line-height: 1.18421;
  }
}
.c-gassyuku .content .list {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .c-gassyuku .content .list {
    margin-top: 3rem;
    flex-direction: column;
    align-items: flex-start;
    width: 16rem;
    gap: 1rem;
  }
}
.c-gassyuku .content .list_item {
  height: 3.4rem;
  border: 1px solid #D8E3E8;
  background-color: #fff;
  border-radius: 0.3rem;
  padding: 0 1.4rem 0 1.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-gassyuku .content .list_item {
    display: inline-block;
    padding: 0.3rem 1rem;
  }
}
.c-gassyuku .content .list_item::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -0.3rem;
  width: 0.6rem;
  height: 3.4rem;
  background-color: #FEAA2D;
  border-radius: 0.3rem 0 0 0.3rem;
}
.c-gassyuku .content .lead {
  margin-top: 2.4rem;
  line-height: 1.523809;
  font-size: 2.1rem;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .c-gassyuku .content .lead {
    margin-top: 5rem;
    text-align: center;
    font-size: 1.5rem;
  }
}
.c-gassyuku .content dl {
  margin-top: 2rem;
}
.c-gassyuku .content .c-btn {
  margin-top: 3.8rem;
}

.c-recruit {
  margin-bottom: 200px;
}
@media screen and (max-width: 767px) {
  .c-recruit {
    margin-bottom: 6rem;
  }
}
.c-recruit .content {
  border: 0.5rem solid #006CB8;
  border-radius: 3rem;
  height: 33.3rem;
  padding: 4rem 0;
  position: relative;
}
.c-recruit .content::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  height: 33.3rem;
  background: url(../img/common/bg_recruit.svg) no-repeat center center/contain;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .c-recruit .content::before {
    top: 0;
    transform: translate(0);
    background: url(../img/common/bg_recruit_sp.svg) no-repeat top center/contain;
  }
}
@media screen and (max-width: 767px) {
  .c-recruit .content {
    height: auto;
    border: 0.3rem solid #006CB8;
  }
  .c-recruit .content .c-secttl-box .c-secsubttl {
    font-size: 1.8rem;
    letter-spacing: 0.2em;
  }
  .c-recruit .content .c-secttl-box .c-secttl {
    font-size: 2.1rem;
    letter-spacing: 0.07em;
  }
}
.c-recruit .content .c-secttl-box {
  position: relative;
  z-index: 2;
}
.c-recruit .content .c-btn {
  position: relative;
  z-index: 2;
}
.c-recruit .content .txt {
  font-size: 1.8rem;
  margin-top: 1rem;
  color: #006CB8;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-align: center;
  position: relative;
  z-index: 2;
  line-height: 1.7777;
}
@media screen and (max-width: 767px) {
  .c-recruit .content .txt {
    font-size: 1.4rem;
    font-weight: 500;
    text-align: left;
    letter-spacing: 0.08em;
    padding: 0 1.5rem;
  }
}
.c-recruit .content .c-btn {
  margin-top: 2rem;
}
.c-recruit.-under .content {
  height: 30.3rem;
}
@media screen and (max-width: 767px) {
  .c-recruit.-under .content {
    height: auto;
  }
}
.c-recruit.-under .content .c-secttl-box .c-secsubttl {
  font-size: 1.6rem;
}
.c-recruit.-under .content .c-secttl-box .c-secttl {
  letter-spacing: 0.2em;
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .c-recruit.-under .content .c-secttl-box .c-secttl {
    font-size: 1.6rem;
  }
}
.c-recruit.-under .content .txt {
  font-size: 1.6rem;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .c-recruit.-under .content .txt {
    font-size: 1.4rem;
  }
}

.p-heading-01 {
  margin-top: 14.3rem;
}
@media screen and (max-width: 767px) {
  .p-heading-01 {
    margin-top: 6rem;
  }
}
.p-heading-01 .c-secttl-box {
  position: relative;
  padding: 14rem 0 25rem;
}
@media screen and (max-width: 767px) {
  .p-heading-01 .c-secttl-box {
    padding: 5rem 0 8rem;
  }
}
.p-heading-01 .c-secttl-box::before {
  content: "";
  position: absolute;
  top: 4rem;
  transform: translateX(-50%);
  left: 50%;
  background: url(../img/common/bg_heading.png) no-repeat center center/contain;
  width: 192rem;
  height: 38.3rem;
}
@media screen and (max-width: 767px) {
  .p-heading-01 .c-secttl-box::before {
    width: 56rem;
    height: 12rem;
    bottom: 2rem;
    top: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-heading-01 .c-secttl-box .c-secsubttl {
    font-size: 1.5rem;
    letter-spacing: 0.2em;
  }
}
@media screen and (max-width: 767px) {
  .p-heading-01 .c-secttl-box .c-secttl.-l {
    font-size: 2.1rem;
  }
}

.c-merit-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.8rem;
}
@media screen and (max-width: 767px) {
  .c-merit-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }
}
.c-merit-list .list_item {
  background-color: #fff;
  border: 1px solid #006CB8;
  border-radius: 1rem;
  padding: 3rem 5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-merit-list .list_item {
    padding: 3rem;
  }
}
.c-merit-list .list_item_num {
  position: absolute;
  top: -0.1rem;
  left: -0.1rem;
  padding: 1rem 1.4rem;
  background-color: #006CB8;
  color: #fff;
  font-size: 2.5rem;
  line-height: 1.5;
  font-family: "Roboto", sans-serif;
  border-radius: 1rem 0 3rem 0;
}
.c-merit-list .list_item_ttl {
  text-align: center;
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 700;
  color: #006CB8;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .c-merit-list .list_item_ttl {
    font-size: 1.8rem;
  }
}
.c-merit-list .list_item_txt {
  margin-top: 1rem;
  letter-spacing: 0.08em;
  line-height: 1.7;
}

.c-slider-box01 {
  margin-right: calc(50% - 50vw);
  padding-bottom: 8.5rem;
}
@media screen and (max-width: 767px) {
  .c-slider-box01 {
    margin-top: 4rem;
    margin-left: 0;
    margin-right: -1.5rem;
    padding-bottom: 6.5rem;
  }
}
.c-slider-box01 .slider {
  position: static;
}
.c-slider-box01 .slider .slick-slide {
  margin: 0 2.5rem;
  width: 24.7rem;
}
@media screen and (max-width: 767px) {
  .c-slider-box01 .slider .slick-slide {
    margin: 0 1rem;
    width: 20rem;
  }
}
.c-slider-box01 .slider .slick-arrow {
  position: absolute;
  bottom: 0.2rem;
  right: 0.2rem;
  width: 5rem;
  cursor: pointer;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .c-slider-box01 .slider .slick-arrow {
    width: 4rem;
  }
}
.c-slider-box01 .slider .slick-arrow.slider-prev {
  right: 6.8rem;
}
@media screen and (max-width: 767px) {
  .c-slider-box01 .slider .slick-arrow.slider-prev {
    right: 5rem;
  }
}

.c-flow-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5.5rem;
}
@media screen and (max-width: 767px) {
  .c-flow-list {
    margin-top: 4rem;
    grid-template-columns: repeat(1, 1fr);
    gap: 4rem;
  }
}
.c-flow-list .list_item {
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-flow-list .list_item {
    display: flex;
    justify-content: flex-start;
  }
}
.c-flow-list .list_item:last-child::before {
  content: none;
}
.c-flow-list .list_item::before {
  content: "";
  position: absolute;
  top: 2rem;
  transform: translateX(-50%);
  left: calc(50% + 15.5rem);
  width: 22.5rem;
  height: 1px;
  background-color: #006CB8;
}
@media screen and (max-width: 767px) {
  .c-flow-list .list_item::before {
    content: none;
  }
}
@media screen and (max-width: 767px) {
  .c-flow-list .list_item:nth-child(1) .list_item_img {
    right: 0;
    bottom: 0;
  }
}
.c-flow-list .list_item:nth-child(1) .list_item_img img {
  width: 10.4rem;
}
@media screen and (max-width: 767px) {
  .c-flow-list .list_item:nth-child(1) .list_item_img img {
    width: 8.4rem;
  }
}
@media screen and (max-width: 767px) {
  .c-flow-list .list_item:nth-child(2) .list_item_img {
    right: 1.5rem;
    bottom: 2rem;
  }
}
.c-flow-list .list_item:nth-child(2) .list_item_img img {
  width: 6.2rem;
}
.c-flow-list .list_item_num {
  width: 3.5rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .c-flow-list .list_item_num {
    font-size: 3rem;
    width: 4.7rem;
    line-height: 1;
  }
  .c-flow-list .list_item_num img {
    width: 75%;
  }
}
.c-flow-list .list_item_img {
  margin-top: 3rem;
  height: 9rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .c-flow-list .list_item_img {
    height: auto;
  }
}
.c-flow-list .list_item_img img {
  width: 8.3rem;
}
@media screen and (max-width: 767px) {
  .c-flow-list .list_item_img img {
    width: 7rem;
  }
}
@media screen and (max-width: 767px) {
  .c-flow-list .list_item_img {
    position: absolute;
    right: 1rem;
    bottom: 2rem;
  }
}
.c-flow-list .list_item_ttl-box {
  flex: 1;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .c-flow-list .list_item_ttl-box {
    margin-top: 0.5rem;
  }
}
.c-flow-list .list_item_ttl {
  font-size: 2rem;
  text-align: center;
  font-weight: 700;
  color: #006CB8;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .c-flow-list .list_item_ttl {
    font-size: 1.7rem;
    text-align: left;
  }
}
.c-flow-list .list_item_txt {
  margin-top: 1.8rem;
  letter-spacing: 0.08em;
  line-height: 1.7;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-flow-list .list_item_txt {
    max-width: 19.5rem;
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  .c-flow-list.-managementplan .list_item .list_item_img {
    bottom: -1rem;
  }
}
.c-flow-list.-managementplan .list_item .list_item_img img {
  width: 8.7rem;
}
@media screen and (max-width: 767px) {
  .c-flow-list.-managementplan .list_item .list_item_img img {
    width: 8rem;
  }
}
@media screen and (max-width: 767px) {
  .c-flow-list.-managementplan .list_item:nth-child(1) .list_item_img {
    right: 0;
    bottom: -1rem;
  }
}
.c-flow-list.-managementplan .list_item:nth-child(1) .list_item_img img {
  width: 8.9rem;
}
@media screen and (max-width: 767px) {
  .c-flow-list.-managementplan .list_item:nth-child(1) .list_item_img img {
    width: 8rem;
  }
}
@media screen and (max-width: 767px) {
  .c-flow-list.-managementplan .list_item:nth-child(2) .list_item_img {
    right: 0;
    bottom: -1rem;
  }
}
.c-flow-list.-managementplan .list_item:nth-child(2) .list_item_img img {
  width: 8.9rem;
}
@media screen and (max-width: 767px) {
  .c-flow-list.-managementplan .list_item:nth-child(2) .list_item_img img {
    width: 8rem;
  }
}

.c-num-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 6.7rem;
}
@media screen and (max-width: 767px) {
  .c-num-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.c-num-list .list_item {
  padding: 2.5rem 1rem;
  border-top: 1px solid #C1C1C1;
}
@media screen and (max-width: 767px) {
  .c-num-list .list_item {
    padding: 2.3rem 1rem;
  }
}
.c-num-list .list_item.-border-bottom {
  border-bottom: 1px solid #C1C1C1;
}
.c-num-list .list_item:last-child {
  border-bottom: 1px solid #C1C1C1;
}
.c-num-list .list_item_ttl-box {
  display: flex;
  align-items: center;
}
.c-num-list .list_item_num {
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  color: #006CB8;
  width: 4rem;
}
.c-num-list .list_item_ttl {
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-num-list .list_item_ttl {
    line-height: 1.5;
  }
}
.c-num-list .list_item_child-list {
  margin-top: 1rem;
  margin-left: 1rem;
}
.c-num-list .list_item_child-list_item {
  position: relative;
  line-height: 1.7;
  letter-spacing: 0.08em;
  padding-left: 1.5rem;
}
.c-num-list .list_item_child-list_item::before {
  content: "";
  position: absolute;
  top: 1rem;
  left: 0;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background-color: #252B30;
}

/* ------------------------------
    フェードインアニメーション
------------------------------ */
.fade-box {
  opacity: 0;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.9s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.delay-time02 {
  animation-delay: 0.2s;
}

.delay-time04 {
  animation-delay: 0.4s;
}

.delay-time06 {
  animation-delay: 0.6s;
}

.delay-time08 {
  animation-delay: 0.8s;
}

.delay-time10 {
  animation-delay: 1s;
}/*# sourceMappingURL=common.css.map */

.wpcf7 .submitting {
	pointer-events: none;
}