@charset "UTF-8";
/* webfont */
@import url("//fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("//fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;600;700&display=swap");
@import url("//fonts.googleapis.com/css2?family=Prata&display=swap");
@import url("//fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap");
@import url("//fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
@import url("//cdn.jsdelivr.net/npm/yakuhanjp@3.0.0/dist/css/yakuhanjp.min.css");
/* use
-----------------------------------------------------------------*/
/*==========================================================================

   mixin

===========================================================================*/
/*==========================================================================

   keyframes

===========================================================================*/
/*--------------------------------------------------------------------------
   html
---------------------------------------------------------------------------*/
html {
  position: relative;
  min-height: 100%;
  overflow: visible;
}
@media only screen and (max-width: 767px) {
  html {
    width: 100%;
    height: 100%;
  }
}
html.is-menuopen {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
html.is-modalopen {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/*--------------------------------------------------------------------------
   head
---------------------------------------------------------------------------*/
head {
  font-family: "pc";
}
@media only screen and (max-width: 767px) {
  head {
    font-family: "sp";
  }
}

/*--------------------------------------------------------------------------
   body
---------------------------------------------------------------------------*/
body {
  color: #000;
  font-family: "YakuHanJP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Noto Sans JP", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", Osaka, Verdana, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  background-color: #fff;
  container-type: inline-size;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media only screen and (max-width: 767px) {
  body {
    width: 100%;
    min-width: 375px;
    height: auto;
    font-size: 16px;
    line-height: 1.8;
  }
}

.os-mac body {
  font-weight: 400;
}

/*--------------------------------------------------------------------------
   a
---------------------------------------------------------------------------*/
a {
  outline: none;
  color: inherit;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a:link, a:visited {
  text-decoration: none;
}

/*--------------------------------------------------------------------------
   reset
---------------------------------------------------------------------------*/
* {
  word-wrap: break-word;
  outline: none;
}

img {
  vertical-align: top;
}

ul, ol {
  list-style: none;
}

/* Placeholder
-----------------------------------------------*/
::-webkit-input-placeholder {
  color: rgba(86, 83, 79, 0.2);
}

::-moz-placeholder {
  color: rgba(86, 83, 79, 0.2);
}

:-ms-input-placeholder {
  color: rgba(86, 83, 79, 0.2);
}

:-moz-placeholder {
  color: rgba(86, 83, 79, 0.2);
}

/*--------------------------------------------------------------------------
   selection
---------------------------------------------------------------------------*/
::-moz-selection {
  background-color: #b3d4fc;
  color: #fff;
  text-shadow: none;
}

::selection {
  background-color: #b3d4fc;
  color: #fff;
  text-shadow: none;
}

/* ----------------------------------------------------------------------------------------------------

Super Form Reset

A couple of things to watch out for:

- IE8: If a text input doesn't have padding on all sides or none the text won't be centered.
- The default border sizes on text inputs in all UAs seem to be slightly different. You're better off using custom borders.
- You NEED to set the font-size and family on all form elements
- Search inputs need to have their appearance reset and the box-sizing set to content-box to match other UAs
- You can style the upload button in webkit using ::-webkit-file-upload-button
- ::-webkit-file-upload-button selectors can't be used in the same selector as normal ones. FF and IE freak out.
- IE: You don't need to fake inline-block with labels and form controls in IE. They function as inline-block.
- By turning off ::-webkit-search-decoration, it removes the extra whitespace on the left on search inputs

----------------------------------------------------------------------------------------------------*/
input,
label,
select,
button,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
  border: 0;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
  background: none;
}

/* Remove the stupid outer glow in Webkit */
input:focus,
select:focus,
textarea:focus {
  outline: 0;
}

/* Box Sizing Reset
-----------------------------------------------*/
/* All of our custom controls should be what we expect them to be */
input,
textarea {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  white-space: pre-wrap;
  word-wrap: break-word;
}

/* These elements are usually rendered a certain way by the browser */
button,
input[type=reset],
input[type=button],
input[type=submit],
input[type=checkbox],
input[type=radio],
select {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Text Inputs
-----------------------------------------------*/
/* Button Controls
-----------------------------------------------*/
input[type=checkbox],
input[type=radio] {
  width: 13px;
  height: 13px;
}

/* File Uploads
-----------------------------------------------*/
/* Search Input
-----------------------------------------------*/
/* Make webkit render the search input like a normal text field */
input[type=search] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
}

/* Turn off the recent search for webkit. It adds about 15px padding on the left */
::-webkit-search-decoration {
  display: none;
}

/* Buttons
-----------------------------------------------*/
button,
input[type=reset],
input[type=button],
input[type=submit] {
  /* Fix IE7 display bug */
  overflow: visible;
  width: auto;
}

/* IE8 and FF freak out if this rule is within another selector */
::-webkit-file-upload-button {
  padding: 0;
  border: 0;
  background: none;
}

/* Textarea
-----------------------------------------------*/
textarea {
  /* Move the label to the top */
  vertical-align: top;
  /* Turn off scroll bars in IE unless needed */
  overflow: auto;
}

/* Selects
-----------------------------------------------*/
select[multiple] {
  /* Move the label to the top */
  vertical-align: top;
}

/* use
-----------------------------------------------------------------*/
/*--------------------------------------------------------------------------
   all_page
---------------------------------------------------------------------------*/
.all_page_wrapper {
  opacity: 0;
}

.is-loading .all_page_wrapper {
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.all_page_main {
  position: relative;
}
.all_page_main::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 730px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #FBF4F3), to(#fff));
  background: linear-gradient(to bottom, #FBF4F3 0, #fff 100%);
}

.load-complete .all_page_wrapper {
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
  opacity: 1;
  overflow: visible;
}

.load-complete .all_page {
  overflow: visible;
}

/* media query -> sp
=================================================================*/
@media only screen and (max-width: 767px) {
  .all_page_wrapper {
    overflow: hidden;
    width: 100%;
    height: 100%;
  }
  .is-loading .all_page_wrapper {
    position: static;
  }
  .all_page {
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    height: 100%;
    -webkit-overflow-scrolling: touch;
  }
  .all_page_main {
    overflow: hidden;
  }
  .all_page_main::before {
    height: 523px;
  }
  .is-loading .all_page {
    overflow-y: hidden;
  }
  .load-complete .all_page {
    overflow: visible;
  }
}
/* use
-----------------------------------------------------------------*/
/*--------------------------------------------------------------------------
   all_wrap
---------------------------------------------------------------------------*/
.all_wrap {
  position: relative;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* media query -> sp
=================================================================*/
@media only screen and (max-width: 767px) {
  .all_wrap {
    max-width: none;
    padding: 0 20px;
  }
}
/*--------------------------------------------------------------------------
   l-grid
---------------------------------------------------------------------------*/
.l-grid {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  *zoom: 1;
}
.l-grid:after {
  content: "";
  display: table;
  clear: both;
}
.l-grid__item {
  display: block;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  float: left;
}

.l-grid__item--1of2 {
  width: 50%;
}
.l-grid__item--1of3 {
  width: 33.33333333%;
}
.l-grid__item--1of4 {
  width: 25%;
}
.l-grid__item--1of5 {
  width: 20%;
}
.l-grid__item--1of6 {
  width: 16.66666666%;
}

/*--------------------------------------------------------------------------
   l-grid
---------------------------------------------------------------------------*/
.l-inline-grid {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  white-space: nowrap;
}
.l-inline-grid__item {
  display: inline-block;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

.l-inline-grid__item--1of2 {
  width: 50%;
}
.l-inline-grid__item--1of3 {
  width: 33.33333333%;
}
.l-inline-grid__item--1of4 {
  width: 25%;
}
.l-inline-grid__item--1of5 {
  width: 20%;
}
.l-inline-grid__item--1of6 {
  width: 16.66666666%;
}

/*--------------------------------------------------------------------------
   l-flex-grid
---------------------------------------------------------------------------*/
.l-flex-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.l-flex-grid__item {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

.l-flex-grid__item--full {
  width: 100%;
}
.l-flex-grid__item--1of2 {
  width: 50%;
}
.l-flex-grid__item--1of3 {
  width: 33.33333333%;
}
.l-flex-grid__item--1of4 {
  width: 25%;
}
.l-flex-grid__item--1of5 {
  width: 20%;
}
.l-flex-grid__item--1of6 {
  width: 16.66666666%;
}

/*--------------------------------------------------------------------------
   all_btn
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
.all_c_btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 167px;
  height: 59px;
  padding-left: 90px;
  background: linear-gradient(315deg, #024d90, #0275c4);
  border: 1px solid rgba(1, 57, 133, 0);
  font-size: 16px;
  font-weight: 700;
  border-radius: 1000px;
  line-height: 1;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .all_c_btn {
    padding-left: 60px;
    font-size: 15px;
  }
}
.all_c_btn span {
  position: relative;
  color: #fff;
  z-index: 2;
  translate: -0.5em -0.1em;
}
.all_c_btn::before, .all_c_btn::after {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 7px;
  height: 7px;
  border-radius: 7px;
  content: "";
  background-color: #fff;
  translate: 0 -50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 1;
}
.all_c_btn::after {
  background-color: #013985;
  opacity: 0;
}
.all_c_btn._center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 0;
}
.all_c_btn._b01 {
  background: linear-gradient(315deg, #024D90, #48B2FF);
}
.all_c_btn._b02 {
  background: linear-gradient(315deg, #024D90, #22CAEF);
}
.mode-pc .all_c_btn:hover span {
  color: #013985;
}
.mode-pc .all_c_btn:hover::before {
  scale: 50;
}
.mode-pc .all_c_btn:hover::after {
  opacity: 1;
}
.all_c_btn:disabled {
  background: #333 !important;
  opacity: 0.5 !important;
}
.all_c_btn:disabled:hover span {
  color: #fff !important;
}
.all_c_btn:disabled:hover::before {
  scale: 1 !important;
}
.all_c_btn:disabled:hover::after {
  opacity: 0 !important;
}

.all_c_btn_circle {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 1000px;
  border: 1px solid #fff;
}
@media only screen and (max-width: 767px) {
  .all_c_btn_circle {
    width: 45px;
    height: 45px;
  }
}
.all_c_btn_circle:before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  position: absolute;
  left: calc(50% - 5px);
  top: calc(50% - 5px);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .all_c_btn_circle:before {
    width: 8px;
    height: 8px;
    left: calc(50% - 4px);
    top: calc(50% - 4px);
  }
}

/*--------------------------------------------------------------------------
   all_c_hdg
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
.all_c_hdg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media only screen and (max-width: 767px) {
  .all_c_hdg {
    gap: 30px;
  }
}
.all_c_hdg._center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.all_c_hdg ._en {
  font-family: "Prata", serif;
  font-weight: 400;
  font-size: clamp(0px, 7vw, 70px);
  line-height: 1;
  text-indent: -0.05em;
}
@media only screen and (max-width: 767px) {
  .all_c_hdg ._en {
    font-size: 44px;
  }
}
.all_c_hdg ._ja {
  font-weight: 700;
  font-size: clamp(0px, 2vw, 20px);
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .all_c_hdg ._ja {
    font-size: 18px;
  }
}
.all_c_hdg ._hr {
  display: block;
  margin-bottom: 5px;
  width: 47px;
  height: 7px;
  background-image: url(../images/all_hdg_hr.svg);
  background-size: cover;
}

/*--------------------------------------------------------------------------
   form
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
input,
button,
select,
textarea {
  border-radius: 0;
  -ms-appearance: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

form input,
form textarea {
  border: 0;
}

input[type=checkbox],
input[type=radio] {
  position: absolute;
  opacity: 0;
}

/* 入力 */
.all_c_input {
  width: 100%;
  height: 60px;
  padding: 20px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #fff;
  border-radius: 8px;
  font-size: 16px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media only screen and (max-width: 767px) {
  .all_c_input {
    height: 56px;
    padding: 15px 15px;
  }
}

.all_c_txtarea {
  width: 100%;
  height: 10em;
  padding: 10px;
  padding: 20px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #fff;
  border-radius: 8px;
  line-height: 1.5;
  overflow: auto;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.all_c_input__l,
.all_c_txtarea__l {
  width: 600px;
}
.all_c_input__s,
.all_c_txtarea__s {
  width: 240px;
}
.all_c_input.ipt-err,
.all_c_txtarea.ipt-err {
  background-color: #ffe4e4;
}

/* radio */
.all_c_radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
.all_c_radio__horizon {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5em;
}
.all_c_radio + .all_c_radio {
  margin-top: 0.5em;
}
.all_c_radio input + label {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  vertical-align: middle;
  cursor: pointer;
}
.all_c_radio input + label::before, .all_c_radio input + label::after {
  position: absolute;
  top: 50%;
  border-radius: 50%;
  content: "";
}
.all_c_radio input + label::before {
  left: 0;
  width: 20px;
  height: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 1px solid #B2B2B2;
  background: #fff;
}
.all_c_radio input + label::after {
  left: 4px;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  background-color: #409578;
  opacity: 0;
}
.all_c_radio input:checked + label::after {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

/*
 all_c_check
 -- チェックボックス
*/
.all_c_check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.all_c_check label {
  display: inline-block;
  position: relative;
  padding-left: 45px;
  vertical-align: middle;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.all_c_check label::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 16px;
  left: 0;
  width: 32px;
  height: 32px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 2px;
  background-color: #fff;
}

.all_c_check label::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 8px;
  width: 14px;
  height: 20px;
  margin-top: -9px;
  border-right: 3px solid #013985;
  border-bottom: 3px solid #013985;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.all_c_check input[type=checkbox] {
  position: absolute;
  visibility: hidden;
  -webkit-transform: scale(0);
          transform: scale(0);
  width: 0;
  height: 0;
}

.all_c_check input:checked + label::after {
  opacity: 1;
}

/* select */
.all_c_select {
  position: relative;
  display: inline-block;
  width: 496px;
  height: 60px;
  background-color: #fff;
  border: 1px solid #B2B2B2;
}
.all_c_select::before {
  position: absolute;
  display: inline-block;
  content: "";
  pointer-events: none;
  top: 50%;
  right: 20px;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  border-top: 8px solid #000;
  border-bottom: 0;
}
.all_c_select select {
  width: 100%;
  height: 60px;
  padding: 0 0 0 15px;
  font-size: 16px;
  cursor: pointer;
}

/*--------------------------------------------------------------------------
   all_m_head
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
.all_m_head {
  position: relative;
  height: 326px;
  background: -webkit-gradient(linear, left top, left bottom, from(#27dbfc), to(#004086));
  background: linear-gradient(#27dbfc 0%, #004086 100%);
  border-radius: 0 0 0 100px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
  z-index: 10;
}
@media only screen and (max-width: 767px) {
  .all_m_head {
    height: 330px;
  }
}
.all_m_head_wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
.all_m_head .all_m_breadcrumbs {
  position: absolute;
  top: 58px;
  right: 85px;
  z-index: 10;
}
@media only screen and (max-width: 1360px) {
  .all_m_head .all_m_breadcrumbs {
    right: calc(85px + (100vw - 1360px) / 2);
  }
}
@media only screen and (max-width: 1234px) {
  .all_m_head .all_m_breadcrumbs {
    right: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .all_m_head .all_m_breadcrumbs {
    top: 88px;
    right: 20px;
  }
}
.all_m_head_inline {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
@media only screen and (max-width: 767px) {
  .all_m_head_inline {
    padding-top: 10px;
  }
}
.all_m_head_heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 34px;
  margin-bottom: 0px;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .all_m_head_heading {
    gap: 25px;
    margin-bottom: 20px;
  }
}
.all_m_head_heading ._ja {
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .all_m_head_heading ._ja {
    font-size: 16px;
  }
}
.all_m_head_heading ._en {
  font-family: "Prata", serif;
  font-weight: 400;
  font-size: 70px;
  text-transform: capitalize;
  line-height: 1;
  text-indent: -0.05em;
}
@media only screen and (max-width: 767px) {
  .all_m_head_heading ._en {
    font-size: 52px;
  }
}
.all_m_head_copy {
  text-align: right;
  font-size: 24px;
  line-height: 1.8;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .all_m_head_copy {
    text-align: left;
    font-size: 20px;
    line-height: 1.75;
  }
}
.all_m_head_obj1 {
  position: absolute;
  top: -50px;
  left: -50px;
  mix-blend-mode: soft-light;
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .all_m_head_obj1 {
    top: 20px;
    left: -20vw;
  }
}
.all_m_head_obj1 img {
  max-width: 827px;
  width: 51.68vw;
  height: auto;
}
@media only screen and (max-width: 767px) {
  .all_m_head_obj1 img {
    width: 400px;
    rotate: 8deg;
  }
}
.all_m_head_obj2 {
  position: absolute;
  right: -50px;
  bottom: -10px;
  mix-blend-mode: soft-light;
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .all_m_head_obj2 {
    right: -22vw;
    bottom: 3vw;
  }
}
.all_m_head_obj2 img {
  max-width: 833px;
  width: 52vw;
  height: auto;
}
@media only screen and (max-width: 767px) {
  .all_m_head_obj2 img {
    width: 400px;
    rotate: 4deg;
  }
}

/* animation
-----------------------------------------------------------------*/
.all_m_head_heading ._ja {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
}
.all_m_head_heading ._en {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
}
.all_m_head_obj1 {
  opacity: 0;
  -webkit-transform: translateX(50px);
          transform: translateX(50px);
}
.all_m_head_obj2 {
  opacity: 0;
  -webkit-transform: translateX(-50px);
          transform: translateX(-50px);
}

.load-complete .all_m_head_heading ._ja {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.load-complete .all_m_head_heading ._en {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
.load-complete .all_m_head_obj1 {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  -webkit-transition-delay: 1.4s;
          transition-delay: 1.4s;
}
.load-complete .all_m_head_obj2 {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  -webkit-transition-delay: 1.6s;
          transition-delay: 1.6s;
}

/*--------------------------------------------------------------------------
   all_m_breadcrumbs
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
.all_m_breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.all_m_breadcrumbs_item {
  position: relative;
  color: #fff;
  font-size: 15px;
}
@media only screen and (max-width: 767px) {
  .all_m_breadcrumbs_item {
    font-size: 14px;
  }
}
.all_m_breadcrumbs_item:not(:first-of-type) {
  margin-left: 20px;
  padding-left: 20px;
}
@media only screen and (max-width: 767px) {
  .all_m_breadcrumbs_item:not(:first-of-type) {
    margin-left: 20px;
    padding-left: 20px;
  }
}
.all_m_breadcrumbs_item:not(:first-of-type)::before {
  position: relative;
  left: -20px;
  content: "・";
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .all_m_breadcrumbs_item:not(:first-of-type)::before {
    left: -20px;
  }
}
.all_m_breadcrumbs_item a {
  position: relative;
  color: #fff;
}
.all_m_breadcrumbs_item a::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  scale: 0;
  content: "";
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.mode-pc .all_m_breadcrumbs_item a:hover::after {
  scale: 1;
}

/*--------------------------------------------------------------------------
   all_m_pager
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
.all_m_pager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: clamp(0px, 4.5vw, 72px);
  padding-top: clamp(0px, 2.4375vw, 39px);
  border-top: 2px solid #fff;
}
@media only screen and (max-width: 767px) {
  .all_m_pager {
    margin-top: 56px;
    padding-top: 24px;
  }
}
.all_m_pager_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.all_m_pager_item {
  margin: 0 6px;
  font-family: "Prata", serif;
  font-size: clamp(0px, 1.5vw, 24px);
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .all_m_pager_item {
    margin: 0 4px;
    font-size: 17px;
  }
}
.all_m_pager_item a {
  line-height: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.mode-pc .all_m_pager_item a:hover {
  color: #0275C4;
}
.all_m_pager_item._num a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 36px;
  height: 100%;
  padding-top: 3px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 1px solid #fff;
  color: #fff;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .all_m_pager_item._num a {
    width: 28px;
  }
}
.mode-pc .all_m_pager_item._num a:hover {
  background: #fff;
  color: #0275C4;
}
.all_m_pager_item._num a.is_current {
  background: #fff;
  color: #0275C4;
}
.all_m_pager_item._dots {
  font-size: 12px;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .all_m_pager_item._prev, .all_m_pager_item._next {
    font-size: 18px;
  }
}
.all_m_pager_item._prev a,
.all_m_pager_item._prev span, .all_m_pager_item._next a,
.all_m_pager_item._next span {
  position: relative;
  color: #fff;
}
.all_m_pager_item._prev a::before,
.all_m_pager_item._prev span::before, .all_m_pager_item._next a::before,
.all_m_pager_item._next span::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 23px;
  height: 23px;
  -webkit-transform: translateY(-60%);
          transform: translateY(-60%);
  background: url(../../images/all_icon_pager_arrow.svg) no-repeat 50% 50%/cover;
  content: "";
}
@media only screen and (max-width: 767px) {
  .all_m_pager_item._prev a::before,
  .all_m_pager_item._prev span::before, .all_m_pager_item._next a::before,
  .all_m_pager_item._next span::before {
    width: 16px;
    height: 16px;
  }
}
.all_m_pager_item._prev span, .all_m_pager_item._next span {
  opacity: 0.5;
}
.all_m_pager_item._prev a, .all_m_pager_item._prev span {
  padding-left: 28px;
}
@media only screen and (max-width: 767px) {
  .all_m_pager_item._prev a, .all_m_pager_item._prev span {
    padding-left: 18px;
  }
}
.all_m_pager_item._next a, .all_m_pager_item._next span {
  padding-right: 28px;
}
@media only screen and (max-width: 767px) {
  .all_m_pager_item._next a, .all_m_pager_item._next span {
    padding-right: 18px;
  }
}
.all_m_pager_item._next a::before, .all_m_pager_item._next span::before {
  left: inherit;
  right: 0;
  -webkit-transform: scale(-1, 1) translateY(-60%);
          transform: scale(-1, 1) translateY(-60%);
}

/*--------------------------------------------------------------------------
   all_m_modal
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
.all_m_modal {
  position: fixed;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  z-index: 999999;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
@media only screen and (max-width: 767px) {
  .all_m_modal {
    padding-inline: 20px;
  }
}
.all_m_modal_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: -1;
}
.all_m_modal_body {
  position: relative;
  max-width: clamp(0px, 90vw, 900px);
  width: 100%;
  min-height: 500px;
  padding: clamp(0px, 4.6vw, 46px) clamp(0px, 8vw, 80px) clamp(0px, 3vw, 30px);
  background: #fff;
  border-radius: 15px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (min-width: 768px) and (max-height: 800px) {
  .all_m_modal_body {
    max-width: 650px;
  }
}
@media only screen and (max-width: 767px) {
  .all_m_modal_body {
    max-width: none;
    height: auto;
    min-height: 400px;
    padding: 40px 20px;
  }
}
.all_m_modal_close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: -30px;
  right: -30px;
  width: 76px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, right bottom, from(#0275C4), to(#024D90));
  background: linear-gradient(to right bottom, #0275C4 0%, #024D90 100%);
  text-indent: -9999px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .all_m_modal_close {
    width: 48px;
    top: -10px;
    right: -10px;
  }
}
.all_m_modal_close::before, .all_m_modal_close::after {
  content: "";
  width: 40px;
  height: 1px;
  background: #fff;
}
@media only screen and (max-width: 767px) {
  .all_m_modal_close::before, .all_m_modal_close::after {
    width: 22px;
  }
}
.all_m_modal_close::before {
  margin-right: -40px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media only screen and (max-width: 767px) {
  .all_m_modal_close::before {
    margin-right: -22px;
  }
}
.all_m_modal_close::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.mode-pc .all_m_modal_close:hover {
  rotate: 90deg;
  scale: 1.1;
}
.all_m_modal_title {
  font-size: clamp(0px, 2.2vw, 22px);
  text-align: center;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
@media only screen and (max-width: 767px) {
  .all_m_modal_title {
    font-size: 18px;
  }
}
.all_m_modal .swiper {
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.all_m_modal_img {
  width: 100%;
  margin: clamp(0px, 1.2vw, 12px) 0 0;
}
@media only screen and (min-width: 768px) and (max-height: 800px) {
  .all_m_modal_img {
    max-width: 500px;
  }
}
.all_m_modal_img figure {
  aspect-ratio: 300/202;
  background-color: #999;
}
.all_m_modal_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.all_m_modal_img .all_m_modal_img_caption {
  margin-top: clamp(0px, 1.2vw, 12px);
  font-size: clamp(0px, 1.6vw, 16px);
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .all_m_modal_img .all_m_modal_img_caption {
    font-size: 16px;
  }
}
.all_m_modal .swiper-controls {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 35px;
  margin-top: 25px;
  width: 100%;
  height: 34px;
}
@media only screen and (max-width: 767px) {
  .all_m_modal .swiper-controls {
    gap: 30px;
    margin-top: 50px;
  }
}
.all_m_modal .swiper-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
  position: static;
  top: auto;
  left: auto;
  right: auto;
  width: auto;
  height: 13px;
  line-height: 1;
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .all_m_modal .swiper-pagination {
    right: auto;
    width: auto;
  }
}
.all_m_modal .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 !important;
  border-radius: 50%;
  background-color: #0275C4;
  opacity: 0.2;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .all_m_modal .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    margin: 0 4.5px !important;
  }
}
.all_m_modal .swiper-pagination-bullet:hover, .all_m_modal .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}
.all_m_modal .swiper-button-prev {
  position: static;
  top: 0;
  right: 0;
  left: inherit;
  width: 34px;
  height: 34px;
  margin: 0;
  border: 1px solid #013985;
  background-color: #fff;
  border-radius: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .all_m_modal .swiper-button-prev {
    right: 45px;
    width: 35px;
    height: 35px;
  }
}
.all_m_modal .swiper-button-prev::after {
  font-size: 0.6rem;
  font-weight: 700;
  color: #013985;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.mode-pc .all_m_modal .swiper-button-prev:hover {
  background-color: #0275C4;
  border-color: #0275C4;
}
.mode-pc .all_m_modal .swiper-button-prev:hover::after {
  color: #fff;
}
.all_m_modal .swiper-button-next {
  position: static;
  top: 0;
  right: 0;
  left: inherit;
  width: 34px;
  height: 34px;
  margin: 0;
  border: 1px solid #013985;
  background-color: #fff;
  border-radius: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .all_m_modal .swiper-button-next {
    width: 35px;
    height: 35px;
  }
}
.all_m_modal .swiper-button-next::after {
  font-size: 0.6rem;
  font-weight: 700;
  color: #013985;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.mode-pc .all_m_modal .swiper-button-next:hover {
  background-color: #0275C4;
  border-color: #0275C4;
}
.mode-pc .all_m_modal .swiper-button-next:hover::after {
  color: #fff;
}
.all_m_modal_loading {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 20;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.all_m_modal_loading p {
  margin-bottom: 5px;
  font-family: "Actor", sans-serif;
  color: #000;
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: 700;
  text-align: center;
}
.all_m_modal_loading span {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  left: 50%;
  margin-left: -10px;
  -webkit-animation: 3s infinite linear;
          animation: 3s infinite linear;
}
.all_m_modal_loading span:nth-child(2) {
  background-color: #0275C4;
  -webkit-animation: kiri 1.2s infinite linear;
          animation: kiri 1.2s infinite linear;
}
.all_m_modal_loading span:nth-child(3) {
  background-color: #0275C4;
  z-index: 100;
}
.all_m_modal_loading span:nth-child(4) {
  background-color: #0275C4;
  -webkit-animation: kanan 1.2s infinite linear;
          animation: kanan 1.2s infinite linear;
}
@-webkit-keyframes kanan {
  0% {
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  50% {
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
  100% {
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
    z-index: 200;
  }
}
@keyframes kanan {
  0% {
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  50% {
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
  100% {
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
    z-index: 200;
  }
}
@-webkit-keyframes kiri {
  0% {
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
    z-index: 200;
  }
  50% {
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  100% {
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
}
@keyframes kiri {
  0% {
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
    z-index: 200;
  }
  50% {
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  100% {
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
}
.all_m_modal.is-loading, .all_m_modal.is-loading .all_m_modal_loading {
  visibility: visible;
  pointer-events: all;
  opacity: 1;
}
.all_m_modal.is-show .all_m_modal_loading {
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.all_m_modal.is-show {
  visibility: visible;
  pointer-events: all;
  opacity: 1;
}
.all_m_modal.is-show .all_m_modal_title,
.all_m_modal.is-show .swiper {
  visibility: visible;
  pointer-events: all;
  opacity: 1;
}

/*--------------------------------------------------------------------------
   cf
---------------------------------------------------------------------------*/
.cf {
  *zoom: 1;
}
.cf:after {
  content: "";
  display: table;
  clear: both;
}

/**
 *
 *  LOADER
 *
 */
/* use
-----------------------------------------------------------------*/
/*--------------------------------------------------------------------------
   loader
---------------------------------------------------------------------------*/
#Loader {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  opacity: 0;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
@media only screen and (max-width: 767px) {
  #Loader {
    position: absolute;
    top: 56px;
    width: 100%;
    height: auto;
    aspect-ratio: 1920/1080;
  }
}

#Loader .progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 0px;
  height: 1px;
  background: #0275C4;
}

#Loader .base {
  display: none;
}

.home #Loader {
  background-image: url(../images/all_loader_bg.jpg);
  background-position: 50% 100%;
  background-size: cover;
}
.home #Loader .base {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 30px;
  left: 0;
  display: block;
  background-image: url(../images/all_loader_logo.svg);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 482px auto;
  opacity: 0;
}
@media only screen and (max-width: 767px) {
  .home #Loader .base {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: 241px auto;
  }
}

/* trans
-------------------------------------------*/
.is-loading #Loader {
  opacity: 1;
}

.is-loading #Loader .base {
  top: 0px;
  opacity: 1;
  -webkit-transition: top 0.4s ease-in-out, opacity 0.6s ease-in-out;
  transition: top 0.4s ease-in-out, opacity 0.6s ease-in-out;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

/* anima
-------------------------------------------*/
.load-complete #Loader {
  opacity: 0;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
.load-complete #Loader .base {
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  top: 30px;
  opacity: 0;
}

/*--------------------------------------------------------------------------
   SHOW / HIDE
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/*
 show / hide
 -- レスポンシブ用 表示/非表示
*/
.all_mi_pc {
  display: block;
}

@-moz-document url-prefix() {
  .all_mi_pc.lh0 {
    line-height: 0;
  }
}
img.all_mi_pc {
  display: inline;
}

.all_mi_sp {
  display: none;
}

/* media query -> sp
========================================*/
@media only screen and (max-width: 767px) {
  .all_mi_pc,
  img.all_mi_pc {
    display: none;
  }
  .all_mi_sp {
    display: block;
  }
  img.all_mi_sp {
    display: inline;
  }
}
/*--------------------------------------------------------------------------
   TEXT
---------------------------------------------------------------------------*/
/*
 note
 -- 改行時、一文字目に余白を持たせる
*/
.all_mi_note,
.all_mi_list_note li {
  padding-left: 1em;
  text-indent: -1em;
}

/*--------------------------------------------------------------------------
   IMAGE
---------------------------------------------------------------------------*/
/*
 max
 -- 横幅に合わせて画像を最大化
*/
.all_mi_img_max {
  width: 100%;
  height: auto;
}

/*--------------------------------------------------------------------------
   HOVER
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/*
 hov01
 -- 透過
*/
/* setting */
/* core */
.mi-hov01 {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.mi-hov01:hover {
  opacity: 0.7;
}

.mi-hov01-all > * {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.mi-hov01-all > *:hover {
  opacity: 0.7;
}

/* use
-----------------------------------------------------------------*/
/*--------------------------------------------------------------------------
   init
---------------------------------------------------------------------------*/
.is-animate.is-fadein {
  opacity: 0;
}
.is-animate.is-fadeup {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}
.is-animate.is-fadedown {
  opacity: 0;
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
}
.is-animate.is-fadeleft {
  opacity: 0;
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
}
.is-animate.is-faderight {
  opacity: 0;
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
}
.is-animate.is-fadezoom {
  opacity: 0;
  -webkit-transform: scale(0.4);
          transform: scale(0.4);
}

/*--------------------------------------------------------------------------
   animated
---------------------------------------------------------------------------*/
.is-animated.is-fadein {
  opacity: 1;
  -webkit-transition: opacity 0.6s ease-in-out;
  transition: opacity 0.6s ease-in-out;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.is-animated.is-fadeup {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, -webkit-transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, transform 1s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.is-animated.is-fadedown {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, -webkit-transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, transform 1s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.is-animated.is-fadeleft {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, -webkit-transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, transform 1s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.is-animated.is-faderight {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, -webkit-transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, transform 1s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.is-animated.is-fadezoom {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, -webkit-transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, transform 1s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

/*--------------------------------------------------------------------------
   .header
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
@media only screen and (max-width: 767px) {
  .all_page_header {
    opacity: 1;
  }
}
.all_page_header .header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  background-color: #fff;
  width: 100%;
  height: 108px;
}
@media only screen and (max-width: 767px) {
  .all_page_header .header {
    height: 80px;
    background-color: transparent;
  }
}
.all_page_header .header.is-fixed {
  position: fixed;
}
.all_page_header .header_logo {
  padding-left: 90px;
}
@media only screen and (min-width: 768px) and (max-width: 1400px) {
  .all_page_header .header_logo {
    width: auto;
    padding-left: 45px;
  }
  .all_page_header .header_logo img:nth-child(1) {
    width: clamp(0px, 19.2857142857vw, 270px);
  }
  .all_page_header .header_logo img:nth-child(2) {
    width: clamp(0px, 19.5vw, 273px);
  }
}
@media only screen and (min-width: 768px) and (max-width: 1000px) {
  .all_page_header .header_logo img:nth-child(1) {
    width: clamp(0px, 27vw, 270px);
  }
  .all_page_header .header_logo img:nth-child(2) {
    width: clamp(0px, 27.3vw, 273px);
  }
}
@media only screen and (max-width: 767px) {
  .all_page_header .header_logo {
    width: 100%;
    padding: 25px 30px 45px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .all_page_header .header_logo img:nth-child(1) {
    width: 202px;
  }
  .all_page_header .header_logo img:nth-child(2) {
    width: 200px;
  }
}
.all_page_header .header_logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .all_page_header .header_logo a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1400px) {
  .all_page_header .header_logo a {
    gap: 25px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1000px) {
  .all_page_header .header_logo a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.all_page_header .header_wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 767px) {
  .all_page_header .header_wrap {
    z-index: 9;
    display: block;
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
  }
}
.all_page_header .header_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 767px) {
  .all_page_header .header_nav {
    display: block;
  }
}
.all_page_header .header_gnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px 2%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 470px;
  height: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 1400px) {
  .all_page_header .header_gnav {
    width: clamp(420px, 33.5714285714vw, 470px);
  }
}
@media only screen and (min-width: 768px) and (max-width: 1000px) {
  .all_page_header .header_gnav {
    width: 380px;
  }
}
@media only screen and (max-width: 767px) {
  .all_page_header .header_gnav {
    position: absolute;
    top: 120px;
    left: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    display: block;
    border-top: 1px solid #E3E3E3;
    width: 100%;
    height: calc(100% - 180px);
    overflow: auto;
  }
}
.all_page_header .header_gnav_item {
  width: 32%;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .all_page_header .header_gnav_item {
    width: 100%;
    height: auto;
  }
}
.all_page_header .header_gnav_item > a {
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
  height: 100%;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}
@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .all_page_header .header_gnav_item > a {
    font-size: clamp(10px, 1.3333333333vw, 16px);
  }
}
@media only screen and (min-width: 768px) and (max-width: 1000px) {
  .all_page_header .header_gnav_item > a {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .all_page_header .header_gnav_item > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
    padding: 25px;
    border-bottom: 1px solid #E3E3E3;
    font-size: 16px;
  }
  .all_page_header .header_gnav_item > a::before {
    width: 6px;
    height: 6px;
    border-radius: 6px;
    background-color: #0275C4;
    content: "";
  }
}
.all_page_header .header_gnav_item > a::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #000;
  scale: 0;
  content: "";
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media only screen and (max-width: 767px) {
  .all_page_header .header_gnav_item > a::after {
    content: none;
  }
}
.all_page_header .header_gnav_item > a.is-active::after, .mode-pc .all_page_header .header_gnav_item > a:hover::after, .mode-sp .all_page_header .header_gnav_item > a:active::after {
  scale: 1;
}
.all_page_header .header_contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 108px;
  height: 108px;
  background-color: #013985;
}
@media only screen and (max-width: 767px) {
  .all_page_header .header_contact {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 60px;
  }
}
.all_page_header .header_contact a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 108px;
  height: 108px;
  gap: 15px;
  text-align: center;
  color: #fff;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 13px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .all_page_header .header_contact a {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
    height: 60px;
    font-size: 17px;
    line-height: 1;
  }
}
.all_page_header .header_contact a::before {
  margin-top: 10px;
  width: 32px;
  height: 23px;
  content: url(../images/all_icon_mail.svg);
}
@media only screen and (max-width: 767px) {
  .all_page_header .header_contact a::before {
    margin-top: 0px;
    margin-right: 15px;
    width: 22px;
    height: 16px;
  }
}
.mode-pc .all_page_header .header_contact a:hover, .mode-sp .all_page_header .header_contact a:active {
  background-color: #3AA5DA;
}
.all_page_header .header_menubtn {
  display: none;
}
@media only screen and (max-width: 767px) {
  .all_page_header .header_menubtn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: absolute;
    top: 18px;
    right: 18px;
    width: 48px;
    height: 48px;
    border-radius: 48px;
    background-color: #fff;
    -webkit-filter: drop-shadow(0px 1px 5px rgba(0, 0, 0, 0.16));
            filter: drop-shadow(0px 1px 5px rgba(0, 0, 0, 0.16));
    cursor: pointer;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: center;
    z-index: 10;
  }
}
.mode-pc .all_page_header .header_menubtn:hover .lines, .mode-sp .all_page_header .header_menubtn:active .lines {
  -webkit-animation: h_menu_bounce 2s ease-in-out;
          animation: h_menu_bounce 2s ease-in-out;
}
@-webkit-keyframes h_menu_bounce {
  5% {
    -webkit-transform: scale(1.5, 1);
            transform: scale(1.5, 1);
  }
  10% {
    -webkit-transform: scale(0.7, 1);
            transform: scale(0.7, 1);
  }
  15% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
@keyframes h_menu_bounce {
  5% {
    -webkit-transform: scale(1.5, 1);
            transform: scale(1.5, 1);
  }
  10% {
    -webkit-transform: scale(0.7, 1);
            transform: scale(0.7, 1);
  }
  15% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
.all_page_header .header_menubtn_lines {
  position: relative;
  padding: 0;
  width: 18px;
  height: 12px;
  font-size: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  border: none;
}
.all_page_header .header_menubtn_lines:focus {
  outline: none;
}
.all_page_header .header_menubtn_lines span {
  display: inline-block;
  position: absolute;
  right: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #0275C4;
}
.all_page_header .header_menubtn_lines span:nth-of-type(1) {
  top: 0px;
  -webkit-animation: menu-bar01 0.75s forwards;
          animation: menu-bar01 0.75s forwards;
}
.all_page_header .header_menubtn_lines span:nth-of-type(2) {
  top: 5px;
  width: 75%;
  -webkit-transition: all 0.25s linear;
  transition: all 0.25s linear;
  opacity: 1;
}
.all_page_header .header_menubtn_lines span:nth-of-type(3) {
  bottom: 0;
  width: 50%;
  -webkit-animation: menu-bar02 0.75s forwards;
          animation: menu-bar02 0.75s forwards;
}

.is-menuanim .header_wrap {
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

/*menu open*/
.is-menuopen .header.is-fixed, .is-menuopen .header.is-hide {
  -webkit-transform: translate(0, 0) !important;
          transform: translate(0, 0) !important;
}
.is-menuopen .header .header_menubtn_lines span:nth-of-type(1) {
  -webkit-transform: translateY(5px) rotate(-45deg);
          transform: translateY(5px) rotate(-45deg);
}
.is-menuopen .header .header_menubtn_lines span:nth-of-type(2) {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
  opacity: 0;
}
.is-menuopen .header .header_menubtn_lines span:nth-of-type(3) {
  -webkit-transform: translateY(-5px) rotate(45deg);
          transform: translateY(-5px) rotate(45deg);
  width: 100%;
}
.is-menuopen .header .header_wrap {
  pointer-events: all;
  visibility: visible;
  opacity: 1;
  height: 100%;
}

.load-complete .all_page_header {
  opacity: 1;
}

/*--------------------------------------------------------------------------
   .footer
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
.footer {
  position: relative;
}
.footer_main {
  background-color: #E9EFF5;
}
.footer_main_bnr {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 20px;
  max-width: 1200px;
  width: 100%;
  height: 268px;
  z-index: 9;
}
@media only screen and (max-width: 767px) {
  .footer_main_bnr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 380px;
    translate: -50% -25%;
  }
}
.footer_main_bnr_item {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .footer_main_bnr_item {
    width: 100%;
    height: 190px;
  }
}
.footer_main_bnr_item._recruit a {
  background: -webkit-gradient(linear, left top, left bottom, from(#024d90), to(#0275c4));
  background: linear-gradient(#024d90 0%, #0275c4 100%);
}
.footer_main_bnr_item._recruit a::before {
  background: -webkit-gradient(linear, left top, left bottom, from(#00549f), to(#0094fa));
  background: linear-gradient(#00549f 0%, #0094fa 100%);
}
.footer_main_bnr_item._contact a {
  background: -webkit-gradient(linear, left top, left bottom, from(#001f48), to(#002a64));
  background: linear-gradient(#001f48 0%, #002a64 100%);
}
.footer_main_bnr_item._contact a::before {
  background: -webkit-gradient(linear, left top, left bottom, from(#002a60), to(#004098));
  background: linear-gradient(#002a60 0%, #004098 100%);
}
.footer_main_bnr a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 268px;
}
@media only screen and (max-width: 767px) {
  .footer_main_bnr a {
    height: 190px;
  }
}
.footer_main_bnr a .inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
  width: 100%;
  height: 100%;
  padding: 68px;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .footer_main_bnr a .inner {
    gap: 15px;
    padding: 45px 20px;
  }
}
.footer_main_bnr a .inner .en {
  font-family: "Prata", serif;
  font-size: 52px;
  color: #fff;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .footer_main_bnr a .inner .en {
    font-size: 38px;
  }
}
.footer_main_bnr a .inner .ja {
  font-size: 18px;
  color: #fff;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .footer_main_bnr a .inner .ja {
    font-size: 16px;
  }
}
.footer_main_bnr a::before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  pointer-events: none;
  opacity: 0;
  z-index: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.mode-pc .footer_main_bnr a:hover::before {
  opacity: 1;
}
.footer_main_bnr a .all_c_btn_circle {
  position: absolute;
  bottom: 36px;
  right: 36px;
  z-index: 9;
  background-color: rgba(255, 255, 255, 0);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .footer_main_bnr a .all_c_btn_circle {
    bottom: 26px;
    right: 26px;
  }
}
.mode-pc .footer_main_bnr a:hover .all_c_btn_circle {
  background-color: rgba(255, 255, 255, 0.8);
}
.mode-pc .footer_main_bnr a:hover .all_c_btn_circle::before {
  border-color: #0275C4;
  translate: 50% 0;
}
.footer_main_wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  padding: 180px 0 78px;
}
@media only screen and (max-width: 767px) {
  .footer_main_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 345px 0 42px;
  }
}
.footer_main_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 0;
  width: 50%;
  padding: 0 60px;
}
@media only screen and (max-width: 767px) {
  .footer_main_nav {
    gap: 10px 0;
    width: 100%;
    margin-bottom: 50px;
    padding: 0;
  }
}
.footer_main_nav_item {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .footer_main_nav_item:nth-child(n+3) {
    margin-top: 10px;
  }
}
.footer_main_nav_item > a {
  position: relative;
  display: inline;
  padding-bottom: 5px;
  height: 100%;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}
@media only screen and (min-width: 768px) and (max-width: 900px) {
  .footer_main_nav_item > a {
    font-size: clamp(10px, 1.7777777778vw, 16px);
  }
}
@media only screen and (max-width: 767px) {
  .footer_main_nav_item > a {
    font-size: 18px;
  }
}
.footer_main_nav_item > a::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #000;
  scale: 0;
  content: "";
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.mode-pc .footer_main_nav_item > a:hover::after {
  scale: 1;
}
.footer_main_dx {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .footer_main_dx {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1300px) {
  .footer_main_dx {
    gap: clamp(25px, 3.0769230769vw, 40px);
  }
}
.footer_main_dx_logo {
  width: 150px;
  margin-right: 36px;
}
@media only screen and (min-width: 768px) and (max-width: 1300px) {
  .footer_main_dx_logo {
    width: clamp(0px, 18.7692307692vw, 244px);
  }
}
@media only screen and (max-width: 767px) {
  .footer_main_dx_logo {
    width: 118px;
    margin-right: 28px;
  }
}
.footer_main_dx_logo img {
  width: 100%;
  height: auto;
}
.footer_main_dx_txt {
  width: calc(100% - 170px - 36px);
  padding-right: 20px;
  font-size: 14px;
}
@media only screen and (min-width: 768px) and (max-width: 1300px) {
  .footer_main_dx_txt {
    font-size: clamp(0px, 1.0769230769vw, 14px);
  }
}
@media only screen and (max-width: 767px) {
  .footer_main_dx_txt {
    width: calc(100% - 118px - 28px);
    padding-right: 0;
    font-size: 13px;
  }
}
.footer_bottom {
  padding: 60px 20px 110px;
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .footer_bottom {
    padding: 36px 20px 40px;
  }
}
.footer_company {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 767px) {
  .footer_company {
    display: block;
  }
}
.footer_company_item {
  width: 48%;
}
@media only screen and (max-width: 767px) {
  .footer_company_item {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .footer_company_item:nth-child(1) {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 900px) {
  .footer_company_item:nth-child(1) img {
    width: clamp(0px, 40vw, 360px);
  }
}
@media only screen and (max-width: 767px) {
  .footer_company_item:nth-child(1) img {
    width: 257px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 900px) {
  .footer_company_item:nth-child(2) img {
    width: clamp(0px, 39.1111111111vw, 352px);
  }
}
@media only screen and (max-width: 767px) {
  .footer_company_item:nth-child(2) img {
    width: 254px;
  }
}
.footer_company_logos {
  padding-right: 4.68vw;
}
@media only screen and (max-width: 767px) {
  .footer_company_logos {
    padding-right: 0;
  }
}
.footer_company_logo {
  margin-bottom: 2.5vw;
}
@media only screen and (max-width: 767px) {
  .footer_company_logo {
    margin-bottom: 20px;
  }
  .footer_company_logo img {
    width: 100%;
    height: auto;
  }
}
@media only screen and (max-width: 767px) {
  .footer_company_logo._takano {
    width: 257px;
  }
}
@media only screen and (max-width: 767px) {
  .footer_company_logo._development {
    width: 248px;
  }
}
.footer_company_info {
  padding-left: 4.37vw;
  border-left: 1px solid #D8D8D8;
}
@media only screen and (max-width: 767px) {
  .footer_company_info {
    padding: 20px 0 0;
    border-left: 0;
    border-top: 1px solid #D8D8D8;
  }
}
.footer_company_info_item:nth-child(n+2) {
  margin-top: 30px;
}
.footer_company_address {
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 1.56;
}
@media only screen and (min-width: 768px) and (max-width: 900px) {
  .footer_company_address {
    font-size: clamp(0px, 1.7777777778vw, 16px);
  }
}
@media only screen and (max-width: 767px) {
  .footer_company_address {
    margin-bottom: 10px;
    font-size: 14px;
  }
}
.footer_company_contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
}
.footer_company_contact_item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .footer_company_contact_item a {
    gap: 8px;
  }
}
.footer_company_contact_item a span:nth-of-type(1) {
  display: inline-block;
  background-color: #868686;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  height: 100%;
  padding: 2px 10px;
}
.footer_copyright {
  padding-top: 50px;
  text-align: center;
  font-size: 14px;
  color: #898989;
}
@media only screen and (max-width: 767px) {
  .footer_copyright {
    padding-top: 42px;
    font-size: 12px;
  }
}

/*--------------------------------------------------------------------------
   .main
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
.main {
  opacity: 0;
}
@media only screen and (max-width: 767px) {
  .main {
    padding-top: 0;
    opacity: 1;
  }
}

.all_page_wrapper.top .main {
  padding-top: 0;
  opacity: 1;
}

.load-complete .main {
  opacity: 1;
  -webkit-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.is-megaopen .main {
  -webkit-filter: blur(10px);
          filter: blur(10px);
  -webkit-transition: -webkit-filter 0.4s ease-in-out;
  transition: -webkit-filter 0.4s ease-in-out;
  transition: filter 0.4s ease-in-out;
  transition: filter 0.4s ease-in-out, -webkit-filter 0.4s ease-in-out;
}

/*--------------------------------------------------------------------------
   overwrite
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
.all_page_main {
  padding-top: 108px;
}
@media only screen and (max-width: 767px) {
  .all_page_main {
    padding-top: 0;
  }
}

/*--------------------------------------------------------------------------
   common
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/*--------------------------------------------------------------------------
   #top_mv
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.top_mv {
  position: relative;
  height: calc(100vh - 108px);
}
@media only screen and (max-width: 767px) {
  .top_mv {
    height: calc(var(--vh) * 100);
  }
}
.top_mv_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/top_mv_bg.png);
  background-color: #fff;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}
.top_mv_bg1, .top_mv_bg2, .top_mv_bg3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}
.top_mv_bg1 {
  background-image: url(../images/top_mv_bg1.png);
}
.top_mv_bg2 {
  background-image: url(../images/top_mv_bg2.png);
}
.top_mv_bg3 {
  background-image: url(../images/top_mv_bg3.png);
}
.top_mv_obj_01 {
  position: absolute;
  top: 0;
  right: 0;
  width: clamp(0px, 51.8461538462vw, 674px);
  translate: 0 -10px;
  mix-blend-mode: multiply;
}
@media only screen and (max-width: 767px) {
  .top_mv_obj_01 {
    width: 65%;
  }
}
.top_mv_obj_02 {
  position: absolute;
  top: 0;
  right: 0;
  width: clamp(0px, 30.7692307692vw, 400px);
  translate: -25% 0;
  mix-blend-mode: multiply;
}
@media only screen and (max-width: 767px) {
  .top_mv_obj_02 {
    width: 45%;
    translate: -10% 0;
  }
}
.top_mv_obj img, .top_mv_obj svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}
.top_mv_obj #top_mv_obj01-base {
  opacity: 0;
}
.top_mv_obj #top_mv_obj01-1p {
  fill: none;
  stroke: #FFFFFF;
  stroke-width: 70;
  stroke-miterlimit: 10;
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
}
.top_mv_obj #top_mv_obj01-2p {
  fill: none;
  stroke: #FFFFFF;
  stroke-width: 70;
  stroke-miterlimit: 10;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}
.top_mv_obj #top_mv_obj01-3p {
  fill: none;
  stroke: #FFFFFF;
  stroke-width: 70;
  stroke-miterlimit: 10;
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
}
.top_mv_obj #top_mv_obj02 #logo_dc_st1 {
  fill: none;
  stroke: #FFFFFF;
  stroke-width: 250;
  stroke-miterlimit: 10;
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
}
.top_mv_logo {
  position: absolute;
  top: 50%;
  left: 5%;
  translate: 0 -50%;
}
.top_mv_logo_te {
  position: relative;
}
.top_mv_logo_dc {
  position: relative;
  top: 45px;
  left: 80px;
}
@media only screen and (max-width: 767px) {
  .top_mv_logo_dc {
    top: 10px;
    left: 15%;
  }
}
@media only screen and (max-width: 767px) {
  .top_mv_logo img {
    width: 75%;
    height: auto;
  }
}
.top_mv_txt {
  position: absolute;
  left: 0;
  bottom: 0;
  translate: 0 0.05em;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", "Noto Serif JP", serif;
  line-height: 1;
  width: 100%;
  overflow: hidden;
  font-size: clamp(0px, 5.625vw, 108px);
}
@media only screen and (max-width: 767px) {
  .top_mv_txt {
    translate: 0 1vw;
    font-size: clamp(48px, 13.6vw, 68px);
    line-height: 1.1;
  }
}
.top_mv_txt_wrap {
  -webkit-transform-origin: 0 100%;
          transform-origin: 0 100%;
}
.top_mv_txt_wrap._pc {
  display: block;
}
@media only screen and (max-width: 767px) {
  .top_mv_txt_wrap._pc {
    display: none;
  }
}
.top_mv_txt_wrap._pc svg {
  width: 100%;
  height: auto;
}
.top_mv_txt_wrap._sp {
  display: none;
}
@media only screen and (max-width: 767px) {
  .top_mv_txt_wrap._sp {
    display: block;
  }
}
.top_mv_txt .char {
  display: inline-block;
  overflow: hidden;
  padding: 0.2em 0 0;
}
@media only screen and (max-width: 767px) {
  .top_mv_txt .char {
    padding: 0 0 0;
  }
}
.top_mv_txt .char-text {
  display: inline-block;
  -webkit-transform: translateX(-105%);
          transform: translateX(-105%);
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1), -webkit-transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}
.top_mv_txt svg #top_mv_txt > g {
  opacity: 0;
  translate: -100px 0;
}

/*--------------------------------------------------------------------------
   #top_dte
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.top_dte {
  position: relative;
  padding: 200px 0 clamp(0px, 15.625vw, 250px);
  background-image: url(../images/top_dte_bg.svg);
  background-color: #fff;
  background-size: 1600px 748px;
  background-position: 0 130%;
  background-repeat: repeat-x;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .top_dte {
    padding: 80px 0 clamp(0px, 26.6666666667vw, 200px);
    background-image: url(../images/top_dte_bg_sp.svg);
    background-position: 50% 100%;
    background-size: 100% auto;
  }
}
.top_dte_hdg {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  .top_dte_hdg {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 20px;
  }
}
.top_dte_hdg .hdg_1 {
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", "Noto Serif JP", serif;
  font-size: 50px;
  font-weight: 400;
  translate: 0 -30%;
}
@media only screen and (max-width: 767px) {
  .top_dte_hdg .hdg_1 {
    font-size: clamp(0px, 7.7333333333vw, 58px);
    line-height: 1;
    translate: 0 -10%;
  }
}
.top_dte_hdg .hdg_2 {
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", "Noto Serif JP", serif;
  font-size: 50px;
  font-weight: 400;
  translate: 0 50%;
}
@media only screen and (max-width: 767px) {
  .top_dte_hdg .hdg_2 {
    font-size: clamp(0px, 7.7333333333vw, 58px);
    line-height: 1;
    translate: 20% 0;
  }
}
@media only screen and (max-width: 767px) {
  .top_dte_hdg .hdg_x {
    translate: 10% 0;
  }
}
@media only screen and (max-width: 767px) {
  .top_dte_hdg .hdg_x img {
    width: clamp(0px, 23.7333333333vw, 178px);
    height: auto;
  }
}
.top_dte_copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 86px;
  font-size: 18px;
}
@media only screen and (max-width: 767px) {
  .top_dte_copy {
    margin-bottom: 40px;
    padding: 0 20px;
    font-size: 16px;
  }
}
.top_dte_list {
  position: relative;
  width: clamp(0px, 35.4375vw, 567px);
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .top_dte_list {
    width: 100%;
  }
}
.top_dte_item {
  position: relative;
  width: clamp(0px, 35.4375vw, 567px);
  height: clamp(0px, 35.4375vw, 567px);
}
@media only screen and (max-width: 767px) {
  .top_dte_item {
    width: 105vw;
    height: 105vw;
  }
}
.top_dte_item_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-top: clamp(0px, 12.5vw, 200px);
  background-image: url(../images/top_dte_obj01.png);
  background-position: 50% 100%;
  background-size: cover;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .top_dte_item_box {
    padding-top: clamp(0px, 38.6666666667vw, 290px);
  }
}
.top_dte_item_en {
  margin-bottom: clamp(0px, 3.125vw, 50px);
  font-size: clamp(0px, 2.625vw, 42px);
  font-family: "Prata", serif;
  color: #0275C4;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .top_dte_item_en {
    margin-bottom: clamp(0px, 6.6666666667vw, 50px);
    font-size: clamp(0px, 8vw, 60px);
  }
}
.top_dte_item_ja {
  margin-bottom: clamp(0px, 2.5vw, 40px);
  font-size: clamp(0px, 1.5625vw, 25px);
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", "Noto Serif JP", serif;
  font-weight: 700;
  color: #0275C4;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .top_dte_item_ja {
    margin-bottom: clamp(0px, 4vw, 30px);
    font-size: clamp(0px, 3.7333333333vw, 28px);
  }
}
.top_dte_item_txt {
  font-size: clamp(0px, 1.125vw, 18px);
}
@media only screen and (max-width: 767px) {
  .top_dte_item_txt {
    font-size: clamp(0px, 4vw, 30px);
  }
}
.top_dte_item:nth-child(1) {
  position: absolute;
  top: 0;
  left: 0;
  translate: -75% 0%;
}
@media only screen and (max-width: 767px) {
  .top_dte_item:nth-child(1) {
    position: static;
    translate: -15% 0;
  }
}
.top_dte_item:nth-child(2) {
  translate: 0 15%;
}
@media only screen and (max-width: 767px) {
  .top_dte_item:nth-child(2) {
    position: static;
    translate: 0 0;
    margin-top: -30%;
  }
}
.top_dte_item:nth-child(3) {
  position: absolute;
  top: 0;
  left: 0;
  translate: 75% 30%;
}
@media only screen and (max-width: 767px) {
  .top_dte_item:nth-child(3) {
    position: static;
    translate: 15% 0;
    margin-top: -30%;
  }
}

/*--------------------------------------------------------------------------
   #top_pro
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.top_pro {
  position: relative;
  margin-top: -90px;
  margin-bottom: 122px;
  padding: clamp(0px, 8.3333333333vw, 100px) 0 clamp(0px, 16.6666666667vw, 200px);
  background: -webkit-gradient(linear, left top, left bottom, from(#004086), to(#27dbfc));
  background: linear-gradient(#004086 0%, #27dbfc 100%);
  border-radius: clamp(0px, 7.5vw, 90px);
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .top_pro {
    margin-top: -120px;
    margin-bottom: 100px;
    border-radius: clamp(0px, 12vw, 90px);
  }
}
.top_pro_tops {
  position: relative;
  padding: 150px 0;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .top_pro_tops {
    padding: 120px 0 100px;
  }
}
.top_pro_tops .obj1 {
  position: absolute;
  top: 0;
  left: -5vw;
  mix-blend-mode: soft-light;
}
.top_pro_tops .obj1 img {
  width: 51vw;
  height: auto;
}
@media only screen and (max-width: 767px) {
  .top_pro_tops .obj1 img {
    width: 100vw;
  }
}
.top_pro_tops .obj2 {
  position: absolute;
  right: -5vw;
  bottom: 0;
  mix-blend-mode: soft-light;
}
.top_pro_tops .obj2 img {
  width: 51vw;
  height: auto;
}
@media only screen and (max-width: 767px) {
  .top_pro_tops .obj2 img {
    width: 100vw;
  }
}
.top_pro_hdg {
  margin-bottom: 60px;
  font-family: "Prata", serif;
  font-weight: 400;
  font-size: 31px;
  color: #74E4FF;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .top_pro_hdg {
    margin-bottom: 30px;
    font-size: 24px;
  }
}
.top_pro_copy {
  font-size: 38px;
  font-weight: 700;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .top_pro_copy {
    margin-bottom: 20px;
    font-size: 24px;
  }
}
.top_pro_main {
  margin-bottom: 150px;
}
.top_pro_main_img {
  width: 80%;
  margin: 0 5% 0 auto;
}
@media only screen and (max-width: 767px) {
  .top_pro_main_img {
    margin: 0;
  }
}
.top_pro_main_img img,
.top_pro_main_img svg {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 767px) {
  .top_pro_main_img img,
  .top_pro_main_img svg {
    width: 190vw;
    translate: -45vw 0;
  }
}
.top_pro_main_copy {
  font-size: 18px;
  font-weight: 700;
  line-height: 2.4;
  color: #fff;
}
.top_pro_main_list {
  display: block;
}
.top_pro_main_item:not(:first-child) {
  margin-top: 60px;
}
.top_pro_main_item .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top_pro_main_item .head_ttl {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top_pro_main_item .head_ttl .en {
  width: 55px;
  font-family: "Prata", serif;
  font-size: 70px;
  font-style: italic;
  font-weight: 300;
  color: #7BD6FF;
  line-height: 1;
}
.top_pro_main_item .head_ttl .ja {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}
.top_pro_main_item .head_icon {
  width: 95px;
}
.top_pro_main_item .txt {
  margin-top: 10px;
  font-size: 16px;
  color: #fff;
}
.top_pro_dclarest {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: clamp(0px, 5.1666666667vw, 62px) clamp(0px, 8.3333333333vw, 100px);
  border-radius: 20px;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(42.36%, #fff), to(#ebebeb));
  background: linear-gradient(#fff 0%, #fff 42.36%, #ebebeb 100%);
}
@media only screen and (max-width: 767px) {
  .top_pro_dclarest {
    display: block;
    padding: 55px 20px 0;
    border-radius: 20px;
  }
}
.top_pro_dclarest_txtwrap {
  width: 48%;
}
@media only screen and (max-width: 767px) {
  .top_pro_dclarest_txtwrap {
    width: 100%;
  }
}
.top_pro_dclarest_txtwrap .logo {
  margin-bottom: clamp(0px, 2.5vw, 30px);
}
@media only screen and (max-width: 767px) {
  .top_pro_dclarest_txtwrap .logo {
    margin-bottom: 35px;
  }
}
.top_pro_dclarest_txtwrap .logo img {
  width: clamp(0px, 31.0833333333vw, 373px);
  height: auto;
}
@media only screen and (max-width: 767px) {
  .top_pro_dclarest_txtwrap .logo img {
    width: 85%;
  }
}
.top_pro_dclarest_txtwrap .txt {
  margin-bottom: clamp(0px, 2.5vw, 30px);
  font-size: clamp(0px, 1.3333333333vw, 16px);
}
@media only screen and (max-width: 767px) {
  .top_pro_dclarest_txtwrap .txt {
    margin-bottom: 30px;
    font-size: 14px;
    line-height: 2.2;
  }
}
.top_pro_dclarest_img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media only screen and (max-width: 767px) {
  .top_pro_dclarest_img {
    margin-top: -35px;
    margin-right: -35px;
    text-align: right;
  }
}
.top_pro_dclarest_img img {
  position: absolute;
  right: clamp(0px, 3.4166666667vw, 41px);
  bottom: 0;
  width: clamp(0px, 50.3333333333vw, 604px);
  height: auto;
}
@media only screen and (max-width: 767px) {
  .top_pro_dclarest_img img {
    position: static;
    width: clamp(0px, 74.6666666667vw, 560px);
  }
}

/*--------------------------------------------------------------------------
   #top_mission
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.top_mission {
  position: relative;
  padding: 160px 0;
}
@media only screen and (max-width: 767px) {
  .top_mission {
    padding: 100px 0;
  }
}
.top_mission_wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .top_mission_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 90px;
  }
}
.top_mission_hdgwrap {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .top_mission_hdgwrap {
    width: 100%;
  }
}
.top_mission_hdgwrap .all_c_hdg {
  margin-bottom: 80px;
}
@media only screen and (max-width: 767px) {
  .top_mission_hdgwrap .all_c_hdg {
    margin-bottom: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .top_mission_hdgwrap_btn {
    position: absolute;
    left: 0;
    bottom: 0;
  }
}
.top_mission_txtwrap {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .top_mission_txtwrap {
    width: 100%;
  }
}
.top_mission_txtwrap_ttl {
  margin-bottom: 25px;
  font-size: clamp(0px, 2.5vw, 25px);
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .top_mission_txtwrap_ttl {
    font-size: 18px;
  }
}
.top_mission_txtwrap_txt {
  font-size: clamp(0px, 1.8vw, 18px);
  line-height: 2.2;
}
@media only screen and (max-width: 767px) {
  .top_mission_txtwrap_txt {
    font-size: 16px;
    line-height: 2.4;
  }
}

/*--------------------------------------------------------------------------
   #top_news
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.top_news {
  position: relative;
  padding: 80px 0 clamp(100px, 11.25vw, 180px);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(39, 219, 252, 0.1)), to(rgba(0, 88, 185, 0.1)));
  background: linear-gradient(rgba(39, 219, 252, 0.1) 0%, rgba(0, 88, 185, 0.1) 100%);
}
@media only screen and (max-width: 767px) {
  .top_news {
    padding: 60px 0 160px;
  }
}
.top_news .all_c_hdg {
  margin-bottom: 42px;
}
.top_news_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}
.top_news_article a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px 35px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #fff;
  -webkit-box-shadow: 0px 0px 12px rgba(35, 205, 242, 0.13);
          box-shadow: 0px 0px 12px rgba(35, 205, 242, 0.13);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .top_news_article a {
    gap: 5px;
    padding: 15px 25px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.top_news_article a:before {
  content: "";
  width: 12px;
  height: 12px;
  border-top: solid 1px #0275C4;
  border-right: solid 1px #0275C4;
  position: absolute;
  right: 30px;
  top: 50%;
  rotate: 45deg;
  translate: -50% -50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .top_news_article a:before {
    width: 12px;
    height: 12px;
    right: 20px;
  }
}
.mode-pc .top_news_article a:hover {
  border: 1px solid #3aa5da;
  -webkit-box-shadow: 0px 0px 20px rgba(22, 134, 180, 0.21);
          box-shadow: 0px 0px 20px rgba(22, 134, 180, 0.21);
}
.mode-pc .top_news_article a:hover:before {
  translate: 0 -50%;
}
.top_news_article_time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  width: 180px;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #0275C4;
}
@media only screen and (max-width: 767px) {
  .top_news_article_time {
    width: 100%;
    font-size: 16px;
  }
}
.top_news_article_time::before {
  display: block;
  width: 7px;
  height: 7px;
  background: #3aa5da;
  border-radius: 7px;
  content: "";
}
.top_news_article_txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-right: 15px;
}
@media only screen and (max-width: 767px) {
  .top_news_article_txt {
    font-size: 15px;
  }
}

/*--------------------------------------------------------------------------
   #top_works
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.top_works {
  position: relative;
  padding: 122px 0 152px;
  background-image: url(../images/top_works_bg.jpg);
  background-position: 50% 50%;
  background-size: cover;
}
@media only screen and (max-width: 767px) {
  .top_works {
    padding: 100px 0 100px;
    background-image: url(../images/top_works_bg_sp.jpg);
  }
}
.top_works .all_c_hdg {
  margin-bottom: 72px;
  color: #fff;
}
.top_works_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .top_works_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
  }
}
.top_works_item {
  position: relative;
  width: calc(50% - 10px);
}
@media only screen and (max-width: 767px) {
  .top_works_item {
    width: 100%;
  }
}
.top_works_item a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  padding: clamp(0px, 7.6923076923vw, 100px) clamp(0px, 4.2307692308vw, 55px);
  border-radius: 10px;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(42.36%, #fff), to(#dbdbdb));
  background: linear-gradient(#fff 0%, #fff 42.36%, #dbdbdb 100%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .top_works_item a {
    padding: 50px 20px;
  }
}
.top_works_item a::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(32.51%, #fff), to(#c4f7ff));
  background: linear-gradient(#fff 0%, #fff 32.51%, #c4f7ff 100%);
  opacity: 0;
  content: "";
  -webkit-transition: 0.3s;
  transition: 0.3s;
  pointer-events: none;
  z-index: 1;
}
.top_works_item a .inner {
  position: relative;
  z-index: 2;
}
.mode-pc .top_works_item a:hover {
  -webkit-box-shadow: 0px 0px 20px rgba(0, 81, 152, 0.38);
          box-shadow: 0px 0px 20px rgba(0, 81, 152, 0.38);
}
.mode-pc .top_works_item a:hover::before {
  opacity: 1;
}
.mode-pc .top_works_item a:hover .all_c_btn_circle::after {
  opacity: 0;
}
.mode-pc .top_works_item a:hover .all_c_btn_circle::before {
  border-color: #0275C4;
  translate: 50% 0;
}
.top_works_item_hdg {
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-size: clamp(0px, 2.1538461538vw, 28px);
  font-weight: 700;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .top_works_item_hdg {
    font-size: clamp(0px, 5.3333333333vw, 40px);
  }
}
.top_works_item_hdg::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: clamp(0px, 3.5384615385vw, 46px);
  height: 3px;
  background-color: #016BB8;
  content: "";
}
@media only screen and (max-width: 767px) {
  .top_works_item_hdg::before {
    font-size: clamp(0px, 12.5333333333vw, 94px);
  }
}
.top_works_item_txt {
  padding-bottom: 50px;
  font-size: clamp(0px, 1.3846153846vw, 18px);
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .top_works_item_txt {
    padding-bottom: clamp(0px, 16vw, 120px);
    font-size: clamp(0px, 4.2666666667vw, 32px);
  }
}
.top_works_item .all_c_btn_circle {
  position: absolute;
  right: 35px;
  bottom: 35px;
  z-index: 3;
  pointer-events: none;
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .top_works_item .all_c_btn_circle {
    right: 20px;
    bottom: 50px;
    width: 64px;
    height: 64px;
  }
}
.top_works_item .all_c_btn_circle::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 1000px;
  background: -webkit-gradient(linear, left top, left bottom, from(#024d90), to(#0275c4));
  background: linear-gradient(#024d90 0%, #0275c4 100%);
  opacity: 1;
  content: "";
  z-index: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.top_works_item .all_c_btn_circle::before {
  z-index: 2;
  border-color: #FFF;
}
.top_works_item_en {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
}
.top_works_item_en img {
  height: auto;
}
.top_works_item_en img._develop {
  width: clamp(0px, 39.1666666667vw, 470px);
}
@media only screen and (max-width: 767px) {
  .top_works_item_en img._develop {
    width: clamp(0px, 90.6666666667vw, 680px);
  }
}
.top_works_item_en img._consul {
  width: clamp(0px, 33vw, 396px);
}
@media only screen and (max-width: 767px) {
  .top_works_item_en img._consul {
    width: clamp(0px, 74.6666666667vw, 560px);
  }
}

/*--------------------------------------------------------------------------
   #top_about
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.top_about {
  position: relative;
  padding: 160px 0 335px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .top_about {
    padding: 100px 0 180px;
  }
}
.top_about_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .top_about_wrap {
    display: block;
  }
}
.top_about_txtwrap {
  width: 46%;
}
@media only screen and (max-width: 767px) {
  .top_about_txtwrap {
    width: 100%;
  }
}
.top_about_txtwrap .all_c_hdg {
  margin-bottom: clamp(0px, 6.6666666667vw, 80px);
}
@media only screen and (max-width: 767px) {
  .top_about_txtwrap .all_c_hdg {
    margin-bottom: 50px;
  }
}
.top_about_txtwrap_ttl {
  margin-bottom: 25px;
  font-size: clamp(0px, 2.0833333333vw, 25px);
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .top_about_txtwrap_ttl {
    font-size: 18px;
  }
}
.top_about_txtwrap_txt {
  margin-bottom: clamp(0px, 5vw, 80px);
  font-size: clamp(0px, 1.5vw, 18px);
}
@media only screen and (max-width: 767px) {
  .top_about_txtwrap_txt {
    margin-bottom: 30px;
    font-size: 16px;
  }
}
.top_about_imgwrap {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .top_about_imgwrap {
    width: 100%;
  }
}
.top_about_imgwrap_img {
  position: relative;
  top: -10%;
  width: clamp(0px, 23.5vw, 376px);
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .top_about_imgwrap_img {
    top: 0;
    width: clamp(0px, 66.6666666667vw, 500px);
  }
}
.top_about_imgwrap_img span {
  display: block;
  width: 100%;
}
.top_about_imgwrap_img span:nth-child(1) {
  position: absolute;
  top: 0;
  left: 0;
  translate: 0 0%;
}
@media only screen and (max-width: 767px) {
  .top_about_imgwrap_img span:nth-child(1) {
    position: static;
    translate: 25vw 0%;
  }
}
.top_about_imgwrap_img span:nth-child(2) {
  translate: -35% 70%;
}
@media only screen and (max-width: 767px) {
  .top_about_imgwrap_img span:nth-child(2) {
    position: static;
    translate: -25vw 0;
    margin-top: -45vw;
  }
}
.top_about_imgwrap_img span:nth-child(3) {
  position: absolute;
  top: 0;
  left: 0;
  translate: 35% 105%;
}
@media only screen and (max-width: 767px) {
  .top_about_imgwrap_img span:nth-child(3) {
    position: static;
    translate: 0 0;
    margin-top: -20vw;
  }
}
.top_about_imgwrap_img img {
  width: 100%;
  height: auto;
}

/*--------------------------------------------------------------------------
   #animation
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* top_mv
=================================================================*/
.top_mv_bg1 {
  opacity: 0;
  translate: 0 -100%;
}
.top_mv_bg2 {
  opacity: 0;
  translate: 0 100%;
}
.top_mv_bg3 {
  opacity: 0;
  translate: 0 100%;
}

.top_mv_logo_te, .top_mv_logo_dc {
  opacity: 0;
  translate: -40px 0;
}

.load-complete .top_mv_bg1 {
  opacity: 1;
  translate: 0 0;
  -webkit-transition: opacity 0.5s ease-in-out, translate 1.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.5s ease-in-out, translate 1.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.load-complete .top_mv_bg2 {
  opacity: 1;
  translate: 0 0;
  -webkit-transition: opacity 0.5s ease-in-out, translate 1.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.5s ease-in-out, translate 1.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}
.load-complete .top_mv_bg3 {
  opacity: 1;
  translate: 0 0;
  -webkit-transition: opacity 0.5s ease-in-out, translate 1.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.5s ease-in-out, translate 1.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition-delay: 2s;
          transition-delay: 2s;
}
.load-complete .top_dte_item_box {
  translate: 0 0;
  opacity: 1;
  -webkit-transition: opacity 0.6s ease-in-out, translate 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, translate 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.load-complete .top_mv_logo_te, .load-complete .top_mv_logo_dc {
  translate: 0 0;
  opacity: 1;
  -webkit-transition: opacity 1s ease-in-out, translate 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 1s ease-in-out, translate 1s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.load-complete .top_mv_logo_te {
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}
.load-complete .top_mv_logo_dc {
  -webkit-transition-delay: 1.8s;
          transition-delay: 1.8s;
}
.load-complete .top_mv_txt .char {
  display: inline-block;
  overflow: hidden;
}
.load-complete .top_mv_txt .char:nth-of-type(1) .char-text {
  -webkit-transition-delay: 2.03s;
          transition-delay: 2.03s;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.load-complete .top_mv_txt .char:nth-of-type(2) .char-text {
  -webkit-transition-delay: 2.06s;
          transition-delay: 2.06s;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.load-complete .top_mv_txt .char:nth-of-type(3) .char-text {
  -webkit-transition-delay: 2.09s;
          transition-delay: 2.09s;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.load-complete .top_mv_txt .char:nth-of-type(4) .char-text {
  -webkit-transition-delay: 2.12s;
          transition-delay: 2.12s;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.load-complete .top_mv_txt .char:nth-of-type(5) .char-text {
  -webkit-transition-delay: 2.15s;
          transition-delay: 2.15s;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.load-complete .top_mv_txt .char:nth-of-type(6) .char-text {
  -webkit-transition-delay: 2.18s;
          transition-delay: 2.18s;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.load-complete .top_mv_txt .char:nth-of-type(7) .char-text {
  -webkit-transition-delay: 2.21s;
          transition-delay: 2.21s;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.load-complete .top_mv_txt .char:nth-of-type(8) .char-text {
  -webkit-transition-delay: 2.24s;
          transition-delay: 2.24s;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.load-complete .top_mv_txt .char:nth-of-type(9) .char-text {
  -webkit-transition-delay: 2.27s;
          transition-delay: 2.27s;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.load-complete .top_mv_txt .char:nth-of-type(10) .char-text {
  -webkit-transition-delay: 2.3s;
          transition-delay: 2.3s;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.load-complete .top_mv_txt .char:nth-of-type(11) .char-text {
  -webkit-transition-delay: 2.33s;
          transition-delay: 2.33s;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.load-complete .top_mv_txt .char:nth-of-type(12) .char-text {
  -webkit-transition-delay: 2.36s;
          transition-delay: 2.36s;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.load-complete .top_mv_txt .char:nth-of-type(13) .char-text {
  -webkit-transition-delay: 2.39s;
          transition-delay: 2.39s;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.load-complete .top_mv_txt .char:nth-of-type(14) .char-text {
  -webkit-transition-delay: 2.42s;
          transition-delay: 2.42s;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.load-complete .top_mv_txt .char:nth-of-type(15) .char-text {
  -webkit-transition-delay: 2.45s;
          transition-delay: 2.45s;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.load-complete .top_mv_txt .char:nth-of-type(16) .char-text {
  -webkit-transition-delay: 2.48s;
          transition-delay: 2.48s;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.load-complete .top_mv_txt .char:nth-of-type(17) .char-text {
  -webkit-transition-delay: 2.51s;
          transition-delay: 2.51s;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.load-complete .top_mv_txt .char:nth-of-type(18) .char-text {
  -webkit-transition-delay: 2.54s;
          transition-delay: 2.54s;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.load-complete .top_mv_txt .char:nth-of-type(19) .char-text {
  -webkit-transition-delay: 2.57s;
          transition-delay: 2.57s;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.load-complete .top_mv_txt .char:nth-of-type(20) .char-text {
  -webkit-transition-delay: 2.6s;
          transition-delay: 2.6s;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.load-complete .top_mv_txt .char:nth-of-type(21) .char-text {
  -webkit-transition-delay: 2.63s;
          transition-delay: 2.63s;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.load-complete .top_mv_txt .char:nth-of-type(22) .char-text {
  -webkit-transition-delay: 2.66s;
          transition-delay: 2.66s;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.load-complete .top_mv_txt .char:nth-of-type(23) .char-text {
  -webkit-transition-delay: 2.69s;
          transition-delay: 2.69s;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.load-complete .top_mv_txt .char:nth-of-type(24) .char-text {
  -webkit-transition-delay: 2.72s;
          transition-delay: 2.72s;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.load-complete .top_mv_txt .char:nth-of-type(25) .char-text {
  -webkit-transition-delay: 2.75s;
          transition-delay: 2.75s;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.load-complete .top_mv_txt .char:nth-of-type(26) .char-text {
  -webkit-transition-delay: 2.78s;
          transition-delay: 2.78s;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.load-complete .top_mv_txt .char:nth-of-type(27) .char-text {
  -webkit-transition-delay: 2.81s;
          transition-delay: 2.81s;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.load-complete .top_mv_txt .char:nth-of-type(28) .char-text {
  -webkit-transition-delay: 2.84s;
          transition-delay: 2.84s;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.load-complete .top_mv_txt .char:nth-of-type(29) .char-text {
  -webkit-transition-delay: 2.87s;
          transition-delay: 2.87s;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.load-complete .top_mv_txt .char:nth-of-type(30) .char-text {
  -webkit-transition-delay: 2.9s;
          transition-delay: 2.9s;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.load-complete .top_mv_txt svg #top_mv_txt #top_mv_txt1 {
  opacity: 1;
  translate: 0 0;
  -webkit-transition: opacity 0.6s ease-in-out, translate 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, translate 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition-delay: 2.03s;
          transition-delay: 2.03s;
}
.load-complete .top_mv_txt svg #top_mv_txt #top_mv_txt2 {
  opacity: 1;
  translate: 0 0;
  -webkit-transition: opacity 0.6s ease-in-out, translate 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, translate 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition-delay: 2.06s;
          transition-delay: 2.06s;
}
.load-complete .top_mv_txt svg #top_mv_txt #top_mv_txt3 {
  opacity: 1;
  translate: 0 0;
  -webkit-transition: opacity 0.6s ease-in-out, translate 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, translate 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition-delay: 2.09s;
          transition-delay: 2.09s;
}
.load-complete .top_mv_txt svg #top_mv_txt #top_mv_txt4 {
  opacity: 1;
  translate: 0 0;
  -webkit-transition: opacity 0.6s ease-in-out, translate 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, translate 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition-delay: 2.12s;
          transition-delay: 2.12s;
}
.load-complete .top_mv_txt svg #top_mv_txt #top_mv_txt5 {
  opacity: 1;
  translate: 0 0;
  -webkit-transition: opacity 0.6s ease-in-out, translate 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, translate 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition-delay: 2.15s;
          transition-delay: 2.15s;
}
.load-complete .top_mv_txt svg #top_mv_txt #top_mv_txt6 {
  opacity: 1;
  translate: 0 0;
  -webkit-transition: opacity 0.6s ease-in-out, translate 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, translate 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition-delay: 2.18s;
          transition-delay: 2.18s;
}
.load-complete .top_mv_txt svg #top_mv_txt #top_mv_txt7 {
  opacity: 1;
  translate: 0 0;
  -webkit-transition: opacity 0.6s ease-in-out, translate 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, translate 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition-delay: 2.21s;
          transition-delay: 2.21s;
}
.load-complete .top_mv_txt svg #top_mv_txt #top_mv_txt8 {
  opacity: 1;
  translate: 0 0;
  -webkit-transition: opacity 0.6s ease-in-out, translate 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, translate 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition-delay: 2.24s;
          transition-delay: 2.24s;
}
.load-complete .top_mv_txt svg #top_mv_txt #top_mv_txt9 {
  opacity: 1;
  translate: 0 0;
  -webkit-transition: opacity 0.6s ease-in-out, translate 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, translate 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition-delay: 2.27s;
          transition-delay: 2.27s;
}
.load-complete .top_mv_txt svg #top_mv_txt #top_mv_txt10 {
  opacity: 1;
  translate: 0 0;
  -webkit-transition: opacity 0.6s ease-in-out, translate 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, translate 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition-delay: 2.3s;
          transition-delay: 2.3s;
}
.load-complete .top_mv_txt svg #top_mv_txt #top_mv_txt11 {
  opacity: 1;
  translate: 0 0;
  -webkit-transition: opacity 0.6s ease-in-out, translate 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, translate 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition-delay: 2.33s;
          transition-delay: 2.33s;
}
.load-complete .top_mv_txt svg #top_mv_txt #top_mv_txt12 {
  opacity: 1;
  translate: 0 0;
  -webkit-transition: opacity 0.6s ease-in-out, translate 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, translate 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition-delay: 2.36s;
          transition-delay: 2.36s;
}
.load-complete .top_mv_txt svg #top_mv_txt #top_mv_txt13 {
  opacity: 1;
  translate: 0 0;
  -webkit-transition: opacity 0.6s ease-in-out, translate 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, translate 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition-delay: 2.39s;
          transition-delay: 2.39s;
}
.load-complete .top_mv_txt svg #top_mv_txt #top_mv_txt14 {
  opacity: 1;
  translate: 0 0;
  -webkit-transition: opacity 0.6s ease-in-out, translate 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, translate 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition-delay: 2.42s;
          transition-delay: 2.42s;
}
.load-complete .top_mv_txt svg #top_mv_txt #top_mv_txt15 {
  opacity: 1;
  translate: 0 0;
  -webkit-transition: opacity 0.6s ease-in-out, translate 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, translate 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition-delay: 2.45s;
          transition-delay: 2.45s;
}
.load-complete .top_mv_txt svg #top_mv_txt #top_mv_txt16 {
  opacity: 1;
  translate: 0 0;
  -webkit-transition: opacity 0.6s ease-in-out, translate 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, translate 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition-delay: 2.48s;
          transition-delay: 2.48s;
}
.load-complete .top_mv_txt svg #top_mv_txt #top_mv_txt17 {
  opacity: 1;
  translate: 0 0;
  -webkit-transition: opacity 0.6s ease-in-out, translate 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, translate 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition-delay: 2.51s;
          transition-delay: 2.51s;
}
.load-complete .top_mv_txt svg #top_mv_txt #top_mv_txt18 {
  opacity: 1;
  translate: 0 0;
  -webkit-transition: opacity 0.6s ease-in-out, translate 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, translate 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition-delay: 2.54s;
          transition-delay: 2.54s;
}
.load-complete .top_mv_txt svg #top_mv_txt #top_mv_txt19 {
  opacity: 1;
  translate: 0 0;
  -webkit-transition: opacity 0.6s ease-in-out, translate 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, translate 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition-delay: 2.57s;
          transition-delay: 2.57s;
}
.load-complete .top_mv_txt svg #top_mv_txt #top_mv_txt20 {
  opacity: 1;
  translate: 0 0;
  -webkit-transition: opacity 0.6s ease-in-out, translate 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, translate 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition-delay: 2.6s;
          transition-delay: 2.6s;
}
.load-complete .top_mv_txt svg #top_mv_txt #top_mv_txt21 {
  opacity: 1;
  translate: 0 0;
  -webkit-transition: opacity 0.6s ease-in-out, translate 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, translate 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition-delay: 2.63s;
          transition-delay: 2.63s;
}
.load-complete .top_mv_txt svg #top_mv_txt #top_mv_txt22 {
  opacity: 1;
  translate: 0 0;
  -webkit-transition: opacity 0.6s ease-in-out, translate 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, translate 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition-delay: 2.66s;
          transition-delay: 2.66s;
}
.load-complete .top_mv_txt svg #top_mv_txt #top_mv_txt23 {
  opacity: 1;
  translate: 0 0;
  -webkit-transition: opacity 0.6s ease-in-out, translate 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, translate 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition-delay: 2.69s;
          transition-delay: 2.69s;
}
.load-complete .top_mv_txt svg #top_mv_txt #top_mv_txt24 {
  opacity: 1;
  translate: 0 0;
  -webkit-transition: opacity 0.6s ease-in-out, translate 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, translate 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition-delay: 2.72s;
          transition-delay: 2.72s;
}
.load-complete .top_mv_txt svg #top_mv_txt #top_mv_txt25 {
  opacity: 1;
  translate: 0 0;
  -webkit-transition: opacity 0.6s ease-in-out, translate 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, translate 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition-delay: 2.75s;
          transition-delay: 2.75s;
}
.load-complete .top_mv_txt svg #top_mv_txt #top_mv_txt26 {
  opacity: 1;
  translate: 0 0;
  -webkit-transition: opacity 0.6s ease-in-out, translate 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, translate 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition-delay: 2.78s;
          transition-delay: 2.78s;
}
.load-complete .top_mv_txt svg #top_mv_txt #top_mv_txt27 {
  opacity: 1;
  translate: 0 0;
  -webkit-transition: opacity 0.6s ease-in-out, translate 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, translate 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition-delay: 2.81s;
          transition-delay: 2.81s;
}
.load-complete .top_mv_txt svg #top_mv_txt #top_mv_txt28 {
  opacity: 1;
  translate: 0 0;
  -webkit-transition: opacity 0.6s ease-in-out, translate 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, translate 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition-delay: 2.84s;
          transition-delay: 2.84s;
}
.load-complete .top_mv_txt svg #top_mv_txt #top_mv_txt29 {
  opacity: 1;
  translate: 0 0;
  -webkit-transition: opacity 0.6s ease-in-out, translate 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, translate 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition-delay: 2.87s;
          transition-delay: 2.87s;
}
.load-complete .top_mv_txt svg #top_mv_txt #top_mv_txt30 {
  opacity: 1;
  translate: 0 0;
  -webkit-transition: opacity 0.6s ease-in-out, translate 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, translate 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition-delay: 2.9s;
          transition-delay: 2.9s;
}

.top_mv #top_mv_obj01.is-anim #top_mv_obj01-1p {
  opacity: 1;
  stroke-dashoffset: 500;
  -webkit-animation: drawLine 0.6s ease 0.5s forwards;
          animation: drawLine 0.6s ease 0.5s forwards;
}
.top_mv #top_mv_obj01.is-anim #top_mv_obj01-2p {
  opacity: 1;
  stroke-dashoffset: 1000;
  -webkit-animation: drawLine 1s ease 0.8s forwards;
          animation: drawLine 1s ease 0.8s forwards;
}
.top_mv #top_mv_obj01.is-anim #top_mv_obj01-3p {
  opacity: 1;
  stroke-dashoffset: 1200;
  -webkit-animation: drawLine 1s ease 1.25s forwards;
          animation: drawLine 1s ease 1.25s forwards;
}
.top_mv #top_mv_obj01.is-anim #top_mv_obj01-base {
  opacity: 0;
  -webkit-animation: objOpacity 0s ease 2.1s forwards;
          animation: objOpacity 0s ease 2.1s forwards;
}
.top_mv #top_mv_obj01.is-anim #top_mv_obj01-1p,
.top_mv #top_mv_obj01.is-anim #top_mv_obj01-2p,
.top_mv #top_mv_obj01.is-anim #top_mv_obj01-3p {
  visibility: hidden;
  -webkit-transition: visibility 0s 2.1s;
  transition: visibility 0s 2.1s;
}

.top_mv #top_mv_obj02.is-anim #logo_dc_st1 {
  stroke-dashoffset: 800;
  -webkit-animation: drawLine 1.6s ease 0.5s forwards;
          animation: drawLine 1.6s ease 0.5s forwards;
}

.top_mv #top_mv_obj01.is-animoff {
  opacity: 0;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}
.top_mv #top_mv_obj01.is-animoff #top_mv_obj01-base {
  opacity: 1;
}
.top_mv #top_mv_obj01.is-animoff #top_mv_obj01-1p,
.top_mv #top_mv_obj01.is-animoff #top_mv_obj01-2p,
.top_mv #top_mv_obj01.is-animoff #top_mv_obj01-3p {
  opacity: 0;
  visibility: visible;
  stroke-dashoffset: 0;
}

.top_mv #top_mv_obj02.is-animoff {
  opacity: 0;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}
.top_mv #top_mv_obj02.is-animoff #logo_dc_st1 {
  stroke-dashoffset: 0;
}

@-webkit-keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes objOpacity {
  to {
    opacity: 1;
  }
}
@keyframes objOpacity {
  to {
    opacity: 1;
  }
}
/* top_dte_list
=================================================================*/
.top_dte_list.is-custom .top_dte_item_box {
  translate: 0 25%;
  opacity: 0;
}

.top_dte_list.is-custom.is-animated .top_dte_item_box {
  translate: 0 0;
  opacity: 1;
  -webkit-transition: opacity 0.6s ease-in-out, translate 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, translate 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.top_dte_list.is-custom.is-animated .top_dte_item:nth-child(1) .top_dte_item_box {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.top_dte_list.is-custom.is-animated .top_dte_item:nth-child(2) .top_dte_item_box {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.top_dte_list.is-custom.is-animated .top_dte_item:nth-child(3) .top_dte_item_box {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

/* top_pro_main pc
=================================================================*/
.top_pro_main.is-custom svg #pro_main_group {
  opacity: 0;
}
.top_pro_main.is-custom svg #pro_main_line {
  opacity: 0;
}
.top_pro_main.is-custom svg #pro_main_icon1,
.top_pro_main.is-custom svg #pro_main_icon2,
.top_pro_main.is-custom svg #pro_main_icon3,
.top_pro_main.is-custom svg #pro_main_icon4,
.top_pro_main.is-custom svg #pro_main_icon5 {
  opacity: 0;
}
.top_pro_main.is-custom svg #pro_main_txt1,
.top_pro_main.is-custom svg #pro_main_txt2,
.top_pro_main.is-custom svg #pro_main_txt3,
.top_pro_main.is-custom svg #pro_main_txt4,
.top_pro_main.is-custom svg #pro_main_txt5 {
  opacity: 0;
}

.top_pro_main.is-custom.is-animated svg #pro_main_group {
  opacity: 1;
  -webkit-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.top_pro_main.is-custom.is-animated svg #pro_main_line {
  opacity: 1;
  -webkit-transition: opacity 2s ease-in-out;
  transition: opacity 2s ease-in-out;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.top_pro_main.is-custom.is-animated svg #pro_main_icon1,
.top_pro_main.is-custom.is-animated svg #pro_main_icon2,
.top_pro_main.is-custom.is-animated svg #pro_main_icon3,
.top_pro_main.is-custom.is-animated svg #pro_main_icon4,
.top_pro_main.is-custom.is-animated svg #pro_main_icon5 {
  opacity: 1;
  -webkit-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
}
.top_pro_main.is-custom.is-animated svg #pro_main_icon1 {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.top_pro_main.is-custom.is-animated svg #pro_main_icon2 {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
.top_pro_main.is-custom.is-animated svg #pro_main_icon3 {
  -webkit-transition-delay: 1.4s;
          transition-delay: 1.4s;
}
.top_pro_main.is-custom.is-animated svg #pro_main_icon4 {
  -webkit-transition-delay: 1.6s;
          transition-delay: 1.6s;
}
.top_pro_main.is-custom.is-animated svg #pro_main_icon5 {
  -webkit-transition-delay: 1.8s;
          transition-delay: 1.8s;
}
.top_pro_main.is-custom.is-animated svg #pro_main_txt1,
.top_pro_main.is-custom.is-animated svg #pro_main_txt2,
.top_pro_main.is-custom.is-animated svg #pro_main_txt3,
.top_pro_main.is-custom.is-animated svg #pro_main_txt4,
.top_pro_main.is-custom.is-animated svg #pro_main_txt5 {
  opacity: 1;
  -webkit-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
}
.top_pro_main.is-custom.is-animated svg #pro_main_txt1 {
  -webkit-transition-delay: 2s;
          transition-delay: 2s;
}
.top_pro_main.is-custom.is-animated svg #pro_main_txt2 {
  -webkit-transition-delay: 2.1s;
          transition-delay: 2.1s;
}
.top_pro_main.is-custom.is-animated svg #pro_main_txt3 {
  -webkit-transition-delay: 2.2s;
          transition-delay: 2.2s;
}
.top_pro_main.is-custom.is-animated svg #pro_main_txt4 {
  -webkit-transition-delay: 2.3s;
          transition-delay: 2.3s;
}
.top_pro_main.is-custom.is-animated svg #pro_main_txt5 {
  -webkit-transition-delay: 2.4s;
          transition-delay: 2.4s;
}

