@charset "UTF-8";
.c-button {
  background: var(--color-button-bg);
  width: 220px;
  height: 56px;
  color: var(--color-white);
  font-family: var(--font-family-en);
  font-size: 1.4rem;
  line-height: 1.4;
  letter-spacing: 0.1em;
  font-weight: bold;
  padding: 18px 85px;
  border-radius: 50px;
  text-align: center;
  position: relative;
  cursor: pointer;
  z-index: 1;
  display: block;
  margin: 0 auto;
  white-space: nowrap;
}
.c-button::before {
  content: "";
  position: absolute;
  top: 23px;
  right: 22px;
  border: 5px solid transparent;
  border-left: 5px solid var(--color-white);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.c-button:hover::before {
  right: 17px;
}

.c-button.--transparent {
  background: transparent;
  padding: 18px 72px;
  border: 1px solid var(--color-white);
}

.c-section-title {
  color: var(--color-main);
  line-height: 1.2;
  text-align: center;
}

.c-section-title--en {
  font-family: var(--font-family-en);
  font-size: 3rem;
  font-weight: bold;
  display: block;
}
@media screen and (min-width: 768px) {
  .c-section-title--en {
    font-size: 3.6rem;
  }
}

.c-section-title--jp {
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 3px;
  display: block;
}
@media screen and (min-width: 768px) {
  .c-section-title--jp {
    margin-top: 5px;
  }
}

.c-page-title {
  color: var(--color-white);
  line-height: 1.2;
  text-align: center;
  padding-top: 83px;
}
@media screen and (min-width: 768px) {
  .c-page-title {
    padding-top: 88px;
  }
}

.c-page-title--en {
  display: block;
  font-family: var(--font-family-en);
  font-size: 3rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .c-page-title--en {
    font-size: 3.6rem;
  }
}

.c-page-title--jp {
  display: block;
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 3px;
}
@media screen and (min-width: 768px) {
  .c-page-title--jp {
    margin-top: 5px;
  }
}

.c-section-title.-page--lv2 {
  font-size: 24px;
  line-height: 1;
  font-weight: 600;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-section-title.-page--lv2 {
    font-size: 32px;
    line-height: 1.8;
  }
}

.c-recruit-info-title--lv3 {
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--color-main);
  line-height: 1;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-recruit-info-title--lv3 {
    font-size: 3.2rem;
  }
}

/*==============================
TOP ページ
==============================*/
.c-service-list__body {
  margin-top: 15px;
}

.c-service-list__title {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}

.c-service-list__text {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .c-service-list__text {
    margin-top: 15px;
  }
}

