@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700&&family=Roboto:wght@400;500;700&display=swap");
/* ========================================
 *  Font Family
 * ======================================== */
/* ==============================
*   Color
*==============================*/
/*後で消す*/
/* ==============================
*   Font Size
*==============================*/
/*==============================
//  Media Query
//==============================*/
body {
  min-width: 1200px;
}

@media screen and (max-width: 767px) {
  body {
    min-width: initial;
  }
}
/*==============================
//  Font Size Rem
//
//  【概要】        font-sizeの単位をremに変換する
//  【第一引数】    希望のfont-size（数字のみ）
//  【備考】        IE対応のためpxでも出力する
//==============================*/
/*==============================
//  Font Size Rem Line Height Half Leading
//
//  【概要】
//      ・font-sizeの単位をremに変換
//      ・行間のサイズをもとに自動でline-heightを指定
//      ・ハーフリーディングを自動調整
//  【第一引数】
//      ・希望のfont-size（数字のみ）
//  【第二引数】
//      ・希望の行間サイズ（数字のみ）
//==============================*/
/*==============================
//
//  【概要】
//      ・pxをvwに変換
//  【第一引数】
//      ・pxサイズ（数字のみ）
//  【第二引数】
//      ・デザイン幅（数字のみ）初期値はf-variableに記述
//==============================*/
/*==============================
//  px→vwの計算
//==============================*/
/*! destyle.css v2.0.2 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  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; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}
@media screen and (max-width: 767px) {
  html {
    font-size: 4.2666666667vw;
  }
}

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

/**
 * 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;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}

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

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

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  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] {
  text-decoration: underline; /* 2 */
  -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 {
  top: -0.5em;
}

sup {
  top: -0.5em;
}

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

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

/**
 * 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;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

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

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove arrow in IE10 & IE11
 */
select::-ms-expand {
  display: none;
}

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

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

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * 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. Change font properties to `inherit` in Safari.
 */
::-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] {
  outline: none;
}

/* Table */
/* ============================================ */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  text-align: left;
}

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

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

/* Misc */
/* ============================================ */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

html {
  box-sizing: border-box;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  color: #333333;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  line-height: 180%;
  position: relative;
  min-width: 1240px;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 16px;
    font-size: 0.8888888889rem;
    min-width: initial;
  }
}

a {
  text-decoration: underline;
  color: #0A2D88;
  transition: 0.3s all;
}
a:hover {
  text-decoration: none;
}

button {
  outline: none;
}

td,
th {
  vertical-align: middle;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #bbb;
}

input::placeholder,
textarea::placeholder {
  color: #bbb;
}

img {
  max-width: 100%;
  backface-visibility: hidden;
}

[v-cloak] {
  display: none !important;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

[v-cloak] {
  display: none;
}

main {
  position: relative;
}

main {
  padding: 0;
}

.l-section {
  width: 100%;
  position: relative;
  margin: 0 auto;
  padding: 100px 0 200px;
}
@media screen and (max-width: 1130px) {
  .l-section {
    padding: 100px 0;
  }
}
@media screen and (max-width: 767px) {
  .l-section {
    padding: 13.3333333333vw 0 18.6666666667vw;
  }
}
.l-section.bg_color {
  position: relative;
}
.l-section.bg_color::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #F5F5F5;
  z-index: -2;
}
.l-section.p-top-access {
  padding: 100px 0 0;
}
@media screen and (max-width: 767px) {
  .l-section.p-top-access {
    padding: 16vw 0 0;
  }
}

.l-inner {
  width: 1240px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding: 0 4vw;
  }
}

p {
  line-height: 180%;
}

.c-btn_wrap {
  width: 100%;
  text-align: center;
  margin-top: 110px;
}
@media screen and (max-width: 767px) {
  .c-btn_wrap {
    margin-top: 10.6666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .c-btn_wrap.right {
    padding: 0 5.3333333333vw;
  }
}
.c-btn_wrap.right a {
  max-width: 300px;
  width: 100%;
  height: 70px;
  line-height: 70px;
  padding: 0 10px 0 0;
  border-radius: 100px;
  background-color: #0A2D88;
  color: #ffffff;
  text-align: center;
  position: relative;
  font-weight: bold;
  font-size: 20px;
  transition: 0.3s all;
  text-decoration: none;
  display: inline-block;
  box-shadow: 2px 4px 0px 0px #FABE00;
}
@media screen and (max-width: 767px) {
  .c-btn_wrap.right a {
    max-width: 100%;
    height: 16vw;
    line-height: 16vw;
    padding: 0 2.6666666667vw 0 0;
    font-size: 18px;
  }
}
.c-btn_wrap.right a::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 28px;
  width: 12px;
  height: 12px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s all;
}
@media screen and (max-width: 767px) {
  .c-btn_wrap.right a::after {
    right: 6.6666666667vw;
    width: 3.2vw;
    height: 3.2vw;
  }
}
.c-btn_wrap.right a:hover {
  opacity: 0.8;
}
.c-btn_wrap.right a:hover:after {
  right: 23px;
}
@media screen and (max-width: 767px) {
  .c-btn_wrap.right a:hover:after {
    right: 5.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .c-btn_wrap.left {
    padding: 0 5.3333333333vw;
  }
}
.c-btn_wrap.left a {
  max-width: 300px;
  width: 100%;
  height: 70px;
  line-height: 70px;
  padding: 0 0 0 10px;
  border-radius: 100px;
  background-color: #0A2D88;
  color: #ffffff;
  text-align: center;
  position: relative;
  font-weight: bold;
  font-size: 20px;
  transition: 0.3s all;
  text-decoration: none;
  display: inline-block;
  box-shadow: 2px 4px 0px 0px #FABE00;
}
@media screen and (max-width: 767px) {
  .c-btn_wrap.left a {
    max-width: 100%;
    height: 16vw;
    line-height: 16vw;
    padding: 0 0 0 2.6666666667vw;
    font-size: 18px;
  }
}
.c-btn_wrap.left a::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 28px;
  width: 12px;
  height: 12px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: translateY(-50%) rotate(-135deg);
  transition: 0.3s all;
}
@media screen and (max-width: 767px) {
  .c-btn_wrap.left a::after {
    left: 6.6666666667vw;
    width: 3.2vw;
    height: 3.2vw;
  }
}
.c-btn_wrap.left a:hover {
  opacity: 0.8;
}
.c-btn_wrap.left a:hover:after {
  left: 23px;
}
@media screen and (max-width: 767px) {
  .c-btn_wrap.left a:hover:after {
    left: 5.3333333333vw;
  }
}
.c-btn_zip-button {
  width: 200px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  margin: 0;
  padding: 0 10px 0 0;
  background-color: #ffffff;
  border: 2px solid #0A2D88;
  border-radius: 100px;
  display: inline-block;
  color: #0A2D88;
  font-size: 16px;
  font-weight: bold;
  font-style: normal;
  cursor: pointer;
  transition: 0.3s all;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-btn_zip-button {
    width: 37.3333333333vw;
    height: 13.3333333333vw;
    line-height: 13.3333333333vw;
    font-size: 14px;
  }
}
.c-btn_zip-button::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #0A2D88;
  border-right: 2px solid #0A2D88;
  transition: 0.3s all;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s all;
}
@media screen and (max-width: 767px) {
  .c-btn_zip-button::after {
    right: 4.8vw;
    width: 2.6666666667vw;
    height: 2.6666666667vw;
  }
}
.c-btn_zip-button:hover {
  opacity: 0.8;
}
.c-btn_zip-button:hover::after {
  right: 22px;
}
@media screen and (max-width: 767px) {
  .c-btn_zip-button:hover::after {
    right: 4.8vw;
  }
}
.c-btn_zip-button.en {
  padding: 0;
}
.c-btn_zip-button.en::after {
  display: none;
}

.c-list_no {
  padding: 0 0 0 30px;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .c-list_no {
    padding: 0 0 0 6.6666666667vw;
  }
}
.c-list_no > li {
  padding-left: 5px;
  position: relative;
  line-height: 160%;
  font-size: 16px;
  margin-bottom: 8px;
  list-style-type: none;
  counter-increment: cnt;
}
@media screen and (max-width: 767px) {
  .c-list_no > li {
    font-size: 15px;
    padding-left: 1.3333333333vw;
    margin-bottom: 3.4666666667vw;
  }
}
.c-list_no > li:last-child {
  margin-bottom: 0;
}
.c-list_no > li::before {
  content: "(" counter(cnt) ")";
  display: inline-block;
  margin-left: -2em;
  width: 2em;
}

.c-nav_sp {
  /*.hamburger.-active .hamburger__text::before {
        content: '閉じる';
      }*/
  /* .hamburger__text::before {
          content: "メニュー";
          text-align: center;
          color: #172e59;
          font-size: 10px;
          font-weight: 900;
      }*/
}
.c-nav_sp a {
  font-family: sans-serif;
  text-decoration: none;
}
.c-nav_sp .hamburger {
  display: block;
  height: 60px;
  width: 60px;
  margin-left: auto;
  position: relative;
  z-index: 10;
  width: 60px;
  border: none;
  background-color: #0A2D88;
}
.c-nav_sp .hamburger.-active .hamburger__line {
  background-color: transparent;
}
.c-nav_sp .hamburger.-active .hamburger__line::before {
  top: 0;
  transform: rotate(45deg);
}
.c-nav_sp .hamburger.-active .hamburger__line::after {
  top: 0;
  transform: rotate(-45deg);
}
.c-nav_sp .hamburger__line {
  display: block;
  height: 2px;
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  background-color: #ffffff;
  transition: 0.4s;
}
.c-nav_sp .hamburger__line:before,
.c-nav_sp .hamburger__line:after {
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  width: 100%;
  background-color: #ffffff;
  transition: inherit;
}
.c-nav_sp .hamburger__line:before {
  top: -6px;
}
.c-nav_sp .hamburger__line:after {
  top: 6px;
}
.c-nav_sp .hamburger__text {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
.c-nav_sp .header {
  width: 100%;
}
.c-nav_sp .header__nav-area {
  position: fixed;
  top: 60px;
  left: -100%;
  z-index: 9;
  height: 100dvh;
  width: 100%;
  visibility: hidden;
  padding-top: 0;
  background-color: #0A2D88;
  transition: 0.4s;
}
.c-nav_sp .header__nav-area.-active {
  left: 0;
  visibility: visible;
  height: 100vh;
  overflow: auto;
}
.c-nav_sp .global-navigation {
  padding-top: 40px;
  padding-right: 25px;
  padding-bottom: 180px;
  padding-left: 25px;
}
.c-nav_sp .global-navigation__list > li {
  padding-bottom: 20px;
  border-bottom: 1px solid #36435d;
}
.c-nav_sp .global-navigation__list > li + li {
  margin-top: 20px;
}
.c-nav_sp .global-navigation__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
  font-weight: 500;
  transition: color 0.4s;
  font-size: 16px;
}
.c-nav_sp .global-navigation__link.-accordion {
  position: relative;
  background: none;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  padding: 0;
}
.c-nav_sp .global-navigation__link.-accordion::after {
  content: "";
  display: block;
  height: 20px;
  position: absolute;
  top: 50%;
  right: 9px;
  width: 2px;
  background-color: #EB5D01;
  transform: translateY(-50%);
  transition: transform 0.4s;
}
.c-nav_sp .global-navigation__link.-accordion::before {
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  top: 50%;
  right: 0;
  width: 20px;
  background-color: #EB5D01;
  transform: translateY(-50%);
}
.c-nav_sp .global-navigation__link.-active::after {
  transform: translateY(-50%) rotate(-90deg);
}
.c-nav_sp .accordion {
  height: 0;
  overflow: hidden;
  visibility: hidden;
  transition: 0.4s;
}
.c-nav_sp .accordion.-active {
  height: auto;
  padding-top: 30px;
  visibility: visible;
}
.c-nav_sp .accordion__list li {
  font-size: 15px;
}
.c-nav_sp .accordion__list li + li {
  margin-top: 20px;
}
.c-nav_sp .accordion__list li + li.sub {
  padding-left: 30px;
}
.c-nav_sp .accordion__list li + li.sub a {
  position: relative;
}
.c-nav_sp .accordion__list li + li.sub a::before {
  content: "";
  display: block;
  width: 10px;
  height: 1px;
  position: absolute;
  left: -15px;
  top: 50%;
  transition: 0.3s all;
  background-color: #888888;
  transform: none;
}
.c-nav_sp .accordion__link {
  color: #cccccc;
}