/* top_pro_main sp
=================================================================*/
/* top_works_list
=================================================================*/
.top_works_list.is-custom .top_works_item {
  translate: 0 25%;
  opacity: 0;
}

.top_works_list.is-custom.is-animated .top_works_item {
  translate: 0 0;
  opacity: 1;
  -webkit-transition: opacity 0.6s ease-in-out, translate 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, translate 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.top_works_list.is-custom.is-animated .top_works_item:nth-child(1) {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.top_works_list.is-custom.is-animated .top_works_item:nth-child(2) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

/* top_about_imgwrap
=================================================================*/
.top_about_imgwrap.is-custom .top_about_imgwrap_img span img {
  translate: 0 25%;
  opacity: 0;
}

.top_about_imgwrap.is-custom.is-animated .top_about_imgwrap_img span img {
  translate: 0 0;
  opacity: 1;
  -webkit-transition: opacity 0.6s ease-in-out, translate 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, translate 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.top_about_imgwrap.is-custom.is-animated .top_about_imgwrap_img span:nth-child(1) img {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.top_about_imgwrap.is-custom.is-animated .top_about_imgwrap_img span:nth-child(2) img {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.top_about_imgwrap.is-custom.is-animated .top_about_imgwrap_img span:nth-child(3) img {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

/*--------------------------------------------------------------------------
   overwrite
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
.contact .all_m_head {
  background: url(../images/contact_head_bg.jpg) no-repeat 50% 0/cover;
}
@media only screen and (max-width: 767px) {
  .contact .all_m_head {
    background-position: 66% 0;
  }
}

/*--------------------------------------------------------------------------
   common
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/*--------------------------------------------------------------------------
   #contact_area
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.contact_area {
  position: relative;
  padding: 232px 0 238px;
  margin-top: -100px;
}
@media only screen and (max-width: 767px) {
  .contact_area {
    padding: 212px 0 137px;
    margin-top: -120px;
  }
}
.contact_area::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#27dbfc), to(#0058b9));
  background: linear-gradient(#27dbfc 0%, #0058b9 100%);
  opacity: 0.1;
  content: "";
  z-index: 1;
}
.contact_area_inline {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: clamp(0px, 4.1666666667vw, 50px) clamp(0px, 8.3333333333vw, 100px);
  border-radius: 15px;
  background-color: #fff;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .contact_area_inline {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
    padding: 45px 40px;
  }
}
.contact_area_hdg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .contact_area_hdg {
    width: 100%;
  }
}
.contact_area_hdg ._en {
  font-family: "Prata", serif;
  font-weight: 400;
  font-size: clamp(26px, 3.3333333333vw, 40px);
  color: #013985;
  line-height: 1;
  text-indent: -0.05em;
}
@media only screen and (max-width: 767px) {
  .contact_area_hdg ._en {
    font-size: 32px;
  }
}
.contact_area_hdg ._ja {
  font-weight: 700;
  font-size: clamp(12px, 1.5vw, 18px);
  color: #013985;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .contact_area_hdg ._ja {
    font-size: 15px;
  }
}
.contact_area_txt {
  width: 50%;
  font-size: clamp(15px, 1.8333333333vw, 22px);
}
@media only screen and (max-width: 767px) {
  .contact_area_txt {
    width: 100%;
    font-size: 20px;
  }
}

/*--------------------------------------------------------------------------
   #contact_main
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.contact_main {
  margin-top: -90px;
  padding: 150px 0 345px;
  border-radius: 90px 90px 0 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#004086), to(#27dbfc));
  background: linear-gradient(#004086 0%, #27dbfc 100%);
}
@media only screen and (max-width: 767px) {
  .contact_main {
    margin-top: -45px;
    padding: 110px 0 260px;
    border-radius: 45px 45px 0 0;
  }
}
.contact_main .all_c_hdg {
  margin-bottom: 100px;
  color: #fff;
}
.contact_main_inline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media only screen and (max-width: 767px) {
  .contact_main_inline {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.contact_main_inline .contactbox {
  padding: clamp(30px, 4.5833333333vw, 55px) clamp(20px, 2.9166666667vw, 35px);
  width: calc(50% - 20px);
  background-color: #fff;
  border-radius: 15px;
}
@media only screen and (max-width: 767px) {
  .contact_main_inline .contactbox {
    width: 100%;
  }
}
.contact_main_inline .contactbox_logo {
  margin-bottom: 48px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .contact_main_inline .contactbox_logo {
    width: auto;
    height: 32px;
  }
}
.contact_main_inline .contactbox_logo img {
  max-width: 100%;
  height: auto;
}
@media only screen and (max-width: 767px) {
  .contact_main_inline .contactbox_logo img {
    width: auto;
    height: 40px;
  }
}
.contact_main_inline .contactbox_txt {
  width: 90%;
  margin: 0 auto 30px;
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  .contact_main_inline .contactbox_txt {
    width: 100%;
    font-size: 16px;
  }
}
.contact_main_inline .contactbox_btn {
  max-width: 373px;
  width: 100%;
  height: 86px;
  margin: 0 auto 12px;
}
@media only screen and (max-width: 767px) {
  .contact_main_inline .contactbox_btn {
    max-width: 400px;
    height: 72px;
  }
}
.contact_main_inline .contactbox_btn .all_c_btn {
  width: 100%;
  height: 100%;
  font-size: clamp(14px, 1.5vw, 18px);
}
@media only screen and (max-width: 767px) {
  .contact_main_inline .contactbox_btn .all_c_btn {
    font-size: 16px;
  }
}
.contact_main_inline .contactbox_btn .all_c_btn span {
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  .contact_main_inline .contactbox_btn .all_c_btn span {
    translate: 0 -0.1em;
  }
}
.contact_main_inline .contactbox_btn .all_c_btn span::before {
  position: absolute;
  top: 50%;
  left: -20px;
  translate: -100% -50%;
  display: block;
  width: 32px;
  height: 24px;
  background-image: url(../images/all_icon_mail_w.svg);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
}
@media only screen and (max-width: 767px) {
  .contact_main_inline .contactbox_btn .all_c_btn span::before {
    left: -15px;
    width: 26px;
    height: 20px;
  }
}
.mode-pc .contact_main_inline .contactbox_btn .all_c_btn:hover::before {
  scale: 100;
}
.mode-pc .contact_main_inline .contactbox_btn .all_c_btn:hover span::before {
  background-image: url(../images/all_icon_mail_b.svg);
}
.contact_main_inline .contactbox_name {
  position: relative;
  text-align: center;
  margin: 50px 0 25px;
}
@media only screen and (max-width: 767px) {
  .contact_main_inline .contactbox_name {
    margin-bottom: 20px;
  }
}
.contact_main_inline .contactbox_name::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  margin-bottom: 25px;
  background-color: #000;
  content: "";
}
.contact_main_inline .contactbox_name span {
  position: relative;
  display: inline-block;
  padding: 0 clamp(15px, 1.6666666667vw, 20px);
  font-size: clamp(16px, 1.6666666667vw, 20px);
  background-color: #fff;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .contact_main_inline .contactbox_name span {
    padding: 0 14px;
    font-size: 18px;
  }
}
.contact_main_inline .contactbox_time {
  margin-bottom: 20px;
  font-size: 16px;
  text-align: center;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .contact_main_inline .contactbox_time {
    margin-bottom: 20px;
    font-size: 16px;
  }
}
.contact_main_inline .contactbox_tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: clamp(12px, 1.5vw, 18px) clamp(24px, 2.9166666667vw, 35px);
  background-color: #E8F6FF;
  border-radius: 10px;
}
@media only screen and (max-width: 767px) {
  .contact_main_inline .contactbox_tel {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px;
  }
}
.contact_main_inline .contactbox_tel:not(:first-child) {
  margin-top: 15px;
}
.contact_main_inline .contactbox_tel_name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  width: 40%;
  font-size: clamp(13px, 1.6666666667vw, 20px);
  font-weight: 700;
}
@media only screen and (max-width: 1000px) {
  .contact_main_inline .contactbox_tel_name {
    width: 38%;
  }
}
@media only screen and (max-width: 767px) {
  .contact_main_inline .contactbox_tel_name {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    margin-bottom: 15px;
    font-size: 22px;
    text-align: center;
  }
}
.contact_main_inline .contactbox_tel_name::before {
  position: relative;
  width: 32px;
  height: 32px;
  background: url(../images/all_icon_tel.svg);
  background-size: contain;
  content: "";
}
@media only screen and (max-width: 1000px) {
  .contact_main_inline .contactbox_tel_name::before {
    width: 25px;
    height: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .contact_main_inline .contactbox_tel_name::before {
    width: 24px;
    height: 24px;
  }
}
.contact_main_inline .contactbox_tel_list {
  width: 62%;
}
@media only screen and (max-width: 1000px) {
  .contact_main_inline .contactbox_tel_list {
    width: 65%;
  }
}
@media only screen and (max-width: 767px) {
  .contact_main_inline .contactbox_tel_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
  }
}
.contact_main_inline .contactbox_tel_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(10px, 1.6666666667vw, 20px);
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .contact_main_inline .contactbox_tel_item {
    gap: 12px;
  }
}
.contact_main_inline .contactbox_tel_item:not(:first-child) {
  margin-top: clamp(10px, 1.25vw, 15px);
}
@media only screen and (max-width: 767px) {
  .contact_main_inline .contactbox_tel_item:not(:first-child) {
    margin-top: 15px;
  }
}
.contact_main_inline .contactbox_tel_item span {
  font-weight: 700;
}
.contact_main_inline .contactbox_tel_item span:nth-child(1) {
  font-size: clamp(11px, 1.3333333333vw, 16px);
}
@media only screen and (max-width: 767px) {
  .contact_main_inline .contactbox_tel_item span:nth-child(1) {
    font-size: 14px;
  }
}
.contact_main_inline .contactbox_tel_item span:nth-child(2) {
  font-size: clamp(18px, 2.3333333333vw, 28px);
}
@media only screen and (max-width: 767px) {
  .contact_main_inline .contactbox_tel_item span:nth-child(2) {
    font-size: 24px;
  }
}

/*--------------------------------------------------------------------------
   #animation
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/*--------------------------------------------------------------------------
   overwrite
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
.business .all_m_head {
  background: url(../images/business_head_bg.jpg) no-repeat 50% 0/cover;
}
/*--------------------------------------------------------------------------
   common
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/*--------------------------------------------------------------------------
   #business_lead
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.business_lead {
  overflow: hidden;
  padding-top: clamp(0px, 4.5625vw, 73px);
}
@media only screen and (max-width: 767px) {
  .business_lead {
    padding-top: 96px;
  }
}
.business_lead_body {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: clamp(0px, 40.0625vw, 641px);
  padding-left: clamp(0px, 8.3333333333vw, 100px);
}
@media only screen and (max-width: 767px) {
  .business_lead_body {
    display: block;
    height: auto;
    padding-left: 0;
  }
}
.business_lead_txtwrap {
  width: 42%;
}
@media only screen and (max-width: 767px) {
  .business_lead_txtwrap {
    width: auto;
  }
}
.business_lead_logo {
  margin-bottom: clamp(0px, 6.4166666667vw, 77px);
}
@media only screen and (max-width: 767px) {
  .business_lead_logo {
    margin-bottom: 35px;
  }
}
.business_lead_logo img {
  width: clamp(0px, 25.5vw, 408px);
  height: auto;
}
@media only screen and (max-width: 767px) {
  .business_lead_logo img {
    width: 276px;
  }
}
.business_lead_txt {
  font-size: clamp(0px, 1.3333333333vw, 16px);
  line-height: 2;
}
@media only screen and (max-width: 767px) {
  .business_lead_txt {
    margin: 30px 0 40px;
    font-size: 16px;
    line-height: 2;
  }
}
.business_lead_img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media only screen and (max-width: 767px) {
  .business_lead_img {
    margin-left: -20px;
    width: 142%;
  }
}
.business_lead_img img {
  position: absolute;
  top: 0;
  left: clamp(0px, 35.3125vw, 565px);
  width: clamp(0px, 53.1875vw, 851px);
  height: auto;
}
@media only screen and (max-width: 767px) {
  .business_lead_img img {
    position: static;
    width: 100%;
  }
}

/*--------------------------------------------------------------------------
   #business_group
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.business_group {
  position: relative;
  padding: clamp(0px, 8.3333333333vw, 100px) 0 clamp(0px, 9.1666666667vw, 110px);
  overflow: hidden;
}
.business_group_img {
  position: relative;
  z-index: 1;
  padding-bottom: 4.25vw;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(20%, rgba(255, 255, 255, 0)), to(rgba(39, 219, 252, 0.42)));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 20%, rgba(39, 219, 252, 0.42) 100%);
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .business_group_img {
    padding-bottom: 50px;
    text-align: left;
  }
}
@media only screen and (max-width: 767px) {
  .business_group_img figure {
    width: 200%;
    margin-left: -6.6vw;
  }
}
.business_group_img figure img {
  max-width: 100%;
  height: auto;
}
.business_group_contents {
  position: relative;
  z-index: 2;
  margin-top: -5.87vw;
  padding-top: clamp(0px, 9.375vw, 150px);
  background: #fff;
  border-radius: clamp(0px, 4.75vw, 76px);
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .business_group_contents {
    margin-top: -78px;
    padding-top: 70px;
    border-radius: clamp(0px, 10.6666666667vw, 80px);
  }
}
.business_group_title {
  font-size: clamp(0px, 1.8333333333vw, 22px);
  font-weight: 700;
  color: #fff;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .business_group_title {
    margin-bottom: 50px;
    font-size: 18px;
  }
}
.business_group_title span {
  display: inline-block;
  padding: 8px 160px;
  background: -webkit-gradient(linear, left top, right top, from(#fff), color-stop(20%, #0275C4), color-stop(80%, #0275C4), to(#fff));
  background: linear-gradient(to right, #fff 0%, #0275C4 20%, #0275C4 80%, #fff 100%);
}
@media only screen and (max-width: 767px) {
  .business_group_title span {
    width: 100%;
    padding: 12px 10px;
    background: -webkit-gradient(linear, left top, right top, from(#fff), color-stop(15%, #0275C4), color-stop(85%, #0275C4), to(#fff));
    background: linear-gradient(to right, #fff 0%, #0275C4 15%, #0275C4 85%, #fff 100%);
    line-height: 1.2;
  }
}
.business_group_main_img img,
.business_group_main_img svg {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 767px) {
  .business_group_main_img img,
  .business_group_main_img svg {
    width: 190vw;
    translate: -45vw 0;
  }
}
.business_group_main_copy {
  font-size: 18px;
  font-weight: 700;
  line-height: 2;
}
.business_group_main_list {
  display: block;
}
.business_group_main_item:not(:first-child) {
  margin-top: 60px;
}
.business_group_main_item .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.business_group_main_item .head_ttl {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.business_group_main_item .head_ttl .en {
  width: 55px;
  font-family: "Prata", serif;
  font-size: 70px;
  font-style: italic;
  font-weight: 300;
  color: #0275C4;
  line-height: 1;
}
.business_group_main_item .head_ttl .ja {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}
.business_group_main_item .head_icon {
  width: 95px;
}
.business_group_main_item .txt {
  margin-top: 10px;
  font-size: 16px;
}

/*--------------------------------------------------------------------------
   #business_development
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.business_development {
  position: relative;
  margin-top: -5vw;
  background: -webkit-gradient(linear, left top, left bottom, from(#EBFBFF), to(#C1E5FF));
  background: linear-gradient(#EBFBFF 0%, #C1E5FF 100%);
  border-radius: clamp(0px, 5.625vw, 90px) clamp(0px, 5.625vw, 90px) 0 0;
  overflow: hidden;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .business_development {
    margin-top: -50px;
    border-radius: clamp(0px, 10.6666666667vw, 80px) clamp(0px, 10.6666666667vw, 80px) 0 0;
  }
}
.business_development_wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: clamp(0px, 9.1875vw, 147px) 0 clamp(0px, 15.625vw, 250px);
}
@media only screen and (max-width: 767px) {
  .business_development_wrap {
    display: block;
    padding: 100px 0 0;
  }
}
.business_development_hdgwrap {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .business_development_hdgwrap {
    width: auto;
  }
}
.business_development_hdgwrap .all_c_hdg {
  margin-bottom: clamp(0px, 3.75vw, 60px);
}
@media only screen and (max-width: 767px) {
  .business_development_hdgwrap .all_c_hdg {
    margin-bottom: 50px;
  }
}
.business_development_text {
  font-size: clamp(0px, 1.5vw, 18px);
}
@media only screen and (max-width: 767px) {
  .business_development_text {
    font-size: 16px;
    line-height: 2;
  }
}
.business_development_logo {
  width: clamp(0px, 24.25vw, 291px);
  margin-top: clamp(0px, 2.9166666667vw, 35px);
}
@media only screen and (max-width: 767px) {
  .business_development_logo {
    width: 202px;
    margin-top: 30px;
  }
}
.business_development_logo img {
  width: 100%;
  height: auto;
}
.business_development_mantion {
  margin-top: clamp(0px, 4.1666666667vw, 50px);
  background: #fff;
  border-radius: 15px;
  padding: 5.8% 7.3%;
}
@media only screen and (max-width: 767px) {
  .business_development_mantion {
    width: 100%;
    margin-top: 32px;
    border-radius: 12px;
    padding: 32px 20px;
  }
}
.business_development_mantion_title {
  margin-bottom: clamp(0px, 0.8333333333vw, 10px);
  font-size: clamp(0px, 1.5vw, 18px);
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .business_development_mantion_title {
    font-size: 18px;
  }
}
.business_development_mantion_item {
  font-size: clamp(0px, 1.1666666667vw, 14px);
  line-height: 2.2;
}
@media only screen and (max-width: 767px) {
  .business_development_mantion_item {
    font-size: 13px;
    letter-spacing: -0.01em;
  }
}
.business_development_gallerywrap {
  position: absolute;
  top: 0;
  left: calc(50% + 6.25vw);
  width: 35.87vw;
}
@media only screen and (max-width: 767px) {
  .business_development_gallerywrap {
    position: static;
    width: auto;
  }
}
.business_development_gallery {
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .business_development_gallery {
    margin: 64px -20px 0;
  }
}
.business_development_gallery._pc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .business_development_gallery._pc {
    display: none;
  }
}
.business_development_gallery._sp {
  display: none;
}
@media only screen and (max-width: 767px) {
  .business_development_gallery._sp {
    display: block;
  }
}
.business_development_gallery img {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 767px) {
  .business_development_gallery img {
    width: auto;
    height: 254px;
  }
}
.business_development_gallery_left {
  width: 50%;
  padding-right: 1%;
}
@media only screen and (max-width: 767px) {
  .business_development_gallery_left {
    width: auto;
  }
}
.business_development_gallery_left img:first-child {
  -webkit-animation: loop-left1 100s -50s linear infinite;
          animation: loop-left1 100s -50s linear infinite;
}
.business_development_gallery_left img:last-child {
  -webkit-animation: loop-left2 100s linear infinite;
          animation: loop-left2 100s linear infinite;
}
@-webkit-keyframes loop-left1 {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  to {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}
@keyframes loop-left1 {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  to {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}
@-webkit-keyframes loop-left2 {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-200%);
            transform: translateY(-200%);
  }
}
@keyframes loop-left2 {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-200%);
            transform: translateY(-200%);
  }
}
.business_development_gallery_right {
  width: 50%;
  padding-left: 1%;
}
@media only screen and (max-width: 767px) {
  .business_development_gallery_right {
    width: auto;
  }
}
.business_development_gallery_right img:first-child {
  -webkit-animation: loop-right1 100s -50s linear infinite;
          animation: loop-right1 100s -50s linear infinite;
}
.business_development_gallery_right img:last-child {
  -webkit-animation: loop-right2 100s linear infinite;
          animation: loop-right2 100s linear infinite;
}
@-webkit-keyframes loop-right1 {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}
@keyframes loop-right1 {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}
@-webkit-keyframes loop-right2 {
  0% {
    -webkit-transform: translateY(-200%);
            transform: translateY(-200%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes loop-right2 {
  0% {
    -webkit-transform: translateY(-200%);
            transform: translateY(-200%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.business_development_gallery_above {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.business_development_gallery_above img:first-child {
  -webkit-animation: loop-above1 100s -50s linear infinite;
          animation: loop-above1 100s -50s linear infinite;
}
.business_development_gallery_above img:last-child {
  -webkit-animation: loop-above2 100s linear infinite;
          animation: loop-above2 100s linear infinite;
}
@-webkit-keyframes loop-above1 {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes loop-above1 {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes loop-above2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
@keyframes loop-above2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
.business_development_gallery_under {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
}
.business_development_gallery_under img:first-child {
  -webkit-animation: loop-under1 100s -50s linear infinite;
          animation: loop-under1 100s -50s linear infinite;
}
.business_development_gallery_under img:last-child {
  -webkit-animation: loop-under2 100s linear infinite;
          animation: loop-under2 100s linear infinite;
}
@-webkit-keyframes loop-under1 {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@keyframes loop-under1 {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@-webkit-keyframes loop-under2 {
  0% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes loop-under2 {
  0% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

/*--------------------------------------------------------------------------
   #business_consulting
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.business_consulting {
  position: relative;
  margin-top: -5vw;
  background: -webkit-gradient(linear, left top, left bottom, from(#EBFBFF), to(#C1E5FF));
  background: linear-gradient(#EBFBFF 0%, #C1E5FF 100%);
  border-radius: clamp(0px, 5.625vw, 90px) clamp(0px, 5.625vw, 90px) 0 0;
  overflow: hidden;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .business_consulting {
    margin-top: -40px;
    border-radius: clamp(0px, 10.6666666667vw, 80px) clamp(0px, 10.6666666667vw, 80px) 0 0;
  }
}
.business_consulting_wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: clamp(0px, 9.1875vw, 147px) 0 clamp(0px, 21.125vw, 338px);
}
@media only screen and (max-width: 767px) {
  .business_consulting_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 100px 0 200px;
  }
}
.business_consulting_hdgwrap {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .business_consulting_hdgwrap {
    width: 100%;
  }
}
.business_consulting_hdgwrap .all_c_hdg {
  margin-bottom: clamp(0px, 3.75vw, 60px);
}
@media only screen and (max-width: 767px) {
  .business_consulting_hdgwrap .all_c_hdg {
    margin-bottom: 50px;
  }
}
.business_consulting_text {
  font-size: clamp(0px, 1.5vw, 18px);
}
@media only screen and (max-width: 767px) {
  .business_consulting_text {
    font-size: 16px;
    line-height: 2;
  }
}
.business_consulting_mantion {
  margin-top: clamp(0px, 4.1666666667vw, 50px);
  background: #fff;
  border-radius: 15px;
  padding: 5.8% 7.3%;
}
@media only screen and (max-width: 767px) {
  .business_consulting_mantion {
    width: 100%;
    margin-top: 32px;
    border-radius: 12px;
    padding: 32px 20px;
  }
}
.business_consulting_mantion_title {
  margin-bottom: clamp(0px, 0.8333333333vw, 10px);
  font-size: clamp(0px, 1.5vw, 18px);
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .business_consulting_mantion_title {
    font-size: 18px;
  }
}
.business_consulting_mantion_item {
  font-size: clamp(0px, 1.1666666667vw, 14px);
  line-height: 2.2;
}
@media only screen and (max-width: 767px) {
  .business_consulting_mantion_item {
    font-size: 13px;
    letter-spacing: -0.01em;
  }
}
.business_consulting_gallery {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .business_consulting_gallery {
    width: 100%;
    margin-top: 53px;
  }
}
.business_consulting_gallery img {
  width: 100%;
  height: auto;
}
.business_consulting_gallery_img._01 {
  width: clamp(0px, 18.3125vw, 293px);
  margin-left: -4.37vw;
}
@media screen and (min-width: 768px) and (max-width: 1400px) {
  .business_consulting_gallery_img._01 {
    margin-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .business_consulting_gallery_img._01 {
    width: 51%;
    margin-left: 0;
  }
}
.business_consulting_gallery_img._02 {
  width: clamp(0px, 15.8125vw, 253px);
  margin: -4.25vw 0 0 clamp(0px, 15.625vw, 250px);
}
@media screen and (min-width: 768px) and (max-width: 1400px) {
  .business_consulting_gallery_img._02 {
    margin-left: clamp(0px, 21.4285714286vw, 300px);
  }
}
@media only screen and (max-width: 767px) {
  .business_consulting_gallery_img._02 {
    width: 44.17%;
    margin: -10% 0 0 auto;
  }
}

/*--------------------------------------------------------------------------
   #business_concept
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.business_concept {
  position: relative;
  padding-top: clamp(0px, 8.3333333333vw, 100px);
  overflow: hidden;
}
.business_concept_img {
  position: relative;
  z-index: 1;
  padding-bottom: 4.25vw;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(20%, rgba(255, 255, 255, 0)), to(rgba(39, 219, 252, 0.42)));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 20%, rgba(39, 219, 252, 0.42) 100%);
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .business_concept_img {
    padding-bottom: 0;
    text-align: left;
  }
}
.business_concept_img figure {
  margin-bottom: -2.5vw;
}
@media only screen and (max-width: 767px) {
  .business_concept_img figure {
    width: 105%;
    margin-left: -2%;
    margin-bottom: 0;
  }
}
.business_concept_img figure img {
  max-width: 100%;
  height: auto;
}
.business_concept_contents {
  position: relative;
  z-index: 2;
  margin-top: -5.87vw;
  padding: clamp(0px, 9.375vw, 150px) 0 clamp(100px, 12.5vw, 200px);
  background: #fff;
  border-radius: clamp(0px, 4.75vw, 76px) clamp(0px, 4.75vw, 76px) 0 0;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .business_concept_contents {
    margin-top: -14.66vw;
    padding: 70px 0 80px;
    border-radius: clamp(0px, 10.6666666667vw, 80px) clamp(0px, 10.6666666667vw, 80px) 0 0;
  }
}
.business_concept_contents::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(55%, rgba(255, 255, 255, 0)), to(rgba(39, 219, 252, 0.42)));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 55%, rgba(39, 219, 252, 0.42) 100%);
  opacity: 0.3;
}
.business_concept_title {
  font-size: clamp(0px, 1.8333333333vw, 22px);
  font-weight: 700;
  color: #fff;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .business_concept_title {
    margin-bottom: 50px;
    font-size: 18px;
  }
}
.business_concept_title span {
  display: inline-block;
  padding: 8px 160px;
  background: -webkit-gradient(linear, left top, right top, from(#fff), color-stop(20%, #0275C4), color-stop(80%, #0275C4), to(#fff));
  background: linear-gradient(to right, #fff 0%, #0275C4 20%, #0275C4 80%, #fff 100%);
}
@media only screen and (max-width: 767px) {
  .business_concept_title span {
    width: 100%;
    padding: 12px 10px;
    background: -webkit-gradient(linear, left top, right top, from(#fff), color-stop(15%, #0275C4), color-stop(85%, #0275C4), to(#fff));
    background: linear-gradient(to right, #fff 0%, #0275C4 15%, #0275C4 85%, #fff 100%);
    line-height: 1.2;
  }
}
.business_concept_copy {
  margin-top: 65px;
  line-height: 2.27;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .business_concept_copy {
    margin-top: 55px;
    line-height: 2;
    text-align: left;
  }
}
.business_concept_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 767px) {
  .business_concept_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 60px;
  }
}
.business_concept_detail {
  max-width: 662px;
  width: 41.375vw;
}
@media only screen and (max-width: 767px) {
  .business_concept_detail {
    max-width: none;
    width: 120%;
  }
}
.business_concept_detail img {
  width: 100%;
  height: auto;
}
.business_concept_detail._01 {
  margin-right: -16.5vw;
}
@media only screen and (max-width: 767px) {
  .business_concept_detail._01 {
    margin-right: 0;
  }
}
.business_concept_detail._02 {
  margin-top: 20.68vw;
}
@media only screen and (max-width: 767px) {
  .business_concept_detail._02 {
    margin-top: 0;
  }
}
.business_concept_detail._03 {
  margin-left: -16.5vw;
}
@media only screen and (max-width: 767px) {
  .business_concept_detail._03 {
    margin: 0 0 0;
  }
}

/*--------------------------------------------------------------------------
   #business_history
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.business_history {
  position: relative;
  z-index: 2;
  margin-top: -6vw;
  padding: clamp(80px, 6.25vw, 100px) 0 clamp(0px, 22.5vw, 360px);
  border-radius: clamp(76px, 5.625vw, 90px) clamp(76px, 5.625vw, 90px) 0 0;
  background: url(../images/business_history_bg.jpg) no-repeat 50% 0/cover;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .business_history {
    padding: 100px 0;
    border-radius: clamp(0px, 10.6666666667vw, 80px) clamp(0px, 10.6666666667vw, 80px) 0 0;
    background: url(../images/business_history_bg_sp.jpg) no-repeat 50% 0/cover;
  }
}
.business_history_logo {
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .business_history_logo {
    width: 100px;
    margin-inline: auto;
  }
}
.business_history_logo img {
  max-width: 100%;
  height: auto;
}
.business_history_title {
  margin-top: 30px;
  font-weight: 300;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .business_history_title {
    margin-bottom: 50px;
  }
}
.business_history_title ._en {
  display: block;
  font-family: "Prata", serif;
  font-size: clamp(36px, 3vw, 48px);
}
@media only screen and (max-width: 767px) {
  .business_history_title ._en {
    font-size: 32px;
  }
}
.business_history_title ._ja {
  display: block;
  font-size: clamp(18px, 1.375vw, 22px);
}
@media only screen and (max-width: 767px) {
  .business_history_title ._ja {
    font-size: 18px;
  }
}
.business_history_text {
  max-width: 740px;
  width: 46.25vw;
  margin: 55px auto 0;
  font-size: 16px;
  line-height: 2;
}
@media only screen and (max-width: 767px) {
  .business_history_text {
    max-width: none;
    width: auto;
    margin-top: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .business_history_images {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 45px;
  }
}
.business_history_img {
  position: absolute;
  max-width: 332px;
  width: 20.75vw;
}
@media only screen and (max-width: 767px) {
  .business_history_img {
    position: relative;
    max-width: none;
    width: 47.2%;
    margin-bottom: 20px;
  }
}
.business_history_img img {
  width: 100%;
  height: auto;
}
.business_history_img._01 {
  top: 10.625vw;
  left: 0;
}
@media only screen and (max-width: 767px) {
  .business_history_img._01 {
    top: inherit;
    left: inherit;
  }
}
.business_history_img._02 {
  top: 29.375vw;
  left: 0;
}
@media only screen and (max-width: 767px) {
  .business_history_img._02 {
    top: inherit;
    left: inherit;
  }
}
.business_history_img._03 {
  top: 10.625vw;
  right: 0;
}
@media only screen and (max-width: 767px) {
  .business_history_img._03 {
    top: inherit;
    left: inherit;
  }
}
.business_history_img._04 {
  top: 29.375vw;
  right: 0;
}
@media only screen and (max-width: 767px) {
  .business_history_img._04 {
    top: inherit;
    left: inherit;
  }
}

/*--------------------------------------------------------------------------
   #animation
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* top_pro_main pc
=================================================================*/
.business_group_main.is-custom svg #pro_main_group {
  opacity: 0;
}
.business_group_main.is-custom svg #pro_main_line {
  opacity: 0;
}
.business_group_main.is-custom svg #pro_main_icon1,
.business_group_main.is-custom svg #pro_main_icon2,
.business_group_main.is-custom svg #pro_main_icon3,
.business_group_main.is-custom svg #pro_main_icon4,
.business_group_main.is-custom svg #pro_main_icon5 {
  opacity: 0;
}
.business_group_main.is-custom svg #pro_main_txt1,
.business_group_main.is-custom svg #pro_main_txt2,
.business_group_main.is-custom svg #pro_main_txt3,
.business_group_main.is-custom svg #pro_main_txt4,
.business_group_main.is-custom svg #pro_main_txt5 {
  opacity: 0;
}

.business_group_main.is-custom.is-animated svg #pro_main_group {
  opacity: 1;
  -webkit-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.business_group_main.is-custom.is-animated svg #pro_main_line {
  opacity: 1;
  -webkit-transition: opacity 2s ease-in-out;
  transition: opacity 2s ease-in-out;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.business_group_main.is-custom.is-animated svg #pro_main_icon1,
.business_group_main.is-custom.is-animated svg #pro_main_icon2,
.business_group_main.is-custom.is-animated svg #pro_main_icon3,
.business_group_main.is-custom.is-animated svg #pro_main_icon4,
.business_group_main.is-custom.is-animated svg #pro_main_icon5 {
  opacity: 1;
  -webkit-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
}
.business_group_main.is-custom.is-animated svg #pro_main_icon1 {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.business_group_main.is-custom.is-animated svg #pro_main_icon2 {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
.business_group_main.is-custom.is-animated svg #pro_main_icon3 {
  -webkit-transition-delay: 1.4s;
          transition-delay: 1.4s;
}
.business_group_main.is-custom.is-animated svg #pro_main_icon4 {
  -webkit-transition-delay: 1.6s;
          transition-delay: 1.6s;
}
.business_group_main.is-custom.is-animated svg #pro_main_icon5 {
  -webkit-transition-delay: 1.8s;
          transition-delay: 1.8s;
}
.business_group_main.is-custom.is-animated svg #pro_main_txt1,
.business_group_main.is-custom.is-animated svg #pro_main_txt2,
.business_group_main.is-custom.is-animated svg #pro_main_txt3,
.business_group_main.is-custom.is-animated svg #pro_main_txt4,
.business_group_main.is-custom.is-animated svg #pro_main_txt5 {
  opacity: 1;
  -webkit-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
}
.business_group_main.is-custom.is-animated svg #pro_main_txt1 {
  -webkit-transition-delay: 2s;
          transition-delay: 2s;
}
.business_group_main.is-custom.is-animated svg #pro_main_txt2 {
  -webkit-transition-delay: 2.1s;
          transition-delay: 2.1s;
}
.business_group_main.is-custom.is-animated svg #pro_main_txt3 {
  -webkit-transition-delay: 2.2s;
          transition-delay: 2.2s;
}
.business_group_main.is-custom.is-animated svg #pro_main_txt4 {
  -webkit-transition-delay: 2.3s;
          transition-delay: 2.3s;
}
.business_group_main.is-custom.is-animated svg #pro_main_txt5 {
  -webkit-transition-delay: 2.4s;
          transition-delay: 2.4s;
}

