@charset "UTF-8";
/* Sanitize
 * ========================================================================== */
/**
 * Add border box sizing in all browsers (opinionated).
 */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit; /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Use a 4-space tab width in all browsers (opinionated).
 * 4. Remove the grey highlight on links in iOS (opinionated).
 * 5. Prevent adjustments of font size after orientation changes in
 *		IE on Windows Phone and in iOS.
 * 6. Breaks words to prevent overflow in all browsers (opinionated).
 */
html {
  cursor: default; /* 1 */
  line-height: 1.5; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  -webkit-tap-highlight-color: transparent; /* 4 */
  -ms-text-size-adjust: 100%; /* 5 */
  -webkit-text-size-adjust: 100%; /* 5 */
  word-break: break-word; /* 6 */
}

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

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: normal;
}

/* Grouping content
 * ========================================================================== */
/**
 * Remove the margin on nested lists in Chrome, Edge, IE, and Safari.
 */
dl dl,
dl ol,
dl ul,
ol dl,
ul dl {
  margin: 0;
}

/**
 * Remove the margin on nested lists in Edge 18- and IE.
 */
ol ol,
ol ul,
ul ol,
ul ul {
  margin: 0;
}

/**
 * 1. Add the correct sizing in Firefox.
 * 2. Show the overflow in Edge 18- and IE.
 */
hr {
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * Add the correct display in IE.
 */
main {
  display: block;
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
nav ol,
nav ul {
  list-style: none;
  padding: 0;
}

/**
 * 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: 1em; /* 2 */
}

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

/**
 * Add the correct text decoration in Edge 18-, IE, and Safari.
 */
abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/**
 * 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: 1em; /* 2 */
}

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

/* Embedded content
 * ========================================================================== */
/*
 * Change the alignment on media elements in all browsers (opinionated).
 */
img {
  max-width: 100%;
  height: auto;
}

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

/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on iframes in all browsers (opinionated).
 */
iframe {
  border-style: none;
}

/**
 * Remove the border on images within links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
svg:not([fill]) {
  fill: currentColor;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Tabular data
 * ========================================================================== */
/**
 * Collapse border spacing in all browsers (opinionated).
 */
table {
  border-collapse: collapse;
}

/* Forms
 * ========================================================================== */
/**
 * Remove the margin on controls in Safari.
 */
button,
input,
select {
  margin: 0;
}

/**
 * 1. Show the overflow in IE.
 * 2. Remove the inheritance of text transform in Edge 18-, Firefox, and IE.
 */
button {
  overflow: visible; /* 1 */
  text-transform: none; /* 2 */
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * 1. Change the inconsistent appearance in all browsers (opinionated).
 * 2. Correct the padding in Firefox.
 */
fieldset {
  border: 1px solid #a0a0a0; /* 1 */
  padding: 0.35em 0.75em 0.625em; /* 2 */
}

/**
 * Show the overflow in Edge 18- and IE.
 */
input {
  overflow: visible;
}

/**
 * 1. Correct the text wrapping in Edge 18- and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 */
legend {
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  white-space: normal; /* 1 */
  color: inherit; /* 2 */
}

/**
 * 1. Add the correct display in Edge 18- and IE.
 * 2. Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */
progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Remove the inheritance of text transform in Firefox.
 */
select {
  text-transform: none;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 2. Remove the default vertical scrollbar in IE.
 * 3. Change the resize direction in all browsers (opinionated).
 */
textarea {
  margin: 0; /* 1 */
  overflow: auto; /* 2 */
  resize: vertical; /* 3 */
}

/**
 * Remove the padding in IE 10-.
 */
[type=checkbox],
[type=radio] {
  padding: 0;
}

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

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.5;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Remove the inner border and padding of focus outlines in Firefox.
 */
::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus outline styles unset by the previous rule in Firefox.
 */
:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove the additional :invalid styles in Firefox.
 */
:-moz-ui-invalid {
  box-shadow: none;
}

/* Interactive
 * ========================================================================== */
/*
 * Add the correct display in Edge 18- and IE.
 */
details {
  display: block;
}

/*
 * Add the correct styles in Edge 18-, IE, and Safari.
 */
dialog {
  background-color: white;
  border: solid;
  color: black;
  display: block;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}

dialog:not([open]) {
  display: none;
}

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

/* Scripting
 * ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* User interaction
 * ========================================================================== */
/*
 * 1. Remove the tapping delay in IE 10.
 * 2. Remove the tapping delay on clickable elements
			in all browsers (opinionated).
 */
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
  -ms-touch-action: manipulation; /* 1 */
  touch-action: manipulation; /* 2 */
}

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

/* Accessibility
 * ========================================================================== */
/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */
[aria-busy=true] {
  cursor: progress;
}

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */
[aria-controls] {
  cursor: pointer;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */
[aria-disabled=true],
[disabled] {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */
[aria-hidden=false][hidden] {
  display: initial;
}

[aria-hidden=false][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

/**
 * Add
 */
dl dd {
  margin-left: 0;
}

figure {
  margin: 0;
}

menu {
  padding: 0;
}

picture {
  display: block;
}

p {
  margin: 0;
  padding: 0;
}

ul, li {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  img {
    width: 100%;
  }
}

/*--------------- form reset ------------*/
button {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  font-family: inherit;
  font-size: 100%;
  display: block;
  background-color: transparent;
  padding: 0;
  margin: 0;
  border: none;
}
@media screen and (any-hover: hover) {
  button:hover {
    opacity: 0.7;
  }
}

input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  color: inherit;
}

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

label {
  position: relative;
  display: block;
  word-break: break-all;
}
label input[type=checkbox] + span {
  position: relative;
  padding-left: 15px;
}
label input[type=radio] + span {
  position: relative;
  padding-left: 25px;
}
label input[type=checkbox] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 1px;
}
label input[type=checkbox] + span::before {
  border-color: #1E2777;
}
label input[type=checkbox]:checked + span::before {
  background-color: #1E2777;
}
label input[type=checkbox]:checked + span::before {
  background-color: #fff;
}
label input[type=checkbox]:checked + span::after {
  border: 2px solid #313131;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
label input[type=checkbox] + span::before, label input[type=checkbox] + span::after {
  position: absolute;
  top: 7px;
  left: 0;
  display: inline-block;
  content: "";
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
label input[type=checkbox] + span::before {
  z-index: 0;
  background-color: transparent;
  width: 12px;
  height: 12px;
  border: 1px #313131 solid;
}
label input[type=checkbox] + span::after {
  z-index: 1;
  margin: 2px 4px;
  width: 6px;
  height: 9px;
}
label input[type=radio] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 1px;
}
label input[type=radio] + span::before {
  position: absolute;
  display: inline-block;
  content: "";
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #686868;
  border-radius: 50%;
  z-index: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  background-color: transparent;
  width: 14px;
  height: 14px;
}
label input[type=radio]:checked + span::before {
  border-color: #007acc;
}
label input[type=radio]:checked + span::after {
  position: absolute;
  display: inline-block;
  content: "";
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #007acc;
  border-radius: 50%;
  z-index: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 3px;
  width: 8px;
  height: 8px;
}

/*-------- text email tel ---------*/
input[type=text], input[type=email], input[type=tel] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
}

textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
}

input[type=button], input[type=submit] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
}

button[type=submit], input[type=reset], button[type=button] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
}

/*-------- select ------------*/
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
select::-ms-expand {
  display: none;
}

input[type=text], input[type=email], input[type=tel] {
  width: 100%;
  max-width: 100%;
}

textarea {
  width: 100%;
  max-width: 100%;
  resize: vertical;
  overflow: auto;
}

input[type=button] {
  color: #fff;
  border-style: none;
}
input[type=submit] {
  color: #fff;
  border-style: none;
}
input[type=submit]:hover {
  opacity: 0.5;
}

@media screen and (max-width: 767px) {
  input[type=text], input[type=email], input[type=tel] {
    width: 100%;
    font-size: calcvw(28) !important;
  }
  textarea {
    width: 100%;
    font-size: calcvw(28) !important;
  }
}
@media screen and (max-width: 640px) {
  input[type=text], input[type=email], input[type=tel] {
    width: 100%;
    font-size: 16px !important;
  }
  textarea {
    width: 100%;
    font-size: 16px !important;
  }
}
::-webkit-input-placeholder {
  color: #B7B7B7;
}
::-webkit-input-placeholder, ::-moz-placeholder, :-ms-input-placeholder, ::-ms-input-placeholder, ::placeholder {
  color: #B7B7B7;
}

/*$base-width: 1400px;*/
/*weight*/
/*
* "Noto Sans JP" licensed under the SIL Open Font License 1.1
* by https://fonts.google.com/specimen/Noto+Sans+JP
*/
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("fonts/NS-400.woff2") format("woff2"), url("fonts/NS-400.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  src: url("fonts/NS-700.woff2") format("woff2"), url("fonts/NS-700.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP vertical";
  font-style: normal;
  font-weight: 400;
  src: url("fonts/NS-400-vertical.woff2") format("woff2"), url("fonts/NS-400-vertical.woff2") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP vertical";
  font-style: normal;
  font-weight: 700;
  src: url("fonts/NS-700-vertical.woff2") format("woff2"), url("fonts/NS-700-vertical.woff2") format("woff");
  font-display: swap;
}
.u-en {
  font-family: "din-2014-narrow", sans-serif;
  font-weight: 600;
  font-style: normal;
}