.c-title_h2wrap {
  width: 100%;
  height: 260px;
  background-color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1200px) {
  .c-title_h2wrap {
    height: 200px;
  }
}
@media screen and (max-width: 767px) {
  .c-title_h2wrap {
    height: 34.6666666667vw;
  }
}
.c-title_h2wrap.business {
  position: relative;
  background-color: inherit;
}
.c-title_h2wrap.business::before {
  display: block;
  content: "";
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 360px;
  background: url(../../src/img/business_ttl.jpg) no-repeat;
  background-size: cover;
  z-index: -10;
}
@media screen and (max-width: 1200px) {
  .c-title_h2wrap.business::before {
    top: -60px;
    height: 260px;
  }
}
@media screen and (max-width: 767px) {
  .c-title_h2wrap.business::before {
    height: calc(34.6666666667vw + 60px);
  }
}
.c-title_h2wrap.company {
  position: relative;
  background-color: inherit;
}
.c-title_h2wrap.company::before {
  display: block;
  content: "";
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 360px;
  background: url(../../src/img/company_ttl.jpg) no-repeat;
  background-size: cover;
  z-index: -10;
}
@media screen and (max-width: 1200px) {
  .c-title_h2wrap.company::before {
    top: -60px;
    height: 260px;
  }
}
@media screen and (max-width: 767px) {
  .c-title_h2wrap.company::before {
    height: calc(34.6666666667vw + 60px);
  }
}
.c-title_h2wrap.flow {
  position: relative;
  background-color: inherit;
}
.c-title_h2wrap.flow::before {
  display: block;
  content: "";
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 360px;
  background: url(../../src/img/flow_ttl.jpg) no-repeat;
  background-size: cover;
  z-index: -10;
}
@media screen and (max-width: 1200px) {
  .c-title_h2wrap.flow::before {
    top: -60px;
    height: 260px;
  }
}
@media screen and (max-width: 767px) {
  .c-title_h2wrap.flow::before {
    height: calc(34.6666666667vw + 60px);
  }
}
.c-title_h2wrap h2 {
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  line-height: 200%;
}
.c-title_h2wrap h2.business {
  color: #ffffff;
}
.c-title_h2wrap h2.business .en {
  color: #ffffff;
}
.c-title_h2wrap h2.company {
  color: #ffffff;
}
.c-title_h2wrap h2.company .en {
  color: #ffffff;
}
.c-title_h2wrap h2.flow {
  color: #ffffff;
}
.c-title_h2wrap h2.flow .en {
  color: #ffffff;
}
@media screen and (max-width: 1200px) {
  .c-title_h2wrap h2 {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .c-title_h2wrap h2 {
    font-size: 16px;
  }
}
.c-title_h2wrap h2 .en {
  display: block;
  color: #0A2D88;
  font-size: 54px;
  font-family: "Orbitron", sans-serif;
}
@media screen and (max-width: 1200px) {
  .c-title_h2wrap h2 .en {
    font-size: 48px;
  }
}
@media screen and (max-width: 767px) {
  .c-title_h2wrap h2 .en {
    font-size: 30px;
  }
}
.c-title_h3_privacy {
  font-size: 24px;
  font-weight: bold;
  color: #0A2D88;
  line-height: 170%;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .c-title_h3_privacy {
    font-size: 20px;
    line-height: 150%;
    margin-bottom: 10px;
  }
}

.all_border_title {
  position: relative;
}

.all_border_title.center {
  text-align: center;
}

.all_border_title.left {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .all_border_title.left {
    text-align: center;
  }
}

.all_border_title .wrapper {
  position: relative;
  display: inline-block;
}

.all_border_title .container {
  overflow: hidden;
}

.all_border_title .c-title-toph2 {
  font-weight: bold;
  font-size: 22px;
  color: #333333;
  line-height: 160%;
}
@media screen and (max-width: 767px) {
  .all_border_title .c-title-toph2 {
    font-size: 4.8vw;
  }
}

.all_border_title .c-title-toph2_en {
  line-height: 150%;
  font-weight: bold;
  font-size: 46px;
  color: #0A2D88;
  font-family: "Orbitron", sans-serif;
}
@media screen and (max-width: 767px) {
  .all_border_title .c-title-toph2_en {
    font-size: 7.2vw;
  }
}

.all_border_title .border {
  position: absolute;
  overflow: hidden;
}

.all_border_title .border:after {
  content: "";
  background: #0A2D88;
  width: 100%;
  height: 100%;
  position: absolute;
  display: block;
  transition: transform 0.8s ease-in-out;
}

.all_border_title .left_top_to_right {
  width: 65%;
  height: 1px;
  left: -13.44%;
  top: -21%;
}

.all_border_title .left_top_to_right:after {
  transform: translateX(-100%);
}

.all_border_title .left_top_to_bottom {
  width: 1px;
  height: 168%;
  left: 0.43%;
  top: -63%;
}

.all_border_title .left_top_to_bottom:after {
  transform: translateY(-100%);
}

.all_border_title .right_bottom_to_left {
  width: 108.4%;
  height: 1px;
  right: -15.18%;
  bottom: 0.3em;
}

.all_border_title .right_bottom_to_left:after {
  transform: translateX(100%);
}

.all_border_title .right_bottom_to_top {
  width: 1px;
  height: 121%;
  right: 0;
  bottom: -6.7%;
}

.all_border_title .right_bottom_to_top:after {
  transform: translateY(100%);
}

.all_border_title._anime .all_square_anime {
  transform: translateX(0%);
  transition: all 0.4s 0.7s ease;
}

.all_border_title._anime .all_square_anime:after {
  transform: scale(0, 1);
  transition: all 0.4s 1.1s ease;
}

.all_border_title._anime .left_top_to_right:after {
  transform: translateX(101%);
}

.all_border_title._anime .left_top_to_bottom:after {
  transform: translateY(101%);
}

.all_border_title._anime .right_bottom_to_left:after {
  transform: translateX(-101%);
}

.all_border_title._anime .right_bottom_to_top:after {
  transform: translateY(-101%);
}

.all_square_anime {
  position: relative;
  display: inline-block;
  transform: translateX(-101%);
}

.all_square_anime:after {
  content: "";
  background: #0A2D88;
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  transform-origin: right center;
}

.p-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}
.p-header .hBox {
  width: 100%;
  height: 100px;
  margin: 0;
  padding: 0 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
  z-index: 9999;
}
@media screen and (max-width: 1130px) {
  .p-header .hBox {
    height: 60px;
    position: fixed;
    top: 0;
    left: 0;
    box-sizing: border-box;
    background-color: #ffffff;
    padding: 0 0 0 5.3333333333vw;
  }
}
.p-header .hBox .p-header_left {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
.p-header .hBox .p-header_left .logo {
  width: 94px;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  margin-right: 15px;
}
.p-header .hBox .p-header_left .logo:hover {
  opacity: 0.8;
}
@media screen and (max-width: 1130px) {
  .p-header .hBox .p-header_left .logo {
    width: 60px;
    height: 45px;
  }
}
.p-header .hBox .p-header_left .logo img {
  width: 100%;
}
.p-header .hBox .p-header_left .language {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.p-header .hBox .p-header_left .language li a {
  font-size: 14px;
  padding: 8px 10px;
  margin-right: 8px;
  background-color: #F5F5F5;
  border-radius: 6px;
  font-weight: bold;
  color: #888888;
  font-weight: normal;
  text-decoration: none;
}
@media screen and (max-width: 1130px) {
  .p-header .hBox .p-header_left .language li a {
    padding: 4px 8px;
    margin-right: 5px;
    border-radius: 6px;
  }
}
@media screen and (max-width: 767px) {
  .p-header .hBox .p-header_left .language li a {
    padding: 6px 8px;
    border-radius: 6px;
  }
}
.p-header .hBox .p-header_left .language li a:hover {
  background-color: #0A2D88;
  color: #ffffff;
}
.p-header .hBox .p-header_left .language li a.current {
  font-weight: bold;
  cursor: default;
  color: #0A2D88;
}
.p-header .hBox .p-header_left .language li a.current:hover {
  background-color: #F5F5F5;
}
.p-header .hBox .innerBox {
  width: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.p-header .hBox .innerBox .naviUl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (max-width: 1130px) {
  .p-header .hBox .innerBox .naviUl {
    display: block;
    width: 100vw;
    height: auto;
    padding: 50px;
    text-align: center;
  }
}
@media screen and (max-width: 1130px) {
  .p-header .hBox .innerBox .naviUl li {
    padding: 0 0 15px;
    text-align: center;
  }
}
.p-header .hBox .innerBox .naviUl li a {
  margin-left: 25px;
  font-size: 16px;
  font-weight: bold;
  color: #333333;
  text-decoration: none;
}
.p-header .hBox .innerBox .naviUl li a:hover {
  color: #0A2D88;
}
@media screen and (max-width: 1130px) {
  .p-header .hBox .innerBox .naviUl li a {
    margin: 0;
    width: 100%;
    position: relative;
    margin-left: 0;
    font-size: 16px;
    color: #ffffff;
    font-weight: normal;
  }
}
@media screen and (max-width: 1250px) {
  .p-header .hBox .innerBox .naviUl li a {
    font-size: 14px;
  }
}
@media screen and (max-width: 1130px) {
  .p-header .hBox .innerBox .naviUl li.contact {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}
.p-header .hBox .innerBox .naviUl li.contact a {
  padding: 14px 29px 12px 55px;
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
  position: relative;
  background-color: #0A2D88;
  border-radius: 100px;
}
@media screen and (max-width: 1130px) {
  .p-header .hBox .innerBox .naviUl li.contact a {
    background-color: #FABE00;
    width: 100%;
    display: block;
    color: #333333;
    font-size: 18px;
  }
}
@media screen and (max-width: 1250px) {
  .p-header .hBox .innerBox .naviUl li.contact a {
    padding: 14px 30px 12px 56px;
    font-size: 14px;
  }
}
.p-header .hBox .innerBox .naviUl li.contact a::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 26px;
  width: 20px;
  height: 16px;
  transform: translateY(-50%);
  background: url(../../src/img/icon/icon_mail_s.svg) center center no-repeat;
  background-size: cover;
  transition: 0.3s all;
}
@media screen and (max-width: 1120px) {
  .p-header .hBox .innerBox .naviUl li.contact a::before {
    left: 28px;
  }
}
@media screen and (max-width: 1130px) {
  .p-header .hBox .innerBox .naviUl li.contact a::before {
    background: url(../../src/img/icon/icon_mail_bs.svg) center center no-repeat;
    left: 50%;
    margin-left: -80px;
    width: 21px;
    height: 18px;
  }
}
.p-header .hBox .innerBox .naviUl li.contact a:hover {
  opacity: 0.8;
}
.p-header .hBox .innerBox .naviUl li.bana {
  width: 192px;
  height: 60px;
  overflow: hidden;
}
@media screen and (max-width: 1250px) {
  .p-header .hBox .innerBox .naviUl li.bana {
    width: 141px;
    height: 44px;
  }
}
@media screen and (max-width: 1130px) {
  .p-header .hBox .innerBox .naviUl li.bana {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin: 0 auto;
  }
}
.p-header .hBox .innerBox .naviUl li.bana a {
  margin-left: 15px;
  display: block;
}
@media screen and (max-width: 1250px) {
  .p-header .hBox .innerBox .naviUl li.bana a {
    margin-left: 10px;
  }
}
@media screen and (max-width: 1130px) {
  .p-header .hBox .innerBox .naviUl li.bana a {
    margin-left: 0;
    margin-top: 10px;
  }
}
.p-header .hBox .innerBox .naviUl li.bana a img {
  border-radius: 6px;
}
.p-header .hBox .innerBox .naviUl li.bana a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 1130px) {
  /*ハンバーガー*/
  #globalMenuSp {
    z-index: 2500;
    color: #ffffff;
    background: #0A2D88;
    text-align: left;
    width: 100vw;
    max-width: 500px;
    transition: top 0.5s ease;
    position: absolute;
    top: 60px;
    right: 0;
    height: auto;
    display: none;
    box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.1);
  }
  #globalMenuSp.active {
    display: block;
  }
  .navToggle {
    display: block;
    position: fixed;
    z-index: 2501;
    right: 0;
    top: 0;
    width: 60px;
    height: 60px;
    cursor: pointer;
    text-align: center;
    background-color: #0A2D88;
  }
  .navToggle span {
    display: block;
    position: absolute;
    width: 26px;
    height: 2px;
    right: 17px;
    background: #ffffff;
    transition: 0.3s ease-in-out;
  }
  .navToggle span:nth-child(1) {
    top: 20px;
  }
  .navToggle span:nth-child(2) {
    top: 29px;
  }
  .navToggle span:nth-child(3) {
    top: 37px;
  }
  .navToggle.active {
    width: 60px;
    height: 60px;
    mix-blend-mode: inherit;
    transition: 0.3s ease-in-out;
  }
  .navToggle.active span:nth-child(1) {
    top: 25px;
    background: #ffffff;
    transform: rotate(-40deg);
  }
  .navToggle.active span:nth-child(2),
  .navToggle.active span:nth-child(3) {
    top: 25px;
    background: #ffffff;
    transform: rotate(40deg);
  }
}
.p-footer {
  width: 100%;
  position: relative;
  text-align: center;
  background-color: #ffffff;
}
.p-footer_top {
  width: 100%;
  background-color: #222222;
}
.p-footer_top .l-inner {
  margin: 0 auto;
  padding: 50px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-footer_top .l-inner {
    padding: 8vw 0;
    justify-content: center;
  }
}
.p-footer_top .l-inner .nav a {
  font-size: 16px;
  color: #ffffff;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .p-footer_top .l-inner .nav a {
    font-size: 15px;
    text-align: center;
    width: 100%;
  }
}
.p-footer_top .l-inner .nav a:hover {
  opacity: 0.8;
}
.p-footer_top .l-inner .copy {
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 150%;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-footer_top .l-inner .copy {
    font-size: 14px;
    text-align: center;
    margin-top: 2.6666666667vw;
    width: 100%;
  }
}
.p-footer_bottom {
  background-color: #ffffff;
  text-align: center;
  padding: 20px 0;
}
.p-footer_bottom .txt {
  width: 230px;
  margin: 0 auto;
}
.p-footer_bottom .txt img {
  width: 100%;
}

