@charset "UTF-8";
@keyframes active-menu-bar {
  100% {
    height: 0;
  }
}
@keyframes scroll-down {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 100%;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 100%;
    opacity: 0;
  }
}
@keyframes zoomOut {
  0% {
    transform: scale(2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes zoomIn {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes slideInRight {
  0% {
    transform: translateX(-100%);
  }
  20% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInLeft {
  0% {
    transform: translateX(100%);
  }
  20% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideRight {
  0% {
    transform: translate(-100%, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes slideLeft {
  0% {
    transform: translate(100%, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeIn, .slideInUp, .slideInRight, .slideInLeft, .slideInDown {
  opacity: 0;
}

.fadeIn.is-animated {
  animation: fadeIn 1s ease-in-out both;
}

.slideInUp.is-animated {
  animation: slideInUp 0.6s ease-in-out both;
}

.slideInDown.is-animated {
  animation: slideInDown 0.6s ease-in-out both;
}

.slideInRight.is-animated {
  animation: slideInRight 0.6s ease-in-out both;
}

.slideInLeft.is-animated {
  animation: slideInLeft 0.6s ease-in-out both;
}

@keyframes updown {
  0% {
    top: 0;
  }
  50% {
    top: -10px;
  }
  100% {
    top: 0;
  }
}
@keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes katakata {
  0% {
    transform: rotate(0);
  }
  25% {
    transform: rotate(1deg);
  }
  50% {
    transform: rotate(0);
  }
  75% {
    transform: rotate(-1deg);
  }
  100% {
    transform: rotate(0);
  }
}
/* font-sizeレスポンシブ */
/* -----------------------------------------------
* Plugins エントリーポイント
-------------------------------------------------- */
/* resset.dev • v5.0.2 */
/* # =================================================================
   # Global selectors
   # ================================================================= */
html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%; /* Prevent adjustments of font size after orientation changes in iOS */
  word-break: normal;
  -moz-tab-size: 4;
  tab-size: 4;
}

*,
::before,
::after {
  background-repeat: no-repeat; /* Set `background-repeat: no-repeat` to all elements and pseudo elements */
  box-sizing: inherit;
}

::before,
::after {
  text-decoration: inherit; /* Inherit text-decoration and vertical align to ::before and ::after pseudo elements */
  vertical-align: inherit;
}

* {
  padding: 0; /* Reset `padding` and `margin` of all elements */
  margin: 0;
}

/* # =================================================================
   # General elements
   # ================================================================= */
hr {
  overflow: visible; /* Show the overflow in Edge and IE */
  height: 0; /* Add the correct box sizing in Firefox */
  color: inherit; /* Correct border color in Firefox. */
}

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

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

small {
  font-size: 80%; /* Set font-size to 80% in `small` elements */
}

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

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

a {
  background-color: transparent; /* Remove the gray background on active links in IE 10 */
}

a:active,
a:hover {
  outline-width: 0; /* Remove the outline when hovering in all browsers */
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace; /* Specify the font family of code elements */
}

pre {
  font-size: 1em; /* Correct the odd `em` font sizing in all browsers */
}

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

/* https://gist.github.com/unruthless/413930 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  border-color: inherit; /* Correct border color in all Chrome, Edge, and Safari. */
  text-indent: 0; /* Remove text indentation in Chrome, Edge, and Safari */
}

iframe {
  border-style: none;
}

/* # =================================================================
   # Forms
   # ================================================================= */
input {
  border-radius: 0;
}

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

[type=search] {
  -webkit-appearance: textfield; /* Correct the odd appearance in Chrome and Safari */
  outline-offset: -2px; /* Correct the outline style in Safari */
}

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

textarea {
  overflow: auto; /* Internet Explorer 11+ */
  resize: vertical; /* Specify textarea resizability */
}

button,
input,
optgroup,
select,
textarea {
  font: inherit; /* Specify font inheritance of form elements */
}

optgroup {
  font-weight: bold; /* Restore the font weight unset by the previous rule */
}

button {
  overflow: visible; /* Address `overflow` set to `hidden` in IE 8/9/10/11 */
}

button,
select {
  text-transform: none; /* Firefox 40+, Internet Explorer 11- */
}

/* Apply cursor pointer to button elements */
button,
[type=button],
[type=reset],
[type=submit],
[role=button] {
  cursor: pointer;
}

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

/* Replace focus style removed in the border reset above */
button:-moz-focusring,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  outline: 1px dotted ButtonText;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button; /* Correct the inability to style clickable types in iOS */
}

/* Remove the default button styling in all browsers */
button,
input,
select,
textarea {
  background-color: transparent;
  border-style: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline-width: 0;
}

/* Style select like a standard input */
select {
  -moz-appearance: none; /* Firefox 36+ */
  -webkit-appearance: none; /* Chrome 41+ */
}

select::-ms-expand {
  display: none; /* Internet Explorer 11+ */
}

select::-ms-value {
  color: currentColor; /* Internet Explorer 11+ */
}

legend {
  border: 0; /* Correct `color` not being inherited in IE 8/9/10/11 */
  color: inherit; /* Correct the color inheritance from `fieldset` elements in IE */
  display: table; /* Correct the text wrapping in Edge and IE */
  max-width: 100%; /* Correct the text wrapping in Edge and IE */
  white-space: normal; /* Correct the text wrapping in Edge and IE */
  max-width: 100%; /* Correct the text wrapping in Edge 18- and IE */
}

::-webkit-file-upload-button {
  /* Correct the inability to style clickable types in iOS and Safari */
  -webkit-appearance: button;
  color: inherit;
  font: inherit; /* Change font properties to `inherit` in Chrome and Safari */
}

/* Replace pointer cursor in disabled elements */
[disabled] {
  cursor: default;
}

/* # =================================================================
   # Specify media element style
   # ================================================================= */
img {
  border-style: none; /* Remove border when inside `a` element in IE 8/9/10 */
}

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

/* # =================================================================
   # Accessibility
   # ================================================================= */
/* Specify the progress cursor of updating elements */
[aria-busy=true] {
  cursor: progress;
}

/* Specify the pointer cursor of trigger elements */
[aria-controls] {
  cursor: pointer;
}

/* Specify the unstyled cursor of disabled, not-editable, or otherwise inoperable elements */
[aria-disabled=true] {
  cursor: default;
}

/* ==================================
base
================================== */
html {
  font-size: 18px;
}

body {
  color: #F8F8F8;
  font-family: "Zen Kaku Gothic New", serif;
  font-weight: 500;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  line-height: 1.5;
  font-size: 0.8888888889rem;
  background-color: #212121;
}
@media screen and (min-width: 768px) {
  body {
    font-size: calc(16px + 2 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  body {
    font-size: 1rem;
  }
}

#wrapper {
  overflow-x: clip;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 900;
}

h1, h2 {
  font-size: 1.5555555556rem;
}
@media screen and (min-width: 768px) {
  h1, h2 {
    font-size: calc(28px + 14 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  h1, h2 {
    font-size: 2.3333333333rem;
  }
}

h3 {
  font-size: 0.9444444444rem;
}
@media screen and (min-width: 768px) {
  h3 {
    font-size: calc(17px + 4 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  h3 {
    font-size: 1.1666666667rem;
  }
}

h4 {
  font-size: 0.9444444444rem;
}
@media screen and (min-width: 768px) {
  h4 {
    font-size: calc(17px + 3 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  h4 {
    font-size: 1.1111111111rem;
  }
}

h5 {
  font-size: 0.8888888889rem;
}
@media screen and (min-width: 768px) {
  h5 {
    font-size: calc(16px + 3 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  h5 {
    font-size: 1.0555555556rem;
  }
}

h6 {
  font-size: 0.8888888889rem;
}
@media screen and (min-width: 768px) {
  h6 {
    font-size: calc(16px + 2 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  h6 {
    font-size: 1rem;
  }
}

img, svg {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

table {
  border-collapse: collapse;
}

ul, ol {
  margin-left: 1.3em;
}

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

strong {
  font-weight: 900;
}

.l-editor h2, .l-editor h3, .l-editor h4, .l-editor h5, .l-editor h6 {
  line-height: 1.75;
}
.l-editor h2:not(:first-child), .l-editor h3:not(:first-child), .l-editor h4:not(:first-child), .l-editor h5:not(:first-child), .l-editor h6:not(:first-child) {
  margin-top: 40px;
}
.l-editor h2 + h2, .l-editor h2 + h3, .l-editor h2 + h4, .l-editor h2 + h5, .l-editor h2 + h6, .l-editor h2 + p, .l-editor h2 + dl, .l-editor h2 + ol, .l-editor h2 + ul, .l-editor h2 + table, .l-editor h2 + hr, .l-editor h3 + h2, .l-editor h3 + h3, .l-editor h3 + h4, .l-editor h3 + h5, .l-editor h3 + h6, .l-editor h3 + p, .l-editor h3 + dl, .l-editor h3 + ol, .l-editor h3 + ul, .l-editor h3 + table, .l-editor h3 + hr, .l-editor h4 + h2, .l-editor h4 + h3, .l-editor h4 + h4, .l-editor h4 + h5, .l-editor h4 + h6, .l-editor h4 + p, .l-editor h4 + dl, .l-editor h4 + ol, .l-editor h4 + ul, .l-editor h4 + table, .l-editor h4 + hr, .l-editor h5 + h2, .l-editor h5 + h3, .l-editor h5 + h4, .l-editor h5 + h5, .l-editor h5 + h6, .l-editor h5 + p, .l-editor h5 + dl, .l-editor h5 + ol, .l-editor h5 + ul, .l-editor h5 + table, .l-editor h5 + hr, .l-editor h6 + h2, .l-editor h6 + h3, .l-editor h6 + h4, .l-editor h6 + h5, .l-editor h6 + h6, .l-editor h6 + p, .l-editor h6 + dl, .l-editor h6 + ol, .l-editor h6 + ul, .l-editor h6 + table, .l-editor h6 + hr {
  margin-top: 20px !important;
}
.l-editor h2 {
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .l-editor h2 {
    font-size: calc(18px + 6 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .l-editor h2 {
    font-size: 1.3333333333rem;
  }
}
.l-editor p, .l-editor dl, .l-editor ol, .l-editor ul, .l-editor table, .l-editor hr {
  line-height: 1.875;
}
.l-editor p:not(:first-child), .l-editor dl:not(:first-child), .l-editor ol:not(:first-child), .l-editor ul:not(:first-child), .l-editor table:not(:first-child), .l-editor hr:not(:first-child) {
  margin-top: 40px;
}
.l-editor ol ol, .l-editor ol ul, .l-editor ul ol, .l-editor ul ul {
  margin-top: 0 !important;
}
.l-editor ol ol ol, .l-editor ol ul ol, .l-editor ul ol ol, .l-editor ul ul ol {
  list-style: none;
  counter-reset: number;
  margin-left: 0;
}
.l-editor ol ol ol li, .l-editor ol ul ol li, .l-editor ul ol ol li, .l-editor ul ul ol li {
  position: relative;
  padding-left: 2.3em;
}
.l-editor ol ol ol li:before, .l-editor ol ul ol li:before, .l-editor ul ol ol li:before, .l-editor ul ul ol li:before {
  content: "（" counter(number) "）";
  counter-increment: number;
  position: absolute;
  left: 0;
}
.l-editor ol li::marker {
  font-weight: bold;
}
.l-editor a {
  text-decoration: underline;
  transition: 0.2s ease-in-out;
}
.l-editor dl > div {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.l-editor dl > div dt {
  padding: 1em;
  width: 10em;
}
.l-editor dl > div dd {
  padding: 1em;
  flex: 1;
}
.l-editor dl dt, .l-editor dl dd {
  font-weight: 500;
  width: 100%;
}
.l-editor dl > dd + dt {
  margin-top: 1rem;
}
.l-editor input, .l-editor textarea, .l-editor fieldset {
  border: 1px solid #797979;
  border-radius: 4px;
  padding: 1em;
  max-width: 100%;
  background-color: #fff;
  font-size: 0.8888888889rem;
}
@media screen and (min-width: 768px) {
  .l-editor input, .l-editor textarea, .l-editor fieldset {
    font-size: calc(16px + 2 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .l-editor input, .l-editor textarea, .l-editor fieldset {
    font-size: 1rem;
  }
}
.l-editor input::placeholder, .l-editor textarea::placeholder, .l-editor fieldset::placeholder {
  color: #797979;
}
.l-editor table {
  margin: 0;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .l-editor table {
    width: auto;
  }
}
.l-editor table thead tr th {
  background-color: #292D36;
}
.l-editor table tbody tr {
  border-bottom: 1px solid #797979;
}
.l-editor table tr th, .l-editor table tr td {
  line-height: 2;
  text-align: left;
  font-weight: bold;
  padding-left: 0.6666666667rem;
  padding-right: 0.6666666667rem;
  padding-top: 0.9444444444rem;
  padding-bottom: 0.9444444444rem;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .l-editor table tr th, .l-editor table tr td {
    padding-left: calc(12px + 28 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .l-editor table tr th, .l-editor table tr td {
    padding-left: 2.2222222222rem;
  }
}
@media screen and (min-width: 768px) {
  .l-editor table tr th, .l-editor table tr td {
    padding-right: calc(12px + 28 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .l-editor table tr th, .l-editor table tr td {
    padding-right: 2.2222222222rem;
  }
}
@media screen and (min-width: 768px) {
  .l-editor table tr th, .l-editor table tr td {
    padding-top: calc(17px + 5 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .l-editor table tr th, .l-editor table tr td {
    padding-top: 1.2222222222rem;
  }
}
@media screen and (min-width: 768px) {
  .l-editor table tr th, .l-editor table tr td {
    padding-bottom: calc(17px + 5 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .l-editor table tr th, .l-editor table tr td {
    padding-bottom: 1.2222222222rem;
  }
}
@media only screen and (max-width: 767px) {
  .l-editor table tr th, .l-editor table tr td {
    line-height: 1.5;
    vertical-align: top;
  }
}
.l-editor table tr th {
  background-color: #33353A;
}
.l-editor table tr td {
  white-space: normal;
}
.l-editor img {
  border-radius: 4px;
}

/* -----------------------------------------------
* layout エントリーポイント
-------------------------------------------------- */
/* --------------------------------
l-header
----------------------------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding-top: 0.4444444444rem;
  padding-right: 0.4444444444rem;
  padding-left: 0.4444444444rem;
}
@media screen and (min-width: 1200px) {
  header {
    padding-top: calc(8px + 8 * (100vw - 1200px) / 720);
  }
}
@media screen and (min-width: 1920px) {
  header {
    padding-top: 0.8888888889rem;
  }
}
@media screen and (min-width: 1200px) {
  header {
    padding-right: calc(8px + 16 * (100vw - 1200px) / 720);
  }
}
@media screen and (min-width: 1920px) {
  header {
    padding-right: 1.3333333333rem;
  }
}
@media screen and (min-width: 1200px) {
  header {
    padding-left: calc(8px + 16 * (100vw - 1200px) / 720);
  }
}
@media screen and (min-width: 1920px) {
  header {
    padding-left: 1.3333333333rem;
  }
}

.l-header {
  background: transparent linear-gradient(104deg, rgba(35, 62, 213, 0.6) 0%, rgba(78, 48, 108, 0.6) 25%, rgba(33, 33, 33, 0.6) 42%, rgba(33, 33, 33, 0.6) 100%) 0% 0% no-repeat padding-box;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 0.8888888889rem;
  padding-left: 0.8888888889rem;
  height: 3.5555555556rem;
}
@media screen and (min-width: 1200px) {
  .l-header {
    padding-right: calc(16px + 24 * (100vw - 1200px) / 720);
  }
}
@media screen and (min-width: 1920px) {
  .l-header {
    padding-right: 2.2222222222rem;
  }
}
@media screen and (min-width: 1200px) {
  .l-header {
    padding-left: calc(16px + 24 * (100vw - 1200px) / 720);
  }
}
@media screen and (min-width: 1920px) {
  .l-header {
    padding-left: 2.2222222222rem;
  }
}
@media screen and (min-width: 1200px) {
  .l-header {
    height: calc(64px + 36 * (100vw - 1200px) / 720);
  }
}
@media screen and (min-width: 1920px) {
  .l-header {
    height: 5.5555555556rem;
  }
}
@media only screen and (max-width: 1199px) {
  .l-header {
    background: transparent linear-gradient(129deg, rgba(35, 62, 213, 0.6) 0%, rgba(78, 48, 108, 0.6) 35%, rgba(33, 33, 33, 0.6) 58%, rgba(33, 33, 33, 0.6) 100%) 0% 0% no-repeat padding-box;
  }
}

.l-header-logo {
  line-height: 1;
  position: relative;
  z-index: 120;
}
.l-header-logo > h1, .l-header-logo > div {
  display: inline-block;
  font-size: 0.8888888889rem;
  line-height: inherit;
  color: #F8F8F8;
  font-weight: bold;
}
@media screen and (min-width: 1200px) {
  .l-header-logo > h1, .l-header-logo > div {
    font-size: calc(16px + 10 * (100vw - 1200px) / 720);
  }
}
@media screen and (min-width: 1920px) {
  .l-header-logo > h1, .l-header-logo > div {
    font-size: 1.4444444444rem;
  }
}

/* --------------------------------
l-inner
----------------------------------- */
.l-inner {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

/* --------------------------------
l-footer
----------------------------------- */
.l-footer {
  position: relative;
  padding: 0 16px;
  background: transparent linear-gradient(180deg, #212121 0%, #212227 67%, #314DEA 100%) 0% 0% no-repeat padding-box;
  margin-top: 4.4444444444rem;
}
@media screen and (min-width: 768px) {
  .l-footer {
    margin-top: calc(80px + 120 * (100vw - 768px) / 1152);
  }
}
@media screen and (min-width: 1920px) {
  .l-footer {
    margin-top: 11.1111111111rem;
  }
}

.l-footer-contact {
  padding-top: 3rem;
}
@media screen and (min-width: 768px) {
  .l-footer-contact {
    padding-top: calc(54px + 135 * (100vw - 768px) / 1152);
  }
}
@media screen and (min-width: 1920px) {
  .l-footer-contact {
    padding-top: 10.5rem;
  }
}

.l-footer-contact-title h2.c-title {
  flex: 1;
}
.l-footer-contact-title h2.c-title .c-title-sub {
  margin-bottom: 12px;
}

.l-footer-contact-text {
  border-top: 1px solid #B3BAC9;
  padding-top: 24px;
  color: #F8F8F8;
}

.l-footer-top {
  padding-top: 3.8888888889rem;
  padding-bottom: 0.8888888889rem;
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .l-footer-top {
    padding-top: calc(70px + 20 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .l-footer-top {
    padding-top: 5rem;
  }
}
@media screen and (min-width: 768px) {
  .l-footer-top {
    padding-bottom: calc(16px + 84 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .l-footer-top {
    padding-bottom: 5.5555555556rem;
  }
}
@media only screen and (max-width: 1199px) {
  .l-footer-top {
    display: block;
  }
}

.l-footer-info .l-footer-logo {
  display: inline-block;
  line-height: 1;
  position: relative;
  margin-bottom: 0.7222222222rem;
}
@media screen and (min-width: 768px) {
  .l-footer-info .l-footer-logo {
    margin-bottom: calc(13px + 7 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .l-footer-info .l-footer-logo {
    margin-bottom: 1.1111111111rem;
  }
}
.l-footer-info .l-footer-logo > h1, .l-footer-info .l-footer-logo > div {
  display: inline-block;
  font-size: 1.1111111111rem;
  line-height: inherit;
  color: #F8F8F8;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .l-footer-info .l-footer-logo > h1, .l-footer-info .l-footer-logo > div {
    font-size: calc(20px + 6 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .l-footer-info .l-footer-logo > h1, .l-footer-info .l-footer-logo > div {
    font-size: 1.4444444444rem;
  }
}
.l-footer-info .l-footer-address {
  margin-bottom: 0.4444444444rem;
}
@media screen and (min-width: 768px) {
  .l-footer-info .l-footer-address {
    margin-bottom: calc(8px + 8 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .l-footer-info .l-footer-address {
    margin-bottom: 0.8888888889rem;
  }
}
.l-footer-info .l-footer-tel {
  line-height: 1.2;
  font-size: 1.1111111111rem;
  font-family: "Montserrat", serif;
  font-weight: 600;
  margin-bottom: 43px;
}
@media screen and (min-width: 768px) {
  .l-footer-info .l-footer-tel {
    font-size: calc(20px + 4 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .l-footer-info .l-footer-tel {
    font-size: 1.3333333333rem;
  }
}
.l-footer-info .l-footer-tel a {
  color: inherit;
}

.l-footer-nav {
  display: inline-block;
  line-height: 1;
  flex: 1;
  padding-left: 5.5555555556rem;
}
@media screen and (min-width: 1200px) {
  .l-footer-nav {
    padding-left: calc(100px + 200 * (100vw - 1200px) / 200);
  }
}
@media screen and (min-width: 1400px) {
  .l-footer-nav {
    padding-left: 16.6666666667rem;
  }
}
@media only screen and (max-width: 1199px) {
  .l-footer-nav {
    padding-left: 0;
  }
}
.l-footer-nav ul.l-footer-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: start;
  max-height: calc((1em + 25px) * 3);
  padding: 0;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .l-footer-nav ul.l-footer-menu {
    flex-direction: row;
    max-height: none;
  }
}
.l-footer-nav ul.l-footer-menu > li {
  margin-bottom: 24px;
  margin-right: 100px;
}
@media only screen and (max-width: 767px) {
  .l-footer-nav ul.l-footer-menu > li {
    width: 50%;
    margin-right: 0;
  }
}
@media only screen and (max-width: 499px) {
  .l-footer-nav ul.l-footer-menu > li {
    width: 100%;
  }
}
.l-footer-nav ul.l-footer-menu > li > a {
  display: inline-block;
  color: inherit;
}
.l-footer-nav ul.l-footer-menu > li > a:hover {
  text-decoration: underline;
}

.l-footer-bottom {
  padding-bottom: 3.3333333333rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  color: #B3BAC9;
}
@media screen and (min-width: 768px) {
  .l-footer-bottom {
    padding-bottom: calc(60px + 40 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .l-footer-bottom {
    padding-bottom: 5.5555555556rem;
  }
}
@media only screen and (max-width: 767px) {
  .l-footer-bottom {
    display: block;
  }
}

.l-footer-bottom-left {
  font-size: 0.8888888889rem;
}
.l-footer-bottom-left > p {
  margin-bottom: 2em;
}

.l-footer-links ul.l-footer-link-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.l-footer-links ul.l-footer-link-menu > li {
  margin-right: 40px;
  margin-bottom: 1em;
}
.l-footer-links ul.l-footer-link-menu > li > a {
  display: inline-block;
  color: inherit;
}
.l-footer-links ul.l-footer-link-menu > li > a:hover {
  text-decoration: underline;
}

.l-footer-sns {
  display: flex;
}
.l-footer-sns .l-footer-sns__item {
  padding-right: 24px;
}
.l-footer-sns a img {
  transition: 0.3s ease-in-out;
}
.l-footer-sns a:hover img {
  opacity: 0.5;
}

.l-footer-copyright {
  font-size: 0.7777777778rem;
}
@media screen and (min-width: 768px) {
  .l-footer-copyright {
    font-size: calc(14px + 2 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .l-footer-copyright {
    font-size: 0.8888888889rem;
  }
}
@media only screen and (max-width: 767px) {
  .l-footer-copyright {
    margin-top: 32px;
  }
}

/* --------------------------------
l-page
----------------------------------- */
.l-page {
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 6.2777777778rem;
}
@media screen and (min-width: 768px) {
  .l-page {
    padding-top: calc(113px + 204 * (100vw - 768px) / 1152);
  }
}
@media screen and (min-width: 1920px) {
  .l-page {
    padding-top: 17.6111111111rem;
  }
}

.l-page-title {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding-bottom: 1.3333333333rem;
}
@media screen and (min-width: 768px) {
  .l-page-title {
    padding-bottom: calc(24px + 36 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .l-page-title {
    padding-bottom: 3.3333333333rem;
  }
}
.l-page-title .c-breadcrumb {
  position: absolute;
  top: 0;
  right: 0;
}
@media only screen and (max-width: 767px) {
  .l-page-title .c-breadcrumb {
    position: static;
    margin-bottom: 80px;
  }
}
.l-page-title .c-title {
  padding-bottom: 0;
}
.l-page-title .c-title--long {
  font-size: 2.2222222222rem;
}
@media screen and (min-width: 390px) {
  .l-page-title .c-title--long {
    font-size: calc(40px + 60 * (100vw - 390px) / 1010);
  }
}
@media screen and (min-width: 1400px) {
  .l-page-title .c-title--long {
    font-size: 5.5555555556rem;
  }
}

.l-page-description {
  width: 800px;
  max-width: 100%;
  line-height: 1.875;
  margin-top: 24px;
}
.l-page-description h2 {
  font-size: 1.3333333333rem;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .l-page-description h2 {
    font-size: calc(24px + 18 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .l-page-description h2 {
    font-size: 2.3333333333rem;
  }
}
.l-page-description p + p {
  margin-top: 1.875em;
}

.l-page-thumbnail {
  margin-top: 24px;
}
.l-page-thumbnail img {
  border-radius: 4px;
}

.l-page-img {
  padding-top: 0.8888888889rem;
}
@media screen and (min-width: 768px) {
  .l-page-img {
    padding-top: calc(16px + 44 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .l-page-img {
    padding-top: 3.3333333333rem;
  }
}
.l-page-img img {
  border-radius: 4px;
}

/* --------------------------------
l-single
----------------------------------- */
.l-single {
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 6.2777777778rem;
}
@media screen and (min-width: 768px) {
  .l-single {
    padding-top: calc(113px + 204 * (100vw - 768px) / 1152);
  }
}
@media screen and (min-width: 1920px) {
  .l-single {
    padding-top: 17.6111111111rem;
  }
}
.l-single .l-page-title .c-title {
  padding-bottom: 0.8888888889rem;
}
@media screen and (min-width: 768px) {
  .l-single .l-page-title .c-title {
    padding-bottom: calc(16px + 44 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .l-single .l-page-title .c-title {
    padding-bottom: 3.3333333333rem;
  }
}

.l-single-date {
  font-size: 0.8888888889rem;
  color: #314DEA;
  font-weight: 600;
  font-family: "Montserrat", serif;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .l-single-date {
    font-size: calc(16px + 8 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .l-single-date {
    font-size: 1.3333333333rem;
  }
}

h1.l-single-title {
  margin-top: 0.8888888889rem;
  margin-bottom: 2.2222222222rem;
}
@media screen and (min-width: 768px) {
  h1.l-single-title {
    margin-top: calc(16px + 7 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  h1.l-single-title {
    margin-top: 1.2777777778rem;
  }
}
@media screen and (min-width: 768px) {
  h1.l-single-title {
    margin-bottom: calc(40px + 20 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  h1.l-single-title {
    margin-bottom: 3.3333333333rem;
  }
}

/* --------------------------------
l-archive
----------------------------------- */
.l-archive {
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 6.2777777778rem;
}
@media screen and (min-width: 768px) {
  .l-archive {
    padding-top: calc(113px + 204 * (100vw - 768px) / 1152);
  }
}
@media screen and (min-width: 1920px) {
  .l-archive {
    padding-top: 17.6111111111rem;
  }
}
.l-archive .l-page-title .c-title {
  padding-bottom: 0.8888888889rem;
}
@media screen and (min-width: 768px) {
  .l-archive .l-page-title .c-title {
    padding-bottom: calc(16px + 44 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .l-archive .l-page-title .c-title {
    padding-bottom: 3.3333333333rem;
  }
}

/* --------------------------------
l-section
----------------------------------- */
.l-section {
  padding-top: 4.4444444444rem;
}
@media screen and (min-width: 768px) {
  .l-section {
    padding-top: calc(80px + 120 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .l-section {
    padding-top: 11.1111111111rem;
  }
}
.l-section + .c-border {
  margin-top: 3.3333333333rem;
}
@media screen and (min-width: 768px) {
  .l-section + .c-border {
    margin-top: calc(60px + 38 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .l-section + .c-border {
    margin-top: 5.4444444444rem;
  }
}
.l-section + .c-border + .l-section {
  padding-top: 3.3333333333rem;
}
@media screen and (min-width: 768px) {
  .l-section + .c-border + .l-section {
    padding-top: calc(60px + 38 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .l-section + .c-border + .l-section {
    padding-top: 5.4444444444rem;
  }
}

.l-section-content + .l-section-content, .c-title-2 + .l-section-content {
  padding-top: 2.2222222222rem;
}
@media screen and (min-width: 768px) {
  .l-section-content + .l-section-content, .c-title-2 + .l-section-content {
    padding-top: calc(40px + 20 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .l-section-content + .l-section-content, .c-title-2 + .l-section-content {
    padding-top: 3.3333333333rem;
  }
}

.l-section-content-text h3 {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.3333333333rem;
  line-height: 1.875;
}
@media screen and (min-width: 768px) {
  .l-section-content-text h3 {
    font-size: calc(24px + 18 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .l-section-content-text h3 {
    font-size: 2.3333333333rem;
  }
}
.l-section-content-text h3 + p {
  margin-top: 1.3333333333rem;
}
@media screen and (min-width: 768px) {
  .l-section-content-text h3 + p {
    margin-top: calc(24px + 36 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .l-section-content-text h3 + p {
    margin-top: 3.3333333333rem;
  }
}
@media only screen and (max-width: 499px) {
  .l-section-content-text h3 br {
    display: none;
  }
}
.l-section-content-text p {
  width: 800px;
  max-width: 100%;
  line-height: 1.875;
}

.l-section-content-table table {
  margin: 0;
  width: 100%;
}
.l-section-content-table table thead tr th {
  background-color: #292D36;
}
.l-section-content-table table tbody tr {
  border-bottom: 1px solid #797979;
}
.l-section-content-table table tr th, .l-section-content-table table tr td {
  line-height: 2;
  text-align: left;
  font-weight: bold;
  padding-left: 0.6666666667rem;
  padding-right: 0.6666666667rem;
  padding-top: 0.9444444444rem;
  padding-bottom: 0.9444444444rem;
}
@media screen and (min-width: 768px) {
  .l-section-content-table table tr th, .l-section-content-table table tr td {
    padding-left: calc(12px + 28 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .l-section-content-table table tr th, .l-section-content-table table tr td {
    padding-left: 2.2222222222rem;
  }
}
@media screen and (min-width: 768px) {
  .l-section-content-table table tr th, .l-section-content-table table tr td {
    padding-right: calc(12px + 28 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .l-section-content-table table tr th, .l-section-content-table table tr td {
    padding-right: 2.2222222222rem;
  }
}
@media screen and (min-width: 768px) {
  .l-section-content-table table tr th, .l-section-content-table table tr td {
    padding-top: calc(17px + 5 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .l-section-content-table table tr th, .l-section-content-table table tr td {
    padding-top: 1.2222222222rem;
  }
}
@media screen and (min-width: 768px) {
  .l-section-content-table table tr th, .l-section-content-table table tr td {
    padding-bottom: calc(17px + 5 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .l-section-content-table table tr th, .l-section-content-table table tr td {
    padding-bottom: 1.2222222222rem;
  }
}
@media only screen and (max-width: 767px) {
  .l-section-content-table table tr th, .l-section-content-table table tr td {
    display: block;
  }
}
.l-section-content-table table tr th {
  background-color: #33353A;
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  .l-section-content-table table tr th {
    white-space: inherit;
  }
}

/* -----------------------------------------------
* component エントリーポイント
-------------------------------------------------- */
/* --------------------------------
c-hamburger
----------------------------------- */
.c-hamburger {
  display: none;
  position: relative;
  z-index: 120;
  width: 30px;
  height: 21px;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
  padding: 0;
  margin: 0;
}
@media only screen and (max-width: 1199px) {
  .c-hamburger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
  }
}

.c-hamburger__line {
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background-color: #F8F8F8;
}

.c-hamburger[aria-expanded=true] .c-hamburger__line {
  position: absolute;
}
.c-hamburger[aria-expanded=true] .c-hamburger__line:nth-of-type(1) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.c-hamburger[aria-expanded=true] .c-hamburger__line:nth-of-type(2) {
  opacity: 0;
}
.c-hamburger[aria-expanded=true] .c-hamburger__line:nth-of-type(3) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

@media only screen and (max-width: 1199px) {
  #drawer {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 110;
    width: 100vw;
    height: 100vh;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow-y: auto;
    background: transparent linear-gradient(157deg, #233ED5 0%, #5B30BC 100%) 0% 0% no-repeat padding-box;
    transition: 0.1s ease-in-out;
    padding: 116px 24px;
  }
}

@media only screen and (max-width: 1199px) {
  .c-hamburger-nav {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
  }
}
.c-hamburger-nav ul.c-hamburger-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  line-height: 1;
  font-size: 0.8333333333rem;
  font-weight: bold;
}
@media screen and (min-width: 1200px) {
  .c-hamburger-nav ul.c-hamburger-menu {
    font-size: calc(15px + 3 * (100vw - 1200px) / 720);
  }
}
@media screen and (min-width: 1920px) {
  .c-hamburger-nav ul.c-hamburger-menu {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 1199px) {
  .c-hamburger-nav ul.c-hamburger-menu {
    flex-direction: column;
    font-size: 1rem;
  }
}
.c-hamburger-nav ul.c-hamburger-menu a {
  display: inline-block;
  color: #F8F8F8;
}
.c-hamburger-nav ul.c-hamburger-menu > li {
  position: relative;
}
.c-hamburger-nav ul.c-hamburger-menu > li.contact {
  margin-left: 2.2222222222rem;
}
@media screen and (min-width: 1200px) {
  .c-hamburger-nav ul.c-hamburger-menu > li.contact {
    margin-left: calc(40px + 40 * (100vw - 1200px) / 720);
  }
}
@media screen and (min-width: 1920px) {
  .c-hamburger-nav ul.c-hamburger-menu > li.contact {
    margin-left: 4.4444444444rem;
  }
}
@media only screen and (max-width: 1199px) {
  .c-hamburger-nav ul.c-hamburger-menu > li.contact {
    margin-left: 0;
    margin-top: 44px;
    order: 1;
  }
  .c-hamburger-nav ul.c-hamburger-menu > li.contact > a {
    display: block;
    text-align: center;
    background-color: #212121;
    padding: 19px;
    border-radius: 4px;
  }
}
.c-hamburger-nav ul.c-hamburger-menu > li + li {
  margin-left: 1.1111111111rem;
}
@media screen and (min-width: 1200px) {
  .c-hamburger-nav ul.c-hamburger-menu > li + li {
    margin-left: calc(20px + 20 * (100vw - 1200px) / 720);
  }
}
@media screen and (min-width: 1920px) {
  .c-hamburger-nav ul.c-hamburger-menu > li + li {
    margin-left: 2.2222222222rem;
  }
}
@media only screen and (max-width: 1199px) {
  .c-hamburger-nav ul.c-hamburger-menu > li + li {
    margin-left: 0;
    margin-top: 32px;
  }
}
.c-hamburger-nav ul.c-hamburger-menu > li:hover ul.sub-menu {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}
.c-hamburger-nav ul.c-hamburger-menu ul.sub-menu {
  list-style: none;
  margin: 0;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s 0.5s ease-in-out;
  position: absolute;
  top: calc(50% + 20px);
  left: 0;
  background-color: #32353B;
  border-radius: 4px;
  margin-top: 1.7777777778rem;
  min-width: 230px;
}
@media screen and (min-width: 1200px) {
  .c-hamburger-nav ul.c-hamburger-menu ul.sub-menu {
    margin-top: calc(32px + 18 * (100vw - 1200px) / 720);
  }
}
@media screen and (min-width: 1920px) {
  .c-hamburger-nav ul.c-hamburger-menu ul.sub-menu {
    margin-top: 2.7777777778rem;
  }
}
@media only screen and (max-width: 1199px) {
  .c-hamburger-nav ul.c-hamburger-menu ul.sub-menu {
    opacity: 1;
    visibility: visible;
    transition: none;
    min-width: 0;
    position: static;
    background-color: rgba(50, 53, 59, 0);
    font-size: 0.8888888889rem;
    padding: 0;
    margin-top: 0;
    margin-left: 1em;
  }
}
@media only screen and (max-width: 1199px) {
  .c-hamburger-nav ul.c-hamburger-menu ul.sub-menu > li {
    margin-top: 1.5em !important;
  }
}
@media only screen and (max-width: 1199px) {
  .c-hamburger-nav ul.c-hamburger-menu ul.sub-menu > li > a:before {
    content: "-";
    margin-right: 0.5em;
  }
}
.c-hamburger-nav ul.c-hamburger-menu ul.sub-menu > li + li {
  margin-top: 20px;
}

.is-drawerActive #drawer {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* --------------------------------
c-more-btn
----------------------------------- */
.c-more-btn {
  display: flex;
  align-items: center;
  min-height: 34px;
  color: inherit;
  font-weight: bold;
}
.c-more-btn .c-arrow {
  margin-left: 24px;
  width: 34px;
  height: 34px;
  display: inline-block;
  border: 1px solid #F8F8F8;
  border-radius: 999px;
  flex: 0 0 34px;
}
.c-more-btn .c-arrow:before, .c-more-btn .c-arrow:after {
  transition: 0.2s ease-in-out;
}
.c-more-btn .c-arrow.c-arrow--blue {
  width: 120px;
  height: 120px;
  border: 2px solid #314DEA;
  flex: 0 0 120px;
  margin-left: 0;
  margin-right: 24px;
}
.c-more-btn:hover .c-arrow:before {
  transform: translateX(100%);
  opacity: 0;
}
.c-more-btn:hover .c-arrow:after {
  transform: translateX(0);
  opacity: 1;
}
.c-more-btn:hover .c-arrow--left:before {
  transform: translateX(-100%);
}
.c-more-btn:hover .c-arrow--down:before {
  transform: translateY(100%);
}
.c-more-btn:hover .c-arrow--download:before {
  transform: translateY(100%);
}

.c-arrow {
  height: 34px;
  width: 34px;
  position: relative;
  overflow: hidden;
}
.c-arrow:before, .c-arrow:after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  font-size: 12px;
  position: absolute;
  top: calc(50% - 6px);
  right: calc(50% - 6px);
  background-image: url("../images/common/arrow-right.png");
  background-size: contain;
}
.c-arrow:before {
  opacity: 1;
}
.c-arrow:after {
  transform: translateX(-100%);
  opacity: 0;
}
.c-arrow.c-arrow--left:before, .c-arrow.c-arrow--left:after {
  background-image: url("../images/common/arrow-left.png");
}
.c-arrow.c-arrow--left:after {
  transform: translateX(100%);
}
.c-arrow.c-arrow--left.c-arrow--blue:before, .c-arrow.c-arrow--left.c-arrow--blue:after {
  background-image: url("../images/common/arrow-left-blue.png");
}
.c-arrow.c-arrow--blue:before, .c-arrow.c-arrow--blue:after {
  width: 20px;
  height: 20px;
  font-size: 20px;
  background-image: url("../images/common/arrow-right-blue.png");
  top: calc(50% - 10px);
  right: calc(50% - 10px);
}
.c-arrow.c-arrow--down.c-arrow--blue:before, .c-arrow.c-arrow--down.c-arrow--blue:after {
  background-image: url("../images/common/arrow-down-blue.png");
}
.c-arrow.c-arrow--down:after {
  transform: translateY(-100%);
}
.c-arrow.c-arrow--download:before, .c-arrow.c-arrow--download:after {
  width: 16px;
  height: 16px;
  font-size: 16px;
  background-image: url("../images/common/arrow-download.png");
  top: calc(50% - 8px);
  right: calc(50% - 8px);
}
.c-arrow.c-arrow--download:after {
  transform: translateY(-100%);
}

.c-more-btn-wrapper {
  display: inline-block;
}

/* --------------------------------
c-border
----------------------------------- */
.c-border {
  width: 100%;
  height: 4px;
  background-color: #32353B;
  position: relative;
}
.c-border:before {
  content: "";
  display: inline-block;
  width: 100px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: transparent linear-gradient(96deg, #233ED5 0%, #5B30BC 100%) 0% 0% no-repeat padding-box;
}

/* --------------------------------
c-title
----------------------------------- */
*.c-title {
  color: #314DEA;
  font-size: 2.7777777778rem;
  font-weight: 600;
  font-family: "Montserrat", serif;
  line-height: 1.22;
  padding-bottom: 24px;
}
@media screen and (min-width: 768px) {
  *.c-title {
    font-size: calc(50px + 50 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  *.c-title {
    font-size: 5.5555555556rem;
  }
}
*.c-title--long {
  font-size: 1.7777777778rem;
  line-height: 1;
}
@media screen and (min-width: 390px) {
  *.c-title--long {
    font-size: calc(32px + 68 * (100vw - 390px) / 1010);
  }
}
@media screen and (min-width: 1400px) {
  *.c-title--long {
    font-size: 5.5555555556rem;
  }
}
@media only screen and (max-width: 767px) {
  *.c-title--long {
    line-height: 1.22;
  }
}
*.c-title .c-title-sub {
  display: block;
  font-size: 0.8888888889rem;
  color: #F8F8F8;
  font-family: "Zen Kaku Gothic New", serif;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 0.8888888889rem;
}
@media screen and (min-width: 768px) {
  *.c-title .c-title-sub {
    font-size: calc(16px + 2 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  *.c-title .c-title-sub {
    font-size: 1rem;
  }
}
@media screen and (min-width: 768px) {
  *.c-title .c-title-sub {
    margin-bottom: calc(16px + 8 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  *.c-title .c-title-sub {
    margin-bottom: 1.3333333333rem;
  }
}

*.c-title-2 {
  line-height: 1.5;
  font-size: 1.5555555556rem;
  font-weight: 900;
  color: #314DEA;
}
@media screen and (min-width: 768px) {
  *.c-title-2 {
    font-size: calc(28px + 14 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  *.c-title-2 {
    font-size: 2.3333333333rem;
  }
}
*.c-title-2 .c-title-sub {
  display: block;
  line-height: 1.22;
  font-size: 0.8888888889rem;
  color: #F8F8F8;
  font-family: "Montserrat", serif;
  font-weight: 600;
  margin-bottom: 0.4444444444rem;
}
@media screen and (min-width: 768px) {
  *.c-title-2 .c-title-sub {
    font-size: calc(16px + 2 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  *.c-title-2 .c-title-sub {
    font-size: 1rem;
  }
}
@media screen and (min-width: 768px) {
  *.c-title-2 .c-title-sub {
    margin-bottom: calc(8px + 4 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  *.c-title-2 .c-title-sub {
    margin-bottom: 0.6666666667rem;
  }
}

/* --------------------------------
c-breadcrumb
----------------------------------- */
.c-breadcrumb ol.c-breadcrumb__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.c-breadcrumb ol.c-breadcrumb__list li.c-breadcrumb__item + li.c-breadcrumb__item {
  padding-left: 1em;
  position: relative;
}
.c-breadcrumb ol.c-breadcrumb__list li.c-breadcrumb__item + li.c-breadcrumb__item:before {
  content: "-";
  position: absolute;
  top: 0;
  left: 0;
  width: 1em;
  height: 100%;
  text-align: center;
  font-weight: bold;
}
.c-breadcrumb ol.c-breadcrumb__list li.c-breadcrumb__item a {
  color: inherit;
  font-weight: bold;
}
.c-breadcrumb ol.c-breadcrumb__list li.c-breadcrumb__item a:hover span {
  text-decoration: underline;
}
.c-breadcrumb ol.c-breadcrumb__list li.c-breadcrumb__item span {
  display: inline-block;
}

/* --------------------------------
c-post-list
----------------------------------- */
ol.c-post-list, ul.c-post-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #707070;
}
ol.c-post-list > li, ul.c-post-list > li {
  border-bottom: 1px solid #707070;
}
ol.c-post-list > li a, ul.c-post-list > li a {
  display: flex;
  flex-wrap: wrap;
  color: inherit;
  padding-top: 1.3333333333rem;
  padding-bottom: 1.3333333333rem;
}
@media screen and (min-width: 768px) {
  ol.c-post-list > li a, ul.c-post-list > li a {
    padding-top: calc(24px + 16 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  ol.c-post-list > li a, ul.c-post-list > li a {
    padding-top: 2.2222222222rem;
  }
}
@media screen and (min-width: 768px) {
  ol.c-post-list > li a, ul.c-post-list > li a {
    padding-bottom: calc(24px + 16 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  ol.c-post-list > li a, ul.c-post-list > li a {
    padding-bottom: 2.2222222222rem;
  }
}
ol.c-post-list > li a:hover .c-post-list__title, ul.c-post-list > li a:hover .c-post-list__title {
  text-decoration: underline;
}
ol.c-post-list > li a .c-post-list__date, ul.c-post-list > li a .c-post-list__date {
  font-family: "Montserrat", serif;
  color: #314DEA;
  margin-right: 24px;
}
@media only screen and (max-width: 767px) {
  ol.c-post-list > li a .c-post-list__date, ul.c-post-list > li a .c-post-list__date {
    font-weight: 600;
    margin-bottom: 1em;
  }
}
ol.c-post-list > li a .c-post-list__title, ul.c-post-list > li a .c-post-list__title {
  flex: 1;
}
@media only screen and (max-width: 767px) {
  ol.c-post-list > li a .c-post-list__title, ul.c-post-list > li a .c-post-list__title {
    flex: none;
    width: 100%;
    font-weight: bold;
  }
}

/* --------------------------------
c-pagination
----------------------------------- */
.c-pagination {
  padding-top: 48px;
}

.c-pagination-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.c-pagination__num {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.c-pagination__item a, .c-pagination__item span {
  display: inline-block;
  color: inherit;
  font-size: 1.3333333333rem;
  font-weight: 600;
  font-family: "Montserrat", serif;
  transition: 0.2s ease-in-out;
  line-height: 1;
  padding-right: 0.8333333333rem;
  padding-left: 0.8333333333rem;
}
@media screen and (min-width: 390px) {
  .c-pagination__item a, .c-pagination__item span {
    padding-right: calc(15px + 5 * (100vw - 390px) / 110);
  }
}
@media screen and (min-width: 500px) {
  .c-pagination__item a, .c-pagination__item span {
    padding-right: 1.1111111111rem;
  }
}
@media screen and (min-width: 390px) {
  .c-pagination__item a, .c-pagination__item span {
    padding-left: calc(15px + 5 * (100vw - 390px) / 110);
  }
}
@media screen and (min-width: 500px) {
  .c-pagination__item a, .c-pagination__item span {
    padding-left: 1.1111111111rem;
  }
}
.c-pagination__item a.dots, .c-pagination__item span.dots {
  pointer-events: none;
  padding: 0;
  margin: 0 -10px;
}
.c-pagination__item a.current, .c-pagination__item a:hover, .c-pagination__item span.current, .c-pagination__item span:hover {
  color: #314DEA;
  text-decoration: underline;
}

.c-pagination__prev, .c-pagination__next {
  height: 34px;
  width: 34px;
}
.c-pagination__prev > a, .c-pagination__prev > span, .c-pagination__next > a, .c-pagination__next > span {
  display: inline-block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  border: 1px solid #F8F8F8;
}
.c-pagination__prev > a:before, .c-pagination__prev > a:after, .c-pagination__prev > span:before, .c-pagination__prev > span:after, .c-pagination__next > a:before, .c-pagination__next > a:after, .c-pagination__next > span:before, .c-pagination__next > span:after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  font-size: 12px;
  position: absolute;
  top: calc(50% - 6px);
  right: calc(50% - 6px);
  background-size: contain;
  transition: 0.2s ease-in-out;
}
.c-pagination__prev > a:before, .c-pagination__prev > span:before, .c-pagination__next > a:before, .c-pagination__next > span:before {
  opacity: 1;
}
.c-pagination__prev > a:after, .c-pagination__prev > span:after, .c-pagination__next > a:after, .c-pagination__next > span:after {
  opacity: 0;
}
.c-pagination__prev > a:hover:before, .c-pagination__next > a:hover:before {
  opacity: 0;
}
.c-pagination__prev > a:hover:after, .c-pagination__next > a:hover:after {
  transform: translateX(0);
  opacity: 1;
}

.c-pagination__prev {
  margin-right: 0.8333333333rem;
}
@media screen and (min-width: 390px) {
  .c-pagination__prev {
    margin-right: calc(15px + 5 * (100vw - 390px) / 110);
  }
}
@media screen and (min-width: 500px) {
  .c-pagination__prev {
    margin-right: 1.1111111111rem;
  }
}
.c-pagination__prev > a:before, .c-pagination__prev > a:after, .c-pagination__prev > span:before, .c-pagination__prev > span:after {
  background-image: url("../images/common/arrow-left.png");
}
.c-pagination__prev > a:after, .c-pagination__prev > span:after {
  transform: translateX(100%);
}
.c-pagination__prev > a:hover:before {
  transform: translateX(-100%);
}

.c-pagination__next {
  margin-left: 0.8333333333rem;
}
@media screen and (min-width: 390px) {
  .c-pagination__next {
    margin-left: calc(15px + 5 * (100vw - 390px) / 110);
  }
}
@media screen and (min-width: 500px) {
  .c-pagination__next {
    margin-left: 1.1111111111rem;
  }
}
.c-pagination__next > a:before, .c-pagination__next > a:after, .c-pagination__next > span:before, .c-pagination__next > span:after {
  background-image: url("../images/common/arrow-right.png");
}
.c-pagination__next > a:after, .c-pagination__next > span:after {
  transform: translateX(-100%);
}
.c-pagination__next > a:hover:before {
  transform: translateX(100%);
}

/* --------------------------------
c-fill-btn
----------------------------------- */
.c-fill-btn > a, .c-fill-btn > input, .c-fill-btn > button, div.wpcf7cp-btns > a, div.wpcf7cp-btns > input, div.wpcf7cp-btns > button {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 74px;
  width: 210px;
  max-width: 100%;
  border-radius: 4px;
  border: none;
  background-color: #314DEA;
  color: #F8F8F8;
  font-weight: bold;
  font-size: 0.8888888889rem;
  text-decoration: none;
  transition: 0.2s ease-in-out;
}
@media screen and (min-width: 768px) {
  .c-fill-btn > a, .c-fill-btn > input, .c-fill-btn > button, div.wpcf7cp-btns > a, div.wpcf7cp-btns > input, div.wpcf7cp-btns > button {
    font-size: calc(16px + 2 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .c-fill-btn > a, .c-fill-btn > input, .c-fill-btn > button, div.wpcf7cp-btns > a, div.wpcf7cp-btns > input, div.wpcf7cp-btns > button {
    font-size: 1rem;
  }
}
.c-fill-btn > a:hover, .c-fill-btn > input:hover, .c-fill-btn > button:hover, div.wpcf7cp-btns > a:hover, div.wpcf7cp-btns > input:hover, div.wpcf7cp-btns > button:hover {
  opacity: 0.8;
}

.c-fill-btn--gray > a, .c-fill-btn--gray > input, .c-fill-btn--gray > button {
  background-color: #797979;
}

div.wpcf7cp-btns {
  display: flex;
  justify-content: center;
  margin-top: 2.2222222222rem;
}
@media screen and (min-width: 768px) {
  div.wpcf7cp-btns {
    margin-top: calc(40px + 20 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  div.wpcf7cp-btns {
    margin-top: 3.3333333333rem;
  }
}
div.wpcf7cp-btns > button {
  margin: 0;
  width: 7.7777777778rem;
}
@media screen and (min-width: 768px) {
  div.wpcf7cp-btns > button {
    width: calc(140px + 70 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  div.wpcf7cp-btns > button {
    width: 11.6666666667rem;
  }
}
div.wpcf7cp-btns > button.wpcf7cp-cfm-edit-btn {
  background-color: #797979;
  margin-right: 0.8888888889rem;
}
@media screen and (min-width: 768px) {
  div.wpcf7cp-btns > button.wpcf7cp-cfm-edit-btn {
    margin-right: calc(16px + 8 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  div.wpcf7cp-btns > button.wpcf7cp-cfm-edit-btn {
    margin-right: 1.3333333333rem;
  }
}

/* --------------------------------
c-anchor
----------------------------------- */
.c-anchor {
  position: fixed;
  left: 0.8888888889rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
@media screen and (min-width: 1700px) {
  .c-anchor {
    left: calc(16px + 34 * (100vw - 1700px) / 220);
  }
}
@media screen and (min-width: 1920px) {
  .c-anchor {
    left: 2.7777777778rem;
  }
}
@media only screen and (max-width: 1649px) {
  .c-anchor {
    display: none;
  }
}
.c-anchor ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.c-anchor ul li {
  padding-left: 18px;
  position: relative;
}
.c-anchor ul li + li {
  margin-top: 1em;
}
.c-anchor ul li:before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 6px;
  background: transparent linear-gradient(131deg, #233ED5 0%, #5B30BC 100%) 0% 0% no-repeat padding-box;
  position: absolute;
  top: calc(50% - 6px);
  left: 0;
}

/* --------------------------------
c-link-bnr
----------------------------------- */
.c-link-bnr-list {
  margin-top: 4.4444444444rem;
}
@media screen and (min-width: 768px) {
  .c-link-bnr-list {
    margin-top: calc(80px + 120 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .c-link-bnr-list {
    margin-top: 11.1111111111rem;
  }
}

.c-link-bnr {
  background-color: #32353B;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  width: 100%;
}
.c-link-bnr + .c-link-bnr {
  margin-top: 1.3333333333rem;
}
@media screen and (min-width: 768px) {
  .c-link-bnr + .c-link-bnr {
    margin-top: calc(24px + 36 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .c-link-bnr + .c-link-bnr {
    margin-top: 3.3333333333rem;
  }
}
@media only screen and (max-width: 767px) {
  .c-link-bnr {
    flex-direction: column;
    padding: 11px 11px 0;
    max-width: 599px;
    margin-left: auto;
    margin-right: auto;
  }
}

.c-link-bnr__img {
  display: block;
  width: 42%;
  max-width: 577px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .c-link-bnr__img {
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
  }
}
.c-link-bnr__img:before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 48.7001733102%;
}
@media only screen and (max-width: 767px) {
  .c-link-bnr__img:before {
    min-height: 262px;
  }
}
.c-link-bnr__img img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}

.c-link-bnr__text {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-right: 1.3333333333rem;
  padding-left: 1.3333333333rem;
  flex: 1;
}
@media screen and (min-width: 992px) {
  .c-link-bnr__text {
    padding-right: calc(24px + 36 * (100vw - 992px) / 408);
  }
}
@media screen and (min-width: 1400px) {
  .c-link-bnr__text {
    padding-right: 3.3333333333rem;
  }
}
@media screen and (min-width: 992px) {
  .c-link-bnr__text {
    padding-left: calc(24px + 36 * (100vw - 992px) / 408);
  }
}
@media screen and (min-width: 1400px) {
  .c-link-bnr__text {
    padding-left: 3.3333333333rem;
  }
}
@media only screen and (max-width: 767px) {
  .c-link-bnr__text {
    padding: 24px 0;
  }
}

.c-link-bnr__title {
  font-size: 1rem;
  font-weight: 900;
}
@media screen and (min-width: 992px) {
  .c-link-bnr__title {
    font-size: calc(18px + 6 * (100vw - 992px) / 408);
  }
}
@media screen and (min-width: 1400px) {
  .c-link-bnr__title {
    font-size: 1.3333333333rem;
  }
}
.c-link-bnr__title + .c-link-bnr__description {
  margin-top: 0.8888888889rem;
}
@media screen and (min-width: 992px) {
  .c-link-bnr__title + .c-link-bnr__description {
    margin-top: calc(16px + 14 * (100vw - 992px) / 408);
  }
}
@media screen and (min-width: 1400px) {
  .c-link-bnr__title + .c-link-bnr__description {
    margin-top: 1.6666666667rem;
  }
}

.c-link-bnr__description {
  line-height: 1.875;
  font-weight: 500;
  font-size: 0.8888888889rem;
}
@media screen and (min-width: 992px) {
  .c-link-bnr__description {
    font-size: calc(16px + 2 * (100vw - 992px) / 408);
  }
}
@media screen and (min-width: 1400px) {
  .c-link-bnr__description {
    font-size: 1rem;
  }
}

.c-link-bnr__arrow {
  padding-top: 1.3333333333rem;
  padding-bottom: 1.3333333333rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 992px) {
  .c-link-bnr__arrow {
    padding-top: calc(24px + 16 * (100vw - 992px) / 408);
  }
}
@media screen and (min-width: 1400px) {
  .c-link-bnr__arrow {
    padding-top: 2.2222222222rem;
  }
}
@media screen and (min-width: 992px) {
  .c-link-bnr__arrow {
    padding-bottom: calc(24px + 16 * (100vw - 992px) / 408);
  }
}
@media screen and (min-width: 1400px) {
  .c-link-bnr__arrow {
    padding-bottom: 2.2222222222rem;
  }
}
@media only screen and (max-width: 767px) {
  .c-link-bnr__arrow {
    padding: 0;
    width: 100%;
  }
}
.c-link-bnr__arrow > a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding-top: 1.3333333333rem;
  padding-bottom: 1.3333333333rem;
  padding-right: 1.3333333333rem;
  padding-left: 1.3333333333rem;
  border-left: 1px solid #F8F8F8;
}
@media screen and (min-width: 992px) {
  .c-link-bnr__arrow > a {
    padding-top: calc(24px + 59 * (100vw - 992px) / 408);
  }
}
@media screen and (min-width: 1400px) {
  .c-link-bnr__arrow > a {
    padding-top: 4.6111111111rem;
  }
}
@media screen and (min-width: 992px) {
  .c-link-bnr__arrow > a {
    padding-bottom: calc(24px + 59 * (100vw - 992px) / 408);
  }
}
@media screen and (min-width: 1400px) {
  .c-link-bnr__arrow > a {
    padding-bottom: 4.6111111111rem;
  }
}
@media screen and (min-width: 992px) {
  .c-link-bnr__arrow > a {
    padding-right: calc(24px + 36 * (100vw - 992px) / 408);
  }
}
@media screen and (min-width: 1400px) {
  .c-link-bnr__arrow > a {
    padding-right: 3.3333333333rem;
  }
}
@media screen and (min-width: 992px) {
  .c-link-bnr__arrow > a {
    padding-left: calc(24px + 36 * (100vw - 992px) / 408);
  }
}
@media screen and (min-width: 1400px) {
  .c-link-bnr__arrow > a {
    padding-left: 3.3333333333rem;
  }
}
@media only screen and (max-width: 767px) {
  .c-link-bnr__arrow > a {
    border-left: none;
    border-top: 1px solid #F8F8F8;
    width: 100%;
  }
  .c-link-bnr__arrow > a:before {
    content: "オンラインショップへ";
  }
}
@media only screen and (max-width: 767px) {
  .c-link-bnr__arrow > a.c-link-bnr--blank:before {
    content: "外部サイトへ";
  }
}
.c-link-bnr__arrow .c-arrow {
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .c-link-bnr__arrow .c-arrow {
    margin-left: 20px;
  }
}

.c-link-bnr--fill {
  background-color: #314DEA;
}
@media only screen and (max-width: 767px) {
  .c-link-bnr--fill {
    padding-top: 36px;
  }
}
.c-link-bnr--fill .c-link-bnr__title {
  line-height: 1.875;
}
.c-link-bnr--fill .c-link-bnr__arrow > a {
  padding-top: 1.3333333333rem;
  padding-bottom: 1.3333333333rem;
}
@media screen and (min-width: 992px) {
  .c-link-bnr--fill .c-link-bnr__arrow > a {
    padding-top: calc(24px + 19 * (100vw - 992px) / 408);
  }
}
@media screen and (min-width: 1400px) {
  .c-link-bnr--fill .c-link-bnr__arrow > a {
    padding-top: 2.3888888889rem;
  }
}
@media screen and (min-width: 992px) {
  .c-link-bnr--fill .c-link-bnr__arrow > a {
    padding-bottom: calc(24px + 19 * (100vw - 992px) / 408);
  }
}
@media screen and (min-width: 1400px) {
  .c-link-bnr--fill .c-link-bnr__arrow > a {
    padding-bottom: 2.3888888889rem;
  }
}
@media only screen and (max-width: 767px) {
  .c-link-bnr--fill .c-link-bnr__arrow > a:before {
    content: "お問い合わせへ";
  }
}

/* -----------------------------------------------
* Page エントリーポイント
-------------------------------------------------- */
/* --------------------------------
p-top
----------------------------------- */
.p-top-main {
  width: 100vw;
  position: relative;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .p-top-main {
    height: 100vh;
  }
}
.p-top-main:before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 56.25%;
}

.p-top-main-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-top-main-slider .swiper {
  width: 100%;
  height: 100%;
}
.p-top-main-slider .swiper .swiper-wrapper {
  width: 100%;
  height: 100%;
}
.p-top-main-slider .swiper .swiper-wrapper .image {
  width: 100%;
  height: 100%;
  position: relative;
}
.p-top-main-slider .swiper .swiper-wrapper .image:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(33, 33, 33, 0.3);
}
.p-top-main-slider .swiper .swiper-wrapper .image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.p-top-main-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding-bottom: 1.6666666667rem;
  padding-left: 1.1111111111rem;
  padding-right: 1.1111111111rem;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-top-main-text {
    padding-bottom: calc(30px + 94 * (100vw - 768px) / 1152);
  }
}
@media screen and (min-width: 1920px) {
  .p-top-main-text {
    padding-bottom: 6.8888888889rem;
  }
}
@media screen and (min-width: 768px) {
  .p-top-main-text {
    padding-left: calc(20px + 40 * (100vw - 768px) / 1152);
  }
}
@media screen and (min-width: 1920px) {
  .p-top-main-text {
    padding-left: 3.3333333333rem;
  }
}
@media screen and (min-width: 768px) {
  .p-top-main-text {
    padding-right: calc(20px + 40 * (100vw - 768px) / 1152);
  }
}
@media screen and (min-width: 1920px) {
  .p-top-main-text {
    padding-right: 3.3333333333rem;
  }
}
.p-top-main-text h2.p-top-main-catchcopy {
  font-size: 2.2222222222rem;
  font-family: "Montserrat", serif;
  font-weight: 600;
  line-height: 1.11;
  margin-bottom: 0.4444444444rem;
}
@media screen and (min-width: 768px) {
  .p-top-main-text h2.p-top-main-catchcopy {
    font-size: calc(40px + 60 * (100vw - 768px) / 1152);
  }
}
@media screen and (min-width: 1920px) {
  .p-top-main-text h2.p-top-main-catchcopy {
    font-size: 5.5555555556rem;
  }
}
@media screen and (min-width: 768px) {
  .p-top-main-text h2.p-top-main-catchcopy {
    margin-bottom: calc(8px + 16 * (100vw - 768px) / 1152);
  }
}
@media screen and (min-width: 1920px) {
  .p-top-main-text h2.p-top-main-catchcopy {
    margin-bottom: 1.3333333333rem;
  }
}
.p-top-main-text .p-top-main-subcopy {
  font-size: 0.7777777778rem;
}
@media screen and (min-width: 768px) {
  .p-top-main-text .p-top-main-subcopy {
    font-size: calc(14px + 4 * (100vw - 768px) / 1152);
  }
}
@media screen and (min-width: 1920px) {
  .p-top-main-text .p-top-main-subcopy {
    font-size: 1rem;
  }
}

.p-top-main-arrow {
  position: absolute;
  bottom: 1.6666666667rem;
  right: 1.1111111111rem;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-top-main-arrow {
    bottom: calc(30px + 94 * (100vw - 768px) / 1152);
  }
}
@media screen and (min-width: 1920px) {
  .p-top-main-arrow {
    bottom: 6.8888888889rem;
  }
}
@media screen and (min-width: 768px) {
  .p-top-main-arrow {
    right: calc(20px + 110 * (100vw - 768px) / 1152);
  }
}
@media screen and (min-width: 1920px) {
  .p-top-main-arrow {
    right: 7.2222222222rem;
  }
}
@media only screen and (max-width: 499px) {
  .p-top-main-arrow {
    display: none;
  }
}
.p-top-main-arrow .c-arrow {
  width: 13.54vw !important;
  height: 13.54vw !important;
  flex: none !important;
}

#top-content {
  position: absolute;
  left: 0;
  bottom: -4rem;
}
@media screen and (min-width: 768px) {
  #top-content {
    bottom: calc(-72px + -44 * (100vw - 768px) / 1152);
  }
}
@media screen and (min-width: 1920px) {
  #top-content {
    bottom: -6.4444444444rem;
  }
}

.p-top-news {
  padding-top: 4.4444444444rem;
  padding-left: 16px;
  padding-right: 16px;
}
@media screen and (min-width: 768px) {
  .p-top-news {
    padding-top: calc(80px + 120 * (100vw - 768px) / 1152);
  }
}
@media screen and (min-width: 1920px) {
  .p-top-news {
    padding-top: 11.1111111111rem;
  }
}
.p-top-news h2.c-title {
  padding-bottom: 40px;
}

.p-top-news-link {
  text-align: right;
  margin-top: 48px;
}
@media only screen and (max-width: 767px) {
  .p-top-news-link {
    text-align: left;
  }
}

.p-top-company {
  padding-right: 16px;
  padding-left: 16px;
  margin-top: 4.8888888889rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-top-company {
    margin-top: calc(88px + 112 * (100vw - 768px) / 1152);
  }
}
@media screen and (min-width: 1920px) {
  .p-top-company {
    margin-top: 11.1111111111rem;
  }
}
.p-top-company:before {
  content: "";
  display: block;
  width: 26.1111111111rem;
  height: 26.1111111111rem;
  position: absolute;
  top: 5.1111111111rem;
  left: 3.8888888889rem;
  border-radius: 100%;
  opacity: 0.2;
  background: transparent linear-gradient(151deg, #233ED5 0%, #4E306C 25%, #212121 42%, #212121 100%) 0% 0% no-repeat padding-box;
}
@media screen and (min-width: 390px) {
  .p-top-company:before {
    width: calc(470px + 1072 * (100vw - 390px) / 1530);
  }
}
@media screen and (min-width: 1920px) {
  .p-top-company:before {
    width: 85.6666666667rem;
  }
}
@media screen and (min-width: 390px) {
  .p-top-company:before {
    height: calc(470px + 1072 * (100vw - 390px) / 1530);
  }
}
@media screen and (min-width: 1920px) {
  .p-top-company:before {
    height: 85.6666666667rem;
  }
}
@media screen and (min-width: 390px) {
  .p-top-company:before {
    top: calc(92px + -52 * (100vw - 390px) / 1530);
  }
}
@media screen and (min-width: 1920px) {
  .p-top-company:before {
    top: 2.2222222222rem;
  }
}
@media screen and (min-width: 390px) {
  .p-top-company:before {
    left: calc(70px + 642 * (100vw - 390px) / 1530);
  }
}
@media screen and (min-width: 1920px) {
  .p-top-company:before {
    left: 39.5555555556rem;
  }
}
.p-top-company h2.c-title {
  padding-bottom: 2.2222222222rem;
}
@media screen and (min-width: 768px) {
  .p-top-company h2.c-title {
    padding-bottom: calc(40px + 20 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-top-company h2.c-title {
    padding-bottom: 3.3333333333rem;
  }
}
.p-top-company .c-more-btn-wrapper {
  margin-top: 2.2222222222rem;
}
@media screen and (min-width: 768px) {
  .p-top-company .c-more-btn-wrapper {
    margin-top: calc(40px + 20 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-top-company .c-more-btn-wrapper {
    margin-top: 3.3333333333rem;
  }
}

.p-top-company-inner {
  position: relative;
  padding-right: 50%;
  margin-top: 4.4444444444rem;
}
@media screen and (min-width: 768px) {
  .p-top-company-inner {
    margin-top: calc(80px + 96 * (100vw - 768px) / 1152);
  }
}
@media screen and (min-width: 1920px) {
  .p-top-company-inner {
    margin-top: 9.7777777778rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-top-company-inner {
    padding-right: 0;
  }
}

.p-top-company-text {
  font-size: 1rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-top-company-text {
    font-size: calc(18px + 6 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-top-company-text {
    font-size: 1.3333333333rem;
  }
}

.p-top-company-img {
  border-radius: 8px;
  overflow: hidden;
  position: absolute;
  top: 50%;
  right: 0;
  width: calc(50% - 32px);
  max-width: 550px;
  transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .p-top-company-img {
    position: relative;
    top: 0;
    width: 100%;
    margin: 0 auto 40px;
    transform: none;
  }
}
.p-top-company-img:before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 100%;
}
.p-top-company-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.p-top-prototypes {
  padding-left: 16px;
  padding-right: 16px;
  position: relative;
  margin-top: 4.4444444444rem;
}
@media screen and (min-width: 768px) {
  .p-top-prototypes {
    margin-top: calc(80px + 83 * (100vw - 768px) / 1152);
  }
}
@media screen and (min-width: 1920px) {
  .p-top-prototypes {
    margin-top: 9.0555555556rem;
  }
}
.p-top-prototypes:before {
  content: "";
  display: block;
  position: absolute;
  top: 3.6666666667rem;
  left: 6.7777777778rem;
  width: 22.6666666667rem;
  height: 22.6666666667rem;
  background-image: url("../images/top/prototypes-bg.png");
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (min-width: 390px) {
  .p-top-prototypes:before {
    top: calc(66px + -14 * (100vw - 390px) / 1530);
  }
}
@media screen and (min-width: 1920px) {
  .p-top-prototypes:before {
    top: 2.8888888889rem;
  }
}
@media screen and (min-width: 390px) {
  .p-top-prototypes:before {
    left: calc(122px + 894 * (100vw - 390px) / 1530);
  }
}
@media screen and (min-width: 1920px) {
  .p-top-prototypes:before {
    left: 56.4444444444rem;
  }
}
@media screen and (min-width: 390px) {
  .p-top-prototypes:before {
    width: calc(408px + 436 * (100vw - 390px) / 1530);
  }
}
@media screen and (min-width: 1920px) {
  .p-top-prototypes:before {
    width: 46.8888888889rem;
  }
}
@media screen and (min-width: 390px) {
  .p-top-prototypes:before {
    height: calc(408px + 436 * (100vw - 390px) / 1530);
  }
}
@media screen and (min-width: 1920px) {
  .p-top-prototypes:before {
    height: 46.8888888889rem;
  }
}
.p-top-prototypes .c-title {
  padding-bottom: 2.2222222222rem;
}
@media screen and (min-width: 768px) {
  .p-top-prototypes .c-title {
    padding-bottom: calc(40px + -16 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-top-prototypes .c-title {
    padding-bottom: 1.3333333333rem;
  }
}
.p-top-prototypes .c-more-btn-wrapper {
  margin-top: 48px;
}

.p-top-prototypes-inner {
  position: relative;
  margin-top: 4.4444444444rem;
}
@media screen and (min-width: 768px) {
  .p-top-prototypes-inner {
    margin-top: calc(80px + 116 * (100vw - 768px) / 1152);
  }
}
@media screen and (min-width: 1920px) {
  .p-top-prototypes-inner {
    margin-top: 10.8888888889rem;
  }
}

.p-top-prototypes-img {
  position: relative;
  margin-top: 2.6666666667rem;
}
@media screen and (min-width: 768px) {
  .p-top-prototypes-img {
    margin-top: calc(48px + 20 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-top-prototypes-img {
    margin-top: 3.7777777778rem;
  }
}
.p-top-prototypes-img:before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 31.25vw;
}
@media only screen and (max-width: 499px) {
  .p-top-prototypes-img:before {
    padding-top: 66.3541666667vw;
  }
}
.p-top-prototypes-img > img {
  position: absolute;
  top: 0;
  left: calc(50% - 50vw);
  width: 100vw;
  max-width: 100vw;
  height: 100%;
  object-fit: cover;
  object-position: 50% 64%;
}

.p-top-prototypes-text {
  line-height: 1.875;
  width: 800px;
  max-width: 100%;
}

.p-top-products {
  padding-left: 16px;
  padding-right: 16px;
  position: relative;
  margin-top: 4.4444444444rem;
}
@media screen and (min-width: 768px) {
  .p-top-products {
    margin-top: calc(80px + 86 * (100vw - 768px) / 1152);
  }
}
@media screen and (min-width: 1920px) {
  .p-top-products {
    margin-top: 9.2222222222rem;
  }
}
.p-top-products:before {
  content: "";
  display: block;
  position: absolute;
  top: 6.3333333333rem;
  left: -2.7777777778rem;
  width: 33.6666666667rem;
  height: 33.6666666667rem;
  background-image: url("../images/top/products-bg.png");
  background-size: contain;
  background-position: top left;
  background-repeat: no-repeat;
}
@media screen and (min-width: 390px) {
  .p-top-products:before {
    top: calc(114px + -74 * (100vw - 390px) / 1530);
  }
}
@media screen and (min-width: 1920px) {
  .p-top-products:before {
    top: 2.2222222222rem;
  }
}
@media screen and (min-width: 390px) {
  .p-top-products:before {
    left: calc(-50px + 698 * (100vw - 390px) / 1530);
  }
}
@media screen and (min-width: 1920px) {
  .p-top-products:before {
    left: 36rem;
  }
}
@media screen and (min-width: 390px) {
  .p-top-products:before {
    width: calc(606px + 410 * (100vw - 390px) / 1530);
  }
}
@media screen and (min-width: 1920px) {
  .p-top-products:before {
    width: 56.4444444444rem;
  }
}
@media screen and (min-width: 390px) {
  .p-top-products:before {
    height: calc(606px + 410 * (100vw - 390px) / 1530);
  }
}
@media screen and (min-width: 1920px) {
  .p-top-products:before {
    height: 56.4444444444rem;
  }
}
.p-top-products .c-title {
  padding-bottom: 2.2222222222rem;
}
@media screen and (min-width: 768px) {
  .p-top-products .c-title {
    padding-bottom: calc(40px + -16 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-top-products .c-title {
    padding-bottom: 1.3333333333rem;
  }
}
.p-top-products .c-more-btn-wrapper {
  margin-top: 48px;
}

.p-top-products-inner {
  margin-top: 4.4444444444rem;
}
@media screen and (min-width: 768px) {
  .p-top-products-inner {
    margin-top: calc(80px + 116 * (100vw - 768px) / 1152);
  }
}
@media screen and (min-width: 1920px) {
  .p-top-products-inner {
    margin-top: 10.8888888889rem;
  }
}

.p-top-products-text {
  line-height: 1.875;
  width: 800px;
  max-width: 100%;
}

.p-top-products-list {
  margin-top: 2.6666666667rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-top-products-list {
    margin-top: calc(48px + 20 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-top-products-list {
    margin-top: 3.7777777778rem;
  }
}
.p-top-products-list > ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin-right: -0.7777777778rem;
}
@media screen and (min-width: 768px) {
  .p-top-products-list > ul {
    margin-right: calc(-14px + -11 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-top-products-list > ul {
    margin-right: -1.3888888889rem;
  }
}
.p-top-products-list > ul > li {
  width: 33.3333333333%;
  padding-bottom: 1.3333333333rem;
  padding-right: 0.7777777778rem;
}
@media screen and (min-width: 768px) {
  .p-top-products-list > ul > li {
    padding-bottom: calc(24px + 36 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-top-products-list > ul > li {
    padding-bottom: 3.3333333333rem;
  }
}
@media screen and (min-width: 768px) {
  .p-top-products-list > ul > li {
    padding-right: calc(14px + 11 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-top-products-list > ul > li {
    padding-right: 1.3888888889rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-top-products-list > ul > li {
    width: 50%;
  }
}

.p-top-product-img {
  width: 100%;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.p-top-product-img:before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 72.6666666667%;
}
.p-top-product-img > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-top-product-name {
  margin-top: 0.4444444444rem;
}
@media screen and (min-width: 768px) {
  .p-top-product-name {
    margin-top: calc(8px + 6 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-top-product-name {
    margin-top: 0.7777777778rem;
  }
}

.p-top-technology {
  padding-left: 16px;
  padding-right: 16px;
  position: relative;
  margin-top: 3.1111111111rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-top-technology {
    margin-top: calc(56px + 82 * (100vw - 768px) / 1152);
  }
}
@media screen and (min-width: 1920px) {
  .p-top-technology {
    margin-top: 7.6666666667rem;
  }
}
.p-top-technology:before {
  content: "";
  display: block;
  position: absolute;
  top: 9.2222222222rem;
  left: 50%;
  transform: translateX(-50%);
  width: 23.6666666667rem;
  height: 23.6666666667rem;
  border-radius: 100%;
  border: solid transparent;
  border-width: 0.1111111111rem;
  background: linear-gradient(216deg, #233ED5 0%, #4E306C 25%, #212121 42%, #212121 100%) border-box border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
  -webkit-mask-composite: destination-out;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
  mask-composite: exclude;
  opacity: 0.4;
}
@media screen and (min-width: 390px) {
  .p-top-technology:before {
    top: calc(166px + -84 * (100vw - 390px) / 1530);
  }
}
@media screen and (min-width: 1920px) {
  .p-top-technology:before {
    top: 4.5555555556rem;
  }
}
@media screen and (min-width: 390px) {
  .p-top-technology:before {
    width: calc(426px + 1432 * (100vw - 390px) / 1530);
  }
}
@media screen and (min-width: 1920px) {
  .p-top-technology:before {
    width: 103.2222222222rem;
  }
}
@media screen and (min-width: 390px) {
  .p-top-technology:before {
    height: calc(426px + 1432 * (100vw - 390px) / 1530);
  }
}
@media screen and (min-width: 1920px) {
  .p-top-technology:before {
    height: 103.2222222222rem;
  }
}
@media screen and (min-width: 390px) {
  .p-top-technology:before {
    border-width: calc(2px + 6 * (100vw - 390px) / 1530);
  }
}
@media screen and (min-width: 1920px) {
  .p-top-technology:before {
    border-width: 0.4444444444rem;
  }
}
.p-top-technology .c-title {
  padding-bottom: 2.2222222222rem;
}
@media screen and (min-width: 768px) {
  .p-top-technology .c-title {
    padding-bottom: calc(40px + -16 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-top-technology .c-title {
    padding-bottom: 1.3333333333rem;
  }
}
.p-top-technology .c-more-btn-wrapper {
  margin-top: 48px;
}

.p-top-technology-inner {
  position: relative;
  margin-top: 4.4444444444rem;
}
@media screen and (min-width: 768px) {
  .p-top-technology-inner {
    margin-top: calc(80px + 116 * (100vw - 768px) / 1152);
  }
}
@media screen and (min-width: 1920px) {
  .p-top-technology-inner {
    margin-top: 10.8888888889rem;
  }
}

.p-top-technology-img {
  position: relative;
  margin-top: 2.6666666667rem;
}
@media screen and (min-width: 768px) {
  .p-top-technology-img {
    margin-top: calc(48px + 20 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-top-technology-img {
    margin-top: 3.7777777778rem;
  }
}
.p-top-technology-img:before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 31.25vw;
}
@media only screen and (max-width: 499px) {
  .p-top-technology-img:before {
    padding-top: 66.3541666667vw;
  }
}
.p-top-technology-img > img {
  position: absolute;
  top: 0;
  left: calc(50% - 50vw);
  width: 100vw;
  max-width: 100vw;
  height: 100%;
  object-fit: cover;
  object-position: 50% 69%;
}

.p-top-technology-text {
  line-height: 1.875;
  width: 800px;
  max-width: 100%;
}

.p-top-staff {
  padding-left: 16px;
  padding-right: 16px;
}
@media only screen and (max-width: 767px) {
  .p-top-staff {
    margin-top: 80px;
  }
}
.p-top-staff .c-border {
  display: none;
}
@media only screen and (max-width: 767px) {
  .p-top-staff .c-border {
    display: block;
  }
}
.p-top-staff .c-more-btn-wrapper {
  margin-top: 48px;
}
.p-top-staff .p-staff-list {
  margin-top: 2.6666666667rem;
}
@media screen and (min-width: 768px) {
  .p-top-staff .p-staff-list {
    margin-top: calc(48px + 20 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-top-staff .p-staff-list {
    margin-top: 3.7777777778rem;
  }
}
@media only screen and (max-width: 499px) {
  .p-top-staff .p-staff-list .p-staff-slider .swiper .swiper-wrapper .swiper-slide:nth-child(n+4) {
    display: none;
  }
}

.p-top-staff-inner {
  margin-top: 4.4444444444rem;
}
@media screen and (min-width: 768px) {
  .p-top-staff-inner {
    margin-top: calc(80px + 120 * (100vw - 768px) / 1152);
  }
}
@media screen and (min-width: 1920px) {
  .p-top-staff-inner {
    margin-top: 11.1111111111rem;
  }
}

.p-top-staff-text {
  line-height: 1.875;
  width: 800px;
  max-width: 100%;
}

/* --------------------------------
p-404
----------------------------------- */
.p-404-btn {
  display: flex;
  justify-content: center;
  border-top: 1px solid #707070;
  padding-top: 2.2222222222rem;
  margin-top: 2.2222222222rem;
}
@media screen and (min-width: 768px) {
  .p-404-btn {
    padding-top: calc(40px + 20 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-404-btn {
    padding-top: 3.3333333333rem;
  }
}
@media screen and (min-width: 768px) {
  .p-404-btn {
    margin-top: calc(40px + 20 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-404-btn {
    margin-top: 3.3333333333rem;
  }
}

/* --------------------------------
p-staff
----------------------------------- */
.p-staff-list {
  margin-top: 3.1111111111rem;
  margin-left: 0rem;
  margin-right: 0rem;
  padding: 0 58px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-staff-list {
    margin-top: calc(56px + 4 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-staff-list {
    margin-top: 3.3333333333rem;
  }
}
@media screen and (min-width: 1432px) {
  .p-staff-list {
    margin-left: calc(0px + -58 * (100vw - 1432px) / 116);
  }
}
@media screen and (min-width: 1548px) {
  .p-staff-list {
    margin-left: -3.2222222222rem;
  }
}
@media screen and (min-width: 1432px) {
  .p-staff-list {
    margin-right: calc(0px + -58 * (100vw - 1432px) / 116);
  }
}
@media screen and (min-width: 1548px) {
  .p-staff-list {
    margin-right: -3.2222222222rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-staff-list {
    padding: 0;
  }
}
.p-staff-list .swiper-button-prev, .p-staff-list .swiper-button-next {
  width: auto;
  height: auto;
  font-size: 1rem;
  line-height: 1;
  display: none;
}
.p-staff-list .swiper-button-prev.active, .p-staff-list .swiper-button-next.active {
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  .p-staff-list .swiper-button-prev.active, .p-staff-list .swiper-button-next.active {
    display: none;
  }
}
.p-staff-list .swiper-button-prev:after, .p-staff-list .swiper-button-next:after {
  content: none;
}
.p-staff-list .swiper-button-prev .c-arrow, .p-staff-list .swiper-button-next .c-arrow {
  margin: 0;
}
.p-staff-list .swiper-button-prev {
  left: 0;
}
.p-staff-list .swiper-button-next {
  right: 0;
}

.p-staff-slider {
  overflow: hidden;
}
.p-staff-slider .swiper {
  margin-right: -0.7777777778rem;
}
@media screen and (min-width: 768px) {
  .p-staff-slider .swiper {
    margin-right: calc(-14px + -11 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-staff-slider .swiper {
    margin-right: -1.3888888889rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-staff-slider .swiper .swiper-wrapper {
    display: flex;
    flex-wrap: wrap;
  }
}
.p-staff-slider .swiper .swiper-wrapper .swiper-slide {
  box-sizing: border-box;
  width: 33.3333333333%;
  padding-right: 0.7777777778rem;
}
@media screen and (min-width: 768px) {
  .p-staff-slider .swiper .swiper-wrapper .swiper-slide {
    padding-right: calc(14px + 11 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-staff-slider .swiper .swiper-wrapper .swiper-slide {
    padding-right: 1.3888888889rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-staff-slider .swiper .swiper-wrapper .swiper-slide {
    width: 50%;
    padding-bottom: 40px;
  }
}
@media only screen and (max-width: 499px) {
  .p-staff-slider .swiper .swiper-wrapper .swiper-slide {
    width: 100%;
    max-width: 464px;
    margin: 0 auto;
  }
}
.p-staff-slider .swiper .swiper-wrapper .swiper-slide .p-staff-list-img {
  width: 100%;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.p-staff-slider .swiper .swiper-wrapper .swiper-slide .p-staff-list-img:before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 72.5714285714%;
}
.p-staff-slider .swiper .swiper-wrapper .swiper-slide .p-staff-list-img > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-staff-slider .swiper .swiper-wrapper .swiper-slide .p-staff-list-name {
  color: #F8F8F8;
  margin-top: 14px;
}
@media only screen and (max-width: 767px) {
  .p-staff-slider .swiper .swiper-wrapper .swiper-slide .p-staff-list-name {
    margin-top: 16px;
  }
}

.p-staff-detail {
  margin-top: 3.1111111111rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-staff-detail {
    margin-top: calc(56px + 4 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-staff-detail {
    margin-top: 3.3333333333rem;
  }
}

.p-staff-detail-img {
  max-width: 700px;
  width: 50%;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .p-staff-detail-img {
    width: 100%;
  }
}
.p-staff-detail-img:before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 72.5714285714%;
}
.p-staff-detail-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.p-staff-detail-text {
  width: 50%;
  padding-left: 2.2222222222rem;
}
@media screen and (min-width: 768px) {
  .p-staff-detail-text {
    padding-left: calc(40px + 130 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-staff-detail-text {
    padding-left: 9.4444444444rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-staff-detail-text {
    width: 100%;
    padding-left: 0;
    margin-top: 40px;
  }
}

.p-staff-detail-name + .p-staff-detail-info {
  margin-top: 1.3333333333rem;
}
@media screen and (min-width: 768px) {
  .p-staff-detail-name + .p-staff-detail-info {
    margin-top: calc(24px + 16 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-staff-detail-name + .p-staff-detail-info {
    margin-top: 2.2222222222rem;
  }
}

.p-staff-detail-info {
  font-weight: 900;
}

.p-staff-introduction > dl {
  margin-top: 2.2222222222rem;
}
@media screen and (min-width: 768px) {
  .p-staff-introduction > dl {
    margin-top: calc(40px + 20 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-staff-introduction > dl {
    margin-top: 3.3333333333rem;
  }
}
.p-staff-introduction > dl > dt {
  font-size: 1rem;
  font-weight: 900;
  color: #314DEA;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .p-staff-introduction > dl > dt {
    font-size: calc(18px + 6 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-staff-introduction > dl > dt {
    font-size: 1.3333333333rem;
  }
}
.p-staff-introduction > dl > dt + dd {
  margin-top: 0.8888888889rem;
}
@media screen and (min-width: 768px) {
  .p-staff-introduction > dl > dt + dd {
    margin-top: calc(16px + 7 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-staff-introduction > dl > dt + dd {
    margin-top: 1.2777777778rem;
  }
}
.p-staff-introduction > dl > dd .l-editor h2 {
  font-size: 1.3333333333rem !important;
}
@media screen and (min-width: 768px) {
  .p-staff-introduction > dl > dd .l-editor h2 {
    font-size: calc(24px + 18 * (100vw - 768px) / 632) !important;
  }
}
@media screen and (min-width: 1400px) {
  .p-staff-introduction > dl > dd .l-editor h2 {
    font-size: 2.3333333333rem !important;
  }
}
.p-staff-introduction > dl > dd .l-editor h2:not(:first-child), .p-staff-introduction > dl > dd .l-editor h3:not(:first-child), .p-staff-introduction > dl > dd .l-editor h4:not(:first-child), .p-staff-introduction > dl > dd .l-editor h5:not(:first-child), .p-staff-introduction > dl > dd .l-editor h6:not(:first-child) {
  margin-top: 2.2222222222rem !important;
}
@media screen and (min-width: 768px) {
  .p-staff-introduction > dl > dd .l-editor h2:not(:first-child), .p-staff-introduction > dl > dd .l-editor h3:not(:first-child), .p-staff-introduction > dl > dd .l-editor h4:not(:first-child), .p-staff-introduction > dl > dd .l-editor h5:not(:first-child), .p-staff-introduction > dl > dd .l-editor h6:not(:first-child) {
    margin-top: calc(40px + 20 * (100vw - 768px) / 632) !important;
  }
}
@media screen and (min-width: 1400px) {
  .p-staff-introduction > dl > dd .l-editor h2:not(:first-child), .p-staff-introduction > dl > dd .l-editor h3:not(:first-child), .p-staff-introduction > dl > dd .l-editor h4:not(:first-child), .p-staff-introduction > dl > dd .l-editor h5:not(:first-child), .p-staff-introduction > dl > dd .l-editor h6:not(:first-child) {
    margin-top: 3.3333333333rem !important;
  }
}
.p-staff-introduction > dl > dd .l-editor h2 + h2, .p-staff-introduction > dl > dd .l-editor h2 + h3, .p-staff-introduction > dl > dd .l-editor h2 + h4, .p-staff-introduction > dl > dd .l-editor h2 + h5, .p-staff-introduction > dl > dd .l-editor h2 + h6, .p-staff-introduction > dl > dd .l-editor h3 + h2, .p-staff-introduction > dl > dd .l-editor h3 + h3, .p-staff-introduction > dl > dd .l-editor h3 + h4, .p-staff-introduction > dl > dd .l-editor h3 + h5, .p-staff-introduction > dl > dd .l-editor h3 + h6, .p-staff-introduction > dl > dd .l-editor h4 + h2, .p-staff-introduction > dl > dd .l-editor h4 + h3, .p-staff-introduction > dl > dd .l-editor h4 + h4, .p-staff-introduction > dl > dd .l-editor h4 + h5, .p-staff-introduction > dl > dd .l-editor h4 + h6, .p-staff-introduction > dl > dd .l-editor h5 + h2, .p-staff-introduction > dl > dd .l-editor h5 + h3, .p-staff-introduction > dl > dd .l-editor h5 + h4, .p-staff-introduction > dl > dd .l-editor h5 + h5, .p-staff-introduction > dl > dd .l-editor h5 + h6, .p-staff-introduction > dl > dd .l-editor h6 + h2, .p-staff-introduction > dl > dd .l-editor h6 + h3, .p-staff-introduction > dl > dd .l-editor h6 + h4, .p-staff-introduction > dl > dd .l-editor h6 + h5, .p-staff-introduction > dl > dd .l-editor h6 + h6 {
  margin-top: 1.1111111111rem !important;
}
@media screen and (min-width: 768px) {
  .p-staff-introduction > dl > dd .l-editor h2 + h2, .p-staff-introduction > dl > dd .l-editor h2 + h3, .p-staff-introduction > dl > dd .l-editor h2 + h4, .p-staff-introduction > dl > dd .l-editor h2 + h5, .p-staff-introduction > dl > dd .l-editor h2 + h6, .p-staff-introduction > dl > dd .l-editor h3 + h2, .p-staff-introduction > dl > dd .l-editor h3 + h3, .p-staff-introduction > dl > dd .l-editor h3 + h4, .p-staff-introduction > dl > dd .l-editor h3 + h5, .p-staff-introduction > dl > dd .l-editor h3 + h6, .p-staff-introduction > dl > dd .l-editor h4 + h2, .p-staff-introduction > dl > dd .l-editor h4 + h3, .p-staff-introduction > dl > dd .l-editor h4 + h4, .p-staff-introduction > dl > dd .l-editor h4 + h5, .p-staff-introduction > dl > dd .l-editor h4 + h6, .p-staff-introduction > dl > dd .l-editor h5 + h2, .p-staff-introduction > dl > dd .l-editor h5 + h3, .p-staff-introduction > dl > dd .l-editor h5 + h4, .p-staff-introduction > dl > dd .l-editor h5 + h5, .p-staff-introduction > dl > dd .l-editor h5 + h6, .p-staff-introduction > dl > dd .l-editor h6 + h2, .p-staff-introduction > dl > dd .l-editor h6 + h3, .p-staff-introduction > dl > dd .l-editor h6 + h4, .p-staff-introduction > dl > dd .l-editor h6 + h5, .p-staff-introduction > dl > dd .l-editor h6 + h6 {
    margin-top: calc(20px + 10 * (100vw - 768px) / 632) !important;
  }
}
@media screen and (min-width: 1400px) {
  .p-staff-introduction > dl > dd .l-editor h2 + h2, .p-staff-introduction > dl > dd .l-editor h2 + h3, .p-staff-introduction > dl > dd .l-editor h2 + h4, .p-staff-introduction > dl > dd .l-editor h2 + h5, .p-staff-introduction > dl > dd .l-editor h2 + h6, .p-staff-introduction > dl > dd .l-editor h3 + h2, .p-staff-introduction > dl > dd .l-editor h3 + h3, .p-staff-introduction > dl > dd .l-editor h3 + h4, .p-staff-introduction > dl > dd .l-editor h3 + h5, .p-staff-introduction > dl > dd .l-editor h3 + h6, .p-staff-introduction > dl > dd .l-editor h4 + h2, .p-staff-introduction > dl > dd .l-editor h4 + h3, .p-staff-introduction > dl > dd .l-editor h4 + h4, .p-staff-introduction > dl > dd .l-editor h4 + h5, .p-staff-introduction > dl > dd .l-editor h4 + h6, .p-staff-introduction > dl > dd .l-editor h5 + h2, .p-staff-introduction > dl > dd .l-editor h5 + h3, .p-staff-introduction > dl > dd .l-editor h5 + h4, .p-staff-introduction > dl > dd .l-editor h5 + h5, .p-staff-introduction > dl > dd .l-editor h5 + h6, .p-staff-introduction > dl > dd .l-editor h6 + h2, .p-staff-introduction > dl > dd .l-editor h6 + h3, .p-staff-introduction > dl > dd .l-editor h6 + h4, .p-staff-introduction > dl > dd .l-editor h6 + h5, .p-staff-introduction > dl > dd .l-editor h6 + h6 {
    margin-top: 1.6666666667rem !important;
  }
}
.p-staff-introduction > dl > dd .l-editor p, .p-staff-introduction > dl > dd .l-editor dl, .p-staff-introduction > dl > dd .l-editor ol, .p-staff-introduction > dl > dd .l-editor ul, .p-staff-introduction > dl > dd .l-editor table {
  width: 800px;
  max-width: 100%;
}
.p-staff-introduction > dl > dd .l-editor p:not(:first-child), .p-staff-introduction > dl > dd .l-editor dl:not(:first-child), .p-staff-introduction > dl > dd .l-editor ol:not(:first-child), .p-staff-introduction > dl > dd .l-editor ul:not(:first-child), .p-staff-introduction > dl > dd .l-editor table:not(:first-child) {
  margin-top: 2.2222222222rem !important;
}
@media screen and (min-width: 768px) {
  .p-staff-introduction > dl > dd .l-editor p:not(:first-child), .p-staff-introduction > dl > dd .l-editor dl:not(:first-child), .p-staff-introduction > dl > dd .l-editor ol:not(:first-child), .p-staff-introduction > dl > dd .l-editor ul:not(:first-child), .p-staff-introduction > dl > dd .l-editor table:not(:first-child) {
    margin-top: calc(40px + 20 * (100vw - 768px) / 632) !important;
  }
}
@media screen and (min-width: 1400px) {
  .p-staff-introduction > dl > dd .l-editor p:not(:first-child), .p-staff-introduction > dl > dd .l-editor dl:not(:first-child), .p-staff-introduction > dl > dd .l-editor ol:not(:first-child), .p-staff-introduction > dl > dd .l-editor ul:not(:first-child), .p-staff-introduction > dl > dd .l-editor table:not(:first-child) {
    margin-top: 3.3333333333rem !important;
  }
}
.p-staff-introduction > dl > dd .l-editor p img {
  max-width: 1400px;
}
@media only screen and (max-width: 1431px) {
  .p-staff-introduction > dl > dd .l-editor p img {
    max-width: calc(100vw - 32px);
  }
}

/* --------------------------------
p-contact
----------------------------------- */
#autozip {
  display: none !important;
}

.p-inquiry p.p-contact-text {
  width: 800px;
  max-width: 100%;
  margin: 0;
}
.p-inquiry .p-contact-address {
  margin-top: 1.3333333333rem;
  border-radius: 4px;
  background-color: #292D36;
  padding: 40px 12px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-inquiry .p-contact-address {
    margin-top: calc(24px + 36 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-inquiry .p-contact-address {
    margin-top: 3.3333333333rem;
  }
}
.p-inquiry .p-contact-address__title {
  font-size: 0.8888888889rem;
  font-weight: 900;
}
@media screen and (min-width: 768px) {
  .p-inquiry .p-contact-address__title {
    font-size: calc(16px + 8 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-inquiry .p-contact-address__title {
    font-size: 1.3333333333rem;
  }
}
.p-inquiry p.p-contact-address__text {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  font-weight: bold;
  margin-top: 8px;
  font-size: 0.7777777778rem;
}
@media screen and (min-width: 768px) {
  .p-inquiry p.p-contact-address__text {
    font-size: calc(14px + 4 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-inquiry p.p-contact-address__text {
    font-size: 1rem;
  }
}
.p-inquiry .p-contact-address-box {
  margin-top: 1.3333333333rem;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-inquiry .p-contact-address-box {
    margin-top: calc(24px + 16 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-inquiry .p-contact-address-box {
    margin-top: 2.2222222222rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-inquiry .p-contact-address-box {
    display: block;
  }
}
.p-inquiry .p-contact-address__tel, .p-inquiry .p-contact-address__fax {
  display: inline-block;
  flex: 1;
  margin: 0 20px;
  border: 1px solid #B3BAC9;
  border-radius: 4px;
  padding: 40px;
  font-family: "Montserrat", serif;
  font-weight: 600;
  max-width: 580px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-inquiry .p-contact-address__tel, .p-inquiry .p-contact-address__fax {
    font-size: calc(18px + 6 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-inquiry .p-contact-address__tel, .p-inquiry .p-contact-address__fax {
    font-size: 1.3333333333rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-inquiry .p-contact-address__tel, .p-inquiry .p-contact-address__fax {
    margin: 0;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .p-inquiry .p-contact-address__fax {
    margin-top: 16px;
  }
}
.p-inquiry .p-contact-address__num {
  font-size: 1.7777777778rem;
}
@media screen and (min-width: 768px) {
  .p-inquiry .p-contact-address__num {
    font-size: calc(32px + 16 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-inquiry .p-contact-address__num {
    font-size: 2.6666666667rem;
  }
}
.p-inquiry .p-contact-address__num > span, .p-inquiry .p-contact-address__num > a {
  color: #F8F8F8;
  text-decoration: none;
}
.p-inquiry dl.p-contact-form {
  margin-top: 4.4444444444rem;
}
@media screen and (min-width: 768px) {
  .p-inquiry dl.p-contact-form {
    margin-top: calc(80px + 40 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-inquiry dl.p-contact-form {
    margin-top: 6.6666666667rem;
  }
}
.p-inquiry dl.p-contact-form > div {
  align-items: start;
}
@media only screen and (max-width: 767px) {
  .p-inquiry dl.p-contact-form > div {
    display: block;
  }
}
.p-inquiry dl.p-contact-form > div + div {
  margin-top: 1.5555555556rem;
}
@media screen and (min-width: 768px) {
  .p-inquiry dl.p-contact-form > div + div {
    margin-top: calc(28px + 32 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-inquiry dl.p-contact-form > div + div {
    margin-top: 3.3333333333rem;
  }
}
.p-inquiry dl.p-contact-form > div dt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 16em;
  font-weight: bold;
  padding: 1em 2em 1em 0;
}
@media only screen and (max-width: 767px) {
  .p-inquiry dl.p-contact-form > div dt {
    padding: 0 0 16px 0;
    width: 100%;
    justify-content: start;
  }
}
.p-inquiry dl.p-contact-form > div dd {
  padding: 0;
}
.p-inquiry dl.p-contact-form > div dd input, .p-inquiry dl.p-contact-form > div dd textarea, .p-inquiry dl.p-contact-form > div dd fieldset {
  width: 100%;
}
.p-inquiry dl.p-contact-form > div dd input#zip, .p-inquiry dl.p-contact-form > div dd textarea#zip, .p-inquiry dl.p-contact-form > div dd fieldset#zip {
  max-width: 35%;
}
.p-inquiry #wpcf7cpcnf {
  position: static;
}
.p-inquiry #wpcf7cpcnf > table {
  width: 100%;
  border-top: 1px solid #707070;
}
.p-inquiry #wpcf7cpcnf > table tr {
  border-bottom: 1px solid #707070;
}
.p-inquiry #wpcf7cpcnf > table tr th, .p-inquiry #wpcf7cpcnf > table tr td {
  border: none;
  background: none;
}
@media only screen and (max-width: 767px) {
  .p-inquiry #wpcf7cpcnf > table tr th, .p-inquiry #wpcf7cpcnf > table tr td {
    display: block;
  }
}
.p-inquiry #wpcf7cpcnf > table tr th {
  width: 16em !important;
  text-align: left;
  font-weight: bold;
  padding-top: 1.3333333333rem;
  padding-bottom: 1.3333333333rem;
  padding-right: 1.3333333333rem;
  padding-left: 0;
}
@media screen and (min-width: 768px) {
  .p-inquiry #wpcf7cpcnf > table tr th {
    padding-top: calc(24px + 16 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-inquiry #wpcf7cpcnf > table tr th {
    padding-top: 2.2222222222rem;
  }
}
@media screen and (min-width: 768px) {
  .p-inquiry #wpcf7cpcnf > table tr th {
    padding-bottom: calc(24px + 16 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-inquiry #wpcf7cpcnf > table tr th {
    padding-bottom: 2.2222222222rem;
  }
}
@media screen and (min-width: 768px) {
  .p-inquiry #wpcf7cpcnf > table tr th {
    padding-right: calc(24px + 16 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-inquiry #wpcf7cpcnf > table tr th {
    padding-right: 2.2222222222rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-inquiry #wpcf7cpcnf > table tr th {
    padding-right: 0;
    width: 100%;
    padding-bottom: 0;
  }
}
.p-inquiry #wpcf7cpcnf > table tr td {
  padding-top: 1.3333333333rem;
  padding-bottom: 1.3333333333rem;
  padding-right: 0;
  padding-left: 0;
}
@media screen and (min-width: 768px) {
  .p-inquiry #wpcf7cpcnf > table tr td {
    padding-top: calc(24px + 16 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-inquiry #wpcf7cpcnf > table tr td {
    padding-top: 2.2222222222rem;
  }
}
@media screen and (min-width: 768px) {
  .p-inquiry #wpcf7cpcnf > table tr td {
    padding-bottom: calc(24px + 16 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-inquiry #wpcf7cpcnf > table tr td {
    padding-bottom: 2.2222222222rem;
  }
}

.p-contact-form__required {
  color: #E62929;
  border-radius: 4px;
  border: 1px solid #E62929;
  font-size: 0.7777777778rem;
  display: inline-block;
  padding: 5px 15px;
  line-height: 1.5;
  font-weight: 900;
}
@media screen and (min-width: 768px) {
  .p-contact-form__required {
    font-size: calc(14px + 2 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-contact-form__required {
    font-size: 0.8888888889rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-contact-form__required {
    margin-left: 24px;
  }
}

.p-contact-form__acceptance {
  text-align: center;
  padding-top: 1.5555555556rem;
  padding-bottom: 1.5555555556rem;
}
@media screen and (min-width: 768px) {
  .p-contact-form__acceptance {
    padding-top: calc(28px + 32 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-contact-form__acceptance {
    padding-top: 3.3333333333rem;
  }
}
@media screen and (min-width: 768px) {
  .p-contact-form__acceptance {
    padding-bottom: calc(28px + 32 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-contact-form__acceptance {
    padding-bottom: 3.3333333333rem;
  }
}

.p-contact-form__btn {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  border-top: 1px solid #707070;
}
.p-contact-form__btn input {
  margin-top: 2.2222222222rem;
}
@media screen and (min-width: 768px) {
  .p-contact-form__btn input {
    margin-top: calc(40px + 20 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-contact-form__btn input {
    margin-top: 3.3333333333rem;
  }
}

.wpcf7-spinner {
  display: block;
  text-align: center;
  margin: 0 auto;
}

.wpcf7cp-form-hide {
  height: 0;
}

.p-complete p.p-complete-text {
  width: 800px;
  max-width: 100%;
  margin: 0;
}
.p-complete .p-complete-btn {
  display: flex;
  justify-content: center;
  border-top: 1px solid #707070;
  padding-top: 2.2222222222rem;
  margin-top: 2.2222222222rem;
}
@media screen and (min-width: 768px) {
  .p-complete .p-complete-btn {
    padding-top: calc(40px + 20 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-complete .p-complete-btn {
    padding-top: 3.3333333333rem;
  }
}
@media screen and (min-width: 768px) {
  .p-complete .p-complete-btn {
    margin-top: calc(40px + 20 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-complete .p-complete-btn {
    margin-top: 3.3333333333rem;
  }
}

/* --------------------------------
p-company
----------------------------------- */
.p-company {
  position: relative;
}
.p-company:before {
  content: "";
  display: block;
  width: 26.1111111111rem;
  height: 26.1111111111rem;
  position: absolute;
  top: 9.7vw;
  left: 3.8888888889rem;
  border-radius: 100%;
  opacity: 0.2;
  background: transparent linear-gradient(151deg, #233ED5 0%, #4E306C 25%, #212121 42%, #212121 100%) 0% 0% no-repeat padding-box;
}
@media screen and (min-width: 390px) {
  .p-company:before {
    width: calc(470px + 1072 * (100vw - 390px) / 1530);
  }
}
@media screen and (min-width: 1920px) {
  .p-company:before {
    width: 85.6666666667rem;
  }
}
@media screen and (min-width: 390px) {
  .p-company:before {
    height: calc(470px + 1072 * (100vw - 390px) / 1530);
  }
}
@media screen and (min-width: 1920px) {
  .p-company:before {
    height: 85.6666666667rem;
  }
}
@media screen and (min-width: 390px) {
  .p-company:before {
    left: calc(70px + 642 * (100vw - 390px) / 1530);
  }
}
@media screen and (min-width: 1920px) {
  .p-company:before {
    left: 39.5555555556rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-company:before {
    top: 137px;
  }
}
.p-company .l-page-title, .p-company > article {
  position: relative;
}
.p-company h2 {
  font-size: 1.3333333333rem;
}
@media screen and (min-width: 768px) {
  .p-company h2 {
    font-size: calc(24px + 18 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-company h2 {
    font-size: 2.3333333333rem;
  }
}

.p-company-img {
  padding-top: 0rem;
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .p-company-img {
    padding-top: calc(0px + 60 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-company-img {
    padding-top: 3.3333333333rem;
  }
}
.p-company-img img {
  border-radius: 4px;
}

.p-company-title {
  padding-top: 0rem;
  margin: 0;
  font-size: 1.7777777778rem;
  font-weight: 900;
}
@media screen and (min-width: 768px) {
  .p-company-title {
    padding-top: calc(0px + 60 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-company-title {
    padding-top: 3.3333333333rem;
  }
}
@media screen and (min-width: 768px) {
  .p-company-title {
    font-size: calc(32px + 36 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-company-title {
    font-size: 3.7777777778rem;
  }
}

.p-company-text {
  padding-top: 1.3333333333rem;
  margin: 0;
  font-size: 0.8888888889rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-company-text {
    padding-top: calc(24px + 36 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-company-text {
    padding-top: 3.3333333333rem;
  }
}
@media screen and (min-width: 768px) {
  .p-company-text {
    font-size: calc(16px + 8 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-company-text {
    font-size: 1.3333333333rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-company-text br {
    display: none;
  }
}

.p-company-overview {
  margin-top: 0rem;
  padding-top: 2.2222222222rem;
}
@media screen and (min-width: 768px) {
  .p-company-overview {
    margin-top: calc(0px + 80 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-company-overview {
    margin-top: 4.4444444444rem;
  }
}
@media screen and (min-width: 768px) {
  .p-company-overview {
    padding-top: calc(40px + 80 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-company-overview {
    padding-top: 6.6666666667rem;
  }
}
.p-company-overview dl {
  padding: 0;
  margin-top: 0.8888888889rem;
}
@media screen and (min-width: 768px) {
  .p-company-overview dl {
    margin-top: calc(16px + 44 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-company-overview dl {
    margin-top: 3.3333333333rem;
  }
}
.p-company-overview dl > div {
  border-bottom: 1px solid #797979;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .p-company-overview dl > div {
    display: block;
  }
}
.p-company-overview dl > div dt, .p-company-overview dl > div dd {
  font-weight: bold;
  padding: 1.25em 40px;
  margin: 0;
  line-height: 2;
}
@media only screen and (max-width: 767px) {
  .p-company-overview dl > div dt, .p-company-overview dl > div dd {
    padding: 1.15em 0;
  }
}
.p-company-overview dl > div dt {
  width: calc(12em + 80px);
}
@media only screen and (max-width: 767px) {
  .p-company-overview dl > div dt {
    width: 100%;
    padding-bottom: 0;
  }
}
.p-company-overview dl > div dd {
  flex: 1;
}

.p-company-award-history {
  padding-top: 2.2222222222rem;
}
@media screen and (min-width: 768px) {
  .p-company-award-history {
    padding-top: calc(40px + 80 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-company-award-history {
    padding-top: 6.6666666667rem;
  }
}

.p-company-award-history-table {
  margin-top: 2.2222222222rem;
}
@media screen and (min-width: 768px) {
  .p-company-award-history-table {
    margin-top: calc(40px + 20 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-company-award-history-table {
    margin-top: 3.3333333333rem;
  }
}
.p-company-award-history-table table thead tr th:first-child {
  width: 20%;
  min-width: 170px;
}
.p-company-award-history-table table thead tr th:nth-child(2) {
  width: 65%;
}
.p-company-award-history-table table thead tr th:nth-child(3) {
  width: 15%;
}

.p-company-access {
  padding-top: 4.4444444444rem;
}
@media screen and (min-width: 768px) {
  .p-company-access {
    padding-top: calc(80px + 40 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-company-access {
    padding-top: 6.6666666667rem;
  }
}

.p-company-access-text {
  margin-top: 24px;
  max-width: 100%;
  width: 800px;
  line-height: 1.875;
}

.p-company-google-map {
  margin-top: 1.3333333333rem;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-company-google-map {
    margin-top: calc(24px + 36 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-company-google-map {
    margin-top: 3.3333333333rem;
  }
}
.p-company-google-map:before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 57.1428571429%;
}
.p-company-google-map > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* --------------------------------
p-prototypes
----------------------------------- */
.p-prototypes {
  position: relative;
}
.p-prototypes:before {
  content: "";
  display: block;
  position: absolute;
  top: 5.9vw;
  left: 6.7777777778rem;
  width: 22.6666666667rem;
  height: 22.6666666667rem;
  background-image: url("../images/top/prototypes-bg.png");
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (min-width: 390px) {
  .p-prototypes:before {
    left: calc(122px + 894 * (100vw - 390px) / 1530);
  }
}
@media screen and (min-width: 1920px) {
  .p-prototypes:before {
    left: 56.4444444444rem;
  }
}
@media screen and (min-width: 390px) {
  .p-prototypes:before {
    width: calc(408px + 436 * (100vw - 390px) / 1530);
  }
}
@media screen and (min-width: 1920px) {
  .p-prototypes:before {
    width: 46.8888888889rem;
  }
}
@media screen and (min-width: 390px) {
  .p-prototypes:before {
    height: calc(408px + 436 * (100vw - 390px) / 1530);
  }
}
@media screen and (min-width: 1920px) {
  .p-prototypes:before {
    height: 46.8888888889rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-prototypes:before {
    top: 140px;
  }
}
.p-prototypes .l-page-title, .p-prototypes > article {
  position: relative;
}

/* --------------------------------
p-technology
----------------------------------- */
.p-technology {
  position: relative;
}
.p-technology:before {
  content: "";
  display: block;
  position: absolute;
  top: 11vw;
  left: 50%;
  transform: translateX(-50%);
  width: 23.6666666667rem;
  height: 23.6666666667rem;
  border-radius: 100%;
  border: solid transparent;
  border-width: 0.1111111111rem;
  background: linear-gradient(216deg, #233ED5 0%, #4E306C 25%, #212121 42%, #212121 100%) border-box border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
  -webkit-mask-composite: destination-out;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
  mask-composite: exclude;
  opacity: 0.4;
}
@media screen and (min-width: 390px) {
  .p-technology:before {
    width: calc(426px + 1432 * (100vw - 390px) / 1530);
  }
}
@media screen and (min-width: 1920px) {
  .p-technology:before {
    width: 103.2222222222rem;
  }
}
@media screen and (min-width: 390px) {
  .p-technology:before {
    height: calc(426px + 1432 * (100vw - 390px) / 1530);
  }
}
@media screen and (min-width: 1920px) {
  .p-technology:before {
    height: 103.2222222222rem;
  }
}
@media screen and (min-width: 390px) {
  .p-technology:before {
    border-width: calc(2px + 6 * (100vw - 390px) / 1530);
  }
}
@media screen and (min-width: 1920px) {
  .p-technology:before {
    border-width: 0.4444444444rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-technology:before {
    top: 216px;
  }
}
.p-technology .l-page-title, .p-technology > article {
  position: relative;
}
.p-technology .l-section:first-child {
  padding-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-technology .l-section:first-child {
    padding-top: calc(36px + 24 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-technology .l-section:first-child {
    padding-top: 3.3333333333rem;
  }
}
.p-technology #technology {
  margin-top: -3.3333333333rem;
  padding-top: 3.3333333333rem;
}
@media screen and (min-width: 768px) {
  .p-technology #technology {
    margin-top: calc(-60px + -38 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-technology #technology {
    margin-top: -5.4444444444rem;
  }
}
@media screen and (min-width: 768px) {
  .p-technology #technology {
    padding-top: calc(60px + 38 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-technology #technology {
    padding-top: 5.4444444444rem;
  }
}

.p-technology-comparison {
  padding-top: 4.4444444444rem;
}
@media screen and (min-width: 768px) {
  .p-technology-comparison {
    padding-top: calc(80px + 120 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-technology-comparison {
    padding-top: 11.1111111111rem;
  }
}

.p-technology-comparison-text {
  padding-bottom: 24px;
  font-size: 1rem;
  font-weight: 900;
}
@media screen and (min-width: 768px) {
  .p-technology-comparison-text {
    font-size: calc(18px + 6 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-technology-comparison-text {
    font-size: 1.3333333333rem;
  }
}

.p-technology-comparison-table h2 {
  margin-bottom: 2.2222222222rem;
}
@media screen and (min-width: 768px) {
  .p-technology-comparison-table h2 {
    margin-bottom: calc(40px + 20 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-technology-comparison-table h2 {
    margin-bottom: 3.3333333333rem;
  }
}
.p-technology-comparison-table + .p-technology-comparison-table {
  margin-top: 4.4444444444rem;
}
@media screen and (min-width: 768px) {
  .p-technology-comparison-table + .p-technology-comparison-table {
    margin-top: calc(80px + 40 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-technology-comparison-table + .p-technology-comparison-table {
    margin-top: 6.6666666667rem;
  }
}
.p-technology-comparison-table table tbody tr th, .p-technology-comparison-table table tbody tr td {
  vertical-align: middle;
}

.p-technology-equipment {
  margin-top: 1.1111111111rem;
  padding-top: 3.3333333333rem;
}
@media screen and (min-width: 768px) {
  .p-technology-equipment {
    margin-top: calc(20px + 82 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-technology-equipment {
    margin-top: 5.6666666667rem;
  }
}
@media screen and (min-width: 768px) {
  .p-technology-equipment {
    padding-top: calc(60px + 38 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-technology-equipment {
    padding-top: 5.4444444444rem;
  }
}

.p-technology-equipment-text {
  max-width: 100%;
  width: 800px;
  line-height: 1.875;
  margin-top: 2.2222222222rem;
}
@media screen and (min-width: 768px) {
  .p-technology-equipment-text {
    margin-top: calc(40px + 20 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-technology-equipment-text {
    margin-top: 3.3333333333rem;
  }
}

.p-technology-equipment-list {
  margin-top: 2.2222222222rem;
}
@media screen and (min-width: 768px) {
  .p-technology-equipment-list {
    margin-top: calc(40px + 20 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-technology-equipment-list {
    margin-top: 3.3333333333rem;
  }
}

/* --------------------------------
p-car
----------------------------------- */
.p-car {
  position: relative;
}
.p-car:before {
  content: "";
  display: block;
  position: absolute;
  top: 2.3vw;
  left: -5.8888888889rem;
  width: 33.6666666667rem;
  height: 33.6666666667rem;
  background-image: url("../images/top/products-bg.png");
  background-size: contain;
  background-position: top left;
  background-repeat: no-repeat;
}
@media screen and (min-width: 390px) {
  .p-car:before {
    left: calc(-106px + 754 * (100vw - 390px) / 1530);
  }
}
@media screen and (min-width: 1920px) {
  .p-car:before {
    left: 36rem;
  }
}
@media screen and (min-width: 390px) {
  .p-car:before {
    width: calc(606px + 410 * (100vw - 390px) / 1530);
  }
}
@media screen and (min-width: 1920px) {
  .p-car:before {
    width: 56.4444444444rem;
  }
}
@media screen and (min-width: 390px) {
  .p-car:before {
    height: calc(606px + 410 * (100vw - 390px) / 1530);
  }
}
@media screen and (min-width: 1920px) {
  .p-car:before {
    height: 56.4444444444rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-car:before {
    top: 136px;
  }
}
.p-car .l-page-title, .p-car > article {
  position: relative;
}
@media only screen and (max-width: 499px) {
  .p-car .u-column.u-column--3.u-column--img .u-column-item {
    width: 100%;
  }
  .p-car .u-column.u-column--3.u-column--img .u-column-item + .u-column-item {
    margin-top: 24px;
  }
}

/* --------------------------------
p-motorcycle
----------------------------------- */
.p-motorcycle {
  position: relative;
}
.p-motorcycle:before {
  content: "";
  display: block;
  position: absolute;
  top: 2.3vw;
  left: -5.8888888889rem;
  width: 33.6666666667rem;
  height: 33.6666666667rem;
  background-image: url("../images/top/products-bg.png");
  background-size: contain;
  background-position: top left;
  background-repeat: no-repeat;
}
@media screen and (min-width: 390px) {
  .p-motorcycle:before {
    left: calc(-106px + 754 * (100vw - 390px) / 1530);
  }
}
@media screen and (min-width: 1920px) {
  .p-motorcycle:before {
    left: 36rem;
  }
}
@media screen and (min-width: 390px) {
  .p-motorcycle:before {
    width: calc(606px + 410 * (100vw - 390px) / 1530);
  }
}
@media screen and (min-width: 1920px) {
  .p-motorcycle:before {
    width: 56.4444444444rem;
  }
}
@media screen and (min-width: 390px) {
  .p-motorcycle:before {
    height: calc(606px + 410 * (100vw - 390px) / 1530);
  }
}
@media screen and (min-width: 1920px) {
  .p-motorcycle:before {
    height: 56.4444444444rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-motorcycle:before {
    top: 136px;
  }
}
.p-motorcycle .l-page-title, .p-motorcycle > article {
  position: relative;
}

/* --------------------------------
p-bicycle
----------------------------------- */
.p-bicycle {
  position: relative;
}
.p-bicycle:before {
  content: "";
  display: block;
  position: absolute;
  top: 2.3vw;
  left: -5.8888888889rem;
  width: 33.6666666667rem;
  height: 33.6666666667rem;
  background-image: url("../images/top/products-bg.png");
  background-size: contain;
  background-position: top left;
  background-repeat: no-repeat;
}
@media screen and (min-width: 390px) {
  .p-bicycle:before {
    left: calc(-106px + 754 * (100vw - 390px) / 1530);
  }
}
@media screen and (min-width: 1920px) {
  .p-bicycle:before {
    left: 36rem;
  }
}
@media screen and (min-width: 390px) {
  .p-bicycle:before {
    width: calc(606px + 410 * (100vw - 390px) / 1530);
  }
}
@media screen and (min-width: 1920px) {
  .p-bicycle:before {
    width: 56.4444444444rem;
  }
}
@media screen and (min-width: 390px) {
  .p-bicycle:before {
    height: calc(606px + 410 * (100vw - 390px) / 1530);
  }
}
@media screen and (min-width: 1920px) {
  .p-bicycle:before {
    height: 56.4444444444rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-bicycle:before {
    top: 136px;
  }
}
.p-bicycle .l-page-title, .p-bicycle > article {
  position: relative;
}
.p-bicycle .l-section:first-child {
  padding-top: 1.3333333333rem;
}
@media screen and (min-width: 768px) {
  .p-bicycle .l-section:first-child {
    padding-top: calc(24px + 36 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-bicycle .l-section:first-child {
    padding-top: 3.3333333333rem;
  }
}
@media only screen and (max-width: 499px) {
  .p-bicycle .u-column.u-column--3.u-column--img .u-column-item {
    width: 100%;
  }
  .p-bicycle .u-column.u-column--3.u-column--img .u-column-item + .u-column-item {
    margin-top: 24px;
  }
}
@media only screen and (max-width: 499px) {
  .p-bicycle .u-column.u-column--2.u-column--img .u-column-item {
    width: 100%;
  }
  .p-bicycle .u-column.u-column--2.u-column--img .u-column-item + .u-column-item {
    margin-top: 40px;
  }
}

.p-bicycle-contact {
  margin-top: 6.6666666667rem;
}
@media screen and (min-width: 768px) {
  .p-bicycle-contact {
    margin-top: calc(120px + 80 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-bicycle-contact {
    margin-top: 11.1111111111rem;
  }
}
.p-bicycle-contact h2 {
  font-size: 1.3333333333rem;
}
@media screen and (min-width: 768px) {
  .p-bicycle-contact h2 {
    font-size: calc(24px + 18 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-bicycle-contact h2 {
    font-size: 2.3333333333rem;
  }
}
.p-bicycle-contact h2 + p {
  margin-top: 1.3333333333rem;
  width: 800px;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .p-bicycle-contact h2 + p {
    margin-top: calc(24px + 36 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-bicycle-contact h2 + p {
    margin-top: 3.3333333333rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-bicycle-contact .c-link-bnr {
    width: 100%;
    max-width: 422px;
    margin-right: auto;
    margin-left: auto;
  }
}
.p-bicycle-contact .c-link-bnr-list {
  margin-top: 4.4444444444rem;
}
@media screen and (min-width: 768px) {
  .p-bicycle-contact .c-link-bnr-list {
    margin-top: calc(80px + -20 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-bicycle-contact .c-link-bnr-list {
    margin-top: 3.3333333333rem;
  }
}
.p-bicycle-contact .c-link-bnr__img {
  width: 29%;
  max-width: 400px;
}
@media only screen and (max-width: 767px) {
  .p-bicycle-contact .c-link-bnr__img {
    width: 100%;
  }
}
.p-bicycle-contact .c-link-bnr__img:before {
  padding-top: 70.25%;
}

/* --------------------------------
p-industrial
----------------------------------- */
.p-industrial {
  position: relative;
}
.p-industrial:before {
  content: "";
  display: block;
  position: absolute;
  top: 2.3vw;
  left: -5.8888888889rem;
  width: 33.6666666667rem;
  height: 33.6666666667rem;
  background-image: url("../images/top/products-bg.png");
  background-size: contain;
  background-position: top left;
  background-repeat: no-repeat;
}
@media screen and (min-width: 390px) {
  .p-industrial:before {
    left: calc(-106px + 754 * (100vw - 390px) / 1530);
  }
}
@media screen and (min-width: 1920px) {
  .p-industrial:before {
    left: 36rem;
  }
}
@media screen and (min-width: 390px) {
  .p-industrial:before {
    width: calc(606px + 410 * (100vw - 390px) / 1530);
  }
}
@media screen and (min-width: 1920px) {
  .p-industrial:before {
    width: 56.4444444444rem;
  }
}
@media screen and (min-width: 390px) {
  .p-industrial:before {
    height: calc(606px + 410 * (100vw - 390px) / 1530);
  }
}
@media screen and (min-width: 1920px) {
  .p-industrial:before {
    height: 56.4444444444rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-industrial:before {
    top: 136px;
  }
}
.p-industrial .l-page-title, .p-industrial > article {
  position: relative;
}

/* --------------------------------
p-products
----------------------------------- */
.p-products {
  position: relative;
}
.p-products:before {
  content: "";
  display: block;
  position: absolute;
  top: 2.3vw;
  left: -5.8888888889rem;
  width: 33.6666666667rem;
  height: 33.6666666667rem;
  background-image: url("../images/top/products-bg.png");
  background-size: contain;
  background-position: top left;
  background-repeat: no-repeat;
}
@media screen and (min-width: 390px) {
  .p-products:before {
    left: calc(-106px + 754 * (100vw - 390px) / 1530);
  }
}
@media screen and (min-width: 1920px) {
  .p-products:before {
    left: 36rem;
  }
}
@media screen and (min-width: 390px) {
  .p-products:before {
    width: calc(606px + 410 * (100vw - 390px) / 1530);
  }
}
@media screen and (min-width: 1920px) {
  .p-products:before {
    width: 56.4444444444rem;
  }
}
@media screen and (min-width: 390px) {
  .p-products:before {
    height: calc(606px + 410 * (100vw - 390px) / 1530);
  }
}
@media screen and (min-width: 1920px) {
  .p-products:before {
    height: 56.4444444444rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-products:before {
    top: 136px;
  }
}
.p-products .l-page-title, .p-products > article {
  position: relative;
}
.p-products .l-section-content-text h3 {
  font-size: 1.1111111111rem;
  font-weight: bold;
  padding-bottom: 28px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-products .l-section-content-text h3 {
    font-size: calc(20px + 4 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-products .l-section-content-text h3 {
    font-size: 1.3333333333rem;
  }
}
.p-products .l-section-content-text h3:after {
  content: "";
  display: block;
  width: 50px;
  height: 4px;
  background: transparent linear-gradient(102deg, #233ED5 0%, #5B30BC 100%) 0% 0% no-repeat padding-box;
  position: absolute;
  left: 0;
  bottom: 0;
}
.p-products .l-section-content-text h3 + p {
  margin-top: 24px;
}

.p-products-features {
  padding-top: 0rem;
}
@media screen and (min-width: 768px) {
  .p-products-features {
    padding-top: calc(0px + 60 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-products-features {
    padding-top: 3.3333333333rem;
  }
}

.p-products-features-item {
  border-radius: 4px;
  background-color: #32353B;
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 2.2222222222rem;
  padding-bottom: 2.2222222222rem;
}
@media screen and (min-width: 768px) {
  .p-products-features-item {
    padding-top: calc(40px + 20 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-products-features-item {
    padding-top: 3.3333333333rem;
  }
}
@media screen and (min-width: 768px) {
  .p-products-features-item {
    padding-bottom: calc(40px + 20 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-products-features-item {
    padding-bottom: 3.3333333333rem;
  }
}
.p-products-features-item + .p-products-features-item {
  margin-top: 20px;
}

.p-products-features-title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 1.3333333333rem;
}
@media screen and (min-width: 768px) {
  .p-products-features-title {
    font-size: calc(24px + 18 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-products-features-title {
    font-size: 2.3333333333rem;
  }
}
.p-products-features-title + .p-products-features-text {
  margin-top: 24px;
}

.p-products-features-title-main {
  display: inline-block;
  padding-right: 24px;
}
@media only screen and (max-width: 767px) {
  .p-products-features-title-main {
    width: 100%;
    padding-right: 0;
  }
}

.p-products-features-title-sub {
  display: inline-block;
  font-size: 1.1111111111rem;
  font-family: "Montserrat", serif;
  font-weight: 600;
  color: #314DEA;
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .p-products-features-title-sub {
    font-size: calc(20px + 12 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-products-features-title-sub {
    font-size: 1.7777777778rem;
  }
}

.p-products-features-text {
  line-height: 1.875;
}

@media only screen and (max-width: 767px) {
  .p-products-catalog .c-link-bnr {
    width: 100%;
    max-width: 422px;
    margin-right: auto;
    margin-left: auto;
  }
}
.p-products-catalog .c-link-bnr__img {
  width: 20%;
  background-color: #E9EBF8;
}
@media only screen and (max-width: 767px) {
  .p-products-catalog .c-link-bnr__img {
    width: 100%;
  }
}
.p-products-catalog .c-link-bnr__img:before {
  content: none;
}
@media only screen and (max-width: 767px) {
  .p-products-catalog .c-link-bnr__img:before {
    content: "";
  }
}
.p-products-catalog .c-link-bnr__img img {
  top: 12%;
  left: 12%;
  width: 76%;
  height: 76%;
  object-fit: contain;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
}
.p-products-catalog .c-link-bnr__title a {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.p-products-catalog .c-link-bnr__title-pdf {
  color: #314DEA;
  font-family: "Montserrat", serif;
  font-weight: 600;
  font-size: 0.8888888889rem;
  line-height: 1rem;
}
@media screen and (min-width: 768px) {
  .p-products-catalog .c-link-bnr__title-pdf {
    font-size: calc(16px + 2 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-products-catalog .c-link-bnr__title-pdf {
    font-size: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .p-products-catalog .c-link-bnr__title-pdf {
    line-height: calc(18px + 6 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .p-products-catalog .c-link-bnr__title-pdf {
    line-height: 1.3333333333rem;
  }
}
.p-products-catalog .c-link-bnr__arrow .c-more-btn:before {
  content: none;
}
.p-products-catalog .c-link-bnr__arrow .c-arrow {
  margin-left: 20px;
}

/* --------------------------------
p-sitemap
----------------------------------- */
#sitemap {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 800px;
}
#sitemap li {
  padding-right: 14%;
}
#sitemap li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 61px;
  background: #32353B;
  border-radius: 4px;
  max-width: 500px;
  padding-left: 0.5555555556rem;
  padding-right: 0.5555555556rem;
  font-size: 0.7777777778rem;
}
@media screen and (min-width: 390px) {
  #sitemap li a {
    padding-left: calc(10px + 30 * (100vw - 390px) / 378);
  }
}
@media screen and (min-width: 768px) {
  #sitemap li a {
    padding-left: 2.2222222222rem;
  }
}
@media screen and (min-width: 390px) {
  #sitemap li a {
    padding-right: calc(10px + 30 * (100vw - 390px) / 378);
  }
}
@media screen and (min-width: 768px) {
  #sitemap li a {
    padding-right: 2.2222222222rem;
  }
}
@media screen and (min-width: 390px) {
  #sitemap li a {
    font-size: calc(14px + 2 * (100vw - 390px) / 378);
  }
}
@media screen and (min-width: 768px) {
  #sitemap li a {
    font-size: 0.8888888889rem;
  }
}
#sitemap li a:after {
  content: attr(href);
  display: block;
  font-size: 0.5555555556rem;
  font-family: "Montserrat", serif;
  font-weight: normal;
  line-height: 1.2;
  word-break: break-all;
  margin-top: 2px;
  color: #B3BAC9;
}
@media screen and (min-width: 768px) {
  #sitemap li a:after {
    font-size: calc(10px + 2 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  #sitemap li a:after {
    font-size: 0.6666666667rem;
  }
}
#sitemap li ul {
  list-style: none;
  padding: 10px 0 10px 0;
  margin: 0;
  margin-right: -8%;
  position: relative;
}
#sitemap li ul:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 4%;
  height: calc(100% - 40px);
  width: 0;
  border-left: 1px solid #797979;
}
#sitemap li ul li {
  padding-top: 10px;
  padding-right: 0;
  padding-left: 8%;
  position: relative;
}
#sitemap li ul li:before {
  content: "";
  display: block;
  position: absolute;
  top: 41px;
  left: 4%;
  width: 4%;
  height: 0;
  border-top: 1px solid #797979;
}
#sitemap li ul li a {
  background: #314DEA;
}
#sitemap li ul li ul {
  padding-top: 0;
}
#sitemap li ul li ul li a {
  background: #5B30BC;
}

/* --------------------------------
utility
----------------------------------- */
@media only screen and (max-width: 1399px) {
  .u-d-xxl {
    display: none;
  }
}
@media only screen and (max-width: 1199px) {
  .u-d-xl {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .u-d-lg {
    display: none;
  }
}
.u-center {
  text-align: center !important;
}

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

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

.u-w100 {
  width: 100% !important;
  max-width: 100% !important;
}

.u-clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.u-img img {
  border-radius: 4px;
}
.u-img + .u-img-caption {
  margin-top: 0.4444444444rem;
}
@media screen and (min-width: 768px) {
  .u-img + .u-img-caption {
    margin-top: calc(8px + 6 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .u-img + .u-img-caption {
    margin-top: 0.7777777778rem;
  }
}
.u-img + .u-img-title {
  margin-top: 24px;
}

.u-img-title {
  font-size: 1rem;
  font-weight: 900;
}
@media screen and (min-width: 768px) {
  .u-img-title {
    font-size: calc(18px + 6 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .u-img-title {
    font-size: 1.3333333333rem;
  }
}
.u-img-title + .u-img-caption {
  margin-top: 24px;
}

.u-img-caption {
  line-height: 1.875;
}

.u-table {
  overflow-x: auto;
}
.u-table table {
  margin: 0;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .u-table table {
    width: auto;
  }
}
.u-table table thead tr th {
  background-color: #292D36;
}
.u-table table tbody tr {
  border-bottom: 1px solid #797979;
}
.u-table table tr th, .u-table table tr td {
  line-height: 2;
  text-align: left;
  font-weight: bold;
  padding-left: 0.6666666667rem;
  padding-right: 0.6666666667rem;
  padding-top: 0.9444444444rem;
  padding-bottom: 0.9444444444rem;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .u-table table tr th, .u-table table tr td {
    padding-left: calc(12px + 28 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .u-table table tr th, .u-table table tr td {
    padding-left: 2.2222222222rem;
  }
}
@media screen and (min-width: 768px) {
  .u-table table tr th, .u-table table tr td {
    padding-right: calc(12px + 28 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .u-table table tr th, .u-table table tr td {
    padding-right: 2.2222222222rem;
  }
}
@media screen and (min-width: 768px) {
  .u-table table tr th, .u-table table tr td {
    padding-top: calc(17px + 5 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .u-table table tr th, .u-table table tr td {
    padding-top: 1.2222222222rem;
  }
}
@media screen and (min-width: 768px) {
  .u-table table tr th, .u-table table tr td {
    padding-bottom: calc(17px + 5 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .u-table table tr th, .u-table table tr td {
    padding-bottom: 1.2222222222rem;
  }
}
@media only screen and (max-width: 767px) {
  .u-table table tr th, .u-table table tr td {
    line-height: 1.5;
    vertical-align: top;
  }
}
.u-table table tr th {
  background-color: #33353A;
}
.u-table .scroll-hint-icon {
  top: 15%;
}

.u-column {
  display: flex;
  flex-wrap: wrap;
}
.u-column.u-column--3 .u-column-item {
  width: 33.3333333333%;
}
@media only screen and (max-width: 767px) {
  .u-column.u-column--3 .u-column-item {
    width: 50%;
  }
  .u-column.u-column--3 .u-column-item:nth-child(n+3) {
    margin-top: 24px;
  }
}
.u-column.u-column--3 .u-column-item:nth-child(n+4) {
  margin-top: 1.3333333333rem;
}
@media screen and (min-width: 768px) {
  .u-column.u-column--3 .u-column-item:nth-child(n+4) {
    margin-top: calc(24px + 36 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .u-column.u-column--3 .u-column-item:nth-child(n+4) {
    margin-top: 3.3333333333rem;
  }
}
.u-column.u-column--3.u-column--img {
  margin-right: -0.7777777778rem;
}
@media screen and (min-width: 768px) {
  .u-column.u-column--3.u-column--img {
    margin-right: calc(-14px + -11 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .u-column.u-column--3.u-column--img {
    margin-right: -1.3888888889rem;
  }
}
.u-column.u-column--3.u-column--img .u-column-item {
  padding-right: 0.7777777778rem;
}
@media screen and (min-width: 768px) {
  .u-column.u-column--3.u-column--img .u-column-item {
    padding-right: calc(14px + 11 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .u-column.u-column--3.u-column--img .u-column-item {
    padding-right: 1.3888888889rem;
  }
}
.u-column.u-column--2 {
  align-items: center;
  justify-content: center;
}
.u-column.u-column--2 .u-column-item {
  width: 50%;
}
.u-column.u-column--2 .u-column-item:nth-child(n+3) {
  margin-top: 1.3333333333rem;
}
@media screen and (min-width: 768px) {
  .u-column.u-column--2 .u-column-item:nth-child(n+3) {
    margin-top: calc(24px + 36 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .u-column.u-column--2 .u-column-item:nth-child(n+3) {
    margin-top: 3.3333333333rem;
  }
}
.u-column.u-column--2 .u-column-item--img {
  max-width: 700px;
}
@media only screen and (max-width: 767px) {
  .u-column.u-column--2 .u-column-item--img {
    width: 100%;
  }
}
.u-column.u-column--2 .u-column-item--text {
  max-width: 700px;
  padding-left: 40px;
  line-height: 1.875;
}
@media only screen and (max-width: 767px) {
  .u-column.u-column--2 .u-column-item--text {
    width: 100%;
    padding-left: 0;
    margin-top: 24px;
  }
}
.u-column.u-column--2.u-column--img {
  align-items: start;
  justify-content: start;
  margin-right: -0.7777777778rem;
}
@media screen and (min-width: 768px) {
  .u-column.u-column--2.u-column--img {
    margin-right: calc(-14px + -26 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .u-column.u-column--2.u-column--img {
    margin-right: -2.2222222222rem;
  }
}
.u-column.u-column--2.u-column--img .u-column-item {
  padding-right: 0.7777777778rem;
}
@media screen and (min-width: 768px) {
  .u-column.u-column--2.u-column--img .u-column-item {
    padding-right: calc(14px + 26 * (100vw - 768px) / 632);
  }
}
@media screen and (min-width: 1400px) {
  .u-column.u-column--2.u-column--img .u-column-item {
    padding-right: 2.2222222222rem;
  }
}
.u-column.u-column--1 .u-column-item {
  width: 100%;
}
.u-column.u-column--1 .u-column-item + .u-column-item {
  margin-top: 24px;
}/*# sourceMappingURL=style.css.map */