/*--------------------------------------------------------------------------
   reset
---------------------------------------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
small,
dl,
dt,
dd,
ol,
ul,
li {
  margin: 0;
  font-size: 100%;
}

ul {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

img {
  vertical-align: top;
}

li {
  list-style-type: none;
  vertical-align: baseline;
}

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

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

a {
  color: #666666;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.ct {
  text-align: center;
}

.strong {
  font-weight: bold;
}

.f110 {
  font-size: 110%;
}

.f120 {
  font-size: 120%;
}

.f130 {
  font-size: 130%;
}

.f150 {
  font-size: 150%;
}

.f200 {
  font-size: 200%;
}

.f300 {
  font-size: 300%;
}

span.txt_bold {
  font-weight: bold;
}

span.marker {
  border-bottom: 2px solid #F8E700;
}

/*--------------------------------------------------------------------------
   Original Start
---------------------------------------------------------------------------*/
html {
  font-size: 62.5%;
}
@media screen and (max-width: 1530px) {
  html {
    font-size: 0.6535947712vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  color: #000;
  font-size: 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
}
body.is-fixed {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
}

dl, ul, ol {
  margin: 0;
  padding: 0;
}

img {
  image-rendering: -webkit-optimize-contrast;
  vertical-align: middle;
}

.safari img {
  image-rendering: auto;
}

label {
  cursor: pointer;
}

/* link
--------------------------------------------------*/
a {
  color: inherit;
  /*&:hover,
  &:focus {
  	text-decoration: underline;
  }*/
}
a:link, a:active, a:visited {
  text-decoration: none;
}

@media print, screen and (min-width: 768px) {
  a[href^="tel:"] {
    display: inline-block;
    pointer-events: none;
  }
  a {
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  a:hover {
    opacity: 0.5;
  }
  .js-imgHover a:hover,
  .js-imgHover a:hover img {
    opacity: 1;
  }
  a,
  a * {
    outline: 1px solid transparent;
    outline: none;
  }
}
/*$base-width: 1400px;*/
/*weight*/
/* --------------------------------------------------
  cleafix
-------------------------------------------------- */
.u-clearfix:after {
  display: block;
  clear: both;
  content: "";
}

/* --------------------------------------------------
  align
-------------------------------------------------- */
.u-alignL {
  text-align: left;
}

.u-alignC {
  text-align: center;
}

.u-alignR {
  text-align: right;
}

/* --------------------------------------------------
  preload
-------------------------------------------------- */
.u-preload * {
  -webkit-transition: none !important;
  transition: none !important;
}

/* --------------------------------------------------
  font,text
-------------------------------------------------- */
.u-underline {
  text-decoration: underline !important;
}

.u-bold {
  font-weight: bold;
}

.l-header {
  position: fixed;
  top: 0;
  background: #BDC3C9;
  width: 100%;
  height: 6rem;
  z-index: 100;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  gap: 2.5rem;
  padding-right: 10rem;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 767px) {
  .l-header {
    height: 5.9rem;
  }
}
.l-header-logo a {
  font-size: 1.8rem;
    display: inline-block;
    font-weight: 700;
  padding-left: 7.5rem;
  position: relative;
 color: #000;
}
@media screen and (max-width: 767px) {
  .l-header-logo a {
    padding-left: 7rem;
	  font-size: 1.5rem;
	  color: #000;
  }
}
.l-header-logo a:before {
  content: "";
  position: absolute;
  width: 6rem;
  height: 4.5rem;
  background: url(img/logo.svg) no-repeat center center/contain;
  left: 0.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-top: -0.2rem;
}
@media screen and (max-width: 767px) {
  .l-header-logo a:before {
    left: 0;
  }
}
.l-header-btn {
  background-color: #F8E700;
  border: 1px solid #000;
  border-radius: 10rem;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  overflow: hidden;
}
.l-header-btn a {
  display: block;
  padding: 0.7rem 3.3rem;
  position: relative;
}
.l-header-btn a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  background-color: #000;
  left: 0;
  top: 0;
  z-index: 1;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.l-header-btn a span {
  display: inline-block;
  position: relative;
  z-index: 2;
}
@media screen and (any-hover: hover) and (min-width: 768px) {
  .l-header-btn a:hover {
    opacity: 1;
  }
  .l-header-btn a:hover:before {
    width: 100%;
  }
  .l-header-btn a:hover span {
    color: #fff;
  }
}
.l-header-toggle {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: fixed;
  width: 10rem;
  height: 6rem;
  background: #000;
  right: 0;
  top: 0;
  z-index: 100;
  cursor: pointer;
}
@media screen and (any-hover: hover) and (min-width: 768px) {
  .l-header-toggle:hover {
    opacity: 0.5;
  }
}
@media screen and (max-width: 767px) {
  .l-header-toggle {
    right: 0;
    width: 8.2rem;
    height: 5.9rem;
  }
}
.l-header-toggle span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 4.3rem;
  height: 1px;
  background-color: #fff;
}
.l-header-toggle span:nth-of-type(1) {
  top: calc(50% - 0.7rem);
}
@media screen and (max-width: 767px) {
  .l-header-toggle span:nth-of-type(1) {
    top: calc(50% - 0.4rem);
  }
}
.l-header-toggle span:nth-of-type(2) {
  top: calc(50% + 0.7rem);
}
@media screen and (max-width: 767px) {
  .l-header-toggle span:nth-of-type(2) {
    top: calc(50% + 0.4rem);
  }
}
.l-header-toggle.is-open {
  background: none;
}
.l-header-toggle.is-open span {
  background: #000;
}
.l-header-toggle.is-open span:nth-of-type(1) {
  -webkit-transform: translateY(0.8rem) rotate(25deg);
          transform: translateY(0.8rem) rotate(25deg);
}
@media screen and (max-width: 767px) {
  .l-header-toggle.is-open span:nth-of-type(1) {
    -webkit-transform: translateY(0.4rem) rotate(18deg);
            transform: translateY(0.4rem) rotate(18deg);
  }
}
.l-header-toggle.is-open span:nth-of-type(2) {
  -webkit-transform: translateY(-0.7rem) rotate(-25deg);
          transform: translateY(-0.7rem) rotate(-25deg);
}
@media screen and (max-width: 767px) {
  .l-header-toggle.is-open span:nth-of-type(2) {
    -webkit-transform: translateY(-0.4rem) rotate(-18deg);
            transform: translateY(-0.4rem) rotate(-18deg);
  }
}
.l-header-menu {
  position: fixed;
  right: -71.9rem;
  top: 0;
  width: 71.9rem;
  height: 100svh;
  overflow-y: auto;
  padding: 1rem 0 7rem;
  background-color: #DADFE4;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 99;
}
@media screen and (max-width: 767px) {
  .l-header-menu {
    right: -100%;
    width: 100%;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    padding: 1.5rem 0;
  }
}
.l-header-menu .-logo {
  width: 38.6rem;
  margin: 10rem auto 7rem;
}
@media screen and (max-width: 767px) {
  .l-header-menu .-logo {
    width: 22.2rem;
    height: 4.9rem;
    margin: 7rem auto 3rem;
  }
}
.l-header-menu .-btns {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  padding: 0 4rem;
}
@media screen and (max-width: 767px) {
  .l-header-menu .-btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding: 0;
    gap: 1.5rem;
  }
}
.l-header-menu .-btns .btn {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0 1rem;
}
@media screen and (max-width: 767px) {
  .l-header-menu .-btns .btn {
    width: 85%;
  }
}
.l-header-menu .-btns .btn a {
  line-height: 1;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  background: #000;
  color: #fff;
  border-radius: 10rem;
  height: 9.8rem;
  padding: 0.7rem 3rem;
  position: relative;
  overflow: hidden;
}
@media screen and (any-hover: hover) and (min-width: 768px) {
  .l-header-menu .-btns .btn a:hover {
    background: #F8E700;
  }
}
.l-header-menu .-btns .btn a:after {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  background-color: #F8E700;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 1;
  left: 0;
  top: 0;
}
@media screen and (any-hover: hover) and (min-width: 768px) {
  .l-header-menu .-btns .btn a:hover {
    opacity: 1;
    color: #000;
  }
  .l-header-menu .-btns .btn a:hover:after {
    width: 100%;
  }
}
.l-header-menu .-btns .btn a .wrap {
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  position: relative;
  z-index: 2;
}
.l-header-menu .-btns .btn a .wrap .num {
  font-size: 2.2rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
  margin-top: 1.2rem;
  padding-left: 2.5rem;
}
@media screen and (max-width: 767px) {
  .l-header-menu .-btns .btn a .wrap .num {
    font-size: 2.2rem;
    padding-left: 2.7rem;
  }
}
.l-header-menu .-btns .btn a .wrap .num:before {
  content: "";
  position: absolute;
  width: 1.9rem;
  height: 2rem;
  background: url(img/icn_phone.svg) no-repeat center center/contain;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-top: 0.3rem;
}
.l-header-menu .-btns .btn a .wrap .document {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 1.2rem;
}
@media screen and (max-width: 767px) {
  .l-header-menu .iphone-caution {
    padding: 0 5%;
    margin-top: 1rem;
  }
}
.l-header.is-show .l-header-menu {
  right: 0;
}
.l-header-nav {
  margin-top: 3.8rem;
}
@media screen and (max-width: 767px) {
  .l-header-nav {
    margin-top: 3rem;
  }
}
.l-header-nav li {
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .l-header-nav li {
    font-size: 1.4rem;
  }
}
.l-header-nav li .categoryttl {
  font-size: 1.5rem;
  cursor: pointer;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 1.5rem 3rem;
  border-bottom: 1px solid #000;
  position: relative;
}
@media screen and (any-hover: hover) and (min-width: 768px) {
  .l-header-nav li .categoryttl:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 767px) {
  .l-header-nav li .categoryttl {
    padding: 1.5rem 3rem;
  }
}
.l-header-nav li .categoryttl:after {
  content: "";
  position: absolute;
  right: 2rem;
  top: 50%;
  width: 1.6rem;
  height: 2.2rem;
  background: url(img/icn_menu_arrow.svg) no-repeat center center/contain;
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .l-header-nav li .categoryttl:after {
    width: 2.4rem;
    height: 2.6rem;
  }
}
.l-header-nav li .categoryttl.is-active {
  border-bottom: none;
}
.l-header-nav li .categoryttl.is-active:after {
  -webkit-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg);
}
.l-header-nav li .undernav {
  display: none;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 767px) {
  .l-header-nav li .undernav {
    padding-bottom: 0.5rem;
  }
}
.l-header-nav li .undernav li a {
  font-size: 1.5rem;
  display: block;
  padding: 1rem 5rem 1rem 3rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-header-nav li .undernav li a {
    padding: 1rem 5rem 1rem 3rem;
  }
}
.l-header-nav li .undernav li a:after {
  content: "";
  display: block;
  position: absolute;
  right: 2rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 1.6rem;
  height: 2.2rem;
  background: url(img/icn_menu_arrow.svg) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .l-header-nav li .undernav li a:after {
    width: 2.4rem;
    height: 2.6rem;
  }
}
.l-header-nav li .categorylink {
  display: block;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 1.5rem 3rem;
  position: relative;
}
@media screen and (any-hover: hover) and (min-width: 768px) {
  .l-header-nav li .categorylink:hover {
    opacity: 0.6;
  }
}
.l-header-nav li .categorylink:after {
  content: "";
  position: absolute;
  right: 2rem;
  top: 50%;
  width: 1.6rem;
  height: 2.2rem;
  background: url(img/icn_menu_arrow.svg) no-repeat center center/contain;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .l-header-nav li .categorylink:after {
    width: 2.4rem;
    height: 2.6rem;
  }
}
.l-header-indexnav {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: 2rem;
}
.l-header-indexnav ul {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: end;
  -webkit-box-pack: end;
          justify-content: flex-end;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  gap: 5.5rem;
}
.l-header-indexnav ul li a {
  font-size: 1.4rem;
  font-weight: 700;
  color: #000;
}
@media screen and (any-hover: hover) and (min-width: 768px) {
  .l-header-indexnav ul li a {
    cursor: pointer;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  .l-header-indexnav ul li a:hover {
    opacity: 0.5;
  }
}

.js-menubg {
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
  pointer-events: none;
}
.js-menubg.is-show {
  opacity: 1;
  pointer-events: auto;
}

/* --------------------------------------------------
    contact
-------------------------------------------------- */
.l-contact {
  background: #F8E700 url(img/bg_contact_pc.jpg) no-repeat center center/contain;
  height: 86.2rem;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  margin-top: 8.5rem;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .l-contact {
    background: #F8E700;
    height: auto;
    margin: 6rem 0 0;
    padding: 9.4rem 0;
    position: relative;
  }
  .l-contact:before, .l-contact:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 9.4rem;
    left: 0;
  }
  .l-contact:before {
    top: 0;
    background: url(img/bg_contact_top_sp.jpg) no-repeat center center/contain;
  }
  .l-contact:after {
    bottom: 0;
    background: url(img/bg_contact_bottom_sp.jpg) no-repeat center center/contain;
  }
}
.l-contact-box {
  background: #fff;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-align: stretch;
  -webkit-box-align: stretch;
          align-items: stretch;
  width: 109.1rem;
  height: 42rem;
}
@media screen and (max-width: 767px) {
  .l-contact-box {
    display: block;
    height: auto;
  }
}
.l-contact-box .-head {
  background: #fff;
  padding: 0 5rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .l-contact-box .-head {
    padding: 0 2rem;
  }
}
.l-contact-box .-head .ttl {
  font-size: 10rem;
  letter-spacing: 0.5rem;
  margin-bottom: 0.7rem;
}
@media screen and (max-width: 767px) {
  .l-contact-box .-head .ttl {
    font-size: 7.8rem;
    letter-spacing: 0.4rem;
    margin-top: 1.5rem;
    text-align: center;
  }
}
.l-contact-box .-head .catch {
  font-size: 3.6rem;
  font-weight: 700;
  margin-bottom: 2.2rem;
}
@media screen and (max-width: 767px) {
  .l-contact-box .-head .catch {
    font-size: 2.6rem;
    text-align: center;
    padding-left: 1.4rem;
  }
}
.l-contact-box .-head .detail {
  font-size: 1.6rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .l-contact-box .-head .detail {
    font-size: 1.5rem;
    line-height: 2;
  }
}
.l-contact-box .-links {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #F3F3F4;
  width: 39.2rem;
  padding: 0 4rem;
}
@media screen and (max-width: 767px) {
  .l-contact-box .-links {
    width: 100%;
    padding: 3rem 1.5rem 4rem;
    background: none;
  }
}
.l-contact-box .-links .wrap {
  width: 100%;
}
.l-contact-box .-links .btn {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .l-contact-box .-links .btn {
    width: 100%;
  }
}
.l-contact-box .-links .btn a {
  line-height: 1;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  background: #000;
  color: #fff;
  border-radius: 10rem;
  height: 9.8rem;
  padding: 0.7rem 3rem;
}
@media screen and (max-width: 767px) {
  .l-contact-box .-links .btn a {
    height: 8rem;
  }
}
.l-contact-box .-links .btn a .wrap {
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
}
.l-contact-box .-links .btn a .wrap .num {
  font-size: 2.2rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
  margin-top: 1.2rem;
  padding-left: 2.5rem;
}
@media screen and (max-width: 767px) {
  .l-contact-box .-links .btn a .wrap .num {
    font-size: 2.2rem;
    padding-left: 2.7rem;
    margin-top: 0.8rem;
  }
}
.l-contact-box .-links .btn a .wrap .num:before {
  content: "";
  position: absolute;
  width: 1.9rem;
  height: 2rem;
  background: url(img/icn_phone.svg) no-repeat center center/contain;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-top: 0.3rem;
}
.l-contact-box .-links .btn a .wrap .document {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 1.2rem;
}
.l-contact-box .-links .btn.m-outlink {
  position: relative;
}
.l-contact-box .-links .btn.m-outlink a {
  position: relative;
  overflow: hidden;
}
@media screen and (any-hover: hover) and (min-width: 768px) {
  .l-contact-box .-links .btn.m-outlink a:hover {
    background: #F8E700;
  }
}
.l-contact-box .-links .btn.m-outlink a:before {
  content: "";
  width: 1.3rem;
  height: 1.3rem;
  background: url(img/icn_link_arrow.svg) no-repeat left top/contain;
  position: absolute;
  right: 4rem;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .l-contact-box .-links .btn.m-outlink a:before {
    width: 1.6rem;
    height: 1.6rem;
    margin-top: 0;
    right: 3rem;
  }
}
.l-contact-box .-links .btn.m-outlink a:after {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  background-color: #F8E700;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 1;
  left: 0;
  top: 0;
}
@media screen and (any-hover: hover) and (min-width: 768px) {
  .l-contact-box .-links .btn.m-outlink a:hover {
    opacity: 1;
    color: #000;
  }
  .l-contact-box .-links .btn.m-outlink a:hover:after {
    width: 100%;
  }
}
.l-contact-box .-links .btn.m-outlink a .wrap {
  position: relative;
  z-index: 2;
}
.l-contact-box .-links .btn + .btn {
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .l-contact-box .-links .iphone-caution {
    margin-top: 1rem;
  }
}