/*--------------------------------------------------------------------------
   overwrite
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
.recruit .all_m_head {
  background: url(../images/recruit_head_bg.jpg) no-repeat 50% 0/cover;
}
/*--------------------------------------------------------------------------
   common
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
.recruit img {
  max-width: 100%;
}

.recruit_wrap {
  max-width: 1240px;
  padding: 0 20px 0 220px;
  margin: 0 auto;
}
@media only screen and (max-width: 1000px) {
  .recruit_wrap {
    padding: 0 20px 0 170px;
  }
}
@media only screen and (max-width: 767px) {
  .recruit_wrap {
    padding: 0 20px;
  }
}

.recruit_txtwrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .recruit_txtwrap {
    display: block;
  }
}
.recruit_txtwrap_hdg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .recruit_txtwrap_hdg {
    width: 100%;
  }
}
.recruit_txtwrap_hdg ._en {
  font-family: "Prata", serif;
  font-weight: 400;
  font-size: clamp(26px, 2.8571428571vw, 40px);
  color: #013985;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .recruit_txtwrap_hdg ._en {
    font-size: 30px;
  }
}
.recruit_txtwrap_hdg ._ja {
  font-weight: 700;
  font-size: clamp(16px, 1.2857142857vw, 18px);
  color: #013985;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .recruit_txtwrap_hdg ._ja {
    font-size: 15px;
  }
}
.recruit_txtwrap_txtarea {
  width: 50%;
  padding-top: 40px;
}
@media only screen and (max-width: 767px) {
  .recruit_txtwrap_txtarea {
    width: 100%;
    padding-top: 20px;
  }
}
.recruit_txtwrap_txtarea_hdg {
  margin-bottom: 40px;
  font-weight: 700;
  font-size: clamp(18px, 1.7857142857vw, 25px);
  line-height: 2;
}
@media only screen and (max-width: 767px) {
  .recruit_txtwrap_txtarea_hdg {
    margin-bottom: 20px;
    font-size: 20px;
  }
}
.recruit_txtwrap_txtarea_txt {
  font-weight: 700;
  font-size: clamp(16px, 1.2857142857vw, 18px);
  line-height: 2;
}
@media only screen and (max-width: 767px) {
  .recruit_txtwrap_txtarea_txt {
    font-size: 16px;
  }
}

.recruit_bg2 {
  position: relative;
  z-index: 0;
}
.recruit_bg2::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#27dbfc), to(#0058b9));
  background: linear-gradient(#27dbfc 0%, #0058b9 100%);
  opacity: 0.1;
  pointer-events: none;
  content: "";
  z-index: 3;
}

/*--------------------------------------------------------------------------
   #recruit_message
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.recruit_message {
  position: relative;
  margin-top: -100px;
}
@media only screen and (max-width: 767px) {
  .recruit_message {
    margin-top: -120px;
  }
}
.recruit_message_bg {
  position: relative;
  width: 100%;
  height: 900px;
}
@media only screen and (max-width: 767px) {
  .recruit_message_bg {
    height: 100vh;
  }
}
.recruit_message_bg_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: url(../images/recruit_message_bg.jpg);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 767px) {
  .recruit_message_bg_img {
    height: 100vh;
    background-image: url(../images/recruit_message_bg_sp.jpg);
  }
}
.recruit_message_bg._fixed .recruit_message_bg_img {
  position: fixed;
  z-index: 0;
  pointer-events: none;
}
.recruit_message_bg._hide .recruit_message_bg_img {
  opacity: 0;
}
.recruit_message_main {
  position: relative;
  background-color: rgba(37, 37, 37, 0.8);
  z-index: 9;
}
@media only screen and (max-width: 767px) {
  .recruit_message_main .all_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-height: 100vh;
  }
}
.recruit_message_main_inline {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 2;
  padding: 168px 0 228px;
}
@media only screen and (max-width: 767px) {
  .recruit_message_main_inline {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 80px 0;
  }
}
.recruit_message_main_hdg {
  width: 30%;
  font-family: "Prata", serif;
  font-weight: 400;
  font-size: clamp(26px, 3.3333333333vw, 40px);
  color: #fff;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .recruit_message_main_hdg {
    width: 100%;
    padding-bottom: 60px;
    font-size: 44px;
  }
}
.recruit_message_main_txtbox {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-top: 130px;
}
@media only screen and (max-width: 767px) {
  .recruit_message_main_txtbox {
    padding-top: 0;
  }
}
.recruit_message_main_txtbox_hdg {
  margin-bottom: 80px;
  font-weight: 700;
  font-size: clamp(26px, 3.3333333333vw, 40px);
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .recruit_message_main_txtbox_hdg {
    margin-bottom: 48px;
    font-size: 24px;
  }
}
.recruit_message_main_txtbox_txt {
  font-weight: 700;
  font-size: clamp(11px, 1.3333333333vw, 16px);
  color: #fff;
  line-height: 2.5;
}
@media only screen and (max-width: 767px) {
  .recruit_message_main_txtbox_txt {
    font-size: 16px;
  }
}
.recruit_message_btn {
  position: fixed;
  right: 36px;
  bottom: 40px;
  z-index: 10;
  overflow: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .recruit_message_btn {
    right: 20px;
    bottom: 25px;
  }
}
.recruit_message_btn._hidden {
  pointer-events: none;
  opacity: 0;
}
.recruit_message_btn::before, .recruit_message_btn::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#004086), to(#27dbfc));
  background: linear-gradient(to right, #004086, #27dbfc);
  background-size: 100% auto;
  background-position: left center;
  -webkit-transition: background-position 0.5s ease-in-out;
  transition: background-position 0.5s ease-in-out;
  border-radius: 1000px;
  content: "";
  z-index: 1;
}
.recruit_message_btn::after {
  background: -webkit-gradient(linear, left top, right top, from(#27dbfc), to(#004086));
  background: linear-gradient(to right, #27dbfc, #004086);
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.recruit_message_btn span {
  position: relative;
  color: #fff;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  width: 208px;
  height: 62px;
  padding: 0 50px;
  text-indent: -1em;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .recruit_message_btn span {
    width: 168px;
    height: 60px;
    padding: 0 40px;
  }
}
.mode-pc .recruit_message_btn:hover::after {
  opacity: 1;
}
.recruit_message_btn i {
  position: absolute;
  top: 50%;
  right: 20px;
  translate: 0 -50%;
  display: block;
  width: 25px;
  height: 25px;
  border-radius: 100px;
  border: 1px solid #fff;
  z-index: 3;
}
@media only screen and (max-width: 767px) {
  .recruit_message_btn i {
    width: 22px;
    height: 22px;
  }
}
.recruit_message_btn i:before {
  content: "";
  width: 6px;
  height: 6px;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  position: absolute;
  left: calc(50% - 3px);
  top: calc(50% - 3px);
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .recruit_message_btn i:before {
    width: 4px;
    height: 4px;
    left: calc(50% - 2px);
    top: calc(50% - 2px);
  }
}

/*--------------------------------------------------------------------------
   #recruit_navarea
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.recruit_navarea {
  position: relative;
}
.recruit_navarea_nav {
  position: absolute;
  top: 140px;
  left: 50%;
  translate: -710px 0;
  z-index: 99;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
  width: 150px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 1460px) {
  .recruit_navarea_nav {
    left: 20px;
    translate: 0;
  }
}
@media only screen and (max-width: 1000px) {
  .recruit_navarea_nav {
    width: 120px;
    gap: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .recruit_navarea_nav {
    display: none;
  }
}
.recruit_navarea_nav._fixed {
  position: fixed;
}
.recruit_navarea_nav._hidden {
  pointer-events: none;
  opacity: 0;
}
.recruit_navarea_item a {
  position: relative;
  padding: 0 0 0 25px;
  font-size: 18px;
  font-weight: 700;
  color: #013985;
  line-height: 1;
  opacity: 0.2;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media only screen and (max-width: 1000px) {
  .recruit_navarea_item a {
    padding: 0 0 0 15px;
    font-size: 16px;
  }
}
.recruit_navarea_item a::before {
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #013985;
  content: "";
  scale: 0;
  -webkit-transition: scale 0.3s;
  transition: scale 0.3s;
}
@media only screen and (max-width: 1000px) {
  .recruit_navarea_item a::before {
    width: 5px;
    height: 5px;
  }
}
.mode-pc .recruit_navarea_item a:hover, .recruit_navarea_item a._current {
  opacity: 1;
}
.mode-pc .recruit_navarea_item a:hover::before, .recruit_navarea_item a._current::before {
  scale: 1;
}
.recruit_navarea .recruit_navarea_nav._workflow .recruit_navarea_item a,
.recruit_navarea .recruit_navarea_nav._interview .recruit_navarea_item a {
  color: #fff;
}
.recruit_navarea .recruit_navarea_nav._workflow .recruit_navarea_item a::before,
.recruit_navarea .recruit_navarea_nav._interview .recruit_navarea_item a::before {
  background-color: #fff;
}

/*--------------------------------------------------------------------------
   #recruit_ideal
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.recruit_ideal {
  padding: 140px 0 140px;
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .recruit_ideal {
    padding: 110px 0 110px;
  }
}
.recruit_ideal_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: clamp(45px, 7.2580645161vw, 90px);
  margin: 130px 0 0 0;
}
@media only screen and (max-width: 767px) {
  .recruit_ideal_list {
    display: block;
    margin: 40px 0 0 0;
  }
}
.recruit_ideal_item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  padding: 35px 0 0 0;
}
@media only screen and (max-width: 767px) {
  .recruit_ideal_item {
    margin-bottom: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .recruit_ideal_item {
    padding: 15px 0 0 0;
  }
}
.recruit_ideal_item:not(:last-child)::after {
  position: absolute;
  top: 0;
  right: calc(clamp(45px, 7.2580645161vw, 90px) / -2);
  width: 1px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  content: "";
}
@media only screen and (max-width: 767px) {
  .recruit_ideal_item:not(:last-child)::after {
    top: auto;
    right: 0;
    bottom: -30px;
    width: 100%;
    height: 1px;
  }
}
.recruit_ideal_item .no {
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Prata", serif;
  font-weight: 400;
  font-size: clamp(20px, 2.4193548387vw, 30px);
  color: #74D4FF;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .recruit_ideal_item .no {
    font-size: 24px;
  }
}
.recruit_ideal_item .ico {
  height: 130px;
  text-align: center;
}
.recruit_ideal_item .ico img {
  width: auto;
  height: auto;
}
.recruit_ideal_item .hdg {
  margin-bottom: clamp(20px, 2.4193548387vw, 30px);
  font-weight: 700;
  font-size: clamp(13px, 1.6129032258vw, 20px);
  color: #013985;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .recruit_ideal_item .hdg {
    margin-bottom: 20px;
    font-size: 18px;
  }
}
.recruit_ideal_item .txt {
  font-weight: 500;
  font-size: clamp(10px, 1.2903225806vw, 16px);
  line-height: 2.2;
}
@media only screen and (max-width: 767px) {
  .recruit_ideal_item .txt {
    font-size: 16px;
  }
}
.recruit_ideal_item:nth-child(1) .ico img {
  width: 86px;
}
.recruit_ideal_item:nth-child(2) .ico img {
  width: 83px;
}
.recruit_ideal_item:nth-child(3) .ico img {
  width: 87px;
}

/*--------------------------------------------------------------------------
   #recruit_workflow
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.recruit_workflow {
  padding: 140px 0 140px;
  background: -webkit-gradient(linear, left top, left bottom, from(#004086), to(#27dbfc));
  background: linear-gradient(#004086 0%, #27dbfc 100%);
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .recruit_workflow {
    padding: 110px 0 110px;
  }
}
.recruit_workflow .recruit_txtwrap * {
  color: #fff;
}
.recruit_workflow_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 100px;
}
@media only screen and (max-width: 767px) {
  .recruit_workflow_list {
    margin: 60px -20px 0;
  }
}
.recruit_workflow_item {
  position: relative;
  width: 25%;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(22px, 2.4285714286vw, 34px);
}
@media only screen and (max-width: 767px) {
  .recruit_workflow_item {
    width: 50%;
    gap: 28px;
  }
}
.recruit_workflow_item .no {
  font-family: "Prata", serif;
  font-weight: 400;
  font-size: clamp(16px, 2.2857142857vw, 32px);
  color: #74F4FF;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .recruit_workflow_item .no {
    font-size: 29px;
  }
}
.recruit_workflow_item .txt {
  font-weight: 700;
  font-size: clamp(12px, 1.7142857143vw, 24px);
  color: #fff;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .recruit_workflow_item .txt {
    font-size: 17px;
  }
}
.recruit_workflow span.bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: soft-light;
  pointer-events: none;
  scale: 1.2;
}
@media only screen and (max-width: 767px) {
  .recruit_workflow span.bg {
    scale: 1.3;
  }
}
.recruit_workflow span.bg img {
  width: 100%;
  height: 100%;
}

/*--------------------------------------------------------------------------
   #recruit_interview
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.recruit_interview {
  position: relative;
  z-index: 9;
}
.recruit_interview_bg {
  width: 100%;
  height: 640px;
  background-image: url(../images/recruit_interview_bg.jpg);
  background-position: 50% 50%;
  background-size: cover;
}
@media only screen and (max-width: 767px) {
  .recruit_interview_bg {
    height: 290px;
    background-image: url(../images/recruit_interview_bg_sp.jpg);
  }
}
.recruit_interview_wrap {
  padding-left: calc(50vw - 400px);
}
@media only screen and (max-width: 1240px) {
  .recruit_interview_wrap {
    padding-left: calc(50vw - (100vw - 1240px) / 2 - 400px);
  }
}
@media only screen and (max-width: 1000px) {
  .recruit_interview_wrap {
    padding-left: calc(50vw - (100vw - 1240px) / 2 - 450px);
  }
}
@media only screen and (max-width: 767px) {
  .recruit_interview_wrap {
    padding: 0 0 0 20px;
  }
}
.recruit_interview_slider {
  margin: -270px 0 0 0;
  padding: 90px 0 90px 100px;
  background-color: #013985;
  border-radius: 70px 0 0 70px;
}
@media only screen and (max-width: 767px) {
  .recruit_interview_slider {
    margin: -100px 0 0 0;
    padding: 65px 0 65px 40px;
    border-radius: 40px 0 0 40px;
  }
}
.recruit_interview_slider .swiper {
  margin-top: -50px;
  padding-top: 100px;
}
@media only screen and (max-width: 767px) {
  .recruit_interview_slider .swiper {
    margin-top: -36px;
    padding-top: 72px;
  }
}
.recruit_interview_slider .img {
  aspect-ratio: 348/241;
}
.recruit_interview_slider .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.recruit_interview_slider a {
  position: relative;
  display: block;
  overflow: hidden;
}
.recruit_interview_slider a::before {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 51px;
  height: 51px;
  background: url(../images/all_icon_modal.svg) no-repeat 50% 50%/cover;
  content: "";
  z-index: 3;
}
@media only screen and (max-width: 767px) {
  .recruit_interview_slider a::before {
    right: 5px;
  }
}
.mode-pc .recruit_interview_slider a:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.recruit_interview_slider .hdg {
  margin-top: 20px;
  font-weight: 500;
  font-size: clamp(10px, 1.0714285714vw, 15px);
  color: #fff;
}
.recruit_interview_slider .txt {
  margin-top: 15px;
  font-weight: 700;
  font-size: clamp(12px, 1.2857142857vw, 18px);
  color: #fff;
}
.recruit_interview_slider .swiper-controls {
  position: absolute;
  top: 0;
  right: calc((100vw - 1240px) / 2 + 45px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 120px;
  height: 48px;
}
@media only screen and (max-width: 1200px) {
  .recruit_interview_slider .swiper-controls {
    right: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .recruit_interview_slider .swiper-controls {
    right: 40px;
    width: 85px;
    height: 36px;
  }
}
.recruit_interview_slider .swiper-button-prev {
  position: static;
  top: 0;
  right: 0;
  left: inherit;
  width: 48px;
  height: 48px;
  margin: 0;
  border: 1px solid #fff;
  background-color: #013985;
  border-radius: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .recruit_interview_slider .swiper-button-prev {
    width: 36px;
    height: 36px;
  }
}
.recruit_interview_slider .swiper-button-prev::after {
  font-size: 0.6rem;
  font-weight: 700;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.mode-pc .recruit_interview_slider .swiper-button-prev:hover {
  background-color: #fff;
  border-color: #013985;
}
.mode-pc .recruit_interview_slider .swiper-button-prev:hover::after {
  color: #013985;
}
.recruit_interview_slider .swiper-button-next {
  position: static;
  top: 0;
  right: 0;
  left: inherit;
  width: 48px;
  height: 48px;
  margin: 0;
  border: 1px solid #fff;
  background-color: #013985;
  border-radius: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .recruit_interview_slider .swiper-button-next {
    width: 36px;
    height: 36px;
  }
}
.recruit_interview_slider .swiper-button-next::after {
  font-size: 0.6rem;
  font-weight: 700;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.mode-pc .recruit_interview_slider .swiper-button-next:hover {
  background-color: #fff;
  border-color: #013985;
}
.mode-pc .recruit_interview_slider .swiper-button-next:hover::after {
  color: #013985;
}
.recruit_interview_hdg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .recruit_interview_hdg {
    width: 100%;
  }
}
.recruit_interview_hdg ._en {
  font-family: "Prata", serif;
  font-weight: 400;
  font-size: clamp(26px, 2.8571428571vw, 40px);
  color: #fff;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .recruit_interview_hdg ._en {
    font-size: 30px;
  }
}
.recruit_interview_hdg ._ja {
  font-weight: 700;
  font-size: clamp(12px, 1.2857142857vw, 18px);
  color: #fff;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .recruit_interview_hdg ._ja {
    font-size: 15px;
  }
}

/*--------------------------------------------------------------------------
   #recruit_data
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.recruit_data {
  position: relative;
  z-index: 9;
  padding-top: 120px;
  padding-bottom: 147px;
}
@media only screen and (max-width: 767px) {
  .recruit_data {
    padding-top: 60px;
    padding-bottom: 77px;
  }
}
.recruit_data .recruit_txtwrap {
  margin-bottom: 90px;
}
@media only screen and (max-width: 767px) {
  .recruit_data .recruit_txtwrap {
    margin-bottom: 40px;
  }
}
.recruit_data .recruit_txtwrap_hdg {
  width: 40%;
}
@media only screen and (max-width: 767px) {
  .recruit_data .recruit_txtwrap_hdg {
    width: 100%;
  }
}
.recruit_data .recruit_txtwrap_txtarea {
  width: 60%;
}
@media only screen and (max-width: 767px) {
  .recruit_data .recruit_txtwrap_txtarea {
    width: 100%;
  }
}
.recruit_data .recruit_txtwrap_txtarea_txt {
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .recruit_data_main_img {
    display: none;
  }
}
.recruit_data_main_img img {
  width: 100%;
  height: auto;
}
.recruit_data_main_list {
  display: none;
}
@media only screen and (max-width: 767px) {
  .recruit_data_main_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
}
.recruit_data_main_item img {
  width: 100%;
  height: auto;
}

/*--------------------------------------------------------------------------
   #recruit_joblist
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.recruit_joblist {
  padding: 122px 0;
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .recruit_joblist {
    padding: 90px 0;
  }
}
.recruit_joblist .recruit_txtwrap {
  margin-bottom: 100px;
}
@media only screen and (max-width: 767px) {
  .recruit_joblist .recruit_txtwrap {
    margin-bottom: 38px;
  }
}
.recruit_joblist_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  margin-bottom: 45px;
  border-bottom: 2px solid #013985;
}
@media only screen and (max-width: 767px) {
  .recruit_joblist_nav {
    gap: 10px;
    margin: 0 -20px 25px 0;
    width: calc(100% + 20px);
    padding: 0 20px 0 0;
  }
}
.recruit_joblist_nav_item {
  width: 240px;
}
@media only screen and (max-width: 767px) {
  .recruit_joblist_nav_item {
    width: auto;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.recruit_joblist_nav_item button {
  position: relative;
  display: block;
  width: 100%;
  height: 64px;
  background-color: rgba(1, 57, 133, 0.1);
  color: rgba(1, 57, 133, 0.3);
  border-radius: 4px 4px 0 0;
  border: 2px solid #fff;
  border-bottom: none;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .recruit_joblist_nav_item button {
    height: 48px;
    font-size: clamp(12px, 2.34375vw, 18px);
  }
}
.recruit_joblist_nav_item button::before {
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 4px;
  background-color: #fff;
  content: "";
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.recruit_joblist_nav_item button._current {
  background-color: #fff;
  border: 2px solid #013985;
  border-bottom: none;
  color: #013985;
  pointer-events: none;
}
.recruit_joblist_nav_item button._current::before {
  opacity: 1;
}
.mode-pc .recruit_joblist_nav_item button:hover {
  background-color: #013985;
  color: #fff;
}
.recruit_joblist_wrap {
  position: relative;
}
.recruit_joblist_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
}
.recruit_joblist_box._current {
  opacity: 1;
}
.recruit_joblist_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
@media only screen and (max-width: 767px) {
  .recruit_joblist_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px 0;
  }
}
.recruit_joblist_item_hdg {
  width: 30%;
  padding: clamp(28px, 4.2vw, 42px) clamp(22px, 3.2vw, 32px);
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .recruit_joblist_item_hdg {
    width: 100%;
    margin-bottom: 10px;
    padding: 0;
    font-size: 16px;
    line-height: 1;
  }
}
.recruit_joblist_item_txtarea {
  width: 70%;
  padding: clamp(28px, 4.2vw, 42px) clamp(22px, 3.2vw, 32px);
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: 500;
  line-height: 2;
}
@media only screen and (max-width: 767px) {
  .recruit_joblist_item_txtarea {
    width: 100%;
    padding: 0;
  }
}
.recruit_joblist_item_txtarea .txt + p {
  margin-top: 1em;
}

/*--------------------------------------------------------------------------
   #recruit_entry
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.recruit_entry {
  background-color: #fff;
}
.recruit_entry_inner {
  padding: 140px 0 340px;
  background: -webkit-gradient(linear, left top, left bottom, from(#ebfbff), to(#c1e5ff));
  background: linear-gradient(#ebfbff 0%, #c1e5ff 100%);
  border-radius: 90px 90px 0 0;
}
@media only screen and (max-width: 767px) {
  .recruit_entry_inner {
    padding: 110px 0 250px;
    border-radius: 40px 40px 0 0;
  }
}
.recruit_entry_form {
  max-width: 1040px;
  margin: 0 auto;
  padding: 110px 20px 0;
}
@media only screen and (max-width: 767px) {
  .recruit_entry_form {
    padding: 56px 0 0;
  }
}
.recruit_entry_form_text {
  margin-bottom: 45px;
  font-size: 18px;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .recruit_entry_form_text {
    margin-bottom: 45px;
    font-size: 18px;
  }
}
.recruit_entry_form_list_tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
@media only screen and (max-width: 767px) {
  .recruit_entry_form_list_tr {
    display: block;
    padding: 24px 0;
  }
}
.recruit_entry_form_list_th {
  width: 33.5%;
  padding: clamp(28px, 4.2vw, 42px) 0 clamp(28px, 4.2vw, 42px) clamp(22px, 3.2vw, 32px);
}
@media only screen and (max-width: 767px) {
  .recruit_entry_form_list_th {
    width: 100%;
    margin-bottom: 15px;
    padding: 0;
  }
}
.recruit_entry_form_list_th .hdg {
  margin-top: 15px;
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .recruit_entry_form_list_th .hdg {
    font-size: 16px;
  }
}
.recruit_entry_form_list_td {
  position: relative;
  width: 64.5%;
  padding: clamp(28px, 4.2vw, 42px) clamp(22px, 3.2vw, 32px) clamp(28px, 4.2vw, 42px) 56px;
}
@media only screen and (max-width: 767px) {
  .recruit_entry_form_list_td {
    width: 100%;
    padding: 0 0 0 56px;
  }
  .recruit_entry_form_list_td._full {
    padding: 0;
  }
}
.recruit_entry_form_list_td .inquiry {
  position: absolute;
  top: calc(clamp(28px, 4.2vw, 42px) + 15px);
  left: 0;
  display: inline-block;
  width: 40px;
  padding: 2px 0;
  background-color: #013985;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .recruit_entry_form_list_td .inquiry {
    top: 15px;
  }
}
.recruit_entry_form_list_td .cap {
  margin-top: 10px;
  font-size: clamp(14px, 1.6vw, 16px);
}
@media only screen and (max-width: 767px) {
  .recruit_entry_form_list_td .cap {
    font-size: 16px;
  }
}
.recruit_entry_form_list_td_zip {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.recruit_entry_form_list_td_zip .txt {
  padding-top: 15px;
  width: 25px;
  font-size: 16px;
}
.recruit_entry_form_list_td_zip .inputarea {
  width: 185px;
}
.recruit_entry_form_list_td_address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
}
@media only screen and (max-width: 767px) {
  .recruit_entry_form_list_td_address {
    display: block;
    margin-left: -56px;
  }
}
.recruit_entry_form_list_td_address .txt {
  padding-top: 5px;
  width: 85px;
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .recruit_entry_form_list_td_address .txt {
    width: 100%;
    margin-bottom: 10px;
    font-size: 16px;
  }
}
.recruit_entry_form_list_td_address .inputarea {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.recruit_entry_form_list_td_txt {
  margin-bottom: 20px;
  padding-top: 10px;
  font-size: clamp(14px, 1.6vw, 16px);
}
@media only screen and (max-width: 767px) {
  .recruit_entry_form_list_td_txt {
    font-size: 16px;
  }
}
.recruit_entry_form_btns_btn {
  width: 228px;
  margin: 50px auto 35px;
}
.recruit_entry_form_btns_btn button {
  width: 228px;
  height: 59px;
}
.mode-pc .recruit_entry_form_btns_btn button:hover::before {
  scale: 70;
}
.recruit_entry_form_cap {
  text-align: center;
}
.recruit_entry .entry_error {
  display: none;
  padding: 12px;
  margin: 40px 0 40px;
  width: 100%;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: rgb(220, 20, 60);
  border: 1px solid rgb(220, 20, 60);
  background-color: rgb(248, 215, 218);
  cursor: default;
  height: auto;
  border-radius: 3px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.recruit_entry .entry_error.is_err {
  display: block;
}
.recruit_entry .js_err_msg {
  display: none;
  color: #ff0000;
  font-size: 14px;
  margin-top: 12px;
  font-weight: 700;
}
.recruit_entry .js_err_msg.is_err {
  display: block;
}

/*--------------------------------------------------------------------------
   #recruit_modal
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.recruit_modal {
  position: fixed;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  z-index: 999999;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
@media only screen and (max-width: 767px) {
  .recruit_modal {
    padding-inline: 20px;
  }
}
.recruit_modal._show {
  visibility: visible;
  pointer-events: all;
  opacity: 1;
}
.recruit_modal._show[data-show="1"] .recruit_modal_target[data-target="1"], .recruit_modal._show[data-show="2"] .recruit_modal_target[data-target="2"], .recruit_modal._show[data-show="3"] .recruit_modal_target[data-target="3"], .recruit_modal._show[data-show="4"] .recruit_modal_target[data-target="4"] {
  display: block;
}
.recruit_modal_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: -1;
}
.recruit_modal_body {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  max-width: 1200px;
  width: 80vw;
  height: 80vh;
}
@media only screen and (max-width: 767px) {
  .recruit_modal_body {
    width: calc(100% - 40px);
    height: 80vh;
  }
}
.recruit_modal_close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: -30px;
  right: -30px;
  width: 76px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, right bottom, from(#0275C4), to(#024D90));
  background: linear-gradient(to right bottom, #0275C4 0%, #024D90 100%);
  text-indent: -9999px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 10;
}
@media only screen and (max-width: 767px) {
  .recruit_modal_close {
    width: 48px;
    top: -10px;
    right: -10px;
  }
}
.recruit_modal_close::before, .recruit_modal_close::after {
  content: "";
  width: 40px;
  height: 1px;
  background: #fff;
}
@media only screen and (max-width: 767px) {
  .recruit_modal_close::before, .recruit_modal_close::after {
    width: 22px;
  }
}
.recruit_modal_close::before {
  margin-right: -40px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media only screen and (max-width: 767px) {
  .recruit_modal_close::before {
    margin-right: -22px;
  }
}
.recruit_modal_close::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.mode-pc .recruit_modal_close:hover {
  rotate: 90deg;
  scale: 1.1;
}
.recruit_modal_target {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  border-radius: 15px;
  display: none;
}
@media only screen and (max-width: 767px) {
  .recruit_modal_target {
    border-radius: 8px;
  }
}
.recruit_modal_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: clamp(44px, 7.3333333333vw, 88px);
  background-color: #024D90;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .recruit_modal_head {
    display: block;
  }
}
.recruit_modal_head .hdg_no {
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .recruit_modal_head .hdg_no {
    font-size: 16px;
  }
}
.recruit_modal_head .hdg_txt {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  .recruit_modal_head .hdg_txt {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .recruit_modal_head .prof {
    margin-top: 20px;
  }
}
.recruit_modal_head .prof_dev {
  font-size: 15px;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .recruit_modal_head .prof_dev {
    display: inline-block;
    padding: 0px 10px 0 0;
  }
}
.recruit_modal_head .prof_name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 16px;
  margin-top: 6px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .recruit_modal_head .prof_name {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-top: 0;
  }
}
.recruit_modal_head .prof_name span {
  font-size: 15px;
}
.recruit_modal_head .prof_place {
  margin-top: 6px;
  font-size: 15px;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .recruit_modal_head .prof_place {
    width: 200px;
  }
}
@media only screen and (max-width: 767px) {
  .recruit_modal_head {
    padding: 40px 20px;
  }
}
.recruit_modal_contents {
  padding: clamp(44px, 7.3333333333vw, 88px);
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .recruit_modal_contents {
    padding: 40px 20px;
  }
}
.recruit_modal .recruit_modal_item {
  margin-bottom: 72px;
}
@media only screen and (max-width: 767px) {
  .recruit_modal .recruit_modal_item {
    margin-bottom: 40px;
  }
}
.recruit_modal .recruit_modal_term {
  width: auto;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  color: #004795;
  font-size: 24px;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .recruit_modal .recruit_modal_term {
    gap: 15px;
    font-size: 16px;
  }
}
.recruit_modal .recruit_modal_term ._number {
  margin-top: 4px;
  display: block;
  font-family: var(--font-poppins);
  font-size: 20px;
}
@media only screen and (max-width: 767px) {
  .recruit_modal .recruit_modal_term ._number {
    margin-top: 2px;
    font-size: 14px;
  }
}
.recruit_modal .recruit_modal_description {
  background-color: white;
  margin: 0;
  margin-top: 40px;
  padding: 0;
  border: none;
  display: block;
  font-size: 16px;
  line-height: 2;
}
@media only screen and (max-width: 767px) {
  .recruit_modal .recruit_modal_description {
    margin-top: 25px;
    font-size: 14px;
  }
}
.recruit_modal .recruit_modal_message {
  width: 100%;
  padding: 67px;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .recruit_modal .recruit_modal_message {
    padding: 40px 20px;
  }
}
.recruit_modal .recruit_modal_message::before {
  content: "";
  background: #004795;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.1;
  position: absolute;
  top: 0;
  left: 0;
}
.recruit_modal .recruit_message_inner {
  margin: 0 auto;
}
.recruit_modal .recruit_modal_message ._title {
  color: #004795;
  font-size: 24px;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .recruit_modal .recruit_modal_message ._title {
    font-size: 18px;
  }
}
.recruit_modal .recruit_modal_message ._copy {
  margin-top: 32px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.9333333333;
  letter-spacing: 0.5px;
}
@media only screen and (max-width: 767px) {
  .recruit_modal .recruit_modal_message ._copy {
    margin-top: 20px;
    font-size: 14px;
  }
}

/*--------------------------------------------------------------------------
   #recruit_complete
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.recruit_complete {
  position: relative;
  padding: 140px 0 340px;
}
@media only screen and (max-width: 767px) {
  .recruit_complete {
    padding-bottom: 240px;
  }
}
.recruit_complete::before {
  position: absolute;
  top: -200px;
  left: 0;
  width: 100%;
  height: calc(100% + 200px);
  background: -webkit-gradient(linear, left top, left bottom, from(#EBFBFF), to(#C1E5FF));
  background: linear-gradient(#EBFBFF 0%, #C1E5FF 100%);
  content: "";
}
.recruit_complete_body {
  margin-top: 65px;
}
.recruit_complete_text {
  margin-bottom: 65px;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .recruit_complete_text {
    margin-bottom: 45px;
  }
}
.recruit_complete_btn {
  width: 228px;
  margin: 0 auto;
}
.recruit_complete_btn a {
  width: 100%;
  height: 59px;
}
.mode-pc .recruit_complete_btn a:hover::before {
  scale: 60;
}
.recruit_complete_form {
  max-width: 1040px;
  margin: 0 auto;
  padding: 110px 20px 0;
}
@media only screen and (max-width: 767px) {
  .recruit_complete_form {
    padding: 56px 0 0;
  }
}
.recruit_complete_form_list_tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
@media only screen and (max-width: 767px) {
  .recruit_complete_form_list_tr {
    display: block;
    padding: 24px 0;
  }
}
.recruit_complete_form_list_th {
  width: 33.5%;
  padding: clamp(28px, 4.2vw, 42px) 0 clamp(28px, 4.2vw, 42px) clamp(22px, 3.2vw, 32px);
}
@media only screen and (max-width: 767px) {
  .recruit_complete_form_list_th {
    width: 100%;
    margin-bottom: 15px;
    padding: 0;
  }
}
.recruit_complete_form_list_th .hdg {
  margin-top: 15px;
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .recruit_complete_form_list_th .hdg {
    font-size: 16px;
  }
}
.recruit_complete_form_list_td {
  position: relative;
  width: 64.5%;
  padding: clamp(28px, 4.2vw, 42px) clamp(22px, 3.2vw, 32px) clamp(28px, 4.2vw, 42px) 56px;
}
@media only screen and (max-width: 767px) {
  .recruit_complete_form_list_td {
    width: 100%;
    padding: 0 0 0 56px;
  }
  .recruit_complete_form_list_td._full {
    padding: 0;
  }
}
.recruit_complete_form_list_td .inquiry {
  position: absolute;
  top: calc(clamp(28px, 4.2vw, 42px) + 15px);
  left: 0;
  display: inline-block;
  width: 40px;
  padding: 2px 0;
  background-color: #013985;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .recruit_complete_form_list_td .inquiry {
    top: 15px;
  }
}
.recruit_complete_form_list_td .cap {
  margin-top: 10px;
  font-size: clamp(14px, 1.6vw, 16px);
}
@media only screen and (max-width: 767px) {
  .recruit_complete_form_list_td .cap {
    font-size: 16px;
  }
}
.recruit_complete_form_list_td_zip {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.recruit_complete_form_list_td_zip .txt {
  padding-top: 15px;
  width: 25px;
  font-size: 16px;
}
.recruit_complete_form_list_td_zip .inputarea {
  width: 185px;
}
.recruit_complete_form_list_td_address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
}
@media only screen and (max-width: 767px) {
  .recruit_complete_form_list_td_address {
    display: block;
    margin-left: -56px;
  }
}
.recruit_complete_form_list_td_address .txt {
  padding-top: 5px;
  width: 85px;
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .recruit_complete_form_list_td_address .txt {
    width: 100%;
    margin-bottom: 10px;
    font-size: 16px;
  }
}
.recruit_complete_form_list_td_address .inputarea {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.recruit_complete_form_list_td_txt {
  margin-bottom: 20px;
  padding-top: 10px;
  font-size: clamp(14px, 1.6vw, 16px);
}
@media only screen and (max-width: 767px) {
  .recruit_complete_form_list_td_txt {
    font-size: 16px;
  }
}
.recruit_complete_form_cap {
  text-align: center;
}

/*--------------------------------------------------------------------------
   #animation
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* recruit_workflow_list
=================================================================*/
.recruit_workflow_list.is-custom .recruit_workflow_item .no, .recruit_workflow_list.is-custom .recruit_workflow_item .txt, .recruit_workflow_list.is-custom .recruit_workflow_item .bg {
  translate: 80px 0;
  opacity: 0;
}
@media only screen and (max-width: 767px) {
  .recruit_workflow_list.is-custom .recruit_workflow_item .no, .recruit_workflow_list.is-custom .recruit_workflow_item .txt, .recruit_workflow_list.is-custom .recruit_workflow_item .bg {
    translate: 0 80px;
    opacity: 0;
  }
}

