@charset "UTF-8";
/** @format */
/** @format */
/** @format */
/** @format */
/** @format */
/* bold */
@font-face {
  font-family: "DIN Alternate";
  src: url("../font/DIN Alternate Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
html {
  font-size: 62.5%;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /*余白や線を幅や高さに含める*/
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

body {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo;
  color: #333333;
  background-color: #f6f8f9;
  letter-spacing: 1px;
  font-size: 1em;
  overflow: hidden;
}

img {
  width: 100%;
}

.wrapper {
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
}

p {
  line-height: 1.4em;
  letter-spacing: 2px;
}

.fadein {
  opacity: 0;
  -webkit-transform: translateY(80px);
          transform: translateY(80px);
  -webkit-transition: opacity 1s ease, -webkit-transform 1.5s ease;
  transition: opacity 1s ease, -webkit-transform 1.5s ease;
  transition: opacity 1s ease, transform 1.5s ease;
  transition: opacity 1s ease, transform 1.5s ease, -webkit-transform 1.5s ease;
}
.fadein.scrollin {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

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

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
  overflow-x: hidden;
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
  overflow-x: hidden;
}

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

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

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

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

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

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

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

address {
  font-style: inherit;
}

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

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

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

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

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

select:disabled {
  opacity: inherit;
}

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

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

legend {
  padding: 0;
}

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

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

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

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

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

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

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

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

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

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

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

caption {
  text-align: left;
}

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

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

/* -----------------------------
Top_image
------------------------------*/
.fadein {
  opacity: 0;
  -webkit-transform: translateY(80px);
          transform: translateY(80px);
  -webkit-transition: opacity 1s, -webkit-transform 2s;
  transition: opacity 1s, -webkit-transform 2s;
  transition: opacity 1s, transform 2s;
  transition: opacity 1s, transform 2s, -webkit-transform 2s;
}

.fadein.scrollin {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.top__img .roit_animation {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-filter: drop-shadow(3px 3px 3px rgba(255, 255, 255, 0.6));
          filter: drop-shadow(3px 3px 3px rgba(255, 255, 255, 0.6));
  padding: 80px 40px;
}

.top__img .top__video {
  top: 0;
  left: 0;
  text-align: center;
  -webkit-filter: brightness(1.1);
          filter: brightness(1.1);
  z-index: -1;
}
@media screen and (max-width: 800px) {
  .top__img .top__video {
    width: 100%;
    position: relative;
    z-index: 0;
    overflow: hidden;
  }
}

.top__video_mov {
  background-size: cover;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .top__video_mov {
    width: 100vw;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
  }
}

/** @format */
.top__concept {
  background-image: -webkit-linear-gradient(150deg, #fff 0 57vw, transparent 57vw 200vw, #fff 200vw);
  background-image: linear-gradient(-60deg, #fff 0 57vw, transparent 57vw 200vw, #fff 200vw);
}

.top__concept_flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  .top__concept_flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column; /* ← 横から縦に */
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; /* 中央寄せしたいなら */
  }
}
@media screen and (max-width: 533px) {
  .top__concept_flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.top__concept_group {
  padding: 72px 40px;
}
@media screen and (max-width: 800px) {
  .top__concept_group {
    padding: 48px 40px;
  }
}

.top__concept_copy {
  font-size: 4.4em;
  letter-spacing: 3px;
}
@media screen and (max-width: 1120px) {
  .top__concept_copy {
    font-size: 3.7em;
    letter-spacing: 2px;
  }
}
@media screen and (max-width: 980px) {
  .top__concept_copy {
    font-size: 3em;
  }
}
@media screen and (max-width: 800px) {
  .top__concept_copy {
    font-size: 2.6em;
    letter-spacing: 2px;
  }
}
@media screen and (max-width: 400px) {
  .top__concept_copy {
    font-size: 2.3em;
    letter-spacing: 2px;
  }
}

.top__concept_btn {
  font-weight: 400;
  border: 2px solid #01438b;
  text-align: center;
  font-size: 1.8em;
  letter-spacing: 2px;
  padding: 16px 32px;
  color: #fff;
  background-color: #01438b;
  border-radius: 99px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 980px) {
  .top__concept_btn {
    font-size: 1.6em;
    letter-spacing: 2px;
    padding: 12px 24px;
  }
}
@media screen and (max-width: 400px) {
  .top__concept_btn {
    margin: 0 auto;
  }
}
.top__concept_btn::after {
  background: #fff;
  border: 2px solid #01438b;
  position: absolute;
  top: 0;
  left: -2px;
  content: "";
  width: 100%;
  height: 100%;
  -webkit-transform: skewY(-10deg) scale(1, 0);
          transform: skewY(-10deg) scale(1, 0);
  height: 140px;
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
.top__concept_btn:hover {
  color: #01438b;
}
.top__concept_btn:hover::after {
  -webkit-transform: skewY(-10deg) scale(1, 1);
          transform: skewY(-10deg) scale(1, 1);
}

.top__concept_img {
  max-width: 45%;
}
@media screen and (max-width: 980px) {
  .top__concept_img {
    max-width: 40%;
  }
}
@media screen and (max-width: 800px) {
  .top__concept_img {
    margin: 24px;
    max-width: 50%;
  }
}
@media screen and (max-width: 533px) {
  .top__concept_img {
    margin: 24px;
    max-width: 80%;
  }
}
@media screen and (max-width: 400px) {
  .top__concept_img {
    margin: 16px;
  }
}

.top__concept_text {
  margin: 24px 0 72px 0;
  font-size: 1.8em;
  letter-spacing: 2px;
  width: auto;
}
@media screen and (max-width: 980px) {
  .top__concept_text {
    margin: 16px 0 36px 0;
    font-size: 1.6em;
  }
}

/** @format */
/* -----------------------------
Service
------------------------------*/
.service {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-image: url("../img/pages/front-page/back_service.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
}

@media screen and (max-width: 980px) {
  .service .wrapper {
    padding: 32px;
  }
}
@media screen and (max-width: 800px) {
  .service .wrapper {
    padding: 24px 40px;
  }
}
@media screen and (max-width: 533px) {
  .service .wrapper {
    padding: 24px 80px;
  }
}
@media screen and (max-width: 400px) {
  .service .wrapper {
    padding: 24px 56px;
  }
}

.section__title_box {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.service__ul {
  display: grid;
  grid-template-columns: repeat(3, 1.5fr);
  gap: 80px 72px;
  margin: 0 auto;
}
@media screen and (max-width: 1120px) {
  .service__ul {
    gap: 64px 40px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 800px) {
  .service__ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 72px 48px;
  }
}
@media screen and (max-width: 533px) {
  .service__ul {
    grid-template-columns: 1fr;
  }
}

.service__li {
  text-align: center;
  position: relative;
}
.service__li:nth-child(2) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.service__li:nth-child(3) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.service__li:nth-child(4) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.service__li:nth-child(5) {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
.service__li:nth-child(6) {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.service__li:nth-child(7) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.section__title {
  position: relative;
  margin-top: 40px;
  margin-bottom: 0.2rem;
  text-align: center;
  font-size: 2.4em;
  font-weight: 600;
  color: #333333;
  z-index: 1;
}
.section__title::before {
  position: absolute;
  top: -56px;
  left: 50%;
  letter-spacing: 8px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  content: "SERVICE";
  font-family: "DIN Alternate", Bahnschrift, "Franklin Gothic Medium", "Nimbus Sans Narrow", sans-serif-condensed, sans-serif;
  font-size: 144px;
  color: #fff;
  opacity: 0.6;
  text-transform: uppercase;
  z-index: -10;
}
@media screen and (max-width: 1120px) {
  .section__title {
    text-align: center;
  }
  .section__title::before {
    position: absolute;
    top: -72px;
    left: 50%;
    letter-spacing: 8px;
    font-size: 6em;
  }
}
@media screen and (max-width: 980px) {
  .section__title {
    margin-top: 24px;
    font-size: 1.8em;
  }
  .section__title::before {
    top: -50px;
    font-size: 4.5em;
    letter-spacing: 4px;
  }
}
@media screen and (max-width: 800px) {
  .section__title::before {
    top: -40px;
    font-size: 4em;
    letter-spacing: 4px;
  }
}
@media screen and (max-width: 400px) {
  .section__title::before {
    top: -26px;
    font-size: 3.8em;
  }
}

.service__li_num {
  position: absolute;
  top: -40px;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 3.2em;
  width: 80px;
  height: 80px;
  margin: 0 auto;
  font-family: "DIN Alternate", Bahnschrift, "Franklin Gothic Medium", "Nimbus Sans Narrow", sans-serif-condensed, sans-serif;
  letter-spacing: 2px;
  color: #fff;
  text-align: center;
  font-weight: 600;
  background-color: #01438b;
  border-radius: 99px;
}
@media screen and (max-width: 800px) {
  .service__li_num {
    font-size: 2.8em;
    width: 64px;
    height: 64px;
  }
}
.service__li_num::before {
  content: " ";
}

.service__group {
  margin-top: 100px;
  padding: 40px 88px;
}
@media screen and (max-width: 1120px) {
  .service__group {
    margin-top: 56px;
    padding: 40px 88px;
  }
}
@media screen and (max-width: 980px) {
  .service__group {
    margin-top: 40px;
  }
}
@media screen and (max-width: 800px) {
  .service__group {
    margin-top: 64px;
    padding: 40px 72px;
  }
}

.service__li_box {
  position: relative;
  width: auto;
  padding: 40px 48px;
  min-height: 460px;
  background-color: rgba(255, 255, 255, 0.918);
}
@media screen and (max-width: 1120px) {
  .service__li_box {
    padding: 40px 32px;
    min-height: 494px;
  }
}
@media screen and (max-width: 980px) {
  .service__li_box {
    height: 100%;
    padding: 24px 24px;
    min-height: 360px;
  }
}

.service__li_img {
  margin-top: 32px;
  width: 72px;
  height: 72px;
}
@media screen and (max-width: 980px) {
  .service__li_img {
    margin-top: 24px;
    width: 64px;
    height: 64px;
  }
}
@media screen and (max-width: 800px) {
  .service__li_img {
    margin-top: 16px;
  }
}

.service__li_service {
  margin-top: 16px;
  font-size: 2.4em;
  letter-spacing: 2px;
  color: #01438b;
}
@media screen and (max-width: 980px) {
  .service__li_service {
    margin-top: 16px;
    font-size: 2.2em;
  }
}
@media screen and (max-width: 400px) {
  .service__li_service {
    font-size: 2em;
  }
}

.service__li_text {
  margin: 16px;
  font-size: 1.6rem;
  text-align: center;
}

.service__li_btn {
  display: block;
  width: 160px;
  margin: 24px auto;
  color: #01438b;
  font-size: 1.6rem;
  font-weight: 600;
  padding: 16px 16px;
  border: 1.5px #01438b solid;
  border-radius: 199px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 980px) {
  .service__li_btn {
    width: 140px;
    font-size: 1.4em;
    padding: 12px 16px;
  }
}
.service__li_btn::after {
  background: #01438b;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  -webkit-transform: skewY(-10deg) scale(1, 0);
          transform: skewY(-10deg) scale(1, 0);
  height: 140px;
  z-index: -1;
}
.service__li_btn:hover {
  color: #fff;
}
.service__li_btn:hover::after {
  -webkit-transform: skewY(-10deg) scale(1, 1);
          transform: skewY(-10deg) scale(1, 1);
}

/* -----------------------------
News
------------------------------*/
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .section-container {
    padding: 0;
  }
}

.news {
  background-image: -webkit-linear-gradient(150deg, #fff 0 57vw, transparent 57vw 200vw, #fff 200vw);
  background-image: linear-gradient(-60deg, #fff 0 57vw, transparent 57vw 200vw, #fff 200vw);
  position: relative;
  z-index: 5;
}

.news__list_flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 16px;
}
.news__list_flex .news__list_date {
  font-family: "DIN Alternate", Bahnschrift, "Franklin Gothic Medium", "Nimbus Sans Narrow", sans-serif-condensed, sans-serif;
  font-size: 1.6rem;
  color: #333;
  letter-spacing: 2px;
  padding-top: 4px;
  padding-bottom: 8px;
}

.news__btn_flex {
  margin: 24px 0 0 auto;
  width: 130px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 8px;
}
.news__btn_flex .news__btn_txt {
  font-size: 1.8em;
  letter-spacing: 2px;
  font-weight: 600;
  padding-top: 6px;
}
.news__btn_flex .news__btn_icon {
  width: 40px;
  -webkit-transition: 0.5s -webkit-transform ease;
  transition: 0.5s -webkit-transform ease;
  transition: 0.5s transform ease;
  transition: 0.5s transform ease, 0.5s -webkit-transform ease;
}

.section__title_en {
  padding: 16px 0 0 40px;
  font-family: "DIN Alternate", Bahnschrift, "Franklin Gothic Medium", "Nimbus Sans Narrow", sans-serif-condensed, sans-serif;
  font-size: 14.4em;
  color: #a3b2be;
  opacity: 0.6;
}
@media screen and (max-width: 1120px) {
  .section__title_en {
    font-size: 12em;
  }
}
@media screen and (max-width: 980px) {
  .section__title_en {
    font-size: 10em;
    padding: 0 0 0 40px;
  }
}
@media screen and (max-width: 533px) {
  .section__title_en {
    font-size: 6em;
  }
}

.section__title_jp {
  font-size: 2.4em;
  margin-left: 40px;
  font-weight: 600;
  color: #333333;
}
@media screen and (max-width: 980px) {
  .section__title_jp {
    font-size: 1.8em;
  }
}

.news__group {
  margin-top: 88px;
  padding: 56px 40px;
}
@media screen and (max-width: 1120px) {
  .news__group {
    margin-top: 24px;
    padding: 40px 40px;
  }
}

.news__list {
  margin: 0 0 0 auto;
  max-width: 760px;
}

.news__list_title {
  font-size: 1.6rem;
  color: #003366;
  letter-spacing: 2px;
  padding-bottom: 6px;
  border-bottom: 1px solid #333333;
}

.news__btn_icon.move {
  -webkit-transform: translateX(8px);
          transform: translateX(8px);
}

/* -----------------------------
Project
------------------------------*/
.project {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
.project::before {
  position: absolute;
  content: "";
  background-image: url("../img/pages/front-page/back_project.jpg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.section__title_w {
  position: relative;
  margin-top: 40px;
  padding-left: 40px;
  margin-bottom: 0.2rem;
  text-align: left;
  font-size: 2.4em;
  font-weight: 600;
  color: #333;
  letter-spacing: 4px;
  z-index: 9;
  margin-bottom: 197px;
}
@media screen and (max-width: 1120px) {
  .section__title_w {
    margin-bottom: 120px;
  }
}
@media screen and (max-width: 980px) {
  .section__title_w {
    font-size: 1.8em;
  }
}
@media screen and (max-width: 533px) {
  .section__title_w {
    margin-bottom: 60px;
  }
}
.section__title_w::before {
  position: absolute;
  top: 0;
  left: 0;
  letter-spacing: 8px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  content: "PROJECT";
  font-family: "DIN Alternate", Bahnschrift, "Franklin Gothic Medium", "Nimbus Sans Narrow", sans-serif-condensed, sans-serif;
  font-size: 144px;
  color: #333;
  opacity: 0.4;
  text-transform: uppercase;
  z-index: -1;
  padding: 72px 0;
}
@media screen and (max-width: 1120px) {
  .section__title_w::before {
    position: absolute;
    letter-spacing: 8px;
    font-size: 5em;
    padding: 72px 0;
  }
}
@media screen and (max-width: 980px) {
  .section__title_w::before {
    font-size: 6em;
  }
}
@media screen and (max-width: 800px) {
  .section__title_w::before {
    display: none;
  }
}

.project__concept {
  max-width: 760px;
  margin: 0 0 0 auto;
  padding: 72px 40px;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 1120px) {
  .project__concept {
    padding: 24px 40px 56px;
    max-width: 560px;
  }
}
@media screen and (max-width: 980px) {
  .project__concept {
    max-width: 520px;
  }
}

.project__concept_copy {
  font-size: 4.4em;
  letter-spacing: 3px;
}
@media screen and (max-width: 1120px) {
  .project__concept_copy {
    font-size: 3.7em;
    line-height: 1.4em;
  }
}
@media screen and (max-width: 980px) {
  .project__concept_copy {
    font-size: 3em;
  }
}
@media screen and (max-width: 533px) {
  .project__concept_copy {
    font-size: 2.6em;
  }
}
@media screen and (max-width: 400px) {
  .project__concept_copy {
    font-size: 2.3em;
  }
}

.top__concept_btn {
  font-weight: 400;
  font-size: 1.8em;
  border: 2px solid #01438b;
  letter-spacing: 2px;
  padding: 16px 32px;
  color: #fff;
  background-color: #01438b;
  border-radius: 99px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 980px) {
  .top__concept_btn {
    font-size: 1.6em;
    letter-spacing: 2px;
    padding: 12px 24px;
  }
}
.top__concept_btn::after {
  background: #fff;
  border: 2px solid #01438b;
  position: absolute;
  top: 0;
  left: -2px;
  content: "";
  width: 100%;
  height: 100%;
  -webkit-transform: skewY(-10deg) scale(1, 0);
          transform: skewY(-10deg) scale(1, 0);
  height: 140px;
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
.top__concept_btn:hover {
  color: #01438b;
  border: 2px solid #01438b;
}
.top__concept_btn:hover::after {
  -webkit-transform: skewY(-10deg) scale(1, 1);
          transform: skewY(-10deg) scale(1, 1);
}

.project__concept_text {
  margin: 24px 0 72px 0;
  font-size: 2em;
  letter-spacing: 2px;
}
@media screen and (max-width: 1120px) {
  .project__concept_text {
    font-size: 1.8em;
    margin: 24px 0 56px 0;
  }
}
@media screen and (max-width: 980px) {
  .project__concept_text {
    font-size: 1.6em;
    margin: 24px 0 40px 0;
  }
}

/* -----------------------------
Recruit
------------------------------*/
.recruit {
  margin-bottom: 0;
  padding-bottom: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
.recruit::before {
  position: absolute;
  content: "";
  background-image: url("../img/pages/front-page/back_recruit_re.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.section__title_r {
  position: relative;
  margin-top: 40px;
  margin-bottom: 0.2rem;
  text-align: left;
  padding-left: 40px;
  font-size: 2.4em;
  font-weight: 600;
  color: #333333;
  letter-spacing: 4px;
  z-index: 5;
  margin-bottom: 197px;
}
@media screen and (max-width: 1120px) {
  .section__title_r {
    margin-bottom: 120px;
  }
}
@media screen and (max-width: 980px) {
  .section__title_r {
    font-size: 1.8em;
    margin-bottom: 60px;
  }
}
.section__title_r::before {
  position: absolute;
  top: 100px;
  right: 0;
  letter-spacing: 8px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  content: "JOIN US";
  font-family: "DIN Alternate", Bahnschrift, "Franklin Gothic Medium", "Nimbus Sans Narrow", sans-serif-condensed, sans-serif;
  font-size: 144px;
  white-space: nowrap;
  color: #333333;
  opacity: 0.4;
  text-transform: uppercase;
  z-index: -1;
}
@media screen and (max-width: 1120px) {
  .section__title_r::before {
    position: absolute;
    top: 40px;
    right: 0;
    letter-spacing: 8px;
    font-size: 5em;
    white-space: nowrap;
  }
}
@media screen and (max-width: 980px) {
  .section__title_r::before {
    font-size: 6em;
    top: 0;
  }
}
@media screen and (max-width: 800px) {
  .section__title_r::before {
    display: none;
  }
}

.recruit__concept {
  max-width: 760px;
  padding: 72px 40px;
  margin: 0 auto 0 0;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 1120px) {
  .recruit__concept {
    padding: 0px 40px 56px;
    max-width: 560px;
  }
}
@media screen and (max-width: 980px) {
  .recruit__concept {
    max-width: 520px;
  }
}

.recruit__concept_copy {
  font-size: 4.4em;
  letter-spacing: 3px;
}
@media screen and (max-width: 1120px) {
  .recruit__concept_copy {
    font-size: 3.7em;
    line-height: 1.4em;
  }
}
@media screen and (max-width: 980px) {
  .recruit__concept_copy {
    font-size: 3em;
  }
}
@media screen and (max-width: 533px) {
  .recruit__concept_copy {
    font-size: 2.6em;
  }
}
@media screen and (max-width: 400px) {
  .recruit__concept_copy {
    font-size: 2.3em;
  }
}

.recruit__concept_text {
  margin: 24px 0 72px 0;
  font-size: 2em;
  letter-spacing: 2px;
}
@media screen and (max-width: 1120px) {
  .recruit__concept_text {
    font-size: 1.8em;
    margin: 24px 0 56px 0;
  }
}
@media screen and (max-width: 980px) {
  .recruit__concept_text {
    font-size: 1.6em;
    margin: 24px 0 40px 0;
  }
}

.top__concept_btn {
  font-weight: 400;
  font-size: 1.8em;
  letter-spacing: 3px;
  border: 2px solid #01438b;
  padding: 16px 32px;
  color: #fff;
  background-color: #01438b;
  border-radius: 99px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 980px) {
  .top__concept_btn {
    font-size: 1.6em;
    letter-spacing: 2px;
    padding: 12px 24px;
  }
}
.top__concept_btn::after {
  background: #fff;
  position: absolute;
  top: 0;
  left: -2px;
  content: "";
  width: 105%;
  height: 100%;
  -webkit-transform: skewY(-10deg) scale(1, 0);
          transform: skewY(-10deg) scale(1, 0);
  height: 140px;
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
.top__concept_btn:hover {
  border: 2px solid #01438b;
  color: #01438b;
}
.top__concept_btn:hover::after {
  -webkit-transform: skewY(-10deg) scale(1, 1);
          transform: skewY(-10deg) scale(1, 1);
}/*# sourceMappingURL=front-page.css.map */