.pagetop {
  position: fixed;
  bottom: 20px;
  right: 60px;
  transition: 0.3s all ease;
  -webkit-transition: 0.3s all ease;
  transform: translateY(100px);
  z-index: 9;
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .pagetop {
    right: 5.3333333333vw;
    padding-bottom: 2.6666666667vw;
  }
}
.pagetop.on {
  transform: translateY(0);
}
.pagetop a {
  display: inline-block;
  width: 46px;
  height: 46px;
}
@media screen and (max-width: 767px) {
  .pagetop a {
    width: 40px;
    height: 40px;
  }
}
.pagetop a:hover {
  opacity: 0.8;
}

.p-top {
  width: 100%;
  overflow: hidden;
}
.p-top_contents {
  position: relative;
  width: 100%;
}
.p-top_contents .slash_grd {
  right: -50%;
  top: 200px;
  aspect-ratio: 1.25/1;
  clip-path: polygon(82% 0, 100% 0, 18% 100%, 0 100%);
  overflow: hidden;
  position: absolute;
  width: 200%;
  z-index: -1;
}
@media screen and (max-width: 1130px) {
  .p-top_contents .slash_grd {
    top: 600px;
  }
}
@media screen and (max-width: 767px) {
  .p-top_contents .slash_grd {
    top: 146.6666666667vw;
    clip-path: polygon(75% 0, 100% 0, 25% 100%, 0 100%);
    right: -100%;
    width: 300%;
  }
}
.p-top_contents .slash_grd::before {
  animation: gradient 10s ease infinite;
  background: #FABE00;
  background-size: 100% 100%;
  bottom: 0;
  content: "";
  display: block;
  height: 400%;
  left: -179%;
  margin: auto;
  position: absolute;
  right: 0;
  top: 200%;
  width: 400%;
  z-index: -1;
}
.p-top_strengths {
  width: 100%;
  padding: 180px 0 300px;
}
@media screen and (max-width: 1130px) {
  .p-top_strengths {
    padding: 180px 0 160px;
  }
}
@media screen and (max-width: 767px) {
  .p-top_strengths {
    padding: 21.3333333333vw 0 37.3333333333vw;
  }
  .p-top_strengths.en {
    padding: 21.3333333333vw 0 88vw;
  }
}
.p-top_strengths .l-inner {
  position: relative;
  min-height: 750px;
  padding-bottom: 0;
  display: flex;
  align-items: center;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-top_strengths .l-inner {
    height: auto;
  }
}
.p-top_strengths .p-top_strengths_img {
  position: absolute;
  top: 0;
  right: 50%;
  width: 955px;
}
@media screen and (max-width: 767px) {
  .p-top_strengths .p-top_strengths_img {
    top: inherit;
    bottom: -13.3333333333vw;
    width: calc(100% - 5.3333333333vw);
    right: 5.3333333333vw;
  }
  .p-top_strengths .p-top_strengths_img.en {
    bottom: -69.3333333333vw;
  }
}
.p-top_strengths .p-top_strengths_block {
  margin-left: 50%;
  padding-left: 60px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-top_strengths .p-top_strengths_block {
    margin: 0;
    padding: 0 5.3333333333vw;
  }
}
.p-top_strengths .p-top_strengths_block .ttl {
  margin-top: 40px;
  font-size: 30px;
  line-height: 170%;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-top_strengths .p-top_strengths_block .ttl {
    margin-top: 5.3333333333vw;
    font-size: 19px;
    text-align: center;
  }
}
.p-top_strengths .p-top_strengths_block .txt {
  margin-top: 60px;
  font-size: 18px;
  line-height: 180%;
}
@media screen and (max-width: 767px) {
  .p-top_strengths .p-top_strengths_block .txt {
    margin-top: 5.3333333333vw;
    font-size: 15px;
    padding-bottom: 10.6666666667vw;
    text-align: justify;
  }
}
.p-top_strengths .p-top_strengths_block .txt.en {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .p-top_strengths .p-top_strengths_block .txt.en {
    margin-top: 2.6666666667vw;
    text-align: left;
  }
}
.p-top_summary {
  width: 100%;
  padding: 0 0 260px;
  position: relative;
}
@media screen and (max-width: 1130px) {
  .p-top_summary {
    padding: 0 0 120px;
  }
}
@media screen and (max-width: 767px) {
  .p-top_summary {
    padding: 0 0 21.3333333333vw;
  }
}
.p-top_summary::before {
  width: 100%;
  height: auto;
  background: #F5F5F5;
  top: 320px;
  bottom: 0;
  content: "";
  display: block;
  z-index: -2;
  position: absolute;
}
@media screen and (max-width: 767px) {
  .p-top_summary::before {
    top: 53.3333333333vw;
  }
}
.p-top_summary_wrap {
  width: calc(100% - 40px);
  max-width: 1440px;
  padding: 0 40px;
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 70px 40px;
}
@media screen and (max-width: 767px) {
  .p-top_summary_wrap {
    width: 100%;
    padding: 0 5.3333333333vw;
    grid-template-columns: 1fr;
    grid-gap: 8vw;
    margin: 4vw auto 0;
  }
}
.p-top_summary_wrap a {
  text-decoration: none;
  position: relative;
  color: #333333;
}
.p-top_summary_wrap a .img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-top_summary_wrap a .img {
    margin-bottom: 2.6666666667vw;
  }
}
.p-top_summary_wrap a .img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s all;
}
.p-top_summary_wrap a .txt {
  font-size: 18px;
  line-height: 150%;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-top_summary_wrap a .txt {
    font-size: 16px;
  }
}
.p-top_summary_wrap a:hover .img img {
  transform: scale(1.08);
}
.p-top_news {
  width: 100%;
  padding: 180px 0;
  background-color: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 1130px) {
  .p-top_news {
    padding: 120px 0;
  }
}
@media screen and (max-width: 767px) {
  .p-top_news {
    padding: 21.3333333333vw 0;
  }
}
.p-top_news_wrap {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-top_news_wrap {
    width: 100%;
    padding: 0 5.3333333333vw;
    text-align: center;
    justify-content: center;
  }
}
.p-top_news_wrap .c-title-toph2 {
  width: 250px;
}
@media screen and (max-width: 767px) {
  .p-top_news_wrap .c-title-toph2 {
    width: 100%;
  }
}
.p-top_news_wrap .scrollable-div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  overflow-y: auto;
  max-height: 340px;
  width: calc(100% - 250px);
  padding-right: 15px;
}
@media screen and (max-width: 767px) {
  .p-top_news_wrap .scrollable-div {
    width: 100%;
    padding-right: 10px;
  }
}
.p-top_news_wrap .scrollable-div li {
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  padding: 25px 15px 25px 30px;
  color: #333333;
  line-height: 170%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  border-bottom: 1px solid #CCCCCC;
  /*margin-bottom: 50px;*/
}
@media screen and (max-width: 767px) {
  .p-top_news_wrap .scrollable-div li {
    font-size: 15px;
    padding: 5.3333333333vw 0;
    justify-content: space-between;
    margin-bottom: 0;
  }
}
.p-top_news_wrap .scrollable-div li:first-child {
  border-top: 1px solid #CCCCCC;
}
.p-top_news_wrap .scrollable-div li .date {
  width: 100px;
  font-size: 16px;
  font-weight: 400;
  color: #888888;
  font-family: "Roboto", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-top_news_wrap .scrollable-div li .date {
    font-size: 15px;
    width: 80px;
  }
}
.p-top_news_wrap .scrollable-div li .tag {
  width: 110px;
  font-size: 15px;
  color: #0A2D88;
  text-align: center;
  line-height: 100%;
  display: inline-flex;
  padding: 7px 10px 6px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid #0A2D88;
  margin-right: 30px;
}
@media screen and (max-width: 767px) {
  .p-top_news_wrap .scrollable-div li .tag {
    margin-right: 0;
    padding: 5px 7px 3px;
    font-size: 14px;
  }
}
.p-top_news_wrap .scrollable-div li .main {
  width: calc(100% - 250px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top_news_wrap .scrollable-div li .main {
    width: 100%;
    margin-top: 2.1333333333vw;
    display: block;
  }
}
.p-top_news_wrap .scrollable-div li .main a {
  color: #0A2D88;
  transition: 0.3s all;
  text-decoration: underline;
}
.p-top_news_wrap .scrollable-div li .main a:hover {
  opacity: 0.8;
  text-decoration: none;
}
.p-top_news_wrap .scrollable-div li .main a.blank {
  background-image: url("../../src/img/icon/blank.svg");
  background-repeat: no-repeat;
  background-position: right center;
  padding-right: 30px;
  margin-right: 3px;
  text-decoration: underline;
  transition: 0.3s all;
}
@media screen and (max-width: 767px) {
  .p-top_news_wrap .scrollable-div li .main a.blank {
    padding-right: 8vw;
    margin-right: 0.8vw;
  }
}
.p-top_news_wrap .scrollable-div li .main a.blank:hover {
  opacity: 0.8;
  text-decoration: none;
}
.p-top_news_wrap .scrollable-div li .main.new {
  position: relative;
  text-indent: 55px;
}
.p-top_news_wrap .scrollable-div li .main.new::before {
  display: block;
  content: "NEW";
  position: absolute;
  top: 2px;
  left: 0;
  width: 45px;
  height: 20px;
  color: #ffffff;
  font-size: 12px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  background-color: #D92A2A;
  border-radius: 2px;
  line-height: 20px;
  text-align: center;
  text-indent: 0;
}
@media screen and (max-width: 767px) {
  .p-top_news_wrap .scrollable-div li .main.new::before {
    width: 12vw;
    height: 5.3333333333vw;
    font-size: 3.2vw;
    line-height: 5.3333333333vw;
  }
}
.p-top_news_modal {
  height: 100%;
  padding: 60px;
  background-color: #ffffff;
  border-radius: 3px;
}
@media screen and (max-width: 767px) {
  .p-top_news_modal {
    padding: 5.3333333333vw;
  }
}
.p-top_news_modal .date {
  font-size: 16px;
  font-weight: 400;
  color: #888888;
  font-family: "Roboto", sans-serif;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .p-top_news_modal .date {
    font-size: 15px;
    margin-bottom: 1.3333333333vw;
  }
}
.p-top_news_modal .main_ttl {
  font-size: 24px;
  color: #0A2D88;
  font-weight: bold;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #CCCCCC;
}
@media screen and (max-width: 767px) {
  .p-top_news_modal .main_ttl {
    font-size: 18px;
    margin-bottom: 2.1333333333vw;
    padding-bottom: 2.1333333333vw;
  }
}
.p-top_news_modal .main_txt {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .p-top_news_modal .main_txt {
    font-size: 15px;
  }
}
.p-top_news_modal .img_wrap01 {
  width: 100%;
  max-width: 600px;
  margin: 50px auto 0;
}
@media screen and (max-width: 767px) {
  .p-top_news_modal .img_wrap01 {
    margin: 5.3333333333vw auto 0;
  }
}
.p-top_company {
  width: 100%;
}
.p-top_company ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.p-top_company ul li {
  width: 25%;
}
@media screen and (max-width: 767px) {
  .p-top_company ul li {
    width: 100%;
  }
}
.p-top_company ul li a {
  text-decoration: none;
  color: #333333;
  position: relative;
}
.p-top_company ul li a dl {
  position: relative;
}
.p-top_company ul li a dl dt {
  position: relative;
  background-color: #0A2D88;
}
.p-top_company ul li a dl dt .imgbox {
  width: 100%;
  height: 62.5%;
  overflow: hidden;
}
.p-top_company ul li a dl dt .imgbox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s all;
}
.p-top_company ul li a dl dd {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding-top: 35%;
}
.p-top_company ul li a dl dd .txt_wrap {
  width: 100%;
  color: #ffffff;
  line-height: 150%;
  font-weight: bold;
}
.p-top_company ul li a dl dd .txt_wrap .ttl {
  font-size: 1.2vw;
  font-family: "Orbitron", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-top_company ul li a dl dd .txt_wrap .ttl {
    font-size: 5.3333333333vw;
  }
}
.p-top_company ul li a dl dd .txt_wrap .txt {
  font-size: 1vw;
  margin-top: -0.5%;
}
@media screen and (max-width: 767px) {
  .p-top_company ul li a dl dd .txt_wrap .txt {
    font-size: 4.2666666667vw;
  }
}
.p-top_company ul li a:hover {
  opacity: 0.8;
}
.p-top_company ul li a:hover dl dt .imgbox img {
  transform: scale(1.08);
}
.p-top_contact {
  background-color: #0A2D88;
  width: 100%;
  height: 270px;
  padding-top: 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-top_contact {
    height: 48vw;
    padding-top: 13.3333333333vw;
  }
}
.p-top_contact_mail a {
  position: relative;
  font-size: 32px;
  color: #ffffff;
  text-decoration: none;
  font-family: "Orbitron", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-top_contact_mail a {
    font-size: 6.9333333333vw;
  }
}
.p-top_contact_mail a::before {
  display: block;
  content: "";
  position: absolute;
  top: -60px;
  left: 50%;
  width: 50px;
  height: 38px;
  transform: translateX(-50%);
  background: url(../../src/img/icon/icon_mail.svg) center center no-repeat;
  background-size: cover;
  transition: 0.3s all;
}
@media screen and (max-width: 767px) {
  .p-top_contact_mail a::before {
    top: -10.6666666667vw;
    width: 10.6666666667vw;
    height: 8vw;
  }
}
.p-top_contact_mail a:hover {
  color: #FABE00;
}
.p-top_contact_mail a:hover::before {
  width: 50px;
  height: 38px;
  background: url(../../src/img/icon/icon_mail_y.svg) center center no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-top_contact_mail a:hover::before {
    width: 10.6666666667vw;
    height: 8vw;
  }
}

