@charset "UTF-8";
/* リキッドレイアウト対応 */
p,
a {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-decoration: none;
  font-family: inherit;
  font-style: inherit;
}

body {
  min-width: auto;
  background-color: #fff;
}

html {
  font-family: "Noto Sans JP", sans-serif;
  /* Safari 向けアンチエイリアス調整 */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* iOS Safari の自動文字サイズ調整を無効化 */
  -webkit-text-size-adjust: 100%;
}

html {
  scroll-behavior: smooth;
}

/* リキッドレイアウト対応 */
.ch--container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 1024px) {
  .ch--container {
    padding: 0 20px;
  }
}

.ch--inner-container {
  max-width: 880px;
  margin: 0 auto;
}

.section--tpo {
  margin-top: 60px;
  padding-top: 90px;
}
@media screen and (max-width: 1024px) {
  .section--tpo {
    padding-top: 55px;
  }
}

/* SP表示・非表示 */
.sp-only {
  display: none;
}
@media screen and (max-width: 1024px) {
  .sp-only {
    display: block;
  }
}

.pc-only {
  display: block;
}
@media screen and (max-width: 1024px) {
  .pc-only {
    display: none;
  }
}

.nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 25px;
  list-style-type: none;
  padding: 0;
  margin-top: 50px;
}
.nav-links a {
  color: #444;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  /* 16px */
  letter-spacing: 0.96px;
}
.nav-links a svg path {
  stroke: #444;
}
@media (hover: hover) {
  .nav-links a:hover {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: #FF801F;
    cursor: pointer;
  }
  .nav-links a:hover svg path {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    stroke: #ff801f;
  }
}
.nav-links .current {
  color: #FF801F;
  pointer-events: none;
}

.ch-section-title--02 {
  color: #444;
  font-family: "Noto Sans JP";
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 28px */
  letter-spacing: 0.84px;
}
@media screen and (max-width: 1024px) {
  .ch-section-title--02 {
    font-size: 20px;
  }
}

.section--sidebar {
  display: grid;
  grid-template-columns: 1fr 248px;
  gap: 50px;
}
@media screen and (max-width: 1024px) {
  .section--sidebar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-top: 50px;
    gap: 0;
  }
}
.section--sidebar aside {
  background-color: #fff;
  padding: 0;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
          box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
  overflow: hidden;
}
.section--sidebar aside h3 {
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  padding: 15px 20px;
  background-color: #FF801F;
}
.section--sidebar aside ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.section--sidebar aside ul li {
  border-bottom: 1px solid #eee;
}
.section--sidebar aside ul li:last-child {
  border-bottom: none;
}
.section--sidebar aside ul li a {
  color: #444;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 14px;
  display: block;
  padding: 12px 20px;
  position: relative;
}
.section--sidebar aside ul li a:hover {
  background-color: #f8f8f8;
  color: #FF801F;
  padding-left: 25px;
}
.section--sidebar aside ul li a:hover::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background-color: #FF801F;
  border-radius: 50%;
}

.page-404 {
  position: relative;
  width: 100%;
  margin: auto;
  height: calc(100vh - 280px);
}
.page-404 .page-contents {
  font-size: 20px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
}
.page-404 .page-contents a {
  display: inline-block;
  margin-top: 12px;
  color: #ff801f;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .page-404 .page-contents {
    margin: auto;
    height: auto;
    width: 100%;
    font-size: 16px;
    padding: 150px 20px 0;
  }
}