/*==============================
下層 ページ
==============================*/
@media screen and (min-width: 768px) {
  .service-page .c-service-list__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0 50px;
  }
  .service-page .c-service-list__item:not(:first-child) {
    margin-top: 60px;
  }
}
@media screen and (min-width: 768px) {
  .service-page .c-service-list__image {
    width: 35%;
    max-width: 445px;
  }
}
@media screen and (min-width: 768px) {
  .service-page .c-service-list__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media screen and (min-width: 768px) {
  .service-page .c-service-list__body {
    width: 60%;
    max-width: 615px;
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .service-page .c-service-list__title {
    font-size: 2.4rem;
    line-height: 1.8;
    text-align: left;
  }
}
@media screen and (min-width: 768px) {
  .service-page .c-service-list__text {
    text-align: left;
    margin-top: 20px;
  }
}

.c-company-main-message {
  font-size: 3.2rem;
  line-height: 1.5;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 12px;
  text-decoration-color: var(--color-yellow);
  text-underline-offset: -1px;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
@media screen and (min-width: 768px) {
  .c-company-main-message {
    font-size: 4rem;
    line-height: 1;
  }
}

.c-company-body {
  margin-top: 40px;
}

.c-breadcrumb {
  width: 100vw;
  height: 35px;
  padding: 5px 4%;
  background: var(--color-breadcrumb-bg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media screen and (min-width: 768px) {
  .c-breadcrumb {
    height: 43px;
    padding: 11px 11%;
  }
}

.c-breadcrumb-item {
  font-family: var(--font-family-en);
  font-size: 1.1rem;
  position: relative;
}
.c-breadcrumb-item::after {
  content: ">";
  padding: 0.1em 1em;
}
.c-breadcrumb-item:first-child {
  color: var(--color-main);
}
.c-breadcrumb-item:last-child::after {
  content: none;
}
@media screen and (min-width: 768px) {
  .c-breadcrumb-item {
    font-size: 1.2rem;
  }
}

.c-breadcrumb-link:hover {
  opacity: 0.7;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.c-pagination {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 10px;
}

.c-pagination-item {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--color-button-bg);
  color: var(--color-white);
  font-family: var(--font-family-en);
  font-size: 2rem;
  font-weight: bold;
  line-height: 45px;
  text-align: center;
}
.c-pagination-item:first-child {
  background: var(--color-button-hover);
  color: var(--color-main);
}
.c-pagination-item:hover {
  background: var(--color-button-hover);
  color: var(--color-main);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.c-pagination-link:hover {
  background: var(--color-button-hover);
  color: var(--color-main);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

/*!
global > font
------------------------------
*/
:root {
  --font-family-base: "Noto Sans JP", sans-serif;
  --font-family-english: "Montserrat", sans-serif;
}

/*!
global > color
------------------------------
*/
:root {
  --color-font-base: #333;
  --color-white: #fff;
  --color-main: #391E88;
  --color-footer-bg: #120E19;
  --color-yellow: #F5F534;
  --color-border: #B067CF;
  --color-header-bg: linear-gradient(180deg, rgba(118,51,164,1) 0%, rgba(13,21,101,1) 100%);
  --color-button-bg: linear-gradient(90deg, rgba(118,51,164,1) 0%, rgba(37,13,101,1) 100%);
  --color-button-hover: #F1EBF8;
  --color-gray: #E8E8E8;
  --color-gray-bg: #F0F0F0;
  --color-gray-border: #DDD;
  --color-copy: #A798B7;
  --color-breadcrumb-bg: #F7F7F7;
  --color-map-font: #240C6A;
  --color-radio-border: #AAAAAA;
  --color-radio-inner: #FDFDFD;
  --color-contact-inner-font: #757575;
}

/*!
global > content-width
------------------------------
*/
:root {
  --width-content-s: 740px;
  --width-content-m: 1110px;
  --width-content-l: 1300px;
}

/*!
foundation > base
------------------------------
*/
html {
  font-size: 62.5%;
}

body {
  line-height: 1.8;
  font-size: 1.4rem;
  color: var(--color-font-base);
  font-family: var(--font-family-base);
  letter-spacing: 0.05em;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 1.5rem;
  }
}

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

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

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

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

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

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

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

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

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

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

dd {
  margin-left: 0;
}

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

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

address {
  font-style: inherit;
}

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

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

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

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

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

select:disabled {
  opacity: inherit;
}

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

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

legend {
  padding: 0;
}

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

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

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

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

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

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

/**
 * Fix appearance for Firefox
 */
[type=number] {
  -moz-appearance: textfield;
}

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

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

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

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

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

caption {
  text-align: left;
}

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

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

/*!
layout > container
------------------------------
*/
.l-container-l, .l-container-m, .l-container-s {
  width: 90%;
  margin: 0 auto;
}

.l-container-s {
  max-width: var(--width-content-s);
}

.l-container-m {
  max-width: var(--width-content-m);
}

.l-container-l {
  max-width: var(--width-content-l);
}

.l-header {
  width: 100vw;
  height: 64px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .l-header {
    height: 84px;
  }
}

.l-header.is-show {
  background-color: var(--color-main);
}

.header-inner {
  padding: 12px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .header-inner {
    padding: 30px;
  }
}

.header-logo__image {
  width: 120px;
  height: 13px;
}
@media screen and (min-width: 768px) {
  .header-logo__image {
    width: 161px;
    height: 17px;
  }
}

.header-list {
  display: none;
  font-family: var(--font-family-english);
  color: var(--color-white);
  font-size: 1.6rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .header-list {
    font-size: 1.4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0 25px;
  }
}

.header-list__link {
  position: relative;
}
.header-list__link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: -2px;
  width: 0;
  height: 1px;
  background-color: var(--color-white);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.header-list__link:hover::after {
  width: calc(100% + 4px);
}

/*==================================
ハンバーガーボタン装飾
==================================*/
.hamburger-button {
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .hamburger-button {
    display: none;
  }
}

.hamburger-line {
  width: 30px;
  border-top: 2px solid var(--color-white);
  border-radius: 2px;
  position: absolute;
  left: 5px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.hamburger-line:nth-child(1) {
  top: 13px;
}
.hamburger-line:nth-child(2) {
  top: 20px;
}
.hamburger-line:nth-child(3) {
  top: 27px;
}

/*==================================
ハンバーガーメニューopen時
==================================*/
.open .header-nav {
  width: 100vw;
  height: 100vh;
  background: var(--color-header-bg);
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 100;
}

.open .header-list {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1000;
}

.open .header-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.open .header-list__item:not(:first-child) {
  margin-top: 20px;
}

.open .hamburger-inner {
  -webkit-transform: rotateY(-360deg);
          transform: rotateY(-360deg);
}

.open .hamburger-line:nth-child(1) {
  top: 12px;
  -webkit-transform: translateY(6px) rotate(-405deg);
          transform: translateY(6px) rotate(-405deg);
}
.open .hamburger-line:nth-child(2) {
  opacity: 0;
}
.open .hamburger-line:nth-child(3) {
  top: 24px;
  -webkit-transform: translateY(-6px) rotate(405deg);
          transform: translateY(-6px) rotate(405deg);
}

.open #js-mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  z-index: 100;
  cursor: pointer;
}

.footer {
  background-color: var(--color-footer-bg);
}

.footer-container {
  padding: 60px 5%;
}

.footer-list {
  color: var(--color-white);
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .footer-list {
    line-height: 1.8;
    gap: 0 20px;
  }
}

.footer-copy {
  text-align: center;
  color: var(--color-copy);
  margin-top: 30px;
  font-size: 1rem;
}

.pagetop {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--color-white);
  position: fixed;
  right: 20px;
  bottom: 10px;
}
.pagetop::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: var(--color-main);
  line-height: 1;
  position: relative;
  width: 2px;
  height: 10px;
  background: var(--color-main);
  left: 24px;
  top: 10px;
}
.pagetop::after {
  content: "";
  width: 10px;
  height: 10px;
  border: 2px solid var(--color-main);
  border-left: 0;
  border-bottom: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: top right;
          transform-origin: top right;
  position: absolute;
  top: 18px;
  right: 25px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.l-contact-container {
  padding: 60px 0;
  background-color: var(--color-gray);
}
@media screen and (min-width: 768px) {
  .l-contact-container {
    padding: 70px 0;
  }
}

.l-contact-text {
  margin-top: 30px;
  text-align: center;
}

.l-contact-button {
  margin-top: 30px;
}

.hero {
  background: url(../image/mv-image.png);
  background-position: center;
  width: 100vw;
  height: 100vh;
}

.hero-body {
  padding-top: 283px;
}
@media screen and (min-width: 768px) {
  .hero-body {
    padding-top: 263px;
  }
}

.hero-title {
  color: var(--color-white);
  font-size: 40px;
  font-weight: bold;
  line-height: 1.1;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .hero-title {
    font-size: 72px;
    line-height: 1;
    text-align: center;
  }
}

.hero-text {
  color: var(--color-white);
  font-size: 16px;
  letter-spacing: 0.1em;
  font-weight: 300;
  text-align: left;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .hero-text {
    font-size: 24px;
    text-align: center;
  }
}

.hero-button {
  margin-top: 48px;
}
@media screen and (min-width: 768px) {
  .hero-button {
    margin-top: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.hero-scroll {
  position: absolute;
  bottom: 0;
  right: 25px;
}
@media screen and (min-width: 768px) {
  .hero-scroll {
    right: 40px;
  }
}
.hero-scroll::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color-white);
  -webkit-animation: circlemove 1.6s ease-in-out infinite, circlemovehide 1.6s ease-out infinite;
          animation: circlemove 1.6s ease-in-out infinite, circlemovehide 1.6s ease-out infinite;
}
.hero-scroll::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10px;
  width: 2px;
  height: 50px;
  background-color: var(--color-white);
}
@media screen and (min-width: 768px) {
  .hero-scroll::after {
    height: 80px;
  }
}

@-webkit-keyframes circlemove {
  0% {
    bottom: 50px;
  }
  100% {
    bottom: 0px;
  }
}

@keyframes circlemove {
  0% {
    bottom: 50px;
  }
  100% {
    bottom: 0px;
  }
}
@media screen and (min-width: 768px) {
  @-webkit-keyframes circlemove {
    0% {
      bottom: 80px;
    }
    100% {
      bottom: 0px;
    }
  }
  @keyframes circlemove {
    0% {
      bottom: 80px;
    }
    100% {
      bottom: 0px;
    }
  }
}
@-webkit-keyframes circlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
@keyframes circlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
.hero-scroll span {
  position: absolute;
  bottom: 60px;
  left: 0;
  color: var(--color-white);
  font-size: 13px;
  font-family: var(--font-family-english);
  font-weight: bold;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
@media screen and (min-width: 768px) {
  .hero-scroll span {
    bottom: 90px;
  }
}

@media screen and (min-width: 768px) {
  .news .l-container-m {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0 50px;
  }
}

.service-button {
  margin-top: 30px;
}

.works-container {
  position: relative;
  height: 100%;
  margin-top: 30px;
  padding-top: 159px;
}
@media screen and (min-width: 768px) {
  .works-container {
    margin-top: 130px;
    padding-top: 0;
  }
}

.works-text__container {
  width: 100vw;
  display: block;
}
@media screen and (min-width: 768px) {
  .works-text__container {
    width: 54%;
    height: auto;
    max-width: 583px;
    margin-left: 41%;
  }
}
@media screen and (min-width: 1080px) {
  .works-text__container {
    max-width: 780px;
  }
}

.works-text__body {
  background-color: var(--color-gray-bg);
  padding-top: 148px;
  padding-bottom: 78px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
  text-align: center;
}
@media screen and (min-width: 500px) {
  .works-text__body {
    padding-top: 226px;
  }
}
@media screen and (min-width: 768px) {
  .works-text__body {
    padding-top: 32%;
    padding-bottom: 32%;
    padding-left: 15%;
    padding-right: 3.5%;
  }
}
@media screen and (min-width: 1080px) {
  .works-text__body {
    padding-left: 39%;
    padding-right: 7%;
  }
}

.works-text__text {
  margin-top: 30px;
}

.works-button {
  margin-top: 30px;
}

.company {
  background: url(../image/circle_bg-sp.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .company {
    background: url(../image/circle_bg-pc.png);
    background-repeat: no-repeat;
    background-size: contain;
  }
}

.company-button {
  margin-top: 48px;
}

.recruit .l-container-m {
  margin: 0 auto;
  margin-bottom: 110px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .recruit .l-container-m {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.recruit-image {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .recruit-image {
    width: 66%;
    height: 346px;
  }
}

.recruit-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.recruit-body {
  width: 100%;
  background-color: var(--color-gray);
  padding: 70px 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .recruit-body {
    width: 44%;
    height: 346px;
  }
}

.recruit-text {
  margin-top: 30px;
}

.recruit-button {
  margin-top: 30px;
}

.works-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px 0;
}
@media screen and (min-width: 500px) {
  .works-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 30px;
  }
}
@media screen and (min-width: 768px) {
  .works-list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.works-item-body {
  margin-top: 15px;
}

.works-item-text {
  font-size: 1.6rem;
  text-align: center;
}

.company-ceo-message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px 0;
}
@media screen and (min-width: 768px) {
  .company-ceo-message {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0 50px;
  }
}

.company-ceo-image {
  width: 100%;
  max-width: 345px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .company-ceo-image {
    max-width: 445px;
  }
}

.company-ceo-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 768px) {
  .company-ceo-body {
    width: 55%;
  }
}

.company-ceo-text:not(:first-child) {
  margin-top: 1em;
}

.company-outline {
  padding-top: 100px;
  padding-bottom: 80px;
}
@media screen and (min-width: 768px) {
  .company-outline {
    padding-top: 140px;
    padding-bottom: 110px;
  }
}

.company-outline-list {
  margin-top: 51px;
}
@media screen and (min-width: 768px) {
  .company-outline-list {
    margin-top: 30px;
  }
}

.company-outline-item {
  border-bottom: 1px solid var(--color-gray-border);
  padding-bottom: 20px;
}
.company-outline-item:not(:first-child) {
  padding-top: 20px;
}
@media screen and (min-width: 768px) {
  .company-outline-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0 50px;
    padding-bottom: 30px;
  }
  .company-outline-item:not(:first-child) {
    padding-top: 30px;
  }
}

.company-outline-title {
  font-size: 1.5rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .company-outline-title {
    width: 222px;
  }
}

.company-outline-detail {
  font-size: 1.5rem;
}

.company-outline-map {
  margin-top: 40px;
  width: 100%;
  height: auto;
  position: relative;
  padding-top: 56.25%;
}
@media screen and (min-width: 768px) {
  .company-outline-map {
    margin-top: 60px;
  }
}

.company-outline-map iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.company-map-link {
  display: block;
  color: var(--color-map-font);
  text-align: left;
}
.company-map-link:hover {
  opacity: 0.7;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.recruit-title {
  color: var(--color-main);
  text-align: center;
}

.recruit-title--en {
  font-family: var(--font-family-english);
  font-size: 4.8rem;
  line-height: 1.2;
  font-weight: bold;
  display: block;
}
@media screen and (min-width: 768px) {
  .recruit-title--en {
    font-size: 7.2rem;
    line-height: 1;
  }
}

.recruit-tite--jp {
  font-size: 1.8rem;
  margin-top: 10px;
  display: block;
}
@media screen and (min-width: 768px) {
  .recruit-tite--jp {
    font-size: 3.2rem;
  }
}

.recruit-heading-text {
  text-align: center;
  font-size: 1.5rem;
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .recruit-heading-text {
    font-size: 1.6rem;
    margin-top: 20px;
  }
}

.recruit-hero {
  margin-top: 40px;
  width: 100vw;
  overflow: hidden;
}

.recruit-hero-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-clip-path: polygon(0 100px, 100% 0, 100% calc(100% - 100px), 0 100%);
          clip-path: polygon(0 100px, 100% 0, 100% calc(100% - 100px), 0 100%);
}

.recruit-main {
  background: url(../image/bg-recruit.png);
  background-size: 188px;
  background-repeat: repeat;
  padding-top: 60px;
  padding-bottom: 80px;
}
@media screen and (min-width: 768px) {
  .recruit-main {
    background-size: 400px;
    padding-top: 90px;
    padding-bottom: 110px;
  }
}

.recruit-outline {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .recruit-outline {
    margin-top: 70px;
  }
}

.recruit-outline-container {
  border: 1px solid var(--color-border);
  border-radius: 6px;
  margin-top: 30px;
  padding: 30px 20px;
}
@media screen and (min-width: 768px) {
  .recruit-outline-container {
    margin-top: 23px;
    padding: 60px 95px;
  }
}

.rectuit-job {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .rectuit-job {
    font-size: 4.3rem;
  }
}

.recruit-outline-list {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .recruit-outline-list {
    margin-top: 30px;
  }
}

.recruit-outline-item {
  border-bottom: 1px solid var(--color-gray-border);
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .recruit-outline-item {
    padding-top: 30px;
    padding-bottom: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .recruit-outline-item:nth-child(1), .recruit-outline-item :nth-child(2) {
    padding-top: 0;
  }
}

.recruit-outline-title {
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .recruit-outline-title {
    width: 180px;
  }
}
@media screen and (min-width: 1080px) {
  .recruit-outline-title {
    width: 260px;
  }
}

.recruit-outline-detail {
  margin-top: 5px;
}
@media screen and (min-width: 768px) {
  .recruit-outline-detail {
    margin-top: 0;
    width: calc(100% - 180px);
  }
}
@media screen and (min-width: 1080px) {
  .recruit-outline-detail {
    width: calc(100% - 260px);
  }
}

.recruit-outline-button {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .recruit-outline-button {
    margin-top: 50px;
  }
}

.recruit-site-text {
  text-align: center;
  font-size: 1.2rem;
  margin-top: 5px;
}

.recruit-movie {
  margin-top: 80px;
}
@media screen and (min-width: 768px) {
  .recruit-movie {
    margin-top: 110px;
  }
}

.recruit-movie-area {
  margin-top: 30px;
  padding-top: 56.25%;
  width: 100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .recruit-movie-area {
    margin-top: 40px;
  }
}

.recruit-video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}

.contact-heading-text {
  text-align: center;
}

.contact-form {
  margin-top: 30px;
  background-color: var(--color-breadcrumb-bg);
  width: 100%;
  padding: 30px;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .contact-form {
    margin-top: 40px;
    padding: 90px 60px 90px 90px;
  }
}

.form-item:not(:first-child) {
  margin-top: 30px;
}

.form-input {
  margin-top: 5px;
}

.form-title {
  font-size: 1.5rem;
  font-weight: 600;
}

.form-require {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-main);
  margin-left: 10px;
}

.form-button {
  margin-top: 50px;
}

/*==============================
コンタクトフォーム　体裁
==============================*/
input[type=radio] {
  position: relative;
  width: 13px;
  height: 13px;
  border: 1px solid var(--color-radio-border);
  border-radius: 50%;
  vertical-align: -2px;
  background-color: var(--color-radio-inner);
}

input[type=radio]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-font-base);
  content: "";
}

.form-input.-purpose {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px 0;
}
@media screen and (min-width: 768px) {
  .form-input.-purpose {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 9px 35px;
  }
}

@media screen and (min-width: 768px) {
  .form-input-purpose:not(:first-child) {
    margin-left: 35px;
  }
}

.form-input-radio {
  display: inline;
  padding-left: 5px;
}
@media screen and (min-width: 768px) {
  .form-input-radio {
    line-height: 1.2;
  }
}

.form-input-name,
.form-input-mail {
  background-color: var(--color-white);
  width: 285px;
  height: 43px;
  border-radius: 6px;
  padding: 8px;
}
@media screen and (min-width: 768px) {
  .form-input-name,
  .form-input-mail {
    width: 300px;
  }
}

.form-input-tel {
  background-color: var(--color-white);
  height: 43px;
  border-radius: 5px;
  width: 285px;
  padding: 8px;
}
@media screen and (min-width: 768px) {
  .form-input-tel {
    width: 300px;
  }
}

.form-input-question {
  background-color: var(--color-white);
  width: 100%;
  max-width: 600px;
  height: 200px;
  border-radius: 6px;
  color: var(--color-contact-inner-font);
  font-size: 1.5rem;
  font-weight: 600;
  padding: 8px;
}

.form-input-select {
  background-color: var(--color-white);
  width: 90%;
  max-width: 285px;
  height: 43px;
  border-radius: 6px;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-contact-inner-font);
  padding: 8px;
}
@media screen and (min-width: 768px) {
  .form-input-select {
    width: 300px;
  }
}