/* --------------------------------------------------
    footer
-------------------------------------------------- */
.l-footer {
  padding: 7rem 0 0;
  background: #DADFE4;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .l-footer {
    border-radius: 0;
    padding: 4rem 0 0;
  }
}
.l-footer-main {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-align: start;
  -webkit-box-align: start;
          align-items: flex-start;
  gap: 9.5rem;
}
@media screen and (max-width: 767px) {
  .l-footer-main {
    display: block;
    margin-top: 2rem;
  }
  .l-footer-main.c-inner {
    padding: 0;
  }
}
.l-footer-info {
  width: 31.8rem;
}
@media screen and (max-width: 767px) {
  .l-footer-info {
    width: 100%;
    padding: 0 7%;
    margin-bottom: 3rem;
  }
}
.l-footer-info .l-footer-about {
  margin-top: 1.5rem;
}
.l-footer-info .l-footer-about .-logo {
  width: 23.4rem;
  margin: 0 auto 1.6rem;
}
@media screen and (max-width: 767px) {
  .l-footer-info .l-footer-about .-logo {
    width: 20rem;
    margin-bottom: 2.5rem;
  }
}
.l-footer-info .l-footer-about .-link {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: right;
  margin-bottom: 3.4rem;
}
@media screen and (max-width: 767px) {
  .l-footer-info .l-footer-about .-link {
    text-align: center;
    margin-bottom: 4rem;
  }
}
.l-footer-info .l-footer-about .-link a {
  position: relative;
  padding-right: 2rem;
}
.l-footer-info .l-footer-about .-link a:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.6rem;
  height: 1.6rem;
  background: url(img/icn_link_arrow.svg) no-repeat center center/contain;
}
.l-footer-info .l-footer-disclaimer {
  font-size: 1.3rem;
  letter-spacing: -0.01rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .l-footer-info .l-footer-disclaimer {
    margin-bottom: 2rem;
    font-size: 1.2rem;
  }
}
.l-footer-info .l-footer-note {
  font-size: 1.1rem;
}
@media screen and (max-width: 767px) {
  .l-footer-info .l-footer-note {
    font-size: 1.2rem;
  }
}
.l-footer-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .l-footer-body .-box {
    border-bottom: 1px solid #000;
  }
  .l-footer-body .-box:last-of-type {
    border-bottom: none;
  }
}
.l-footer-body .-box a, .l-footer-body .-box span {
  display: inline-block;
  color: #000;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-footer-body .-box a, .l-footer-body .-box span {
    width: 100%;
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .l-footer-body .-box a {
    padding: 1.5rem 7% 1.5rem 7%;
    width: 100%;
    display: block;
  }
  .l-footer-body .-box a:after {
    content: "";
    position: absolute;
    right: 5%;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    background: url(img/icn_arrow.svg) no-repeat center center/contain;
    width: 2.2rem;
    height: 2.2rem;
  }
}
.l-footer-body .-box .ttl {
  font-size: 1.8rem;
  font-weight: 700;
  border-bottom: 1px solid #000;
  margin-bottom: 0.8rem;
  padding-bottom: 0rem;
}
@media screen and (min-width: 768px) {
  .l-footer-body .-box .ttl {
    padding-right: 3rem;
    position: relative;
  }
  .l-footer-body .-box .ttl span {
    position: relative;
    padding-right: 3rem;
  }
  .l-footer-body .-box .ttl span:after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    background: url(img/icn_arrow.svg) no-repeat center center/contain;
    width: 2.2rem;
    height: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer-body .-box .ttl {
    font-size: 1.6rem;
    margin-bottom: 0;
    border-bottom: none;
  }
}
@media screen and (max-width: 767px) {
  .l-footer-body .-box .ttl.js-spAccordion a, .l-footer-body .-box .ttl.js-spAccordion span {
    padding: 1.5rem 7%;
  }
  .l-footer-body .-box .ttl.js-spAccordion a:after, .l-footer-body .-box .ttl.js-spAccordion span:after {
    content: "";
    position: absolute;
    right: 5%;
    top: 50%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: translateY(-50%) rotate(90deg);
            transform: translateY(-50%) rotate(90deg);
    background: url(img/icn_arrow.svg) no-repeat center center/contain;
    width: 2.2rem;
    height: 2.2rem;
  }
}
.l-footer-body .-box .ttl.js-spAccordion.is-active a:after, .l-footer-body .-box .ttl.js-spAccordion.is-active span:after {
  -webkit-transform: translateY(-50%) rotate(-90deg);
          transform: translateY(-50%) rotate(-90deg);
}
.l-footer-body .-box .list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1rem;
}
@media screen and (max-width: 767px) {
  .l-footer-body .-box .list {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 0.2rem;
    margin-bottom: 2rem;
  }
}
.l-footer-body .-box .list li a {
  font-size: 1.5rem;
  line-height: 1.5;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
@media screen and (max-width: 767px) {
  .l-footer-body .-box .list li a {
    display: block;
    padding: 0.7rem 14% 0.7rem 7%;
    border-bottom: none;
    font-weight: 700;
  }
  .l-footer-body .-box .list li a:after {
    content: "";
    position: absolute;
    right: 5%;
    top: 50%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: translateY(-50%) rotate(0deg);
            transform: translateY(-50%) rotate(0deg);
    background: url(img/icn_arrow.svg) no-repeat center center/contain;
    width: 2.2rem;
    height: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer-body .-box .list.js-spAccordion-body {
    display: none;
  }
}
.l-footer-body .-box + .-box {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .l-footer-body .-box + .-box {
    margin-top: 0;
  }
}
.l-footer-copyright {
  padding: 1.5rem 0;
  text-align: center;
  font-size: 1.2rem;
  margin-top: 10rem;
}
@media screen and (max-width: 767px) {
  .l-footer-copyright {
    margin-top: 0;
    padding: 0.8rem 0;
  }
}
.l-footer-copyright .c-inner {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-align: start;
  -webkit-box-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .l-footer-copyright .c-inner {
    display: block;
  }
}

/* --------------------------------------------------
	section size
-------------------------------------------------- */
.l-header-logo a {
  pointer-events: none;
}

@-webkit-keyframes slide-left {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes slide-left {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
/*==============================================
レイアウト
===============================================*/
.l-index-under {
  position: relative;
  z-index: 3;
}
.l-index-under-inner {
  background: #fff;
}
@media screen and (max-width: 767px) {
  .l-index-under-inner {
  }
}
.l-index-fixedbtn {
  position: fixed;
  bottom: 1rem;
  left: 10px;
    /* right: 0px; */
  margin: 0 auto;
  width: 73%;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.l-index-fixedbtn .btn-internal {
  margin: 0;
  min-height: 7rem;
}
.l-index-fixedbtn a {
  border: 1px solid #000;
  padding: 1rem 2rem;
  min-height: 7rem;
  margin: 0;
}
.l-index-fixedbtn a span:before {
  content: none;
}
.l-index-fixedbtn.is-show {
  opacity: 1;
  pointer-events: auto;
}
.l-index-fixedbtn.is-foot {
  opacity: 0;
  pointer-events: none;
}

.l-contact {
  margin-top: 0;
}

/*==============================================
トップ汎用
===============================================*/
.c-headline {
  position: relative;
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-headline {
    font-size: 2.2rem;
  }
}
.c-headline:before {
  content: "";
  font-size: 10rem;
  font-family: "din-2014-narrow", sans-serif;
  display: block;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.4rem;
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 767px) {
  .c-headline:before {
    font-size: 7.8rem;
  }
}

@media screen and (max-width: 767px) {
	.c-headline .sub {
    line-height: 1.5;
    display: inline-block;
    margin-top: 0.4em;
}
}

.scroll-table-caption {
  font-size: 1.4rem;
}

.scroll-table-wrap {
  scrollbar-width: none;
}
@media screen and (max-width: 767px) {
  .scroll-table-wrap {
    padding-bottom: 1rem;
    margin-top: 1rem;
    overflow: auto;
    width: 104%;
  }
  .scroll-table-wrap p.sp-only {
    text-align: center;
    margin: 0;
  }
  .scroll-table-wrap table.scroll-table {
    margin: 0 4% 0 0;
    width: auto;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .scroll-table-wrap table.scroll-table {
    margin-bottom: 1rem;
    margin-right: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .scroll-table-wrap table.scroll-table th,
  .scroll-table-wrap table.scroll-table td {
    white-space: nowrap;
    width: auto;
	font-size: 1.6rem;
  }
}
.scroll-table-wrap::-webkit-scrollbar {
  display: none;
}

/*==============================================
MV
===============================================*/
.p-mv {
  top: 6rem;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #F8E700;
}
@media screen and (max-width: 767px) {
  .p-mv {
    height: 100vh;
  }
}
.p-mv-catch {
  position: absolute;
  top: 53%;
  left: 3rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-top: -6rem;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -ms-flex-align: start;
  -webkit-box-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.4rem;
  font-size: 12rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  z-index: 4;
}
@media screen and (max-width: 767px) {
  .p-mv-catch {
    font-size: 39px;
        gap: 1rem;
        margin-top: 0;
        left: 1rem;
  }
}
.p-mv-catch .txt {
  position: relative;
  width: 0;
  -webkit-transition: width 0.3s ease-in-out;
  transition: width 1.3s ease-in-out;
  overflow: hidden;
}
.p-mv-catch .txt span {
  display: inline-block;
  background: #000;
  white-space: nowrap;
  padding:.5rem 0 1.5rem .5rem;
}
@media screen and (max-width: 767px) {
  .p-mv-catch .txt span {
   padding: 0.5rem 0.3rem 1rem;
  }
}
.p-mv-catch .txt.is-active {
  width: 100%;
}
.p-mv-img {
  position: fixed;
  top: 6rem;
}
.p-mv-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.14;
  z-index: 3;
  position: fixed;
  top: 6rem;
}

.p-about {
  position: relative;
  margin-top: 6rem;
  padding: 10.5rem 0;
}
@media screen and (max-width: 767px) {
  .p-about {
    padding: 8rem 1% 7rem;
  }
}
.p-about:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  z-index: -1;
}
.p-about-wrap {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-about-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-about-txt {
  color: #fff;
}
.p-about-txt .-en {
  font-size: 1.7rem;
  font-weight: 700;
  color: #F8E700;
  letter-spacing: 0.08rem;
}
.p-about-txt .-headline {
  font-size: 3.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-about-txt .-headline {
    font-size: 2.8rem;
  }
}
.p-about-txt .-detail {
  margin-top: 4.5rem;
}
.p-about-txt .-detail p {
  letter-spacing: 0.1rem;
  line-height: 2.6;
  font-weight: 700;
}
.p-about-txt .-detail p + p {
  margin-top: 4.2rem;
}
.p-about-data {
  color: #fff;
}
.p-about-data .-boxes {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: end;
  -webkit-box-pack: end;
          justify-content: flex-end;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  gap: 1.3rem;
}
@media screen and (max-width: 767px) {
  .p-about-data .-boxes {
    gap: 0.8rem;
    margin-top: 4rem;
  }
}
.p-about-data .-boxes .box {
  background: #000;
  padding: 1rem 1rem 0.5rem;
  width: 12rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-about-data .-boxes .box {
    width: auto;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.p-about-data .-boxes .box-icn {
  margin: 0 auto;
}
.p-about-data .-boxes .box-ttl {
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  border-bottom: 1px solid #fff;
  padding-bottom: 0.2rem;
  margin: 0.5rem 0 0.2rem;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-about-data .-boxes .box-ttl {
    font-size: 1.2rem;
    padding-bottom: 0.5rem;
    margin: 0.7rem 0 0.2rem;
  }
}

.box-ttl span{
  font-size:1rem
  }

.p-about-data .-boxes .box-num {
  color: #F8E700;
}
.p-about-data .-boxes .box-num .num {
  font-size: 4.3rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-about-data .-boxes .box-num .num {
    font-size: 4rem;
  }
}

@media screen and (max-width: 767px) {
  .p-about-data .-boxes .box-num .small {
    font-size: 1.1rem;
    margin-left: -0.3rem;
	color: #ffffff;
  }
}
.p-about-data .-boxes .box.m-01 .box-icn {
  width: 2.1rem;
  height: 2.7rem;
}
@media screen and (max-width: 767px) {
  .p-about-data .-boxes .box.m-01 .box-icn {
    width: 1.8rem;
    height: 2rem;
  }
}

.p-about-data .-boxes .box.m-01 .box-num .small {
    font-size: 1.7rem;
color: #ffffff;
}

.p-about-data .-boxes .box.m-02 .box-icn {
  width: 3rem;
  height: 2.7rem;
}
@media screen and (max-width: 767px) {
  .p-about-data .-boxes .box.m-02 .box-icn {
    width: 3rem;
    height: 2rem;
  }
}
.p-about-data .-boxes .box.m-02 .box-num .small {
  font-size: 1.1rem;
  color: #ffffff;
}

.p-about-data .-boxes .box.m-03 .box-icn {
  width: 2.8rem;
  height: 2.7rem;
}
@media screen and (max-width: 767px) {
  .p-about-data .-boxes .box.m-03 .box-icn {
    width: 2.5rem;
    height: 2rem;
  }
}
.p-about-data .-boxes .box.m-03 .box-num .small {
  font-size: 1.1rem;
  color: #ffffff;
}
.p-about-data .-notes {
  font-size: 1rem;
  margin-top: 2rem;
}
.p-about-data .-btn .btn-internal {
  width: 35.1rem;
  min-height: 8.7rem;
  margin: 3.5rem 0 0 1rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-about-data .-btn .btn-internal {
    margin-left: 0;
  }
}
.p-about-data .-btn .btn-internal a {
  min-height: 8.7rem;
}
@media screen and (max-width: 767px) {
  .p-about-data .-btn .btn-internal a {
    padding: 1.4rem 5rem;
    height: 100%;
  }
}
.p-about-data .-btn .btn-internal a span:before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  margin-top: -1rem;
}

.p-company {
  padding: 3.5rem 0 2rem;
}
@media screen and (max-width: 767px) {
  .p-company {
    padding: 2rem 0;
  }
}
.p-company-headline {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .p-company-headline {
    margin-bottom: 2rem;
  }
}
.p-company-list {
  margin: 1rem 0 1rem;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  overflow: hidden;
  isolation: isolate;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
@media screen and (max-width: 767px) {
  .p-company-list {
    margin-top: 2rem;
  }
}
.p-company-list .-wrap {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  /*animation: slide-left 2s linear infinite;*/
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.p-company-list .-item {
  width: 18rem;
  height: 6rem;
  margin: 0 auto;
  padding: 0 2rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-company-list .-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  /* 追加 */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.p-case {
  background: #e5e8ec;
  padding: 6rem 0 9.5rem;
}
@media screen and (max-width: 767px) {
  .p-case {
    padding: 4rem 0 6rem;
  }
}
.p-case-head {
  margin-bottom:10rem;
}
.p-case-headline:before {
  content: "CASE";
}
.p-case-boxes {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: stretch;
  -webkit-box-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5rem 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-case-boxes {
    display: block;
    width: 32.1rem;
    margin: 0 auto;
  }
	.p-case-head span {
     font-size:1.6rem;
}
	.p-case-head {
    margin-bottom: 6rem;
}
  .p-case-boxes .slick-arrow {
    position: absolute;
    font-size: 0;
    color: transparent;
    width: 3.7rem;
    height: 3.7rem;
    background: url(img/icn_case_arrow.svg) no-repeat center center/contain;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 2;
  }
  .p-case-boxes .slick-arrow.slick-prev {
    left: -1.5rem;
    -webkit-transform: scaleX(-1) translateY(-50%);
            transform: scaleX(-1) translateY(-50%);
  }
  .p-case-boxes .slick-arrow.slick-next {
    right: -1.5rem;
  }
  .p-case-boxes .slick-dots {
    margin-top: 3rem;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
            justify-content: center;
    -ms-flex-align: center;
    -webkit-box-align: center;
            align-items: center;
    gap: 0.8rem;
  }
  .p-case-boxes .slick-dots li {
    font-size: 0;
    color: transparent;
    width: 0.8rem;
    height: 0.8rem;
    background: #fff;
    border-radius: 4rem;
  }
  .p-case-boxes .slick-dots li.slick-active {
    background: #000;
  }
}
.p-case-boxes .-unit {
  width: 33.4rem;
}
@media screen and (max-width: 767px) {
  .p-case-boxes .-unit {
    width: 32.1rem;
  }
}
.p-case-boxes .-head {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
}
.p-case-boxes .-head .icn {
  position: relative;
  background: #000;
  width: 6.1rem;
  height: 5.5rem;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
}
.p-case-boxes .-head .icn-img {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 5rem;
  margin: 0 auto;
}
.p-case-boxes .-head .icn-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-case-boxes .-head .ttl {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 2.5rem;
  font-weight: 700;
  margin-left: 2rem;
}
@media screen and (max-width: 767px) {
  .p-case-boxes .-head .ttl {
    font-size: 2.2rem;
  }
}
.p-case-boxes .-body {
  width: 100%;
  aspect-ratio: 334/232;
}
.p-case-boxes .-body img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-case-boxes .-foot {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-case-boxes .-foot {
    font-size: 1.6rem;
  }
}

.p-what {
  padding: 9rem 0 17rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-what {
    padding: 5.5rem 0 9rem;
  }
}
.p-what-head {
  position: relative;
}
.p-what-head:before {
  content: "ABOUT";
  color: #F3F3F4;
  white-space: nowrap;
  font-size: 34.4rem;
  font-family: "din-2014-narrow", sans-serif;
  display: block;
  text-align: center;
  line-height: 1;
  letter-spacing: 1.2rem;
  position: absolute;
  top: -6rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-what-head:before {
    font-size: 15.8rem;
    top: -8.5rem;
  }
}
.p-what-headline:before {
  content: "WHAT?";
}
@media screen and (max-width: 767px) {
  .p-what-headline span {
    font-size: 2.4rem;
    display: block;
  }
}
.p-what-lead {
  font-size: 1.5rem;
  margin: 3.5rem 0 9.6rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-what-lead {
    text-align: left;
    padding: 0 0.5rem;
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-what-lead p + p {
    margin-top: 2rem;
  }
}
.p-what .c-what-block .-headline {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .p-what .c-what-block .-headline {
    margin-bottom: 3rem;
  }
}
.point_three{display: flex;justify-content: center;align-items: start;gap: 5.5rem;width: 100%;}



.point_three .num {
    font-size: 6.4rem;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    color: #F8E700;
    margin-top: 0;
}

.point_three .txt {
    font-size: 2.9rem;
    font-weight: 700;
    text-align:center;
    background: #dadfe4;
    margin: 0 -3rem;
    padding: 3rem 0;
    margin-top: 1rem;
}
.point_three .sabtxt{
	margin-top: 2rem;
	line-height: 2;
}


.item-three{
    border: 2px solid #000;
    padding: 1rem 3rem 3rem;
    width: 30%;
}
.p-what .c-what-block .-headline:before {
  font-size: 2rem;
  font-family: "din-2014-narrow", sans-serif;
  display: block;
  text-align: center;
  line-height: 1;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .point_three{display: block;}
	.item-three{
    width: 100%;
		margin-top: 2rem;
}
	.point_three .num {
		font-size: 4.4rem;
	}
	.point_three .txt {
		font-size: 2.4rem;
		}
	.point_three .txt {
padding: 2rem 0;
}
	}
@media screen and (max-width: 767px) {
  .p-what .c-what-block .-headline:before {
    letter-spacing: 0.1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-what .c-what-block .-headline {
    font-size: 2.2rem;
    letter-spacing: 0.1rem;
  }
}
.p-what-difference .-headline:before {
  content: "DIFFERENCE";
}
.p-what-difference .-table {
  width: 100%;
  border-collapse: collapse;
  border: 2px solid #000;
}
.p-what-difference .-table th, .p-what-difference .-table td {
  border: 1px solid #000;
  padding: 2rem;
  text-align: center;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-what-difference .-table th, .p-what-difference .-table td {
    padding: 2rem;
  }
}
.p-what-difference .-table th {
  font-size: 2rem;
  background: #F3F3F4;
}
@media screen and (max-width: 767px) {
  .p-what-difference .-table th {
    font-size: 1.6rem;
    text-align: left;
  }
}
.p-what-difference .-table td {
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-what-difference .-table td {
    text-align: left;
    font-size: 1.6rem;
  }
}
.p-what-difference .-table tbody td, .p-what-difference .-table tbody th {
  border-bottom: 1px dashed #707070;
  border-top: 1px dashed #707070;
}
.p-what-difference .-table tbody th {
  position: relative;
  padding: 2rem 0 2rem 4rem;
}
@media screen and (max-width: 767px) {
  .p-what-difference .-table tbody th {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}
.p-what-difference .-table tbody th .icn {
  display: inline-block;
  width: 5rem;
  height: 5rem;
  border-radius: 5rem;
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 3.5rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-what-difference .-table tbody th .icn img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-what-difference .-table tbody th .icn {
    display: none;
  }
}
.p-what-difference .-table tbody td .big {
  font-size: 1.8rem;
  line-height: 1.4;
  display: block;
}
.p-what-difference .-table tbody tr:last-child th, .p-what-difference .-table tbody tr:last-child td {
  position: relative;
  border-bottom: 1px solid #000;
}
.p-what-difference .-table tbody tr:last-child th:before, .p-what-difference .-table tbody tr:last-child td:before {
  content: "";
  width: 100%;
  height: calc(100% - 1.4rem);
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #F8E700;
  z-index: -1;
}
.p-what-difference .-table tbody tr:last-child th:before {
  width: calc(100% - 0.5rem);
  height: calc(100% - 1.4rem);
  z-index: 0;
  left: 0.5rem;
}
.p-what-difference .-table tbody tr:last-child th span:not(.icn) {
  position: relative;
  z-index: 2;
}
.p-what-difference .-table tbody tr:last-child td:last-child:before {
  width: calc(100% - 1rem);
  height: calc(100% - 1.4rem);
  right: 1rem;
}
.p-what-point {
  margin-top: 10rem;
}
.p-what-point .-headline:before {
  content: "POINT";
}
.p-what-point .-list {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 7rem;
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .p-what-point .-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-what-point .-list .item {
  width: 34rem;
  height: 34rem;
  border-radius: 30rem;
  text-align: center;
}
@media screen and (any-hover: hover) and (min-width: 768px) {
  .p-what-point .-list .item {
    cursor: pointer;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  .p-what-point .-list .item:hover {
    opacity: 0.5;
  }
}
@media screen and (max-width: 767px) {
  .p-what-point .-list .item {
    border-radius: 0;
    width: 100%;
    position: relative;
    height: 24.2rem;
  }
}
.p-what-point .-list .item-inner {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 0.8s;
  transition: -webkit-transform 0.8s;
  transition: transform 0.8s;
  transition: transform 0.8s, -webkit-transform 0.8s;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.p-what-point .-list .item-front, .p-what-point .-list .item-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  border-radius: 30rem;
  border: 0.2rem solid #000;
  overflow: hidden;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .p-what-point .-list .item-front, .p-what-point .-list .item-back {
    border-radius: 0;
    overflow: visible;
  }
}
.p-what-point .-list .item-front .txt {
  font-size: 2.9rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-what-point .-list .item-front .txt {
    font-size: 2.5rem;
  }
}
.p-what-point .-list .item-back {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}
@media screen and (max-width: 767px) {
  .p-what-point .-list .item-back .num {
    opacity: 0;
  }
}
.p-what-point .-list .item .num {
  font-size: 6.4rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  color: #F8E700;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-what-point .-list .item .num {
    position: absolute;
    top: -5.5rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 9.1rem;
    height: 9.1rem;
    border-radius: 50%;
    font-size: 4.4rem;
    line-height: 1;
    z-index: 10;
    background: #fff;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
            justify-content: center;
    -ms-flex-align: center;
    -webkit-box-align: center;
            align-items: center;
    border: 2px solid #000;
  }
}
.p-what-point .-list .item .txt {
  width: 100%;
  height: 20rem;
  padding: 2rem 2.5rem;
  text-align: center;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  position: relative;
  background: #dadfe4;
  -webkit-transition: background-image 0.4s;
  transition: background-image 0.4s;
}
@media screen and (max-width: 767px) {
  .p-what-point .-list .item .txt {
    background: #dadfe4;
    padding-top: 4rem;
  }
}
.p-what-point .-list .item .more {
  display: inline-block;
  font-size: 2.8rem;
  font-weight: 700;
  margin-top: 0.6rem;
  padding-right: 3rem;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-what-point .-list .item .more {
    line-height: 1;
    margin-top: 0.3rem;
  }
}
.p-what-point .-list .item .more:after {
  content: "";
  width: 2.2rem;
  height: 0.8rem;
  background: url(img/icn_point_arrow.svg) no-repeat center center/contain;
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-top: -0.5rem;
}
@media screen and (max-width: 767px) {
  .p-what-point .-list .item .more:after {
    margin-top: -0.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-what-point .-list .item .item-front .num {
    -webkit-transition: opacity 0.2s ease-in-out 0.4s;
    transition: opacity 0.2s ease-in-out 0.4s;
  }
}
@media screen and (max-width: 767px) {
  .p-what-point .-list .item .item-back .num {
    opacity: 0;
    -webkit-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
  }
}
.p-what-point .-list .item.is-active .item-inner {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}
.p-what-point .-list .item.is-active .txt {
  background-image: url(img/bg_point_on.jpg);
}
@media screen and (max-width: 767px) {
  .p-what-point .-list .item.is-active .item-front .num {
    opacity: 0;
    -webkit-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
  }
}
.p-what-point .-list .item.is-active .item-back {
  opacity: 1;
}
.p-what-point .-list .item.is-active .item-back .num {
  opacity: 1;
}

.p-work {
  background: #e5e8ec;
  padding: 6.5rem 0;
}
@media screen and (max-width: 767px) {
  .p-work {
    padding: 5.5rem 0;
    overflow: hidden;
  }
}
.p-work-head {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .p-work-head {
    display: block;
    text-align: center;
  }
}
.p-work-head .-headline {
  font-size: 2.8rem;
  font-weight: 700;
}
.p-work-head .-headline:before {
  content: "WORK";
  font-size: 10rem;
  font-family: "din-2014-narrow", sans-serif;
  line-height: 1;
  letter-spacing: 0.5rem;
  margin-right: 0.8rem;
}
@media screen and (max-width: 767px) {
  .p-work-head .-headline:before {
    display: block;
    font-size: 7.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-work-head .-headline {
    font-size: 2.4rem;
  }
}
.p-work-head .-btns {
  margin: 4rem 0 0 2.9rem;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-work-head .-btns {
    margin-left: 0;
  }
}
.p-work-head .-btns .slick-arrow {
  width: 4.2rem;
  height: 4.2rem;
  background: url(img/icn_work_arrow.svg) no-repeat center center/contain;
  font-size: 0;
  color: transparent;
}
.p-work-head .-btns .slick-arrow.slick-next {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.p-work-body {
  margin: 0 0 0 auto;
  width: calc(50vw + 58rem);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-work-body {
    width: 100%;
    padding-left: 2%;
  }
}
.p-work-body .-slider {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  gap: 2rem;
}
.p-work-body .-slider .slide {
  padding: 0 0.5rem;
}
.p-work-body .-slider .slide a {
  display: block;
  width: 34rem;
  aspect-ratio: 34/19;
  border: 2px solid #F8E700;
  overflow: hidden;
}
.p-work-body .-slider .slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (any-hover: hover) and (min-width: 768px) {
  .p-work-body .-slider .slide:hover a {
    opacity: 1;
  }
  .p-work-body .-slider .slide:hover img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

.slide-caption {
  margin-top: 1rem;   /* 画像との余白 */
	margin-bottom: 2rem;
  font-size: 1.6rem;    /* お好みで */
  line-height: 1.5;
  text-align: center;   /* 中央寄せなら */
  color: #000000;          /* 必要なら色を調整 */
	font-weight: 700;
}

@media screen and (max-width: 767px) {
  .p-work-body .-btns {
	          margin: 1rem 2%;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: start;
    -webkit-box-pack: start;
            justify-content: flex-start;
    -ms-flex-align: center;
    -webkit-box-align: center;
            align-items: center;
    gap: 1rem;
  }
  .p-work-body .-btns .slick-arrow {
    width: 4.2rem;
    height: 4.2rem;
    background: url(img/icn_work_arrow.svg) no-repeat center center/contain;
    font-size: 0;
    color: transparent;
  }
  .p-work-body .-btns .slick-arrow.slick-next {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}

.p-voice {
  padding: 5rem 0 6rem;
  background: #e5e8ec;
}
@media screen and (max-width: 767px) {
  .p-voice {
    padding: 4rem 0 3rem;
  }
}
.p-voice-head {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: end;
  -webkit-box-pack: end;
          justify-content: flex-end;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .p-voice-head {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
            justify-content: center;
    -ms-flex-align: center;
    -webkit-box-align: center;
            align-items: center;
    margin-bottom: 2rem;
  }
}
.p-voice-head .-headline {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -ms-flex-align: end;
  -webkit-box-align: end;
          align-items: flex-end;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  font-size: 2.8rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-voice-head .-headline {
    -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;
  }
}
.p-voice-head .-headline:before {
  content: "VOICE";
  font-size: 10rem;
  font-family: "din-2014-narrow", sans-serif;
  line-height: 1;
  letter-spacing: 0.5rem;
  margin-left: 0.8rem;
}
@media screen and (max-width: 767px) {
  .p-voice-head .-headline:before {
    font-size: 7.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-voice-head .-headline {
    font-size: 2.4rem;
  }
}
.p-voice-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: calc(50% - 3.5rem) 7rem calc(50% - 3.5rem);
  grid-template-columns: repeat(2, calc(50% - 3.5rem));
  gap: 7rem;
}
@media screen and (max-width: 767px) {
  .p-voice-list {
    display: block;
  }
}
.p-voice-list .-unit {
  background: #F1F3F5;
  padding: 2rem 4.5rem 4.5rem 4rem;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 767px) {
  .p-voice-list .-unit {
    padding: 2rem 2rem;
  }
}
.p-voice-list .-unit .head {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
	    height: 85px;
}
@media screen and (max-width: 767px) {
  .p-voice-list .-unit .head {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
            justify-content: space-between;
    -ms-flex-align: center;
    -webkit-box-align: center;
            align-items: center;
    gap: 1rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    align-items: center;
    margin-bottom: 2rem;
	  height: auto;
  }
}
.p-voice-list .-unit .head .img {
  width: 18rem;
  height: 7.9rem;
}
.p-voice-list .-unit:first-of-type .head .img {
    width: 11rem;
    height: 10.9rem;
}

@media screen and (max-width: 767px) {
  .p-voice-list .-unit .head .img {
    width: 14rem;
    height: 6.1rem;
  }
}
.p-voice-list .-unit .head .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: contain;
}
.p-voice-list .-unit .head .ttl {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-voice-list .-unit .head .ttl-tag {
  font-size: 1.5rem;
  display: inline-block;
  padding: 0.2rem 0.4rem;
  border: 1px solid #000;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-voice-list .-unit .head .ttl-tag {
    font-size: 1.2rem;
  }
}
.p-voice-list .-unit .head .ttl-name {
  font-size: 2.2rem;
  display: block;
  font-weight: 700;
	position: relative;
}
@media screen and (max-width: 767px) {
  .p-voice-list .-unit .head .ttl-name {
    font-size: 1.8rem;
  }
}
.p-voice-list .-unit .body {
  position: relative;
}
.p-voice-list .-unit .body .catch {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.8rem;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .p-voice-list .-unit .body .catch {
    font-size: 1.65rem;
  }
}
@media screen and (max-width: 767px) {
  .p-voice-list .-unit .body .detail {
    margin-bottom: 1.5rem;
  }
}
.p-voice-list .-unit .body .detail p {
  font-size: 1.5rem;
  line-height: 2;
}
.p-voice-list .-unit .body .detail p + p {
  margin-top: 2.8rem;
}
@media screen and (max-width: 767px) {
  .p-voice-list .-unit .body .detail.text-clamp {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
@media screen and (max-width: 767px) {
  .p-voice-list .-unit .body .detail.is-open.text-clamp {
    -webkit-line-clamp: unset;
  }
}
@media screen and (max-width: 767px) {
  .p-voice-list .-unit .body .more {
    text-align: center;
    position: absolute;
    bottom: -7.5rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    padding: 2rem 0;
    z-index: 2;
  }
  .p-voice-list .-unit .body .more .morebtn {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
            justify-content: center;
    -ms-flex-align: center;
    -webkit-box-align: center;
            align-items: center;
    width: 12.2rem;
    height: 4.2rem;
    font-size: 2rem;
    margin: 0 auto;
    font-weight: 700;
    background: #fff;
    position: relative;
    border-radius: 10rem;
    border: 1px solid #000;
    padding-right: 1rem;
    z-index: 2;
  }
  .p-voice-list .-unit .body .more .morebtn::after {
    content: "";
    display: block;
    width: 1.3rem;
    height: 1.3rem;
    position: absolute;
    right: 2rem;
    background: url(img/icn_toc_open.svg) no-repeat center center/contain;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .p-voice-list .-unit .body .more.is-active {
    background: none;
    margin-top: 0rem;
  }
  .p-voice-list .-unit .body .more.is-active .morebtn:after {
    background-image: url(img/icn_toc_close.svg);
  }
}
@media screen and (max-width: 767px) {
  .p-voice-list .-unit + .-unit {
    margin-top: 5rem;
	  display: block;
  }
}

.p-voice-btn {
  margin-top: 5.5rem;
  text-align: center;
}
.p-voice-btn .btn-internal {
  max-width: 35.4rem;
  min-height: 8.1rem;
}
.p-voice-btn .btn-internal a {
  min-height: 8.1rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-voice-btn .btn-internal a {
    padding: 1rem 2rem;
  }
}
.p-voice-btn .btn-internal a span:before {
  -webkit-transform: rotate(90deg) translateY(-50%);
          transform: rotate(90deg) translateY(-50%);
  margin-top: -0.8rem;
}
@media screen and (max-width: 767px) {
  .p-voice-btn .btn-internal a span:before {
    margin-right: 4.5rem;
  }
}



.ttl-name.arrow:before {
    content: "";
    width: 2.2rem;
    height: 1.6rem;
    background: url(img/icn_arrow.svg) no-repeat left top / contain;
    position: absolute;
    right: 20px;
    top: calc(50% + 0.2rem);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
.ttl-name.arrow:before {
    right: 10px;
    top: calc(50% + 0.2rem);
}
}


.p-voice-list > .-unit:nth-child(2) .head .img{
      width: 18rem;
    height: 7.9rem;
}
@media screen and (max-width: 767px) {
.p-voice-list > .-unit:nth-child(2) .head .img {
    width: 15rem;
    height: 7.9rem;
}
}





.p-download {
  padding: 8rem 0 8rem;
  background: #F8E700;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-download {
    padding: 5rem 5%;
  }
}
.p-download:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 26rem;
  background: #fff;
  bottom: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-download:after {
    content: none;
  }
}
.p-download-headline {
  font-size: 3.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8.6rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-download-headline {
    font-size: 2.4rem;
    margin-bottom: 3rem;
  }
}
.p-download-headline:before {
  content: "KNOW MORE";
  position: absolute;
  top: -10rem;
  left: 0;
  width: 100%;
  font-size: 24.6rem;
  font-family: "din-2014-narrow", sans-serif;
  line-height: 1;
  letter-spacing: 1.3rem;
  color: #fff;
  text-align: center;
  opacity: 0.4;
}
@media screen and (max-width: 767px) {
  .p-download-headline:before {
    font-size: 6.9rem;
    letter-spacing: 0.2rem;
    top: -5rem;
    white-space: nowrap;
  }
}
.p-download-headline span {
  display: inline-block;
  background: #fff;
  border: 1px solid #000;
  padding: 0.3rem 0.7rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-download-headline span {
    padding: 0.2rem 0.7rem;
  }
}
.p-download-grid {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  width: 84rem;
  gap: 4rem;
  margin: 7rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-download-grid {
    width: 100%;
    margin-top: 4rem;
    display: block;
  }
}
.p-download-grid .-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 60rem;
}
@media screen and (max-width: 767px) {
  .p-download-grid .-item + .-item {
    margin-top: 4rem;
  }
}
.p-download-grid .-item .catch {
  margin-bottom: 5.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-download-grid .-item .catch {
    margin-bottom: 2rem;
  }
}
.p-download-grid .-item .catch span {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2.8rem;
  text-align: center;
  position: relative;
  padding-bottom: 0.7rem;
}
@media screen and (max-width: 767px) {
  .p-download-grid .-item .catch span {
    font-size: 1.6rem;
	          position: relative;
        display: inline-block;
  }
}
.p-download-grid .-item .catch span:before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.5rem 1.55rem 0 1.55rem;
  border-color: #000 transparent transparent transparent;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -1.4rem;
}
@media screen and (max-width: 767px) {
 .p-download-grid .-item .catch span:before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.5rem 1.55rem 0 1.55rem;
  border-color: #000 transparent transparent transparent;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -1.4rem;
}
}
.p-download-grid .-item .catch span:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #000;
  border-bottom: 1px solid #000;
  bottom: 0;
  left: 0;
  right: 0;
}
.p-download-grid .-item a {
  display: block;
  width: 100%;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-download-grid .-item a {
    margin: 0 auto;
  }
}
@media screen and (any-hover: hover) and (min-width: 768px) {
  .p-download-grid .-item a:hover {
    opacity: 1;
  }
  .p-download-grid .-item a:hover .img {
    -webkit-transform: translateY(-2rem);
            transform: translateY(-2rem);
  }
}
.p-download-grid .-item a:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 16.8rem;
  background: #DADFE4;
  border: 1px solid #000;
  bottom: 3.5rem;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-download-grid .-item a:after {
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 3rem;
    height: 14rem;
  }
}
.p-download-grid .-item a .img {
  width:50rem;
  margin: 0 auto;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (max-width: 767px) {
  .p-download-grid .-item a .img {
    width: 26rem;
  }
}
.p-download-grid .-item a .txt {
  background: #fff;
  border: 1px solid #000;
  border-radius: 10rem;
  margin: 2.3rem 0 0;
  position: relative;
  padding: 2rem 8rem 2rem 9rem;
  min-height: 8rem;
}
@media screen and (max-width: 767px) {
  .p-download-grid .-item a .txt {
    padding: 1rem 4rem 0.4rem 6rem;
    margin-top: 1.5rem;
    min-height: 6.9rem;
  }
}
.p-download-grid .-item a .txt:after {
  content: "";
  position: absolute;
  width: 6.4rem;
  height: 6.4rem;
  background: url(img/icn_download_arrow.svg) no-repeat center center/contain;
  right: 1.8rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-download-grid .-item a .txt:after {
    width: 5.7rem;
    height: 5.7rem;
    right: 0.5rem;
  }
}
.p-download-grid .-item a .txt .icn {
  width: 5rem;
  height: 5rem;
  background: #F8E700;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  font-size: 1.7rem;
  font-weight: 700;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  position: absolute;
  left: 2rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-download-grid .-item a .txt .icn {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.3rem;
  }
}
.p-download-grid .-item a .txt .lead {
  font-size: 1.6rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-download-grid .-item a .txt .lead {
    font-size: 1.4rem;
  }
}
.p-download-grid .-item a .txt .ttl {
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-download-grid .-item a .txt .ttl {
    font-size: 1.6rem;
  }
}
.p-download-link {
  margin: 4.5rem auto 0;
  max-width: 84rem;
}

.p-step {
  background: #f8f8f8;
  padding: 9.5rem 0 12rem;
}
@media screen and (min-width: 768px) {
  .p-step {
    overflow: hidden;
  }
}
@media screen and (max-width: 767px) {
  .p-step {
    padding: 0 0 6rem;
  }
}
.p-step-wrap {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -ms-flex-align: start;
  -webkit-box-align: start;
          align-items: flex-start;
  gap: 6rem;
}
@media screen and (max-width: 767px) {
  .p-step-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
.p-step-head {
  font-size: 3.4rem;
  font-weight: 700;
  width: 33rem;
  margin-top: 18rem;
}
@media screen and (max-width: 767px) {
  .p-step-head {
    font-size: 1.9rem;
    width: 100%;
    margin: 4rem 0 3rem;
    text-align: center;
    line-height: 1;
  }
}
.p-step-head .big {
  font-size: 10rem;
  margin: 1.5rem 0 0 2.6rem;
  letter-spacing: 0.5rem;
  display: block;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-step-head .big {
    font-size: 5.7rem;
  }
}
.p-step-head .big .num {
  display: inline-block;
  position: relative;
  z-index: 2;
  margin-right: 3rem;
}
@media screen and (max-width: 767px) {
  .p-step-head .big .num {
    margin-right: 1.5rem;
  }
}
.p-step-head .big .num:before {
  content: "";
  position: absolute;
  width: 10.3rem;
  height: 10.3rem;
  background: #F8E700;
  border-radius: 50%;
  z-index: -1;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .p-step-head .big .num:before {
    width: 6rem;
    height: 6rem;
    margin-left: -0.4rem;
  }
}
.p-step-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-step-body .-unit {
  background: #fff;
  border-top: 2px solid #000;
  padding: 1rem 5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-step-body .-unit {
    padding: 1rem 2.5rem;
  }
}
.p-step-body .-unit.m-01 {
  z-index: 0;
}
.p-step-body .-unit.m-02 {
  z-index: 1;
}
.p-step-body .-unit.m-03 {
  border-bottom: 2px solid #000;
  z-index: 2;
}
.p-step-body .-unit .head {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-step-body .-unit .head {
    display: block;
    position: relative;
    margin-bottom: 2rem;
  }
}
.p-step-body .-unit .head-num {
  font-size: 8.8rem;
  color: #F8E700;
}
@media screen and (max-width: 767px) {
  .p-step-body .-unit .head-num {
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    line-height: 1;
  }
}
.p-step-body .-unit .head-ttl {
  font-size: 2.8rem;
  font-weight: 700;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 0.3rem;
}
@media screen and (max-width: 767px) {
  .p-step-body .-unit .head-ttl {
    display: inline-block;
    padding: 2.5rem 0 3rem 8rem;
  }
}
.p-step-body .-unit .head-tags {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  gap: 0.9rem 1.4rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 47.7rem;
}
@media screen and (max-width: 767px) {
  .p-step-body .-unit .head-tags {
    width: 100%;
  }
}
.p-step-body .-unit .head-tags .tag {
  font-size: 1.4rem;
  display: inline-block;
  background: #F3F3F4;
  padding: 0.4rem 0.8rem;
}
@media screen and (max-width: 767px) {
  .p-step-body .-unit .head-tags .tag {
    font-size: 1.2rem;
  }
}
.p-step-body .-unit .lead {
  margin-bottom: 3.7rem;
  line-height: 1.7;
}
.p-step-body .-unit .member {
  padding-bottom: 3rem;
}
.p-step-body .-unit .member-ttl {
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 4rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-step-body .-unit .member-ttl {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}
.p-step-body .-unit .member-ttl:before {
  content: "";
  width: 100%;
  height: 0.1rem;
  background: #000;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-step-body .-unit .member-ttl span {
  padding: 0.4rem 0.8rem 0.4rem 0.8rem;
  border: 1px solid #000;
  background: #fff;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-step-body .-unit .member-ttl span {
    padding: 0.1rem 0.8rem 0.1rem 0.8rem;
  }
}
.p-step-body .-unit .member-imgs {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .p-step-body .-unit .member-imgs {
    display: block;
  }
}
.p-step-body .-unit .member-imgs .img {
  width: 28.4rem;
  height: 20.2rem;
  padding-top: 1.5rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-step-body .-unit .member-imgs .img {
    width: 18.4rem;
    height: 13rem;
  }
}
.p-step-body .-unit .member-imgs .img:before {
  content: "";
  position: absolute;
  width: 10.9rem;
  height: 16.6rem;
  right: 0;
  top: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-step-body .-unit .member-imgs .img:before {
    width: 7rem;
    height: 10.7rem;
  }
}
.p-step-body .-unit .member-imgs .img img {
  display: block;
  width: 19rem;
  height: 19rem;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-step-body .-unit .member-imgs .img img {
    width: 12.3rem;
    height: 12.3rem;
  }
}
.p-step-body .-unit .member-imgs .img.m-type01:before {
  background: url(img/bg_comment01.svg) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .p-step-body .-unit .member-imgs .img.m-type02 {
    margin-left: auto;
    margin-top: -2rem;
  }
}
.p-step-body .-unit .member-imgs .img.m-type02:before {
  background: url(img/bg_comment02.svg) no-repeat center center/contain;
}
.p-step-body .p-step-btn {
  margin-top: 3rem;
  position: relative;
}

.p-faq {
  padding: 10.5rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-faq {
    padding: 4rem 0 0;
  }
}
.p-faq-head {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  margin-bottom: 4.5rem;
}
@media screen and (max-width: 767px) {
  .p-faq-head {
    display: block;
    margin-bottom: 3rem;
    text-align: center;
  }
}
.p-faq-head .-headline {
  font-size: 2.8rem;
  font-weight: 700;
}
.p-faq-head .-headline:before {
  content: "FAQ";
  font-size: 10rem;
  font-family: "din-2014-narrow", sans-serif;
  line-height: 1;
  letter-spacing: 0.5rem;
  margin-right: 0.8rem;
  position: relative;
  top: 0.8rem;
}
@media screen and (max-width: 767px) {
  .p-faq-head .-headline:before {
    display: block;
    font-size: 7.8rem;
    margin-bottom: 1.5rem;
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-faq-head .-headline {
    font-size: 2rem;
  }
}
.p-faq-body .-tabs {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  margin-bottom: 2rem;
  border-bottom: 0.2rem solid #000;
}
@media screen and (max-width: 767px) {
  .p-faq-body .-tabs {
    gap: 0.5rem;
  }
}
.p-faq-body .-tabs .tab {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 2.4rem;
  color: #707070;
  font-weight: 700;
  text-align: center;
  padding: 1.5rem 0;
  background: #BDC3C9;
}
@media screen and (any-hover: hover) and (min-width: 768px) {
  .p-faq-body .-tabs .tab {
    cursor: pointer;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  .p-faq-body .-tabs .tab:hover {
    opacity: 0.5;
  }
}
.p-faq-body .-tabs .tab.is-current {
  background: #F8E700;
  color: #000;
}
@media screen and (max-width: 767px) {
  .p-faq-body .-tabs .tab {
    font-size: 1.5rem;
    padding: 2.2rem 0;
  }
}
.p-faq-body .-panels {
  border-bottom: 2px solid #000;
}
.p-faq-body .-panels .panel {
  display: none;
}
.p-faq-body .-panels .panel.is-show {
  display: block;
}
.p-faq-body .-panels .panel .faq-list {
  width: 101.2rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-faq-body .-panels .panel .faq-list {
    width: 100%;
  }
}
.p-faq-body .-panels .panel .faq-list .-q {
  position: relative;
}
@media screen and (any-hover: hover) and (min-width: 768px) {
  .p-faq-body .-panels .panel .faq-list .-q {
    cursor: pointer;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  .p-faq-body .-panels .panel .faq-list .-q:hover {
    opacity: 0.5;
  }
}
.p-faq-body .-panels .panel .faq-list .-q .icn {
  width: 2.5rem;
  height: 2.5rem;
  background: #000;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-faq-body .-panels .panel .faq-list .-q .icn:before, .p-faq-body .-panels .panel .faq-list .-q .icn:after {
  content: "";
  width: 1.4rem;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.p-faq-body .-panels .panel .faq-list .-q .icn:after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}
.p-faq-body .-panels .panel .faq-list .-q.is-open .icn:after {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
}
.p-faq-body .-panels .panel .faq-list .-q .ttl {
  font-size: 2rem;
  font-weight: 700;
  padding: 3.8rem 5rem 3.8rem 5rem;
  background: url(img/line_faq_q.svg) no-repeat left bottom/auto 1px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-faq-body .-panels .panel .faq-list .-q .ttl {
    font-size: 1.5rem;
    line-height: 1.8;
    padding-right: 6rem;
  }
}
.p-faq-body .-panels .panel .faq-list .-q .ttl:before {
  content: "Q.";
  position: absolute;
  font-size: 5rem;
  font-family: "din-2014-narrow", sans-serif;
  line-height: 1;
  letter-spacing: 0.5rem;
  color: #F8E700;
  position: absolute;
  left: 0;
  top: 2.5rem;
}
.p-faq-body .-panels .panel .faq-list .-q:last-of-type .ttl {
  background: none;
}
.p-faq-body .-panels .panel .faq-list .-q:last-of-type.is-open .ttl {
  background: url(img/line_faq_q.svg) no-repeat left bottom/auto 1px;
}
.p-faq-body .-panels .panel .faq-list .-a {
  padding: 3.5rem 0 2rem;
  display: none;
}
.p-faq-body .-panels .panel .faq-list .-a .ttl {
  font-size: 2rem;
  font-weight: 700;
  padding-left: 5rem;
  position: relative;
  margin-bottom: 1.8rem;
}
@media screen and (max-width: 767px) {
  .p-faq-body .-panels .panel .faq-list .-a .ttl {
    font-size: 1.5rem;
    margin-bottom: 4rem;
  }
}
.p-faq-body .-panels .panel .faq-list .-a .ttl:before {
  content: "";
  width: 3.3rem;
  height: 1px;
  position: absolute;
  left: 0;
  top: 1.5rem;
  background: #000;
}
.p-faq-body .-panels .panel .faq-list .-a .detail {
  font-size: 1.5rem;
  line-height: 2;
  padding-left: 5rem;
}


@media screen and (max-width: 767px) {
  .p-voice-list .-unit:nth-child(3) .body .detail.text-clamp {
    display: block;
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset;
    overflow: visible;
    text-overflow: unset;
  }
}

@media screen and (min-width: 768px) {
.p-voice-list .-unit:nth-of-type(3) {
    display: block;
    align-self: start;
    padding: 2rem 4.5rem 4.5rem 4rem;
}
}

@media (max-width: 767px) {
  .p-voice-list .-unit .head .btn-link {
order: -1;
}