.scrollable-div::-webkit-scrollbar {
  width: 10px;
}

.scrollable-div::-webkit-scrollbar-track {
  background-color: #CCCCCC;
  border-radius: 5px;
}

.scrollable-div::-webkit-scrollbar-thumb {
  background-color: #0A2D88;
  border: 1px solid #CCCCCC;
  background-clip: content-box;
  border-radius: 5px;
}

/* ---------------------------------------------------------------------------
 * アニメーション
--------------------------------------------------------------------------- */
.sa {
  opacity: 0;
  transition: all 0.8s ease;
}

.sa.show {
  opacity: 1;
  transform: none;
}

.sa--lr {
  transform: translate(-100px, 0);
}

.sa--rl {
  transform: translate(100px, 0);
}

.sa--up {
  transform: translate(0, 50px);
}

.sa--down {
  transform: translate(0, -100px);
}

.sa--scaleUp {
  transform: scale(0.5);
}

.sa--scaleDown {
  transform: scale(1.5);
}

.sa--rotateL {
  transform: rotate(180deg);
}

.sa--rotateR {
  transform: rotate(-180deg);
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.p-mv_img {
  width: 100%;
  height: 100vh;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-mv_img {
    height: 100svh;
  }
}
.p-mv_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-mv_img img {
    position: absolute;
    left: 0;
    bottom: 0;
  }
}

