@charset "UTF-8";
/* -------------------------------------------*/ /* -------------------------------------------*/
/* -------------------------------------------*/
:root {
  --content_width: 1224px;
  --content-both_space: 15px;
  --header_height:90px;
  --waves_height: 60px;
}
@media screen and (max-width: 1023px) {
  :root {
    --content-both_space: 15px;
    --header_height:65px;
    --waves_height: 20px;
  }
}

/* -------------------------------------------*/ /* -------------------------------------------*/
/* -------------------------------------------*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

summary::-webkit-details-marker {
  display: none;
}

/* -------------------------------------------*/
@media all and (-ms-high-contrast: none) {
  html,
body {
    display: none;
  }
}
*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  -ms-overflow-style: scrollbar;
  overflow: auto;
  scroll-padding-top: 80px;
  font-size: 62.5%;
}
@media screen and (max-width: ) {
  html {
    font-size: 55%;
  }
}
@media screen and (max-width: 1023px) {
  html {
    font-size: 52%;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 62.5%;
  }
}

body {
  height: 100%;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  color: #231815;
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

section {
  position: relative;
  width: 100%;
}

a,
button {
  text-decoration: none;
}

picture {
  display: block;
  line-height: 0;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

svg:not(:root) {
  overflow: hidden;
}

input,
button,
select,
optgroup,
textarea {
  vertical-align: middle;
  position: relative;
  border: none;
  border: none;
  margin: 0;
  background-color: transparent;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-border-radius: 0;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type=radio],
input[type=checkbox] {
  box-sizing: border-box;
  padding: 0;
}

input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month] {
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  border-offset: -2px;
  -webkit-appearance: none;
}

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

@media not all and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
/* -------------------------------------------*/
/*underline*/
/*arrow-fade*/
@-webkit-keyframes arrow-fade {
  0% {
    transform: translateX(0);
  }
  49% {
    transform: translateX(15px);
  }
  50% {
    opacity: 0;
  }
  51% {
    opacity: 1;
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0px);
  }
}
@keyframes arrow-fade {
  0% {
    transform: translateX(0);
  }
  49% {
    transform: translateX(15px);
  }
  50% {
    opacity: 0;
  }
  51% {
    opacity: 1;
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0px);
  }
}
/* fade */
.js-fade__view {
  display: block;
  opacity: 0;
  transform: translateY(50px);
  transition: 800ms;
}
.js-fade__view--delay1 {
  transition-delay: 100ms;
}
.js-fade__view--delay2 {
  transition-delay: 300ms;
}

.is-fade__view.js-fade__view {
  opacity: 1;
  transform: translateY(0);
}

.js-fade__down {
  opacity: 0;
  transform: translateY(-50px);
  transition: 800ms;
}
.js-fade__down--delay1 {
  transition-delay: 100ms;
}
.js-fade__down--delay2 {
  transition-delay: 300ms;
}

.is-fade__down.js-fade__down {
  opacity: 1;
  transform: translateY(0);
}

@-webkit-keyframes modalopen {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 100%;
  }
}

@keyframes modalopen {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 100%;
  }
}
@-webkit-keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}
@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes circlemove {
  0% {
    bottom: 2.5rem;
  }
  100% {
    bottom: -4.6rem;
  }
}
@keyframes circlemove {
  0% {
    bottom: 2.5rem;
  }
  100% {
    bottom: -4.6rem;
  }
}
@-webkit-keyframes circlemoveSp {
  0% {
    bottom: -1.6rem;
  }
  100% {
    bottom: -8.6rem;
  }
}
@keyframes circlemoveSp {
  0% {
    bottom: -1.6rem;
  }
  100% {
    bottom: -8.6rem;
  }
}
@-webkit-keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes flowingRight1 {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes flowingRight1 {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@-webkit-keyframes flowingRight2 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-200%);
  }
}
@keyframes flowingRight2 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-200%);
  }
}
/* layout
-------------------------------------------------------*/
.form__li {
  display: flex;
  flex-direction: column;
  margin-top: 4.2rem;
  margin-inline: auto;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .form__li {
    gap: 2.4rem;
  }
}

.form__item {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
@media screen and (max-width: 767px) {
  .form__item {
    gap: 1.6rem;
  }
}

.form__item.gap {
  gap: 1.6rem;
}

.label {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.05;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .label {
    white-space: nowrap;
  }
}

.label .required {
  display: inline-block;
  text-align: center;
  font-feature-settings: normal;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  color: #FF1F00;
  border: 1px solid #FF1F00;
  border-radius: 3.2rem;
  padding: 0.3rem 0.7rem;
}
.input.name {
  display: flex;
  gap: 2.4rem;
}

.radio {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
}
@media screen and (max-width: 767px) {
  .radio {
    flex-direction: column;
  }
}

.form__privacy-wrap {
  margin-top: 2.4rem;
  margin-inline: auto;
}
.form__privacy-box {
  font-size: 1.4rem;
  height: 21.5rem;
  padding-block: 3rem;
  padding-inline: 3rem 7.2rem;
  border-radius: 0.5rem;
  border: 1px solid #CDD3D9;
  overflow-y: scroll;
  margin-top: 1rem;
}
@media screen and (max-width: 1023px) {
  .form__privacy-box {
    padding-inline: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .form__privacy-box {
    height: 18.8rem;
    padding: 1.9rem;
  }
}

.form__privacy-box h3 {
  font-weight: bold;
}

.form__privacy-box p + h3,
.form__privacy-box ul + h3 {
  margin-top: 1em;
}

.form__privacy-box h3 + p {
  margin-top: 0.4em;
}

.form__privacy-box ul {
  list-style: disc;
  padding-left: 1.5em;
}

.form__privacy-cta {
  margin-top: 1em;
}

.form__privacy-cta dl div {
  display: flex;
  gap: 3rem;
}

.form__privacy-cta dl dt {
  width: 10%;
  min-width: 64px;
}

.form__privacy-text {
  font-size: 1.6rem;
  text-align: center;
  margin-top: 1.6rem;
}
@media screen and (max-width: 767px) {
  .form__privacy-text {
    font-size: 1.4rem;
  }
}

.form__check {
  text-align: center;
  line-height: 1.25;
  margin-left: 0.7rem;
  margin-top: 1.3rem;
}
@media screen and (max-width: 767px) {
  .form__check {
    font-size: 1.2rem;
  }
}

.form__btn--wrap {
  width: 26.9rem;
  margin-inline: auto;
  margin-top: 4rem;
}
.l-cta.entry .form__btn--wrap {
  margin-top: 40px;
}

.form__btn--wrap input {
  width: 26.9rem;
  font-size: 1.6rem;
  font-weight: 700;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  cursor: pointer;
  padding: 1.7602rem 0;
  color: #fff;
}

.confirm__wrap {
  margin-top: 3.2rem;
}

.confirm__wrap .formTable {
  width: 100%;
}

.confirm__wrap tr {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.confirm__wrap tr:first-child,
.confirm__wrap tr:nth-child(2),
.confirm__wrap tr:nth-child(8),
.confirm__wrap tr:last-child {
  border-bottom: 1px solid #231815;
  padding-bottom: 4rem;
  gap: 3.2rem;
}

.confirm__wrap tr:nth-child(3),
.confirm__wrap tr:nth-child(4),
.confirm__wrap tr:nth-child(5),
.confirm__wrap tr:nth-child(6),
.confirm__wrap tr:nth-child(7) {
  margin-top: 1.6rem;
}

.confirm__wrap tr:nth-child(2),
.confirm__wrap tr:nth-child(8),
.confirm__wrap tr:last-child {
  margin-top: 4rem;
}

.confirm__wrap tr:nth-child(3) {
  margin-top: 4rem;
}

.confirm__wrap tr:nth-child(3)::before {
  content: "ご担当者様情報";
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 3.2rem;
}

.confirm__wrap tr:nth-child(7) {
  border-bottom: 1px solid #231815;
  padding-bottom: 4rem;
}

.confirm__wrap th {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.167;
}

.confirm__wrap tr:nth-child(3) th,
.confirm__wrap tr:nth-child(4) th,
.confirm__wrap tr:nth-child(5) th,
.confirm__wrap tr:nth-child(6) th,
.confirm__wrap tr:nth-child(7) th {
  display: none;
}

.confirm__wrap td {
  line-height: 1.3125;
}

.confirm__wrap tr:nth-child(3) td,
.confirm__wrap tr:nth-child(4) td,
.confirm__wrap tr:nth-child(5) td,
.confirm__wrap tr:nth-child(6) td,
.confirm__wrap tr:nth-child(7) td {
  line-height: 1.3125;
}

.confirm__btn-box {
  margin-top: 10.1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .confirm__btn-box {
    margin-top: 4rem;
    gap: 2.4rem;
  }
}

.confirm__btn-box .c-btn {
  width: 26.9rem;
}

.confirm__btn-box input {
  width: 100%;
  font-size: 1.6rem;
  font-weight: 700;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  cursor: pointer;
  padding: 1.7602rem 0;
}

.confirm__btn-box .c-btn.yellow {
  border: 1px solid #231815;
  background-color: transparent;
}

.confirm__btn-box .c-btn.yellow::after {
  right: auto;
  left: 3.2rem;
  transform: translateY(-50%) scale(-1, 1);
}

.confirm__btn-box .back input {
  color: #000;
}

.confirm__btn-box .submit input {
  color: #fff;
}

/**
 * input
 *
 */
input[type=text],
input[type=date],
input[type=password],
input[type=email],
input[type=time],
input[type=tel],
input[type=number] {
  font-size: 1.6rem;
  position: relative;
  width: 100%;
  padding: 1.55rem 0.9rem;
  border: none;
  border-radius: 0.5rem;
  line-height: 1;
  letter-spacing: 0.1em;
  border: 1px solid #CDD3D9;
}
@media screen and (max-width: 1023px) {
  input[type=text],
input[type=date],
input[type=password],
input[type=email],
input[type=time],
input[type=tel],
input[type=number] {
    padding: 10px;
  }
}

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

/**
 * textarea
 *
 */
textarea {
  position: relative;
  width: 100%;
  height: 13.3rem;
  padding: 0.8rem 0.9rem;
  border-radius: 0.5rem;
  letter-spacing: 0.1em;
  border: 1px solid #CDD3D9;
  resize: none;
}
@media screen and (max-width: 1023px) {
  textarea {
    height: 14.2rem;
  }
}

input[type=text]:disabled {
  background: transparent;
  cursor: not-allowed;
}
input[type=text]:disabled::-moz-placeholder {
  color: #FFF100;
  opacity: 1;
}
input[type=text]:disabled::placeholder {
  color: #FFF100;
  opacity: 1;
}

/**
 * radio
 *
 */
input[type=radio] {
  display: none;
  vertical-align: middle;
}

.radio-lb {
  font-size: 1.6rem;
  position: relative;
  display: inline-block;
  padding: 0 0 0 2.4rem;
  line-height: 1.25;
  transition: 0.5;
  transition-property: color;
  cursor: pointer;
}

.radio-lb::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 1.6rem;
  height: 1.6rem;
  transform: translateY(-50%);
  border: 1px solid #706D65;
  box-sizing: border-box;
  border-radius: 50%;
  z-index: 2;
}

.radio-lb::after {
  content: "";
  display: block;
  position: absolute;
  top: 0.6rem;
  left: 0.4rem;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background-color: #FFF100;
  transition: 0.5s;
  transition-property: color;
  opacity: 0;
  z-index: 3;
}

.radio-lb:has(input[type=radio]:checked)::after {
  opacity: 1;
}

/**
 * checkbox
 *
 */
input[type=checkbox] {
  display: none;
  vertical-align: middle;
}

input[type=checkbox] + label {
  font-size: 1.6rem;
  position: relative;
  display: inline-block;
  padding: 0 0 0 2.4rem;
  line-height: 1.25;
  transition: 0.5;
  transition-property: color;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  input[type=checkbox] + label {
    font-size: 1.4rem;
  }
}

input[type=checkbox] + label::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 1.6rem;
  height: 1.6rem;
  transform: translateY(-50%);
  border: 1px solid #706D65;
  box-sizing: border-box;
  border-radius: 50%;
  z-index: 2;
}

input[type=checkbox] + label::after {
  content: "";
  display: block;
  position: absolute;
  top: 0.6rem;
  left: 0.4rem;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background-color: #FFF100;
  transition: 0.5s;
  transition-property: color;
  opacity: 0;
  z-index: 3;
}

input[type=checkbox]:checked + label::after {
  opacity: 1;
}

/**
 * select
 *
 */
.select-parts {
  position: relative;
  width: 100%;
  border: 1px #FFF100 solid;
  border-radius: 5px;
  overflow: hidden;
}
.select-parts::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 15px;
  height: 10px;
  margin-top: 2px;
  background: url(../img/contact/select_arrow.png) no-repeat top center/contain;
  pointer-events: none;
  z-index: 5;
}
.select-parts select {
  position: relative;
  width: 100%;
  height: 45px;
  padding: 0 20px 0 15px;
  background: #fbefe3;
  color: #7f7f7f;
  font-size: 2rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  border: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  text-align: center;
}