.footer {
  background: #F8F8F8;
  padding: 20px 0 16px;
  margin-top: 130px;
  /* スマホ時のアコーディオン表示 */
}
@media screen and (max-width: 1024px) {
  .footer {
    margin-top: 90px;
    padding: 20px 0 30px;
  }
}
.footer .footer--logo img {
  max-width: 180px;
}
.footer .footer--nav--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 50px;
  margin-top: 28px;
}
.footer .footer--nav--item .footer--nav--item--wrap p {
  color: #444;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.footer .footer--nav--item--wrap svg {
  display: none;
}
.footer .footer--nav--sub-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: 10px;
  margin-top: 20px;
}
.footer .footer--nav--sub-list a {
  color: #444;
  font-family: "Noto Sans JP";
  font-size: 13px;
  line-height: 1.2;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.footer .footer--nav--sub-list a:hover {
  color: #EF8200;
}
.footer .footer--nav--sub-list a span {
  line-height: 1.2;
}
.footer .footer--info {
  margin-top: 40px;
}
.footer .footer--info p {
  color: #000;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 1.44px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .footer .footer--nav--item--wrap::before,
  .footer .footer--nav--item--wrap::after {
    content: "";
    position: absolute;
    right: 12px;
    width: 12px;
    height: 2px;
    background-color: #444;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    margin-right: 12px;
    border-radius: 1px;
    cursor: pointer;
  }
  .footer .footer--nav--item--wrap::after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .footer .footer--nav--item.active .footer--nav--item--wrap::after {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  .footer .footer--nav--item--wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 10px;
  }
  .footer .footer--nav--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: 0;
  }
  .footer .footer--nav--item .footer--nav--item--wrap p {
    padding: 20px 0;
    display: block;
    width: 100%;
  }
  .footer .footer--nav--item {
    border-top: #d9d9d9 solid 1px;
  }
  .footer .footer--nav--item:last-child {
    border-bottom: #d9d9d9 solid 1px;
  }
  .footer .footer--nav--toggle {
    width: 100%;
    background: none;
    border: none;
    padding: 15px 0;
    text-align: left;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer .footer--nav--item.active .footer--nav--icon {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .footer .footer--nav--sub-list {
    display: none;
    padding-left: 0;
    margin: 0;
    list-style: none;
    background-color: #f9f9f9;
    border-top: 1px solid #e0e0e0;
  }
  .footer .footer--nav--item.active .footer--nav--sub-list {
    display: block;
    -webkit-animation: slideDown 0.3s ease-out;
            animation: slideDown 0.3s ease-out;
  }
  .footer .footer--nav--sub-list li {
    border-bottom: 1px solid #e0e0e0;
  }
  .footer .footer--nav--sub-list li:last-child {
    border-bottom: none;
  }
  .footer .footer--nav--sub-list a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 12px 20px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.2;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
  }
  .footer .footer--nav--sub-list a:hover {
    background-color: #f0f0f0;
    color: #333;
  }
  .footer .footer--nav--sub-list span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .footer .footer--nav--sub-list svg {
    margin-left: 8px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .footer .footer--nav--sub-list:last-of-type {
    margin-bottom: 20px;
  }
  .footer .footer--info {
    margin-top: 75px;
  }
  @-webkit-keyframes slideDown {
    from {
      opacity: 0;
      max-height: 0;
    }
    to {
      opacity: 1;
      max-height: 500px;
    }
  }
  @keyframes slideDown {
    from {
      opacity: 0;
      max-height: 0;
    }
    to {
      opacity: 1;
      max-height: 500px;
    }
  }
}

.front-footer {
  margin: 0;
}

.header {
  font-family: "Noto Sans JP", sans-serif;
  padding: 20px 0;
  background: #FFF;
  -webkit-box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, .05);
          box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, .05);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  font-size: 16px;
  font-weight: 700;
  color: #333;
}
@media screen and (max-width: 1024px) {
  .header {
    padding: 14px 0;
  }
}
.header .header--container {
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 1024px) {
  .header .header--container {
    padding: 0 16px;
  }
}
.header .header--nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}
@media screen and (max-width: 1024px) {
  .header .header--nav {
    -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;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 1000;
    padding: 80px 20px;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    gap: 20px;
    overflow-y: auto;
  }
}
.header .header--logo {
  max-width: 145px;
  display: block;
  position: relative;
  z-index: 1001;
}
@media screen and (max-width: 1024px) {
  .header .header--logo {
    max-width: 110px;
  }
}
.header .header--wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
}
.header .header--nav-item--pull .header--nav-item--link {
  position: relative;
  z-index: 0;
  cursor: pointer;
}
.header .header--nav-item--pull .header--nav-item--link::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: -15px;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 8px solid #EF8200;
  z-index: 2;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .header .header--nav-item--pull .header--nav-item--link::before {
    right: -30px;
    bottom: 25px;
  }
}
.header .header--nav-item--pull .header--nav-item--link.active::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.header .header--nav-item--pull ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-column-gap: 25px;
     -moz-column-gap: 25px;
          column-gap: 25px;
  position: absolute;
  left: 0;
  background: #FFF;
  width: 100%;
  padding: 16px 80px 16px 16px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-top: 25px;
  font-size: 14px;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .header .header--nav-item--pull ul {
    display: block;
    position: static;
    -webkit-box-shadow: none;
            box-shadow: none;
    padding: 0;
    -webkit-transform: none;
            transform: none;
    min-width: 100%;
    height: 0;
    overflow: hidden;
    margin-top: 0;
  }
}
.header .header--nav-item--pull ul li:last-child {
  margin-bottom: 0;
}
.header .header--nav-item--pull ul li a {
  color: #333;
  text-decoration: none;
  display: block;
  padding: 5px 0;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.header .header--nav-item--pull ul li a:hover {
  color: #EF8200;
}
@media screen and (min-width: 1024px) {
  .header .header--nav-item--pull:hover ul {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@media screen and (max-width: 1024px) {
  .header .header--nav-item--pull.is-open ul {
    opacity: 1;
    visibility: visible;
    height: auto;
    padding: 0 0 10px 20px;
  }
}
.header .header--nav-item--pull__about ul {
  padding: 16px 218px 16px 16px;
}
@media screen and (max-width: 1024px) {
  .header .header--nav-item--pull__about ul {
    padding: 0;
  }
}
.header .header--nav-item--pull__investors ul {
  padding: 16px 166px 16px 16px;
}
@media screen and (max-width: 1024px) {
  .header .header--nav-item--pull__investors ul {
    padding: 0;
  }
}
@media screen and (max-width: 1024px) {
  .header .header--nav-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    width: 25px;
    position: relative;
    z-index: 1001;
  }
  .header .header--nav-btn span {
    background-color: #FF801F;
    height: 3px;
    width: 100%;
    border-radius: 100vw;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .header .header--nav {
    gap: 25px;
    margin-top: 20px;
  }
  .header .header--nav-item {
    width: 100%;
    padding-right: 40px;
    border-bottom: solid 1px #d9d9d9;
  }
  .header .header--nav-item--link {
    width: 100%;
    display: block;
    padding-bottom: 25px;
  }
}
.header .header--nav-item {
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.header .header--nav-item:hover {
  color: #EF8200;
}
@media screen and (max-width: 1024px) {
  .header.header--is-open .header--nav {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  .header.header--is-open .header--nav-btn span:nth-child(1) {
    -webkit-transform: translateY(5px) rotate(45deg);
            transform: translateY(5px) rotate(45deg);
  }
  .header.header--is-open .header--nav-btn span:nth-child(2) {
    -webkit-transform: translateY(-8px) rotate(-45deg);
            transform: translateY(-8px) rotate(-45deg);
  }
}

/*! destyle.css v4.0.1 | 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;
  min-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 {
  scroll-behavior: smooth;
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  margin: 0;
}

/* 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) */
/* ============================================ */
dd {
  margin-left: 0;
}

/* img */
/* ============================================ */
img {
  max-width: 100%;
  height: auto;
}

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

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

@media screen and (max-width: 769px) {
  .pc {
    display: none !important;
  }
}
@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}
html,
body {
  font-family: "Roboto", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
  height: 100%;
  font-weight: 300;
}
html.border-left-orange,
body.border-left-orange {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 769px) {
  html.border-left-orange,
  body.border-left-orange {
    width: 100%;
  }
}
html.bg-gray,
body.bg-gray {
  background-color: #fcfaf7;
}

a {
  color: #444;
}

p {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.5;
  color: #444;
}

.l-container {
  position: relative;
  padding-top: 110px;
}
@media screen and (max-width: 769px) {
  .l-container {
    padding-top: 85px;
  }
}
.l-container::before {
  content: "";
  display: block;
  background: #ff7d00;
  width: 8px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
}
@media screen and (max-width: 769px) {
  .l-container::before {
    width: 6px;
  }
}
.l-container-service {
  position: relative;
  padding-top: 145px;
}
@media screen and (max-width: 769px) {
  .l-container-service {
    padding-top: 80px;
  }
}
.l-container-service::before {
  content: "";
  display: block;
  background: #ff7d00;
  width: 8px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
}
@media screen and (max-width: 769px) {
  .l-container-service::before {
    width: 6px;
  }
}

.c-head-2 {
  font-size: 32px;
  font-size: 3.2rem;
  font-weight: bold;
  color: #444;
  margin-right: 50px;
  margin-right: 5rem;
  margin-bottom: 40px;
  margin-bottom: 4rem;
  padding-bottom: 12px;
  padding-bottom: 1.2rem;
  border-bottom: 2px solid #D9D9D9;
  border-bottom: 0.2rem solid #D9D9D9;
  position: relative;
}
.c-head-2::after {
  width: 1.5em;
  height: 4px;
  height: 0.4rem;
  border-radius: 0.2rem;
  content: "";
  background-color: #ff7d00;
  position: absolute;
  bottom: -3px;
  bottom: -0.3rem;
  left: 0;
}
@media screen and (max-width: 769px) {
  .c-head-2 {
    font-size: 2rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    padding-bottom: 1.1rem;
    margin-right: 0;
    margin-top: 0rem;
  }
}
.c-head-2-top {
  font-size: 32px;
  font-size: 3.2rem;
  font-weight: bold;
  color: #444;
  margin-top: 20px;
  margin-top: 2rem;
  margin-bottom: 40px;
  margin-bottom: 4rem;
}
.c-head-2-short {
  border-bottom: none;
}
.c-head-2-none {
  border-bottom: none;
}
.c-head-2-none::after {
  display: none;
}
.c-head-block {
  font-size: 26px;
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: -0.52px;
  padding: 3px 0 3px 20px;
  color: #444;
  position: relative;
  margin-top: 15px;
  margin-top: 1.5rem;
  margin-bottom: 40px;
  margin-bottom: 4rem;
}
.c-head-block::after {
  display: block;
  content: "";
  width: 4px;
  height: 100%;
  border-radius: 2px;
  background-color: #ff7d00;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 769px) {
  .c-head-block {
    font-size: 2.4rem;
    line-height: 1.7;
    margin-bottom: 2rem;
  }
}

.c-small-head {
  color: #ff7d00;
  margin-left: 20px;
  margin-left: 2rem;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  position: relative;
}
@media screen and (max-width: 769px) {
  .c-small-head {
    font-size: 1.1rem;
  }
}
.c-small-head::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  background-color: #ff7d00;
  left: -18px;
  top: 11px;
}
@media screen and (max-width: 769px) {
  .c-small-head::before {
    width: 8px;
    top: 8px;
  }
}

.c-breadcrumbs {
  padding: 0 96px 40px;
  padding: 0 9.6rem 4rem;
}
@media screen and (max-width: 769px) {
  .c-breadcrumbs {
    padding: 0 0 1.7rem 2rem;
  }
}
.c-breadcrumbs ul li {
  position: relative;
  display: inline-block;
  font-size: 12px;
  font-size: 1.2rem;
}
@media screen and (max-width: 769px) {
  .c-breadcrumbs ul li {
    font-size: 1rem;
  }
}
.c-breadcrumbs ul li:not(:last-of-type) {
  margin-right: 40px;
  margin-right: 4rem;
  font-weight: bold;
}
@media screen and (max-width: 769px) {
  .c-breadcrumbs ul li:not(:last-of-type) {
    margin-right: 2.3rem;
  }
}
.c-breadcrumbs ul li:not(:last-of-type)::after {
  position: absolute;
  top: 3px;
  right: -25px;
  content: "";
  width: 8px;
  width: 0.8rem;
  height: 8px;
  height: 0.8rem;
  border-right: #a2a2a2 solid 2px;
  border-bottom: #a2a2a2 solid 2px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (max-width: 769px) {
  .c-breadcrumbs ul li:not(:last-of-type)::after {
    width: 0.5rem;
    height: 0.5rem;
    right: -1.5rem;
    border-width: 1px;
  }
}
.c-breadcrumbs ul li a {
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.c-breadcrumbs ul li a:hover {
  opcaity: 0.7;
}

.c-mv {
  width: 100%;
  height: 340px;
  height: 34rem;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 769px) {
  .c-mv {
    height: auto;
  }
}
.c-mv-left {
  position: absolute;
  top: 50%;
  left: 120px;
  left: 12rem;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
@media screen and (max-width: 769px) {
  .c-mv-left {
    left: 2rem;
  }
}
.c-mv-left__head-2 {
  font-size: 40px;
  font-size: 4rem;
}
@media screen and (max-width: 769px) {
  .c-mv-left__head-2 {
    font-size: 2.4rem;
  }
}
.c-mv-right {
  height: 100%;
  width: 80%;
  float: right;
  background-position: right;
  background-repeat: no-repeat;
  background-size: 100%;
  border-radius: 16px 0 0 16px;
}
@media screen and (max-width: 769px) {
  .c-mv-right {
    height: 18rem;
    background-position: center;
    background-size: cover;
    margin-left: auto;
    width: 85%;
  }
}

.c-recruit {
  background-color: #f5eee5;
  padding: 98px 0 110px;
  padding: 9.8rem 0 11rem;
  text-align: center;
  position: relative;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 769px) {
  .c-recruit {
    padding: 4rem 0;
  }
}
.c-recruit::after {
  display: block;
  content: "";
  background: url("../images/common/img-recruit2.png") no-repeat left top;
  background-size: 100%;
  width: 343px;
  height: 400px;
  position: absolute;
  right: 50%;
  bottom: 0;
  -webkit-transform: translate(620px, 0);
          transform: translate(620px, 0);
}
@media screen and (max-width: 769px) {
  .c-recruit::after {
    width: 180px;
    height: 210px;
    -webkit-transform: translate(240px, 0);
            transform: translate(240px, 0);
  }
}
.c-recruit::before {
  display: block;
  content: "";
  background: url("../images/common/img-recruit1.png") no-repeat left top;
  background-size: 100%;
  width: 330px;
  height: 380px;
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translate(-630px, 0);
          transform: translate(-630px, 0);
}
@media screen and (max-width: 769px) {
  .c-recruit::before {
    width: 170px;
    height: 200px;
    -webkit-transform: translate(-240px, 0);
            transform: translate(-240px, 0);
  }
}
.c-recruit__head {
  color: #ff7d00;
  font-size: 26px;
  font-size: 2.6rem;
  margin-bottom: 34px;
  margin-bottom: 3.4rem;
  font-weight: bold;
}
@media screen and (max-width: 769px) {
  .c-recruit__head {
    font-size: 2rem;
  }
}
.c-recruit__description {
  font-size: 32px;
  font-size: 3.2rem;
  color: #666;
  margin-bottom: 16px;
  margin-bottom: 1.6rem;
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 3px;
}
@media screen and (max-width: 769px) {
  .c-recruit__description {
    font-size: 2rem;
    line-height: 1.6;
    letter-spacing: 0px;
  }
}
.c-recruit a {
  display: block;
  border-radius: 8px;
  border: 2px solid #ff7d00;
  background-color: #ff7d00;
  color: #fff;
  padding: 16px 40px;
  padding: 1.6rem 4rem;
  margin: 0 auto;
  width: 555px;
  width: 55.5rem;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  position: relative;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  z-index: 2;
  line-height: 1.1;
}
@media screen and (max-width: 769px) {
  .c-recruit a {
    width: 23rem;
    font-size: 1.6rem;
    padding: 1.5rem;
  }
}
.c-recruit a:hover {
  background-color: #fff;
  color: #ff7d00;
}

.c-tab {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  list-style: none;
  text-align: center;
  cursor: pointer;
  color: #D9D9D9;
  border-bottom: solid 4px #D9D9D9;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.c-tab.is-active {
  color: #FF7D00;
  border-bottom: solid 4px #FF7D00;
  font-weight: bold;
}
.c-tab-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
.c-tab:hover {
  color: #FF7D00;
}
.c-tab.is-active {
  background: #fff;
  color: #FF7D00;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.c-tab-links {
  color: inherit;
  padding: 15px;
  display: block;
}
.c-tab > span {
  display: block;
  padding: 15px;
}

.c-tab-sp {
  padding-left: 24px;
  padding-left: 2.4rem;
  margin-bottom: 80px;
  margin-bottom: 8rem;
}
.c-tab-sp-container {
  background-color: #F5EEE5;
  border-radius: 16px 0 0 16px;
  padding: 48px 24px;
  padding: 4.8rem 2.4rem;
}
.c-tab-sp__small-head {
  color: #FF7D00;
  font-size: 11px;
  font-size: 1.1rem;
  font-family: Roboto;
}
.c-tab-sp__head-2 {
  font-size: 20px;
  font-size: 2rem;
  margin: 8px 0 32px 0;
  margin: 0.8rem 0 3.2rem 0;
}
.c-tab-sp-links {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 56px;
  line-height: 5.6rem;
  padding-left: 16px;
  padding-left: 1.6rem;
  width: 100%;
  height: 56px;
  height: 5.6rem;
  background-color: #fff;
  border-bottom: 1px solid #D9D9D9;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
}
.c-tab-sp-links::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 20px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  display: block;
  width: 7px;
  height: 13px;
  background: url(../images/common/icon-arrow-right.png) no-repeat center center;
  background-size: contain;
}
.c-tab-sp-links.is-active {
  color: #FF7D00;
  font-weight: bold;
  background-color: #FFF0D9;
}
.c-tab-sp-links.is-active::after {
  background: url(../images/common/icon-circle.png) no-repeat center center;
  background-size: contain;
  width: 8px;
  height: 8px;
}

.c-pager {
  padding: 40px 0;
}
.c-pager-list {
  font-size: 0;
  text-align: center;
}
.c-pager-list-item {
  display: inline-block;
  margin: 0 8px;
  vertical-align: middle;
}
.c-pager-list-item span, .c-pager-list-item a {
  display: block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 4px;
  border: solid 1px #ff7d00;
  background-color: #ffffff;
  text-align: center;
  letter-spacing: -0.32px;
  text-align: center;
  color: #ff7d00;
  font-family: Roboto;
  font-size: 16px;
  font-size: 1.6rem;
}
.c-pager-list-item span.c-pager-list-item__dot, .c-pager-list-item a.c-pager-list-item__dot {
  width: 13px;
  font-size: 13px;
  font-size: 1.3rem;
  border: none;
}
.c-pager-list-item span.c-pager-list-item__dot:hover, .c-pager-list-item a.c-pager-list-item__dot:hover {
  background-color: #ffffff;
  color: #ff7d00;
}
.c-pager-list-item span {
  background: #ff7d00;
  color: #fff;
}
.c-pager-list-item a {
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.c-pager-list-item a:hover {
  background-color: #ff7d00;
  color: #fff;
}

.c-form__select {
  width: 100%;
  padding: 15px 20px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: solid 1px #cccccc;
  font-size: 18px;
  font-size: 1.8rem;
  color: #a2a2a2;
  background: url("../images/common/icon-select.png") 93% 50% no-repeat;
  background-size: 8px 6.5px;
  border-radius: 0;
  outline: none;
}
@media screen and (max-width: 769px) {
  .c-form__select {
    font-size: 1.2rem;
    padding: 14px 20px;
  }
}

.c-side-row {
  margin-bottom: 50px;
}

.c-side-head {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  color: #444;
  margin-bottom: 15px;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 769px) {
  .c-side-head {
    font-size: 1.4rem;
  }
}

.l-related {
  padding: 0 0 100px 200px;
  padding: 0 0 10rem 20rem;
  overflow: hidden;
  margin-left: 0px;
}
@media screen and (max-width: 769px) {
  .l-related {
    padding: 0 0 10rem 2rem;
  }
}

.c-related-image {
  position: relative;
  margin-bottom: 20px;
  margin-bottom: 2rem;
}
.c-related-image img {
  width: 100%;
}
.c-related-image__caption {
  border-radius: 4px;
  background-color: #ff7d00;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
  display: inline-block;
  color: #ffffff;
  position: absolute;
  left: 20px;
  bottom: 20px;
  padding: 10px 10px;
  padding: 1rem 1rem;
}
@media screen and (max-width: 769px) {
  .c-related-image__caption {
    font-size: 1.2rem;
    padding: 0.6rem 1.5rem;
    left: 15px;
    bottom: 15px;
  }
}
.c-related__title {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.6;
  color: #444444;
  margin-bottom: 10px;
  margin-bottom: 1rem;
}
@media screen and (max-width: 769px) {
  .c-related__title {
    font-size: 1.6rem;
  }
}
.c-related__text {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.75;
  color: #444444;
}
@media screen and (max-width: 769px) {
  .c-related__text {
    font-size: 1.4rem;
  }
}

.l-info {
  padding: 0 0 120px 96px;
  padding: 0 0 12rem 9.6rem;
}
@media screen and (max-width: 769px) {
  .l-info {
    padding-left: 2.4rem;
    padding-bottom: 8rem;
    width: 100%;
  }
}
.l-info-container {
  padding: 86px 57px 86px;
  padding: 8.6rem 5.7rem 8.6rem;
  background-color: #fff;
  border-radius: 16px 0 0 16px;
}
@media screen and (max-width: 769px) {
  .l-info-container {
    padding: 4.8rem 2.4rem 0.1rem;
    width: 100%;
  }
}
.l-info-inner {
  padding: 0px 50px 0;
  padding: 0rem 5rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1150px;
  margin: 0 auto;
}
@media screen and (max-width: 1180px) {
  .l-info-inner {
    padding: 0;
    display: block;
  }
}
.l-info-main {
  width: 70%;
}
@media screen and (max-width: 1180px) {
  .l-info-main {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.l-info-side {
  width: 24%;
}
@media screen and (max-width: 1180px) {
  .l-info-side {
    width: 100%;
  }
}
.l-info-list {
  margin-bottom: 20px;
  margin-bottom: 2rem;
}
@media screen and (max-width: 769px) {
  .l-info-list {
    margin-bottom: 3rem;
  }
}
.l-info-row {
  padding: 32px 0;
  padding: 3.2rem 0;
  border-bottom: #d9d9d9 solid 1px;
}
.l-info-row:first-child {
  padding-top: 0;
}
@media screen and (max-width: 769px) {
  .l-info-row {
    padding: 2.4rem 0;
  }
}
.l-info-row__head {
  font-size: 0;
  margin-bottom: 15px;
}
@media screen and (max-width: 769px) {
  .l-info-row__head {
    margin-bottom: 1rem;
  }
}
.l-info-row__bottom {
  font-size: 0;
  margin-top: 15px;
}
@media screen and (max-width: 769px) {
  .l-info-row__bottom {
    margin-top: 1rem;
  }
}
.l-info-row-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 769px) {
  .l-info-row-flex {
    display: block;
  }
}
.l-info-row__image {
  width: 160px;
}
@media screen and (max-width: 769px) {
  .l-info-row__image {
    width: 100%;
    margin-bottom: 1rem;
  }
}
.l-info-row__detail {
  width: calc(100% - 200px);
}
@media screen and (max-width: 769px) {
  .l-info-row__detail {
    width: 100%;
  }
}

.c-info-row__bottom {
  margin-top: 15px;
  margin-top: 1.5rem;
  font-size: 0;
}
.c-info-row__bottom-inner {
  display: inline-block;
}
.c-info-row__date {
  font-family: Roboto;
  font-size: 11px;
  font-size: 1.1rem;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-align: left;
  color: #a2a2a2;
  position: relative;
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 5px;
}
@media screen and (max-width: 769px) {
  .c-info-row__date {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
}
.c-info-row__tag {
  display: inline-block;
  width: 100px;
  height: 24px;
  border-radius: 4px;
  border: solid 1px #ff7d00;
  background-color: #ffffff;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 5px 0;
  line-height: 1;
  letter-spacing: -0.24px;
  text-align: center;
  color: #ff7d00;
  margin-right: 8px;
  margin-bottom: 8px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.c-info-row__tag:hover {
  background-color: #ff7d00;
  color: #fff;
}
@media screen and (max-width: 769px) {
  .c-info-row__tag {
    width: 8rem;
    height: 2rem;
    font-size: 1rem;
  }
}
.c-info-row__service {
  color: #444;
  width: auto;
  border-radius: 4px;
  border: solid 1px #ff7d00;
  background-color: #ffffff;
  font-size: 11px;
  font-size: 1.1rem;
  font-weight: bold;
  padding: 5px 10px;
  padding: 0.5rem 1rem;
  letter-spacing: -0.24px;
  margin-right: 8px;
  margin-bottom: 5px;
  white-space: nowrap;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.c-info-row__service span {
  display: inline-block;
  padding-right: 8px;
  padding-right: 0.8rem;
  font-size: 8px;
  font-size: 0.8rem;
}
.c-info-row__service img {
  display: inline-block;
  height: 12px;
  height: 1.2rem;
  vertical-align: middle;
}
@media screen and (max-width: 769px) {
  .c-info-row__service {
    padding: 0.35rem 1rem;
  }
  .c-info-row__service img {
    display: inline-block;
    vertical-align: middle;
    height: 1rem;
  }
}
.c-info-row__text {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: left;
  color: #444444;
}
@media screen and (max-width: 769px) {
  .c-info-row__text p {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}
.c-info-row__title {
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.73;
  color: #444444;
}
@media screen and (max-width: 769px) {
  .c-info-row__title {
    font-size: 1.9rem;
    margin-bottom: 1rem;
  }
}

.l-infodetail-head {
  padding: 10px 0px 80px 0px;
  padding: 1rem 0rem 8rem 0rem;
}
@media screen and (max-width: 769px) {
  .l-infodetail-head {
    padding: 0 0rem 3rem 0rem;
    width: 100%;
  }
}
.l-infodetail-head-container {
  padding: 0px 50px;
  padding: 0rem 5rem;
}
@media screen and (max-width: 1180px) {
  .l-infodetail-head-container {
    padding: 0;
  }
}
@media screen and (max-width: 769px) {
  .l-infodetail-head-container {
    padding: 0;
  }
}
.l-infodetail-body p {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: -0.36px;
  color: #222222;
  margin-bottom: 60px;
  margin-bottom: 6rem;
}
@media screen and (max-width: 769px) {
  .l-infodetail-body p {
    font-size: 1.4rem;
    margin-bottom: 5rem;
  }
}
.l-infodetail-body h2 {
  font-size: 26px;
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: -0.52px;
  color: #444444;
  position: relative;
  padding: 0px 0 0px 20px;
  padding: 0rem 0 0rem 2rem;
  margin: 0 0 40px;
  margin: 0 0 4rem;
}
@media screen and (max-width: 769px) {
  .l-infodetail-body h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
  }
}
.l-infodetail-body h2:before {
  content: "";
  display: block;
  background: #ff7d00;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 2px;
  width: 4px;
  height: 100%;
}
.l-infodetail-body h3 {
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.5;
  color: #ff7d00;
  margin-bottom: 20px;
  margin-bottom: 2rem;
}
@media screen and (max-width: 769px) {
  .l-infodetail-body h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    line-height: 1.8;
  }
}
.l-infodetail-body h4 {
  font-size: 20px;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  color: #444444;
  margin-bottom: 15px;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 769px) {
  .l-infodetail-body h4 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    line-height: 1.8;
  }
}
.l-infodetail-body h5 {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
  color: #ff7d00;
  margin-bottom: 10px;
  margin-bottom: 1rem;
}
@media screen and (max-width: 769px) {
  .l-infodetail-body h5 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    line-height: 1.8;
  }
}
.l-infodetail-body img {
  max-width: 100%;
  margin: 0 auto 80px;
  margin: 0 auto 8rem;
  display: block;
}
@media screen and (max-width: 769px) {
  .l-infodetail-body img {
    margin-bottom: 6.5rem;
  }
}
.l-infodetail-body a {
  text-decoration: underline;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.l-infodetail-body a:hover {
  text-decoration: none;
  opacity: 0.7;
}
.l-infodetail-body table {
  width: 100%;
  margin-bottom: 70px;
  margin-bottom: 7rem;
}
@media screen and (max-width: 769px) {
  .l-infodetail-body table {
    margin-bottom: 6rem;
  }
}
.l-infodetail-body table td, .l-infodetail-body table th {
  border: 1px solid #d9d9d9;
  padding: 10px;
  padding: 1rem;
}
.l-infodetail-body ul {
  margin-bottom: 70px;
  margin-bottom: 7rem;
}
@media screen and (max-width: 769px) {
  .l-infodetail-body ul {
    margin-bottom: 6rem;
  }
}
.l-infodetail-body ul li {
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 10px;
  margin-bottom: 1rem;
  padding-left: 15px;
  padding-left: 1.5rem;
  position: relative;
}
@media screen and (max-width: 769px) {
  .l-infodetail-body ul li {
    font-size: 1.4rem;
  }
}
.l-infodetail-body ul li::after {
  display: block;
  content: "";
  background: #444;
  width: 8px;
  height: 2px;
  margin-top: -1px;
  position: absolute;
  left: 0px;
  top: 50%;
}
.l-infodetail-body blockquote {
  margin-bottom: 70px;
  margin-bottom: 7rem;
  background-color: #eee;
  padding: 20px;
  padding: 2rem;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.6;
}
@media screen and (max-width: 769px) {
  .l-infodetail-body blockquote {
    margin-bottom: 6rem;
    font-size: 1.4rem;
  }
}
.l-infodetail-nav {
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  padding: 40px 20px;
  padding: 4rem 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 60px;
  margin-bottom: 6rem;
}
@media screen and (max-width: 769px) {
  .l-infodetail-nav {
    margin-bottom: 7rem;
    padding: 3.5rem 0;
  }
}
.l-infodetail-prev {
  width: 180px;
}
@media screen and (max-width: 769px) {
  .l-infodetail-prev {
    width: 80px;
  }
}
.l-infodetail-prev a {
  display: block;
  position: relative;
  padding-left: 15px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.l-infodetail-prev a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 769px) {
  .l-infodetail-prev a {
    padding-left: 0;
  }
}
.l-infodetail-prev a::before {
  display: block;
  content: "";
  border-left: 2px solid #ff7d00;
  border-top: 2px solid #ff7d00;
  width: 8px;
  height: 8px;
  margin-top: -5px;
  position: absolute;
  left: 0px;
  top: 50%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (max-width: 769px) {
  .l-infodetail-prev a::before {
    top: 7px;
  }
}
@media screen and (max-width: 769px) {
  .l-infodetail-prev .c-infodetail-nav__title {
    padding-left: 12px;
  }
}
.l-infodetail-golist {
  width: 100px;
  text-align: center;
}
.l-infodetail-golist a {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.61;
  text-align: center;
  color: #ff7d00;
  display: block;
  text-decoration: underline;
}
@media screen and (max-width: 769px) {
  .l-infodetail-golist a {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 769px) {
  .l-infodetail-golist {
    width: 50px;
  }
}
.l-infodetail-next {
  width: 180px;
}
@media screen and (max-width: 769px) {
  .l-infodetail-next {
    width: 80px;
  }
}
.l-infodetail-next a {
  display: block;
  position: relative;
  padding-right: 15px;
}
@media screen and (max-width: 769px) {
  .l-infodetail-next a {
    padding-right: 0;
  }
}
.l-infodetail-next a::before {
  display: block;
  content: "";
  border-right: 2px solid #ff7d00;
  border-top: 2px solid #ff7d00;
  width: 8px;
  height: 8px;
  margin-top: -5px;
  position: absolute;
  right: 0px;
  top: 50%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 769px) {
  .l-infodetail-next a::before {
    top: 7px;
  }
}
@media screen and (max-width: 769px) {
  .l-infodetail-next .c-infodetail-nav__title {
    padding-right: 12px;
    text-align: right;
  }
}
.c-infodetail-head__title {
  font-size: 40px;
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: left;
  color: #222222;
  margin-bottom: 20px;
  margin-bottom: 2rem;
}
@media screen and (max-width: 769px) {
  .c-infodetail-head__title {
    font-size: 2.5rem;
    margin-bottom: 1.6rem;
  }
}
.c-infodetail-head__share {
  float: right;
}
.c-infodetail-head__share p {
  display: inline-block;
  color: #a2a2a2;
  font-size: 14px;
  font-size: 1.4rem;
  vertical-align: middle;
  font-weight: bold;
}
.c-infodetail-head__share ul {
  display: inline-block;
  font-size: 0;
  vertical-align: middle;
}
.c-infodetail-head__share ul li {
  display: inline-block;
  vertical-align: middle;
  margin-left: 25px;
}
.c-infodetail-head__share ul li img {
  width: 26px;
}
.c-infodetail-nav__title {
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.15;
  color: #ff7d00;
  margin-bottom: 7px;
  margin-bottom: 0.7rem;
  display: block;
}
@media screen and (max-width: 769px) {
  .c-infodetail-nav__title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
}
.c-infodetail-nav__text {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  color: #444444;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media screen and (max-width: 769px) {
  .c-infodetail-nav__text {
    font-size: 1.4rem;
    white-space: normal;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-height: 1.8;
  }
}
.c-keywordlist {
  font-size: 0;
}
.c-keywordlist li {
  display: inline-block;
  border-radius: 4px;
  background-color: #fff0d9;
  line-height: 1;
  padding: 8px 10px;
  padding: 0.8rem 1rem;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  margin: 0 8px 8px 0;
  margin: 0 0.8rem 0.8rem 0;
}
@media screen and (max-width: 769px) {
  .c-keywordlist li {
    font-size: 1.2rem;
  }
}
.c-keywordlist li a {
  display: block;
  color: #ff7d00;
}

.c-contact {
  padding: 60px 60px 90px 60px;
  padding: 6rem 6rem 9rem 6rem;
  background-color: #F5EEE5;
  width: 100%;
  margin-bottom: 115px;
  margin-bottom: 11.5rem;
  border-radius: 0 0 0 16px;
  text-align: center;
}
@media screen and (max-width: 769px) {
  .c-contact {
    padding: 5rem 3rem 4rem 3rem;
    margin-bottom: 7.5rem;
  }
}
.c-contact-small-head {
  color: #ff7d00;
  font-size: 16px;
  font-size: 1.6rem;
  font-family: Roboto;
  font-weight: bold;
}
@media screen and (max-width: 769px) {
  .c-contact-small-head {
    font-size: 1.1rem;
  }
}
.c-contact__head-2 {
  font-size: 32px;
  font-size: 3.2rem;
  font-weight: bold;
  color: #444;
  margin-top: 5px;
  margin-top: 0.5rem;
  margin-bottom: 15px;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 769px) {
  .c-contact__head-2 {
    font-size: 2.4rem;
    margin-bottom: 3rem;
  }
}
.c-contact__description {
  margin-bottom: 25px;
  margin-bottom: 2.5rem;
  letter-spacing: 1.5px;
  color: #7b7b7b;
}
@media screen and (max-width: 769px) {
  .c-contact__description {
    margin-bottom: 3rem;
    font-size: 1.4rem;
    letter-spacing: 1px;
  }
}
.c-contact-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 666px;
  margin: 0 auto;
}
@media screen and (max-width: 769px) {
  .c-contact-list {
    width: 100%;
    -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;
  }
}
.c-contact__call {
  max-width: 666px;
  margin: 0 auto;
  display: block;
  background-color: #FF7D00;
  font-size: 18px;
  font-size: 1.8rem;
  color: #fff;
  padding: 20px 150px;
  padding: 2rem 15rem;
  border-radius: 8px;
  position: relative;
  font-weight: bold;
}
@media screen and (max-width: 769px) {
  .c-contact__call {
    margin: 0 auto 2rem;
    border-radius: 8px;
    padding: 17px 20px;
    font-size: 1.6rem;
    width: 100%;
  }
}
.c-contact__call::before {
  position: absolute;
  content: "";
  top: calc(50% - 12px);
  left: calc(50% - 90px);
  display: block;
  width: 25px;
  height: 25px;
  background-image: url(../images/common/icon-call.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.c-contact__call-left {
  max-width: 314px;
  display: block;
  background-color: #FF7D00;
  font-size: 18px;
  font-size: 1.8rem;
  color: #fff;
  padding: 20px 90px;
  padding: 2rem 9rem;
  border-radius: 14px;
  position: relative;
  font-weight: bold;
}
@media screen and (max-width: 769px) {
  .c-contact__call-left {
    margin: 0 auto 2rem;
    border-radius: 8px;
    padding: 20px 20px;
    font-size: 1.6rem;
    width: 100%;
  }
}
.c-contact__call-left::before {
  position: absolute;
  content: "";
  top: calc(50% - 12px);
  left: calc(50% - 90px);
  display: block;
  width: 25px;
  height: 25px;
  background-image: url(../images/common/icon-call.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.c-contact__mail {
  max-width: 666px;
  margin: 0 auto;
  display: block;
  background-color: #fff;
  font-size: 18px;
  font-size: 1.8rem;
  color: #FF7D00;
  padding: 20px 150px;
  padding: 2rem 15rem;
  border: 2px solid #FF7D00;
  border-radius: 8px;
  position: relative;
  font-weight: bold;
  -webkit-transition: all 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.c-contact__mail:hover {
  background-color: #FF7D00;
  color: #fff;
}
.c-contact__mail:hover::before {
  background-image: url(../images/common/icon-mail-white.png);
  background-size: contain;
}
@media screen and (max-width: 769px) {
  .c-contact__mail {
    margin: 0 auto 2rem;
    border-radius: 8px;
    padding: 15px 20px;
    font-size: 1.6rem;
    width: 100%;
  }
}
.c-contact__mail::before {
  position: absolute;
  content: "";
  top: calc(50% - 9px);
  left: calc(50% - 90px);
  display: block;
  width: 25px;
  height: 25px;
  background-image: url(../images/common/icon-mail.png);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 769px) {
  .c-contact__mail::before {
    width: 23px;
    height: 23px;
    left: calc(50% - 80px);
  }
}
.c-contact__mail-right {
  max-width: 314px;
  display: block;
  background-color: #fff;
  font-size: 18px;
  font-size: 1.8rem;
  color: #FF7D00;
  padding: 20px 100px;
  padding: 2rem 10rem;
  border: 2px solid #FF7D00;
  border-radius: 14px;
  position: relative;
  font-weight: bold;
  -webkit-transition: all 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.c-contact__mail-right:hover {
  background-color: #FF7D00;
  color: #fff;
}
.c-contact__mail-right:hover::before {
  position: absolute;
  content: "";
  top: calc(50% - 9px);
  left: calc(50% - 90px);
  display: block;
  width: 25px;
  height: 25px;
  background-image: url(../images/common/icon-mail-white.png);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 769px) {
  .c-contact__mail-right {
    margin: 0 auto 2rem;
    border-radius: 8px;
    padding: 20px 20px;
    font-size: 1.6rem;
    width: 100%;
  }
}
.c-contact__mail-right::before {
  position: absolute;
  content: "";
  top: calc(50% - 9px);
  left: calc(50% - 90px);
  display: block;
  width: 25px;
  height: 25px;
  background-image: url(../images/common/icon-mail.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.c-page {
  padding: 0 96px 78px;
  padding: 0 9.6rem 7.8rem;
}
@media screen and (max-width: 769px) {
  .c-page {
    padding: 0 0 4rem 2rem;
  }
}
.c-page-category {
  display: inline-block;
  padding: 8px 22px;
  padding: 0.8rem 2.2rem;
  margin-bottom: 10px;
  margin-bottom: 1rem;
  font-size: 14px;
  font-size: 1.4rem;
  color: #ff7d00;
  line-height: 1.1;
  background-color: #FFF0D9;
  border-radius: 0.5rem;
  font-weight: bold;
  letter-spacing: 0.2px;
  letter-spacing: 0.02rem;
}
@media screen and (max-width: 769px) {
  .c-page-category {
    padding: 0.5rem 1.3rem;
    font-size: 1.3rem;
  }
}
.c-page-title {
  font-size: 40px;
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 769px) {
  .c-page-title {
    font-size: 2.4rem;
  }
}
.c-page-date {
  padding-top: 10px;
  padding-top: 1rem;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.4;
  color: #666;
}
@media screen and (max-width: 769px) {
  .c-page-date {
    padding-top: 0.8rem;
    font-size: 1.3rem;
  }
}

.is-closed .c-page-title span {
  position: relative;
  display: inline-block;
  padding-right: 145px;
  padding-right: 14.5rem;
}
@media screen and (max-width: 769px) {
  .is-closed .c-page-title span {
    padding-right: 10.7rem;
  }
}
.is-closed .c-page-title span::after {
  content: "受付終了";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  padding: 6px 25px;
  padding: 0.6rem 2.5rem;
  background-color: #fff;
  border: 1px solid #D64141;
  border-radius: 0.5rem;
  color: #D64141;
  font-weight: bold;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.1;
  vertical-align: middle;
}
@media screen and (max-width: 769px) {
  .is-closed .c-page-title span::after {
    padding: 0.4rem 2rem;
    font-size: 1.2rem;
    border-radius: 0.4rem;
  }
}

.l-shuroshien__bg {
  background: url(../images/shuro-shien/bg.png) no-repeat center top;
  background-size: 100%;
}
@media screen and (max-width: 769px) {
  .l-shuroshien__bg {
    background: url(../images/shuro-shien/bg-sp.png) no-repeat center top;
    background-size: 100%;
  }
}

.l-shuroshien__bg__top {
  background: url(../images/shuro-shien/index/bg.png) no-repeat center top;
  background-size: 1366px;
}
@media screen and (max-width: 769px) {
  .l-shuroshien__bg__top {
    background: url(../images/shuro-shien/index/bg-sp.png) no-repeat center top;
    background-size: 100%;
  }
}

.l-creators__bg {
  background: url(../images/creators/bg.png) no-repeat center top;
  background-size: 100%;
}
@media screen and (max-width: 769px) {
  .l-creators__bg {
    background: url(../images/creators/bg-sp.png) no-repeat center top;
    background-size: 100%;
  }
}

.l-creators__bg__top {
  background: url(../images/creators/index/bg.png) no-repeat center top;
  background-size: 1366px;
}
@media screen and (max-width: 769px) {
  .l-creators__bg__top {
    background: url(../images/creators/index/bg-sp.png) no-repeat center top;
    background-size: 100%;
    overflow: hidden;
  }
}

.l-works__bg {
  background: url(../images/works/bg.png) no-repeat center top;
  background-size: 100%;
}
@media screen and (max-width: 769px) {
  .l-works__bg {
    background: url(../images/works/bg-sp.png) no-repeat center top;
    background-size: 100%;
  }
}

.l-works__bg__top {
  background: url(../images/works/index/bg-1.png) no-repeat center top;
  background-size: 100%;
}
@media screen and (max-width: 769px) {
  .l-works__bg__top {
    background: url(../images/works/index/bg-1-sp.png) no-repeat center top;
    background-size: 100%;
  }
}
.l-works__bg__top .l-lowertop-head {
  background: url(../images/works/index/bg-2.png) no-repeat center top;
  background-size: 1366px;
}
@media screen and (max-width: 769px) {
  .l-works__bg__top .l-lowertop-head {
    background: url(../images/works/index/bg-2-sp.png) no-repeat center top;
    background-size: 100%;
  }
}

.c-circle-link {
  position: relative;
  display: inline-block;
  padding: 26px 0 26px 0px;
  min-width: 160px;
  text-align: left;
}
@media screen and (max-width: 769px) {
  .c-circle-link {
    padding: 23px 0;
    min-width: 120px;
  }
}
.c-circle-link__text {
  font-size: 18px;
  font-size: 1.8rem;
  margin-left: 10px;
  margin-left: 1rem;
  color: #333;
  font-weight: bold;
  position: absolute;
  left: 65px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  line-height: 1.3;
  width: calc(100% - 65px);
}
@media screen and (max-width: 769px) {
  .c-circle-link__text {
    font-size: 1.4rem;
    width: calc(100% - 45px);
    left: 45px;
  }
}

.c-circle-link::before {
  display: block;
  content: "";
  background: #ff7d00;
  background-size: 100%;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  position: absolute;
  left: 21px;
  top: 20px;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
@media screen and (max-width: 769px) {
  .c-circle-link::before {
    width: 8px;
    height: 8px;
    left: 22px;
    top: 22px;
  }
}

.c-circle-link:hover::before {
  -webkit-transform: scale(1.5, 1.5);
          transform: scale(1.5, 1.5);
}

.c-circle-link__border {
  position: absolute;
  top: 0;
  left: 0;
  width: 52px;
  height: 52px;
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
  overflow: visible;
  -webkit-transition: all 0.7s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.7s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media screen and (max-width: 769px) {
  .c-circle-link__border {
    -webkit-transform: rotate(20deg) scale(0.7, 0.7);
            transform: rotate(20deg) scale(0.7, 0.7);
  }
}

.c-circle-link__border circle {
  position: absolute;
  top: 0;
  left: 0;
  stroke-linecap: round;
  fill: transparent;
  stroke-width: 1;
  stroke: #ff7d00;
  stroke-dasharray: 160;
  stroke-dashoffset: 20;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transition: all 0.7s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.7s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.c-circle-link__border circle:first-child {
  stroke: #d9d9d9;
}

.c-circle-link:hover .c-circle-link__border circle:first-child {
  -webkit-transform: scale(1.5, 1.5);
          transform: scale(1.5, 1.5);
}

.c-circle-link__border circle:last-child {
  stroke: #ff7d00;
}

.c-circle-link:hover .c-circle-link__border circle:last-child {
  -webkit-transform: scale(1.5, 1.5);
          transform: scale(1.5, 1.5);
  stroke-dasharray: 160;
  stroke-dashoffset: 160;
}

.fadeinanimation {
  -webkit-transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  opacity: 0;
  -webkit-transform: translate(0, 20px);
          transform: translate(0, 20px);
}

.fadeinanimation.on {
  opacity: 1;
  -webkit-transform: translate(0, 0px);
          transform: translate(0, 0px);
}

.c-inquiry__lead {
  max-width: 1060px;
  margin: 0 auto 45px;
  margin: 0 auto 4.5rem;
  line-height: 2;
}
@media screen and (max-width: 769px) {
  .c-inquiry__lead {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
  }
}
.c-inquiry-inner {
  max-width: 850px;
  margin: 0 auto;
}
.c-inquiry-service {
  border: 1px solid #EF8432;
  border-radius: 10px;
  padding: 40px;
  padding: 4rem;
  margin-bottom: 80px;
  margin-bottom: 8rem;
}
@media screen and (max-width: 769px) {
  .c-inquiry-service {
    padding: 4rem 2rem;
    margin-bottom: 4rem;
  }
}
.c-inquiry-service__text {
  font-size: 17px;
  font-size: 1.7rem;
  font-weight: bold;
  margin-bottom: 20px;
  margin-bottom: 2rem;
}
@media screen and (max-width: 769px) {
  .c-inquiry-service__text {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    line-height: 2;
  }
}
.c-inquiry-service__link > li {
  margin-top: 15px;
  margin-top: 1.5rem;
}
.c-inquiry-service__link > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
}
.c-inquiry-service__link > li > a > p {
  width: calc(100% - 70px);
  color: #ff7d00;
  font-size: 15px;
  font-size: 1.5rem;
}
@media screen and (max-width: 769px) {
  .c-inquiry-service__link > li > a > p {
    width: calc(100% - 60px);
    font-size: 1.4rem;
    line-height: 2;
  }
}
.c-inquiry-service__image {
  width: 60px;
}
@media screen and (max-width: 769px) {
  .c-inquiry-service__image {
    width: 50px;
  }
}
.c-inquiry-service__image img {
  width: 100%;
}
.c-inquiry-form-row {
  margin-bottom: 40px;
  overflow: hidden;
}
@media screen and (max-width: 769px) {
  .c-inquiry-form-row {
    margin-bottom: 40px;
  }
}
.c-inquiry-form-row > label {
  padding-top: 15px;
  display: block;
  width: 270px;
  float: left;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  color: #444;
}
@media screen and (max-width: 769px) {
  .c-inquiry-form-row > label {
    padding-top: 0;
    width: 100%;
    float: none;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }
}
.c-inquiry-form-row > label > span {
  display: inline-block;
  vertical-align: middle;
}
.c-inquiry-form-row-input {
  margin-left: 270px;
}
@media screen and (max-width: 769px) {
  .c-inquiry-form-row-input {
    margin: 0;
  }
}

.c-form-must {
  display: inline-block;
  text-align: center;
  border: 1px solid #ff7d00;
  color: #ff7d00;
  border-radius: 5px;
  vertical-align: middle;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1;
  padding: 5px 12px;
  margin-left: 15px;
  margin-left: 1.5rem;
}
@media screen and (max-width: 769px) {
  .c-form-must {
    font-size: 1rem;
    padding: 3px 8px;
    margin-left: 1rem;
  }
}

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

.c-form-text {
  padding: 16px 25px;
  border: 1px solid #D9D9D9;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-appearance: none;
  outline: none;
  border-radius: 0;
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 769px) {
  .c-form-text {
    font-size: 1.3rem;
    padding: 18px 25px;
  }
}

.c-form-radio {
  display: inline-block;
  line-height: 1;
  margin: 0 20px 20px 0;
  margin: 0 2rem 2rem 0;
  font-size: 18px;
  font-size: 1.8rem;
  position: relative;
}
@media screen and (max-width: 769px) {
  .c-form-radio {
    font-size: 1.3rem;
    margin: 0 0 1rem;
    width: 100%;
  }
}

.c-form-radio label {
  background: url("../../assets/images/common/checkbox.png") left 1px no-repeat;
  background-size: 24px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  line-height: 1.4;
  min-height: 23px;
  margin: 0px 0;
  padding: 0px 0 0 30px;
  position: relative;
  vertical-align: top;
}
@media screen and (max-width: 769px) {
  .c-form-radio label {
    font-size: 1.3rem;
    background: url("../../assets/images/common/checkbox.png") left 1px no-repeat;
    background-size: 18px;
    padding-top: 2px;
  }
}

.c-form-radio input[type=radio] {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.c-form-radio input:checked + label {
  background-image: url("../../assets/images/common/checkbox_on.png");
}

.c-form-radio input:disabled + label {
  opacity: 0.7;
}

.c-form-checkbox {
  display: inline-block;
  line-height: 1;
  margin: 0 20px 20px 0;
  margin: 0 2rem 2rem 0;
  font-size: 18px;
  font-size: 1.8rem;
  position: relative;
}
@media screen and (max-width: 769px) {
  .c-form-checkbox {
    font-size: 1.3rem;
    margin: 0 0 1rem;
    width: 100%;
  }
}

.c-form-checkbox label {
  background: url("../../assets/images/common/checkbox_on.png") left 1px no-repeat;
  background-size: 24px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  line-height: 1.4;
  min-height: 23px;
  margin: 0px 0;
  padding: 0px 0 0 30px;
  position: relative;
  vertical-align: top;
}
@media screen and (max-width: 769px) {
  .c-form-checkbox label {
    font-size: 1.3rem;
    background: url("../../assets/images/common/checkbox.png") left 1px no-repeat;
    background-size: 18px;
    padding-top: 2px;
  }
}

.c-form-checkbox input[type=checkbox] {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.c-form-checkbox input:checked + label {
  background-image: url("../../assets/images/common/checkbox_on.pn.png");
}

.c-form-checkbox input:disabled + label {
  opacity: 0.7;
}

.c-form-textarea {
  padding: 13px 5px;
  border: 1px solid #D9D9D9;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 200px;
  -webkit-appearance: none;
  outline: none;
  border-radius: 0;
}
@media screen and (max-width: 769px) {
  .c-form-textarea {
    padding: 20px 25px;
    font-size: 1.4rem;
  }
}

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

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

::-ms-input-placeholder {
  color: #B9B9B9;
}

::placeholder {
  color: #B9B9B9;
}

.c-inquiry-submit {
  display: block;
  border-radius: 8px;
  border: solid 2px #ff7d00;
  background-color: #ff7d00;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
  color: #fff;
  padding: 15px 0;
  padding: 1.5rem 0;
  cursor: pointer;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  width: 100%;
}
@media screen and (max-width: 769px) {
  .c-inquiry-submit {
    font-size: 1.5rem;
    margin-top: 7rem;
  }
}
.c-inquiry-submit:hover {
  color: #ff7d00;
  background: #fff;
}

.c-recruit-fix {
  position: fixed;
  top: 50%;
  right: -2px;
  right: -0.2rem;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  z-index: 1;
}
.c-recruit-fix-item {
  font-size: 0;
}
.c-recruit-fix-item a {
  display: block;
  width: 56px;
  width: 5.6rem;
  height: 194px;
  height: 19.4rem;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  padding: 0 5px;
  padding: 0 0.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: bold;
  vertical-align: middle;
  line-height: 1.5;
  position: relative;
  border-radius: 1rem 0 0 1rem;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.c-recruit-fix-item a span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  white-space: nowrap;
  padding-top: 20px;
  padding-top: 2rem;
}
.c-recruit-fix-item a:hover {
  opacity: 0.7;
}
.c-recruit-fix-item:nth-of-type(1) {
  margin-bottom: 15px;
  margin-bottom: 1.5rem;
}
.c-recruit-fix-item:nth-of-type(1) a {
  background: url(../images/recruit/icon-entry.png) #ff7d00 no-repeat;
  background-position: calc(50% + 0.2rem) 15%;
  background-size: 1.6rem;
  border: 2px solid #ff7d00;
  border: 0.2rem solid #ff7d00;
  color: #fff;
}
.c-recruit-fix-item:nth-of-type(2) a {
  background: url(../images/recruit/icon-event.png) #fff no-repeat;
  background-position: 50% 13%;
  background-size: 2.1rem;
  border: 2px solid #ff7d00;
  border: 0.2rem solid #ff7d00;
  color: #ff7d00;
}

.l-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 35px;
  padding: 3.5rem;
  background: #fff;
}
@media screen and (max-width: 769px) {
  .l-footer {
    -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;
    padding: 3rem 0 1.5rem;
  }
}
.l-footer-bottom {
  border-top: 1px solid #d9d9d9;
  padding: 20px 0;
  width: 100%;
  overflow: hidden;
}

.c-footer-logo {
  width: 20%;
}
@media screen and (max-width: 769px) {
  .c-footer-logo {
    width: auto;
    margin-bottom: 1.5rem;
  }
}
.c-footer-logo a {
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  display: inline-block;
  text-align: center;
}
.c-footer-logo a:hover {
  opcaity: 0.7;
}
.c-footer-logo a span {
  display: block;
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 2px;
  color: #444444;
}
.c-footer-logo a img {
  width: 140px;
  width: 14rem;
}
.c-footer-menus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: calc(80% - 210px);
}
.c-footer-menus-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px 0 3.5 rem;
  padding: 1.5rem 0 3.5 rem;
}
.c-footer-menus-contents-list {
  min-width: 20%;
}
.c-footer-menus-contents-list:nth-child(1) {
  min-width: 28%;
}
.c-footer-menus-contents-list:nth-child(2) {
  min-width: 23%;
}
.c-footer-menus-contents-list:nth-child(3) {
  min-width: 19%;
}
.c-footer-menus-contents-list:nth-child(4) {
  min-width: 15%;
}
.c-footer-menus-contents-list:nth-child(5) {
  min-width: 10%;
}
.c-footer-menus-contents-list p {
  color: #666;
  font-weight: bold;
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 20px;
  margin-bottom: 2rem;
}
.c-footer-menus-contents-list p a {
  color: #666;
}
.c-footer-menus-contents-list p a:hover {
  text-decoration: underline;
}
.c-footer-menus-contents-list ul li a {
  color: #7b7b7b;
  font-size: 12px;
  font-size: 1.2rem;
  margin-bottom: 15px;
  margin-bottom: 1.5rem;
  display: block;
}
.c-footer-menus-contents-list ul li a:hover {
  text-decoration: underline;
}
.c-footer-menus-contents-link {
  min-width: 30%;
  padding-left: 15%;
}
.c-footer-menus-contents-link ul li a {
  color: #7b7b7b;
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 15px;
  margin-bottom: 1.5rem;
  display: block;
}
.c-footer-menus-contents-link ul li a:hover {
  text-decoration: underline;
}
.c-footer-services {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
}
.c-footer-services a {
  color: #ff7d00;
  display: block;
  font-weight: bold;
  position: relative;
  margin-left: 30px;
  margin-left: 3rem;
}
.c-footer-services a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 1180px) {
  .c-footer-services a {
    font-size: 1.2rem;
  }
}
.c-footer-services a:not(:first-of-type) {
  margin-left: 40px;
  margin-left: 4rem;
}
.c-footer-services a:not(:last-of-type) {
  margin-right: 20px;
  margin-right: 2rem;
}
.c-footer-services a:not(:last-of-type)::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: #b9b9b9;
  right: -20px;
  right: -2rem;
  top: 0;
}
.c-footer-services__icon {
  position: absolute;
  left: -30px;
  left: -3rem;
  top: -5px;
  top: -0.5rem;
}
@media screen and (max-width: 1180px) {
  .c-footer-services__icon {
    top: 0;
  }
}
.c-footer-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 210px;
}
.c-footer-icons__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px;
  margin-bottom: 2rem;
}
@media screen and (max-width: 769px) {
  .c-footer-icons__lists {
    margin-bottom: 1rem;
  }
}
.c-footer-icons__lists a {
  display: block;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.c-footer-icons__lists a:not(:last-of-type) {
  margin-right: 20px;
  margin-right: 2rem;
}
@media screen and (max-width: 769px) {
  .c-footer-icons__lists a:not(:last-of-type) {
    margin-right: 3rem;
  }
}
.c-footer-icons__lists a:hover {
  opcaity: 0.7;
}
.c-footer-icons__lists a img {
  width: 26px;
}
@media screen and (max-width: 769px) {
  .c-footer-icons__lists a img {
    width: 26px;
  }
}
.c-footer-contact a {
  display: block;
  margin: 0 auto 20px;
  margin: 0 auto 2rem;
  max-width: 314px;
  border-radius: 8px;
  border: solid 2px #ff7d00;
  background-color: #ff7d00;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  color: #fff;
  padding: 10px 0;
  padding: 1rem 0;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.c-footer-contact a:hover {
  color: #ff7d00;
  background: #fff;
}
.c-footer-contact-tel {
  color: #ff7d00;
  font-size: 26px;
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 30px;
  position: relative;
  padding-left: 30px;
  white-space: nowrap;
}
.c-footer-contact-tel::before {
  display: block;
  content: "";
  background: url("../images/common/icon-tel.webp") no-repeat left center;
  background-size: 100%;
  width: 24px;
  height: 24px;
  position: absolute;
  left: 0;
  top: 2px;
}
.c-footer-contact-tel-time {
  text-align: center;
  font-size: 11px;
  font-size: 1.1rem;
  color: #444;
  line-height: 1;
  margin: 5px 0 10px;
}
.c-footer-bottom-menu {
  float: left;
}
.c-footer-bottom-menu > li {
  display: inline-block;
  margin-right: 20px;
}
.c-footer-bottom-menu > li > a {
  display: block;
  line-height: 1;
  font-size: 14px;
  font-size: 1.4rem;
  color: #7b7b7b;
  position: relative;
  padding: 1px 22px 1px 0;
}
.c-footer-bottom-menu > li > a::after {
  display: block;
  content: "";
  background: url("../images/common/icon-blank-gray.webp") no-repeat left center;
  background-size: 100%;
  width: 14px;
  height: 14px;
  position: absolute;
  right: 0;
  top: 0px;
}
.c-footer-bottom-menu > li > a:hover {
  text-decoration: underline;
}
.c-footer-copyrights {
  color: #cccccc;
  font-size: 10px;
  font-size: 1rem;
  float: right;
  white-space: nowrap;
}
@media screen and (max-width: 769px) {
  .c-footer-copyrights {
    font-size: 0.8rem;
    color: #ccc;
    text-align: center;
    float: none;
  }
}

.c-footercontact {
  background-color: #f5eee5;
  padding: 75px 0;
  padding: 7.5rem 0;
}
@media screen and (max-width: 769px) {
  .c-footercontact {
    padding: 5.2rem 0;
  }
}
.c-footercontact__inner {
  margin: 0 auto;
}
.c-footercontact__head {
  margin-bottom: 45px;
  margin-bottom: 4.5rem;
}
@media screen and (max-width: 769px) {
  .c-footercontact__head {
    margin-bottom: 2.7rem;
  }
}
.c-footercontact__title {
  color: #444;
  font-size: 32px;
  font-size: 3.2rem;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 769px) {
  .c-footercontact__title {
    font-size: 2.4rem;
  }
}
.c-footercontact__title span {
  position: relative;
  display: inline-block;
  padding-bottom: 13px;
  padding-bottom: 1.3rem;
}
@media screen and (max-width: 769px) {
  .c-footercontact__title span {
    padding-bottom: 0;
  }
}
.c-footercontact__title span::after {
  position: absolute;
  content: "";
  width: 50px;
  width: 5rem;
  height: 4px;
  height: 0.4rem;
  background-color: #ff7d00;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  border-radius: 0.5rem;
}
@media screen and (max-width: 769px) {
  .c-footercontact__title span::after {
    display: none;
  }
}
.c-footercontact__btn {
  font-size: 0;
  text-align: center;
  vertical-align: top;
}
.c-footercontact__btn-item {
  display: inline-block;
  margin: 0 2.5% 25px;
  margin: 0 2.5% 2.5rem;
  width: 45%;
  max-width: 400px;
  max-width: 40rem;
  padding: 22px 20px;
  padding: 2.2rem 2rem;
  font-size: 20px;
  font-size: 2rem;
  color: #fff;
  border: 2px solid #ff7d00;
  border: 0.2rem solid #ff7d00;
  border-radius: 1.5rem;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  line-height: 1.6;
  font-weight: bold;
}
@media screen and (max-width: 769px) {
  .c-footercontact__btn-item {
    width: 72%;
    padding: 1rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 1rem 2.4rem;
    font-size: 1.6rem;
    border-radius: 1rem;
  }
}
.c-footercontact__btn-item-1 {
  background-color: #ff7d00;
  color: #fff;
}
.c-footercontact__btn-item-1:hover {
  background-color: #fff;
  color: #ff7d00;
}
.c-footercontact__btn-item-2 {
  background-color: #fff;
  color: #ff7d00;
}
.c-footercontact__btn-item-2:hover {
  background-color: #ff7d00;
  color: #fff;
}
.c-footercontact__text {
  margin: 0 2.5%;
  text-align: center;
  padding-top: 5px;
  padding-top: 0.5rem;
  color: #444;
  font-size: 0;
  font-weight: bold;
}
@media screen and (max-width: 769px) {
  .c-footercontact__text {
    padding-top: 0.2rem;
  }
}
.c-footercontact__text span {
  font-size: 32px;
  font-size: 3.2rem;
  color: #ff7d00;
  display: inline-block;
  vertical-align: middle;
  padding: 0 0 0 32px;
  padding: 0 0 0 3.2rem;
  background: url(../../images/common/icon-tel.webp) no-repeat left 55%;
  background-size: 2.8rem;
  font-family: roboto;
}
@media screen and (max-width: 769px) {
  .c-footercontact__text span {
    font-size: 2.8rem;
    line-height: 1;
  }
}
.c-footercontact__text small {
  font-size: 16px;
  font-size: 1.6rem;
  display: inline-block;
  vertical-align: middle;
  margin-left: 25px;
}
@media screen and (max-width: 769px) {
  .c-footercontact__text small {
    display: block;
    font-size: 1.4rem;
    margin-top: 0.6rem;
    margin-left: 0px;
  }
}

.c-footerform-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 769px) {
  .c-footerform-list {
    display: block;
  }
}
.c-footerform-item {
  width: 50%;
  height: 452px;
  height: 45.2rem;
  position: relative;
}
@media screen and (max-width: 769px) {
  .c-footerform-item {
    width: 100%;
    height: 23rem;
  }
}
.c-footerform .item__event {
  background: url(../../images/recruit/bg-eventform.jpg) no-repeat center center;
  background-size: cover;
}
.c-footerform .item__entry {
  background: url(../../images/recruit/bg-entryform.jpg) no-repeat center center;
  background-size: cover;
}
.c-footerform-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  padding: 0 20px;
  padding: 0 2rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.c-footerform__title {
  color: #fff;
  font-size: 26px;
  font-size: 2.6rem;
  line-height: 1.6;
  margin-bottom: 10px;
  margin-bottom: 1rem;
  text-align: center;
}
@media screen and (max-width: 769px) {
  .c-footerform__title {
    font-size: 2rem;
    margin-bottom: 1.8rem;
  }
}
.c-footerform__btn {
  display: inline-block;
  padding: 20px 80px;
  padding: 2rem 8rem;
  text-align: center;
  color: #fff;
  background-color: #ff7d00;
  font-size: 18px;
  font-size: 1.8rem;
  border-radius: 1rem;
  font-weight: bold;
  border: 2px solid #ff7d00;
  border: 0.2rem solid #ff7d00;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
@media screen and (max-width: 769px) {
  .c-footerform__btn {
    font-size: 1.6rem;
    padding: 1.4rem 8rem;
    border-radius: 0.8rem;
  }
}
.c-footerform__btn:hover {
  color: #ff7d00;
  background-color: #fff;
}

.c-goservicetop {
  background: #fff;
  padding: 10px 100px;
  padding: 1rem 10rem;
  border-bottom: 1px solid #f5eee5;
}
@media screen and (max-width: 769px) {
  .c-goservicetop {
    padding: 1rem 2rem;
    font-size: 1rem;
    border-bottom: 1px solid #d9d9d9;
  }
}
.c-goservicetop a {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  color: #a2a2a2;
  font-weight: bold;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
@media screen and (max-width: 769px) {
  .c-goservicetop a {
    padding-left: 10px;
    font-weight: normal;
  }
}
.c-goservicetop a::before {
  position: absolute;
  top: 3px;
  left: 0px;
  content: "";
  width: 8px;
  width: 0.8rem;
  height: 8px;
  height: 0.8rem;
  border-left: #a2a2a2 solid 2px;
  border-top: #a2a2a2 solid 2px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media screen and (max-width: 769px) {
  .c-goservicetop a::before {
    top: 2px;
    width: 0.6rem;
    height: 0.6rem;
  }
}
.c-goservicetop a:hover {
  opcaity: 0.7;
}

.c-servicenav {
  padding: 40px 0;
  padding: 4rem 0;
  text-align: center;
}
.c-servicenav-logo {
  display: inline-block;
  margin-bottom: 30px;
  margin-bottom: 3rem;
}
.c-servicenav-logo img {
  width: 119px;
}
.c-servicenav-list {
  font-size: 0;
}
.c-servicenav-list li {
  display: inline-block;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.13;
  border-left: 1px solid #d9d9d9;
}
.c-servicenav-list li a {
  display: block;
  color: #666666;
  padding: 3px 30px;
  padding: 0.3rem 3rem;
}

.l-recruit-footer {
  background: #fff;
  padding: 37px 0 20px 0;
  padding: 3.7rem 0 2rem 0;
}
@media screen and (max-width: 769px) {
  .l-recruit-footer {
    padding: 2rem 0 1rem;
  }
}

.c-recruit-footer-logo {
  display: none;
}
@media screen and (max-width: 769px) {
  .c-recruit-footer-logo {
    display: block;
    width: 140px;
    margin: 0 auto 1.5rem;
  }
}
.c-recruit-footer-logo img {
  max-width: 100%;
}
.c-recruit-footer-menu {
  margin-bottom: 30px;
  margin-bottom: 3rem;
}
@media screen and (max-width: 769px) {
  .c-recruit-footer-menu {
    display: none;
  }
}
.c-recruit-footer-menu ul {
  text-align: center;
}
.c-recruit-footer-menu ul li {
  display: inline-block;
  margin: 0 20px;
}
.c-recruit-footer-menu ul li a {
  display: block;
  font-size: 17px;
  font-size: 1.7rem;
  font-weight: bold;
  padding: 10px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  color: #a2a2a2;
}
.c-recruit-footer-menu ul li a:hover {
  opacity: 0.7;
}
.c-recruit-footer-icons__lists {
  text-align: center;
  margin-bottom: 45px;
  margin-bottom: 4.5rem;
}
@media screen and (max-width: 769px) {
  .c-recruit-footer-icons__lists {
    margin-bottom: 1.5rem;
  }
}
.c-recruit-footer-icons__lists a {
  display: inline-block;
  margin: 0 20px;
}
@media screen and (max-width: 769px) {
  .c-recruit-footer-icons__lists a {
    margin: 0 10px;
  }
}
.c-recruit-footer-icons__lists a img {
  width: 25px;
}
.c-recruit-footer-bottom {
  margin: 0 40px;
  margin: 0 4rem;
  border-top: 1px solid #d9d9d9;
  padding-top: 25px;
  padding-top: 2.5rem;
}
@media screen and (max-width: 769px) {
  .c-recruit-footer-bottom {
    border-top: none;
    padding-top: 0rem;
  }
}
.c-recruit-footer-bottom-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 769px) {
  .c-recruit-footer-bottom-inner {
    display: block;
  }
}
.c-recruit-footer-bottom ul {
  width: calc(100% - 300px);
}
@media screen and (max-width: 769px) {
  .c-recruit-footer-bottom ul {
    display: none;
  }
}
.c-recruit-footer-bottom ul li {
  display: inline-block;
  margin: 0 20px 0 0;
}
.c-recruit-footer-bottom ul li a {
  display: block;
  font-size: 14px;
  font-size: 1.4rem;
  padding: 10px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  color: #a2a2a2;
  padding: 0 25px 0 0;
  position: relative;
}
.c-recruit-footer-bottom ul li a:hover {
  opacity: 0.7;
}
.c-recruit-footer-bottom ul li a::after {
  content: "";
  display: block;
  position: absolute;
  right: 0px;
  top: 0px;
  background: url("../../assets/images/common/icon-blank.webp") 0 0 no-repeat;
  background-size: 100%;
  width: 18px;
  height: 18px;
  opacity: 0.3;
}
.c-recruit-footer-bottom .copyrights {
  width: 300px;
  text-align: right;
  font-size: 10px;
  font-size: 1rem;
  color: #ccc;
  white-space: nowrap;
}
@media screen and (max-width: 769px) {
  .c-recruit-footer-bottom .copyrights {
    width: 100%;
    text-align: center;
  }
}

.l-header {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  padding: 0 30px;
  padding: 0 3rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 30px;
  z-index: 2;
}
.l-header.is-bg-white {
  background: #fff;
}
@media screen and (max-width: 1180px) {
  .l-header {
    padding: 0 1.5rem;
  }
}
@media screen and (max-width: 769px) {
  .l-header {
    padding: 0 2.5rem 0 1.2rem;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
  }
}
.l-header-left {
  position: absolute;
  left: 30px;
  left: 3rem;
  top: 30px;
  top: 3rem;
  z-index: 30;
}
@media screen and (max-width: 1180px) {
  .l-header-left {
    left: 1.5rem;
  }
}
@media screen and (max-width: 769px) {
  .l-header-left {
    left: 0px;
    top: 0rem;
    width: 100%;
  }
}
.l-header-left > a {
  display: inline-block;
}
@media screen and (max-width: 769px) {
  .l-header-left > a {
    position: absolute;
    left: 2rem;
    top: 1.5rem;
  }
}
.l-header-right {
  position: absolute;
  right: 30px;
  right: 3rem;
  top: 0px;
  top: 0rem;
  width: calc(100% - 240px);
}
@media screen and (max-width: 1180px) {
  .l-header-right {
    width: calc(100% - 150px);
  }
}
@media screen and (max-width: 769px) {
  .l-header-right {
    display: block !important;
    position: absolute;
    z-index: 20;
    height: 100vh;
    width: 100%;
    background-color: #fff;
    padding: 7.5rem 2rem 2rem;
    right: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-transition: opacity 1s;
    transition: opacity 1s;
    opacity: 0;
    pointer-events: none;
    overflow: scroll;
  }
}
.l-header-rightlogo {
  position: absolute;
  right: 0px;
  right: 0rem;
  top: 25px;
  width: 120px;
  width: 12rem;
  text-align: right;
}
.l-header-menu {
  padding: 0px 0;
  padding: 0rem 0;
  position: absolute;
  text-align: right;
  font-size: 0;
  top: 27px;
}
@media screen and (max-width: 769px) {
  .l-header-menu {
    position: relative;
    top: 0;
    text-align: left;
    font-size: 1.6rem;
    height: 100%;
    overflow: auto;
  }
}
.l-header-bottom {
  position: absolute;
  right: 30px;
  right: 3rem;
  top: 38px;
  width: 70%;
  height: 26px;
  text-align: right;
  padding: 0px 245px 0 0;
}

.l-header-global {
  height: 90px;
}
@media screen and (max-width: 769px) {
  .l-header-global {
    height: 80px;
  }
}
@media screen and (max-width: 769px) {
  .l-header-global .l-header-left {
    height: 70px;
  }
}
.l-header-global .l-header-menu {
  right: 18vw;
}
@media screen and (max-width: 1180px) {
  .l-header-global .l-header-menu {
    right: 100px;
  }
}
@media screen and (max-width: 769px) {
  .l-header-global .l-header-menu {
    right: 0px;
  }
}

.l-header-service {
  height: 125px;
}
@media screen and (max-width: 769px) {
  .l-header-service {
    height: 80px;
  }
}
.l-header-service .l-header-right {
  top: 50px;
  top: 5rem;
  right: 5px;
  right: 0.5rem;
}
.l-header-service .l-header-menu {
  right: 0vw;
  top: 22px;
}
@media screen and (max-width: 1180px) {
  .l-header-service .l-header-menu {
    right: 20px;
    top: 27px;
  }
}
@media screen and (max-width: 769px) {
  .l-header-service .l-header-menu {
    right: 0px;
  }
}

.l-header-recruit {
  height: 90px;
}
@media screen and (max-width: 769px) {
  .l-header-recruit {
    height: 80px;
  }
}
@media screen and (max-width: 769px) {
  .l-header-recruit .l-header-left {
    height: 70px;
  }
}
.l-header-recruit .l-header-menu {
  right: 11vw;
}
@media screen and (max-width: 1180px) {
  .l-header-recruit .l-header-menu {
    right: 150px;
  }
}
@media screen and (max-width: 769px) {
  .l-header-recruit .l-header-menu {
    right: 0px;
  }
}

.c-header__logo {
  width: 180px;
  width: 18rem;
}
@media screen and (max-width: 1180px) {
  .c-header__logo {
    width: 12rem;
    position: relative;
    top: 0.7rem;
  }
}
.c-header__logo-right {
  width: 120px;
  width: 12rem;
}
.c-header__logo-text {
  font-size: 11px;
  font-size: 1.1rem;
  font-weight: bold;
  display: inline-block;
  padding-left: 10px;
  position: relative;
}
.c-header__logo-text::before {
  content: "";
  position: absolute;
  border-left: 7px solid #ff7d00;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-right: 4px solid transparent;
  left: 0px;
  top: 2px;
}
.c-header-menu {
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 769px) {
  .c-header-menu {
    display: block;
  }
}
.c-header-menu__item {
  display: block;
  color: #666;
  font-weight: bold;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.c-header-menu__item > span {
  display: block;
  font-size: 16px;
  font-size: 1.6rem;
  padding: 19px 2.1vw;
  padding: 1.9rem 2.1vw;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
@media screen and (max-width: 1180px) {
  .c-header-menu__item > span {
    font-size: 1.5rem;
    padding: 2rem 1vw;
  }
}
@media screen and (max-width: 769px) {
  .c-header-menu__item > span {
    font-size: 1.9rem;
    color: #ff7d00;
    padding: 1.45rem 0;
    -webkit-transform: translate(0, 90%);
            transform: translate(0, 90%);
    -webkit-transition: all 1.25s 1.5s ease;
    transition: all 1.25s 1.5s ease;
  }
}
.c-header-menu__item:hover {
  color: #ff7d00;
}
@media screen and (max-width: 769px) {
  .c-header-menu__item.icon-blank > span::after {
    content: "";
    display: inline-block;
    margin-left: 7px;
    background: url("../../assets/images/common/icon-blank-or.webp") 0 0 no-repeat;
    background-size: 100%;
    width: 15px;
    height: 15px;
  }
}
.c-header-menu__item--inquery {
  display: block;
  font-size: 16px;
  font-size: 1.6rem;
  padding: 12px 0;
  padding: 1.2rem 0;
  color: #ff7d00;
  font-weight: bold;
  text-align: center;
}
.c-header-menu__item--inquery .inquery-image {
  margin-bottom: 5px;
  margin-bottom: 0.5rem;
}
.c-header-menu-list {
  position: absolute;
  display: none;
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 2px 3px 5px 0px rgba(0, 0, 0, .15);
          box-shadow: 2px 3px 5px 0px rgba(0, 0, 0, .15);
  z-index: 10;
  background-color: #fff;
  font-size: 14px;
  font-size: 1.4rem;
  text-align: left;
}
@media screen and (max-width: 1300px) {
  .c-header-menu-list {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 769px) {
  .c-header-menu-list {
    position: relative;
    -webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
            box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
    border-radius: 0px;
    padding-bottom: 20px;
  }
}
.c-header-menu-list li {
  min-width: 145px;
  min-width: 14.5rem;
}
.c-header-menu-list li a {
  color: #666;
  padding: 15px 25px;
  padding: 1.5rem 2.5rem;
  display: block;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  white-space: nowrap;
}
@media screen and (max-width: 769px) {
  .c-header-menu-list li a {
    padding: 1.2rem 2rem;
  }
}
.c-header-menu-list li a:hover {
  color: #fff;
  background-color: #ff7d00;
}
.c-header-menu.has-lists .c-header-menu__item > span {
  margin-right: 5px;
}
@media screen and (max-width: 769px) {
  .c-header-menu.has-lists .c-header-menu__item > span {
    margin-right: 0;
  }
}
.c-header-menu.has-lists .c-header-menu__item > span::after {
  content: "";
  position: absolute;
  border-top: 7px solid #ff7d00;
  border-right: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 4px solid transparent;
  right: 13px;
  top: 25px;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
@media screen and (max-width: 1180px) {
  .c-header-menu.has-lists .c-header-menu__item > span::after {
    right: 0;
    top: 14px;
  }
}
@media screen and (max-width: 769px) {
  .c-header-menu.has-lists .c-header-menu__item > span::after {
    border-top: 9px solid #ff7d00;
    border-right: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid transparent;
    right: 15px;
    top: 18px;
  }
}
.c-header-menu.has-lists .c-header-menu__item.is-shown span::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  top: 20px;
}
@media screen and (max-width: 769px) {
  .c-header-menu.has-lists .c-header-menu__item.is-shown span::after {
    top: 15px;
  }
}
.c-header-tel {
  padding: 2px 0 2px 30px;
  font-weight: bold;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1;
  color: #ff7d00;
  display: inline-block;
  position: relative;
  vertical-align: middle;
}
.c-header-tel::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  background: url("../images/common/icon-tel.webp") 0 0 no-repeat;
  background-size: 100%;
  width: 24px;
  height: 24px;
}
.c-header-date {
  display: inline-block;
  font-size: 15px;
  font-size: 1.5rem;
  margin-left: 20px;
  vertical-align: middle;
}
.c-header-mobile {
  display: inline-block;
  font-size: 11px;
  font-size: 1.1rem;
  vertical-align: middle;
  margin-left: 20px;
}
.c-header-contact {
  position: absolute;
  right: 0px;
  right: 0rem;
  top: 36px;
}
@media screen and (max-width: 1180px) {
  .c-header-contact {
    width: 100px;
    padding-left: 20px;
    right: 1.5reml;
  }
}
.c-header-contact.is-small {
  width: 240px;
  top: auto;
  bottom: -8px;
}
.c-header-contact.is-small > a {
  float: right;
  width: 200px;
  font-size: 16px;
  font-size: 1.6rem;
  padding: 8px 0;
  padding: 0.8rem 0;
}
.c-header-contact a {
  display: block;
  width: 17vw;
  border-radius: 8px;
  border: solid 2px #ff7d00;
  background-color: #ff7d00;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
  color: #fff;
  padding: 12px 0;
  padding: 1.2rem 0;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.c-header-contact a:hover {
  border: solid 2px #ff7d00;
  background-color: #ffffff;
  color: #ff7d00;
}
.c-header-humberger {
  width: 100%;
  height: 100%;
}
.c-header-humberger::before {
  content: "";
  position: absolute;
  height: 4px;
  width: 30px;
  border-radius: 5px;
  top: 35px;
  background: #ff7d00;
  right: 20px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.c-header-humberger::after {
  content: "";
  position: absolute;
  height: 4px;
  width: 30px;
  border-radius: 5px;
  top: 43px;
  background: #ff7d00;
  right: 20px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.c-header-humberger.is-shown::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.c-header-humberger.is-shown::after {
  top: 36px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c-header-sp-area {
  position: absolute;
  width: 70px;
  height: 70px;
  right: 0px;
  top: 0;
  z-index: 30;
}
.c-header .sp-style {
  opacity: 1;
  pointer-events: visible;
  position: fixed;
  top: 0;
  right: 0;
}
.c-header-servicetop {
  position: absolute;
  right: 0;
  top: 27px;
  background: url("../images/common/logo.webp") 0 0 no-repeat;
  background-size: 100%;
  padding-top: 35px;
  width: 125px;
}
.c-header-servicetop span {
  display: block;
  font-size: 11px;
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
}
.c-header-servicetop span::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  background: url("../images/common/icon-link.webp") 0 0 no-repeat;
  background-size: 100%;
  width: 5px;
  height: 5px;
}

.sp-style .c-header-menu span {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.sp-style .c-header-menu:nth-child(1) span {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.sp-style .c-header-menu:nth-child(2) span {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.sp-style .c-header-menu:nth-child(3) span {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.sp-style .c-header-menu:nth-child(4) span {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.sp-style .c-header-menu:nth-child(5) span {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.sp-style .c-header-menu:nth-child(6) span {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.sp-style .c-header-menu:nth-child(7) span {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}

.sp-style .c-header-menu:nth-child(8) span {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

.sp-style .c-header-menu:nth-child(9) span {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}

.sp-style .c-header-menu:nth-child(10) span {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

.l-header-global .c-header-menu:first-child > a {
  padding-left: 0;
}
@media screen and (max-width: 1180px) {
  .l-header-global .c-header-contact a {
    width: 80px;
    padding: 0.5rem 0;
  }
}
@media screen and (max-width: 1180px) {
  .l-header-global .c-header-contact a::before {
    margin-right: 0;
  }
}
@media screen and (max-width: 1180px) {
  .l-header-global .c-header-contact a span {
    font-size: 1.1rem;
    display: block;
    padding-top: 5px;
  }
}

@media screen and (max-width: 1180px) {
  .l-header-service .c-header-menu:not(:first-child) {
    border-left: none;
  }
}
.l-header-service .c-header-menu__item > span {
  padding: 19px 2.2vw;
  padding: 1.9rem 2.2vw;
}
@media screen and (max-width: 1180px) {
  .l-header-service .c-header-menu__item > span {
    padding: 1rem 1vw;
  }
}
.l-header-service .c-header-menu:last-child .c-header-menu__item span {
  padding-right: 0;
}

/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.4em;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

/* リキッドレイアウト対応 */
.ch--section-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  font-family: "Noto Sans JP";
}
@media screen and (max-width: 1024px) {
  .ch--section-wrap {
    gap: 8px;
  }
}
.ch--section-wrap .ch--section-title {
  color: #444;
  font-size: 44px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 44px */
  letter-spacing: 1.32px;
}
@media screen and (max-width: 1024px) {
  .ch--section-wrap .ch--section-title {
    font-size: 28px;
    /* 28px */
    letter-spacing: 0.84px;
  }
}
.ch--section-wrap .ch--section-subtitle {
  color: #FF801F;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 24px */
  letter-spacing: 0.72px;
}
@media screen and (max-width: 1024px) {
  .ch--section-wrap .ch--section-subtitle {
    font-size: 18px;
    /* 18px */
    letter-spacing: 0.54px;
  }
}

.l-lowertop-head {
  height: 690px;
  text-align: center;
  padding-top: 144px;
}
@media screen and (max-width: 769px) {
  .l-lowertop-head {
    height: 446px;
    padding-top: 111px;
  }
}
.l-lowertop-head__logo {
  margin-bottom: 30px;
}
@media screen and (max-width: 769px) {
  .l-lowertop-head__logo {
    margin-bottom: 22px;
  }
}
.l-lowertop-head__logo__works {
  margin-bottom: 13px;
}
.l-lowertop-head__title {
  line-height: 1.48;
  font-size: 44px;
  font-size: 4.4rem;
  color: #ff7d00;
}
@media screen and (max-width: 769px) {
  .l-lowertop-head__title {
    font-size: 2.3rem;
    line-height: 1.6;
  }
}
.l-lowertop-head__title__works {
  display: inline-block;
  margin: 0 auto;
  padding: 30px 70px 40px;
  padding: 3rem 7rem 4rem;
  line-height: 1.48;
  font-size: 44px;
  font-size: 4.4rem;
  color: #ff7d00;
  background-color: #fff;
  border-radius: 2rem;
}
@media screen and (max-width: 769px) {
  .l-lowertop-head__title__works {
    display: block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-size: 2.4rem;
    line-height: 1.55;
    padding: 1.3rem 0 1.3rem;
    width: calc(100% - 50px);
    letter-spacing: -0.02em;
    border-radius: 1rem;
  }
}
.l-lowertop-head__creators {
  padding-top: 154px;
  height: 532px;
}
@media screen and (max-width: 769px) {
  .l-lowertop-head__creators {
    height: 313px;
    padding-top: 104px;
  }
}
.l-lowertop-head__works {
  padding-top: 109px;
  height: 558px;
}
@media screen and (max-width: 769px) {
  .l-lowertop-head__works {
    height: 443px;
    padding-top: 104px;
  }
}
.l-lowertop-block {
  position: relative;
  padding: 40px 0;
  position: relative;
  margin-bottom: 40px;
}
@media screen and (max-width: 769px) {
  .l-lowertop-block {
    margin-bottom: 22px;
    padding: 0;
  }
}
.l-lowertop-block::after {
  display: block;
  content: "";
  background: #fff;
  width: calc(100% - 300px);
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 20px 0 0 20px;
}
@media screen and (max-width: 769px) {
  .l-lowertop-block::after {
    width: calc(100% - 20px);
    top: 30vw;
    height: calc(100% - 30vw);
    top: auto;
    bottom: 0;
  }
}
.l-lowertop-block-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 2;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 769px) {
  .l-lowertop-block-flex {
    display: block;
  }
}
.l-lowertop-block__left {
  position: realtive;
  z-index: 2;
  width: 45.5%;
}
@media screen and (max-width: 769px) {
  .l-lowertop-block__left {
    width: 81.3%;
    margin-bottom: 53px;
  }
}
@media screen and (max-width: 769px) {
  .l-lowertop-block__left__works {
    margin-left: auto;
  }
}
.l-lowertop-block__left img {
  max-width: 100%;
}
.l-lowertop-block__right {
  width: 54.5%;
}
@media screen and (max-width: 769px) {
  .l-lowertop-block__right {
    width: 100%;
    padding: 0 20px 0 40px;
  }
}
.l-lowertop-block__inner {
  padding: 58px 68px;
}
@media screen and (max-width: 769px) {
  .l-lowertop-block__inner {
    padding: 0;
  }
}
.l-lowertop-block__title {
  margin-bottom: 42px;
  margin-bottom: 4.2rem;
}
@media screen and (max-width: 769px) {
  .l-lowertop-block__title .c-head-2 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 769px) {
  .l-lowertop-block__btn {
    padding-left: 7px;
    padding-bottom: 48px;
  }
}
.l-lowertop-block-right::after {
  display: block;
  content: "";
  background: #fff;
  width: calc(100% - 300px);
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 0 20px 20px 0;
}
@media screen and (max-width: 769px) {
  .l-lowertop-block-right::after {
    width: calc(100% - 20px);
    top: 30vw;
    height: calc(100% - 30vw);
    top: auto;
    bottom: 0;
  }
}
.l-lowertop-block-right .l-lowertop-block__inner {
  padding: 58px 68px 58px 117px;
  padding: 58px 68px 58px 11.7rem;
}
@media screen and (max-width: 769px) {
  .l-lowertop-block-right .l-lowertop-block__inner {
    padding: 0;
  }
}
.l-lowertop-whats {
  background: #fff;
  padding: 100px 112px 100px 117px;
  margin-top: 120px;
}
@media screen and (max-width: 769px) {
  .l-lowertop-whats {
    margin-top: 75px;
    padding: 50px 24px 64px;
  }
}
.l-lowertop-whats__title {
  margin-bottom: 48px;
  margin-bottom: 4.8rem;
}
@media screen and (max-width: 769px) {
  .l-lowertop-whats__title {
    margin-bottom: 4.3rem;
  }
}
@media screen and (max-width: 769px) {
  .l-lowertop-whats__title .c-head-2 {
    font-size: 2.4rem;
  }
}
.l-lowertop-whats__text {
  margin-bottom: 60px;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 2;
}
@media screen and (max-width: 769px) {
  .l-lowertop-whats__text {
    font-size: 1.4rem;
    margin-bottom: 41px;
  }
}
.l-lowertop-whats-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 107px;
}
.l-lowertop-whats-row:nth-child(2) {
  margin-bottom: 42px;
}
@media screen and (max-width: 769px) {
  .l-lowertop-whats-row {
    display: block;
    margin-bottom: 75px;
  }
}
.l-lowertop-whats-row__image {
  width: 53.5%;
}
@media screen and (max-width: 769px) {
  .l-lowertop-whats-row__image {
    width: 100%;
  }
}
.l-lowertop-whats-row__image img {
  width: 100%;
}
.l-lowertop-whats-row__detail {
  width: calc(46.5% - 63px);
  padding-top: 32px;
  padding-top: 3.2rem;
}
@media screen and (max-width: 769px) {
  .l-lowertop-whats-row__detail {
    padding-top: 1.2rem;
    width: 100%;
  }
}
.l-lowertop-whats-row__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 80px 80px 63px;
  padding: 8rem 8rem 6.3rem;
  background-color: #f5eee5;
  margin-bottom: 40px;
  margin-bottom: 4rem;
  border-radius: 1.5rem;
}
@media screen and (max-width: 769px) {
  .l-lowertop-whats-row__block {
    padding: 4.5rem 2.5rem 4.5rem;
    display: block;
  }
}
.l-lowertop-whats-row__block__image {
  width: 31.3%;
  position: relative;
}
@media screen and (max-width: 769px) {
  .l-lowertop-whats-row__block__image {
    width: 100%;
    margin: 0 auto 1.8rem;
  }
}
.l-lowertop-whats-row__block__image img {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
@media screen and (max-width: 769px) {
  .l-lowertop-whats-row__block__image img {
    position: static;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
.l-lowertop-whats-row__block__detail {
  width: 57.5%;
}
@media screen and (max-width: 769px) {
  .l-lowertop-whats-row__block__detail {
    width: 100%;
  }
}
.l-lowertop-whats-row__block__title {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.7;
  font-weight: bold;
  margin-bottom: 9px;
  margin-bottom: 0.9rem;
  color: #ff7d00;
}
@media screen and (max-width: 769px) {
  .l-lowertop-whats-row__block__title {
    font-size: 1.7rem;
    text-align: center;
    margin-bottom: 1.9rem;
  }
}
.l-lowertop-whats-row__block__title__sub {
  font-size: 18px;
  font-size: 1.8rem;
  color: #444;
  line-height: 1.6;
  font-weight: bold;
}
@media screen and (max-width: 769px) {
  .l-lowertop-whats-row__block__title__sub {
    text-align: center;
    font-size: 1.6rem;
  }
}
.l-lowertop-whats-row__block__text {
  margin-top: 35px;
  margin-top: 3.5rem;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.8;
  letter-spacing: -0.2px;
  letter-spacing: -0.02rem;
}
@media screen and (max-width: 769px) {
  .l-lowertop-whats-row__block__text {
    margin-top: 2.7rem;
    font-size: 1.4rem;
    text-align: center;
    line-height: 1.9;
  }
}
.l-lowertop-whats-row__creators {
  margin-bottom: 221px;
  position: relative;
}
@media screen and (max-width: 769px) {
  .l-lowertop-whats-row__creators {
    margin-bottom: 4rem;
  }
}
.l-lowertop-whats-row__creators__detail {
  width: 43.5%;
}
@media screen and (max-width: 769px) {
  .l-lowertop-whats-row__creators__detail {
    width: 100%;
  }
}
.l-lowertop-whats-row__creators__image {
  position: absolute;
  top: -177px;
  right: -112px;
  width: 69.5%;
}
@media screen and (max-width: 769px) {
  .l-lowertop-whats-row__creators__image {
    top: -80vw;
    right: -25px;
    width: 95%;
  }
}
.l-lowertop-whats-row__creators__image img {
  width: 100%;
}
.l-lowertop-whats__btn {
  text-align: center;
}
.l-lowertop-whats__creators {
  margin-top: 197px;
}
@media screen and (max-width: 769px) {
  .l-lowertop-whats__creators {
    margin-top: 63vw;
    padding: 38vw 24px 64px;
  }
}
.l-lowertop-story {
  padding: 167px 112px 120px 117px;
}
@media screen and (max-width: 769px) {
  .l-lowertop-story {
    padding: 74px 25px 80px;
  }
}
.l-lowertop-story-head {
  margin-bottom: 48px;
  margin-bottom: 4.8rem;
}
@media screen and (max-width: 769px) {
  .l-lowertop-story-head {
    margin-bottom: 4.2rem;
  }
}
@media screen and (max-width: 769px) {
  .l-lowertop-story-head .c-head-2 {
    font-size: 2.4rem;
  }
}
.l-lowertop-story__text {
  margin-bottom: 18px;
}
@media screen and (max-width: 769px) {
  .l-lowertop-story__text {
    margin-bottom: 20px;
  }
}
.l-lowertop-story-row {
  border-bottom: 1px solid #eae9e8;
}
.l-lowertop-story-row:last-child {
  border: none;
}
.l-lowertop-story-row > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px 0;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
@media screen and (max-width: 769px) {
  .l-lowertop-story-row > a {
    display: block;
    padding: 25px 0;
  }
}
.l-lowertop-story-row > a:hover {
  opacity: 0.7;
}
.l-lowertop-story-row__left {
  width: 312px;
}
@media screen and (max-width: 769px) {
  .l-lowertop-story-row__left {
    width: 43%;
    margin-bottom: 9px;
  }
}
.l-lowertop-story-row__left img {
  width: 100%;
}
.l-lowertop-story-row__right {
  width: calc(100% - 360px);
}
@media screen and (max-width: 769px) {
  .l-lowertop-story-row__right {
    width: 100%;
    margin-bottom: 9px;
  }
}
.l-lowertop-story__btn {
  text-align: center;
  padding-top: 41px;
}
@media screen and (max-width: 769px) {
  .l-lowertop-story__btn {
    padding-top: 12px;
  }
}
.l-lowertop-news {
  margin-bottom: 45px;
  margin-bottom: 4.5rem;
}
@media screen and (max-width: 769px) {
  .l-lowertop-news {
    margin-bottom: 7.5rem;
  }
}
.l-lowertop-news-inner {
  padding: 80px 117px 38px;
  padding: 8rem 11.7rem 3.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 769px) {
  .l-lowertop-news-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 5rem 5rem 0;
    margin-bottom: 7.5rem;
  }
}
@media screen and (max-width: 450px) {
  .l-lowertop-news-inner {
    padding: 7rem 2.5rem 0;
  }
}
.l-lowertop-news__head {
  margin-bottom: 52px;
  margin-bottom: 5.2rem;
}
@media screen and (max-width: 769px) {
  .l-lowertop-news__head {
    margin-bottom: 2.2rem;
  }
}
.l-lowertop-news-left {
  width: 29%;
  position: relative;
}
@media screen and (max-width: 769px) {
  .l-lowertop-news-left {
    width: 100%;
  }
}
.l-lowertop-news-left-inner {
  position: relative;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
@media screen and (max-width: 769px) {
  .l-lowertop-news-left-inner {
    top: 0;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@media screen and (max-width: 769px) {
  .l-lowertop-news-left-inner .c-head-2 {
    margin-bottom: 2.6rem;
    font-size: 2.4rem;
  }
}
.l-lowertop-news-right {
  width: 71%;
  position: relative;
}
@media screen and (max-width: 769px) {
  .l-lowertop-news-right {
    width: 100%;
  }
}
.l-lowertop-news-right-link {
  text-align: right;
  padding-right: 30px;
}
@media screen and (max-width: 769px) {
  .l-lowertop-news-right-link {
    padding-right: 0;
  }
}
.l-lowertop-news .c-circle-link {
  width: 200px;
}
@media screen and (max-width: 769px) {
  .l-lowertop-news .c-circle-link {
    width: 150px;
  }
}
.l-lowertop-news__recruit {
  background-color: #fff;
  margin-bottom: 0;
  padding-bottom: 45px;
  padding-bottom: 4.5rem;
}
.l-lowertop-news__recruit.is-bottom {
  padding-bottom: 0;
}
@media screen and (max-width: 769px) {
  .l-lowertop-news__recruit.is-bottom {
    margin-bottom: 80px;
    padding-bottom: 1rem;
  }
}
.l-lowertop-news__recruit.is-bottom .l-lowertop-news-inner {
  padding: 43px 117px 44px;
  padding: 4.3rem 11.7rem 4.4rem;
}
@media screen and (max-width: 769px) {
  .l-lowertop-news__recruit.is-bottom .l-lowertop-news-inner {
    margin-bottom: 2.8rem;
    padding: 5rem 2rem 2rem 2rem;
  }
}
@media screen and (max-width: 769px) {
  .l-lowertop-news__recruit.is-bottom ul li a p {
    margin-top: 1.3rem;
  }
}
@media screen and (max-width: 769px) {
  .l-lowertop-news__recruit.is-bottom .l-lowertop-news__head {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 769px) {
  .l-lowertop-news__recruit.is-bottom .c-head-2 {
    margin-bottom: 2rem;
  }
}
.l-lowertop-news__recruit__event .l-lowertop-news-inner {
  padding: 30px 135px 8px 105px;
  padding: 3rem 13.5rem 0.8rem 10.5rem;
}
@media screen and (max-width: 769px) {
  .l-lowertop-news__recruit__event .l-lowertop-news-inner {
    padding: 5rem 2rem 2rem 2rem;
    margin-bottom: 0;
  }
}
.l-lowertop-news__recruit__event .l-lowertop-news-left {
  width: 34.4%;
}
@media screen and (max-width: 769px) {
  .l-lowertop-news__recruit__event .l-lowertop-news-left {
    width: 100%;
  }
}
.l-lowertop-news__recruit__event .l-lowertop-news-right {
  width: 65.6%;
}
@media screen and (max-width: 769px) {
  .l-lowertop-news__recruit__event .l-lowertop-news-right {
    width: 100%;
  }
}
.l-lowertop-search {
  background-color: #fff;
}
.l-lowertop-search-container {
  padding: 88px 112px 84px 117px;
}
@media screen and (max-width: 769px) {
  .l-lowertop-search-container {
    padding: 54px 25px 49px;
  }
}
.l-lowertop-search-head {
  margin-bottom: 70px;
  margin-bottom: 7rem;
}
@media screen and (max-width: 769px) {
  .l-lowertop-search-head {
    margin-bottom: 4.8rem;
  }
}
.l-lowertop-search-head .c-head-2 {
  font-size: 24px;
  font-size: 2.4rem;
}
.l-lowertop-search-panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 76px 0 86px;
  padding: 0 7.6rem 0 8.6rem;
}
@media screen and (max-width: 769px) {
  .l-lowertop-search-panel {
    padding: 0;
  }
}
@media screen and (max-width: 769px) {
  .l-lowertop-search-panel-wrapper {
    overflow: auto;
    margin: 0 -25px;
    width: calc(100% + 50px);
  }
}
@media screen and (max-width: 769px) {
  .l-lowertop-search-panel-scroll {
    padding: 0 25px;
  }
}
.l-lowertop-search-panel-item {
  width: 46.7%;
}
@media screen and (max-width: 769px) {
  .l-lowertop-search-panel-item {
    width: 250px;
    margin-left: 35px;
  }
}
@media screen and (max-width: 769px) {
  .l-lowertop-search-panel-item:first-child {
    margin-left: 0px;
  }
}
.l-lowertop-search-panel__image img {
  width: 100%;
}
.l-lowertop-search-panel__detail {
  padding: 20px 5px 20px 0;
  padding: 2rem 0.5rem 2rem 0;
}
@media screen and (max-width: 769px) {
  .l-lowertop-search-panel__detail {
    padding: 1.2rem 0.5rem 1.2rem 0;
  }
}
.l-lowertop-whats-row:nth-child(2n) .l-lowertop-whats-row__image {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.l-lowertop-whats-row:nth-child(2n) .l-lowertop-whats-row__detail {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.l-workstop-contact {
  background-color: #f5eee5;
  font-family: auto;
}
.l-workstop-contact-container {
  padding: 78px 190px 80px 200px;
}
@media screen and (max-width: 769px) {
  .l-workstop-contact-container {
    padding: 63px 25px 66px;
  }
}
.l-workstop-contact__title {
  font-size: 32px;
  font-size: 3.2rem;
  text-align: center;
  margin-bottom: 67px;
  margin-bottom: 6.7rem;
  color: #444;
}
@media screen and (max-width: 769px) {
  .l-workstop-contact__title {
    font-size: 2.4rem;
    margin-bottom: 5rem;
  }
}
.l-workstop-contact-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 62px;
  margin-bottom: 6.2rem;
}
@media screen and (max-width: 769px) {
  .l-workstop-contact-row {
    display: block;
    margin-bottom: 4.2rem;
  }
}
.l-workstop-contact-row__left {
  width: 40%;
  padding-top: 64px;
  padding-top: 6.4rem;
}
@media screen and (max-width: 769px) {
  .l-workstop-contact-row__left {
    width: 100%;
    padding-top: 2rem;
  }
}
.l-workstop-contact-row__right {
  width: 55%;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media screen and (max-width: 769px) {
  .l-workstop-contact-row__right {
    width: 100%;
  }
}
.l-workstop-contact-row__right iframe {
  width: 100%;
  height: 400px;
}
@media screen and (max-width: 769px) {
  .l-workstop-contact-row__right iframe {
    height: 42vw;
  }
}
.l-workstop-contact-row__address {
  font-size: 18px;
  font-size: 1.8rem;
  color: #444;
  padding-left: 30px;
  padding-left: 3rem;
  line-height: 1.75;
  margin-bottom: 17px;
  margin-bottom: 1.7rem;
  background: url(../../images/common/icon-pin.webp) no-repeat left 5px;
  background-size: 24px;
}
@media screen and (max-width: 769px) {
  .l-workstop-contact-row__address {
    padding-left: 2.5rem;
    font-size: 1.3rem;
    line-height: 1.95;
    margin-bottom: 1rem;
    background: url(../../images/common/icon-pin.webp) no-repeat left 3px;
    background-size: 20px;
  }
}
.l-workstop-contact-row__address a {
  text-decoration: underline;
}
.l-workstop-contact-row__address a:hover {
  text-decoration: none;
}
.l-workstop-contact-row__tel {
  font-size: 18px;
  font-size: 1.8rem;
  color: #444;
  padding-left: 30px;
  padding-left: 3rem;
  line-height: 1.75;
  margin-bottom: 13px;
  margin-bottom: 1.3rem;
  background: url(../../images/common/icon-tel2.webp) no-repeat left 5px;
  background-size: 24px;
}
@media screen and (max-width: 769px) {
  .l-workstop-contact-row__tel {
    padding-left: 2.5rem;
    font-size: 1.3rem;
    line-height: 1.95;
    margin-bottom: 1rem;
    background: url(../../images/common/icon-tel2.webp) no-repeat left 2px;
    background-size: 20px;
  }
}
.l-workstop-contact-row__mail {
  font-size: 18px;
  font-size: 1.8rem;
  color: #444;
  padding-left: 30px;
  padding-left: 3rem;
  line-height: 1.75;
  margin-bottom: 12px;
  margin-bottom: 1.2rem;
  background: url(../../images/common/icon-mail.webp) no-repeat 3px 8px;
  background-size: 21px;
}
@media screen and (max-width: 769px) {
  .l-workstop-contact-row__mail {
    padding-left: 2.5rem;
    font-size: 1.3rem;
    line-height: 1.95;
    margin-bottom: 0.2rem;
    background: url(../../images/common/icon-mail.webp) no-repeat 2px 5px;
    background-size: 18px;
  }
}
.l-workstop-contact-row__time {
  font-size: 18px;
  font-size: 1.8rem;
  color: #444;
  padding-left: 30px;
  padding-left: 3rem;
  line-height: 1.75;
  margin-bottom: 14px;
  margin-bottom: 1.4rem;
  background: url(../../images/common/icon-time.webp) no-repeat 4px 5px;
  background-size: 20px;
}
@media screen and (max-width: 769px) {
  .l-workstop-contact-row__time {
    padding-left: 2.5rem;
    font-size: 1.3rem;
    line-height: 1.95;
    margin-bottom: 1rem;
    background: url(../../images/common/icon-time.webp) no-repeat 2px 4px;
    background-size: 17px;
  }
}
.l-workstop-contact-row__access {
  font-size: 18px;
  font-size: 1.8rem;
  color: #444;
  padding-left: 30px;
  padding-left: 3rem;
  line-height: 1.75;
  background: url(../../images/common/icon-train.webp) no-repeat 2px 5px;
  background-size: 24px;
}
@media screen and (max-width: 769px) {
  .l-workstop-contact-row__access {
    padding-left: 2.5rem;
    font-size: 1.3rem;
    line-height: 1.9;
    margin-bottom: 1rem;
    background: url(../../images/common/icon-train.webp) no-repeat 1px 2px;
    background-size: 20px;
  }
}
.l-workstop-contact__btn a {
  display: block;
  width: 100%;
  border-radius: 8px;
  border: solid 2px #ff7d00;
  background-color: #ff7d00;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  color: #fff;
  padding: 14px 0;
  padding: 1.4rem 0;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
@media screen and (max-width: 769px) {
  .l-workstop-contact__btn a {
    line-height: 1.3;
    padding: 1.2rem 0;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
  }
}
.l-workstop-contact__btn a:hover {
  border: solid 2px #ff7d00;
  background-color: #ffffff;
  color: #ff7d00;
}

.p-lowertop-head__logo > span {
  display: block;
  line-height: 1;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  padding-bottom: 5px;
  padding-bottom: 0.5rem;
  color: #444;
}
@media screen and (max-width: 769px) {
  .p-lowertop-head__logo > span {
    font-size: 1.2rem;
  }
}
.p-lowertop-head__logo > img {
  width: 200px;
}
@media screen and (max-width: 769px) {
  .p-lowertop-head__logo > img {
    width: 146px;
  }
}
@media screen and (max-width: 769px) {
  .p-lowertop-head__logo__creators {
    margin-bottom: 20px;
  }
}
.p-lowertop-head__logo__creators > img {
  width: 281px;
}
@media screen and (max-width: 769px) {
  .p-lowertop-head__logo__creators > img {
    width: 250px;
  }
}
@media screen and (max-width: 769px) {
  .p-lowertop-head__logo__works {
    margin-bottom: 18px;
  }
}
.p-lowertop-head__logo__works > img {
  width: 281px;
}
@media screen and (max-width: 769px) {
  .p-lowertop-head__logo__works > img {
    width: 250px;
  }
}
.p-lowertop-block__text {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 2.2;
  margin-bottom: 32px;
  letter-spacing: -0.2px;
  letter-spacing: -0.02rem;
}
@media screen and (max-width: 769px) {
  .p-lowertop-block__text {
    font-size: 1.4rem;
    line-height: 1.9;
  }
}
.p-lowertop-block__btn a {
  display: inline-block;
  width: 21.8vw;
  border-radius: 8px;
  border: solid 2px #ff7d00;
  background-color: #ff7d00;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  color: #fff;
  padding: 14px 0;
  padding: 1.4rem 0;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
@media screen and (max-width: 769px) {
  .p-lowertop-block__btn a {
    line-height: 1.3;
    padding: 1.3rem 0;
    width: 260px;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
  }
}
.p-lowertop-block__btn a:hover {
  border: solid 2px #ff7d00;
  background-color: #ffffff;
  color: #ff7d00;
}
.p-lowertop-whats__title {
  color: #ff7d00;
}
.p-lowertop-whats-row__title {
  line-height: 1.7;
  font-size: 28px;
  font-size: 2.8rem;
  color: #ff7d00;
  margin-bottom: 16px;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 769px) {
  .p-lowertop-whats-row__title {
    margin-bottom: 1rem;
    font-size: 2rem;
  }
}
.p-lowertop-whats-row__title__creators {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.8;
}
@media screen and (max-width: 769px) {
  .p-lowertop-whats-row__title__creators {
    font-size: 2rem;
  }
}
.p-lowertop-whats-row__text {
  line-height: 2;
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 30px;
  margin-bottom: 3rem;
}
@media screen and (max-width: 769px) {
  .p-lowertop-whats-row__text {
    line-height: 1.8;
    font-size: 1.4rem;
    letter-spacing: -0.04rem;
    padding-right: 2.2rem;
    margin-bottom: 2.2rem;
  }
}
.p-lowertop-whats__btn a {
  display: inline-block;
  width: 22.3vw;
  border-radius: 8px;
  border: solid 2px #ff7d00;
  background-color: #ff7d00;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  color: #fff;
  padding: 14px 0;
  padding: 1.4rem 0;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
@media screen and (max-width: 769px) {
  .p-lowertop-whats__btn a {
    width: 260px;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    padding: 1.3rem 0;
  }
}
.p-lowertop-whats__btn a:hover {
  border: solid 2px #ff7d00;
  background-color: #ffffff;
  color: #ff7d00;
}
.p-lowertop-story__text {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.8;
}
@media screen and (max-width: 769px) {
  .p-lowertop-story__text {
    font-size: 1.4rem;
  }
}
.p-lowertop-story-row__title {
  line-height: 1.7;
  font-size: 18px;
  font-size: 1.8rem;
  color: #ff7d00;
  margin-bottom: 24px;
  padding-left: 15px;
  padding-left: 1.5rem;
  background: url(../../images/common/icon-link.webp) no-repeat left center;
  background-size: 7px;
}
@media screen and (max-width: 769px) {
  .p-lowertop-story-row__title {
    background: url(../../images/common/icon-link.webp) no-repeat left 1.3rem;
    background-size: 7px;
    line-height: 1.85;
    margin-bottom: 11px;
  }
}
.p-lowertop-story-row__title span {
  text-decoration: underline;
}
.p-lowertop-story-row__text {
  line-height: 1.7;
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 25px;
}
@media screen and (max-width: 769px) {
  .p-lowertop-story-row__text {
    line-height: 2;
    font-size: 1.3rem;
  }
}
.p-lowertop-story-row__date {
  line-height: 1.1;
  color: #999;
  font-size: 11px;
  font-size: 1.1rem;
  font-weight: bold;
}
.p-lowertop-story__btn a {
  display: inline-block;
  width: 22.4vw;
  border-radius: 8px;
  border: solid 2px #ff7d00;
  background-color: #ff7d00;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  color: #fff;
  padding: 14px 0;
  padding: 1.4rem 0;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
@media screen and (max-width: 769px) {
  .p-lowertop-story__btn a {
    width: 280px;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    padding: 1.3rem 0;
    line-height: 1.3;
  }
}
.p-lowertop-story__btn a:hover {
  border: solid 2px #ff7d00;
  background-color: #ffffff;
  color: #ff7d00;
}
.p-lowertop-news-lists {
  padding: 30px 0;
  padding: 3rem 0;
}
@media screen and (max-width: 769px) {
  .p-lowertop-news-lists {
    padding: 0;
    margin-bottom: 0rem;
  }
}
.p-lowertop-news-lists ul {
  max-width: 100%;
}
@media screen and (max-width: 769px) {
  .p-lowertop-news-lists ul {
    margin-bottom: 4.7rem;
  }
}
.p-lowertop-news-lists ul li {
  border-bottom: 1px solid #d1d1d1;
}
.p-lowertop-news-lists ul li:last-child {
  border-bottom: none;
}
@media screen and (max-width: 769px) {
  .p-lowertop-news-lists ul li:last-child {
    border-bottom: 1px solid #d1d1d1;
  }
}
.p-lowertop-news-lists ul li a {
  display: block;
  margin-left: 18px;
  margin-left: 1.8rem;
  position: relative;
}
.p-lowertop-news-lists ul li a:hover {
  text-decoration: underline;
}
.p-lowertop-news-lists ul li a::before {
  content: "";
  height: 5px;
  width: 5px;
  border-radius: 50%;
  background-color: #ff7d00;
  top: 8px;
  left: -15px;
  position: absolute;
}
.p-lowertop-news-lists ul li a p {
  color: #666;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  margin: 20px 0 5px;
  margin: 2rem 0 0.5rem;
}
@media screen and (max-width: 769px) {
  .p-lowertop-news-lists ul li a p {
    font-size: 1.4rem;
    margin: 0.4rem 0 0rem;
    line-height: 1.8;
  }
}
.p-lowertop-news-lists ul li a p.date {
  font-size: 11px;
  font-size: 1.1rem;
  font-weight: normal;
  margin: 0 0 15px;
  margin: 0 0 1.5rem;
  color: #a2a2a2;
}
@media screen and (max-width: 769px) {
  .p-lowertop-news-lists ul li a p.date {
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
  }
}
.p-lowertop-search-panel__title {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.6;
  padding-left: 15px;
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 20px;
  margin-bottom: 2rem;
  letter-spacing: 0.8px;
  letter-spacing: 0.08rem;
  color: #444;
}
@media screen and (max-width: 769px) {
  .p-lowertop-search-panel__title {
    font-size: 1.6rem;
  }
}
.p-lowertop-search-panel__title::before {
  content: "";
  width: 4px;
  height: 32px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ff7d00;
  border-radius: 2px;
}
@media screen and (max-width: 769px) {
  .p-lowertop-search-panel__title::before {
    height: 25px;
  }
}
.p-lowertop-search-panel__btn {
  text-align: right;
}

.p-lowertop-head__logo > span {
  display: block;
  line-height: 1;
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: bold;
  padding-top: 25px;
  padding-top: 2.5rem;
  color: #444;
}

.about {
  margin-bottom: 120px;
}
@media screen and (max-width: 1024px) {
  .about {
    margin-bottom: 80px;
  }
}
.about .aboutCard-list {
  font-family: "Noto Sans JP";
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 40px;
  padding: 0;
  margin: 80px auto 0px;
  max-width: 1080px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  .about .aboutCard-list {
    grid-template-columns: repeat(2, 1fr);
    margin: 40px auto 0px;
    padding: 0 24px;
    gap: 40px;
  }
}
@media screen and (max-width: 768px) {
  .about .aboutCard-list {
    grid-template-columns: 1fr;
  }
}
.about .aboutCard-list__item {
  background-color: #ffffff;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-decoration: none;
}
.about .aboutCard-list__item svg {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (hover: hover) {
  .about .aboutCard-list__item:hover .aboutCard-list__title,
  .about .aboutCard-list__item:hover .aboutCard-list__subtitle {
    color: #ff801f;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .about .aboutCard-list__item:hover svg circle {
    fill: #ff801f;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .about .aboutCard-list__item:hover svg path {
    stroke: #fff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}
.about .aboutCard-list__image-wrapper {
  width: 100%;
}
.about .aboutCard-list__image {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.about .aboutCard-list__text-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.about .aboutCard-list__title {
  color: #444444;
  margin: 24px 0px 12px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .about .aboutCard-list__title {
    margin: 16px 0px 8px;
    font-size: 20px;
  }
}
.about .aboutCard-list__subtitle {
  font-family: "Inter", sans-serif;
  color: #444444;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.03em;
}

.company {
  margin-bottom: 120px;
}
@media screen and (max-width: 1024px) {
  .company {
    margin-bottom: 80px;
  }
}
.company .news-tabs {
  padding-top: 140px;
}
@media screen and (max-width: 1024px) {
  .company .news-tabs {
    padding-top: 100px;
  }
}
.company .news-tabs__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  gap: 50px;
  padding: 0;
  margin: 0;
  border-bottom: 1px solid #e0e0e0;
}
@media screen and (max-width: 1024px) {
  .company .news-tabs__nav {
    gap: 10px;
  }
}
.company .news-tabs__item {
  margin-right: 20px;
}
@media screen and (max-width: 1024px) {
  .company .news-tabs__item {
    margin-right: 0px;
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
}
.company .news-item_category {
  color: #444;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.company .news-tabs__button {
  background: none;
  border: none;
  padding: 15px 20px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #444;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media screen and (max-width: 1024px) {
  .company .news-tabs__button {
    font-size: 16px;
    padding: 10px 5px;
  }
}
.company .news-tabs__button:hover {
  color: #333;
}
.company .news-tabs__button.active {
  border-bottom-color: #ff801f;
}
.company .news-tabs__panel {
  display: none;
}
.company .news-tabs__panel.active {
  display: block;
}
.company .news-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: 20px;
}
.company .news-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  border-bottom: solid #cecece 1px;
  position: relative;
}
.company .news-item::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 150px;
  height: 2px;
  background-color: #ff801f;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.company .fv-image {
  margin-top: 80px;
}
@media screen and (max-width: 1024px) {
  .company .fv-image {
    margin-top: 32px;
  }
}
.company .company-info {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 8px;
  padding-top: 80px;
}
@media screen and (max-width: 1024px) {
  .company .company-info {
    padding-top: 52px;
  }
}
.company .company-info__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid #cecece;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .company .company-info__item {
    padding: 24px 0;
  }
}
.company .company-info__item:first-child {
  padding-top: 0;
  padding-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .company .company-info__item:first-child {
    padding-bottom: 24px 0;
  }
}
.company .company-info__label--flex-start {
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.company .company-info__label {
  width: 200px;
  color: #444;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  /* 18px */
  letter-spacing: 0.54px;
}
.company .company-info__value {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #444;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  /* 28.8px */
  letter-spacing: 0.54px;
}
.company .company-info__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.company .company-info__list li {
  margin-bottom: 5px;
  margin-bottom: 0.5rem;
  position: relative;
}
.company .company-info__list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.company .company-info__list li a .company-info__list--text {
  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 (max-width: 768px) {
  .company .company-info__list li a {
    display: inline;
    line-height: 1.6;
    gap: 0;
  }
  .company .company-info__list li a .company-info__list--text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (hover: hover) {
  .company .company-info__list li a:hover {
    text-decoration: underline;
  }
}
.company .company-info__list li a svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  vertical-align: baseline;
}
@media screen and (max-width: 768px) {
  .company .company-info__list li a svg {
    position: relative;
    bottom: -2px;
    right: 5px;
  }
}
.company .board-members--01,
.company .board-members--02 {
  margin-top: 70px;
}
@media screen and (max-width: 1024px) {
  .company .board-members--01,
  .company .board-members--02 {
    margin-top: 40px;
  }
}
.company .board-members--title-text {
  color: #444;
  font-family: "Noto Sans JP";
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 28px */
  letter-spacing: 0.84px;
  border-bottom: #ff801f 2px solid;
  padding-bottom: 20px;
}
.company .board-members--01 .board-members--content {
  margin-top: 52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 100px;
}
.company .board-members--01 .board-members--content--item {
  display: grid;
  grid-template-columns: 1fr 323px;
  gap: 50px;
}
@media screen and (max-width: 1024px) {
  .company .board-members--01 .board-members--content--item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.company .board-members--02 .board-members--content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px 40px;
}
@media screen and (max-width: 1024px) {
  .company .board-members--02 .board-members--content {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 1024px) {
  .company .board-members--content--item-content-title--mt {
    margin-top: 22px;
  }
}
@media screen and (min-width: 1024px) {
  .company .board-members--02 .board-members--content .board-members--content--item:nth-child(8) {
    grid-row: 5;
  }
}
@media screen and (min-width: 1024px) {
  .company .board-members--02 .board-members--content .board-members--content--item:nth-child(9) {
    grid-row: 5;
  }
}
.company .board-members--content--item-content-title {
  min-height: 63px;
  margin-bottom: auto;
}
.company .board-members--content--item-content-title--officers {
  color: #444;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  /* 18px */
  letter-spacing: 0.54px;
}
@media screen and (max-width: 1024px) {
  .company .board-members--content--item-content-title--officers {
    font-size: 16px;
  }
}
.company .board-members--content--item-content-title--name {
  color: #444;
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 24px */
  letter-spacing: 0.72px;
  margin-top: 15px;
}
@media screen and (max-width: 1024px) {
  .company .board-members--content--item-content-title--name {
    font-size: 20px;
    line-height: 100%;
    /* 20px */
    letter-spacing: 0.6px;
  }
}
.company .board-members--content--item-content p {
  color: #444;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  /* 28.8px */
  letter-spacing: 0.48px;
  margin-top: 20px;
}
@media screen and (max-width: 1024px) {
  .company .board-members--content--item-content p {
    font-size: 15px;
    line-height: 180%;
    /* 27px */
    letter-spacing: 0.45px;
  }
}
.company .board-members--content--item-content-title--officers small {
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.48px;
}
@media screen and (max-width: 1024px) {
  .company .board-members--content--item-content-title--officers small {
    font-size: 12px;
  }
}
.company .board-members--content--item-image img {
  border-radius: 12px;
}
.company .board-members--bnner {
  background-image: url(../images/company/bnner.webp);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 14px 0px rgba(255, 128, 31, .69);
          box-shadow: 0px 0px 14px 0px rgba(255, 128, 31, .69);
  max-width: 664px;
  margin-top: 120px;
  margin-left: auto;
  margin-right: auto;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 65px;
  padding: 50px 20px;
}
@media screen and (max-width: 1024px) {
  .company .board-members--bnner {
    gap: 25px;
    padding: 30px 30px 20px;
    margin-top: 60px;
  }
}
.company .board-members--bnner .board-members--bnner-title {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.company .board-members--bnner .board-members--bnner-title span {
  color: #fff;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 43px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 64.5px */
  letter-spacing: 0.43px;
}
@media screen and (max-width: 1024px) {
  .company .board-members--bnner .board-members--bnner-title span {
    font-size: 22px;
    line-height: 150%;
    /* 33px */
    letter-spacing: 0.22px;
  }
}
.company .board-members--bnner .board-members--bnner-content {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 35px;
}
@media screen and (max-width: 1024px) {
  .company .board-members--bnner .board-members--bnner-content {
    gap: 12px;
  }
}
.company .board-members--bnner .board-members--bnner-text {
  color: #fff;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 33px */
  letter-spacing: 0.22px;
}
@media screen and (max-width: 1024px) {
  .company .board-members--bnner .board-members--bnner-text {
    font-size: 13px;
    line-height: 150%;
    /* 19.5px */
    letter-spacing: 0.13px;
  }
}
.company .board-members--bnner .board-members--bnner--button {
  color: #fe7125;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 33px */
  letter-spacing: 0.22px;
  border-radius: 70px;
  background: #fff;
  max-width: 348px;
  width: 100%;
  line-height: 58px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.company .board-members--bnner .board-members--bnner--button:hover {
  background-color: #fe7125;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .company .board-members--bnner .board-members--bnner--button {
    font-size: 16px;
    /* 16px */
    letter-spacing: 0.96px;
    border-radius: 88.305px;
    border: 1px solid #ff801f;
  }
}
@media (max-width: 768px) {
  .company .company-info__label {
    font-size: 16px;
    line-height: 100%;
    /* 16px */
    letter-spacing: 0.48px;
    width: 100px;
  }
  .company .company-info__value {
    font-size: 16px;
    line-height: 140%;
    /* 22.4px */
    letter-spacing: 0.48px;
  }
  .company .board-members--title-text {
    font-size: 20px;
    line-height: 100%;
    /* 20px */
    letter-spacing: 0.6px;
  }
  .company .board-members--01 .board-members--content--item {
    gap: 20px;
  }
}

.consent {
  margin: 80px auto 160px;
}
@media screen and (max-width: 768px) {
  .consent {
    margin: 60px auto 120px;
  }
}
.consent .section--consent {
  padding-top: 80px;
}
.consent .consent__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
}
.consent .consent__section--title {
  color: #444;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 20px */
  letter-spacing: 0.6px;
  padding-left: 20px;
  border-left: solid 4px #FF801F;
}
.consent p {
  color: #444;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  /* 25.6px */
  letter-spacing: 0.48px;
  margin-top: 20px;
}
.consent ul {
  list-style: disc;
  padding-left: 20px;
  padding-top: 20px;
}
.consent ul li {
  color: #444;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  /* 25.6px */
  letter-spacing: 0.48px;
}
.consent .consent__section--list--box {
  border-radius: 10px;
  background: #F4F4F4;
  list-style: none;
  padding: 20px;
  margin-top: 20px;
}

.front-page {
  color: #444444;
  font-family: "Noto Sans JP", sans-serif;
}
.front-page .fixed-bg {
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  height: calc(100vh + 80px);
  z-index: -1;
}
.front-page .fixed-bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .front-page .fixed-bg {
    top: 0;
    height: calc(100vh + 90px);
  }
}
.front-page .fixed-bg .sp {
  display: block;
  position: absolute;
  top: -35px;
}
@media screen and (min-width: 768px) {
  .front-page .fixed-bg .sp {
    display: none;
  }
}
.front-page .fixed-bg .pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .front-page .fixed-bg .pc {
    display: block;
  }
}
.front-page .fv {
  min-height: 100svh;
  position: relative;
}
.front-page .fv .fv__title {
  padding: 0svh 1vw 0svh 4vw;
  min-height: calc(100vh + 80px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.front-page .fv .fv__title svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 524px;
}
@media screen and (min-width: 768px) {
  .front-page .fv .fv__title {
    padding: 0svh 0 0svh 5vw;
    display: block;
    height: calc(100vh + 90px);
  }
}
.front-page .mission {
  height: 100svh;
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(17, 17, 17, 0)), to(rgb(17, 17, 17)));
  background: linear-gradient(180deg, rgba(17, 17, 17, 0) 0%, rgb(17, 17, 17) 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.front-page .mission .mission__inner {
  padding: 0svh 1vw 0svh 4vw;
  -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;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .front-page .mission .mission__inner {
    padding: 0svh 0 0svh 5vw;
  }
}
.front-page .mission .mission__inner .mission__title {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 48px;
  font-family: "Inter", sans-serif;
}
.front-page .mission .mission__inner .mission__content .mission__content-title {
  margin-bottom: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 12px;
}
.front-page .mission .mission__inner .mission__content .mission__content-title .mission__content-title-item {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.front-page .mission .mission__inner .mission__content .mission__content-title .mission__content-title-item.--first {
  max-width: 211px;
}
@media screen and (min-width: 768px) {
  .front-page .mission .mission__inner .mission__content .mission__content-title .mission__content-title-item.--first {
    max-width: 244px;
  }
}
.front-page .mission .mission__inner .mission__content .mission__content-title .mission__content-title-item.--second {
  max-width: 184px;
}
@media screen and (min-width: 768px) {
  .front-page .mission .mission__inner .mission__content .mission__content-title .mission__content-title-item.--second {
    max-width: 212px;
  }
}
.front-page .mission .mission__inner .mission__content .mission__content-title .mission__content-title-item.--third {
  max-width: 355px;
}
@media screen and (min-width: 768px) {
  .front-page .mission .mission__inner .mission__content .mission__content-title .mission__content-title-item.--third {
    max-width: 409px;
  }
}
.front-page .mission .mission__inner .mission__content .mission__content-desc {
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  line-height: 2.4;
  letter-spacing: 0.08em;
  margin-bottom: 40px;
}
.front-page .mission .mission__inner .mission__content .mission__content-desc span {
  display: block;
}
@media screen and (min-width: 768px) {
  .front-page .mission .mission__inner .mission__content .mission__content-desc {
    font-size: 16px;
  }
}
.front-page .mission .mission__inner .mission__content .mission__btn {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  letter-spacing: 0.06em;
  display: block;
  background-color: #ff801f;
  border: 2px solid #ff801f;
  width: 100%;
  max-width: 280px;
  color: #fff;
  border-radius: 9999px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 18px;
  font-weight: 700;
  height: 62px;
  padding: 0px 12px 0px 40px;
}
.front-page .mission .mission__inner .mission__content .mission__btn svg circle {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.front-page .mission .mission__inner .mission__content .mission__btn svg path {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (hover: hover) {
  .front-page .mission .mission__inner .mission__content .mission__btn:hover {
    background-color: #fff;
    color: #ff801f;
  }
  .front-page .mission .mission__inner .mission__content .mission__btn:hover svg circle {
    fill: #ff801f;
  }
  .front-page .mission .mission__inner .mission__content .mission__btn:hover svg path {
    stroke: #fff;
  }
}
.front-page .front-service {
  background-color: #fff;
  padding: 100px 24px;
}
@media screen and (min-width: 1024px) {
  .front-page .front-service {
    padding: 120px 24px;
  }
}
.front-page .front-service .service__inner {
  max-width: 1080px;
}
@media screen and (min-width: 1024px) {
  .front-page .front-service .service__inner {
    margin: 0 auto;
    display: grid;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    grid-template: "title img" 1fr "content img" 1fr/1fr 1fr;
    grid-template-rows: 48px 1fr;
    row-gap: 32px;
  }
}
.front-page .front-service .service__inner .service__title {
  grid-area: title;
  font-size: 36px;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
  font-family: "Inter", sans-serif;
}
@media screen and (min-width: 768px) {
  .front-page .front-service .service__inner .service__title {
    margin-bottom: 0;
    font-size: 40px;
  }
}
.front-page .front-service .service__inner .service__title .service__title-first {
  height: 100%;
}
.front-page .front-service .service__inner .service__img {
  grid-area: img;
  margin-bottom: 16px;
  overflow: hidden;
  display: grid;
  place-items: center;
}
@media screen and (min-width: 768px) {
  .front-page .front-service .service__inner .service__img {
    margin-bottom: 0;
  }
}
.front-page .front-service .service__inner .service__img video {
  width: 100%;
  border-radius: 10px;
}
.front-page .front-service .service__inner .service__content {
  grid-area: content;
}
.front-page .front-service .service__inner .service__content .service__content-desc {
  font-size: 20px;
  line-height: 1.9;
  letter-spacing: 0.03em;
  color: #444444;
  font-weight: 700;
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .front-page .front-service .service__inner .service__content .service__content-desc {
    font-size: 24px;
  }
  .front-page .front-service .service__inner .service__content .service__content-desc span {
    display: block;
  }
}
.front-page .front-service .service__inner .service__content .service__content-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  background-color: #444444;
  height: 50px;
  border-radius: 9999px;
  padding: 0px 16px 0px 40px;
  letter-spacing: 0.06em;
  max-width: 265px;
  width: 100%;
  border: 2px solid #444444;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (hover: hover) {
  .front-page .front-service .service__inner .service__content .service__content-btn:hover {
    background-color: #fff;
    color: #444444;
  }
  .front-page .front-service .service__inner .service__content .service__content-btn:hover svg path {
    stroke: #444444;
  }
}
.front-page .front-service .service__inner .service__content .service__content-btn svg path {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.front-page .recruit {
  background-color: #fff;
  padding: 0px 24px;
}
@media screen and (min-width: 1024px) {
  .front-page .recruit {
    padding: 0px 24px;
  }
}
.front-page .recruit .recruit__inner {
  max-width: 1080px;
}
@media screen and (min-width: 1024px) {
  .front-page .recruit .recruit__inner {
    margin: 0 auto;
    display: grid;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    grid-template: "title img" 1fr "content img" 1fr/1fr 1fr;
    grid-template-rows: 48px 1fr;
    row-gap: 32px;
  }
}
.front-page .recruit .recruit__inner .recruit__title {
  grid-area: title;
  font-size: 36px;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
  font-family: "Inter", sans-serif;
}
@media screen and (min-width: 768px) {
  .front-page .recruit .recruit__inner .recruit__title {
    margin-bottom: 0;
    font-size: 40px;
  }
}
.front-page .recruit .recruit__inner .recruit__title .recruit__title-first {
  height: 100%;
}
.front-page .recruit .recruit__inner .recruit__img {
  grid-area: img;
  margin-bottom: 16px;
  border-radius: 10px;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.front-page .recruit .recruit__inner .recruit__img video {
  width: 100%;
  border-radius: 10px;
}
.front-page .recruit .recruit__inner .recruit__content {
  grid-area: content;
}
.front-page .recruit .recruit__inner .recruit__content .recruit__content-desc {
  font-size: 20px;
  line-height: 1.9;
  letter-spacing: 0.03em;
  color: #444444;
  font-weight: 700;
  margin-bottom: 32px;
}
.front-page .recruit .recruit__inner .recruit__content .recruit__content-desc span {
  display: block;
}
@media screen and (min-width: 768px) {
  .front-page .recruit .recruit__inner .recruit__content .recruit__content-desc {
    font-size: 24px;
  }
  .front-page .recruit .recruit__inner .recruit__content .recruit__content-desc br {
    display: none;
  }
}
.front-page .recruit .recruit__inner .recruit__content .recruit__content-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  background-color: #444444;
  height: 50px;
  border-radius: 9999px;
  padding: 0px 16px 0px 40px;
  letter-spacing: 0.06em;
  max-width: 265px;
  width: 100%;
  border: 2px solid #444444;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (hover: hover) {
  .front-page .recruit .recruit__inner .recruit__content .recruit__content-btn:hover {
    background-color: #fff;
    color: #444444;
  }
  .front-page .recruit .recruit__inner .recruit__content .recruit__content-btn:hover svg path {
    stroke: #444444;
  }
}
.front-page .recruit .recruit__inner .recruit__content .recruit__content-btn svg path {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.front-page .front-news {
  background-color: #fff;
  padding: 100px 24px;
}
@media screen and (min-width: 1024px) {
  .front-page .front-news {
    padding: 120px 24px;
  }
}
.front-page .front-news .news__inner {
  max-width: 1080px;
}
@media screen and (min-width: 1024px) {
  .front-page .front-news .news__inner {
    margin: 0 auto;
  }
}
.front-page .front-news .news__inner .news__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 24px;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .front-page .front-news .news__inner .news__header {
    gap: 24px;
  }
}
.front-page .front-news .news__inner .news__header .news__header-title {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-family: "Inter", sans-serif;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .front-page .front-news .news__inner .news__header .news__header-title {
    font-size: 40px;
  }
}
.front-page .front-news .news__inner .news__header .news__header-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  gap: 16px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  margin-bottom: 4px;
}
.front-page .front-news .news__inner .news__header .news__header-btn svg {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.front-page .front-news .news__inner .news__header .news__header-btn svg path {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (min-width: 768px) {
  .front-page .front-news .news__inner .news__header .news__header-btn {
    gap: 12px;
  }
}
@media screen and (hover: hover) {
  .front-page .front-news .news__inner .news__header .news__header-btn:hover {
    color: #ff801f;
  }
  .front-page .front-news .news__inner .news__header .news__header-btn:hover svg {
    translate: 2px 0px;
  }
  .front-page .front-news .news__inner .news__header .news__header-btn:hover svg path {
    fill: #ff801f;
  }
}
.front-page .front-news .news__inner .news__list {
  font-family: "Noto Sans JP";
}
.front-page .front-news .news__inner .news__list .news-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: 20px;
}
.front-page .front-news .news__inner .news__list .news-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  border-bottom: solid #cecece 1px;
  position: relative;
}
.front-page .front-news .news__inner .news__list .news-item::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0px;
  height: 2px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.front-page .front-news .news__inner .news__list .news-item:hover::after {
  width: 100%;
}
.front-page .front-news .news__inner .news__list .news-item:hover.--first:hover .news-item__link--arrow {
  background-color: #ff801f;
}
.front-page .front-news .news__inner .news__list .news-item:hover.--first:hover svg circle {
  fill: #ff801f;
}
.front-page .front-news .news__inner .news__list .news-item:hover.--first:hover svg path {
  stroke: #fff;
}
.front-page .front-news .news__inner .news__list .news-item:hover.--first:hover::after {
  background-color: #ff801f;
  width: 100%;
}
.front-page .front-news .news__inner .news__list .news-item:hover.--second:hover .news-item__link--arrow {
  background-color: #4792d0;
}
.front-page .front-news .news__inner .news__list .news-item:hover.--second:hover svg circle {
  fill: #4792d0;
}
.front-page .front-news .news__inner .news__list .news-item:hover.--second:hover svg path {
  stroke: #fff;
}
.front-page .front-news .news__inner .news__list .news-item:hover.--second:hover::after {
  background-color: #4792d0;
  width: 100%;
}
.front-page .front-news .news__inner .news__list .news-item:hover.--third:hover .news-item__link--arrow {
  background-color: #ffdc50;
}
.front-page .front-news .news__inner .news__list .news-item:hover.--third:hover svg circle {
  fill: #ffdc50;
}
.front-page .front-news .news__inner .news__list .news-item:hover.--third:hover svg path {
  stroke: #fff;
}
.front-page .front-news .news__inner .news__list .news-item:hover.--third:hover::after {
  background-color: #ffdc50;
  width: 100%;
}
.front-page .front-news .news__inner .news__list .news-item__date {
  color: #444;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  min-width: 80px;
  border: solid 1px #444;
  border-radius: 100vw;
  padding: 3px 10px;
}
.front-page .front-news .news__inner .news__list .news-item__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.front-page .front-news .news__inner .news__list .news-item__link--arrow {
  width: 36px;
  height: 36px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 100vw;
  background: #f8f8f8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.front-page .front-news .news__inner .news__list .news-item__link--arrow path {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.front-page .front-news .news__inner .news__list .news-item__title {
  margin: 0;
  font-size: 16px;
  font-weight: normal;
}
.front-page .front-news .news__inner .news__list .article--wtap--contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding-bottom: 20px;
}
.front-page .front-news .news__inner .news__list .news-item__title a {
  color: #333;
  text-decoration: none;
}
.front-page .front-news .news__inner .news__list .news-item__title a:hover {
  color: #007cba;
}
.front-page .front-news .news__inner .news__list .no-posts {
  text-align: center;
  color: #666;
  padding: 40px 0;
}
@media screen and (max-width: 1024px) {
  .front-page .front-news .news__inner .news__list .news-tabs__nav {
    gap: 0px;
  }
  .front-page .front-news .news__inner .news__list .news-tabs__button {
    padding: 10px 15px;
    font-size: 14px;
  }
  .front-page .front-news .news__inner .news__list .news-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .front-page .front-news .news__inner .news__list .news-item__date {
    font-size: 12px;
    line-height: normal;
  }
  .front-page .front-news .news__inner .news__list .news-tabs__item {
    margin-right: 0;
  }
  .front-page .front-news .news__inner .news__list .news-item_category {
    font-size: 14px;
    line-height: normal;
  }
}

.history {
  margin-bottom: 120px;
}
@media screen and (max-width: 1024px) {
  .history {
    margin-bottom: 80px;
  }
}
.history .history--list {
  margin-top: 80px;
}
@media screen and (max-width: 1024px) {
  .history .history--list {
    margin-top: 40px;
  }
}
.history .history--item {
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .history .history--item {
    margin-bottom: 40px;
  }
}
.history .history--year {
  border-radius: 4px;
  background: #F8F8F8;
  padding: 32px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  font-size: 20px;
  font-weight: 400;
}
.history .history--year span {
  color: #444;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-weight: 400;
  font-style: normal;
  line-height: 100%;
  /* 24px */
}
@media screen and (max-width: 1024px) {
  .history .history--year span {
    font-size: 18px;
    line-height: 100%;
    /* 18px */
  }
}
.history .history--year::before,
.history .history--year::after {
  content: "";
  position: absolute;
  right: 32px;
  width: 16px;
  height: 2px;
  background-color: #333;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.history .history--year::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.history .history--item.active .history--year::after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.history .history--content {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.history .history--content ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.history .history--content li {
  display: grid;
  grid-template-columns: 120px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
}
@media screen and (max-width: 1024px) {
  .history .history--content li {
    gap: 20px;
    grid-template-columns: 100px 1fr;
  }
}
.history .history--content li p {
  color: #444;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  /* 18px */
  letter-spacing: 0.54px;
}
@media screen and (max-width: 1024px) {
  .history .history--content li p {
    font-size: 15px;
    /* 21px */
    letter-spacing: 0.45px;
    line-height: 1.4;
  }
}
.history .history--item.active .history--content {
  padding: 25px 20px;
  max-height: 100%;
}
.history .history--content p {
  margin: 0;
  line-height: 1.6;
}
.history .awards-wrapper {
  padding-top: 70px;
}
@media screen and (max-width: 1024px) {
  .history .awards-wrapper {
    padding-top: 40px;
  }
}
.history .awards-wrapper ul {
  padding: 25px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin-top: 60px;
}
@media screen and (max-width: 1024px) {
  .history .awards-wrapper ul {
    margin-top: 40px;
  }
}
.history .awards-wrapper li {
  display: grid;
  grid-template-columns: 120px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
}
@media screen and (max-width: 1024px) {
  .history .awards-wrapper li {
    gap: 20px;
    grid-template-columns: 60px 1fr;
  }
}
.history .awards-wrapper li p {
  color: #444;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  /* 18px */
  letter-spacing: 0.54px;
}
@media screen and (max-width: 1024px) {
  .history .awards-wrapper li p {
    font-size: 15px;
    /* 21px */
    letter-spacing: 0.45px;
    line-height: 1.4;
  }
}
.history .awards-title {
  color: #444;
  font-family: "Noto Sans JP";
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 36px */
  letter-spacing: 1.08px;
}
@media screen and (max-width: 1024px) {
  .history .awards-title {
    font-size: 20px;
    /* 20px */
    letter-spacing: 0.6px;
  }
}

.inquiry-complete .thanks {
  max-width: 690px;
  margin: 160px auto;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #444444;
}
@media screen and (max-width: 768px) {
  .inquiry-complete .thanks {
    padding: 0px 24px;
    margin: 60px auto;
  }
}
.inquiry-complete .thanks__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 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;
}
@media screen and (max-width: 768px) {
  .inquiry-complete .thanks__title {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 24px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.inquiry-complete .thanks__text-wrapper {
  margin-bottom: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 768px) {
  .inquiry-complete .thanks__text-wrapper {
    margin-bottom: 40px;
    text-align: left;
  }
}
.inquiry-complete .text-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 768px) {
  .inquiry-complete .text-block {
    display: block;
  }
}
.inquiry-complete .thanks__text {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .inquiry-complete .thanks__text {
    letter-spacing: 0.05em;
  }
}
.inquiry-complete .text-block--mb {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .inquiry-complete .text-block--mb {
    margin-bottom: 16px;
  }
}
.inquiry-complete .thanks__text:last-child {
  margin-bottom: 0;
}
.inquiry-complete .thanks__button-wrapper {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .inquiry-complete .thanks__button-wrapper {
    margin-bottom: 32px;
  }
}
.inquiry-complete .thanks__button {
  display: inline-block;
  width: 235px;
  background-color: #ff801f;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 88px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid #ff801f;
}
.inquiry-complete .thanks__button svg {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 18px;
}
.inquiry-complete .thanks__button svg path {
  stroke: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (hover: hover) {
  .inquiry-complete .thanks__button:hover {
    color: #ff801f;
    background-color: white;
  }
  .inquiry-complete .thanks__button:hover svg path {
    stroke: #ff801f;
  }
}
@media screen and (max-width: 768px) {
  .inquiry-complete .thanks__button {
    font-size: 15px;
    padding: 14px 24px;
  }
}

.inquiry {
  /* WebKit（Chrome, Safari, iOS Safari）用 */
}
.inquiry .contact {
  max-width: 840px;
  margin: 80px auto 148px;
  color: #333;
  font-family: "Noto Sans JP";
}
@media screen and (max-width: 1024px) {
  .inquiry .contact {
    padding: 0 24px;
    margin: 60px auto 80px;
  }
}
.inquiry .contact__heading {
  margin-top: 80px;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .inquiry .contact__heading {
    margin-top: 40px;
    margin-bottom: 57px;
  }
}
.inquiry .contact__heading-title {
  font-size: 28px;
  letter-spacing: 0.03em;
  font-weight: 700;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .inquiry .contact__heading-title {
    font-size: 20px;
    margin-bottom: 16px;
  }
}
.inquiry .contact__heading-text {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .inquiry .contact__heading-text {
    letter-spacing: 0.05em;
  }
}
.inquiry .contact-form {
  font-size: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr 560px;
  row-gap: 32px;
  -webkit-column-gap: 78px;
     -moz-column-gap: 78px;
          column-gap: 78px;
}
@media screen and (max-width: 1024px) {
  .inquiry .contact-form {
    grid-template-columns: 1fr;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
}
.inquiry .contact-form__row {
  display: contents;
}
@media screen and (max-width: 768px) {
  .inquiry .contact-form__row {
    display: grid;
    grid-template-rows: auto auto;
  }
}
.inquiry .contact-form__label {
  -ms-flex-item-align: center;
      align-self: center;
  text-align: right;
  color: #333;
  font-weight: 700;
  line-height: 1.5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .inquiry .contact-form__label {
    text-align: left;
    padding-right: 0;
    margin-bottom: 8px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.inquiry .contact-form__label--top {
  margin-bottom: auto;
  padding-top: 13px;
}
@media screen and (max-width: 1024px) {
  .inquiry .contact-form__label--top {
    margin-bottom: 8px;
    padding-top: 0px;
  }
}
.inquiry .contact-form__required {
  display: inline-block;
  background-color: transparent;
  color: #ff801f;
  border: 1px solid #ff801f;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.4;
  padding: 2px 12px;
}
@media screen and (max-width: 768px) {
  .inquiry .contact-form__required {
    font-weight: 500;
    font-size: 12px;
    margin-left: 16px;
  }
}
.inquiry .contact-form__input-wrapper {
  width: 100%;
  -ms-flex-item-align: center;
      align-self: center;
}
.inquiry .contact-form__input-wrapper input,
.inquiry .contact-form__input-wrapper textarea,
.inquiry .contact-form__input-wrapper select {
  outline: none;
}
.inquiry .contact-form__input-wrapper input:focus,
.inquiry .contact-form__input-wrapper textarea:focus,
.inquiry .contact-form__input-wrapper select:focus {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-color: #ff801f;
}
.inquiry .contact-form__input-wrapper--select {
  position: relative;
}
.inquiry .contact-form__input-wrapper--select svg {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 24px;
}
@media screen and (max-width: 768px) {
  .inquiry .contact-form__input-wrapper--select svg {
    right: 9px;
  }
}
.inquiry .contact-form__input {
  width: 100%;
  padding: 14px 20px;
  font-size: 16px;
  line-height: 1.4;
  border: 2px solid #ededed;
  border-radius: 4px;
  color: #333;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 50px;
}
@media screen and (max-width: 768px) {
  .inquiry .contact-form__input {
    padding: 12px 16px;
    height: 46px;
  }
}
.inquiry .contact-form__select {
  width: 100%;
  padding: 14px 20px;
  font-size: 16px;
  border: 2px solid #ededed;
  border-radius: 4px;
  color: #333;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  height: 50px;
}
@media screen and (max-width: 768px) {
  .inquiry .contact-form__select {
    padding: 12px 16px;
    height: 46px;
  }
}
.inquiry .contact-form__textarea {
  width: 100%;
  min-height: 340px;
  padding: 14px 20px;
  font-size: 16px;
  line-height: 1.5;
  border: 2px solid #ededed;
  border-radius: 4px;
  color: #333;
  resize: vertical;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .inquiry .contact-form__textarea {
    min-height: 300px;
    padding: 12px 16px;
    letter-spacing: 0.05em;
    font-size: 15px;
  }
}
.inquiry .contact-form__notice {
  grid-column: 1/-1;
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.03em;
  margin-top: 28px;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .inquiry .contact-form__notice {
    text-align: left;
    margin-top: 8px;
    margin-bottom: -10px;
  }
}
.inquiry .contact-form__notice-link {
  text-decoration: underline;
}
@media (hover: hover) {
  .inquiry .contact-form__notice-link:hover {
    cursor: pointer;
  }
}
.inquiry .contact-form__button-wrapper {
  grid-column: 1/-1;
  text-align: center;
  width: 330px;
  height: 52px;
  margin: auto;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.inquiry .contact-form__button-wrapper svg {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 18px;
  margin-right: 18px;
}
.inquiry .contact-form__button-wrapper svg path {
  stroke: #fff;
  -webkit-transition: stroke 0.3s ease;
  transition: stroke 0.3s ease;
}
@media (hover: hover) {
  .inquiry .contact-form__button-wrapper {
    color: #ff801f;
    background-color: white;
  }
  .inquiry .contact-form__button-wrapper:has(.contact-form__button:enabled):hover svg path {
    stroke: #ff801f;
  }
}
.inquiry .contact-form__button {
  width: 305px;
  height: 100%;
  background-color: #ff801f;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 88px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 2px solid #ff801f;
}
.inquiry .contact-form__button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
  background-color: #ccc;
  border-color: #ccc;
}
@media (hover: hover) {
  .inquiry .contact-form__button:not(:disabled):hover {
    color: #ff801f;
    background-color: white;
  }
}
.inquiry .contact-form__input::-webkit-input-placeholder,
.inquiry .contact-form__textarea::-webkit-input-placeholder {
  color: #b9b9b9;
  opacity: 1;
  font-weight: 500;
}
.inquiry .contact-form__input::-moz-placeholder,
.inquiry .contact-form__textarea::-moz-placeholder {
  color: #b9b9b9;
  opacity: 1;
  font-weight: 500;
}
.inquiry .contact-form__input::-ms-input-placeholder,
.inquiry .contact-form__textarea::-ms-input-placeholder {
  color: #b9b9b9;
  opacity: 1;
  font-weight: 500;
}
.inquiry .contact-form__input::placeholder,
.inquiry .contact-form__textarea::placeholder {
  color: #b9b9b9;
  opacity: 1;
  font-weight: 500;
}
.inquiry .contact-form__input::-webkit-input-placeholder,
.inquiry .contact-form__textarea::-webkit-input-placeholder {
  color: #b9b9b9;
}

.investors {
  margin-bottom: 120px;
}
@media screen and (max-width: 1024px) {
  .investors {
    margin-bottom: 80px;
  }
}
.investors .filter-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  padding-top: 18px;
  border-radius: 8px;
}
.investors .filter-section h3 {
  color: #444;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}
.investors .filter-group {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .investors .filter-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.investors .filter-group::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #EF8200;
  pointer-events: none;
}
@media screen and (max-width: 1024px) {
  .investors .filter-group::after {
    top: calc(50% + 20px);
  }
}
.investors .filter-group p {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 16px */
  letter-spacing: 0.96px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.investors .filter-select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  background-color: #fff;
  color: #444;
  font-family: "Noto Sans JP";
  font-size: 16px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
.investors .filter-select:hover {
  border-color: #FF801F;
}
.investors .filter-select:focus {
  outline: none;
  border-color: #FF801F;
}
.investors .category-filter,
.investors .archive-filter {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.investors .category-list,
.investors .archive-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.investors .category-list li,
.investors .archive-list li {
  margin-bottom: 10px;
}
.investors .category-list li a,
.investors .archive-list li a {
  color: #444;
  text-decoration: none;
  font-size: 14px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.investors .category-list li a:hover,
.investors .archive-list li a:hover {
  color: #FF801F;
}
.investors .category-list li a.active,
.investors .archive-list li a.active {
  color: #FF801F;
  font-weight: 700;
}
.investors .section--investors {
  margin-top: 80px;
}
.investors .news-tabs__content {
  margin-top: 50px;
}
.investors .news-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: 20px;
}
.investors .news-list-investors {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.investors .news-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  border-bottom: solid #CECECE 1px;
  position: relative;
}
.investors .news-item:hover::after {
  width: 100%;
}
.investors .news-item:hover .news-item__link--arrow {
  background-color: #FF801F;
}
.investors .news-item:hover .news-item__link--arrow path {
  stroke: #fff;
}
.investors .news-item__date {
  color: #444;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  min-width: 80px;
  background: #F8F8F8;
  border-radius: 100vw;
  padding: 4px 14px;
}
@media screen and (max-width: 1024px) {
  .investors .news-item__date {
    padding: 2px 19px;
  }
}
.investors .news-item__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.investors .news-item__link--arrow {
  width: 36px;
  height: 36px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 100vw;
  background: #F8F8F8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.investors .news-item__link--arrow path {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.investors .news-item__title {
  margin: 0;
  color: #444;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media screen and (max-width: 1024px) {
  .investors .news-item__title {
    font-size: 15px;
  }
}
.investors .article--wtap--contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding-bottom: 20px;
}
.investors .news-item__title a {
  color: #333;
  text-decoration: none;
}
.investors .news-item__title a:hover {
  color: #007cba;
}
.investors .no-posts {
  text-align: center;
  color: #666;
  padding: 40px 0;
}
.investors .news-item_category {
  color: #FF801F;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.investors .investors2-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}
@media (hover: hover) {
  .investors .investors2-title:hover {
    text-decoration: underline;
    cursor: pointer;
  }
}
@media screen and (max-width: 1024px) {
  .investors .news-tabs__nav {
    gap: 0px;
  }
  .investors .news-tabs__button {
    padding: 10px 15px;
    font-size: 14px;
  }
  .investors .news-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .investors .news-item__date {
    font-size: 12px;
    line-height: normal;
  }
  .investors .news-tabs__item {
    margin-right: 0;
  }
  .investors .news-item_category {
    font-size: 14px;
    line-height: normal;
  }
}

.news {
  margin-bottom: 120px;
}
@media screen and (max-width: 1024px) {
  .news {
    margin-bottom: 80px;
  }
}
.news .news-tabs {
  margin-bottom: 40px;
  margin-top: 65px;
}
.news .news-tabs__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  gap: 50px;
  padding: 0;
  margin: 0;
  border-bottom: 1px solid #e0e0e0;
}
.news .news-tabs__item {
  margin-right: 20px;
}
.news .news-item_category {
  color: #444;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.news .news-tabs__button {
  background: none;
  border: none;
  padding: 15px 20px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #444;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: block;
}
.news .news-tabs__button:hover {
  color: #333;
}
.news .news-tabs__button.active {
  border-bottom-color: #ff801f;
}
.news .news-tabs__panel {
  display: none;
}
.news .news-tabs__panel.active {
  display: block;
}
.news .news-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: 20px;
}
.news .news-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  border-bottom: solid #cecece 1px;
  position: relative;
}
.news .news-item::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 150px;
  height: 2px;
  background-color: #ff801f;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.news .news-item:hover::after {
  width: 100%;
}
.news .news-item:hover .news-item__link--arrow {
  background-color: #ff801f;
}
.news .news-item:hover .news-item__link--arrow path {
  stroke: #fff;
}
.news .news-item__date {
  color: #444;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  min-width: 80px;
  border: solid 1px #444;
  border-radius: 100vw;
  padding: 3px 10px;
}
.news .news-item__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.news .news-item__link--arrow {
  width: 36px;
  height: 36px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 100vw;
  background: #f8f8f8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.news .news-item__link--arrow path {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.news .news-item__title {
  margin: 0;
  font-size: 16px;
  font-weight: normal;
}
.news .article--wtap--contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding-bottom: 20px;
}
.news .news-item__title a {
  color: #333;
  text-decoration: none;
}
.news .news-item__title a:hover {
  color: #007cba;
}
.news .no-posts {
  text-align: center;
  color: #666;
  padding: 40px 0;
}
@media screen and (max-width: 1024px) {
  .news .news-tabs__nav {
    gap: 0px;
  }
  .news .news-tabs__button {
    padding: 10px 15px;
    font-size: 14px;
  }
  .news .news-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .news .news-item__date {
    font-size: 12px;
    line-height: normal;
  }
  .news .news-tabs__item {
    margin-right: 0;
  }
  .news .news-item_category {
    font-size: 14px;
    line-height: normal;
  }
}
.news .ch--pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-top: 40px;
  font-size: 16px;
}
.news .ch--pagination li.prev {
  margin-right: 20px;
}
.news .ch--pagination li.next {
  margin-left: 20px;
}
.news .ch--pagination li.current a,
.news .ch--pagination li.current span {
  color: #ff801f;
  font-weight: 700;
  border-radius: 4px;
  padding: 8px 12px;
}
.news .ch--pagination li a {
  color: #444;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 4px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.news .ch--pagination li a:hover {
  color: #ff801f;
}

.news--cp {
  font-family: "Noto Sans JP";
}

.philosophy {
  margin-bottom: 120px;
}
@media screen and (max-width: 1024px) {
  .philosophy {
    margin-bottom: 80px;
  }
}
.philosophy .__relative {
  position: relative;
  z-index: 1;
}
.philosophy .fv--philosophy--image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: -1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 996px;
  width: 100%;
}
.philosophy .section--philosophy {
  margin-top: 80px;
}
.philosophy .fv--philosophy--title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 640px) {
  .philosophy .fv--philosophy--title {
    justify-self: unset;
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
  }
}
.philosophy .fv--philosophy--title span {
  color: #444;
  font-family: "Noto Sans JP";
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%;
  /* 57.6px */
  letter-spacing: 0.96px;
}
@media screen and (max-width: 1024px) {
  .philosophy .fv--philosophy--title span {
    font-size: 22px;
    letter-spacing: 0.66px;
  }
}
.philosophy .fv--philosophy--text {
  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;
  margin-top: 50px;
}
.philosophy .fv--philosophy--text p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.philosophy .fv--philosophy--text p span {
  color: #444;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  /* 36px */
  letter-spacing: 2px;
}
@media screen and (max-width: 1024px) {
  .philosophy .fv--philosophy--text p span {
    font-size: 16px;
    /* 28.8px */
    letter-spacing: 0.48px;
  }
}
@media screen and (max-width: 640px) {
  .philosophy .fv--philosophy--text p span {
    text-align: left;
  }
}
@media screen and (max-width: 640px) {
  .philosophy .fv--philosophy--text .fv--philosophy--text--last {
    display: inline;
  }
}
.philosophy .section--philosophy--title--wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
  padding-top: 140px;
}
@media screen and (max-width: 1024px) {
  .philosophy .section--philosophy--title--wrapper {
    padding-top: 100px;
  }
}
.philosophy .section--philosophy--title--wrapper p {
  color: #444;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 16px */
  letter-spacing: 0.48px;
}
@media screen and (max-width: 1024px) {
  .philosophy .section--philosophy--title--wrapper p {
    font-size: 14px;
    /* 14px */
    letter-spacing: 0.42px;
  }
}
.philosophy .section--philosophy--title--wrapper::after {
  content: "";
  display: block;
  width: 40px;
  height: 5px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 5px;
  background: #FF801F;
}
.philosophy .section--philosophy--title {
  color: #444;
  font-family: Inter;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 32px */
  letter-spacing: 0.96px;
}
@media screen and (max-width: 1024px) {
  .philosophy .section--philosophy--title {
    font-size: 30px;
    /* 30px */
    letter-spacing: 0.9px;
  }
}
.philosophy .section--mission-image {
  max-width: 615px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 55px;
}
.philosophy .section--philosophy--value {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
}
@media screen and (max-width: 1024px) {
  .philosophy .section--philosophy--value {
    margin-top: 36px;
    gap: 50px;
  }
}
.philosophy .section--philosophy--value--item p {
  color: #444;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  /* 25.6px */
  letter-spacing: 0.48px;
}
@media screen and (max-width: 1024px) {
  .philosophy .section--philosophy--value--item p {
    font-size: 15px;
    /* 24px */
    letter-spacing: 0.45px;
  }
}
.philosophy .section--philosophy--value--item--title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .philosophy .section--philosophy--value--item--title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
  }
}
.philosophy .section--philosophy--value--item--title strong {
  color: #333;
  font-family: Inter;
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 64px */
  letter-spacing: 1.92px;
}
@media screen and (max-width: 1024px) {
  .philosophy .section--philosophy--value--item--title strong {
    font-size: 36px;
    /* 36px */
    letter-spacing: 1.08px;
  }
}
.philosophy .section--philosophy--value--item--title span {
  color: #FF801F;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 18px */
  letter-spacing: 0.54px;
  margin-top: 10px;
}
@media screen and (max-width: 1024px) {
  .philosophy .section--philosophy--value--item--title span {
    font-size: 16px;
    /* 36px */
    letter-spacing: 0.48px;
    margin-top: 0px;
  }
}
.philosophy .section--philosophy--culture {
  margin-top: 50px;
}
.philosophy .section--philosophy--culture .section--philosophy--culture--title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 640px) {
  .philosophy .section--philosophy--culture .section--philosophy--culture--title {
    justify-self: unset;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.philosophy .section--philosophy--culture .section--philosophy--culture--title span {
  color: #444;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  /* 44.8px */
  letter-spacing: 0.84px;
}
@media screen and (max-width: 1024px) {
  .philosophy .section--philosophy--culture .section--philosophy--culture--title span {
    font-size: 18px;
    /* 28.8px */
    letter-spacing: 0.54px;
    text-align: left;
  }
}
.philosophy .section--philosophy--culture--wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
  margin-top: 50px;
}
.philosophy .section--philosophy--culture--wrapper .section--philosophy--culture--item {
  display: grid;
  grid-template-columns: 360px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}
.philosophy .section--philosophy--culture--wrapper .section--philosophy--culture--item .section--philosophy--culture--item--image img {
  border-radius: 12px;
}
.philosophy .section--philosophy--culture--wrapper .section--philosophy--culture--item:nth-child(2) {
  grid-template-columns: 1fr 360px;
}
.philosophy .section--philosophy--culture--wrapper .section--philosophy--culture--item:nth-child(2) .section--philosophy--culture--item--image {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.philosophy .section--philosophy--culture--wrapper .section--philosophy--culture--item:nth-child(2) .section--philosophy--culture--item--text {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media screen and (max-width: 640px) {
  .philosophy .section--philosophy--culture--wrapper .section--philosophy--culture--item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 20px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .philosophy .section--philosophy--culture--wrapper .section--philosophy--culture--item:nth-child(2) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.philosophy .section--philosophy--culture--wrapper .section--philosophy--culture--item--title {
  color: #FF801F;
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 24px */
  letter-spacing: 0.72px;
}
@media screen and (max-width: 1024px) {
  .philosophy .section--philosophy--culture--wrapper .section--philosophy--culture--item--title {
    font-size: 20px;
    /* 20px */
    letter-spacing: 0.6px;
  }
}
.philosophy .section--philosophy--culture--wrapper p {
  color: #444;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  /* 28.8px */
  letter-spacing: 0.54px;
  margin-top: 25px;
}
@media screen and (max-width: 1024px) {
  .philosophy .section--philosophy--culture--wrapper p {
    font-size: 15px;
    /* 24px */
    letter-spacing: 0.45px;
    margin-top: 20px;
  }
}

.privacy-policy-group {
  max-width: 1124px;
  margin: 80px auto 160px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Noto Sans JP";
}
@media screen and (max-width: 768px) {
  .privacy-policy-group {
    margin: 60px auto 120px;
  }
}
.privacy-policy-group .privacy-group__top {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .privacy-policy-group .privacy-group__top {
    margin-bottom: 40px;
    margin-top: 35px;
  }
}
.privacy-policy-group .privacy-group {
  margin-bottom: 60px;
  color: #444444;
  padding: 0 24px;
}
.privacy-policy-group .privacy-group__heading {
  font-size: 20px;
  font-weight: 700;
  border-left: 4px solid #FF8000;
  padding-left: 16px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .privacy-policy-group .privacy-group__heading {
    font-size: 16px;
    line-height: 1;
    margin-bottom: 24px;
    padding-left: 8px;
  }
}
.privacy-policy-group .privacy-group__replenishment {
  margin-bottom: 20px;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .privacy-policy-group .privacy-group__replenishment {
    margin-bottom: 32px;
  }
}
.privacy-policy-group .privacy-group__contact {
  margin-top: 60px;
  padding: 24px 0;
  margin: auto;
  text-align: center;
  font-size: 16px;
  letter-spacing: 0.03em;
  line-height: 1.6;
  background-color: #F4F4F4;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .privacy-policy-group .privacy-group__contact {
    padding: 20px 0;
    margin-top: 40px;
    font-size: 15px;
  }
}
@media screen and (max-width: 768px) {
  .privacy-policy-group .contact__text {
    display: block;
  }
}
.privacy-policy-group .privacy-group__article {
  margin-bottom: 32px;
}
.privacy-policy-group .privacy-group__article-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .privacy-policy-group .privacy-group__article-title {
    font-size: 16px;
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 768px) {
  .privacy-policy-group .article__title-emphasis {
    display: block;
    line-height: 1.4;
  }
}
.privacy-policy-group .article__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 25px;
}
@media screen and (max-width: 768px) {
  .privacy-policy-group .article__wrap {
    row-gap: 24px;
  }
}
.privacy-policy-group .privacy-group__article-text {
  font-size: 16px;
  letter-spacing: 0.03em;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .privacy-policy-group .privacy-group__article-text {
    font-size: 15px;
  }
}
.privacy-policy-group .article__text-indent {
  text-indent: 1em;
}
.privacy-policy-group .privacy-group__table {
  margin-top: 32px;
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
@media screen and (max-width: 768px) {
  .privacy-policy-group .privacy-group__table {
    margin-top: 8px;
  }
}
.privacy-policy-group .privacy-group__table-head {
  background-color: #f5f5f5;
}
.privacy-policy-group .privacy-group__table-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.privacy-policy-group .privacy-group__table-cell {
  padding: 12px 8px;
  vertical-align: top;
  word-break: break-word;
  font-size: 16px;
  border-collapse: collapse;
  border-left: 1px solid #444444;
  border-bottom: 1px solid #444444;
  padding: 40px 24px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .privacy-policy-group .privacy-group__table-cell {
    font-size: 14px;
    padding: 24px 8px;
  }
}
.privacy-policy-group .privacy-group__table-list {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px 24px 40px 24px;
  border-collapse: collapse;
  border-right: 1px solid #444444;
}
@media screen and (max-width: 768px) {
  .privacy-policy-group .privacy-group__table-list {
    padding: 24px 8px;
  }
}
.privacy-policy-group .table__cell-text--indent {
  text-indent: -1em;
  padding-left: 1em;
}
.privacy-policy-group .privacy-group__table-cell--head {
  padding: 20px 0px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #444444;
  border-right: 1px solid #444444;
}
@media screen and (max-width: 768px) {
  .privacy-policy-group .privacy-group__table-cell--head {
    padding: 10px 0px;
    font-size: 14px;
  }
}
.privacy-policy-group .privacy-group__table-cell--label {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 370px;
  padding: 40px 24px 40px 24px;
}
@media screen and (max-width: 768px) {
  .privacy-policy-group .privacy-group__table-cell--label {
    padding: 24px 8px;
    width: 134px;
  }
}
.privacy-policy-group .privacy-group__table-cell--label--head {
  width: 370px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-right: none;
}
@media screen and (max-width: 768px) {
  .privacy-policy-group .privacy-group__table-cell--label--head {
    width: 134px;
  }
}

.privacy-policy {
  max-width: 1124px;
  margin: 80px auto 160px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Noto Sans JP";
}
.privacy-policy p {
  color: #444;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  /* 25.6px */
  letter-spacing: 0.48px;
}
@media screen and (max-width: 768px) {
  .privacy-policy {
    margin: 60px auto 120px;
  }
}
.privacy-policy .privacy__top {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .privacy-policy .privacy__top {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
.privacy-policy .privacy {
  margin-bottom: 60px;
  color: #444444;
  padding: 0 40px;
}
.privacy-policy .privacy__heading {
  font-size: 20px;
  font-weight: 700;
  border-left: 4px solid #FF8000;
  padding-left: 16px;
  margin-bottom: 40px;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .privacy-policy .privacy__heading {
    line-height: 1;
    font-size: 16px;
    margin-bottom: 40px;
    padding-left: 8px;
  }
}
.privacy-policy .privacy__replenishment {
  margin-bottom: 20px;
  text-align: right;
  font-size: 16px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .privacy-policy .privacy__replenishment {
    margin-bottom: 32px;
    font-size: 15px;
  }
}
.privacy-policy .privacy__contact {
  margin-top: 60px;
  padding: 24px 0;
  margin: 20px auto;
  text-align: center;
  font-size: 16px;
  letter-spacing: 0.03em;
  line-height: 1.6;
  background-color: #F4F4F4;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .privacy-policy .privacy__contact {
    padding: 24px 0;
    margin-top: 20px;
    font-size: 15px;
  }
}
@media screen and (max-width: 768px) {
  .privacy-policy .contact__text {
    display: block;
  }
}
.privacy-policy .privacy__article {
  margin-bottom: 32px;
}
.privacy-policy .privacy__article-list {
  color: #444;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  list-style: disc;
  padding-left: 24px;
  line-height: 1.6;
  font-size: 16px;
}
.privacy-policy .privacy__article-list li:not(:last-child) {
  margin-bottom: 4px;
}
@media screen and (max-width: 768px) {
  .privacy-policy .privacy__article-list {
    font-size: 15px;
  }
}
.privacy-policy .privacy__article-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .privacy-policy .privacy__article-title {
    font-size: 16px;
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 768px) {
  .privacy-policy .article__title-emphasis {
    display: block;
    line-height: 1.4;
  }
}
.privacy-policy .article__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 25px;
}
@media screen and (max-width: 768px) {
  .privacy-policy .article__wrap {
    row-gap: 24px;
  }
}
.privacy-policy .privacy__article-text {
  font-size: 16px;
  letter-spacing: 0.03em;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .privacy-policy .privacy__article-text {
    font-size: 15px;
  }
}
.privacy-policy .privacy__article-text .link {
  text-decoration: underline;
}
@media (hover: hover) {
  .privacy-policy .privacy__article-text .link:hover {
    cursor: pointer;
  }
}
.privacy-policy .article__text-indent {
  text-indent: 1em;
}
.privacy-policy .privacy__table {
  margin-top: 32px;
  width: 100%;
  table-layout: fixed;
}
@media screen and (max-width: 768px) {
  .privacy-policy .privacy__table {
    margin-top: 8px;
  }
}
.privacy-policy .privacy__table-head {
  background-color: #f5f5f5;
}
.privacy-policy .privacy__table-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.privacy-policy .privacy__table-cell {
  color: #444;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  padding: 12px 8px;
  vertical-align: top;
  word-break: break-word;
  font-size: 16px;
  border-collapse: collapse;
  border-left: 1px solid #444444;
  border-bottom: 1px solid #444444;
  padding: 40px 70px 40px 40px;
  width: 100%;
  list-style: disc;
}
@media screen and (max-width: 768px) {
  .privacy-policy .privacy__table-cell {
    font-size: 14px;
    padding: 24px 8px;
  }
}
.privacy-policy .privacy__table-row--right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-right: 1px solid #444444;
}
.privacy-policy .privacy__table-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .privacy-policy .privacy__table-list {
    row-gap: 4px;
    padding: 24px 8px 24px 21px;
  }
}
.privacy-policy .table__cell-wrap {
  list-style: disc;
}
.privacy-policy .table__cell-text {
  line-height: 1.2;
}
.privacy-policy .privacy__table-cell--head {
  padding: 20px 0px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #444444;
  border-right: 1px solid #444444;
}
@media screen and (max-width: 768px) {
  .privacy-policy .privacy__table-cell--head {
    padding: 11px 0px;
    font-size: 14px;
  }
}
.privacy-policy .privacy__table-cell--label {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 370px;
  padding: 40px 34px 40px 24px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .privacy-policy .privacy__table-cell--label {
    padding: 24px 8px;
    width: 134px;
  }
}
.privacy-policy .privacy__table-cell--label--head {
  width: 370px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-right: none;
}
@media screen and (max-width: 768px) {
  .privacy-policy .privacy__table-cell--label--head {
    width: 134px;
  }
}

.service {
  margin-bottom: 120px;
}
@media screen and (max-width: 1024px) {
  .service {
    margin-bottom: 80px;
  }
}
.service .service-section-title {
  color: #444;
  font-family: "Noto Sans JP";
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 28px */
  letter-spacing: 0.84px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1024px) {
  .service .service-section-title {
    font-size: 20px;
  }
}
.service .service-section-title .border {
  width: 5px;
  height: 29px;
  border-radius: 20px;
  display: inline-block;
  background-color: #FF801F;
  margin-right: 20px;
}
@media screen and (max-width: 1024px) {
  .service .service-section-title .border {
    height: 20px;
    margin-right: 14px;
  }
}
.service .section--service {
  margin-top: 80px;
}
@media screen and (max-width: 1024px) {
  .service .section--service {
    margin-top: 40px;
  }
}
.service .section--service--02 {
  margin-top: 140px;
}
@media screen and (max-width: 1024px) {
  .service .section--service--02 {
    margin-top: 100px;
  }
}
.service .service-section-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(300px, 1fr));
  gap: 40px 30px;
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  .service .service-section-list {
    grid-template-columns: repeat(1, minmax(300px, 1fr));
  }
}
.service .service-card__image--logo {
  border-radius: 0px 12px 0px 0px;
  max-width: 261px;
  height: 75px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1024px) {
  .service .service-card__image--logo {
    height: 48px;
  }
}
.service .service-card__image--logo img {
  max-width: 163px;
  width: 100%;
  display: block;
}
@media screen and (max-width: 1024px) {
  .service .service-card__image--logo img {
    max-width: 106px;
  }
}
.service .service-card {
  border-radius: 8px;
  background: #FFF;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .1);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .1);
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.service .service-card:hover {
  opacity: 0.7;
  cursor: pointer;
}
.service .service-card__image {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
}
.service .service-card__image > img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.service .service-card__image--logo {
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 261px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .service .service-card__image--logo {
    max-width: 169px;
  }
}
.service .service-card__content {
  padding: 25px;
  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-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
}
.service .service-card__title {
  color: #444;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 20px */
  letter-spacing: 0.6px;
  margin-bottom: 24px;
}
@media screen and (max-width: 1024px) {
  .service .service-card__title {
    font-size: 18px;
  }
}
.service .service-card__text {
  color: #444;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  /* 25.6px */
  letter-spacing: 0.48px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (max-width: 1024px) {
  .service .service-card__text {
    font-size: 15px;
  }
}
.service .news-item__link--arrow {
  width: 36px;
  height: 36px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 100vw;
  background: #444444;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.service .news-item__link--arrow path {
  stroke: #fff;
}
@media screen and (max-width: 1024px) {
  .service .news-item__link--arrow {
    width: 24px;
    height: 24px;
  }
  .service .news-item__link--arrow svg {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}
.service .service-card__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 10px;
}

.single-news {
  margin-bottom: 120px;
  /* 記事ヘッダー */
  /* アイキャッチ画像 */
  /* 記事本文 */
  /* レスポンシブ対応 */
}
.single-news p {
  font-family: "Roboto", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2;
  padding-bottom: 3px;
  padding-bottom: 0.3rem;
  color: #222222;
  white-space: normal;
  word-break: break-all;
}
@media screen and (max-width: 1024px) {
  .single-news {
    margin-bottom: 80px;
  }
}
.single-news .single-news__header {
  margin-bottom: 60px;
}
.single-news .single-news__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}
.single-news .single-news__date {
  color: #FF801F;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 24px */
  letter-spacing: 0.72px;
  padding-top: 25px;
  display: block;
}
.single-news .single-news__category {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  color: white;
}
.single-news .single-news__category--news {
  background-color: #007cba;
}
.single-news .single-news__category--event {
  background-color: #28a745;
}
.single-news .single-news__category--press {
  background-color: #dc3545;
}
.single-news .single-news__title {
  color: #444;
  font-family: "Roboto", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  /* 51.2px */
  letter-spacing: 0.96px;
}
.single-news .single-news__thumbnail {
  margin-bottom: 40px;
}
.single-news .single-news__thumbnail-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.single-news .single-news__content {
  margin-bottom: 50px;
  line-height: 1.8;
  color: #333;
}
.single-news .single-news__content ul,
.single-news .single-news__content ol {
  margin-bottom: 20px;
  padding-left: 20px;
}
.single-news .single-news__content ul {
  list-style-type: disc;
}
.single-news .single-news__content ol {
  list-style-type: decimal;
}
.single-news .single-news__content li {
  margin-bottom: 10px;
}
.single-news .single-news__content blockquote {
  border-left: 4px solid #FF801F;
  padding: 15px 20px;
  margin: 20px 0;
  background-color: #f9f9f9;
  font-style: italic;
}
.single-news .single-news__content a {
  color: #007cba;
  text-decoration: underline;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.single-news .single-news__content a:hover {
  color: #005177;
}
.single-news .single-news__content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}
.single-news .single-news__content th,
.single-news .single-news__content td {
  border: 1px solid #ddd;
  padding: 12px;
}
.single-news .single-news__content th {
  background-color: #f5f5f5;
  font-weight: bold;
}
.single-news .single-news__content code {
  background-color: #f5f5f5;
  padding: 2px 4px;
  border-radius: 3px;
  font-family: monospace;
}
.single-news .single-news__content pre {
  background-color: #f5f5f5;
  padding: 15px;
  border-radius: 5px;
  overflow-x: auto;
  margin: 20px 0;
}
.single-news .single-news__content h2 {
  color: #444;
  font-family: "Noto Sans JP";
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  /* 44.8px */
  letter-spacing: 0.84px;
  padding: 5px 0;
  padding-left: 10px;
  border-left: #FF801F 5px solid;
  margin-bottom: 20px;
}
.single-news .single-news__content h3 {
  color: #FF801F;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  /* 32px */
  letter-spacing: 0.6px;
  margin: 30px 0 15px;
}
.single-news .single-news__content h4 {
  color: #444;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  /* 28.8px */
  letter-spacing: 0.54px;
  margin-bottom: 25px;
  display: inline-block;
  padding-bottom: 10px;
  border-bottom: 2px solid #D8D8D8;
}
.single-news .single-news__content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
}
@media (max-width: 768px) {
  .single-news .single-news__title {
    font-size: 24px;
  }
  .single-news .single-news__meta {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 10px;
  }
  .single-news .single-news__date {
    font-size: 18px;
  }
  .single-news .single-news__content h2 {
    font-size: 24px;
  }
  .single-news .single-news__content h3 {
    font-size: 18px;
  }
  .single-news .single-news__content h4 {
    font-size: 16px;
  }
}
/*# sourceMappingURL=styles.css.map */