.p-main_img {
  width: 100%;
  height: 100vh;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 1130px) {
  .p-main_img {
    height: 80vh;
  }
}
@media screen and (max-width: 767px) {
  .p-main_img {
    width: 100%;
    height: 100svh;
  }
}
.p-main_img img {
  width: auto;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-lower {
  margin-top: 100px;
  position: relative;
}
@media screen and (max-width: 1130px) {
  .p-lower {
    margin-top: 60px;
  }
}
.p-lower::before {
  display: block;
  content: "";
  position: absolute;
  top: -100px;
  left: 0;
  width: 27%;
  height: 50%;
  background: url(../../src/img/ttl_bg.svg) top left no-repeat;
  background-size: 100% auto;
}
@media screen and (max-width: 767px) {
  .p-lower::before {
    top: -60px;
    width: 35%;
    height: 40%;
  }
}
.p-lower_wrap {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 80px 100px;
}
@media screen and (max-width: 767px) {
  .p-lower_wrap {
    padding: 13.3333333333vw 5.3333333333vw;
  }
}

.p-business {
  padding: 100px 0 0;
}
@media screen and (max-width: 767px) {
  .p-business {
    padding: 13.3333333333vw 0 0;
  }
}
.p-business_wrap {
  width: 100%;
  margin-bottom: 180px;
}
@media screen and (max-width: 1130px) {
  .p-business_wrap {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 767px) {
  .p-business_wrap {
    margin-bottom: 21.3333333333vw;
  }
}
.p-business_wrap_ttl {
  margin-bottom: 50px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  .p-business_wrap_ttl {
    margin-bottom: 5.3333333333vw;
  }
}
.p-business_wrap_ttl dt {
  width: 190px;
  background-color: #FABE00;
  border-radius: 10px 0 0 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-size: 24px;
  font-weight: bold;
  padding: 14px 0;
}
@media screen and (max-width: 767px) {
  .p-business_wrap_ttl dt {
    width: 100%;
    border-radius: 10px 10px 0 0;
    font-size: 18px;
    padding: 2.6666666667vw 0;
  }
}
.p-business_wrap_ttl dd {
  width: calc(100% - 190px);
  background-color: #0A2D88;
  border-radius: 0 10px 10px 0;
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  color: #ffffff;
  font-size: 24px;
  font-weight: bold;
  padding: 14px 35px;
}
@media screen and (max-width: 767px) {
  .p-business_wrap_ttl dd {
    width: 100%;
    border-radius: 0 0 10px 10px;
    font-size: 16px;
    padding: 2.6666666667vw 4vw;
  }
}
.p-business_wrap_txt {
  padding: 0 30px;
  line-height: 200%;
  margin-bottom: 50px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-business_wrap_txt {
    padding: 0;
    margin-bottom: 5.3333333333vw;
    font-size: 16px;
    text-align: left;
  }
}
.p-business_wrap_txt.en {
  text-align: left;
}
.p-business_wrap_img {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-business_wrap_img {
    grid-template-columns: 1fr;
    grid-gap: 5.3333333333vw;
  }
}
.p-business_wrap_img li .img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
}
.p-business_wrap_img li .img.line {
  border: 1px solid #CCCCCC;
}
.p-business_wrap_img li .img img {
  -o-object-fit: cover;
     object-fit: cover;
}
.p-business_wrap_img li .cap {
  font-size: 16px;
  font-weight: bold;
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .p-business_wrap_img li .cap {
    padding: 0;
    margin-top: 2.6666666667vw;
    line-height: 150%;
  }
}
.p-business_wrap_img li .cap span {
  font-size: 14px;
  font-weight: normal;
  display: block;
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
}

.scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0;
}

.scroll-infinity__list--left {
  animation: infinity-scroll-left 80s infinite linear 0.5s both;
}

.scroll-infinity__item {
  width: 25vw;
}
@media screen and (max-width: 767px) {
  .scroll-infinity__item {
    width: 50vw;
  }
}

.scroll-infinity__item > img {
  width: 100%;
}

.scrollable-div::-webkit-scrollbar {
  width: 10px;
}

.scrollable-div::-webkit-scrollbar-track {
  background-color: #CCCCCC;
  border-radius: 5px;
}

.scrollable-div::-webkit-scrollbar-thumb {
  background-color: #888888;
  border: 1px solid #CCCCCC;
  background-clip: content-box;
  border-radius: 5px;
}

