@charset "UTF-8";
/*
* main.css
*
*/
/* ------------------------
  reset
------------------------ */
*,
*::after,
*::before {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  font-size: inherit;
  line-height: inherit;
}

pre,
textarea {
  overflow: auto;
}

[hidden],
template {
  display: none;
}

details,
main,
summary {
  display: block;
}

input[type=number] {
  width: auto;
}

input[type=search] {
  -webkit-appearance: textfield;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

progress {
  display: inline-block;
}

small {
  font-size: 75%;
}

sub,
sup {
  position: relative;
  vertical-align: baseline;
  font-size: 75%;
  line-height: 0;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

textarea {
  resize: vertical;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

audio:not([controls]) {
  display: none;
}

img {
  border: 0;
  max-width: 100%;
  height: auto;
}

button,
input,
select,
textarea {
  outline: none;
  min-height: 1.5em;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  font-style: inherit;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

input {
  line-height: normal;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  border-style: none;
  cursor: pointer;
  background-color: transparent;

  -webkit-appearance: button;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

code,
kbd,
pre,
samp {
  font-family: monospace;
}

ol,
ul {
  list-style: none;
}

select {
     -moz-appearance: none;
  -webkit-appearance: none;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

fieldset {
  border: 0;
}

/* ------------------------
  Base Settings
------------------------ */
html {
  color: #000;
  font-size: 10px;

  touch-action: manipulation;
}

body {
  background-color: #fff;
  word-wrap: break-word;
  color: #333;
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
  line-height: 1.6875;

  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

a {
  outline: none;
  text-decoration: underline;
  color: #00f;
}
a:visited {
  color: #000080;
}
a:hover {
  text-decoration: none;
  color: #f00;
}
a:active {
  text-decoration: none;
  color: #ff8000;
}
@media (min-width: 768px) {
  a[href^="tel:"] {
    cursor: text;
    text-decoration: none;
  }
}
a[href^="tel:"]:hover {
  color: #00f;
}

::-moz-selection {
  background-color: #036eb8;
  color: #fff;
  text-shadow: none;
}

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

/* footer 下部固定用 (後に整理) */
html,
body {
  display: flex;
}

body {
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
}

header,
footer {
  flex-shrink: 0;
}

main {
  min-height: 1px;

  flex: 1 0 auto;
  /*IE11 img resizing bug*/
}

#loading {
  position: fixed;
  z-index: 4;
  width: 100vw;
  height: 100vh;
  transition: all 0.5s;
  background-color: #fff;
}

.spinner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../../img/preloader.gif) no-repeat center;
          background-size: 48px;

  -webkit-background-size: 48px;
}

/* ローディングアニメーション */
@-webkit-keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.loaded {
  visibility: hidden;
  opacity: 0;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes arrow_move_to_right {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  40% {
    opacity: 0;
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  41% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

@keyframes arrow_move_to_right {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  40% {
    opacity: 0;
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  41% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

@-webkit-keyframes arrow_move_to_left {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  40% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
  41% {
    opacity: 0;
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

@keyframes arrow_move_to_left {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  40% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
  41% {
    opacity: 0;
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

/* ------------------------
  Layer Settings
------------------------ */
/* ------------------------
  Print Styles
------------------------ */
@media print {
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}

/* --------------------------------
common
-------------------------------- */
.l-inner {
  margin-right: auto;
  margin-left: auto;
  padding-top: 0;
  padding-left: 0;
  width: 83.125vw;
  max-width: 1330px;
}
@media (max-width: 767.98px) {
  .l-inner {
    padding-right: 6.66667vw;
    padding-left: 6.66667vw;
  }
}
@media (min-width: 768px) {
  .l-inner {
    padding-right: 9.7561vw;
    padding-left: 9.7561vw;
  }
}
@media (min-width: 1280px) {
  .l-inner {
    padding-top: 0;
    padding-right: 120px;
    padding-bottom: 0;
    padding-left: 120px;
    width: 100%;
    max-width: 1230px;
  }
}
@media (min-width: 1440px) {
  .l-inner {
    padding-top: 0;
    padding-right: 140px;
    padding-bottom: 0;
    padding-left: 140px;
  }
}

.l-inner-full {
  margin-right: -8.33333vw;
  margin-left: -8.33333vw;
}
@media (max-width: 767.98px) {
  .l-inner-full {
    margin-right: -6.66667vw;
    margin-left: -6.66667vw;
  }
}
@media (min-width: 768px) {
  .l-inner-full {
    margin-right: -9.7561vw;
    margin-left: -9.7561vw;
  }
}
@media (min-width: 1280px) {
  .l-inner-full {
    margin-right: -120px;
    margin-left: -120px;
  }
}
@media (min-width: 1440px) {
  .l-inner-full {
    margin-right: -140px;
    margin-left: -140px;
  }
}

.l-inner-b {
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 767.98px) {
  .l-inner-b {
    padding-right: 6.66667vw;
    padding-left: 6.66667vw;
  }
}
@media (min-width: 768px) {
  .l-inner-b {
    padding-right: 8.75vw;
    padding-left: 8.75vw;
    max-width: 1600px;
  }
}
@media (min-width: 1600px) {
  .l-inner-b {
    padding-right: 140px;
    padding-left: 140px;
  }
}

/* --------------------------------
button
-------------------------------- */
.c-linkbtn {
  display: block;
  position: relative;
  border-style: solid;
  border-color: #dedede;
  text-align: center;
  text-transform: uppercase;
  font-family: "din-2014",sans-serif;
  font-weight: bold;
}
@media (max-width: 767.98px) {
  .c-linkbtn {
    border-width: 0.26667vw;
    border-radius: 5.33333vw;
    letter-spacing: 0.08em;
    font-size: 2.93333vw;
  }
}
@media (min-width: 768px) {
  .c-linkbtn {
    border-width: 0.07812vw;
    border-radius: 2.8125vw;
    transition: opacity 0.3s, border-color 0.3s;
    letter-spacing: 0.06em;
    font-size: 1.17188vw;
  }
}
@media (min-width: 1280px) {
  .c-linkbtn {
    border-width: 1px;
    border-radius: 36px;
    font-size: 15px;
  }
}
.c-linkbtn::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  background-repeat: no-repeat;
  background-position: 0 center;
  background-size: 100% auto;
}
@media (max-width: 767.98px) {
  .c-linkbtn::after {
    width: 3.6vw;
    background-image: url("/assets/img/common/icon_arrow-black_sm.png");
  }
}
@media (min-width: 768px) {
  .c-linkbtn::after {
    width: 1.09375vw;
    background-image: url("/assets/img/common/icon_arrow-black_lg.png");
  }
}
@media (min-width: 1280px) {
  .c-linkbtn::after {
    width: 14px;
  }
}
@media (max-width: 767.98px) {
  .c-linkbtn.-blank::after {
    width: 2.26667vw;
    background-image: url("/assets/img/common/icon_window_sm.png");
  }
}
@media (min-width: 768px) {
  .c-linkbtn.-blank::after {
    width: 0.78125vw;
    background-image: url("/assets/img/common/icon_window_lg.png");
  }
}
@media (min-width: 1280px) {
  .c-linkbtn.-blank::after {
    width: 10px;
  }
}
.c-linkbtn:link,
.c-linkbtn:visited {
  text-decoration: none;
  color: #000;
}
@media (min-width: 768px) {
  .c-linkbtn:hover {
    opacity: 0.7;
    border-color: #000;
  }
}

/* --------------------------------
Footer
-------------------------------- */
.p-footer {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

/* Footer Upper ---------------- */
.footerUpper {
  background-color: #0d0d0d;
}

.footerUpper_inner {
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 767.98px) {
  .footerUpper_inner {
    padding-top: 16vw;
    padding-right: 6.66667vw;
    padding-bottom: 16vw;
    padding-left: 6.66667vw;
  }
}
@media (min-width: 768px) {
  .footerUpper_inner {
    display: flex;
    padding-top: 7.8125vw;
    padding-right: 6.71875vw;
    padding-bottom: 7.8125vw;
    padding-left: 6.71875vw;

    justify-content: space-between;
  }
}
@media (min-width: 1280px) {
  .footerUpper_inner {
    padding-top: 100px;
    padding-right: 86px;
    padding-bottom: 100px;
    padding-left: 86px;
  }
}
@media (min-width: 1440px) {
  .footerUpper_inner {
    padding-right: 0;
    padding-left: 0;
    max-width: 1230px;
  }
}

.footerUpper_content {
  display: flex;
  border-bottom-style: solid;
  border-bottom-color: #7a7a7a;
  text-decoration: none;
  color: #fff;

  justify-content: space-between;
}
@media (max-width: 767.98px) {
  .footerUpper_content {
    padding-bottom: 7.73333vw;
    border-bottom-width: 0.26667vw;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .footerUpper_content {
    padding-bottom: 3.82812vw;
    border-bottom-width: 0.07812vw;
    width: 45.6679%;
    cursor: pointer;
    transition: opacity 0.3s;
  }
}
@media (min-width: 1280px) {
  .footerUpper_content {
    padding-bottom: 49px;
    border-bottom-width: 1px;
    width: 43.5065%;
    max-width: 536px;
  }
}
@media (max-width: 767.98px) {
  .footerUpper_content:last-child {
    margin-top: 21.86667vw;
  }
}
@media (min-width: 768px) {
  .footerUpper_content:last-child {
    margin-left: 8.6642%;
  }
}
@media (min-width: 1280px) {
  .footerUpper_content:last-child {
    margin-left: 12.987%;
  }
}
.footerUpper_content:visited,
.footerUpper_content:link {
  color: #fff;
}
.footerUpper_content:hover {
  opacity: 0.5;
  color: #fff;
}

.footerUpper_title {
  text-transform: uppercase;
  font-family: "din-2014",sans-serif;
  font-weight: bold;
  line-height: 1;
}
@media (max-width: 767.98px) {
  .footerUpper_title {
    letter-spacing: 0.1em;
    font-size: 4.8vw;
  }
}
@media (min-width: 768px) {
  .footerUpper_title {
    letter-spacing: 0.06em;
    font-size: 2.03125vw;
  }
}
@media (min-width: 1280px) {
  .footerUpper_title {
    font-size: 26px;
  }
}

.footerUpper_readingTitle {
  letter-spacing: 0.12em;
  color: #7a7a7a;
  line-height: 1;
}
@media (max-width: 767.98px) {
  .footerUpper_readingTitle {
    margin-top: 2.66667vw;
    font-size: 2.66667vw;
  }
}
@media (min-width: 768px) {
  .footerUpper_readingTitle {
    margin-top: 1.25vw;
    font-size: 1.01562vw;
  }
}
@media (min-width: 1280px) {
  .footerUpper_readingTitle {
    margin-top: 16px;
    font-size: 13px;
  }
}

.footerUpper_icon {
  display: flex;
  border-style: solid;
  border-color: #7a7a7a;
  border-radius: 50%;

  align-items: center;
  justify-content: center;
}
@media (max-width: 767.98px) {
  .footerUpper_icon {
    border-width: 0.26667vw;
    width: 9.6vw;
    height: 9.6vw;
  }
}
@media (min-width: 768px) {
  .footerUpper_icon {
    border-width: 0.07812vw;
    width: 3.90625vw;
    height: 3.90625vw;
  }
}
@media (min-width: 1280px) {
  .footerUpper_icon {
    border-width: 1px;
    width: 50px;
    height: 50px;
  }
}
.footerUpper_icon svg {
  fill: #fff;
}
@media (max-width: 767.98px) {
  .footerUpper_icon.-contact svg {
    width: 3.06667vw;
    height: 2vw;
  }
}
@media (min-width: 768px) {
  .footerUpper_icon.-contact svg {
    width: 1.25vw;
    height: 0.78125vw;
  }
}
@media (min-width: 1280px) {
  .footerUpper_icon.-contact svg {
    width: 16px;
    height: 10px;
  }
}
@media (max-width: 767.98px) {
  .footerUpper_icon.-access svg {
    width: 2.4vw;
    height: 3.6vw;
  }
}
@media (min-width: 768px) {
  .footerUpper_icon.-access svg {
    width: 0.9375vw;
    height: 1.40625vw;
  }
}
@media (min-width: 1280px) {
  .footerUpper_icon.-access svg {
    width: 12px;
    height: 18px;
  }
}

/* Footer Bottom --------------- */
.footerBottom {
  position: relative;
  background-color: #000;
  color: #fff;
}
@media (max-width: 767.98px) {
  .footerBottom {
    padding-top: 13.33333vw;
    padding-bottom: 10.66667vw;
  }
}
@media (min-width: 768px) {
  .footerBottom {
    padding-top: 5vw;
    padding-bottom: 3.90625vw;
  }
}
@media (min-width: 1280px) {
  .footerBottom {
    padding-top: 64px;
    padding-bottom: 50px;
  }
}

.footerBottom_inner {
  position: relative;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 767.98px) {
  .footerBottom_inner {
    padding-right: 6.66667vw;
    padding-left: 6.66667vw;
  }
}
@media (min-width: 768px) {
  .footerBottom_inner {
    padding-right: 6.71875vw;
    padding-left: 6.71875vw;
  }
}
@media (min-width: 1280px) {
  .footerBottom_inner {
    padding-right: 86px;
    padding-left: 86px;
  }
}
@media (min-width: 1440px) {
  .footerBottom_inner {
    padding-right: 0;
    padding-left: 0;
    max-width: 1230px;
  }
}

/* Footer Logo ----------------- */
@media (min-width: 768px) {
  .footerBottom_primary {
    display: flex;

    justify-content: space-between;
  }
}

.footerBottom_siteLogo {
  display: block;
}
@media (max-width: 767.98px) {
  .footerBottom_siteLogo {
    line-height: 7.46667vw;
  }
}
.footerBottom_siteLogo svg {
  height: auto;

  fill: #fff;
}
@media (max-width: 767.98px) {
  .footerBottom_siteLogo svg {
    width: 23.86667vw;
  }
}
@media (min-width: 768px) {
  .footerBottom_siteLogo svg {
    width: 10.39062vw;
    height: 2.8125vw;
  }
}
@media (min-width: 1280px) {
  .footerBottom_siteLogo svg {
    width: 133px;
    height: 36px;
  }
}

/* Footer SNS ------------------ */
.footerBottom_sns {
  display: flex;

  align-items: center;
}
@media (max-width: 767.98px) {
  .footerBottom_sns {
    position: absolute;
    top: 0;
    right: 6.66667vw;
  }
}
@media (min-width: 768px) {
  .footerBottom_sns {
    width: 23.28125vw;

    justify-content: flex-end;
  }
}
@media (min-width: 1280px) {
  .footerBottom_sns {
    width: 328px;
  }
}
@media (min-width: 1440px) {
  .footerBottom_sns {
    width: 450px;
  }
}
@media (min-width: 1600px) {
  .footerBottom_sns {
    width: 310px;
  }
}

.footerBottom_snsTitle {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7a7a7a;
  font-family: "din-2014",sans-serif;
}
@media (max-width: 767.98px) {
  .footerBottom_snsTitle {
    font-size: 2.66667vw;
  }
}
@media (min-width: 768px) {
  .footerBottom_snsTitle {
    font-size: 1.09375vw;
  }
}
@media (min-width: 1280px) {
  .footerBottom_snsTitle {
    font-size: 14px;
  }
}

.footerBottom_snsList {
  display: flex;
}
@media (max-width: 767.98px) {
  .footerBottom_snsList {
    margin-left: 3.6vw;
  }
}
@media (min-width: 768px) {
  .footerBottom_snsList {
    margin-left: 2.34375vw;
  }
}
@media (min-width: 1280px) {
  .footerBottom_snsList {
    margin-left: 30px;
  }
}

.footerBottom_snsItem {
  border-style: solid;
  border-color: #7a7a7a;
  border-radius: 50%;
}
@media (max-width: 767.98px) {
  .footerBottom_snsItem {
    border-width: 0.26667vw;
  }
}
@media (min-width: 768px) {
  .footerBottom_snsItem {
    border-width: 0.15625vw;
    transition: opacity 0.3s;
  }
}
@media (min-width: 1280px) {
  .footerBottom_snsItem {
    border-width: 2px;
  }
}
@media (max-width: 767.98px) {
  .footerBottom_snsItem:last-child {
    margin-left: 2.13333vw;
  }
}
@media (min-width: 768px) {
  .footerBottom_snsItem:last-child {
    margin-left: 0.9375vw;
  }
}
@media (min-width: 1280px) {
  .footerBottom_snsItem:last-child {
    margin-left: 12px;
  }
}
@media (min-width: 768px) {
  .footerBottom_snsItem:hover {
    opacity: 0.7;
  }
}

.footerBottom_snsLink {
  display: flex;

  align-items: center;
  justify-content: center;
}
@media (max-width: 767.98px) {
  .footerBottom_snsLink {
    width: 7.2vw;
    height: 7.2vw;
  }
}
@media (min-width: 768px) {
  .footerBottom_snsLink {
    width: 2.96875vw;
    height: 2.96875vw;
  }
}
@media (min-width: 1280px) {
  .footerBottom_snsLink {
    width: 38px;
    height: 38px;
  }
}

.footerBottom_snsImage {
  height: auto;

  fill: #fff;
}
@media (max-width: 767.98px) {
  .footerBottom_snsImage.-facebook {
    width: 1.33333vw;
  }
}
@media (min-width: 768px) {
  .footerBottom_snsImage.-facebook {
    width: 0.54688vw;
  }
}
@media (min-width: 1280px) {
  .footerBottom_snsImage.-facebook {
    width: 7px;
  }
}
@media (max-width: 767.98px) {
  .footerBottom_snsImage.-linkedin {
    width: 2.4vw;
  }
}
@media (min-width: 768px) {
  .footerBottom_snsImage.-linkedin {
    width: 1.01562vw;
  }
}
@media (min-width: 1280px) {
  .footerBottom_snsImage.-linkedin {
    width: 13px;
  }
}
@media (max-width: 767.98px) {
  .footerBottom_snsImage.-note {
    width: 2.66667vw;
  }
}
@media (min-width: 768px) {
  .footerBottom_snsImage.-note {
    width: 1.17188vw;
    height: 1.32812vw;
  }
}
@media (min-width: 1280px) {
  .footerBottom_snsImage.-note {
    width: 16px;
  }
}

/* Footer Logo ----------------- */
@media (max-width: 767.98px) {
  .footerBottom_secondary {
    margin-top: 10.66667vw;
  }
}

@media (min-width: 768px) {
  .footerBottom_secondary {
    display: flex;
    margin-top: 4.84375vw;

    justify-content: space-between;
  }
}

@media (min-width: 1280px) {
  .footerBottom_secondary {
    margin-top: 62px;
  }
}

/* Navigation on footer ---------*/
@media (max-width: 767.98px) {
  .footerBottom_nav {
    margin-top: 10.4vw;
  }
}

@media (min-width: 768px) {
  .footerBottom_navList {
    display: flex;
    margin-right: -1.5625vw;
  }
}

@media (min-width: 1280px) {
  .footerBottom_navList {
    margin-right: -20px;
  }
}

@media (max-width: 767.98px) {
  .footerBottom_navItem {
    display: block;
    float: left;
    margin-left: 4.8vw;
    line-height: 1;
  }
}

@media (min-width: 768px) {
  .footerBottom_navItem {
    padding-right: 1.5625vw;
    padding-left: 1.5625vw;
  }
}

@media (min-width: 1280px) {
  .footerBottom_navItem {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.footerBottom_navItem:first-child {
  margin-left: 0;
}

@media (max-width: 767.98px) {
  .footerBottom_navItem:nth-child(5) {
    clear: both;
    margin-top: 5.33333vw;
    margin-left: 0;
  }
}

@media (max-width: 767.98px) {
  .footerBottom_navItem:nth-child(6) {
    margin-top: 5.33333vw;
  }
}

.footerBottom_navLink {
  text-transform: uppercase;
  font-family: "din-2014",sans-serif;
}
@media (max-width: 767.98px) {
  .footerBottom_navLink {
    letter-spacing: 0.1em;
    font-size: 2.93333vw;
  }
}
@media (min-width: 768px) {
  .footerBottom_navLink {
    transition: opacity 0.2s;
    letter-spacing: 0.08em;
    font-size: 1.09375vw;
  }
}
@media (min-width: 1280px) {
  .footerBottom_navLink {
    font-size: 14px;
  }
}
.footerBottom_navLink:visited,
.footerBottom_navLink:link {
  text-decoration: none;
  color: #fff;
}
@media (min-width: 768px) {
  .footerBottom_navLink:hover {
    opacity: 0.5;
  }
}

/* Company on footer ----------- */
.footerBottom_Company {
  letter-spacing: 0.12em;
  color: #7a7a7a;
}
@media (max-width: 767.98px) {
  .footerBottom_Company {
    font-size: 2.66667vw;
    line-height: 1.8;
  }
}
@media (min-width: 768px) {
  .footerBottom_Company {
    display: flex;
    border-right-width: 0.07812vw;
    border-right-style: solid;
    border-right-color: #7a7a7a;
    width: 63.28125vw;
    font-size: 1.09375vw;
    line-height: 2;
  }
}
@media (min-width: 1280px) {
  .footerBottom_Company {
    border-right-width: 1px;
    width: 780px;
    font-size: 14px;
  }
}
@media (min-width: 1440px) {
  .footerBottom_Company {
    width: 780px;
  }
}
@media (min-width: 1600px) {
  .footerBottom_Company {
    width: 920px;
  }
}

@media (max-width: 767.98px) {
  .footerCompany {
    margin-left: -0.13em;
  }
}

@media (max-width: 767.98px) {
  .footerCompany.-address {
    margin-top: 4.26667vw;
  }
}

@media (max-width: 767.98px) {
  .footerCompany.-tel {
    margin-left: 0;
  }
}

@media (min-width: 768px) {
  .footerCompany + div {
    margin-left: 3.125vw;
  }
}

@media (min-width: 1280px) {
  .footerCompany + div {
    margin-left: 48px;
  }
}

/* Copy on footer ----------- */
.footerBottom_Copy {
  display: flex;
  letter-spacing: 0em;
  color: #7a7a7a;
  font-family: "din-2014",sans-serif;
}
@media (max-width: 767.98px) {
  .footerBottom_Copy {
    margin-top: 10.66667vw;
    font-size: 2.66667vw;
  }
}
@media (min-width: 768px) {
  .footerBottom_Copy {
    margin-top: 5.9375vw;
    font-size: 0.9375vw;
  }
}
@media (min-width: 1280px) {
  .footerBottom_Copy {
    margin-top: 76px;
    font-size: 12px;
  }
}

@media (max-width: 767.98px) {
  .footer_polivyLink {
    margin-left: 4.8vw;
  }
}

@media (min-width: 768px) {
  .footer_polivyLink {
    margin-left: 1.32812vw;
    transition: opacity 0.3s;
  }
}

@media (min-width: 1280px) {
  .footer_polivyLink {
    margin-left: 17px;
  }
}

.footer_polivyLink:visited,
.footer_polivyLink:link {
  text-decoration: none;
  color: #7a7a7a;
}

@media (min-width: 768px) {
  .footer_polivyLink:hover {
    opacity: 0.7;
  }
}

/* Back to Top ----------- */
.backtotop {
  position: absolute;
  cursor: pointer;
}
@media (max-width: 767.98px) {
  .backtotop {
    right: 6.66667vw;
    bottom: 2vw;
    width: 4.8vw;
    height: 2.66667vw;
  }
}
@media (min-width: 768px) {
  .backtotop {
    right: 6.71875vw;
    bottom: 2.34375vw;
    width: 2.34375vw;
    height: 1.32812vw;
    transition: opacity 0.2s;
  }
}
@media (min-width: 1280px) {
  .backtotop {
    right: 86px;
    bottom: 4px;
    width: 30px;
    height: 17px;
  }
}
@media (min-width: 1440px) {
  .backtotop {
    right: 0;
  }
}
@media (min-width: 768px) {
  .backtotop:hover {
    opacity: 0.7;
  }
}

/* --------------------------------
Header
-------------------------------- */
.p-header {
  position: fixed;
  z-index: 2;
  left: 0;
  width: 100%;
  transition: top 1.1s cubic-bezier(0.23, 1, 0.32, 1) 2.2s;
}
@media (max-width: 767.98px) {
  .p-header {
    top: -13.65333vw;
    height: 13.65333vw;
    transition-delay: 2.6s;
  }
}
@media (min-width: 768px) {
  .p-header {
    top: -6.25vw;
    height: 6.25vw;
    transition: top 1.1s cubic-bezier(0.23, 1, 0.32, 1) 2.2s;
    background-color: #fff;
  }
}
@media (min-width: 1440px) {
  .p-header {
    top: -90px;
    height: 90px;
  }
}
body:not(.body_top) .p-header {
  top: 0;
  border-bottom-style: solid;
  border-bottom-color: #bfbfbf;
  transition: none;
}
@media (max-width: 767.98px) {
  body:not(.body_top) .p-header {
    border-bottom-width: 0.13333vw;
  }
}
@media (min-width: 768px) {
  body:not(.body_top) .p-header {
    border-bottom-width: 1px;
  }
}
.p-header.is-show {
  top: 0;
}

@media (max-width: 767.98px) {
  .header_inner {
    padding-right: 0;
    padding-left: 0;
    height: 100%;
  }
}

@media (min-width: 768px) {
  .header_inner {
    display: flex;
    margin-right: auto;
    margin-left: auto;
    height: 100%;

    justify-content: space-between;
    align-items: center;
  }
}

/* Site Logo ------------------- */
@media (max-width: 767.98px) {
  .header_homeLink {
    display: flex;
    position: relative;
    z-index: 5;
    top: -13.65333vw;
    left: 0;
    padding-right: 3.33333vw;
    padding-left: 3.33333vw;
    width: 100%;
    height: 100%;
    transition: top 0.3s;
    background-color: #fff;

    align-items: center;
  }
}

@media (min-width: 768px) {
  .header_homeLink {
    transition: opacity 0.2s;
  }
}

@media (min-width: 768px) {
  .header_homeLink:hover {
    opacity: 0.5;
  }
}

@media (max-width: 767.98px) {
  body:not(.body_top) .header_homeLink {
    top: 0;
  }
}

@media (max-width: 767.98px) {
  .p-header.-is-expanded .header_homeLink {
    top: 0 !important;
    padding-left: 6.66667vw;
    background-color: #000;
  }
}

.header_siteLogo {
  display: block;
}
@media (max-width: 767.98px) {
  .header_siteLogo {
    width: 17.33333vw;
  }
}
@media (min-width: 768px) {
  .header_siteLogo {
    width: 7.56944vw;
  }
}
@media (min-width: 1440px) {
  .header_siteLogo {
    width: 109px;
  }
}
.header_siteLogo svg {
  width: 100%;
  height: auto;
}
.p-header.-is-expanded .header_siteLogo {
  width: 17.33333vw;
}
.p-header.-is-expanded .header_siteLogo svg {
  fill: #fff;
}

/* Hamburger Menu -------------- */
.navigationHamburger {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 0;
}
@media (max-width: 767.98px) {
  .navigationHamburger {
    top: 0;
    right: 0;
  }
}
@media (min-width: 768px) {
  .navigationHamburger {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .p-header.slideIn .navigationHamburger {
    top: 0;
    right: 0;
  }
}

.navigationHamburger_btn {
  position: relative;
  z-index: 6;
  width: 11.46667vw;
  height: 13.33333vw;
}

.navigationHamburger_line {
  position: absolute;
  right: 3.33333vw;
  width: 41.86%;
  height: 0.26667vw;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform-origin: 0;
          transform-origin: 0;
  background-color: #000;
}
.navigationHamburger_line.-first {
  top: 5.33333vw;
}
.navigationHamburger_line.-second {
  top: 6.42667vw;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.navigationHamburger_line.-third {
  bottom: 5.33333vw;
}
.p-header.-is-expanded .navigationHamburger_line {
  background-color: #fff;
}
.p-header.-is-expanded .navigationHamburger_line.-first {
  -webkit-transform: rotate(45deg) translate(0vw, -0.4vw);
          transform: rotate(45deg) translate(0vw, -0.4vw);
}
.p-header.-is-expanded .navigationHamburger_line.-second {
  -webkit-transform: scale(0);
          transform: scale(0);
}
.p-header.-is-expanded .navigationHamburger_line.-third {
  -webkit-transform: rotate(-45deg) translate(-0.26667vw, 0.53333vw);
          transform: rotate(-45deg) translate(-0.26667vw, 0.53333vw);
}

/* Navigation - Wrapper -------- */
@media (max-width: 767.98px) {
  .navigation {
    visibility: hidden;
    overflow: hidden;
    position: fixed;
    z-index: 4;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
  }
}

@media (min-width: 768px) {
  .navigation {
    height: 100%;
  }
}

@media (max-width: 767.98px) {
  .p-header.-is-expanded .navigation {
    visibility: visible;
  }
}

@media (max-width: 767.98px) {
  .navigation_inner {
    overflow-y: scroll;
    padding-top: 25.6vw;
    padding-right: 6.66667vw;
    padding-bottom: 6.66667vw;
    padding-left: 6.66667vw;
    height: 100%;
  }
}

@media (min-width: 768px) {
  .navigation_inner {
    display: flex;
    height: 100%;

    align-items: center;
  }
}

@media (min-width: 768px) {
  .navigationPrimary {
    height: 100%;
  }
}

@media (min-width: 768px) {
  .navigationPrimary_List {
    display: flex;
    height: 100%;
  }
}

/* Nav - Primary --------------- */
@media (max-width: 767.98px) {
  .navigationPrimary_Item {
    margin-top: 10.93333vw;
  }
}

@media (min-width: 768px) {
  .navigationPrimary_Item {
    padding-right: 1.38889vw;
    padding-left: 1.38889vw;
  }
}

@media (min-width: 1440px) {
  .navigationPrimary_Item {
    padding-right: 20px;
    padding-left: 20px;
    font-size: 13px;
  }
}

.navigationPrimary_Item:first-child {
  margin-top: 0;
}

.navigationPrimary_Link {
  text-transform: uppercase;
  font-family: "din-2014",sans-serif;
  font-weight: normal;
}
@media (max-width: 767.98px) {
  .navigationPrimary_Link {
    letter-spacing: 0.08em;
    color: #fff;
    font-size: 7.46667vw;
    font-weight: bold;
    line-height: 1.155;
  }
}
@media (min-width: 768px) {
  .navigationPrimary_Link {
    display: flex;
    position: relative;
    height: 100%;
    letter-spacing: 0.1em;
    font-size: 0.90278vw;

    align-items: center;
  }
}
@media (min-width: 1440px) {
  .navigationPrimary_Link {
    font-size: 13px;
  }
}
.navigationPrimary_Link:visited,
.navigationPrimary_Link:link {
  text-decoration: none;
  color: #000;
}
@media (max-width: 767.98px) {
  .navigationPrimary_Link:visited,
  .navigationPrimary_Link:link {
    color: #fff;
  }
}
@media (min-width: 768px) {
  .navigationPrimary_Link span::before {
    content: "";
    opacity: 0;
    position: absolute;
    bottom: -0.5px;
    left: 0;
    width: 100%;
    height: 2px;
    transition: opacity 0.2s, -webkit-transform 0.2s;
    transition: transform 0.2s, opacity 0.2s;
    transition: transform 0.2s, opacity 0.2s, -webkit-transform 0.2s;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    background-color: #000;
  }
}
@media (min-width: 768px) {
  .body_service .navigationPrimary_Link.-service span:before {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@media (min-width: 768px) {
  .body_about .navigationPrimary_Link.-about span:before {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@media (min-width: 768px) {
  .body_works .navigationPrimary_Link.-works span:before {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@media (min-width: 768px) {
  .body_members .navigationPrimary_Link.-members span:before {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@media (min-width: 768px) {
  .body_news .navigationPrimary_Link.-news span:before {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@media (min-width: 768px) {
  .body_recruit .navigationPrimary_Link.-recruit span:before {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.navigationPrimary_Link:hover span::before {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

/* Nav - Secondary ------------- */
@media (max-width: 767.98px) {
  .navigationSecondary {
    display: flex;
    margin-top: 21.33333vw;
    color: #fff;
  }
}

@media (min-width: 768px) {
  .navigationSecondary {
    margin-left: 1.875vw;
  }
}

@media (min-width: 1440px) {
  .navigationSecondary {
    margin-left: 24px;
  }
}

.navigationSecondary_iconList {
  display: flex;
}

.navigationSecondary_iconItem {
  overflow: hidden;
  border-style: solid;
  border-color: #292929;
  border-radius: 50%;
}
@media (max-width: 767.98px) {
  .navigationSecondary_iconItem {
    border-width: 0.26667vw;
    width: 9.06667vw;
    height: 9.06667vw;
  }
}
@media (min-width: 768px) {
  .navigationSecondary_iconItem {
    border-width: 0.13333vw;
    border-color: #bfbfbf;
    width: 2.29167vw;
    height: 2.29167vw;
    transition: border-color 0.2s, opacity 0.2s;
  }
}
@media (min-width: 1440px) {
  .navigationSecondary_iconItem {
    border-width: 1px;
    width: 33px;
    height: 33px;
  }
}
@media (max-width: 767.98px) {
  .navigationSecondary_iconItem:last-child {
    margin-left: 3.33333vw;
  }
}
@media (min-width: 768px) {
  .navigationSecondary_iconItem:last-child {
    margin-left: 0.83333vw;
  }
}
@media (min-width: 1440px) {
  .navigationSecondary_iconItem:last-child {
    margin-left: 12px;
  }
}
@media (min-width: 768px) {
  .navigationSecondary_iconItem:hover {
    opacity: 0.7;
    border-color: #000;
  }
}

.navigationSecondary_iconLink {
  display: flex;
  width: 100%;
  height: 100%;

  justify-content: center;
  align-items: center;
}

@media (max-width: 767.98px) {
  .navigationSecondary_icon {
    fill: #7a7a7a;
  }
}

@media (min-width: 768px) {
  .navigationSecondary_icon {
    height: auto;

    fill: #000;
  }
}

@media (max-width: 767.98px) {
  .navigationSecondary_icon.-contact {
    width: 3.33333vw;
    height: 2.26667vw;
  }
}

@media (min-width: 768px) {
  .navigationSecondary_icon.-contact {
    width: 0.83333vw;
  }
}

@media (min-width: 1440px) {
  .navigationSecondary_icon.-contact {
    width: 12px;
  }
}

@media (max-width: 767.98px) {
  .navigationSecondary_icon.-acccess {
    width: 2.4vw;
    height: 3.6vw;
  }
}

@media (min-width: 768px) {
  .navigationSecondary_icon.-acccess {
    width: 0.625vw;
  }
}

@media (min-width: 1440px) {
  .navigationSecondary_icon.-acccess {
    width: 9px;
  }
}

.navigationSecondary_sns {
  display: flex;
  color: #fff;

  align-items: center;
}
@media (max-width: 767.98px) {
  .navigationSecondary_sns {
    margin-left: 8.13333vw;
  }
}
@media (min-width: 768px) {
  .navigationSecondary_sns {
    display: none;
  }
}

.navigationSecondary_snsTitle {
  text-transform: uppercase;
  font-family: "din-2014",sans-serif;
}
@media (max-width: 767.98px) {
  .navigationSecondary_snsTitle {
    letter-spacing: 0.12em;
    color: #7a7a7a;
    font-size: 2.66667vw;
    line-height: 1;
  }
}

.navigationSecondary_snsList {
  display: flex;
  height: 100%;

  align-items: center;
}
@media (max-width: 767.98px) {
  .navigationSecondary_snsList {
    margin-left: 3.86667vw;
  }
}

@media (max-width: 767.98px) {
  .navigationSecondary_snsItem {
    margin-left: 0.13333vw;
  }
}

.navigationSecondary_snsLink {
  display: flex;

  align-items: center;
  justify-content: center;
}
@media (max-width: 767.98px) {
  .navigationSecondary_snsLink {
    width: 9.06667vw;
    height: 9.06667vw;
  }
}

@media (max-width: 767.98px) {
  .navigationSecondary_snsImage.-facebook {
    width: 1.86667vw;
    height: 3.73333vw;
  }
}

@media (max-width: 767.98px) {
  .navigationSecondary_snsImage.-linkedin {
    width: 3.46667vw;
    height: 3.33333vw;
  }
}

/* header_outsideLogo ---------- */
.header_outsideLogoWrap {
  display: none;
}
@media (max-width: 767.98px) {
  .header_outsideLogoWrap {
    display: flex;
    position: relative;
    z-index: 3;
    top: -13.65333vw;
    padding-right: 6.66667vw;
    padding-left: 6.66667vw;
    width: 50%;
    height: 19.33333vw;
    transition: top 1.1s cubic-bezier(0.23, 1, 0.32, 1) 2.6s;

    align-items: center;
  }
}
@media (max-width: 767.98px) {
  .p-header.-is-expanded + .header_outsideLogoWrap {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .p-header.is-show + .header_outsideLogoWrap {
    top: 0;
  }
}

@media (max-width: 767.98px) {
  .header_outsideLogo {
    display: block;
    width: 21.73333vw;
  }
  .header_outsideLogo svg {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 767.98px) {
  .l-main {
    padding-top: 13.65333vw;
  }
}

@media (min-width: 768px) {
  .l-main {
    padding-top: 6.25vw;
  }
}

@media (min-width: 1440px) {
  .l-main {
    padding-top: 90px;
  }
}

body.-is-menuOpenend {
  width: 100%;
}

/* ------------------------
  utilities Classes
------------------------ */
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.u-hidden {
  display: none !important;
  visibility: hidden;
}

@media (max-width: 767.98px) {
  .u-hidden-sm {
    display: none !important;
    visibility: hidden;
  }
}

@media (min-width: 768px) and (max-width: 1279.98px) {
  .u-hidden-md {
    display: none !important;
    visibility: hidden;
  }
}

@media (min-width: 1280px) and (max-width: 1439.98px) {
  .u-hidden-lg {
    display: none !important;
    visibility: hidden;
  }
}

@media (min-width: 1440px) and (max-width: 1599.98px) {
  .u-hidden-xl {
    display: none !important;
    visibility: hidden;
  }
}

@media (min-width: 1600px) {
  .u-hidden-xxl {
    display: none !important;
    visibility: hidden;
  }
}

.js-fadein.-default {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.25, 0.25, 0.75, 0.75), -webkit-transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.5s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.5s cubic-bezier(0.25, 0.25, 0.75, 0.75), -webkit-transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  -webkit-transform: translateY(60px);
          transform: translateY(60px);
}

.js-fadein.-default.is-show {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.u-text-transform-capitalize {
  text-transform: capitalize !important;
}

.u-text-transform-uppercase {
  text-transform: uppercase !important;
}

.u-text-font-ryo-l {
  font-weight: 300 !important;
}

.u-text-font-ryo-m {
  font-weight: 500 !important;
}

.u-text-font-ryo-b {
  font-weight: 700 !important;
}

.u-text-font-ryo-h {
  font-weight: 800 !important;
}

.u-text-font-azo-bold-iralic {
  font-weight: 700 !important;
  font-style: italic !important;
}

.u-text-font-azo-black-iralic {
  font-weight: 900 !important;
  font-style: italic !important;
}

.u-text-font-helvetica {
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
}

.u-text-indent {
  margin-left: -0.5em;
}

.u-text-color-white {
  color: #fff !important;
}

.u-visuallyhidden {
  overflow: hidden;
  clip: rect(0 0 0 0);
  position: absolute;
  margin: -1px;
  padding: 0;
  border: 0;
  width: 1px;
  height: 1px;
}

.u-visuallyhidden.focusable:active,
.u-visuallyhidden.focusable:focus {
  overflow: visible;
  clip: auto;
  position: static;
  margin: 0;
  width: auto;
  height: auto;
}

.u-invisible {
  visibility: hidden;
}

.anniversary__footer {
  margin-bottom: 120px;
}

.anniversary__footer__inner {
  display: flex;
  transition: .3s;
}

a.anniversary__footer__inner:hover {
  opacity: .6;
}

.anniversary__footer__imgBox {
  max-width: 291px;
}

.anniversary__footer__txtBox {
  background: #f2f3f5 url(/assets/img/common/icon_btn_arrow01.png) no-repeat right 65px center;
  display: flex;
  align-items: center;
  padding-left: 70px;
  padding-right: 170px;
  width: 100%;
}

@media (max-width: 767.98px) {
  .anniversary__footer {
    margin-bottom: 60px;
  }

  .anniversary__footer__inner {
    display: block;
  }

  .anniversary__footer__imgBox {
    max-width: 100%;
  }

  .anniversary__footer__txtBox {
    background: #f2f3f5 url(/assets/img/common/icon_btn_arrow01.png) no-repeat right 8px center;
    background-size: 26px 26px;
    padding: 20px 50px;
    width: 100%;
  }
}