/**
 * file
 *
 */
input[type=file] + label {
  width: 160px;
  margin: 0 10px 0 0;
  padding: 15px 0;
}
input[type=file] + label:after {
  left: 170px;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
body.company .l-cta {
  background: linear-gradient(90deg, #231815 0%, #231815 50%, #00AFEC 50%, #00AFEC 100%);
}
@media screen and (max-width: 767px) {
  body.company .l-cta {
    background: none;
  }
}

.l-cta {
  background: linear-gradient(90deg, #231815 0%, #231815 50%, #FFF100 50%, #FFF100 100%);
}
@media screen and (max-width: 767px) {
  .l-cta {
    background: none;
  }
}
.l-cta__inner.u-con--md {
  display: flex;
}
@media screen and (max-width: 767px) {
  .l-cta__inner.u-con--md {
    width: 100%;
    flex-direction: column;
  }
}
.l-cta__box {
  width: 50%;
  padding: 8rem 10.8rem;
}
@media screen and (max-width: 1023px) {
  .l-cta__box {
    padding: 40px 50px;
  }
}
@media screen and (max-width: 767px) {
  .l-cta__box {
    width: 100%;
    padding: 5.6rem 0;
  }
}
.l-cta__box.black {
  background-color: #231815;
  color: #fff;
  padding-left: 0;
}
.l-cta__box.yellow {
  background-color: #FFF100;
  padding-right: 0;
}
.l-cta__box.blue {
  background-color: #00AFEC;
  padding-right: 0;
}
.l-cta__box-inner {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .l-cta__box-inner {
    width: 91.795%;
    margin-inline: auto;
    gap: 0;
  }
}
@media screen and (max-width: 1023px) {
  .l-cta .c-title {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .l-cta .c-title {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 1023px) {
  .l-cta .c-title::before {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .l-cta .c-title::before {
    font-size: 1.6rem;
  }
}
.l-cta__box.black .c-title::after {
  background: linear-gradient(180deg, #fff 0%, #fff 26%, #FFF100 26%, #FFF100 100%);
}
.l-cta__box.yellow .c-title::after {
  background: linear-gradient(180deg, #fff 0%, #fff 26%, #231815 26%, #231815 100%);
}
.l-cta__box.blue .c-title::after {
  background: linear-gradient(180deg, #fff 0%, #fff 26%, #231815 26%, #231815 100%);
}
.l-cta__text {
  font-size: 1.6rem;
}
@media screen and (max-width: 1023px) {
  .l-cta__text {
    font-size: 13px;
  }
}
@media screen and (max-width: 767px) {
  .l-cta__text {
    margin-top: 2.4rem;
    font-size: 1.6rem;
  }
}
.l-cta .c-btn {
  margin-top: auto;
  padding: 3.5602rem 0;
}
@media screen and (max-width: 1023px) {
  .l-cta .c-btn {
    font-size: 13px;
    padding: 2.5602rem 0;
  }
}
@media screen and (max-width: 767px) {
  .l-cta .c-btn {
    font-size: 1.6rem;
    margin-top: 3.2rem;
    padding: 3.5602rem 0;
  }
}
@media screen and (max-width: 1023px) {
  .l-cta .c-btn::after {
    width: 2rem;
    right: 2.4rem;
  }
}

/* -------------------------------------------*/
html {
  font-size: 62.5%;
}
@media screen and (max-width: 1180px) {
  html {
    font-size: 52.5%;
  }
}
@media screen and (max-width: 1023px) {
  html {
    font-size: 62.5%;
  }
}
@media screen and (max-width: 389px) {
  html {
    font-size: 62%;
  }
}

body {
  position: relative;
  height: 100%;
  background-color: #FFF100;
}
@media screen and (max-width: 1023px) {
  body {
    width: 100%;
    min-width: 100%;
  }
}

.l-wrapper {
  position: relative;
  width: 100%;
  text-align: left;
}
@media not all and (max-width: 1023px) {
  .l-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    height: 100%;
    margin: 0 auto;
    text-align: left;
  }
}

.l-main {
  position: relative;
  width: 100%;
  margin-top: 13.6rem;
}
@media screen and (max-width: 767px) {
  .l-main {
    margin-top: 0;
  }
}
.l-main--404 .l-main__inner, .l-main--error .l-main__inner {
  padding: 120px 0;
}
@media screen and (max-width: 1023px) {
  .l-main--404 .l-main__inner, .l-main--error .l-main__inner {
    padding: 80px 15px;
  }
}
.l-main--404 .c-button, .l-main--error .c-button {
  margin: 40px auto 0;
}
@media screen and (max-width: 1023px) {
  .l-main--404 .c-button, .l-main--error .c-button {
    margin-top: 30px;
  }
}

.l-main__loading {
  width: 100%;
  height: 100vh;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 52;
}
.l-main__loading::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.l-main__loading.open {
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-delay: 2.8s;
          animation-delay: 2.8s;
}
.l-main__loading.open::before {
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
  -webkit-animation-delay: 2.2s;
          animation-delay: 2.2s;
}
.l-main__loading.none {
  visibility: hidden;
}
.l-main__loading-logo {
  width: 100%;
  height: 100%;
  background-color: #FFF100;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-animation: fadeIn 1.2s;
          animation: fadeIn 1.2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.l-main__loading-logo img {
  width: 48%;
  min-width: 250px;
}
@media screen and (max-width: 767px) {
  .l-main__loading-logo img {
    width: 75%;
    min-width: auto;
  }
}
.l-main__loading-bg::before, .l-main__loading-bg::after {
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 51;
  background-color: #FFF100;
}
.l-main__loading-bg::before {
  -webkit-clip-path: polygon(0 0, 100% 0, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 0% 100%);
}
.l-main__loading-bg::after {
  -webkit-clip-path: polygon(0 100%, 100% 0, 100% 100%);
          clip-path: polygon(0 100%, 100% 0, 100% 100%);
}
.l-main__loading-bg.is-run {
  transition: 1.2s cubic-bezier(0.4, 0.4, 0, 1);
  transition-property: transform;
}
.l-main__loading-bg.is-run::before {
  transform: translate(-100%, -100%);
}
.l-main__loading-bg.is-run::after {
  transform: translate(100%, 100%);
}
.l-main__loading-bg.open::before, .l-main__loading-bg.open::after {
  transition: 1.2s cubic-bezier(0.4, 0.4, 0, 1);
  transition-property: transform;
  transition-delay: 3.8s;
}
.l-main__loading-bg.open::before {
  transform: translate(-100%, -100%);
}
.l-main__loading-bg.open::after {
  transform: translate(100%, 100%);
}
.l-main__loading-bg.none::before, .l-main__loading-bg.none::after {
  transition: 1.2s cubic-bezier(0.4, 0.4, 0, 1);
  transition-property: transform;
}
.l-main__loading-bg.none::before {
  transform: translate(-100%, -100%);
}
.l-main__loading-bg.none::after {
  transform: translate(100%, 100%);
}

/* -------------------------------------------*/
body.is-open .l-navi {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.l-navi {
  display: flex;
  align-items: flex-end;
  gap: 4.8rem;
}
@media screen and (max-width: 1023px) {
  .l-navi {
    width: 100%;
    height: 100%;
    display: block;
    max-width: 100vw;
    gap: 2.8rem;
    background-color: #231815;
    padding: 13.2rem 4.8rem 3.7rem;
    position: fixed;
    top: 0;
    left: 0;
    transition: 0.5s;
    border: none;
    transform: translateY(-100%);
    overflow-y: scroll;
  }
}
.l-navi__menu {
  display: flex;
  gap: 4.8rem;
}
@media screen and (max-width: 1023px) {
  .l-navi__menu {
    flex-direction: column;
    gap: 3.2rem;
  }
}
.l-navi__menu-item.has-child {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1023px) {
  .l-navi__menu-item.has-child {
    flex-wrap: wrap;
    row-gap: 0.8rem;
  }
}
.l-navi__menu-link {
  cursor: pointer;
  font-size: 1.8rem;
  font-weight: 700;
  color: #231815;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 1023px) {
  .l-navi__menu-link {
    color: #fff;
    font-size: 1.8rem;
    line-height: 1.8;
    padding-left: 1.1rem;
    display: block;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-navi__menu-link {
    transition: 0.5s;
    transition-property: color;
  }
  .l-navi__menu-link .chevron {
    transition: 0.5s;
    transition-property: background-image;
  }
  .l-navi__menu-link:hover {
    color: #756662;
  }
  .l-navi__menu-link:hover .chevron {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22none%22%3E%20%3Cpath%20d%3D%22M8.00004%208.78068L11.0938%205.48068L11.9775%206.42335L8.00004%2010.666L4.02254%206.42335L4.90691%205.48068L8.00066%208.78068L8.00004%208.78068Z%22%20fill%3D%22%23756662%22%2F%3E%3C%2Fsvg%3E");
  }
}
@media screen and (max-width: 1023px) {
  .l-navi__menu-link::after {
    content: "";
    display: block;
    width: 0.5rem;
    background: linear-gradient(180deg, #fff 0%, #fff 26%, #FFF100 26%, #FFF100 100%);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
  }
}
.l-navi .chevron {
  display: block;
  width: 1.5rem;
  aspect-ratio: 15/16;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22none%22%3E%20%3Cpath%20d%3D%22M8.00004%208.78068L11.0938%205.48068L11.9775%206.42335L8.00004%2010.666L4.02254%206.42335L4.90691%205.48068L8.00066%208.78068L8.00004%208.78068Z%22%20fill%3D%22%23231815%22%2F%3E%3C%2Fsvg%3E");
}
@media screen and (max-width: 1023px) {
  .l-navi .chevron {
    display: none;
  }
}
.l-navi__child-menu {
  width: 97.223%;
  max-width: 1400px;
  display: flex;
  justify-content: space-between;
  padding: 6rem 3rem;
  background-color: #231815;
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translate(-50%, 100%);
  box-shadow: 6px 4px 9px 0px rgba(157, 149, 6, 0.54);
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}
@media screen and (max-width: 1023px) {
  .l-navi__child-menu {
    width: 100%;
    position: static;
    border: none;
    transform: none;
    box-shadow: none;
    padding: 0;
    flex-direction: column;
    row-gap: 1.6rem;
    visibility: visible;
    opacity: 1;
  }
}
.l-navi__child-item {
  width: 28.2835%;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .l-navi__child-item {
    width: 100%;
    background-color: transparent;
  }
}
.l-navi__child-link {
  display: block;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
@media screen and (max-width: 1023px) {
  .l-navi__child-link {
    font-weight: 400;
  }
}
@media screen and (max-width: 1023px) {
  .l-navi__child-link figure {
    display: none;
  }
}
.l-navi__buttons {
  display: flex;
  align-items: center;
  gap: 3.2rem;
}
@media screen and (max-width: 1023px) {
  .l-navi__buttons {
    flex-direction: column;
    gap: 3.2rem;
    margin-top: 9rem;
  }
}
.l-navi__btn {
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.8;
  color: #231815;
  border: 1px solid #231815;
  padding-block: 1.6rem;
}
@media screen and (max-width: 1023px) {
  .l-navi__btn {
    width: 100%;
    justify-content: center;
    font-size: 1.8rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-navi__btn {
    transition: 0.5s;
    transition-property: color;
  }
  .l-navi__btn::after {
    transition: 0.5s;
    transition-property: transform;
  }
  .l-navi__btn::before {
    transition: 0.5s;
    transition-property: background-size;
  }
  .l-navi__btn:hover.tra {
    color: #FFF100;
  }
  .l-navi__btn:hover.black {
    color: #231815;
  }
  .l-navi__btn:hover::after {
    transform: scale(1, 1);
  }
  .l-navi__btn:hover::before {
    background-size: 0 0, contain;
  }
}
.l-navi__btn::before, .l-navi__btn::after {
  content: "";
}
.l-navi__btn::before {
  display: block;
  background-repeat: no-repeat;
  background-size: contain, 0 0;
}
.l-navi__btn.tra::before {
  width: 1.6rem;
  aspect-ratio: 1/1;
  background-image: url(../images/common/header-icon01.svg), url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22none%22%3E%20%3Cpath%20d%3D%22M8%2012L3%207L4.4%205.55L7%208.15V0H9V8.15L11.6%205.55L13%207L8%2012ZM0%2016V11H2V14H14V11H16V16H0Z%22%20fill%3D%22%23FFF100%22%2F%3E%3C%2Fsvg%3E");
}
@media screen and (max-width: 1023px) {
  .l-navi__btn.tra::before {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2217%22%20height%3D%2216%22%20viewBox%3D%220%200%2017%2016%22%20fill%3D%22none%22%3E%20%3Cpath%20d%3D%22M8.5%2012L3.5%207L4.9%205.55L7.5%208.15V0H9.5V8.15L12.1%205.55L13.5%207L8.5%2012ZM0.5%2016V11H2.5V14H14.5V11H16.5V16H0.5Z%22%20fill%3D%22white%22%2F%3E%3C%2Fsvg%3E");
  }
}
.l-navi__btn.black::before {
  width: 2.1rem;
  aspect-ratio: 21/16;
  background-image: url(../images/common/header-icon02.svg), url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2221%22%20height%3D%2216%22%20viewBox%3D%220%200%2021%2016%22%20fill%3D%22none%22%3E%20%3Cpath%20d%3D%22M21%202C21%200.9%2020.055%200%2018.9%200H2.1C0.945%200%200%200.9%200%202V14C0%2015.1%200.945%2016%202.1%2016H18.9C20.055%2016%2021%2015.1%2021%2014V2ZM18.9%202L10.5%206.99L2.1%202H18.9ZM18.9%2014H2.1V4L10.5%209L18.9%204V14Z%22%20fill%3D%22%23231815%22%2F%3E%3C%2Fsvg%3E");
}
@media screen and (max-width: 1023px) {
  .l-navi__btn.black::before {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2221%22%20height%3D%2216%22%20viewBox%3D%220%200%2021%2016%22%20fill%3D%22none%22%3E%20%3Cpath%20d%3D%22M21%202C21%200.9%2020.055%200%2018.9%200H2.1C0.945%200%200%200.9%200%202V14C0%2015.1%200.945%2016%202.1%2016H18.9C20.055%2016%2021%2015.1%2021%2014V2ZM18.9%202L10.5%206.99L2.1%202H18.9ZM18.9%2014H2.1V4L10.5%209L18.9%204V14Z%22%20fill%3D%22%23231815%22%2F%3E%3C%2Fsvg%3E");
  }
}
.l-navi__btn::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  transform-origin: left top;
  transform: scale(0, 1);
  transition: all 0.5s ease;
}
.l-navi__btn.tra::after {
  background-color: #231815;
}
.l-navi__btn.black::after {
  background-color: #FFF100;
}
.l-navi__btn.tra {
  padding-inline: 4.5rem;
}
@media screen and (max-width: 1023px) {
  .l-navi__btn.tra {
    padding-inline: 3.5rem;
    color: #fff;
    border: 1px solid #fff;
  }
}
.l-navi__btn.black {
  color: #FFF100;
  background-color: #231815;
  padding-inline: 7rem;
}
@media screen and (max-width: 1023px) {
  .l-navi__btn.black {
    padding-inline: 5rem;
    background-color: #FFF100;
    color: #231815;
  }
}
.l-navi__sp {
  display: flex;
  justify-content: center;
  gap: 3.2rem;
  margin-top: 2.4rem;
}
@media screen and (max-width: 1023px) {
  .l-navi__sp-link {
    color: #fff;
    font-size: 1.2rem;
    font-feature-settings: normal;
    letter-spacing: 0;
    line-height: 1.6;
  }
}

/* -------------------------------------------*/
body.top .l-header {
  background-color: transparent;
}
body.top.scrolled .l-header {
  background-color: #FFF100;
}
@media screen and (max-width: 1023px) {
  body.top.scrolled .l-header {
    background-color: transparent;
  }
}
body.top .l-header__logo {
  width: 18rem;
  top: 11.3rem;
  transition: width 0.4s cubic-bezier(0, 1.21, 0.94, 1.08), top 0.4s cubic-bezier(0, 1.21, 0.94, 1.08);
}
@media screen and (max-width: 1023px) {
  body.top .l-header__logo {
    width: 8rem;
  }
}
@media screen and (max-width: 767px) {
  body.top .l-header__logo {
    width: 6.4rem;
  }
}
body.top.scrolled .l-header__logo {
  width: 9rem;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 1023px) {
  body.top.scrolled .l-header__logo {
    width: 8rem;
    transform: none;
  }
}
@media screen and (max-width: 767px) {
  body.top.scrolled .l-header__logo {
    width: 6.4rem;
  }
}

@media screen and (max-width: 1023px) {
  body.scrolled.is-open .l-header__logo {
    opacity: 1;
  }
}
@media screen and (max-width: 1023px) {
  body.scrolled .l-header__logo {
    opacity: 0;
  }
}

.l-header {
  width: 100%;
  background-color: #FFF100;
  padding-block: 3.6rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 51;
  transition: all cubic-bezier(0.22, 1, 0.36, 1) 0.4s;
}
@media screen and (max-width: 1023px) {
  .l-header {
    padding-block: 0;
    background-color: transparent;
    filter: none;
  }
}
.l-header.js-hide {
  visibility: hidden;
  opacity: 0;
}
.l-header__inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .l-header__inner {
    justify-content: flex-end;
  }
}
.l-header__logo-wrap.u-con--md {
  position: absolute;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
@media screen and (max-width: 1023px) {
  .l-header__logo-wrap.u-con--md {
    width: 100%;
    z-index: 1;
    position: static;
    transform: none;
  }
}
.l-header__logo {
  display: block;
  width: 9rem;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 1023px) {
  .l-header__logo {
    width: 8rem;
    transition: opacity 0.5s ease;
    position: static;
    transform: none;
  }
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    width: 6.4rem;
    position: relative;
    z-index: 5;
  }
}
@media screen and (max-width: 1023px) {
  .l-header__inner.u-con--md {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
  }
}
.l-header__trigger {
  display: flex;
  justify-content: center;
  align-items: center;
  top: 50%;
  width: 8rem;
  height: 8rem;
  background-color: #231815;
}
@media screen and (max-width: 767px) {
  .l-header__trigger {
    width: 6.4rem;
    height: 6.4rem;
    cursor: pointer;
    position: relative;
    z-index: 2;
  }
}
.l-header__trigger-inner {
  display: inline-block;
  position: relative;
  width: 4rem;
  height: 3.9rem;
  transition: all 0.4s;
}
.l-header__trigger-line {
  display: inline-block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #fff;
  transition: 0.5s;
  transition-property: transform;
}
.l-header__trigger-line:nth-of-type(1) {
  top: 0;
}
.l-header__trigger-line:nth-of-type(1).is-active {
  transform: translateY(14px) rotate(45deg);
}
.l-header__trigger-line:nth-of-type(2) {
  top: 10px;
}
.l-header__trigger-line:nth-of-type(2).is-active {
  transform: translateY(4px) rotate(-45deg);
}
.l-header__trigger-line.com {
  height: auto;
  background-color: transparent;
  color: #fff;
  font-family: "Barlow", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0;
  line-height: 1.6;
  bottom: 0;
  text-align: center;
}
.l-header__trigger-line.com.is-active {
  opacity: 0;
}

.header--sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  opacity: 1;
  visibility: visible;
  -webkit-animation: slideDown 0.3s ease-in-out;
          animation: slideDown 0.3s ease-in-out;
}

@media (hover: hover) and (pointer: fine) {
  body.company .l-navi__btn {
    transition: 0.5s;
    transition-property: color;
  }
  body.company .l-navi__btn::after {
    transition: 0.5s;
    transition-property: transform;
  }
  body.company .l-navi__btn:hover.tra {
    color: #fff;
  }
  body.company .l-navi__btn:hover.black {
    color: #231815;
  }
}
body.company .l-navi__btn.tra::before {
  background-image: url(../images/common/header-icon01.svg), url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22none%22%3E%20%3Cpath%20d%3D%22M8%2012L3%207L4.4%205.55L7%208.15V0H9V8.15L11.6%205.55L13%207L8%2012ZM0%2016V11H2V14H14V11H16V16H0Z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E");
}
body.company .l-navi__btn.black {
  color: #fff;
}
body.company .l-navi__btn.black::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2221%22%20height%3D%2216%22%20viewBox%3D%220%200%2021%2016%22%20fill%3D%22none%22%3E%20%3Cpath%20d%3D%22M21%202C21%200.9%2020.055%200%2018.9%200H2.1C0.945%200%200%200.9%200%202V14C0%2015.1%200.945%2016%202.1%2016H18.9C20.055%2016%2021%2015.1%2021%2014V2ZM18.9%202L10.5%206.99L2.1%202H18.9ZM18.9%2014H2.1V4L10.5%209L18.9%204V14Z%22%20fill%3D%22%23FFF%22%2F%3E%3C%2Fsvg%3E"), url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2221%22%20height%3D%2216%22%20viewBox%3D%220%200%2021%2016%22%20fill%3D%22none%22%3E%20%3Cpath%20d%3D%22M21%202C21%200.9%2020.055%200%2018.9%200H2.1C0.945%200%200%200.9%200%202V14C0%2015.1%200.945%2016%202.1%2016H18.9C20.055%2016%2021%2015.1%2021%2014V2ZM18.9%202L10.5%206.99L2.1%202H18.9ZM18.9%2014H2.1V4L10.5%209L18.9%204V14Z%22%20fill%3D%22%23231815%22%2F%3E%3C%2Fsvg%3E");
}
body.company .l-navi__btn.black::after {
  background-color: #fff;
}

/* -------------------------------------------*/
.l-footer {
  background-color: #F5F5F5;
  padding-top: 6.4rem;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding-top: 5.4rem;
  }
}
.l-footer__inner.u-con--md {
  padding-bottom: 8rem;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 911px) {
  .l-footer__inner.u-con--md {
    flex-direction: column;
    gap: 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__inner.u-con--md {
    padding-bottom: 3.2rem;
  }
}
.l-footer__logo {
  display: block;
  width: 15.1rem;
}
@media screen and (max-width: 767px) {
  .l-footer__logo {
    width: 14.8rem;
  }
}
.l-footer__li {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .l-footer__li {
    gap: 3.2rem;
  }
}
.l-footer__li:last-child {
  flex-direction: row;
  gap: 4rem;
  justify-content: flex-end;
  margin-top: 1rem;
}
@media screen and (max-width: 911px) {
  .l-footer__li:last-child {
    justify-content: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__li:last-child {
    flex-direction: column-reverse;
    gap: 0.8rem;
    margin-top: 3.2rem;
  }
}
.l-footer__li-item {
  position: relative;
}
.l-footer__li-item.has-child {
  display: flex;
  align-items: center;
  gap: 1.6rem 2.4rem;
}
@media screen and (max-width: 767px) {
  .l-footer__li-item.has-child {
    flex-direction: column;
    align-items: flex-start;
  }
}
.l-footer__li:last-child .l-footer__li-item {
  line-height: 1.6;
}
.l-footer__li-link {
  display: block;
  color: #231815;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.6;
}
@media (hover: hover) and (pointer: fine) {
  .l-footer__li-link {
    transition: 0.5s;
    transition-property: color;
  }
  .l-footer__li-link:hover {
    color: #756662;
  }
}
.l-footer__li:last-child .l-footer__li-link {
  font-size: 1.2rem;
  font-weight: 400;
}
.l-footer__child-menu {
  display: flex;
  align-items: center;
  gap: 0.8rem 3.8rem;
}
@media screen and (max-width: 767px) {
  .l-footer__child-menu {
    flex-direction: column;
    align-items: flex-start;
  }
}
.l-footer__child-item {
  position: relative;
}
.l-footer__child-item + .l-footer__child-item::before {
  content: "";
  display: block;
  width: 17px;
  height: 19px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2217%22%20height%3D%2219%22%20viewBox%3D%220%200%2017%2019%22%20fill%3D%22none%22%3E%20%3Cpath%20d%3D%22M3.7168%2015.6387L13.0298%203.37425%22%20stroke%3D%22%23231815%22%20stroke-width%3D%220.769979%22%2F%3E%3C%2Fsvg%3E");
  position: absolute;
  top: 50%;
  left: -1rem;
  transform: translate(-100%, -50%);
}
@media screen and (max-width: 767px) {
  .l-footer__child-item + .l-footer__child-item::before {
    display: none;
  }
}
.l-footer__child-link {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  line-height: 1.8;
  color: #231815;
}
@media screen and (max-width: 767px) {
  .l-footer__child-link {
    font-size: 1.4rem;
  }
}
.l-footer__copy {
  background-color: #FFF100;
  font-size: 1.2rem;
  line-height: 1.6;
  text-align: center;
  padding-block: 1.6rem;
}
@media screen and (max-width: 767px) {
  .l-footer__copy {
    line-height: 1.8334;
  }
}

/* -------------------------------------------*/
@media screen and (max-width: 767px) {
  body.voice {
    padding-top: 9.6rem;
  }
}
@media screen and (max-width: 767px) {
  body.voice .breadcrumb {
    padding-top: 0;
  }
}

.l-voice__scroll-wrap {
  display: flex;
  overflow: hidden;
}
.l-voice__scroll-list {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  display: flex;
}
.l-voice__scroll-list:first-child, .l-voice__scroll-list:nth-child(2) {
  -webkit-animation: linear infinite;
          animation: linear infinite;
}
@media screen and (max-width: 767px) {
  .l-voice__scroll-list:first-child, .l-voice__scroll-list:nth-child(2) {
    -webkit-animation-duration: 1000s;
            animation-duration: 1000s;
    -webkit-animation: linear infinite;
            animation: linear infinite;
  }
}
.l-voice__scroll-list:first-child {
  -webkit-animation-name: flowingRight1;
          animation-name: flowingRight1;
  -webkit-animation-delay: -200s;
          animation-delay: -200s;
  -webkit-animation-duration: 400s;
          animation-duration: 400s;
}
.l-voice__scroll-list:nth-child(2) {
  -webkit-animation-name: flowingRight2;
          animation-name: flowingRight2;
  -webkit-animation-duration: 400s;
          animation-duration: 400s;
}
.l-voice__scroll-item {
  min-width: 1460px;
  width: 101.39vw;
}
@media screen and (max-width: 767px) {
  .l-voice__scroll-item {
    width: 87.5rem;
    min-width: 87.5rem;
  }
}
.l-voice__scroll-item img {
  width: 100%;
  height: auto;
}

.l-voice-section {
  padding-top: 10rem;
  padding-bottom: 10rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .l-voice-section {
    padding-top: 5.6rem;
    padding-bottom: 5.6rem;
  }
}
.l-voice-section__head {
  display: flex;
  align-items: flex-end;
  gap: 2.4rem 12.8rem;
}
@media screen and (max-width: 1023px) {
  .l-voice-section__head {
    flex-direction: column;
    align-items: flex-start;
  }
}
.l-voice-section__head .p-top-voice__text {
  flex: 1;
}
.l-voice-section__head + * {
  margin-top: 9.6rem;
}
@media screen and (max-width: 767px) {
  .l-voice-section__head + * {
    margin-top: 4rem;
  }
}
.l-voice-section__text {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .l-voice-section__text {
    line-height: 1.8;
  }
}
.l-voice-section .c-title::after {
  background: linear-gradient(180deg, #231815 0%, #231815 26%, #fff 26%, #fff 100%);
}
.l-voice-section__body {
  max-width: 80.8rem;
  margin-left: auto;
  margin-right: auto;
}
.l-voice-section__body + * {
  margin-top: 5.6rem;
}
@media screen and (max-width: 767px) {
  .l-voice-section__body + * {
    margin-top: 4.8rem;
  }
}
.l-voice-section__slide .swiper-wrapper + * {
  margin-top: 3.2rem;
}
.l-voice-section__slide-item:not(.swiper-slide-active) .l-voice-section__card {
  transform: translateY(3.8rem);
}
@media screen and (max-width: 767px) {
  .l-voice-section__slide-item:not(.swiper-slide-active) .l-voice-section__card {
    transform: none;
  }
}
.l-voice-section__slide-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.l-voice-section__slide-nav .swiper-button-next,
.l-voice-section__slide-nav .swiper-button-prev {
  position: static;
  margin-top: 0;
  width: 4rem;
  height: 4rem;
}
@media (hover: hover) and (pointer: fine) {
  .l-voice-section__slide-nav .swiper-button-next,
.l-voice-section__slide-nav .swiper-button-prev {
    transition: 0.5s;
    transition-property: opacity;
  }
  .l-voice-section__slide-nav .swiper-button-next:hover,
.l-voice-section__slide-nav .swiper-button-prev:hover {
    opacity: 0.6;
  }
}
.l-voice-section__slide-nav .swiper-button-next::after,
.l-voice-section__slide-nav .swiper-button-prev::after {
  content: "";
  background: url(../images/voice/nav-button.svg) 50%/contain no-repeat;
  height: 4rem;
  margin: auto;
  width: 4rem;
}
.l-voice-section__slide-nav .swiper-button-prev::after {
  transform: scale(-1, 1);
}
.l-voice-section__slide-nav .swiper-pagination {
  position: static;
}
.l-voice-section__slide-nav .swiper-horizontal > .swiper-pagination-bullets,
.l-voice-section__slide-nav .swiper-pagination-bullets.swiper-pagination-horizontal,
.l-voice-section__slide-nav .swiper-pagination-custom,
.l-voice-section__slide-nav .swiper-pagination-fraction {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.l-voice-section__slide-nav .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.l-voice-section__slide-nav .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0;
}
.l-voice-section__slide-nav .swiper-pagination-bullet {
  width: 1rem;
  height: 1rem;
  opacity: 1;
  background-color: #fff;
}
.l-voice-section__slide-nav .swiper-pagination-bullet-active {
  opacity: 1;
  background-color: #231815;
}
.l-voice-section__card {
  transition: all 0.3s;
}
.l-voice-section__card-link {
  position: relative;
  display: block;
}
@media screen and (max-width: 767px) {
  .l-voice-section__card-link {
    display: flex;
    flex-direction: column-reverse;
    gap: 1.6rem;
  }
}
.l-voice-section__card-link::after {
  content: "";
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.3) 57%, rgba(255, 255, 255, 0) 85%);
  opacity: 0.9;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .l-voice-section__card-link::after {
    display: none;
  }
}
.l-voice-section__card-link.--new::before {
  content: "";
  display: block;
  width: 10rem;
  aspect-ratio: 1/1;
  background: url(../images/voice/new-tag.svg) 50%/contain no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
@media (hover: hover) and (pointer: fine) {
  .l-voice-section__card-link {
    transition: 0.5s;
    transition-property: opacity;
  }
  .l-voice-section__card-link .l-voice-section__card-thumbnail img {
    transition: 0.5s;
    transition-property: transform;
  }
  .l-voice-section__card-link:hover .l-voice-section__card-thumbnail img {
    transform: scale(1.05);
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-voice-section__card-link.--nolink:hover .l-voice-section__card-thumbnail img {
    transform: scale(1);
  }
}
.l-voice-section__card-content {
  width: 100%;
  height: 100%;
  padding: 1.6rem 1.6rem 1.1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: absolute;
  top: 0;
  left: 0;
  color: #231815;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .l-voice-section__card-content {
    height: auto;
    position: static;
    padding: 0;
  }
}
.l-voice-section__card-product {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.8;
  color: #fff;
  background-color: #231815;
  padding: 0.8rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.l-voice-section__card-product + * {
  margin-top: 1.1rem;
}
@media screen and (max-width: 767px) {
  .l-voice-section__card-product + * {
    margin-top: 1.6rem;
  }
}
.l-voice-section__card-title {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4166666667;
  padding-bottom: 1.1rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-voice-section__card-title {
    line-height: 1.5;
    padding-bottom: 1.6rem;
  }
}
.l-voice-section__card-title::after {
  content: "";
  display: block;
  width: 2.8rem;
  height: 1px;
  background-color: #000;
  position: absolute;
  bottom: 0;
  left: 0;
}
.l-voice-section__card-title + * {
  margin-top: 1.1rem;
}
@media screen and (max-width: 767px) {
  .l-voice-section__card-title + * {
    margin-top: 3.7rem;
  }
}
.l-voice-section__card-company, .l-voice-section__card-attention {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.7142857143;
}
@media screen and (max-width: 767px) {
  .l-voice-section__card-company {
    padding-right: 5.6rem;
  }
}
.l-voice-section__card-company + * {
  margin-top: 0.6rem;
}
@media screen and (max-width: 767px) {
  .l-voice-section__card-attention {
    display: none;
  }
}
.l-voice-section__card-thumbnail {
  aspect-ratio: 808/454;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-voice-section__card-thumbnail {
    aspect-ratio: 358/300;
  }
}
.l-voice-section__card-thumbnail figcaption {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-voice-section__card-thumbnail figcaption {
    display: block;
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1;
    position: absolute;
    left: 0.8rem;
    bottom: 0.8rem;
    color: #231815;
  }
}
.l-voice-section__card-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-voice-section__card-arrow {
  width: 4rem;
  aspect-ratio: 1/1;
  background-color: #231815;
  position: absolute;
  bottom: 1.6rem;
  right: 1.6rem;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .l-voice-section__card-arrow {
    bottom: 0.5rem;
    right: 0;
  }
}
.l-voice-section__card-arrow::after {
  content: "";
  width: 2.4rem;
  aspect-ratio: 1/1;
  background: url(../images/icon/icon_arrow1.svg) 50%/contain no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.l-voice-section__btn .c-btn {
  max-width: 33.1rem;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 0.1em;
  line-height: 1.5;
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
}
@media screen and (max-width: 767px) {
  .l-voice-section__btn .c-btn {
    max-width: 37.4rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
.l-voice-section__btn .c-btn::after {
  background-image: url("../images/icon/icon_arrow1.svg"), url("../images/icon/icon_arrow1_black.svg");
}

.l-voice-list__nav-list {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .l-voice-list__nav-list {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .l-voice-list__nav-item {
    min-width: 20.6rem;
  }
}
@media screen and (max-width: 767px) {
  .l-voice-list__nav-item:first-child {
    border-top: 1px dashed #231815;
  }
}
.l-voice-list__nav-item:not(:first-child) {
  border-left: 1px dashed #231815;
}
@media screen and (max-width: 767px) {
  .l-voice-list__nav-item:not(:first-child) {
    border-left: none;
  }
}
.l-voice-list__nav-item:not(:first-child) .l-voice-list__nav-link {
  padding-left: 4rem;
}
@media screen and (max-width: 767px) {
  .l-voice-list__nav-item:not(:first-child) .l-voice-list__nav-link {
    padding-left: 0;
  }
}
.l-voice-list__nav-link {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.6;
  color: #231815;
  padding-right: 4rem;
}
@media screen and (max-width: 767px) {
  .l-voice-list__nav-link {
    font-size: 1.6rem;
    padding-right: 0;
    padding-top: 1.6rem;
    padding-bottom: 1.6rem;
    border-bottom: 1px dashed #231815;
  }
}
.l-voice-list__nav-link::before {
  content: "";
  display: block;
  width: 3.2rem;
  aspect-ratio: 1/1;
  background: url(../images/icon/icon_arrow-nav.svg) 50%/contain no-repeat;
}
@media (hover: hover) and (pointer: fine) {
  .l-voice-list__nav-link {
    transition: 0.5s;
    transition-property: opacity;
  }
  .l-voice-list__nav-link::before {
    transition: 0.5s;
    transition-property: transform;
  }
  .l-voice-list__nav-link:hover {
    opacity: 0.8;
  }
  .l-voice-list__nav-link:hover::before {
    transform: translateY(0.5rem);
  }
}
.l-voice-list__nav + * {
  margin-top: 10rem;
}
@media screen and (max-width: 767px) {
  .l-voice-list__nav + * {
    margin-top: 5.6rem;
  }
}
.l-voice-list__section {
  padding-bottom: 12rem;
}
@media screen and (max-width: 767px) {
  .l-voice-list__section {
    padding-bottom: 5.6rem;
  }
}
.l-voice-list__title {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.6;
  border-left: 0.8rem solid #231815;
  padding-left: 1rem;
}
@media screen and (max-width: 767px) {
  .l-voice-list__title {
    font-size: 2.4rem;
  }
}
.l-voice-list__title + * {
  margin-top: 5.6rem;
}
@media screen and (max-width: 767px) {
  .l-voice-list__title + * {
    margin-top: 4.8rem;
  }
}
.l-voice-list__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5.6rem 8rem;
}
@media screen and (max-width: 1023px) {
  .l-voice-list__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .l-voice-list__list {
    gap: 4.8rem;
  }
}
.l-voice-list__list + *.l-voice-list__title {
  margin-top: 10rem;
}
@media screen and (max-width: 767px) {
  .l-voice-list__list + *.l-voice-list__title {
    margin-top: 11.2rem;
  }
}
.l-voice-list__article.--new .l-voice-list__article-link::before {
  content: "";
  display: block;
  width: 10rem;
  aspect-ratio: 1/1;
  background: url(../images/voice/new-tag.svg) 50%/contain no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .l-voice-list__article.--new .l-voice-list__article-link::before {
    width: 8rem;
  }
}
.l-voice-list__article-link {
  display: block;
  color: #231815;
  position: relative;
  height: 100%;
}
@media (hover: hover) and (pointer: fine) {
  .l-voice-list__article-link {
    transition: 0.5s;
    transition-property: opacity;
  }
  .l-voice-list__article-link .l-voice-list__article-thumbnail img {
    transition: 0.5s;
    transition-property: transform;
  }
  .l-voice-list__article-link:hover .l-voice-list__article-thumbnail img {
    transform: scale(1.05);
  }
}
.l-voice-list__article-thumbnail {
  aspect-ratio: 520/360;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-voice-list__article-thumbnail {
    aspect-ratio: 358/248;
  }
}
.l-voice-list__article-thumbnail.--noimage figcaption {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  position: absolute;
  left: 1.6rem;
  bottom: 1.6rem;
}
@media screen and (max-width: 767px) {
  .l-voice-list__article-thumbnail.--noimage figcaption {
    left: 0.8rem;
    bottom: 0.8rem;
  }
}
.l-voice-list__article-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-voice-list__article-thumbnail + * {
  margin-top: 3.2rem;
}
@media screen and (max-width: 767px) {
  .l-voice-list__article-thumbnail + * {
    margin-top: 2.4rem;
  }
}
.l-voice-list__article-product {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2.1428571429;
  color: #fff;
  background-color: #231815;
  padding: 0 0.8rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.l-voice-list__article-product + * {
  margin-top: 2.4rem;
}
@media screen and (max-width: 767px) {
  .l-voice-list__article-product + * {
    margin-top: 1.6rem;
  }
}
.l-voice-list__article-title {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
  position: relative;
}
.l-voice-list__article-title + * {
  margin-top: 2.4rem;
}
@media screen and (max-width: 767px) {
  .l-voice-list__article-title + * {
    margin-top: 1.6rem;
  }
}
.l-voice-list__article-text {
  font-size: 1.6rem;
  letter-spacing: 0;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.l-voice-list__article-text + * {
  margin-top: 1.6rem;
  padding-top: 1.6rem;
  position: relative;
}
.l-voice-list__article-text + *::before {
  content: "";
  display: block;
  width: 2.8rem;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
}
.l-voice-list__article-company, .l-voice-list__article-attention {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .l-voice-list__article-company {
    padding-right: 5.6rem;
  }
}
.l-voice-list__article-company + * {
  margin-top: 0.6rem;
}
.l-voice-list__article-arrow {
  width: 4rem;
  aspect-ratio: 1/1;
  background-color: #231815;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .l-voice-list__article-arrow {
    width: 3.2rem;
  }
}
.l-voice-list__article-arrow::after {
  content: "";
  width: 2.4rem;
  aspect-ratio: 1/1;
  background: url(../images/icon/icon_arrow1.svg) 50%/contain no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .l-voice-list__article-arrow::after {
    width: 1.652rem;
  }
}

body.voice-single {
  background-color: #F5F5F5;
}
@media screen and (max-width: 767px) {
  body.voice-single {
    background-color: #FFF100;
    margin-top: 6.4rem;
    padding-top: 0;
  }
}
@media screen and (max-width: 767px) {
  body.voice-single .l-main {
    padding-top: 5.6rem;
    background-color: #F5F5F5;
  }
}

.l-voice-single {
  padding-bottom: 10.4rem;
}
@media screen and (max-width: 767px) {
  .l-voice-single {
    padding-bottom: 8rem;
  }
}
@media screen and (max-width: 767px) {
  .l-voice-single .l-voice-section__card-link {
    gap: 2.4rem;
  }
}
.l-voice-single .l-voice-section__card-link.--new::before {
  width: 8rem;
}
@media screen and (max-width: 767px) {
  .l-voice-single .l-voice-section__card-product {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }
}
.l-voice-single .l-voice-section__card-product + * {
  margin-top: 1.9rem;
}
@media screen and (max-width: 767px) {
  .l-voice-single .l-voice-section__card-product + * {
    margin-top: 1.6rem;
  }
}
.l-voice-single .l-voice-section__card-title {
  font-size: 3.2rem;
  line-height: 1.3125;
  padding-bottom: 1.5rem;
}
@media screen and (max-width: 1023px) {
  .l-voice-single .l-voice-section__card-title {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .l-voice-single .l-voice-section__card-title {
    font-size: 2.4rem;
    line-height: 1.5;
    padding-bottom: 1.6rem;
  }
}
.l-voice-single .l-voice-section__card-title + * {
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .l-voice-single .l-voice-section__card-title + * {
    margin-top: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .l-voice-single .l-voice-section__card-company {
    padding-right: 0;
  }
}
.l-voice-single .l-voice-section__card-thumbnail {
  aspect-ratio: 1016/550;
}
@media screen and (max-width: 767px) {
  .l-voice-single .l-voice-section__card-thumbnail {
    aspect-ratio: 358/248;
  }
}
.l-voice-single .l-voice-section__card + * {
  margin-top: 1.6rem;
}
@media screen and (max-width: 767px) {
  .l-voice-single .l-voice-section__card + * {
    margin-top: 8rem;
  }
}
.l-voice-single__item, .l-voice-single__content, .l-voice-single__others {
  max-width: 80.8rem;
  margin-left: auto;
  margin-right: auto;
}
.l-voice-single__item {
  display: flex;
  justify-content: center;
  gap: 3.2rem;
  position: relative;
  padding-left: 8rem;
  padding-right: 9rem;
}
@media screen and (max-width: 1023px) {
  .l-voice-single__item {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .l-voice-single__item {
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
    justify-content: flex-start;
    gap: 1.8rem;
    min-height: 23.4rem;
    padding-top: 1.8rem;
    padding-bottom: 1.8rem;
    padding-right: 1.8rem;
    padding-left: 2.2rem;
  }
}
.l-voice-single__item::after {
  content: "";
  display: block;
  width: 100%;
  height: calc(100% - 4rem);
  border: 1px solid #E3E3E3;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .l-voice-single__item::after {
    height: 100%;
  }
}
.l-voice-single__item > * {
  position: relative;
  z-index: 1;
}
.l-voice-single__item-box {
  flex: 1;
  padding-top: 9.4rem;
  padding-bottom: 6rem;
}
@media screen and (max-width: 1023px) {
  .l-voice-single__item-box {
    flex: none;
  }
}
@media screen and (max-width: 767px) {
  .l-voice-single__item-box {
    flex: 1;
    padding: 0;
  }
}
.l-voice-single__item-title, .l-voice-single__item-text {
  max-width: 31.2rem;
}
.l-voice-single__item-title .text,
.l-voice-single__item-title .title {
  font-weight: 700;
  letter-spacing: 0.1em;
}
.l-voice-single__item-title .text {
  font-size: 1.6rem;
  line-height: 1.625;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid #E3E3E3;
}
.l-voice-single__item-title .text + * {
  margin-top: 0.3rem;
}
.l-voice-single__item-title .title {
  font-size: 2.4rem;
  line-height: 1.4166666667;
}
@media screen and (max-width: 767px) {
  .l-voice-single__item-title .title {
    font-size: 1.8rem;
    line-height: 1.5555555556;
  }
}
.l-voice-single__item-title + * {
  margin-top: 1.1rem;
}
@media screen and (max-width: 767px) {
  .l-voice-single__item-title + * {
    margin-top: 1.7rem;
  }
}
.l-voice-single__item-text {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .l-voice-single__item-text {
    font-size: 1.4rem;
    line-height: 1.73;
  }
}
.l-voice-single__item-image {
  width: 22rem;
}
@media screen and (max-width: 767px) {
  .l-voice-single__item-image {
    width: 13rem;
  }
}
.l-voice-single__item-image img {
  width: 100%;
  height: auto;
}
.l-voice-single__item + * {
  margin-top: 8rem;
}
.l-voice-single__content h2 {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
  position: relative;
  padding-left: 2.4rem;
}
@media screen and (max-width: 767px) {
  .l-voice-single__content h2 {
    font-size: 2.4rem;
  }
}
.l-voice-single__content h2::before {
  content: "";
  display: block;
  width: 0.8rem;
  height: 100%;
  background: linear-gradient(180deg, #231815 0%, #231815 26%, #FFF100 26%, #FFF100 100%);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}
.l-voice-single__content h2 + * {
  margin-top: 5.6rem;
}
@media screen and (max-width: 767px) {
  .l-voice-single__content h2 + * {
    margin-top: 4.8rem;
  }
}
.l-voice-single__content p + *,
.l-voice-single__content figure + * {
  margin-top: 4rem;
}
.l-voice-single__content p + h2,
.l-voice-single__content figure + h2 {
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .l-voice-single__content p + h2,
.l-voice-single__content figure + h2 {
    margin-top: 5.6rem;
  }
}
.l-voice-single__content p {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  line-height: 1.8;
}
.l-voice-single__content figure figcaption {
  margin-top: 1.6rem;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 1.6;
}
.l-voice-single__content figure img {
  width: 100%;
  height: auto;
}
.l-voice-single__content + * {
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .l-voice-single__content + * {
    margin-top: 7rem;
  }
}
.l-voice-single__others {
  border-top: 1px solid #fff;
  padding-top: 2.5rem;
}
.l-voice-single__others-title {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.6;
}
.l-voice-single__others-title + * {
  margin-top: 4rem;
}
.l-voice-single__others .l-voice-list__list {
  gap: 7.2rem 2.4rem;
}
.l-voice-single__others .l-voice-list__list + * {
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .l-voice-single__others .l-voice-list__list + * {
    margin-top: 4.8rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-voice-single__others .l-voice-list__article-link {
    transition: 0.5s;
    transition-property: opacity;
  }
  .l-voice-single__others .l-voice-list__article-link .l-voice-list__article-thumbnail img {
    transition: 0.5s;
    transition-property: transform;
  }
  .l-voice-single__others .l-voice-list__article-link:hover .l-voice-list__article-thumbnail img {
    transform: scale(1);
  }
}
.l-voice-single__others .l-voice-list__article-arrow {
  width: 3.2rem;
}
.l-voice-single__others .l-voice-list__article-thumbnail {
  aspect-ratio: 372/250;
  padding: 1rem;
  background-color: #fff;
}
.l-voice-single__others .l-voice-list__article-thumbnail.--noimage figcaption {
  left: 2.2rem;
  bottom: 2.2rem;
}
@media screen and (max-width: 767px) {
  .l-voice-single__others .l-voice-list__article-thumbnail.--noimage figcaption {
    left: 1.8rem;
    bottom: 1.8rem;
  }
}
.l-voice-single__others .l-voice-list__article-thumbnail + * {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .l-voice-single__others .l-voice-list__article-thumbnail + * {
    margin-top: 2.2rem;
  }
}
.l-voice-single__others-btn .c-btn {
  max-width: 33.1rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
}

.l-voice-item {
  background-color: #fff;
  padding-top: 8rem;
  padding-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  .l-voice-item {
    padding-top: 5.6rem;
    padding-bottom: 5.6rem;
  }
}
.l-voice-item .p-proOthers__li {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem 2.4rem;
}
@media screen and (max-width: 1023px) {
  .l-voice-item .p-proOthers__li {
    grid-template-columns: repeat(1, 1fr);
  }
}
.l-voice-item .p-proOthers__box {
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .l-voice-item .p-proOthers__box {
    gap: 1.4rem;
  }
}
.l-voice-item .p-proOthers__ttl {
  letter-spacing: 0.1em;
}
.l-voice-item .p-proOthers__image {
  aspect-ratio: 392/216;
}
@media screen and (max-width: 1023px) {
  .l-voice-item .p-proOthers__image {
    aspect-ratio: 358/129;
  }
}
.l-voice-item .p-proOthers__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
.c-btn {
  display: block;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  position: relative;
  z-index: 0;
}
.c-btn.black {
  color: #fff;
  background-color: #231815;
}
.c-btn.yellow {
  background-color: #FFF100;
  color: #231815;
}
.c-btn.blue {
  background-color: #00AFEC;
  color: #231815;
}
.c-btn::before, .c-btn::after {
  content: "";
  position: absolute;
}
.c-btn::before {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  transform-origin: left top;
  transform: scale(0, 1);
  transition: all 0.5s ease;
}
.c-btn.black::before {
  background-color: #FFF100;
}
.c-btn.yellow::before, .c-btn.blue::before {
  background-color: #231815;
}
.c-btn::after {
  display: block;
  width: 2.4rem;
  aspect-ratio: 1/1;
  background-repeat: no-repeat;
  background-size: contain, 0 0;
  top: 50%;
  right: 3.2rem;
  transform: translateY(-50%);
}
.c-btn.black::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2225%22%20viewBox%3D%220%200%2024%2025%22%20fill%3D%22none%22%3E%20%3Cpath%20d%3D%22M14%2018.8555L12.6%2017.4055L16.15%2013.8555H4V11.8555H16.15L12.6%208.30547L14%206.85547L20%2012.8555L14%2018.8555Z%22%20fill%3D%22%23FFF100%22%2F%3E%3C%2Fsvg%3E"), url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2225%22%20viewBox%3D%220%200%2024%2025%22%20fill%3D%22none%22%3E%20%3Cpath%20d%3D%22M14%2018.8555L12.6%2017.4055L16.15%2013.8555H4V11.8555H16.15L12.6%208.30547L14%206.85547L20%2012.8555L14%2018.8555Z%22%20fill%3D%22%23231815%22%2F%3E%3C%2Fsvg%3E");
}
.c-btn.yellow::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2225%22%20viewBox%3D%220%200%2024%2025%22%20fill%3D%22none%22%3E%20%3Cpath%20d%3D%22M14%2018.8555L12.6%2017.4055L16.15%2013.8555H4V11.8555H16.15L12.6%208.30547L14%206.85547L20%2012.8555L14%2018.8555Z%22%20fill%3D%22%23231815%22%2F%3E%3C%2Fsvg%3E"), url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2225%22%20viewBox%3D%220%200%2024%2025%22%20fill%3D%22none%22%3E%20%3Cpath%20d%3D%22M14%2018.8555L12.6%2017.4055L16.15%2013.8555H4V11.8555H16.15L12.6%208.30547L14%206.85547L20%2012.8555L14%2018.8555Z%22%20fill%3D%22%23FFF100%22%2F%3E%3C%2Fsvg%3E");
}
.c-btn.blue::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2225%22%20viewBox%3D%220%200%2024%2025%22%20fill%3D%22none%22%3E%20%3Cpath%20d%3D%22M14%2018.8555L12.6%2017.4055L16.15%2013.8555H4V11.8555H16.15L12.6%208.30547L14%206.85547L20%2012.8555L14%2018.8555Z%22%20fill%3D%22%23231815%22%2F%3E%3C%2Fsvg%3E"), url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%3E%20%3Cpath%20d%3D%22M14%2018L12.6%2016.55L16.15%2013H4V11H16.15L12.6%207.45L14%206L20%2012L14%2018Z%22%20fill%3D%22%2300AFEC%22%2F%3E%3C%2Fsvg%3E");
}
@media (hover: hover) and (pointer: fine) {
  .c-btn {
    transition: 0.5s;
    transition-property: color;
  }
  .c-btn::before {
    transition: 0.5s;
    transition-property: transform;
  }
  .c-btn::after {
    transition: 0.5s;
    transition-property: background-size;
  }
  .c-btn:hover.black {
    color: #231815;
  }
  .c-btn:hover.yellow, .c-btn:hover.blue {
    color: #fff;
  }
  .c-btn:hover::before {
    transform: scale(1, 1);
  }
  .c-btn:hover::after {
    background-size: 0 0, contain;
  }
}

@media (hover: hover) and (pointer: fine) {
  .c-btn.back input {
    transition: 0.5s;
    transition-property: color;
  }
  .c-btn.back input:hover {
    color: #fff;
  }
}

@media (hover: hover) and (pointer: fine) {
  .c-btn.submit input {
    transition: 0.5s;
    transition-property: color;
  }
  .c-btn.submit input:hover {
    color: #231815;
  }
}

/* -------------------------------------------*/
.c-title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.7813;
  display: flex;
  flex-direction: column;
  padding-left: 1.8rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-title {
    font-size: 2.4rem;
    line-height: 1.5834;
  }
}
.c-title.js-scrolled {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease;
}
.c-title.js-scrolled.is-animated {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.6s;
}
.c-title::before {
  content: attr(data-title);
  font-size: 1.8rem;
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  line-height: 1.1112;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .c-title::before {
    font-size: 1.6rem;
    line-height: 0.7;
  }
}
.c-title::after {
  content: "";
  display: block;
  width: 0.8rem;
  background: linear-gradient(180deg, #fff 0%, #fff 26%, #FFF100 26%, #FFF100 100%);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}

/* -------------------------------------------*/
.c-pageTtl {
  background-color: #FFF100;
}
@media screen and (max-width: 767px) {
  .c-pageTtl__inner {
    padding-top: 2.4rem;
  }
}
.c-pageTtl__flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4.1rem 0 6.3rem;
}
@media screen and (max-width: 767px) {
  .c-pageTtl__flex {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 1.6rem;
    padding-bottom: 5.6rem;
  }
}
.c-pageTtl__flex::after {
  content: "";
  display: block;
  width: 60rem;
  aspect-ratio: 60/29;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 1023px) {
  .c-pageTtl__flex::after {
    width: 38rem;
  }
}
@media screen and (max-width: 767px) {
  .c-pageTtl__flex::after {
    width: 100%;
    aspect-ratio: 179/86;
    margin-top: 1.6rem;
  }
}
.c-pageTtl__title {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .c-pageTtl__title {
    gap: 0.8rem;
  }
}
.c-pageTtl__title::before {
  content: "";
  width: 0.8rem;
  aspect-ratio: 8/57;
  background-color: #231815;
}
@media screen and (max-width: 767px) {
  .c-pageTtl__title::before {
    aspect-ratio: 8/53;
  }
}
.c-pageTtl__h1 {
  font-size: 5.6rem;
  font-weight: 700;
  letter-spacing: 0.065em;
  line-height: 1.6;
}
@media screen and (max-width: 1023px) {
  .c-pageTtl__h1 {
    font-size: 4.2rem;
  }
}
@media screen and (max-width: 767px) {
  .c-pageTtl__h1 {
    font-size: 3.2rem;
  }
}
.c-pageTtl__text {
  font-size: 1.6rem;
}
@media screen and (max-width: 1023px) {
  .c-pageTtl__text {
    font-size: 13px;
  }
}
@media screen and (max-width: 767px) {
  .c-pageTtl__text {
    font-size: 1.6rem;
    margin-top: 1.6rem;
  }
}

@media screen and (max-width: 767px) {
  .product .c-pageTtl__inner {
    padding-top: 1rem;
  }
}
.product .c-pageTtl__title02 {
  position: relative;
  padding-block: 7.8rem 10rem;
}
@media screen and (max-width: 767px) {
  .product .c-pageTtl__title02 {
    padding-block: 1.6rem 5.6rem;
  }
}
.product .c-pageTtl__title02.custom {
  padding: 0;
  margin-block: 7.8rem 10rem;
}
@media screen and (max-width: 767px) {
  .product .c-pageTtl__title02.custom {
    margin-block: 1.6rem 5.6rem;
  }
}
.product .c-pageTtl__title02.custom::after {
  content: "";
  display: block;
  width: 37.9085%;
  aspect-ratio: 232/291;
  background-image: url(../images/custom/fv.png);
  background-repeat: no-repeat;
  background-size: contain;
  filter: drop-shadow(23px 19px 38px rgba(35, 24, 21, 0.2));
  position: absolute;
  right: 0;
  top: -5rem;
}
@media screen and (max-width: 767px) {
  .product .c-pageTtl__title02.custom::after {
    width: 91.621%;
    top: 4.1rem;
  }
}
.product .c-pageTtl__title02.custom .c-pageTtl__text-box {
  position: absolute;
  left: min(1.67vw, 24px);
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .product .c-pageTtl__title02.custom .c-pageTtl__text-box {
    position: static;
    transform: none;
  }
}
.product .c-pageTtl__title02.custom .c-pageTtl__h1 {
  opacity: 1;
  position: static;
  transform: none;
  font-size: min(1.25vw, 18px);
  font-weight: 500;
  letter-spacing: 0.1em;
  display: flex;
  gap: min(1.39vw, 20px);
}
@media screen and (max-width: 767px) {
  .product .c-pageTtl__title02.custom .c-pageTtl__h1 {
    font-size: 1.6rem;
  }
}
.product .c-pageTtl__title02.custom .c-pageTtl__h1::before {
  content: "";
  display: block;
  width: min(12.01vw, 173px);
  aspect-ratio: 173/174;
  background-image: url(../images/custom/logo.jpg);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .product .c-pageTtl__title02.custom .c-pageTtl__h1::before {
    display: none;
  }
}
.product .c-pageTtl__title02.custom .c-pageTtl__h1-inner {
  display: flex;
  flex-direction: column;
  gap: min(1.67vw, 24px);
}
@media screen and (max-width: 767px) {
  .product .c-pageTtl__title02.custom .c-pageTtl__h1-inner {
    gap: 0.8rem;
  }
}
.product .c-pageTtl__title02.custom .c-pageTtl__h1 .red {
  font-size: min(1.67vw, 24px);
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .product .c-pageTtl__title02.custom .c-pageTtl__h1 .red {
    font-size: 2.4rem;
  }
}
.product .c-pageTtl__title02.custom .c-pageTtl__h1-logo {
  width: min(37.64vw, 542px);
}
@media screen and (max-width: 767px) {
  .product .c-pageTtl__title02.custom .c-pageTtl__h1-logo {
    width: 100%;
  }
}
.product .c-pageTtl__title02.custom .c-pageTtl__comm {
  font-size: min(1.25vw, 18px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
  margin-top: min(2.22vw, 32px);
}
@media screen and (max-width: 767px) {
  .product .c-pageTtl__title02.custom .c-pageTtl__comm {
    text-align: center;
    font-size: 1.6rem;
    margin-top: 5.6rem;
  }
}
.product .c-pageTtl__title02.custom .c-pageTtl__comm .bg {
  font-size: min(1.67vw, 24px);
  font-weight: bold;
  letter-spacing: 0.1em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .product .c-pageTtl__title02.custom .c-pageTtl__comm .bg {
    font-size: 2.4rem;
  }
}
.product .c-pageTtl__title02.custom .c-pageTtl__comm .bg::before {
  content: "";
  display: block;
  width: 100%;
  height: min(0.9vw, 13px);
  background-color: #FFFF15;
  position: absolute;
  bottom: min(0.28vw, 4px);
  left: 0;
  z-index: -1;
}
.product .c-pageTtl__title02.custom .c-pageTtl__text {
  font-size: min(1.67vw, 24px);
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.1em;
  margin-top: min(1.11vw, 16px);
}
@media screen and (max-width: 767px) {
  .product .c-pageTtl__title02.custom .c-pageTtl__text {
    width: 35.9rem;
    margin-inline: auto;
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
    font-size: 2.4rem;
  }
}
.product .c-pageTtl__title02.custom .c-pageTtl__text .box {
  text-align: center;
  font-size: min(1.25vw, 18px);
  letter-spacing: 0.4em;
  line-height: 1.8;
  margin-right: min(0.56vw, 8px);
  border: 1px solid #756662;
  padding-block: min(0.21vw, 3px);
  padding-left: min(0.66vw, 0.95rem);
  padding-right: min(0.15vw, 0.21rem);
}
@media screen and (max-width: 767px) {
  .product .c-pageTtl__title02.custom .c-pageTtl__text .box {
    display: block;
    font-size: 1.6rem;
    margin-right: 0;
    padding-block: 0.161rem;
    padding-inline: 0.95rem 0.21rem;
  }
}
@media screen and (max-width: 767px) {
  .product .c-pageTtl__title02.custom .c-pageTtl__text .box + .box {
    margin-left: 0.8rem;
  }
}
.product .c-pageTtl__title02.custom .c-pageTtl__att {
  font-size: min(0.97vw, 14px);
  line-height: 1.6;
  margin-top: min(0.56vw, 8px);
}
@media screen and (max-width: 767px) {
  .product .c-pageTtl__title02.custom .c-pageTtl__att {
    width: auto;
    font-size: 1.4rem;
    text-align: center;
    margin-inline: auto;
    margin-top: 0.8rem;
  }
}
.product .c-pageTtl__title02.custom .c-pageTtl__banner {
  width: min(20.14vw, 29rem);
  position: absolute;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .product .c-pageTtl__title02.custom .c-pageTtl__banner {
    width: 100%;
    max-width: 35.8rem;
    position: static;
    margin: 3.2rem auto 0;
  }
}
@media (hover: hover) and (pointer: fine) {
  .product .c-pageTtl__title02.custom .c-pageTtl__banner {
    transition: 0.5s;
    transition-property: opacity;
  }
  .product .c-pageTtl__title02.custom .c-pageTtl__banner:hover {
    opacity: 0.8;
  }
}
.product .c-pageTtl__title02.custom .c-pageTtl__banner a {
  display: block;
}
.product .c-pageTtl__title02.custom .c-pageTtl__banner a img {
  width: 100%;
  height: auto;
}
.product .c-pageTtl__h1 {
  opacity: 0;
  position: absolute;
}
@media screen and (max-width: 767px) {
  .product .c-pageTtl__h1 {
    position: static;
    opacity: 1;
    font-size: 1.6rem;
    margin-top: 5.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }
}
.product .c-pageTtl__h1 .red {
  color: #FF1F00;
}
@media screen and (max-width: 767px) {
  .product .c-pageTtl__h1 .red {
    font-size: 2.4rem;
    color: #FF1F00;
  }
}
@media screen and (max-width: 767px) {
  .product .c-pageTtl__h1 img {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.privacy .c-pageTtl {
  padding-bottom: 16rem;
}
@media screen and (max-width: 767px) {
  .privacy .c-pageTtl {
    padding-bottom: 5.6rem;
  }
}
.privacy .c-pageTtl__title {
  margin-top: 14.1rem;
}
@media screen and (max-width: 767px) {
  .privacy .c-pageTtl__title {
    margin-top: 1.6rem;
  }
}

.voice .c-pageTtl {
  padding-bottom: 12.4rem;
}
@media screen and (max-width: 767px) {
  .voice .c-pageTtl {
    padding-bottom: 5.6rem;
  }
}
.voice .c-pageTtl__title {
  margin-top: 12.4rem;
}
@media screen and (max-width: 767px) {
  .voice .c-pageTtl__title {
    margin-top: 1.6rem;
  }
}

.voice-single .c-pageTtl {
  background-color: #F5F5F5;
  padding-bottom: 8.1rem;
}
@media screen and (max-width: 767px) {
  .voice-single .c-pageTtl {
    display: none;
  }
}

/* -------------------------------------------*/
.breadcrumb {
  padding-top: 3.2rem;
  display: flex;
  align-items: center;
  gap: 2.347rem;
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    padding-top: 2.6rem;
  }
}
.breadcrumb__item {
  line-height: 1.6;
  position: relative;
}
@media screen and (max-width: 767px) {
  .breadcrumb__item {
    line-height: 0.9;
  }
}
.breadcrumb__item:first-child {
  font-weight: 700;
}
.breadcrumb__item + .breadcrumb__item::before {
  content: "";
  display: block;
  width: 0.7rem;
  aspect-ratio: 1/1;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%229%22%20height%3D%228%22%20viewBox%3D%220%200%209%208%22%20fill%3D%22none%22%3E%20%3Cpath%20d%3D%22M4.78229%204.0007L3.24229%202.55695L3.6822%202.14453L5.66211%204.0007L3.6822%205.85686L3.24229%205.44416L4.78229%204.00041L4.78229%204.0007Z%22%20fill%3D%22%23756662%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 55%;
  left: -0.8rem;
  transform: translate(-100%, -50%);
}
.breadcrumb__link {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #756662;
}
@media screen and (max-width: 1023px) {
  .breadcrumb__link {
    font-size: 1.2rem;
    letter-spacing: 0;
  }
}
.breadcrumb__item:first-child .breadcrumb__link {
  color: #231815;
}

/* -------------------------------------------*/
.tab-list {
  display: flex;
}
.tab-list-item {
  position: relative;
}
.tab-list-item button {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  width: 30rem;
  background-color: #F5F5F5;
  color: #231815;
  padding: 2.1rem 0;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .tab-list-item button {
    width: 17.9rem;
    font-size: 1.4rem;
    padding: 0.65rem 0;
  }
}
@media (hover: hover) and (pointer: fine) {
  .tab-list-item button {
    transition: 0.5s;
    transition-property: background-color;
  }
  .tab-list-item button:hover {
    background-color: #fff;
  }
}
.tab-list-item button[role=tab][aria-selected=true] {
  background-color: #fff;
}
.tab-list-item::before {
  content: "";
  display: block;
  width: 2.5rem;
  aspect-ratio: 1/1;
  background-color: #231815;
  -webkit-clip-path: polygon(0 0, 100% 100%, 100% 0);
          clip-path: polygon(0 0, 100% 100%, 100% 0);
  position: absolute;
  top: -0.1rem;
  right: -0.1rem;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .tab-list-item::before {
    width: 1.5rem;
  }
}
.tab-list-item.soon {
  color: #5C4F4C;
  background-color: #756662;
  position: relative;
}
.tab-list-item.soon::after {
  content: "Coming Soon...";
  color: #FFF100;
  font-size: 3.2rem;
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
@media screen and (max-width: 767px) {
  .tab-list-item.soon::after {
    font-size: 1.4rem;
  }
}

/* -------------------------------------------*/
/* -------------------------------------------*/
.u-db {
  display: block;
}

.u-dn {
  display: none;
}

@media screen and (max-width: 1023px) {
  .u-pc {
    display: none;
  }
}

@media not all and (max-width: 1023px) {
  .u-st {
    display: none !important;
  }
}

@media not all and (max-width: 767px) {
  .u-pt {
    display: none !important;
  }
}

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

.u-con--xs {
  width: 85%;
  max-width: 101.6rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .u-con--xs {
    width: 91.7948717949%;
  }
}

.u-con--sm {
  width: 85%;
  max-width: 112rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .u-con--sm {
    width: 91.7948717949%;
  }
}

.u-con--md {
  max-width: var(--content_width);
  margin: 0 auto;
  width: 90%;
}
@media screen and (max-width: 767px) {
  .u-con--md {
    width: 91.7948717949%;
  }
}

.u-con--lg {
  max-width: 90%;
  margin: 0 auto;
}

/* -------------------------------------------*/
/* -------------------------------------------*/