.p-flow {
  position: relative;
  overflow: hidden;
}
.p-flow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #F5F5F5;
  z-index: -2;
}
.p-flow_wrap {
  width: 100%;
  position: relative;
  margin-bottom: 140px;
}
@media screen and (max-width: 767px) {
  .p-flow_wrap {
    margin-bottom: 21.3333333333vw;
  }
}
.p-flow_wrap:last-of-type {
  margin-bottom: 0;
}
.p-flow_wrap:last-of-type::after {
  display: none;
}
.p-flow_wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 590px;
  background: linear-gradient(to left, #F5F5F5 50%, #ffffff 50%);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-flow_wrap::before {
    display: none;
  }
}
.p-flow_wrap::after {
  content: "";
  position: absolute;
  top: inherit;
  bottom: -80px;
  right: 50%;
  margin-right: -30px;
  width: 0;
  height: 0;
  border-width: 30px 30px 0 30px;
  border-style: solid;
  border-color: #FABE00 transparent transparent transparent;
}
@media screen and (max-width: 767px) {
  .p-flow_wrap::after {
    border-width: 20px 20px 0 20px;
    margin-right: -20px;
    bottom: -13.3333333333vw;
  }
}
.p-flow_wrap_inner {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-flow_wrap_inner {
    width: calc(100% - 10.6666666667vw);
    background-color: #ffffff;
    border-radius: 10px;
    padding: 8vw 5.3333333333vw 5.3333333333vw;
  }
}
.p-flow_wrap_inner .no {
  position: absolute;
  font-size: 100px;
  font-family: "Orbitron", sans-serif;
  color: #0A2D88;
  right: 100px;
  top: -20px;
}
@media screen and (max-width: 767px) {
  .p-flow_wrap_inner .no {
    font-size: 38px;
    right: 5.3333333333vw;
    top: -3.2vw;
  }
}
.p-flow_wrap_inner_txt {
  width: 50%;
  height: 590px;
  background-color: #ffffff;
  border-radius: 0 10px 10px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  text-align: left;
}
@media screen and (max-width: 1130px) {
  .p-flow_wrap_inner_txt {
    width: 45%;
    margin-right: 5%;
  }
}
@media screen and (max-width: 767px) {
  .p-flow_wrap_inner_txt {
    width: 100%;
    height: auto;
    background-color: inherit;
    border-radius: 0;
    margin-right: 0;
  }
}
.p-flow_wrap_inner_txt .txt_wrap {
  height: auto;
  padding-right: 100px;
}
@media screen and (max-width: 767px) {
  .p-flow_wrap_inner_txt .txt_wrap {
    padding-right: 0;
  }
}
.p-flow_wrap_inner_txt .txt_wrap .ttl {
  font-size: 36px;
  font-weight: bold;
  color: #0A2D88;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .p-flow_wrap_inner_txt .txt_wrap .ttl {
    font-size: 22px;
    margin-bottom: 2.6666666667vw;
    line-height: 150%;
  }
}
.p-flow_wrap_inner_txt .txt_wrap .txt {
  font-size: 18px;
  line-height: 200%;
}
@media screen and (max-width: 767px) {
  .p-flow_wrap_inner_txt .txt_wrap .txt {
    font-size: 16px;
    line-height: 180%;
    margin-bottom: 4vw;
  }
}
.p-flow_wrap_inner_img {
  position: absolute;
  border-radius: 10px;
  overflow: hidden;
  left: 50%;
  top: 100px;
  margin-left: -715px;
}
@media screen and (max-width: 767px) {
  .p-flow_wrap_inner_img {
    position: relative;
    left: inherit;
    top: inherit;
    margin-left: 0;
  }
}
.p-flow_wrap_inner_img.line {
  border: 1px solid #CCCCCC;
}
.p-flow_wrap_inner_img img {
  -o-object-fit: cover;
     object-fit: cover;
}
.p-flow_wrap.right::before {
  background: linear-gradient(to left, #ffffff 50%, #F5F5F5 50%);
}
@media screen and (max-width: 767px) {
  .p-flow_wrap.right::before {
    display: none;
  }
}
.p-flow_wrap.right .p-flow_wrap_inner {
  flex-direction: row;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-flow_wrap.right .p-flow_wrap_inner {
    flex-direction: row;
  }
}
.p-flow_wrap.right .p-flow_wrap_inner .no {
  left: 100px;
}
@media screen and (max-width: 767px) {
  .p-flow_wrap.right .p-flow_wrap_inner .no {
    left: inherit;
    right: 5.3333333333vw;
  }
}
.p-flow_wrap.right .p-flow_wrap_inner_txt {
  width: 50%;
  height: 590px;
  background-color: #ffffff;
  border-radius: 10px 0 0 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  text-align: left;
}
@media screen and (max-width: 1130px) {
  .p-flow_wrap.right .p-flow_wrap_inner_txt {
    width: 45%;
    margin-left: 5%;
  }
}
@media screen and (max-width: 767px) {
  .p-flow_wrap.right .p-flow_wrap_inner_txt {
    width: 100%;
    height: auto;
    background-color: inherit;
    border-radius: 0;
    margin-left: 0;
  }
}
.p-flow_wrap.right .p-flow_wrap_inner_txt .txt_wrap {
  padding: 0 0 0 100px;
}
@media screen and (max-width: 767px) {
  .p-flow_wrap.right .p-flow_wrap_inner_txt .txt_wrap {
    padding: 0;
  }
}
.p-flow_wrap.right .p-flow_wrap_inner_img {
  left: inherit;
  right: 50%;
  margin-right: -715px;
}
@media screen and (max-width: 767px) {
  .p-flow_wrap.right .p-flow_wrap_inner_img {
    right: inherit;
    margin-right: 0;
  }
}

.p-company__nav {
  width: auto;
  height: auto;
  margin: -55px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  line-height: 160%;
}
@media screen and (max-width: 767px) {
  .p-company__nav {
    width: 100%;
    margin: 0 auto;
    border-left: 1px solid #CCCCCC;
  }
}
.p-company__nav a {
  width: auto;
  position: relative;
  font-size: 18px;
  font-weight: bold;
  transition: 0.3s all;
  text-align: center;
  width: 250px;
  height: 50px;
  border: 1px solid #CCCCCC;
  color: #333333;
  text-decoration: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-left: -1px;
}
@media screen and (max-width: 767px) {
  .p-company__nav a {
    font-size: 14px;
    border-left: none;
    width: 50%;
    height: 11.2vw;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: -1px -1px 0 0;
  }
}
.p-company__nav a:hover {
  color: #0A2D88;
  background-color: #F5F5F5;
}
.p-company__nav.en a {
  height: 60px;
  line-height: 120%;
}
@media screen and (max-width: 767px) {
  .p-company__nav.en a {
    height: 12.8vw;
  }
}
.p-company_greeting {
  width: 100%;
  height: 805px;
  margin-top: 160px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1130px) {
  .p-company_greeting {
    margin-top: 100px;
  }
}
@media screen and (max-width: 767px) {
  .p-company_greeting {
    margin-top: 16vw;
    overflow: inherit;
    height: auto;
  }
}
.p-company_greeting_left {
  margin-right: 50%;
  padding-right: 60px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-company_greeting_left {
    margin: 0;
    padding: 0;
  }
}
.p-company_greeting_left h3 {
  font-size: 30px;
  font-weight: bold;
  line-height: 130%;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-company_greeting_left h3 {
    font-size: 26px;
    text-align: center;
  }
}
.p-company_greeting_left h3 .en {
  font-family: "Orbitron", sans-serif;
  color: #0A2D88;
  font-size: 16px;
  font-weight: bold;
  display: block;
}
.p-company_greeting_left .txt {
  margin-top: 40px;
  font-size: 16px;
  line-height: 200%;
}
.p-company_greeting_left .txt.en {
  line-height: 190%;
}
@media screen and (max-width: 767px) {
  .p-company_greeting_left .txt {
    margin-top: 5.3333333333vw;
    font-size: 15px;
    padding-bottom: 8vw;
    text-align: justify;
  }
  .p-company_greeting_left .txt.en {
    text-align: left;
  }
}
.p-company_greeting_img {
  position: absolute;
  top: 0;
  left: 50%;
  width: 890px;
}
@media screen and (max-width: 767px) {
  .p-company_greeting_img {
    position: relative;
    top: inherit;
    width: 100%;
    left: 0;
  }
}
.p-company_logo {
  position: relative;
  width: 100%;
  padding: 180px 0;
  margin: 180px 0;
}
@media screen and (max-width: 1130px) {
  .p-company_logo {
    padding: 100px 0;
    margin: 100px 0;
  }
}
@media screen and (max-width: 767px) {
  .p-company_logo {
    padding: 21.3333333333vw 0;
    margin: 21.3333333333vw 0;
    background-color: #F5F5F5;
  }
}
.p-company_logo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #F5F5F5;
  z-index: -2;
}
@media screen and (max-width: 767px) {
  .p-company_logo::before {
    background: none;
    content: none;
  }
}
.p-company_logo_wrap {
  width: 100%;
  position: relative;
}
.p-company_logo_wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to left, #F5F5F5 65%, #ffffff 45%);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-company_logo_wrap::before {
    background: none;
    content: none;
  }
}
.p-company_logo_wrap .l-inner {
  max-width: 1100px;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-company_logo_wrap .l-inner {
    background: none;
    flex-direction: column-reverse;
    max-width: 100%;
  }
}
.p-company_logo_wrap .l-inner .p-company_logo_img {
  width: calc(50% - 60px);
  background-color: #ffffff;
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-right: 60px;
}
@media screen and (max-width: 767px) {
  .p-company_logo_wrap .l-inner .p-company_logo_img {
    width: 100%;
    height: 53.3333333333vw;
    margin-right: 0;
  }
}
.p-company_logo_wrap .l-inner .p-company_logo_img img {
  width: 325px;
  margin-right: 150px;
}
@media screen and (max-width: 767px) {
  .p-company_logo_wrap .l-inner .p-company_logo_img img {
    width: 42.6666666667vw;
    margin-right: 0;
  }
}
.p-company_logo_wrap .l-inner .p-company_logo_right {
  width: 50%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-company_logo_wrap .l-inner .p-company_logo_right {
    width: 100%;
  }
}
.p-company_logo_wrap .l-inner .p-company_logo_right h3 {
  font-size: 30px;
  font-weight: bold;
  line-height: 130%;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-company_logo_wrap .l-inner .p-company_logo_right h3 {
    font-size: 26px;
    text-align: center;
  }
}
.p-company_logo_wrap .l-inner .p-company_logo_right h3 .en {
  font-family: "Orbitron", sans-serif;
  color: #0A2D88;
  font-size: 16px;
  font-weight: bold;
  display: block;
}
.p-company_logo_wrap .l-inner .p-company_logo_right .txt {
  margin-top: 40px;
  font-size: 16px;
  line-height: 200%;
}
@media screen and (max-width: 767px) {
  .p-company_logo_wrap .l-inner .p-company_logo_right .txt {
    margin-top: 5.3333333333vw;
    font-size: 15px;
    padding-bottom: 5.3333333333vw;
    text-align: justify;
  }
  .p-company_logo_wrap .l-inner .p-company_logo_right .txt.en {
    text-align: left;
  }
}
.p-company_ditail {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
.p-company_ditail h3 {
  font-size: 30px;
  font-weight: bold;
  line-height: 130%;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-company_ditail h3 {
    font-size: 26px;
    margin-bottom: 5.3333333333vw;
  }
}
.p-company_ditail h3 .en {
  font-family: "Orbitron", sans-serif;
  color: #0A2D88;
  font-size: 16px;
  font-weight: bold;
  display: block;
}
.p-company_ditail dl {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  text-align: left;
  border-top: solid 1px #CCCCCC;
}
@media screen and (max-width: 767px) {
  .p-company_ditail dl {
    flex-flow: column;
  }
}
.p-company_ditail dl dt {
  width: 260px;
  background-color: #F5F5F5;
  border-bottom: solid 1px #CCCCCC;
  padding: 25px 30px;
  line-height: 180%;
  font-weight: bold;
  font-size: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-company_ditail dl dt {
    width: 100%;
    font-size: 15px;
    border-bottom: none;
    line-height: 150%;
    padding: 4vw;
  }
}
.p-company_ditail dl dd {
  width: calc(100% - 260px);
  border-bottom: solid 1px #CCCCCC;
  padding: 25px 30px;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .p-company_ditail dl dd {
    width: 100%;
    font-size: 15px;
    padding: 4vw;
    text-align: justify;
    letter-spacing: 0;
  }
}
.p-company_ditail dl dd .bank {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  border-top: none !important;
}
@media screen and (max-width: 767px) {
  .p-company_ditail dl dd .bank {
    flex-flow: row wrap;
  }
}
.p-company_ditail dl dd .bank dt {
  width: 120px;
  background-color: inherit;
  border-bottom: none !important;
  padding: 0;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .p-company_ditail dl dd .bank dt {
    width: 32vw;
  }
}
.p-company_ditail dl dd .bank dd {
  width: calc(100% - 120px);
  border-bottom: none !important;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .p-company_ditail dl dd .bank dd {
    width: calc(100% - 32vw);
  }
}
.p-company_map {
  width: 100%;
  margin: 0 auto;
}
.p-company_map h3 {
  font-size: 30px;
  font-weight: bold;
  line-height: 130%;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-company_map h3 {
    font-size: 26px;
    margin-bottom: 5.3333333333vw;
  }
}
.p-company_map h3 .en {
  font-family: "Orbitron", sans-serif;
  color: #0A2D88;
  font-size: 16px;
  font-weight: bold;
  display: block;
}
.p-company_map .map {
  font-size: 0;
}
.p-company_map .map iframe {
  width: 100%;
  height: 650px;
}
@media screen and (max-width: 767px) {
  .p-company_map .map iframe {
    height: 66.6666666667vw;
  }
}

.p-contact .txt01 {
  text-align: center;
  margin-bottom: 65px;
  font-size: 18px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-contact .txt01 {
    font-size: 16px;
    margin-bottom: 5.3333333333vw;
  }
}
.p-contact_step {
  width: 100%;
  margin: 0 auto 55px;
}
@media screen and (max-width: 767px) {
  .p-contact_step {
    margin: 0 auto 5.3333333333vw;
  }
}
.p-contact_step ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.p-contact_step ul li {
  background-color: #CCCCCC;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  position: relative;
  text-align: center;
  width: 90px;
  height: 90px;
  border-radius: 90px;
  margin-right: 88px;
  letter-spacing: 0.05em;
  padding: 23px 0 0;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .p-contact_step ul li {
    width: 18.6666666667vw;
    height: 18.6666666667vw;
    border-radius: 18.6666666667vw;
    font-size: 14px;
    display: block;
    padding: 4.2666666667vw 0 0;
    margin-right: 8vw;
  }
}
.p-contact_step ul li span {
  font-size: 18px;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-contact_step ul li span {
    font-size: 15px;
  }
}
.p-contact_step ul li::after {
  position: absolute;
  content: "";
  display: block;
  width: 88px;
  height: 3px;
  background-color: #CCCCCC;
  top: 50%;
  right: -88px;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-contact_step ul li::after {
    width: 13.3333333333vw;
    height: 0.5333333333vw;
    right: -13.3333333333vw;
  }
}
.p-contact_step ul li:last-child {
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .p-contact_step ul li:last-child {
    margin-right: 0;
  }
}
.p-contact_step ul li:last-child::after {
  display: none;
}
.p-contact_step ul li.current {
  background-color: #0A2D88;
}
.p-contact_step.en ul li {
  font-size: 11px;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-contact_step.en ul li {
    font-size: 11px;
  }
}
.p-contact_wrap #entryForm dl {
  width: 100%;
  line-height: 180%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-contact_wrap #entryForm dl {
    flex-flow: column;
  }
}
.p-contact_wrap #entryForm dl dt {
  padding: 25px 0 25px 65px;
  position: relative;
  font-weight: bold;
  width: 26%;
  font-size: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  line-height: 140%;
}
@media screen and (max-width: 767px) {
  .p-contact_wrap #entryForm dl dt {
    padding: 6.6666666667vw 0 0 16vw;
    width: 100%;
    display: block;
    font-size: 16px;
    border-bottom: none;
  }
}
.p-contact_wrap #entryForm dl dt::after {
  content: "任意";
  width: 50px;
  height: 23px;
  padding: 0 0.5em;
  border-radius: 3px;
  color: #ffffff;
  background-color: #888888;
  font-size: 13px;
  line-height: 23px;
  font-weight: bold;
  text-align: center;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -12.5px;
}
@media screen and (max-width: 767px) {
  .p-contact_wrap #entryForm dl dt::after {
    font-size: 12px;
    width: 13.3333333333vw;
    height: 7.4666666667vw;
    right: 2.6666666667vw;
    margin-top: 0;
    line-height: 7.4666666667vw;
  }
}
.p-contact_wrap #entryForm dl dt.required:after {
  content: "必須";
  background-color: #D92A2A;
}
.p-contact_wrap #entryForm dl dd {
  padding: 25px 0;
  font-size: 16px;
  width: 74%;
  /* CHECKBOX */
}
@media screen and (max-width: 767px) {
  .p-contact_wrap #entryForm dl dd {
    padding: 4vw 0 6.6666666667vw;
    width: 100%;
    display: block;
    border-bottom: 1px solid #CCCCCC;
  }
}
.p-contact_wrap #entryForm dl dd p.error {
  color: #D92A2A;
  font-size: 14px;
  margin-top: 7px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-contact_wrap #entryForm dl dd p.error {
    margin-top: 1.8666666667vw;
  }
}
.p-contact_wrap #entryForm dl dd input[type=text],
.p-contact_wrap #entryForm dl dd input[type=email],
.p-contact_wrap #entryForm dl dd input[type=tel] {
  width: 100%;
  box-sizing: border-box;
  padding: 17px 25px;
  border: 1px solid #D9D9D9;
  background-color: #F5F5F5;
  border-radius: 3px;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 150%;
  -webkit-appearance: none;
}
@media screen and (max-width: 767px) {
  .p-contact_wrap #entryForm dl dd input[type=text],
  .p-contact_wrap #entryForm dl dd input[type=email],
  .p-contact_wrap #entryForm dl dd input[type=tel] {
    font-size: 16px;
    font-size: 0.8888888889rem;
    padding: 3.2vw 5.3333333333vw;
  }
}
.p-contact_wrap #entryForm dl dd input[type=text].w_s,
.p-contact_wrap #entryForm dl dd input[type=email].w_s,
.p-contact_wrap #entryForm dl dd input[type=tel].w_s,
.p-contact_wrap #entryForm dl dd select.w_s {
  width: 240px;
}
@media screen and (max-width: 767px) {
  .p-contact_wrap #entryForm dl dd input[type=text].w_s,
  .p-contact_wrap #entryForm dl dd input[type=email].w_s,
  .p-contact_wrap #entryForm dl dd input[type=tel].w_s,
  .p-contact_wrap #entryForm dl dd select.w_s {
    width: 40vw;
  }
}
.p-contact_wrap #entryForm dl dd input[type=text].w_small,
.p-contact_wrap #entryForm dl dd input[type=email].w_small,
.p-contact_wrap #entryForm dl dd input[type=tel].w_small,
.p-contact_wrap #entryForm dl dd select.w_small {
  width: 270px;
}
@media screen and (max-width: 767px) {
  .p-contact_wrap #entryForm dl dd input[type=text].w_small,
  .p-contact_wrap #entryForm dl dd input[type=email].w_small,
  .p-contact_wrap #entryForm dl dd input[type=tel].w_small,
  .p-contact_wrap #entryForm dl dd select.w_small {
    width: calc(100% - 9.3333333333vw);
  }
}
.p-contact_wrap #entryForm dl dd input[type=text].w_middle,
.p-contact_wrap #entryForm dl dd input[type=email].w_middle,
.p-contact_wrap #entryForm dl dd input[type=tel].w_middle,
.p-contact_wrap #entryForm dl dd select.w_middle {
  width: 48%;
}
@media screen and (max-width: 767px) {
  .p-contact_wrap #entryForm dl dd input[type=text].w_middle,
  .p-contact_wrap #entryForm dl dd input[type=email].w_middle,
  .p-contact_wrap #entryForm dl dd input[type=tel].w_middle,
  .p-contact_wrap #entryForm dl dd select.w_middle {
    width: 100%;
  }
}
.p-contact_wrap #entryForm dl dd [type=text].w_middle + [type=text].w_middle {
  margin-left: 2%;
  width: 48%;
}
@media screen and (max-width: 767px) {
  .p-contact_wrap #entryForm dl dd [type=text].w_middle + [type=text].w_middle {
    margin-left: 0;
    width: 100%;
    margin-top: 2.1333333333vw;
  }
}
.p-contact_wrap #entryForm dl dd input[type=text] + p.txt {
  font-size: 14px;
  margin-top: 7px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-contact_wrap #entryForm dl dd input[type=text] + p.txt {
    margin-top: 1.8666666667vw;
  }
}
.p-contact_wrap #entryForm dl dd textarea {
  width: 100%;
  height: 190px;
  box-sizing: border-box;
  padding: 17px 25px;
  border: 1px solid #D9D9D9;
  background-color: #F5F5F5;
  border-radius: 3px;
  font-size: 16px;
  line-height: 150%;
  -webkit-appearance: none;
  resize: vertical;
}
@media screen and (max-width: 767px) {
  .p-contact_wrap #entryForm dl dd textarea {
    margin-left: 0;
    width: 100%;
    font-size: 16px;
    font-size: 0.8888888889rem;
  }
}
.p-contact_wrap #entryForm dl dd .selectbox {
  display: inline-flex;
  align-items: center;
  position: relative;
  width: 100%;
}
.p-contact_wrap #entryForm dl dd .selectbox.w_middle {
  width: 48%;
}
@media screen and (max-width: 767px) {
  .p-contact_wrap #entryForm dl dd .selectbox.w_middle {
    width: 60%;
  }
}
.p-contact_wrap #entryForm dl dd .selectbox::after {
  position: absolute;
  right: 30px;
  width: 10px;
  height: 7px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-contact_wrap #entryForm dl dd .selectbox::after {
    right: 15px;
  }
}
.p-contact_wrap #entryForm dl dd .selectbox select {
  padding: 10px 24px;
  border: 1px solid #E6E6E6;
  border-radius: 6px;
  font-size: 18px;
  font-size: 1rem;
  line-height: 150%;
  position: relative;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-contact_wrap #entryForm dl dd .selectbox select {
    font-size: 16px;
    font-size: 0.8888888889rem;
  }
}
.p-contact_wrap #entryForm dl dd .zip-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.p-contact_wrap #entryForm dl dd .zip-wrap .zip-wrap_no {
  margin-right: 35px;
}
@media screen and (max-width: 767px) {
  .p-contact_wrap #entryForm dl dd .zip-wrap .zip-wrap_no {
    margin-right: 4vw;
  }
}
.p-contact_wrap #entryForm dl dd .group {
  margin-bottom: -8px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