/*==============================
NEWS ARCHIVE
==============================*/
.p-news-list__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}
.p-news-list__header:not(:first-child) {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .p-news-list__header:not(:first-child) {
    margin-top: 15px;
  }
}

.p-news-list__time {
  font-family: var(--font-family-english);
  font-weight: normal;
}
@media screen and (min-width: 768px) {
  .p-news-list__time {
    font-size: 1.4rem;
  }
}

.p-news-list__category {
  font-size: 11px;
  font-weight: 600;
  position: relative;
  margin-left: 20px;
  width: 80px;
  height: 24px;
  border-radius: 20px;
  background-color: var(--color-gray);
  text-align: center;
  display: inline-block;
  z-index: -1;
}

.p-news-list__detail {
  margin-top: 5px;
}
@media screen and (min-width: 768px) {
  .p-news-list__detail {
    margin-top: 0;
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1080px) {
  .p-news-list__detail {
    margin-top: 15px;
  }
  .p-news-list__detail:nth-child(2) {
    margin-top: 0;
  }
}

.p-news-list {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .p-news-list {
    margin-top: 0;
  }
}
@media screen and (min-width: 1080px) {
  .p-news-list {
    display: grid;
    grid-template-columns: 2fr 10fr;
    gap: 0 20px;
  }
}

.p-news-link {
  display: inline-block;
}

/*==============================
NEWS ARTICLE
==============================*/
.article-container .p-news-list__header {
  margin-top: 10px;
}

.p-article-title--lv1 {
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-article-title--lv1 {
    font-size: 3.2rem;
  }
}

.p-article-title--lv2 {
  margin-top: 40px;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.018em;
  padding-left: 20px;
  position: relative;
}
.p-article-title--lv2::before {
  content: "";
  border-left: 6px solid var(--color-main);
  height: 30px;
  border-radius: 10px;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .p-article-title--lv2 {
    margin-top: 60px;
    font-size: 2.4rem;
    letter-spacing: 0.05em;
  }
  .p-article-title--lv2::before {
    content: "";
    height: 40px;
  }
}

.p-article-title--lv3 {
  margin-top: 40px;
  font-size: 1.5rem;
  letter-spacing: 0.018em;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .p-article-title--lv3 {
    font-size: 1.7rem;
    letter-spacing: 0.05em;
  }
}

.p-article-image {
  margin-top: 20px;
  width: 100%;
  height: 100%;
}

.p-article-body {
  margin-top: 20px;
}
.p-article-body:first-child {
  margin-top: 30px;
}

.p-article-text {
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-article-text {
    font-size: 1.6rem;
  }
}

.p-sns-list {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 1em;
}

.p-sns-list {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 1em;
}

.p-page-navigation {
  margin-top: 40px;
}

.p-page-navigation-list {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 15px 0;
}

.p-navigation {
  font-size: 1.2rem;
  color: var(--color-main);
  padding: 10px 20px;
  width: 50%;
}
.p-navigation:first-child {
  border-right: 1px solid var(--color-border);
}
@media screen and (min-width: 768px) {
  .p-navigation {
    font-size: 1.4rem;
  }
}

.p-navigation-link {
  padding: 5px 0;
}
.p-navigation-link:hover {
  opacity: 0.7;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.p-navigation-link.--archive {
  font-size: 1.4rem;
  color: var(--color-main);
  margin-top: 20px;
  display: block;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-navigation-link.--archive {
    font-size: 1.5rem;
    margin-top: 40px;
  }
}

.sub-hero {
  width: 100vw;
  height: 180px;
  background: url(../image/sub-hero-sp.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .sub-hero {
    background: url(../image/sub-hero-pc.png);
    height: 240px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
}

/*==============================
TOP ページ
==============================*/
.p-service-list {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px 0;
}
@media screen and (min-width: 500px) {
  .p-service-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 30px;
  }
}
@media screen and (min-width: 768px) {
  .p-service-list {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0 30px;
  }
}

/*==============================
下層 ページ
==============================*/
@media screen and (min-width: 768px) {
  .service-page .p-service-list {
    display: block;
  }
}

.p-works-swiper__container {
  padding: 0 20px;
  width: 100%;
  position: absolute;
  top: 0;
}
@media screen and (min-width: 768px) {
  .p-works-swiper__container {
    top: 60px;
    left: 50%;
    -webkit-transform: translateX(-99%);
            transform: translateX(-99%);
    width: 52%;
    max-width: 600px;
  }
}
@media screen and (min-width: 1080px) {
  .p-works-swiper__container {
    max-width: 750px;
    -webkit-transform: translateX(-87%);
            transform: translateX(-87%);
  }
}

.swiper-area {
  position: relative;
}

.swiper {
  margin: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  z-index: 1;
  padding-bottom: 30px;
  width: 100%;
  max-width: 335px;
}
@media screen and (min-width: 500px) {
  .swiper {
    max-width: 450px;
  }
}
@media screen and (min-width: 768px) {
  .swiper {
    max-width: 600px;
  }
}
@media screen and (min-width: 1080px) {
  .swiper {
    max-width: 750px;
  }
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  -webkit-transform: translate3d(0px, 0px, 0px);
          transform: translate3d(0px, 0px, 0px);
}

.swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transform: translate3d(0px, 0px, 0px);
          transform: translate3d(0px, 0px, 0px);
  overflow: hidden;
}
@media screen and (min-width: 500px) {
  .swiper-slide {
    max-width: 450px;
  }
}
@media screen and (min-width: 768px) {
  .swiper-slide {
    max-width: 600px;
  }
}
@media screen and (min-width: 1080px) {
  .swiper-slide {
    max-width: 750px;
  }
}

.swiper__image {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}

.swiper-button-prev {
  left: 6px;
}
.swiper-button-prev::after {
  content: "";
  width: 20px;
  height: 20px;
  border-top: solid 5px var(--color-main);
  border-right: solid 5px var(--color-main);
  position: absolute;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

.swiper-button-next {
  right: 6px;
}
.swiper-button-next::after {
  content: "";
  width: 20px;
  height: 20px;
  border-top: solid 5px var(--color-main);
  border-right: solid 5px var(--color-main);
  position: absolute;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.swiper-pagination-bullet-active {
  background-color: var(--color-main);
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  width: initial;
  bottom: 0;
  left: auto;
  right: 0;
}

.p-company-message {
  margin-top: 30px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-company-message {
    margin-top: 15px;
  }
}
@media screen and (min-width: 1080px) {
  .p-company-message {
    margin-top: 30px;
  }
}

/*!
utility > utility
------------------------------
*/
.u-mt30 {
  margin-top: 30px !important;
}

.u-mt40 {
  margin-top: 40px !important;
}

.u-mt50 {
  margin-top: 50px !important;
}

.u-mt60 {
  margin-top: 60px !important;
}

.u-ptb {
  padding: 40px 0 !important;
}
@media screen and (min-width: 768px) {
  .u-ptb {
    padding: 70px 0 !important;
  }
}

.u-ptb-l {
  padding: 60px 0 !important;
}
@media screen and (min-width: 1080px) {
  .u-ptb-l {
    padding: 140px 0 !important;
  }
}

.u-ptb-page {
  padding-top: 40px !important;
  padding-bottom: 80px !important;
}
@media screen and (min-width: 768px) {
  .u-ptb-page {
    padding-top: 70px !important;
    padding-bottom: 110px !important;
  }
}

@media screen and (min-width: 768px) {
  .u-sp {
    display: none;
  }
}

@media screen and (min-width: 500px) {
  .u-tb {
    display: none;
  }
}

.u-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-pc {
    display: block;
  }
}/*# sourceMappingURL=style.css.map */