.recruit_workflow_list.is-custom.is-animated .recruit_workflow_item .no, .recruit_workflow_list.is-custom.is-animated .recruit_workflow_item .txt, .recruit_workflow_list.is-custom.is-animated .recruit_workflow_item .bg {
  translate: 0 0;
  opacity: 1;
  -webkit-transition: opacity 0.6s ease-in-out, translate 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.6s ease-in-out, translate 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.recruit_workflow_list.is-custom.is-animated .recruit_workflow_item:nth-child(1) .no, .recruit_workflow_list.is-custom.is-animated .recruit_workflow_item:nth-child(1) .txt, .recruit_workflow_list.is-custom.is-animated .recruit_workflow_item:nth-child(1) .bg {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.recruit_workflow_list.is-custom.is-animated .recruit_workflow_item:nth-child(2) .no, .recruit_workflow_list.is-custom.is-animated .recruit_workflow_item:nth-child(2) .txt, .recruit_workflow_list.is-custom.is-animated .recruit_workflow_item:nth-child(2) .bg {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.recruit_workflow_list.is-custom.is-animated .recruit_workflow_item:nth-child(3) .no, .recruit_workflow_list.is-custom.is-animated .recruit_workflow_item:nth-child(3) .txt, .recruit_workflow_list.is-custom.is-animated .recruit_workflow_item:nth-child(3) .bg {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.recruit_workflow_list.is-custom.is-animated .recruit_workflow_item:nth-child(4) .no, .recruit_workflow_list.is-custom.is-animated .recruit_workflow_item:nth-child(4) .txt, .recruit_workflow_list.is-custom.is-animated .recruit_workflow_item:nth-child(4) .bg {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}

/*--------------------------------------------------------------------------
   overwrite
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
.works .all_m_head {
  background: url(../images/works_head_bg.jpg) no-repeat 50% 0/cover;
}
/*--------------------------------------------------------------------------
   common
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/*--------------------------------------------------------------------------
   #works_nav
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.works_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: clamp(0px, 10.5vw, 168px);
}
@media only screen and (max-width: 767px) {
  .works_nav {
    margin-top: 80px;
  }
}
.works_nav_btn {
  position: relative;
  width: 49.75%;
  height: clamp(0px, 6.75vw, 108px);
  background: #142D4A;
  border-radius: 15px 15px 0 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .works_nav_btn {
    width: 49%;
    height: 86px;
    border-radius: 12px 12px 0 0;
  }
}
.works_nav_btn button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
}
.works_nav_btn._current {
  height: calc(clamp(0px, 6.75vw, 108px) + 20px);
  background: #004086;
}
@media only screen and (max-width: 767px) {
  .works_nav_btn._current {
    height: 100px;
  }
}
.mode-pc .works_nav_btn:hover {
  height: calc(clamp(0px, 6.75vw, 108px) + 20px);
}
.works_nav_text {
  text-align: center;
}
.works_nav_text span {
  display: block;
}
.works_nav_text .en {
  font-family: "Prata", serif;
  font-size: clamp(0px, 1.375vw, 22px);
  color: #74E4FF;
}
@media only screen and (max-width: 767px) {
  .works_nav_text .en {
    font-size: 14px;
  }
}
.works_nav_text .ja {
  font-size: clamp(0px, 1.625vw, 26px);
  color: #fff;
  line-height: 1.1;
}
@media only screen and (max-width: 767px) {
  .works_nav_text .ja {
    font-size: 15px;
    line-height: 1.3;
  }
}

/*--------------------------------------------------------------------------
   #works_contents
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.works_contents {
  padding: clamp(0px, 5.625vw, 90px) 0 clamp(0px, 21.25vw, 340px);
  background: -webkit-gradient(linear, left top, left bottom, from(#004086), color-stop(90%, #27DBFC), to(#27DBFC));
  background: linear-gradient(to bottom, #004086 0%, #27DBFC 90%, #27DBFC 100%);
}
@media only screen and (max-width: 767px) {
  .works_contents {
    padding: 60px 0 200px;
  }
}
.works_contents_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 0.35s ease, -webkit-transform 0.35s ease;
  transition: opacity 0.35s ease, -webkit-transform 0.35s ease;
  transition: opacity 0.35s ease, transform 0.35s ease;
  transition: opacity 0.35s ease, transform 0.35s ease, -webkit-transform 0.35s ease;
}
@media only screen and (max-width: 767px) {
  .works_contents_list {
    display: block;
  }
}
.works_contents_list.is-fading-out {
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}
.works_contents_list.is-fading-in {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.works_contents_item {
  position: relative;
  width: 30.5%;
  margin-left: auto;
  padding: clamp(0px, 2.375vw, 38px) clamp(0px, 1.875vw, 30px) clamp(0px, 1.875vw, 30px);
  background: #fff;
  border-radius: 10px;
}
@media only screen and (max-width: 767px) {
  .works_contents_item {
    width: auto;
    margin: 0 0 24px;
    padding: 30px 20px 20px;
    border-radius: 8px;
    -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
            box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  }
}
.works_contents_item a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  height: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.works_contents_item a::before {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 51px;
  height: 51px;
  background: url(../images/all_icon_modal.svg) no-repeat 50% 50%/cover;
  content: "";
  z-index: 3;
}
@media only screen and (max-width: 767px) {
  .works_contents_item a::before {
    right: 5px;
  }
}
.mode-pc .works_contents_item a:hover .works_contents_item_title::after {
  opacity: 1;
}
.mode-pc .works_contents_item a:hover .works_contents_item_img {
  overflow: hidden;
}
.mode-pc .works_contents_item a:hover .works_contents_item_img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.works_contents_item a[data-have-images="0"] {
  cursor: default;
}
.works_contents_item a[data-have-images="0"]::before {
  content: none;
}
.works_contents_item a[data-have-images="0"]:hover .works_contents_item_title::after {
  opacity: 0;
}
.works_contents_item a[data-have-images="0"]:hover .works_contents_item_img img {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.works_contents_item:nth-child(3n+1) {
  margin-left: 0;
}
.works_contents_item:nth-child(n+4) {
  margin-top: clamp(0px, 3.125vw, 50px);
}
@media only screen and (max-width: 767px) {
  .works_contents_item:nth-child(n+4) {
    margin-top: 0;
  }
}
.works_contents_item_tag {
  display: inline-block;
  padding: 5px 12px;
  background: #013985;
  border-radius: 30px;
  font-size: clamp(0px, 0.75vw, 12px);
  color: #fff;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .works_contents_item_tag {
    font-size: 12px;
  }
}
.works_contents_item_title {
  position: relative;
  width: 100%;
  margin-top: clamp(0px, 0.625vw, 10px);
  padding-bottom: 5px;
  border-bottom: 1px solid #013985;
  font-size: clamp(0px, 1.125vw, 18px);
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .works_contents_item_title {
    margin-top: 10px;
    font-size: 18px;
  }
}
.works_contents_item_title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #013985;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.works_contents_item_text {
  margin-top: clamp(0px, 0.625vw, 10px);
  margin-bottom: clamp(0px, 1.25vw, 20px);
  font-size: clamp(0px, 1vw, 16px);
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  .works_contents_item_text {
    margin-top: 10px;
    margin-bottom: 0;
    font-size: 16px;
  }
}
.works_contents_item_img {
  margin-top: auto;
  aspect-ratio: 438/294;
  background-color: #999;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .works_contents_item_img {
    margin-top: 18px;
  }
}
.works_contents_item_img img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.works_contents_text {
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .works_contents_text {
    margin: 50px 0 30px;
    font-size: 16px;
    line-height: 2;
  }
}
.works_contents_text span {
  display: block;
}
.works_contents_text .en {
  font-family: "Prata", serif;
  font-size: clamp(0px, 1.375vw, 22px);
  color: #74E4FF;
}
@media only screen and (max-width: 767px) {
  .works_contents_text .en {
    font-size: 16px;
  }
}
.works_contents_text .ja {
  font-size: clamp(0px, 1.625vw, 26px);
  color: #fff;
  line-height: 1.1;
}
@media only screen and (max-width: 767px) {
  .works_contents_text .ja {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------------------
   #animation
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* top_pro_main pc
=================================================================*/
/*--------------------------------------------------------------------------
   overwrite
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
.company .all_m_head {
  background: url(../images/company_head_bg.jpg) no-repeat 50% 0/cover;
}
/*--------------------------------------------------------------------------
   common
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/*--------------------------------------------------------------------------
   #company_greeting
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.company_greeting {
  margin-top: clamp(90px, 10vw, 160px);
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .company_greeting {
    text-align: left;
  }
}
.company_greeting_text {
  margin-top: clamp(0px, 5.625vw, 90px);
  font-size: clamp(0px, 1.6666666667vw, 20px);
  line-height: 2.1;
}
@media only screen and (max-width: 767px) {
  .company_greeting_text {
    margin: 50px 0 30px;
    font-size: 16px;
  }
}

/*--------------------------------------------------------------------------
   #company_profile
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.company_profile {
  margin-top: clamp(100px, 8.125vw, 130px);
  padding: clamp(100px, 9.375vw, 150px) 0 clamp(150px, 15.625vw, 250px);
  background: -webkit-gradient(linear, left top, left bottom, from(#004086), color-stop(90%, #1CAED9), to(#1CAED9));
  background: linear-gradient(to bottom, #004086 0%, #1CAED9 90%, #1CAED9 100%);
}
@media only screen and (max-width: 767px) {
  .company_profile {
    padding-top: 96px;
  }
}
.company_profile_header {
  width: 25%;
}
@media only screen and (max-width: 767px) {
  .company_profile_header {
    width: auto;
  }
}
.company_profile .all_c_hdg ._en,
.company_profile .all_c_hdg ._ja {
  color: #fff;
}
.company_profile_contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: clamp(50px, 6.25vw, 100px) auto 0;
  padding: 0 20px;
  max-width: 1370px;
}
@media only screen and (max-width: 767px) {
  .company_profile_contents {
    display: block;
  }
}
.company_profile_box {
  max-width: 650px;
  width: calc(50% - 20px);
  padding: clamp(20px, 2.5vw, 40px) clamp(10px, 1.25vw, 20px);
  background: rgba(255, 255, 255, 0.8);
  border-radius: clamp(0px, 1.625vw, 26px);
}
@media only screen and (max-width: 767px) {
  .company_profile_box {
    max-width: none;
    width: auto;
    padding: 32px 20px;
  }
}
@media only screen and (max-width: 767px) {
  .company_profile_box + .company_profile_box {
    margin-top: 40px;
  }
}
.company_profile_box._development .company_profile_outline_title {
  background: #013985;
}
.company_profile_logo {
  margin-bottom: clamp(0px, 2vw, 32px);
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .company_profile_logo {
    width: 66%;
    margin: 0 auto 20px;
  }
  .company_profile_logo img {
    width: 100%;
    height: auto;
  }
}
.company_profile_outline {
  width: 100%;
  margin-top: 7px;
  border-radius: 5px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .company_profile_outline {
    display: block;
  }
}
.company_profile_outline_title {
  padding: 10px;
  background: #0275C4;
  font-size: clamp(12px, 1.3333333333vw, 16px);
  color: #fff;
  text-align: center;
  line-height: 1.3;
}
@media only screen and (max-width: 767px) {
  .company_profile_outline_title {
    width: auto;
    font-size: 15px;
  }
}
.company_profile_outline_text {
  padding: 12px 20px;
  background: #fff;
  font-size: clamp(12px, 1.25vw, 15px);
  line-height: 1.3;
}
@media only screen and (max-width: 767px) {
  .company_profile_outline_text {
    width: auto;
    padding: 12px 15px;
    font-size: 15px;
    text-align: center;
    line-height: 1.6;
  }
}
.company_profile_outline_text .em {
  font-weight: 600;
}
.company_profile_outline_text .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .company_profile_outline_text .text {
    display: block;
    text-align: left;
    line-height: 1.6;
  }
}
@media only screen and (max-width: 767px) {
  .company_profile_outline_text .text span {
    display: block;
  }
}
.company_profile_outline_text .text span:first-of-type {
  width: 88px;
}
@media only screen and (max-width: 767px) {
  .company_profile_outline_text .text span:first-of-type {
    width: auto;
  }
}
.company_profile_outline_text .text span:last-of-type {
  width: calc(100% - 88px);
}
@media only screen and (max-width: 767px) {
  .company_profile_outline_text .text span:last-of-type {
    width: auto;
  }
}
.company_profile_outline_text .text:nth-child(n+2) {
  margin-top: 5px;
}
.company_profile_outline_text a {
  color: #0275C4;
  text-decoration: underline;
}

/*--------------------------------------------------------------------------
   #company_access
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.company_access {
  position: relative;
  margin-top: -5vw;
  padding: clamp(0px, 9.1875vw, 147px) 0 clamp(0px, 15.625vw, 250px);
  background: -webkit-gradient(linear, left top, left bottom, from(#EBFBFF), to(#C1E5FF));
  background: linear-gradient(#EBFBFF 0%, #C1E5FF 100%);
  border-radius: clamp(0px, 5.625vw, 90px) clamp(0px, 5.625vw, 90px) 0 0;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .company_access {
    margin-top: -60px;
    padding: 105px 0;
    border-radius: clamp(0px, 10.6666666667vw, 80px) clamp(0px, 10.6666666667vw, 80px) 0 0;
  }
}
.company_access .all_c_hdg {
  margin-bottom: clamp(60px, 6.25vw, 100px);
}
.company_access_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.8);
  border-radius: clamp(0px, 0.9375vw, 15px);
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .company_access_box {
    display: block;
    max-width: none;
    border-radius: 8px;
  }
}
.company_access_box + .company_access_box {
  margin-top: clamp(20px, 1.875vw, 30px);
}
.company_access_box_map {
  width: 42%;
  height: 306px;
}
@media only screen and (max-width: 767px) {
  .company_access_box_map {
    width: auto;
    height: auto;
    aspect-ratio: 335/243;
  }
}
.company_access_box_map iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: visible !important;
  overflow-clip-margin: inherit !important;
}
.company_access_box_body {
  width: 58%;
  padding: clamp(30px, 3.125vw, 50px) clamp(20px, 5vw, 80px);
}
@media only screen and (max-width: 767px) {
  .company_access_box_body {
    width: auto;
  }
}
.company_access_box_title {
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 600;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .company_access_box_title {
    font-size: 20px;
  }
}
.company_access_box_add {
  margin-top: clamp(0px, 1.25vw, 15px);
  font-size: clamp(12px, 1.3333333333vw, 16px);
}
@media only screen and (max-width: 767px) {
  .company_access_box_add {
    margin-top: 15px;
    font-size: 16px;
  }
}
.company_access_box_gmap {
  position: relative;
  margin-top: clamp(0px, 0.8333333333vw, 10px);
  padding-left: 20px;
  font-size: clamp(12px, 1.3333333333vw, 16px);
}
@media only screen and (max-width: 767px) {
  .company_access_box_gmap {
    margin-top: 10px;
    font-size: 15px;
  }
}
.company_access_box_gmap::before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 15px;
  height: 21px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../../images/all_icon_pin.svg) no-repeat 50% 50%/cover;
  content: "";
  z-index: 3;
}
@media only screen and (max-width: 767px) {
  .company_access_box_gmap::before {
    right: 5px;
  }
}
.company_access_box_gmap a {
  color: #0275C4;
}
.company_access_box_traffic {
  margin-top: clamp(20px, 3.3333333333vw, 40px);
  font-size: clamp(12px, 1.3333333333vw, 16px);
}
@media only screen and (max-width: 767px) {
  .company_access_box_traffic {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------------------
   #company_partners
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.company_partners {
  position: relative;
  margin-top: -5vw;
  padding: clamp(0px, 9.1875vw, 147px) 0 clamp(0px, 18.75vw, 300px);
  background: #fff;
  border-radius: clamp(0px, 5.625vw, 90px) clamp(0px, 5.625vw, 90px) 0 0;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .company_partners {
    margin-top: -60px;
    padding: 100px 0 170px;
    border-radius: clamp(0px, 10.6666666667vw, 80px) clamp(0px, 10.6666666667vw, 80px) 0 0;
  }
}
.company_partners_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50%;
  margin-top: -10vw;
  margin-left: auto;
}
@media only screen and (max-width: 767px) {
  .company_partners_list {
    width: auto;
    margin: 50px 0 0;
  }
}
.company_partners_logo {
  line-height: 1;
}
.company_partners_logo:nth-child(2) {
  margin-left: clamp(0px, 4.875vw, 78px);
}
.company_partners_logo_img img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

/*--------------------------------------------------------------------------
   #animation
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* top_pro_main pc
=================================================================*/
/*--------------------------------------------------------------------------
   overwrite
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
.csr .all_m_head {
  background: url(../images/csr_head_bg.jpg) no-repeat 50% 0/cover;
}
/*--------------------------------------------------------------------------
   common
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/*--------------------------------------------------------------------------
   #csr_main
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.csr_main {
  padding-bottom: 130px;
  margin-bottom: 195px;
}
@media only screen and (max-width: 767px) {
  .csr_main {
    padding-bottom: 80px;
    margin-bottom: 100px;
  }
}
.csr_main_wrap {
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(#ebfbff), to(#c1e5ff));
  background: linear-gradient(#ebfbff 0%, #c1e5ff 100%);
  border-radius: 90px;
  padding: 120px 0 147px;
}
@media only screen and (max-width: 767px) {
  .csr_main_wrap {
    border-radius: 40px;
    padding: 108px 0 108px;
  }
}
.csr_main_wrap .all_c_hdg {
  margin-bottom: 110px;
}
@media only screen and (max-width: 767px) {
  .csr_main_wrap .all_c_hdg {
    margin-bottom: 55px;
  }
}
.csr_main_bg {
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0.55;
  mix-blend-mode: soft-light;
}
.csr_main_bg img {
  width: 100%;
  height: auto;
  border-radius: 0 0 90px 90px;
}
@media only screen and (max-width: 767px) {
  .csr_main_bg img {
    border-radius: 0 0 40px 40px;
  }
}
.csr_main_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 135px;
}
@media only screen and (max-width: 767px) {
  .csr_main_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    margin-bottom: 80px;
  }
}
.csr_main_list .article {
  position: relative;
  width: calc(50% - 20px);
  padding: clamp(20px, 3.3333333333vw, 40px) clamp(25px, 4.1666666667vw, 50px) clamp(20px, 3.3333333333vw, 40px) clamp(100px, 13.3333333333vw, 160px);
  background-color: #fff;
  border-radius: 15px;
}
@media only screen and (max-width: 767px) {
  .csr_main_list .article {
    width: 100%;
    padding: 25px 20px;
    border-radius: 8px;
  }
}
.csr_main_list .article_hdg {
  margin-bottom: clamp(14px, 1.6666666667vw, 20px);
}
@media only screen and (max-width: 767px) {
  .csr_main_list .article_hdg {
    margin-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
  }
}
.csr_main_list .article_hdg .txt {
  font-size: clamp(14px, 1.6666666667vw, 20px);
  font-weight: 700;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  .csr_main_list .article_hdg .txt {
    font-size: 18px;
  }
}
.csr_main_list .article_hdg small {
  font-size: clamp(12px, 1.3333333333vw, 16px);
}
@media only screen and (max-width: 767px) {
  .csr_main_list .article_hdg small {
    font-size: 16px;
  }
}
.csr_main_list .article_hdg .icon {
  position: absolute;
  top: 50%;
  left: clamp(25px, 4.1666666667vw, 50px);
  translate: 0 -50%;
  width: clamp(50px, 6vw, 72px);
}
@media only screen and (max-width: 767px) {
  .csr_main_list .article_hdg .icon {
    position: static;
    translate: 0 0;
  }
}
.csr_main_list .article_hdg .icon img {
  max-width: 100%;
  height: auto;
}
.csr_main_list .article_txt {
  font-size: clamp(12px, 1.3333333333vw, 16px);
}
@media only screen and (max-width: 767px) {
  .csr_main_list .article_txt {
    font-size: 16px;
  }
}
.csr_main_list .article_item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 1rem;
  font-size: clamp(12px, 1.3333333333vw, 16px);
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  .csr_main_list .article_item {
    padding-left: 0.8rem;
    font-size: 16px;
  }
}
.csr_main_list .article_item:not(:first-child) {
  margin-top: 10px;
}
.csr_main_list .article_item::before {
  position: absolute;
  top: 0.5rem;
  left: 0;
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 6px;
  background-color: #34B1E1;
  content: "";
}
@media only screen and (max-width: 767px) {
  .csr_main_list .article_item::before {
    width: 5px;
    height: 5px;
  }
}
.csr_main_logo {
  margin-bottom: 84px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .csr_main_logo {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .csr_main_logo img {
    width: 295px;
    height: auto;
  }
}
.csr_main_txt2 {
  font-size: 18px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .csr_main_txt2 {
    font-size: 16px;
    text-align: left;
  }
}

/*--------------------------------------------------------------------------
   #csr_project
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.csr_project {
  padding-bottom: 130px;
}
@media only screen and (max-width: 767px) {
  .csr_project {
    padding-bottom: 80px;
  }
}
.csr_project .all_c_hdg {
  margin-bottom: 110px;
}
@media only screen and (max-width: 767px) {
  .csr_project .all_c_hdg {
    margin-bottom: 55px;
  }
}
.csr_project_lead {
  padding: 140px 0 100px;
  font-size: 20px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .csr_project_lead {
    padding: 92px 0 78px;
    font-size: 16px;
    text-align: left;
    line-height: 2.1;
  }
}
.csr_project_contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 115px;
}
@media only screen and (max-width: 767px) {
  .csr_project_contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 80px;
  }
}
.csr_project_hdg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  width: 25%;
  margin-top: 25px;
}
@media only screen and (max-width: 767px) {
  .csr_project_hdg {
    gap: 10px;
    width: 100%;
    margin-top: 0;
    margin-bottom: 30px;
  }
}
.csr_project_hdg ._en {
  font-size: clamp(26px, 3.3333333333vw, 40px);
  font-family: "Prata", serif;
  font-weight: 400;
  color: #013985;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .csr_project_hdg ._en {
    font-size: 32px;
  }
}
.csr_project_hdg ._ja {
  font-size: clamp(12px, 1.5vw, 18px);
  color: #013985;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .csr_project_hdg ._ja {
    font-size: 15px;
  }
}
.csr_project_body {
  width: 65%;
}
@media only screen and (max-width: 767px) {
  .csr_project_body {
    width: auto;
  }
}
.csr_project_body_hdg {
  margin-bottom: -10px;
  font-size: clamp(14px, 1.6666666667vw, 20px);
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .csr_project_body_hdg {
    margin-bottom: 0;
    font-size: 18px;
  }
}
.csr_project_body_hdg a {
  position: relative;
  padding-bottom: 5px;
  color: #013985;
}
.csr_project_body_hdg a::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #013985;
  scale: 0;
  content: "";
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.mode-pc .csr_project_body_hdg a:hover::before {
  scale: 1;
}
.csr_project_body_hdg a::after {
  position: relative;
  left: 10px;
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url(../images/all_icon_blank.svg);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
}
.csr_project_txtbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
}
@media only screen and (max-width: 767px) {
  .csr_project_txtbox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
}
.csr_project_txtbox_block {
  width: 47.7%;
  padding: clamp(15px, 1.875vw, 30px) clamp(20px, 2.5vw, 40px);
  background-color: #E8F6FF;
  border-radius: 15px;
}
@media only screen and (max-width: 767px) {
  .csr_project_txtbox_block {
    width: auto;
    padding: 25px 20px;
    border-radius: 8px;
  }
}
.csr_project_txtbox_block:not(:first-child) {
  margin-left: auto;
}
@media only screen and (max-width: 767px) {
  .csr_project_txtbox_block:not(:first-child) {
    margin: 20px 0 0;
  }
}
.csr_project_txtbox_detail {
  margin: 0 0 6px 2rem;
  text-indent: -2rem;
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 500;
  line-height: 1.33;
}
@media only screen and (max-width: 1100px) {
  .csr_project_txtbox_detail {
    margin-left: 2.8vw;
    text-indent: -2.8vw;
  }
}
@media only screen and (max-width: 767px) {
  .csr_project_txtbox_detail {
    margin: 0 0 8px 2rem;
    text-indent: -2rem;
    font-size: 18px;
  }
}
.csr_project_txtbox_txt {
  font-size: clamp(12px, 1.3333333333vw, 16px);
}
@media only screen and (max-width: 767px) {
  .csr_project_txtbox_txt {
    font-size: 16px;
    line-height: 1.4;
  }
}
.csr_project_txtbox_txt a {
  color: #013985;
  text-decoration: underline;
}
.csr_project_txtbox_txt a:hover {
  text-decoration: none;
}
.csr_project_txtbox_item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 1.4vw;
  font-size: clamp(12px, 1.3333333333vw, 16px);
  color: #252525;
  line-height: 1.75;
}
@media only screen and (max-width: 767px) {
  .csr_project_txtbox_item {
    padding-left: 1.1rem;
    font-size: 16px;
    line-height: 1.4;
  }
}
.csr_project_txtbox_item::before {
  position: absolute;
  top: 0.8vw;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 10px;
  background-color: #34B1E1;
  content: "";
}
@media only screen and (max-width: 767px) {
  .csr_project_txtbox_item::before {
    top: 0.65em;
    width: 5px;
    height: 5px;
  }
}
.csr_project_slide_img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}
.csr_project_slide_img img {
  width: 4131px;
  height: auto;
}
@media only screen and (max-width: 767px) {
  .csr_project_slide_img img {
    width: auto;
    height: 224px;
  }
}
.csr_project_slide_img img:first-child {
  -webkit-animation: loop-slide1 100s -50s linear infinite;
          animation: loop-slide1 100s -50s linear infinite;
}
.csr_project_slide_img img:last-child {
  -webkit-animation: loop-slide2 100s linear infinite;
          animation: loop-slide2 100s linear infinite;
}
@-webkit-keyframes loop-slide1 {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes loop-slide1 {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes loop-slide2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
@keyframes loop-slide2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}

/*--------------------------------------------------------------------------
   #csr_pw
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/* section
-----------------------------------------------------------------*/
.csr_pw {
  padding-bottom: clamp(0px, 10.9375vw, 175px);
}
@media only screen and (max-width: 767px) {
  .csr_pw {
    padding-bottom: 120px;
  }
}
.csr_pw_inline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .csr_pw_inline {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.csr_pw_logo {
  width: 25%;
}
@media only screen and (max-width: 767px) {
  .csr_pw_logo {
    width: 240px;
    margin: 0 auto 30px;
  }
}
.csr_pw_logo img {
  max-width: 100%;
  height: auto;
}
@media only screen and (max-width: 767px) {
  .csr_pw_logo img {
    width: 100%;
    height: auto;
  }
}
.csr_pw_txtbox {
  width: 65%;
}
@media only screen and (max-width: 767px) {
  .csr_pw_txtbox {
    width: 100%;
    border-radius: 8px;
  }
}
.csr_pw_txt {
  margin-bottom: 75px;
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  .csr_pw_txt {
    margin-bottom: 40px;
    font-size: 16px;
  }
}
.csr_pw_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px clamp(20px, 2.1875vw, 35px);
}
@media only screen and (max-width: 767px) {
  .csr_pw_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.csr_pw_item {
  width: 47.7%;
  padding: clamp(15px, 1.875vw, 30px) clamp(20px, 2.5vw, 40px);
  background-color: #E8F6FF;
  border-radius: 15px;
}
@media only screen and (max-width: 767px) {
  .csr_pw_item {
    width: auto;
    border-radius: 8px;
  }
}
.csr_pw_item_hdg {
  margin-bottom: 10px;
  font-size: clamp(14px, 1.6666666667vw, 20px);
  color: #013985;
}
@media only screen and (max-width: 767px) {
  .csr_pw_item_hdg {
    font-size: 18px;
  }
}
.csr_pw_item_hdg:not(:first-of-type) {
  margin-top: 30px;
}
@media only screen and (max-width: 767px) {
  .csr_pw_item_hdg:not(:first-of-type) {
    margin-top: 20px;
  }
}
.csr_pw_item_hdg a {
  position: relative;
  padding-bottom: 5px;
}
.csr_pw_item_hdg a::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #013985;
  scale: 0;
  content: "";
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.mode-pc .csr_pw_item_hdg a:hover::before {
  scale: 1;
}
.csr_pw_item_hdg a::after {
  position: relative;
  left: 10px;
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url(../images/all_icon_blank.svg);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
}
.csr_pw_item_txt {
  font-size: clamp(12px, 1.3333333333vw, 16px);
}
@media only screen and (max-width: 767px) {
  .csr_pw_item_txt {
    font-size: 16px;
  }
}
.csr_pw_item_txt a {
  color: #013985;
  text-decoration: underline;
}
.csr_pw_item_txt a:hover {
  text-decoration: none;
}

/*--------------------------------------------------------------------------
   #animation
---------------------------------------------------------------------------*/
/* use
-----------------------------------------------------------------*/
/*# sourceMappingURL=style.css.map */