.p-contact_wrap #entryForm dl dd .group label {
  width: 100%;
  margin: 0 8px 8px 0;
  box-sizing: border-box;
  position: relative;
  display: inline-block;
  cursor: pointer;
  font-size: 18px;
  font-size: 1rem;
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  .p-contact_wrap #entryForm dl dd .group label {
    font-size: 16px;
    font-size: 0.8888888889rem;
  }
}
.p-contact_wrap #entryForm dl dd .group label input[type=radio] + span {
  position: relative;
  padding: 0 0 0 40px;
}
.p-contact_wrap #entryForm dl dd .group label input[type=radio] + span::before {
  content: "";
  width: 1.25em;
  height: 1.25em;
  margin-top: -0.625em;
  border: 2px solid #D9D9D9;
  border-radius: 1.25em;
  display: inline-block;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 0;
  transition: 0.3s all;
}
@media screen and (max-width: 767px) {
  .p-contact_wrap #entryForm dl dd .group label input[type=radio] + span::before {
    left: 1.3333333333vw;
    width: 1.5em;
    height: 1.5em;
    margin-top: -0.725em;
  }
}
.p-contact_wrap #entryForm dl dd .group label input[type=radio] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.p-contact_wrap #entryForm dl dd label input[type=checkbox] + span {
  font-size: 18px;
  margin: 0;
  position: relative;
  padding: 0 0 0 40px;
}
@media screen and (max-width: 767px) {
  .p-contact_wrap #entryForm dl dd label input[type=checkbox] + span {
    font-size: 16px;
    margin: 0 0 2.1333333333vw 0;
    padding: 0 0 0 9.3333333333vw;
  }
}
.p-contact_wrap #entryForm dl dd label input[type=checkbox] + span::before,
.p-contact_wrap #entryForm dl dd label input[type=checkbox] + span::after {
  content: "";
  display: inline-block;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 0;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-contact_wrap #entryForm dl dd label input[type=checkbox] + span::before,
  .p-contact_wrap #entryForm dl dd label input[type=checkbox] + span::after {
    top: -0.5333333333vw;
  }
}
.p-contact_wrap #entryForm dl dd label input[type=checkbox] + span::before {
  width: 1.6em;
  height: 1.6em;
  margin-top: -0.8em;
  border: 2px solid #D9D9D9;
  border-radius: 3px;
  z-index: 0;
  transition: 0.3s all;
}
@media screen and (max-width: 767px) {
  .p-contact_wrap #entryForm dl dd label input[type=checkbox] + span::before {
    margin-top: 0;
  }
}
.p-contact_wrap #entryForm dl dd label input[type=checkbox].white_bg + span::before {
  background-color: #0A2D88;
}
.p-contact_wrap #entryForm dl dd label input[type=checkbox] + span::after {
  width: 0.5em;
  height: 0.7em;
  margin-top: -0.5em;
  margin-left: 0.6em;
  transform: scale(0) rotate(45deg);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-contact_wrap #entryForm dl dd label input[type=checkbox] + span::after {
    margin-top: 1.0666666667vw;
  }
}
.p-contact_wrap #entryForm dl dd label input[type=checkbox]:checked + span::before {
  border: none;
}
.p-contact_wrap #entryForm dl dd label input[type=checkbox]:checked + span::after {
  border: 0.1875em solid #ffffff;
  border-width: 0 0.1875em 0.1875em 0;
  transform: scale(1) rotate(45deg);
}
@media screen and (max-width: 767px) {
  .p-contact_wrap #entryForm dl dd label input[type=checkbox]:checked + span::after {
    border: 0.2em solid #ffffff;
    border-width: 0 0.2em 0.2em 0;
  }
}
.p-contact_wrap #entryForm dl dd label input[type=checkbox]:checked + span::before {
  background-color: #0A2D88;
}
.p-contact_wrap #entryForm dl.en dt {
  padding: 25px 0 25px 70px;
}
@media screen and (max-width: 767px) {
  .p-contact_wrap #entryForm dl.en dt {
    padding: 6.6666666667vw 0 0 17.3333333333vw;
  }
}
.p-contact_wrap #entryForm dl.en dt::after {
  content: "Optional";
  width: 60px;
  font-size: 8.7px;
}
@media screen and (max-width: 767px) {
  .p-contact_wrap #entryForm dl.en dt::after {
    font-size: 10px;
    width: 16vw;
  }
}
.p-contact_wrap #entryForm dl.en dt.required:after {
  content: "Required";
}

input + select,
input + textarea,
select + input,
select + textarea,
textarea + input,
textarea + select {
  margin-top: 0.75em;
}

:-moz-placeholder {
  color: #AFAFAF;
}

:placeholder-shown {
  color: #AFAFAF;
}

::-webkit-input-placeholder {
  color: #AFAFAF;
}

:-moz-placeholder {
  color: #AFAFAF;
  opacity: 1;
}

::-moz-placeholder {
  color: #AFAFAF;
  opacity: 1;
}

:focus:-moz-placeholder {
  color: inherit;
}

:focus:placeholder-shown {
  color: inherit;
}

:focus::-webkit-input-placeholder {
  font-size: 0;
}

:focus:-moz-placeholder {
  font-size: 0;
}

:focus::-moz-placeholder {
  font-size: 0;
}

:focus:-ms-input-placeholder {
  font-size: 0;
}

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

input[type=checkbox],
input[type=radio] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  display: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

.buttonArea {
  padding: 50px 0 0;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .buttonArea {
    flex-direction: column-reverse;
    padding: 8vw 0 0;
  }
}
.buttonArea li {
  width: 48%;
  max-width: 360px;
  margin: 0 1%;
}
@media screen and (max-width: 767px) {
  .buttonArea li {
    width: 100%;
    max-width: 100%;
  }
}
.buttonArea li.long {
  width: 84vw;
  max-width: 84vw;
  margin: 0 auto;
}
.buttonArea li .button_wrap {
  display: block;
  overflow: hidden;
  position: relative;
  line-height: 1.6;
  background-color: #0A2D88;
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  width: 100%;
  max-width: 370px;
  height: 70px;
  padding: 0;
  transition: 0.3s all;
  border-radius: 100px;
  position: relative;
  margin: 0 auto;
  box-shadow: 2px 4px 0px 0px #FABE00;
}
@media screen and (max-width: 767px) {
  .buttonArea li .button_wrap {
    width: 100%;
    font-size: 18px;
    height: 16vw;
  }
}
.buttonArea li .button_wrap::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 28px;
  width: 12px;
  height: 12px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s all;
}
@media screen and (max-width: 767px) {
  .buttonArea li .button_wrap::after {
    right: 6.6666666667vw;
    width: 3.2vw;
    height: 3.2vw;
  }
}
.buttonArea li .button_wrap:hover {
  opacity: 0.8;
}
.buttonArea li .button_wrap:hover::after {
  right: 23px;
}
@media screen and (max-width: 767px) {
  .buttonArea li .button_wrap:hover::after {
    right: 5.3333333333vw;
  }
}
.buttonArea li .button_wrap input[type=submit] {
  width: 100%;
  height: 70px;
  line-height: 70px;
  text-align: center;
  margin: 0;
  background-color: #0A2D88;
  border-radius: 100px;
  display: inline-block;
  position: relative;
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  font-style: normal;
  cursor: pointer;
  transition: 0.3s all;
  border: none;
}
@media screen and (max-width: 767px) {
  .buttonArea li .button_wrap input[type=submit] {
    height: 16vw;
    line-height: 16vw;
    font-size: 18px;
  }
}
.buttonArea li .button_wrap input[type=button] {
  width: 100%;
  height: 70px;
  line-height: 70px;
  text-align: center;
  margin: 0;
  background-color: #0A2D88;
  border-radius: 100px;
  display: inline-block;
  position: relative;
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  font-style: normal;
  cursor: pointer;
  transition: 0.3s all;
  border: none;
}
@media screen and (max-width: 767px) {
  .buttonArea li .button_wrap input[type=button] {
    height: 16vw;
    line-height: 16vw;
    font-size: 18px;
  }
}
.buttonArea li .button_wrap.back {
  display: block;
  overflow: hidden;
  position: relative;
  line-height: 1.6;
  border: 2px solid #888888;
  background-color: #888888;
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  width: 100%;
  padding: 0;
  transition: 0.3s all;
  border-radius: 100px;
  position: relative;
  margin: 0 auto;
  box-shadow: 2px 4px 0px 0px #cccccc;
}
@media screen and (max-width: 767px) {
  .buttonArea li .button_wrap.back {
    font-size: 18px;
    margin-top: 4vw;
  }
}
.buttonArea li .button_wrap.back::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 28px;
  width: 12px;
  height: 12px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: translateY(-50%) rotate(-135deg);
  transition: 0.3s all;
}
@media screen and (max-width: 767px) {
  .buttonArea li .button_wrap.back::after {
    left: 6.6666666667vw;
    width: 3.2vw;
    height: 3.2vw;
  }
}
.buttonArea li .button_wrap.back:hover {
  opacity: 0.8;
}
.buttonArea li .button_wrap.back:hover::after {
  left: 23px;
}
@media screen and (max-width: 767px) {
  .buttonArea li .button_wrap.back:hover::after {
    left: 5.3333333333vw;
  }
}
.buttonArea li .button_wrap.back input[type=button] {
  width: 100%;
  height: 70px;
  line-height: 70px;
  text-align: center;
  margin: 0;
  background-color: #888888;
  border-radius: 100px;
  display: inline-block;
  position: relative;
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  font-style: normal;
  cursor: pointer;
  transition: 0.3s all;
  border: none;
}
@media screen and (max-width: 767px) {
  .buttonArea li .button_wrap.back input[type=button] {
    height: 16vw;
    line-height: 16vw;
    font-size: 18px;
  }
}

.p-privacy {
  font-size: 16px;
}
.p-privacy_wrap {
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid #CCCCCC;
}
@media screen and (max-width: 767px) {
  .p-privacy_wrap {
    margin-top: 8vw;
    padding-top: 8vw;
  }
}

.p-bread {
  width: 100%;
  border-top: 1px solid #CCCCCC;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-bread {
    display: none;
  }
}
.p-bread ul {
  display: flex;
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
}
.p-bread ul li {
  padding-right: 40px;
  position: relative;
}
.p-bread ul li span {
  display: inline-block;
  font-size: 13px;
  line-height: 160%;
  padding: 15px 0px;
}
.p-bread ul li:last-of-type::after {
  display: none;
}
.p-bread ul li a {
  display: inline-block;
  font-size: 13px;
  line-height: 160%;
  padding: 15px 0;
  color: #0A2D88;
  transition: 0.3s all;
  text-decoration: none;
}
.p-bread ul li a:hover {
  opacity: 0.8;
}
.p-bread ul li::after {
  display: block;
  content: "";
  position: absolute;
  top: calc(50% - 4px);
  right: 15px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #333333;
  border-right: 1px solid #333333;
  transform: rotate(45deg);
}

.u-mb--0 {
  margin-bottom: 0px !important;
}
.u-mb--xxs {
  margin-bottom: 10px !important;
}
@media screen and (max-width: 767px) {
  .u-mb--xxs {
    margin-bottom: 1.3333333333vw !important;
  }
}
.u-mb--xs {
  margin-bottom: 20px !important;
}
@media screen and (max-width: 767px) {
  .u-mb--xs {
    margin-bottom: 2.6666666667vw !important;
  }
}
.u-mb--s {
  margin-bottom: 30px !important;
}
@media screen and (max-width: 767px) {
  .u-mb--s {
    margin-bottom: 4vw !important;
  }
}
.u-mb--m {
  margin-bottom: 40px !important;
}
@media screen and (max-width: 767px) {
  .u-mb--m {
    margin-bottom: 5.3333333333vw !important;
  }
}
.u-mb--l {
  margin-bottom: 50px !important;
}
@media screen and (max-width: 767px) {
  .u-mb--l {
    margin-bottom: 6.6666666667vw !important;
  }
}
.u-mb--15 {
  margin-bottom: 15px !important;
}
@media screen and (max-width: 767px) {
  .u-mb--15 {
    margin-bottom: 2.6666666667vw !important;
  }
}
.u-mb--60 {
  margin-bottom: 60px !important;
}
@media screen and (max-width: 767px) {
  .u-mb--60 {
    margin-bottom: 8vw !important;
  }
}
.u-mb--80 {
  margin-bottom: 80px !important;
}
@media screen and (max-width: 767px) {
  .u-mb--80 {
    margin-bottom: 16vw !important;
  }
}
.u-mb--120 {
  margin-bottom: 120px !important;
}
@media screen and (max-width: 767px) {
  .u-mb--120 {
    margin-bottom: 16vw !important;
  }
}

.u-mt--0 {
  margin-top: 0px !important;
}
.u-mt--xxs {
  margin-top: 10px !important;
}
@media screen and (max-width: 767px) {
  .u-mt--xxs {
    margin-top: 1.3333333333vw !important;
  }
}
.u-mt--xs {
  margin-top: 20px !important;
}
@media screen and (max-width: 767px) {
  .u-mt--xs {
    margin-top: 2.6666666667vw !important;
  }
}
.u-mt--s {
  margin-top: 30px !important;
}
@media screen and (max-width: 767px) {
  .u-mt--s {
    margin-top: 4vw !important;
  }
}
.u-mt--m {
  margin-top: 40px !important;
}
@media screen and (max-width: 767px) {
  .u-mt--m {
    margin-top: 5.3333333333vw !important;
  }
}
.u-mt--l {
  margin-top: 50px !important;
}
@media screen and (max-width: 767px) {
  .u-mt--l {
    margin-top: 6.6666666667vw !important;
  }
}
.u-mt--60 {
  margin-top: 60px !important;
}
@media screen and (max-width: 767px) {
  .u-mt--60 {
    margin-top: 8vw !important;
  }
}
.u-mt--25 {
  margin-top: 25px !important;
}
@media screen and (max-width: 767px) {
  .u-mt--25 {
    margin-top: 5.3333333333vw !important;
  }
}

.u-sp-only {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .u-sp-only {
    display: block !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pc-only {
    display: none !important;
  }
}

.u-fontsize--l {
  font-size: 28px;
  font-size: 1.5555555556rem;
  line-height: 1.2857142857;
}
.u-fontsize--l::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.2857142857) * 0.5em);
  content: "";
}
.u-fontsize--l::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.2857142857) * 0.5em);
  content: "";
}
@media screen and (max-width: 767px) {
  .u-fontsize--l {
    font-size: 20px;
    font-size: 1.1111111111rem;
    line-height: 1.4;
  }
  .u-fontsize--l::before {
    display: block;
    width: 0;
    height: 0;
    margin-top: calc((1 - 1.4) * 0.5em);
    content: "";
  }
  .u-fontsize--l::after {
    display: block;
    width: 0;
    height: 0;
    margin-bottom: calc((1 - 1.4) * 0.5em);
    content: "";
  }
}
.u-fontsize--16 {
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .u-fontsize--16 {
    font-size: 1.4rem;
  }
}

.u-fontcolor--red {
  color: #D92A2A;
}

.u-lineheight--140 {
  line-height: 140% !important;
}

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