@charset "UTF-8";
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

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

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

del {
  text-decoration: line-through;
}

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

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

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

input,
select {
  vertical-align: middle;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  word-break: break-all;
  background-color: #FFFFFF;
  color: #222222;
  font-family: "Barlow", "Noto Sans JP", sans-serif;
  font-size: clamp(0.81rem, 0.79rem + 0.1vw, 0.88rem);
  font-weight: 400;
  line-height: 1.8;
}

a {
  text-decoration: none;
  color: #222222;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
a:hover,
a.hover {
  opacity: 0.7;
}

li {
  list-style: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.__inner {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .__inner {
    padding: 40px 0;
  }
}

@media screen and (min-width: 1025px) {
  .__tab {
    display: none;
  }
  .__sp {
    display: none;
  }
  .__pc {
    display: inline-block;
  }
}
/* Tablet: 480px超〜1024px以下 */
@media screen and (max-width: 1024px) and (min-width: 481px) {
  .__pc {
    display: none;
  }
  .__sp {
    display: none;
  }
  .__tab {
    display: inline-block;
  }
}
/* SP: 480px以下 */
@media screen and (max-width: 480px) {
  .__tab {
    display: none;
  }
  .__pc {
    display: none;
  }
  .__sp {
    display: inline-block;
  }
}
/* トリガーアニメーションのスタイル */
.fadeUpTrigger,
.fadeLeftTrigger,
.fadeRightTrigger {
  opacity: 0;
  visibility: hidden;
  will-change: opacity, transform;
}

/* フェードアップ */
.fadeUp {
  -webkit-animation: fadeUpAnime 0.8s forwards;
  animation: fadeUpAnime 0.8s forwards;
}

/* フェードレフト */
.fadeLeft {
  -webkit-animation: fadeLeftAnime 0.8s forwards;
  animation: fadeLeftAnime 0.8s forwards;
  overflow: hidden;
}

/* フェードライト */
.fadeRight {
  -webkit-animation: fadeRightAnime 0.8s forwards;
  animation: fadeRightAnime 0.8s forwards;
  overflow: hidden;
}

/* アニメーション定義 */
@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeLeftAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes fadeRightAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeRightAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.number-up {
  opacity: 0;
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
}

.number-up.shown {
  -webkit-animation: numberUp 0.9s ease-out forwards;
  animation: numberUp 0.9s ease-out forwards;
}

@-webkit-keyframes numberUp {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes numberUp {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.header {
  position: fixed;
  z-index: 1000;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  -o-transition: transform 0.8s ease, opacity 0.8s ease;
  transition: transform 0.8s ease, opacity 0.8s ease;
  transition: transform 0.8s ease, opacity 0.8s ease, -webkit-transform 0.8s ease;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.header.is-hidden {
  -webkit-transform: translateY(-30px);
  -ms-transform: translateY(-30px);
  transform: translateY(-30px);
  opacity: 0;
  pointer-events: none;
}

.header-wrap {
  max-width: 1394px;
  width: 96.8%;
  height: 80px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 480px) {
  .header-wrap {
    height: 50px;
  }
}
.header-wrap__logo {
  max-width: 152px;
  width: 100%;
  aspect-ratio: 4.12/1;
  margin-right: 4%;
}
@media screen and (max-width: 480px) {
  .header-wrap__logo {
    max-width: 120px;
  }
}
.header-wrap__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.header-wrap__nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 27px;
}
@media screen and (max-width: 1024px) {
  .header-wrap__nav__list {
    display: none;
  }
}
.header-wrap__nav__list__item a {
  display: block;
  padding: 0.5rem 0.18rem;
  font-size: clamp(0.8rem, 0.771rem + 0.14vw, 0.9rem);
  font-weight: 500;
  position: relative;
  line-height: 1;
}
.header-wrap__nav__list__item.__entry a {
  width: clamp(7.5rem, 7.143rem + 1.79vw, 8.75rem);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  color: #FFFFFF;
  background-color: #B60120;
  padding: 0.3rem 0;
  font-size: clamp(0.7rem, 0.643rem + 0.29vw, 0.9rem);
  line-height: 1.5;
  border-radius: 9999px;
  border: 2px solid #B60120;
  position: relative;
}
.header-wrap__nav__list__item.__entry a:hover,
.header-wrap__nav__list__item.__entry a.hover {
  background-color: #FFFFFF;
  color: #B60120;
  opacity: 1;
}
.header-wrap__nav__list__item.__entry a::after {
  content: "→";
  position: absolute;
  right: 0.3rem;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(0);
  -ms-transform: translateY(-50%) translateX(0);
  transform: translateY(-50%) translateX(0);
  color: #B60120;
  background-color: #FFFFFF;
  width: clamp(1rem, 0.805rem + 1.48vw, 1.2rem);
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  line-height: 1;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.header-wrap__nav__list__item.__entry a:hover::after,
.header-wrap__nav__list__item.__entry a.hover::after {
  background-color: #B60120;
  color: #FFFFFF;
  -webkit-transform: translateY(-50%) translateX(0.2rem);
  -ms-transform: translateY(-50%) translateX(0.2rem);
  transform: translateY(-50%) translateX(0.2rem);
}
.header-wrap__nav__list__item.__hum {
  display: none;
}
@media screen and (max-width: 1024px) {
  .header-wrap__nav__list__item.__hum {
    display: block;
  }
  .header-wrap__nav__list__item.__hum a {
    font-size: clamp(0.8rem, 0.771rem + 0.14vw, 0.9rem);
    padding: 0.18rem 1rem;
  }
}
.header-wrap__nav__list__item:not(.__entry) a {
  position: relative;
}
.header-wrap__nav__list__item:not(.__entry) a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #B60120;
  border-radius: 10px;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  will-change: transform;
}
.header-wrap__nav__list__item:not(.__entry) a:hover::after,
.header-wrap__nav__list__item:not(.__entry) a.hover::after {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}
.header-wrap #h-menu {
  visibility: hidden;
  position: fixed;
  z-index: -1;
  opacity: 0;
  top: 0;
  right: -110%;
  width: 50%;
  height: 100vh;
  height: 100dvh;
  border-radius: 30px 0 0 30px;
  background: #F5F5F5;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
@media screen and (max-width: 768px) {
  .header-wrap #h-menu {
    width: 60%;
  }
}
@media screen and (max-width: 480px) {
  .header-wrap #h-menu {
    width: 70%;
  }
}
.header-wrap #h-menu.panelactive {
  opacity: 1;
  z-index: 999;
  visibility: visible;
  right: 0;
}
.header-wrap #h-menu.panelactive #h-menu-list {
  position: fixed;
  z-index: 999;
  width: 50%;
  height: 100vh;
  height: 100dvh;
}
@media screen and (max-width: 768px) {
  .header-wrap #h-menu.panelactive #h-menu-list {
    width: 60%;
  }
}
@media screen and (max-width: 480px) {
  .header-wrap #h-menu.panelactive #h-menu-list {
    width: 70%;
  }
}
.header-wrap #h-menu .header-wrap__nav__list {
  display: none;
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  padding: 1.5em;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.header-wrap #h-menu .header-wrap__nav__list__item {
  width: 100%;
  margin: 3vh auto;
  margin: 3dvh auto;
  text-align: center;
  display: block;
}
.header-wrap #h-menu .header-wrap__nav__list__item:last-of-type {
  margin-bottom: 0;
}
.header-wrap #h-menu .header-wrap__nav__list__item a:hover::after,
.header-wrap #h-menu .header-wrap__nav__list__item a.hover::after {
  -webkit-transform: scaleX(0.5);
  -ms-transform: scaleX(0.5);
  transform: scaleX(0.5);
}
.header-wrap #h-menu .header-wrap__nav__list__item.__entry a:hover::after,
.header-wrap #h-menu .header-wrap__nav__list__item.__entry a.hover::after {
  background-color: #B60120;
  color: #FFFFFF;
  -webkit-transform: translateY(-50%) translateX(0.2rem);
  -ms-transform: translateY(-50%) translateX(0.2rem);
  transform: translateY(-50%) translateX(0.2rem);
}
.header-wrap #h-menu.panelactive .header-wrap__nav__list {
  display: block;
}
.header-wrap .openbtn {
  display: none;
  position: relative;
  z-index: 9999;
  cursor: pointer;
  width: 40px;
  height: 40px;
  margin-left: 0.8rem;
}
@media screen and (max-width: 1024px) {
  .header-wrap .openbtn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.header-wrap .openbtn span {
  display: block;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  position: absolute;
  height: 2px;
  width: 28px;
  border-radius: 10px;
  background-color: #B60120;
}
.header-wrap .openbtn span:nth-of-type(1) {
  top: 9px;
}
.header-wrap .openbtn span:nth-of-type(2) {
  top: 19px;
}
.header-wrap .openbtn span:nth-of-type(3) {
  top: 29px;
}
.header-wrap .openbtn.active span:nth-of-type(1) {
  top: 19px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.header-wrap .openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.header-wrap .openbtn.active span:nth-of-type(3) {
  top: 19px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

main {
  padding-top: 80px;
}
@media screen and (max-width: 480px) {
  main {
    padding-top: 50px;
  }
}

.c-ttl1 {
  font-size: clamp(1.4rem, 1.286rem + 0.57vw, 1.8rem);
  font-weight: bold;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}
.c-ttl1 .en {
  display: block;
  font-size: clamp(0.9rem, 0.8rem + 0.5vw, 1.25rem);
  padding-left: clamp(1rem, 0.943rem + 0.29vw, 1.2rem);
  position: relative;
}
.c-ttl1 .en::before {
  content: "";
  width: clamp(0.438rem, 0.348rem + 0.45vw, 0.75rem);
  height: clamp(0.438rem, 0.348rem + 0.45vw, 0.75rem);
  border-radius: 50%;
  background-color: #B60120;
  display: inline-block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
}

.animated-text span {
  display: inline-block;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.animated-text span.visible {
  opacity: 1;
}

/* 半角スペース用 */
.animated-text .space-half {
  width: 0.5em;
}

/* 全角スペース用 */
.animated-text .space-full {
  width: 1em;
}

.c-ttl2 {
  font-size: clamp(1.4rem, 1.286rem + 0.57vw, 1.8rem);
  font-weight: bold;
  margin-bottom: 1.25rem;
  color: #B60120;
  line-height: 1.5;
}
.c-ttl2 .en {
  display: block;
  font-size: clamp(0.9rem, 0.8rem + 0.5vw, 1.25rem);
  color: #222222;
  padding-left: clamp(1rem, 0.943rem + 0.29vw, 1.2rem);
  position: relative;
}
.c-ttl2 .en::before {
  content: "";
  width: clamp(0.438rem, 0.348rem + 0.45vw, 0.75rem);
  height: clamp(0.438rem, 0.348rem + 0.45vw, 0.75rem);
  border-radius: 50%;
  background-color: #CDCDCD;
  display: inline-block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
}
.c-ttl2 .animated-text span {
  display: inline-block;
  opacity: 0;
  -webkit-transform: translateY(0.2em);
  -ms-transform: translateY(0.2em);
  transform: translateY(0.2em);
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  -o-transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
.c-ttl2 .animated-text span.visible {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.c-btn {
  max-width: 270px;
  width: 100%;
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  .c-btn {
    max-width: 250px;
  }
}
.c-btn a {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  color: #FFFFFF;
  font-size: clamp(0.9rem, 0.798rem + 0.51vw, 1.1rem);
  padding: 0.9rem 0;
  background-color: #B60120;
  border-radius: 9999px;
  border: 2px solid #B60120;
  position: relative;
  line-height: 1.5;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.c-btn a:hover,
.c-btn a.hover {
  background-color: #FFFFFF;
  color: #B60120;
  opacity: 1;
}
.c-btn a::after {
  content: "→";
  position: absolute;
  right: clamp(0.6rem, -0.385rem + 1.54vw, 1rem);
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(0);
  -ms-transform: translateY(-50%) translateX(0);
  transform: translateY(-50%) translateX(0);
  color: #B60120;
  font-size: clamp(0.8rem, 0.595rem + 1.02vw, 1.25rem);
  background-color: #FFFFFF;
  width: clamp(1.1rem, 0.805rem + 1.48vw, 1.7rem);
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  line-height: 1;
  font-weight: 500;
}
.c-btn a:hover::after,
.c-btn a.hover::after {
  background-color: #B60120;
  color: #FFFFFF;
  -webkit-transform: translateY(-50%) translateX(6px);
  -ms-transform: translateY(-50%) translateX(6px);
  transform: translateY(-50%) translateX(6px);
}

.recruit {
  background-color: #202121;
}
.recruit-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.recruit-wrap .c-ttl1 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.recruit-wrap__txt {
  color: #FFFFFF;
  font-size: clamp(0.81rem, 0.79rem + 0.1vw, 0.88rem);
  font-weight: 400;
  text-align: center;
  margin-bottom: 3rem;
}
.recruit-wrap__txt strong {
  display: block;
  font-size: clamp(3.8rem, 3.343rem + 2.29vw, 5.4rem);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.recruit-wrap__con {
  max-width: 1004px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 67px;
  -moz-column-gap: 67px;
  column-gap: 67px;
  row-gap: 35px;
}
.recruit-wrap__con__btn {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 290px;
  flex: 0 1 290px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.recruit-wrap__con__btn__ttl {
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: clamp(0.81rem, 0.79rem + 0.1vw, 0.88rem);
  font-weight: 400;
}
.recruit-wrap__con__btn .c-btn {
  margin: 0 auto;
}

.footer {
  background-color: #202121;
}
.footer .__inner {
  padding-top: 40px;
  padding-bottom: 40px;
}
.footer-wrap {
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: clamp(4.375rem, -7.933rem + 19.23vw, 9.375rem);
  border-top: 1px solid #FFFFFF;
  border-bottom: 1px solid #FFFFFF;
  position: relative;
}
.footer-wrap::after {
  content: "";
  width: 1px;
  height: 13rem;
  position: absolute;
  left: 40%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #FFFFFF;
  opacity: 0.8;
}
@media screen and (max-width: 1024px) {
  .footer-wrap::after {
    width: 100%;
    height: 1px;
    left: 0;
  }
}
@media screen and (max-width: 1024px) {
  .footer-wrap {
    -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;
  }
}
.footer-wrap__company {
  max-width: 315px;
  width: 100%;
  font-weight: 300;
  font-size: clamp(0.7rem, 0.683rem + 0.09vw, 0.76rem);
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  .footer-wrap__company {
    width: 100%;
  }
}
.footer-wrap__company__logo {
  width: 260px;
  aspect-ratio: 4.12/1;
  margin-bottom: 1.5rem;
}
.footer-wrap__company__name {
  margin-bottom: 0.5rem;
}
.footer-wrap__nav {
  max-width: 512px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 17%;
}
@media screen and (max-width: 1024px) {
  .footer-wrap__nav {
    max-width: none;
    gap: 8%;
  }
}
@media screen and (max-width: 480px) {
  .footer-wrap__nav {
    gap: 17%;
  }
}
.footer-wrap__nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.footer-wrap__nav__list:nth-child(2) {
  max-width: 290px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .footer-wrap__nav__list:nth-child(2) {
    max-width: 210px;
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .footer-wrap__nav__list:nth-child(2) {
    max-width: 170px;
    width: 100%;
  }
}
.footer-wrap__nav__list__item a {
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: clamp(0.7rem, 0.683rem + 0.09vw, 0.76rem);
  font-weight: 300;
  position: relative;
  line-height: 1.2;
}
.footer-wrap__nav__list__item a i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 0.5em;
  width: clamp(0.8rem, 0.743rem + 0.29vw, 1rem);
  aspect-ratio: 1/1;
  border: 1.5px solid #FFFFFF;
  border-radius: 50%;
  margin-right: 0.6rem;
  color: #FFFFFF;
}
.footer-wrap__nav__list__item .c-btn {
  width: 75%;
  margin-left: 0;
}
@media screen and (max-width: 1024px) {
  .footer-wrap__nav__list__item .c-btn {
    width: 100%;
  }
}
.footer-wrap__nav__list__item .c-btn a {
  background-color: #202121;
  border: 1.5px solid #FFFFFF;
  padding: 0.8rem 0;
}
@media screen and (max-width: 480px) {
  .footer-wrap__nav__list__item .c-btn a {
    font-size: 0.7rem;
    padding: 0.5rem 0;
  }
}
.footer-wrap__nav__list__item .c-btn a:hover,
.footer-wrap__nav__list__item .c-btn a.hover {
  background-color: #FFFFFF;
  color: #202121;
}
.footer-wrap__nav__list__item .c-btn a::after {
  color: #202121;
  background-color: #202121;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
  font-size: clamp(0.7rem, 0.614rem + 0.43vw, 1rem);
  width: clamp(1rem, 0.857rem + 0.71vw, 1.5rem);
}
.footer-wrap__nav__list__item .c-btn a:hover::after,
.footer-wrap__nav__list__item .c-btn a.hover::after {
  background-color: #202121;
  color: #FFFFFF;
  border-color: #202121;
}
.footer-wrap__nav__list__item:not(.__entry) a:hover,
.footer-wrap__nav__list__item:not(.__entry) a.hover {
  -webkit-transform: translateX(5px);
  -ms-transform: translateX(5px);
  transform: translateX(5px);
}
.footer-right {
  color: #FFFFFF;
  font-size: clamp(0.7rem, 0.683rem + 0.09vw, 0.76rem);
  text-align: center;
  padding: 1rem 0;
}

body.common-sub .u-ttl {
  color: #B60120;
  font-size: clamp(2.5rem, 1.877rem + 3.11vw, 4.68rem);
  font-weight: bold;
  line-height: 1.3;
}
body.common-sub .u-ttl span {
  display: block;
  color: #222222;
  font-size: clamp(1.1rem, 0.88rem + 1.1vw, 1.8rem);
  font-weight: 500;
}
body.common-sub .breadcrumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin: 1.7em 0 0.8em;
}
body.common-sub .breadcrumb__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
body.common-sub .breadcrumb__item:not(:last-child)::after {
  content: "〉";
  font-size: clamp(0.6rem, 0.506rem + 0.47vw, 0.93rem);
  margin: 0 0.5rem;
}
body.common-sub .breadcrumb__item a {
  display: block;
  color: #333333;
  font-size: clamp(0.6rem, 0.506rem + 0.47vw, 0.93rem);
  font-weight: 400;
  color: rgba(51, 51, 51, 0.5);
}
body.common-sub .breadcrumb__item a:hover,
body.common-sub .breadcrumb__item a.hover {
  color: #B60120;
}
body.common-sub .breadcrumb__item[aria-current=page] {
  color: #B60120;
  font-size: clamp(0.6rem, 0.506rem + 0.47vw, 0.93rem);
  font-weight: 400;
}
body.common-sub .single-pg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1.8rem;
  margin-top: clamp(2.5rem, 1.786rem + 3.57vw, 5rem);
}
@media screen and (max-width: 480px) {
  body.common-sub .single-pg {
    gap: 1rem;
  }
}
body.common-sub .single-pg__item a {
  line-height: 1.5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: clamp(2.188rem, 1.92rem + 1.34vw, 3.125rem);
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
  color: #222222;
  background-color: #FFFFFF;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  font-size: clamp(0.8rem, 0.743rem + 0.29vw, 1rem);
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
body.common-sub .single-pg__item a:hover,
body.common-sub .single-pg__item a.hover {
  background-color: #222222;
  border-color: #222222;
  color: #FFFFFF;
  opacity: 1;
}
body.common-sub .single-pg__item a:hover i,
body.common-sub .single-pg__item a.hover i {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
body.common-sub .single-pg__item.__center a {
  aspect-ratio: 3.8/1;
  height: clamp(2.8rem, 2.571rem + 1.14vw, 3.6rem);
  border-radius: 9999px;
  background-color: #222222;
  color: #FFFFFF;
  border-color: #222222;
}
body.common-sub .single-pg__item.__center a:hover,
body.common-sub .single-pg__item.__center a.hover {
  background-color: #FFFFFF;
  color: #222222;
  border-color: #FFFFFF;
}
body.common-sub .archive-pg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1.8rem;
  margin-top: 5rem;
}
@media screen and (max-width: 480px) {
  body.common-sub .archive-pg {
    gap: 1rem;
  }
}
body.common-sub .archive-pg__item a,
body.common-sub .archive-pg__item span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  align-items: center;
  height: 3.1rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  font-size: clamp(1rem, 0.929rem + 0.36vw, 1.25rem);
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
@media screen and (max-width: 480px) {
  body.common-sub .archive-pg__item a,
  body.common-sub .archive-pg__item span {
    height: 2.5rem;
  }
}
body.common-sub .archive-pg__item a {
  border: 2px solid #FFFFFF;
  color: #222222;
  background-color: #FFFFFF;
}
body.common-sub .archive-pg__item a i {
  font-size: clamp(0.8rem, 0.743rem + 0.29vw, 1rem);
}
body.common-sub .archive-pg__item a:hover,
body.common-sub .archive-pg__item a.hover {
  background-color: #222222;
  border-color: #222222;
  color: #FFFFFF;
  opacity: 1;
}
body.common-sub .archive-pg__item a:hover i,
body.common-sub .archive-pg__item a.hover i {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
body.common-sub .archive-pg__item span.is-current,
body.common-sub .archive-pg__item span.current {
  background-color: #222222;
  color: #FFFFFF;
  border-color: #222222;
  pointer-events: none;
}
body.common-sub .archive-pg__item span {
  border: 2px solid transparent;
  color: #222222;
}
body.common-sub .archive-pg__item span i {
  font-size: clamp(0.8rem, 0.743rem + 0.29vw, 1rem);
}
body.common-sub .top .__inner {
  padding-bottom: 0;
}
body.common-sub .top-wrap__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2.16/1;
  border-radius: 1.5em;
}
@media screen and (max-width: 480px) {
  body.common-sub .top-wrap__image {
    aspect-ratio: 1.51/1;
  }
}
body.common-sub .top-wrap__image .parallax {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

body.home main {
  padding-top: 0;
}
body.home .header {
  background-color: rgba(255, 255, 255, 0);
}
body.home .header-wrap__nav__list__item a {
  color: #FFFFFF;
}
body.home .header.scrolled-past-fv {
  background-color: rgba(255, 255, 255, 0.9);
}
body.home .header.scrolled-past-fv .header-wrap__nav__list__item:not(.__entry) a {
  color: #222222;
}
body.home #h-menu .header-wrap__nav__list__item:not(.__entry) a {
  color: #222222;
}
body.home .fv {
  position: relative;
  overflow: hidden;
}
body.home .fv .slide-list__item .slide-list__item__video {
  position: relative;
  height: 100vh;
  height: 100dvh;
  width: 100%;
  overflow: hidden;
}
body.home .fv .slide-list__item .slide-list__item__video video {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -1;
}
body.home .fv .slide-list__item .slide-list__item__video::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(51, 51, 51, 0.3);
  z-index: 0;
}
body.home .fv-wrap {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}
body.home .fv-wrap__con {
  position: absolute;
  top: 55%;
  left: 16.5%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  body.home .fv-wrap__con {
    top: 65%;
    left: 5%;
  }
}
body.home .fv-wrap__con__ttl {
  font-size: clamp(2.5rem, 1.932rem + 2.84vw, 3.75rem);
  font-weight: 600;
  margin-bottom: 2%;
}
body.home .fv-wrap__con__desc {
  font-size: clamp(0.75rem, 0.679rem + 0.36vw, 1rem);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.0625rem;
}
body.home .fv-wrap__logo {
  position: absolute;
  background-image: url("../img/fv-logo.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  top: 50%;
  left: 8%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0.2;
  width: 25%;
  aspect-ratio: 1/1;
  -webkit-animation: rotate360 30s linear infinite;
  animation: rotate360 30s linear infinite;
}
@media screen and (max-width: 768px) {
  body.home .fv-wrap__logo {
    top: 60%;
    left: 6.5%;
    width: 40%;
  }
}
@media screen and (max-width: 480px) {
  body.home .fv-wrap__logo {
    width: 55%;
  }
}
@-webkit-keyframes rotate360 {
  from {
    -webkit-transform: translateY(-50%) rotate(0deg);
    transform: translateY(-50%) rotate(0deg);
  }
  to {
    -webkit-transform: translateY(-50%) rotate(360deg);
    transform: translateY(-50%) rotate(360deg);
  }
}
@keyframes rotate360 {
  from {
    -webkit-transform: translateY(-50%) rotate(0deg);
    transform: translateY(-50%) rotate(0deg);
  }
  to {
    -webkit-transform: translateY(-50%) rotate(360deg);
    transform: translateY(-50%) rotate(360deg);
  }
}
body.home .fv-wrap .scroll-indicator {
  position: absolute;
  right: 2.5%;
  bottom: 2.5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 5;
}
body.home .fv-wrap .scroll-indicator .line {
  width: 1.5px;
  height: 60px;
  background: #fff;
  position: relative;
  overflow: hidden;
}
body.home .fv-wrap .scroll-indicator .circle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-animation: moveDown 2s infinite;
  animation: moveDown 2s infinite;
}
body.home .fv-wrap .scroll-indicator .text {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  /* 縦書き */
  margin-top: 10px;
  font-size: clamp(0.81rem, 0.79rem + 0.1vw, 0.88rem);
  font-weight: 500;
  color: #FFFFFF;
  -webkit-transform: translateX(10%);
  -ms-transform: translateX(10%);
  transform: translateX(10%);
}
@-webkit-keyframes moveDown {
  0% {
    top: 0;
    opacity: 0;
  }
  30% {
    top: 15px;
    opacity: 1;
  }
  70% {
    top: 40px;
    opacity: 1;
  }
  100% {
    top: 60px;
    opacity: 0;
  }
}
@keyframes moveDown {
  0% {
    top: 0;
    opacity: 0;
  }
  30% {
    top: 15px;
    opacity: 1;
  }
  70% {
    top: 40px;
    opacity: 1;
  }
  100% {
    top: 60px;
    opacity: 0;
  }
}
body.home .about {
  background-color: #202121;
}
body.home .about-wrap__con {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 3.8rem;
  margin-top: 4.6%;
}
@media screen and (max-width: 768px) {
  body.home .about-wrap__con {
    -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;
    gap: 1.3rem;
  }
}
body.home .about-wrap__con__image {
  width: 35%;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 768px) {
  body.home .about-wrap__con__image {
    width: 70%;
  }
}
@media screen and (max-width: 480px) {
  body.home .about-wrap__con__image {
    width: 80%;
  }
}
body.home .about-wrap__con__block {
  width: 57%;
  color: #FFFFFF;
}
@media screen and (max-width: 1024px) {
  body.home .about-wrap__con__block {
    width: 100%;
  }
}
body.home .about-wrap__con__block__ttl {
  margin-bottom: 1.6rem;
  font-size: clamp(1.1rem, 0.986rem + 0.57vw, 1.5rem);
}
body.home .about-wrap__con__block__txt {
  margin-bottom: 3.4rem;
  font-size: clamp(0.81rem, 0.79rem + 0.1vw, 0.88rem);
  font-weight: 400;
  line-height: 2;
}
body.home .about-wrap .c-btn {
  margin-right: auto;
}
body.home .store {
  background-color: #F5F5F5;
}
body.home .store-wrap .c-ttl2 {
  margin-bottom: 4.5%;
}
body.home .store-wrap__con {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 3.4rem;
}
@media screen and (max-width: 1024px) {
  body.home .store-wrap__con {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1em;
  }
}
body.home .store-wrap__con__area {
  width: 45%;
}
@media screen and (max-width: 1024px) {
  body.home .store-wrap__con__area {
    width: 100%;
  }
}
body.home .store-wrap__con__area__block {
  margin-bottom: 1.6rem;
}
body.home .store-wrap__con__area__block:last-child {
  margin-bottom: 0;
}
body.home .store-wrap__con__area__block__ttl {
  font-size: clamp(1.125rem, 1.036rem + 0.45vw, 1.438rem);
  font-weight: bold;
  position: relative;
  padding-bottom: 0.25em;
  margin-bottom: 0.6em;
}
body.home .store-wrap__con__area__block__ttl::before {
  content: "";
  width: 50%;
  height: 2px;
  border-radius: 10px;
  background-color: #CDCDCD;
  position: absolute;
  bottom: 0;
}
body.home .store-wrap__con__area__block__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 11px;
}
body.home .store-wrap__con__area__block__list__item a {
  line-height: 1.5;
  display: block;
  font-size: clamp(0.688rem, 0.616rem + 0.36vw, 0.938rem);
  font-weight: 400;
  color: #B60120;
  padding: 0.3rem 1.5rem;
  background-color: #FFFFFF;
  border: 1.5px solid #B60120;
  border-radius: 9999px;
}
body.home .store-wrap__con__area__block__list__item a:hover,
body.home .store-wrap__con__area__block__list__item a.hover {
  background-color: #B60120;
  color: #FFFFFF;
  opacity: 1;
}
body.home .store-wrap__con__image {
  width: 55%;
}
@media screen and (max-width: 480px) {
  body.home .store-wrap__con__image {
    width: 70%;
  }
}
body.home .store-wrap .c-btn {
  margin: 0 auto;
}
body.home .data {
  background-color: #B60120;
}
body.home .data .age-ratio-image {
  margin: auto 0;
}
body.home .data .shop-wrap {
  margin: auto 0;
}
body.home .data .shop-labels {
  text-align: center;
  font-weight: bold;
  position: relative;
}
body.home .data .shop-labels .shop-values {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 1.8em;
}
body.home .data .shop-labels .shop-values .shop-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
body.home .data .shop-labels .shop-values .shop-block .shop-name {
  font-size: 0.7em;
  line-height: 1;
  color: #878787;
  white-space: nowrap;
  display: inline-block;
  margin-bottom: 0.1em;
}
body.home .data .shop-labels .shop-values .shop-block .number {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-size: clamp(3.1rem, 2.957rem + 0.71vw, 3.6rem);
  font-weight: bold;
  color: #B60120;
  line-height: 1;
  white-space: nowrap;
}
body.home .data .shop-labels .shop-values .shop-block .unit {
  font-size: 0.9em;
  margin-top: 0.1em;
  line-height: 1;
}
body.home .data .shop-labels .shop-values .colon {
  font-size: clamp(1.1rem, 0.529rem + 2.86vw, 3.1rem);
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  margin: auto 0;
}
body.home .data-wrap .c-ttl1 span::before {
  background-color: #FFFFFF;
}
body.home .data-wrap__txt {
  color: #FFFFFF;
  font-size: clamp(0.81rem, 0.79rem + 0.1vw, 0.88rem);
  font-weight: 400;
  margin-bottom: 4.5%;
}
body.home .data-wrap__list {
  justify-items: center;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 5% 1fr 5% 1fr;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 5%;
  -moz-column-gap: 5%;
  column-gap: 5%;
  row-gap: clamp(1.25rem, 0.393rem + 4.29vw, 4.25rem);
  margin-bottom: clamp(2rem, 1.714rem + 1.43vw, 3rem);
}
@media screen and (max-width: 1024px) {
  body.home .data-wrap__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  body.home .data-wrap__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  body.home .data-wrap__list .data-wrap__list__item {
    -webkit-box-ordinal-group: initial;
    -ms-flex-order: initial;
    order: initial;
  }
}
body.home .data-wrap__list__item {
  background-color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 25px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1em;
  position: relative;
  z-index: 0;
  max-width: 356px;
  width: 100%;
}
body.home .data-wrap__list__item__ttl {
  font-size: clamp(0.9rem, 0.843rem + 0.29vw, 1.1rem);
  text-align: center;
  font-weight: bold;
  display: inline-block;
  padding: 2.2% 9%;
  border-radius: 9999px;
  margin-bottom: clamp(0.5rem, 0.357rem + 0.71vw, 1rem);
  line-height: 1.2;
}
body.home .data-wrap__list__item__con {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
body.home .data-wrap__list__item__con img {
  -o-object-fit: contain;
  object-fit: contain;
}
body.home .data-wrap__list__item__con p {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: clamp(1rem, 0.857rem + 0.71vw, 1.5rem);
  font-weight: 500;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  margin-bottom: 0.3em;
}
body.home .data-wrap__list__item__con p strong {
  color: #B60120;
  font-size: clamp(2.5rem, 2.357rem + 0.71vw, 3rem);
  white-space: nowrap;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  margin-right: 0.05em;
}
body.home .data-wrap__list__item__con small {
  font-size: clamp(0.8rem, 0.771rem + 0.14vw, 0.9rem);
  line-height: 1;
  display: block;
  width: 100%;
  text-align: end;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
body.home .data-wrap .c-btn {
  margin: 0 auto;
}
body.home .data-wrap .c-btn a {
  color: #B60120;
  background-color: #FFFFFF;
  border: 2px solid #FFFFFF;
}
body.home .data-wrap .c-btn a::after {
  background-color: #B60120;
  color: #FFFFFF;
}
body.home .data-wrap .c-btn a:hover,
body.home .data-wrap .c-btn a.hover {
  background-color: #B60120;
  color: #FFFFFF;
}
body.home .data-wrap .c-btn a:hover::after,
body.home .data-wrap .c-btn a.hover::after {
  background-color: #FFFFFF;
  color: #B60120;
}
body.home .voice-wrap__txt {
  font-size: clamp(0.81rem, 0.79rem + 0.1vw, 0.88rem);
  font-weight: 400;
  margin-bottom: 4.5%;
}
body.home .voice-wrap .slider2 .slide2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
body.home .voice-wrap .slider2 .slide2 a {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 3.12rem;
  position: relative;
}
@media screen and (max-width: 1024px) {
  body.home .voice-wrap .slider2 .slide2 a {
    margin: 0 0.6rem;
  }
}
body.home .voice-wrap .slider2 .slide2 a .slide-list__item__image {
  max-width: 318px;
  width: 100%;
  aspect-ratio: 0.82/1;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  body.home .voice-wrap .slider2 .slide2 a .slide-list__item__image {
    max-width: 412px;
  }
}
body.home .voice-wrap .slider2 .slide2 a .slide-list__item__image img {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
body.home .voice-wrap .slider2 .slide2 a .slide-list__item__image:hover img,
body.home .voice-wrap .slider2 .slide2 a .slide-list__item__image.hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
body.home .voice-wrap .slider2 .slide2 a p {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: clamp(0.8rem, 0.714rem + 0.43vw, 1.1rem);
  font-weight: 500;
  color: #FFFFFF;
  background-color: #B60120;
  display: inline-block;
  padding: 2.2% 18% 2.2% 6.2%;
  -webkit-clip-path: polygon(0 0, calc(100% - 1rem) 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, calc(100% - 1rem) 0, 100% 100%, 0 100%);
  line-height: 1.5;
}
body.home .voice-wrap .slider2 .slide2 a p span {
  font-size: clamp(0.7rem, 0.657rem + 0.21vw, 0.85rem);
  font-weight: 400;
  display: inline-block;
  margin-left: 0.9rem;
}
body.home .voice-wrap .slider2 .slick-dots {
  text-align: center;
  margin-top: 3.75%;
  margin-bottom: 5.6%;
}
body.home .voice-wrap .slider2 .slick-dots li {
  display: inline-block;
  margin: 0 5px;
}
body.home .voice-wrap .slider2 .slick-dots li button {
  color: transparent;
  background: #CDCDCD;
  border-radius: 50%;
  outline: none;
  display: block;
  border: none;
  padding: 2.5px;
  width: 8px;
  height: 8px;
}
@media screen and (max-width: 768px) {
  body.home .voice-wrap .slider2 .slick-dots li button {
    width: 5px;
    height: 5px;
  }
}
body.home .voice-wrap .slider2 .slick-dots li.slick-active button {
  background-color: #B60120;
}
body.home .voice-wrap .slider2 .slick-prev,
body.home .voice-wrap .slider2 .slick-next {
  font-size: clamp(1.1rem, 0.879rem + 1.11vw, 1.875rem);
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
  position: absolute;
  bottom: -20px;
  cursor: pointer;
  outline: none;
  width: clamp(1.875rem, 0.982rem + 4.46vw, 3.125rem);
  height: clamp(1.875rem, 0.982rem + 4.46vw, 3.125rem);
  background-color: #F5F5F5;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 2;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  body.home .voice-wrap .slider2 .slick-prev,
  body.home .voice-wrap .slider2 .slick-next {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
body.home .voice-wrap .slider2 .slick-prev:hover,
body.home .voice-wrap .slider2 .slick-prev.hover,
body.home .voice-wrap .slider2 .slick-next:hover,
body.home .voice-wrap .slider2 .slick-next.hover {
  background-color: #B60120;
  color: #FFFFFF;
}
body.home .voice-wrap .slider2 .slick-prev {
  right: 5.3rem;
}
@media screen and (max-width: 768px) {
  body.home .voice-wrap .slider2 .slick-prev {
    left: 0;
  }
}
body.home .voice-wrap .slider2 .slick-next {
  right: 0;
}
@media screen and (max-width: 768px) {
  body.home .voice-wrap .slider2 .slick-next {
    right: 0;
  }
}
body.home .voice-wrap .c-btn {
  margin: 2.5rem auto 0;
}
body.home .news {
  background-color: #F5F5F5;
  padding-bottom: 40px;
}
body.home .news-wrap__list {
  position: relative;
}
body.home .news-wrap__list a {
  display: inline-block;
  max-width: 412px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  margin: 0.6rem;
}
body.home .news-wrap__list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
body.home .news-wrap__list__item:hover,
body.home .news-wrap__list__item.hover {
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
}
body.home .news-wrap__list__item__image {
  width: 100%;
  aspect-ratio: 1.714/1;
}
body.home .news-wrap__list__item__con {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  padding: 14px 16px 30px;
  background-color: #FFFFFF;
}
body.home .news-wrap__list__item__con__date {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: #CDCDCD;
  margin-bottom: 0.6rem;
}
body.home .news-wrap__list__item__con__ttl {
  font-size: clamp(0.81rem, 0.79rem + 0.1vw, 0.88rem);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
body.home .news-wrap__list .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  margin-top: 3.75%;
  padding: 0 1em;
  text-align: center;
}
body.home .news-wrap__list .slick-dots li {
  display: inline-block;
}
body.home .news-wrap__list .slick-dots li button {
  color: transparent;
  background: #CDCDCD;
  border-radius: 50%;
  outline: none;
  display: block;
  border: none;
  padding: 2.5px;
  width: 8px;
  height: 8px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  body.home .news-wrap__list .slick-dots li button {
    width: 5px;
    height: 5px;
  }
}
body.home .news-wrap__list .slick-dots li.slick-active button {
  background-color: #B60120;
}
body.home .news-wrap__list .slick-prev,
body.home .news-wrap__list .slick-next {
  font-size: clamp(1.1rem, 0.879rem + 1.11vw, 1.875rem);
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
  position: absolute;
  bottom: -10%;
  cursor: pointer;
  outline: none;
  width: clamp(1.875rem, 0.982rem + 4.46vw, 3.125rem);
  height: clamp(1.875rem, 0.982rem + 4.46vw, 3.125rem);
  background-color: #FFFFFF;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 2;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  body.home .news-wrap__list .slick-prev,
  body.home .news-wrap__list .slick-next {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
body.home .news-wrap__list .slick-prev:hover,
body.home .news-wrap__list .slick-prev.hover,
body.home .news-wrap__list .slick-next:hover,
body.home .news-wrap__list .slick-next.hover {
  background-color: #B60120;
  color: #FFFFFF;
}
body.home .news-wrap__list .slick-prev {
  right: 5.3rem;
}
@media screen and (max-width: 768px) {
  body.home .news-wrap__list .slick-prev {
    left: 0;
  }
}
body.home .news-wrap__list .slick-next {
  right: 0;
}
@media screen and (max-width: 768px) {
  body.home .news-wrap__list .slick-next {
    right: 0;
  }
}

body.page-service .top-wrap__image .parallax {
  background-image: url("../img/service-top.webp");
}
body.page-service .life-wrap__txt {
  width: 92.6%;
  line-height: 2;
  font-size: clamp(0.81rem, 0.79rem + 0.1vw, 0.88rem);
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  body.page-service .life-wrap__txt {
    width: 100%;
  }
}
body.page-service .business {
  background-color: #F5F5F5;
  padding: 5em 0;
}
body.page-service .business-wrap {
  max-width: 1200px;
  width: 85%;
  margin: 0 auto;
  padding: 0 0 2.8em 0;
}
body.page-service .business-wrap__link {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2em 1fr 2em 1fr 2em 1fr 2em 1fr;
  grid-template-columns: repeat(5, 1fr);
  -webkit-column-gap: 2em;
  -moz-column-gap: 2em;
  column-gap: 2em;
  margin: 2.6em auto 0;
  place-items: center;
}
@media screen and (max-width: 1024px) {
  body.page-service .business-wrap__link {
    -ms-grid-columns: 1fr 2em 1fr;
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 2em;
    -moz-column-gap: 2em;
    column-gap: 2em;
    row-gap: 1.25em;
  }
}
@media screen and (max-width: 768px) {
  body.page-service .business-wrap__link {
    width: 100%;
  }
}
body.page-service .business-wrap__link__btn {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  body.page-service .business-wrap__link__btn {
    width: 70%;
  }
}
@media screen and (max-width: 480px) {
  body.page-service .business-wrap__link__btn {
    width: 100%;
  }
}
body.page-service .business-wrap__link__btn a {
  width: 100%;
  font-size: clamp(0.7rem, 0.557rem + 0.71vw, 1.2rem);
  font-weight: 500;
  padding: 4.5% 0;
  text-align: center;
  border-radius: 9999px;
  background-color: #FFFFFF;
  position: relative;
}
body.page-service .business-wrap__link__btn a:hover,
body.page-service .business-wrap__link__btn a.hover {
  background-color: #B60120;
  color: #FFFFFF;
  opacity: 1;
}
body.page-service .business-wrap__link__btn a::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  right: 1em;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: clamp(0.8rem, 0.671rem + 0.64vw, 1.25rem);
  font-weight: bold;
  border-radius: 50%;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
body.page-service .business-wrap__link__btn a:hover::after,
body.page-service .business-wrap__link__btn a.hover::after {
  -webkit-transform: translateY(-30%);
  -ms-transform: translateY(-30%);
  transform: translateY(-30%);
}
body.page-service .business-wrap hr {
  margin: 1.8em 0 0;
}
body.page-service .business .business-ttl {
  font-size: clamp(3rem, 2.857rem + 0.71vw, 3.5rem);
  font-weight: bold;
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1.3;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 1024px) {
  body.page-service .business .business-ttl.__mobile {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  body.page-service .business .business-ttl.__mobile {
    width: 100%;
  }
}
body.page-service .business .business-ttl__main {
  font-size: clamp(1.5rem, 1.393rem + 0.54vw, 1.875rem);
  font-weight: bold;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: clamp(0.625rem, 0.446rem + 0.89vw, 1.25rem);
  margin-left: clamp(0.625rem, 0.446rem + 0.89vw, 1.25rem);
  position: relative;
}
body.page-service .business .business-ttl__main::before {
  content: "";
  width: 2px;
  height: 100%;
  background-color: #FFFFFF;
  position: absolute;
  top: 0;
  left: 0;
}
body.page-service .business .business-ttl__main small {
  font-size: clamp(0.9rem, 0.871rem + 0.14vw, 1rem);
  margin-bottom: 0.18rem;
  font-weight: 500;
}
body.page-service .business .business-ttl.__black {
  color: #222222;
}
body.page-service .business .business-ttl.__black .business-ttl__main::before {
  background-color: #222222;
}
body.page-service .business .mobile {
  width: 92%;
  margin-bottom: 3.7em;
  margin-right: auto;
  background-color: #B60120;
  border-radius: 0 1.56rem 1.56rem 0;
  padding: 4rem 3.7% 4rem 8.3%;
}
@media screen and (max-width: 1024px) {
  body.page-service .business .mobile {
    padding-right: 4%;
    padding-left: 4%;
  }
}
@media screen and (max-width: 480px) {
  body.page-service .business .mobile {
    width: 100%;
  }
}
body.page-service .business .mobile-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  max-width: 1147px;
  width: 100%;
  margin: 0 auto;
  padding-right: 4.6%;
}
@media screen and (max-width: 1024px) {
  body.page-service .business .mobile-wrap {
    -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;
    gap: 2.5em;
    padding-right: 0;
  }
}
body.page-service .business .mobile-wrap__con {
  width: 57.7%;
}
@media screen and (max-width: 1024px) {
  body.page-service .business .mobile-wrap__con {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  body.page-service .business .mobile-wrap__con {
    width: 100%;
  }
}
body.page-service .business .mobile-wrap__con__txt {
  font-size: clamp(0.81rem, 0.79rem + 0.1vw, 0.88rem);
  font-weight: 400;
  color: #FFFFFF;
  margin-bottom: 2.5em;
}
body.page-service .business .mobile-wrap__con__desc {
  background-color: #FFFFFF;
  padding: 1.3em;
  text-align: center;
  border-radius: 1.5em;
}
body.page-service .business .mobile-wrap__con__desc__ttl {
  background-color: #B60120;
  display: inline-block;
  font-size: clamp(0.9rem, 0.871rem + 0.14vw, 1rem);
  color: #FFFFFF;
  padding: 0.5em 1.8em;
  border-radius: 9999px;
  margin-bottom: 1.7em;
  line-height: 1.2;
  font-weight: 500;
}
body.page-service .business .mobile-wrap__con__desc__txt {
  text-align: left;
  font-size: clamp(0.81rem, 0.79rem + 0.1vw, 0.88rem);
  font-weight: 400;
}
body.page-service .business .mobile-wrap__shop {
  width: 38.8%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1.3rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  justify-items: center;
  gap: 1.3rem;
}
@media screen and (max-width: 1024px) {
  body.page-service .business .mobile-wrap__shop {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  body.page-service .business .mobile-wrap__shop {
    width: 100%;
  }
}
body.page-service .business .mobile-wrap__shop__logo {
  max-width: 200px;
  width: 100%;
  aspect-ratio: 2/1;
  background-color: #FFFFFF;
  border-radius: 0.9em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
body.page-service .business .mobile-wrap__shop__logo img {
  -o-object-fit: contain;
  object-fit: contain;
}
body.page-service .business .mobile-wrap__shop__logo .docomo {
  width: 95%;
}
body.page-service .business .mobile-wrap__shop__logo .au {
  width: 58%;
}
body.page-service .business .mobile-wrap__shop__logo .softbank {
  width: 92.5%;
}
body.page-service .business .mobile-wrap__shop__logo .uq {
  width: 91%;
}
body.page-service .business .mobile-wrap__shop__logo .ymobile {
  width: 85%;
}
body.page-service .business .wellness {
  width: 92%;
  margin-bottom: 3.7em;
  margin-left: auto;
  background-color: #FFFFFF;
  border-radius: 1.56rem 0 0 1.56rem;
  padding: 4rem 9% 4rem 2.1%;
}
@media screen and (max-width: 1024px) {
  body.page-service .business .wellness {
    padding-right: 4%;
    padding-left: 4%;
  }
}
@media screen and (max-width: 480px) {
  body.page-service .business .wellness {
    width: 100%;
  }
}
body.page-service .business .wellness-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2em;
  max-width: 1147px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  body.page-service .business .wellness-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2.5em;
    padding-right: 0;
  }
}
body.page-service .business .wellness-wrap__con {
  width: 55.3%;
}
@media screen and (max-width: 1024px) {
  body.page-service .business .wellness-wrap__con {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  body.page-service .business .wellness-wrap__con {
    width: 100%;
  }
}
body.page-service .business .wellness-wrap__con__txt {
  font-size: clamp(0.81rem, 0.79rem + 0.1vw, 0.88rem);
  font-weight: 400;
  color: #FFFFFF;
  margin-bottom: 2.5em;
}
body.page-service .business .wellness-wrap__con__txt.__black {
  color: #222222;
}
body.page-service .business .wellness-wrap__con__desc {
  background-color: #FFFFFF;
  padding: 1.3em 1em;
  border-radius: 1.5em;
  background-color: #F5F5F5;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  body.page-service .business .wellness-wrap__con__desc {
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  body.page-service .business .wellness-wrap__con__desc {
    width: 100%;
  }
}
body.page-service .business .wellness-wrap__con__desc__ttl {
  background-color: #B60120;
  display: inline-block;
  font-size: clamp(0.9rem, 0.871rem + 0.14vw, 1rem);
  color: #FFFFFF;
  padding: 0.5em 1.8em;
  border-radius: 9999px;
  margin-bottom: 1.7em;
  line-height: 1.2;
  font-weight: 500;
}
body.page-service .business .wellness-wrap__con__desc__ttl.__black {
  background-color: #222222;
}
body.page-service .business .wellness-wrap__con__desc__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.8em;
}
body.page-service .business .wellness-wrap__con__desc__block__image {
  max-width: 140px;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 0.9em;
  overflow: hidden;
}
body.page-service .business .wellness-wrap__con__desc__block__image a {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
body.page-service .business .wellness-wrap__con__desc__block__image a:hover,
body.page-service .business .wellness-wrap__con__desc__block__image a.hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
@media screen and (max-width: 480px) {
  body.page-service .business .wellness-wrap__con__desc__block__image {
    width: 40%;
  }
}
body.page-service .business .wellness-wrap__image {
  max-width: 400px;
  width: 100%;
  border-radius: 50%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
@media screen and (max-width: 480px) {
  body.page-service .business .wellness-wrap__image {
    width: 70%;
  }
}
body.page-service .business .apparel {
  width: 92%;
  margin-bottom: 3.7em;
  margin-right: auto;
  background-color: #B60120;
  border-radius: 0 1.56rem 1.56rem 0;
  padding: 4rem 2.1% 4rem 9%;
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  body.page-service .business .apparel {
    padding-right: 4%;
    padding-left: 4%;
  }
}
@media screen and (max-width: 480px) {
  body.page-service .business .apparel {
    width: 100%;
  }
}
body.page-service .business .apparel-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2em;
  max-width: 1147px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  body.page-service .business .apparel-wrap {
    -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;
    gap: 2.5em;
    padding-right: 0;
  }
}
body.page-service .business .apparel-wrap__con {
  width: 55.3%;
}
@media screen and (max-width: 1024px) {
  body.page-service .business .apparel-wrap__con {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  body.page-service .business .apparel-wrap__con {
    width: 100%;
  }
}
body.page-service .business .apparel-wrap__con__txt {
  font-size: clamp(0.81rem, 0.79rem + 0.1vw, 0.88rem);
  font-weight: 400;
  color: #FFFFFF;
  margin-bottom: 2.5rem;
}
body.page-service .business .apparel-wrap__con__desc {
  background-color: #FFFFFF;
  padding: 1.3em 1em;
  border-radius: 1.5em;
  background-color: #FFFFFF;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  body.page-service .business .apparel-wrap__con__desc {
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  body.page-service .business .apparel-wrap__con__desc {
    width: 100%;
  }
}
body.page-service .business .apparel-wrap__con__desc__ttl {
  background-color: #B60120;
  display: inline-block;
  font-size: clamp(0.9rem, 0.871rem + 0.14vw, 1rem);
  color: #FFFFFF;
  padding: 0.5em 1.8em;
  border-radius: 9999px;
  margin-bottom: 1.7em;
  line-height: 1.2;
  font-weight: 500;
}
body.page-service .business .apparel-wrap__con__desc__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1.125rem;
  max-width: 330px;
  width: 100%;
  margin: 0 auto;
}
body.page-service .business .apparel-wrap__con__desc__block__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #F5F5F5;
  border-radius: 0.9em;
  overflow: hidden;
}
body.page-service .business .apparel-wrap__con__desc__block__image a {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
body.page-service .business .apparel-wrap__con__desc__block__image a:hover,
body.page-service .business .apparel-wrap__con__desc__block__image a.hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
body.page-service .business .apparel-wrap__con__desc__block__image:nth-child(1) {
  width: 100%;
  aspect-ratio: 5.03/1;
}
body.page-service .business .apparel-wrap__con__desc__block__image:nth-child(1) img {
  width: 75%;
  -o-object-fit: contain;
  object-fit: contain;
}
body.page-service .business .apparel-wrap__con__desc__block__image:nth-child(2) {
  width: 37%;
  aspect-ratio: 1/1;
}
body.page-service .business .apparel-wrap__con__desc__block__image:nth-child(2) img {
  width: 84%;
  -o-object-fit: contain;
  object-fit: contain;
}
body.page-service .business .apparel-wrap__con__desc__block__image:nth-child(3) {
  width: 57%;
  aspect-ratio: 1.55/1;
}
body.page-service .business .apparel-wrap__con__desc__block__image:nth-child(3) img {
  width: 86%;
  -o-object-fit: contain;
  object-fit: contain;
}
body.page-service .business .apparel-wrap__image {
  max-width: 400px;
  width: 100%;
  border-radius: 50%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
@media screen and (max-width: 480px) {
  body.page-service .business .apparel-wrap__image {
    width: 70%;
  }
}
body.page-service .business .support {
  width: 92%;
  margin-bottom: 3.7em;
  margin-right: auto;
  background-color: #B60120;
  border-radius: 0 1.56rem 1.56rem 0;
  padding: 4rem 2.1% 4rem 9%;
}
@media screen and (max-width: 1024px) {
  body.page-service .business .support {
    padding-right: 4%;
    padding-left: 4%;
  }
}
@media screen and (max-width: 480px) {
  body.page-service .business .support {
    width: 100%;
  }
}
body.page-service .business .support-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2em;
  max-width: 1147px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  body.page-service .business .support-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2.5em;
    padding-right: 0;
  }
}
body.page-service .business .support-wrap__con {
  width: 55.3%;
}
@media screen and (max-width: 1024px) {
  body.page-service .business .support-wrap__con {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  body.page-service .business .support-wrap__con {
    width: 100%;
  }
}
body.page-service .business .support-wrap__con__txt {
  font-size: clamp(0.81rem, 0.79rem + 0.1vw, 0.88rem);
  font-weight: 400;
  color: #FFFFFF;
  margin-bottom: 2.5em;
}
body.page-service .business .support-wrap__con__desc {
  background-color: #FFFFFF;
  padding: 1.3em 1em;
  border-radius: 1.5em;
  background-color: #FFFFFF;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  body.page-service .business .support-wrap__con__desc {
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  body.page-service .business .support-wrap__con__desc {
    width: 100%;
  }
}
body.page-service .business .support-wrap__con__desc__ttl {
  background-color: #B60120;
  display: inline-block;
  font-size: clamp(0.9rem, 0.871rem + 0.14vw, 1rem);
  color: #FFFFFF;
  padding: 0.5em 1.8em;
  border-radius: 9999px;
  margin-bottom: 1.7em;
  line-height: 1.2;
  font-weight: 500;
}
body.page-service .business .support-wrap__con__desc__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
body.page-service .business .support-wrap__con__desc__block__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #F5F5F5;
  max-width: 275px;
  width: 100%;
  aspect-ratio: 2.35/1;
  border-radius: 0.9em;
  overflow: hidden;
}
body.page-service .business .support-wrap__con__desc__block__image a {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
body.page-service .business .support-wrap__con__desc__block__image a:hover,
body.page-service .business .support-wrap__con__desc__block__image a.hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
body.page-service .business .support-wrap__con__desc__block__image img {
  width: 90%;
  -o-object-fit: contain;
  object-fit: contain;
}
body.page-service .business .support-wrap__image {
  max-width: 400px;
  width: 100%;
  border-radius: 50%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
@media screen and (max-width: 480px) {
  body.page-service .business .support-wrap__image {
    width: 70%;
  }
}
body.page-service .business .good {
  width: 92%;
  margin-bottom: 3.7em;
  margin-left: auto;
  background-color: #FFFFFF;
  border-radius: 1.56rem 0 0 1.56rem;
  padding: 4rem 9% 4rem 2.1%;
}
@media screen and (max-width: 1024px) {
  body.page-service .business .good {
    padding-right: 4%;
    padding-left: 4%;
  }
}
@media screen and (max-width: 480px) {
  body.page-service .business .good {
    width: 100%;
  }
}
body.page-service .business .good-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2em;
  max-width: 1147px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  body.page-service .business .good-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2.5em;
    padding-right: 0;
  }
}
body.page-service .business .good-wrap__con {
  width: 55.3%;
}
@media screen and (max-width: 1024px) {
  body.page-service .business .good-wrap__con {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  body.page-service .business .good-wrap__con {
    width: 100%;
  }
}
body.page-service .business .good-wrap__con__txt {
  font-size: clamp(0.81rem, 0.79rem + 0.1vw, 0.88rem);
  font-weight: 400;
  color: #FFFFFF;
  margin-bottom: 2.5em;
}
body.page-service .business .good-wrap__con__txt.__black {
  color: #222222;
}
body.page-service .business .good-wrap__con__desc {
  background-color: #FFFFFF;
  padding: 1.3em 1em;
  border-radius: 1.5em;
  background-color: #F5F5F5;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  body.page-service .business .good-wrap__con__desc {
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  body.page-service .business .good-wrap__con__desc {
    width: 100%;
  }
}
body.page-service .business .good-wrap__con__desc__ttl {
  background-color: #B60120;
  display: inline-block;
  font-size: clamp(0.9rem, 0.871rem + 0.14vw, 1rem);
  color: #FFFFFF;
  padding: 0.5em 1.8em;
  border-radius: 9999px;
  margin-bottom: 1.7em;
  line-height: 1.2;
  font-weight: 500;
}
body.page-service .business .good-wrap__con__desc__ttl.__black {
  background-color: #222222;
}
body.page-service .business .good-wrap__con__desc__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.8em;
}
body.page-service .business .good-wrap__con__desc__block__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 230px;
  width: 100%;
  aspect-ratio: 1.71/1;
  border-radius: 0.9em;
  overflow: hidden;
}
body.page-service .business .good-wrap__con__desc__block__image img {
  -o-object-fit: contain;
  object-fit: contain;
  padding: 0.7em 0;
  background-color: #FFFFFF;
}
body.page-service .business .good-wrap__image {
  max-width: 400px;
  width: 100%;
  border-radius: 50%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
@media screen and (max-width: 480px) {
  body.page-service .business .good-wrap__image {
    width: 70%;
  }
}

body.page-company .top-wrap__image .parallax {
  background-image: url("../img/company-top.webp");
}
body.page-company .about-wrap__con {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: 2.8rem;
}
@media screen and (max-width: 768px) {
  body.page-company .about-wrap__con {
    -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;
    gap: 1.3rem;
  }
}
body.page-company .about-wrap__con__image {
  width: 37.4%;
  aspect-ratio: 1.11/1;
}
@media screen and (max-width: 768px) {
  body.page-company .about-wrap__con__image {
    width: 85%;
  }
}
body.page-company .about-wrap__con__txt {
  width: 57.2%;
  font-size: clamp(0.81rem, 0.79rem + 0.1vw, 0.88rem);
  font-weight: 400;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  body.page-company .about-wrap__con__txt {
    width: 100%;
  }
}
body.page-company .business {
  background-color: #F5F5F5;
}
body.page-company .business-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 1em;
}
@media screen and (max-width: 1024px) {
  body.page-company .business-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 3.5em;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
body.page-company .business-wrap__con {
  max-width: 350px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  body.page-company .business-wrap__con {
    max-width: none;
  }
}
body.page-company .business-wrap__con__txt {
  font-size: clamp(0.81rem, 0.79rem + 0.1vw, 0.88rem);
  font-weight: 400;
  margin-bottom: 2.25em;
}
body.page-company .business-wrap__con .c-btn {
  margin-left: 0;
}
@media screen and (max-width: 1024px) {
  body.page-company .business-wrap__con .c-btn {
    margin-left: auto;
  }
}
@media screen and (max-width: 480px) {
  body.page-company .business-wrap__con .c-btn {
    margin: 0 auto;
  }
}
body.page-company .business-wrap__list {
  width: 67%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: 6%;
  -moz-column-gap: 6%;
  column-gap: 6%;
  row-gap: 2.8em;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  body.page-company .business-wrap__list {
    width: 80%;
    -webkit-column-gap: 8%;
    -moz-column-gap: 8%;
    column-gap: 8%;
  }
}
@media screen and (max-width: 768px) {
  body.page-company .business-wrap__list {
    width: 90%;
  }
}
@media screen and (max-width: 480px) {
  body.page-company .business-wrap__list {
    -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;
  }
}
body.page-company .business-wrap__list__item {
  width: 45.4%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.2;
}
@media screen and (max-width: 480px) {
  body.page-company .business-wrap__list__item {
    width: 85%;
  }
}
body.page-company .business-wrap__list__item a {
  width: 100%;
  display: inline-block;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
body.page-company .business-wrap__list__item a:hover,
body.page-company .business-wrap__list__item a.hover {
  opacity: 1;
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
}
body.page-company .business-wrap__list__item a:hover .business-wrap__list__item__image::before,
body.page-company .business-wrap__list__item a.hover .business-wrap__list__item__image::before {
  background-color: rgba(0, 0, 0, 0.08);
}
body.page-company .business-wrap__list__item a:hover .business-wrap__list__item__image__txt::after,
body.page-company .business-wrap__list__item a.hover .business-wrap__list__item__image__txt::after {
  background-color: #B60120;
  border-color: #B60120;
  color: #FFFFFF;
  -webkit-transform: translateY(-50%) translateX(6px);
  -ms-transform: translateY(-50%) translateX(6px);
  transform: translateY(-50%) translateX(6px);
}
body.page-company .business-wrap__list__item__image {
  position: relative;
  z-index: 0;
  width: 100%;
  aspect-ratio: 1.29/1;
  padding: 4.3%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  border-radius: 5.4%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url("../img/business-1.jpg");
}
body.page-company .business-wrap__list__item__image.__wellness {
  background-image: url("../img/business-wellness.jpg");
}
body.page-company .business-wrap__list__item__image.__MFC {
  background-image: url("../img/business-MFC.jpg");
}
body.page-company .business-wrap__list__item__image.__TFW {
  background-image: url("../img/business-TFW.jpg");
}
body.page-company .business-wrap__list__item__image.__support {
  background-image: url("../img/business-support.jpg");
}
body.page-company .business-wrap__list__item__image.__good {
  background-image: url("../img/business-good.jpg");
}
body.page-company .business-wrap__list__item__image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 1.25em;
  z-index: 1;
  -webkit-transition: background-color 0.5s;
  -o-transition: background-color 0.5s;
  transition: background-color 0.5s;
  overflow: hidden;
}
body.page-company .business-wrap__list__item__image__number {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 2;
  display: inline-block;
  color: #B60120;
  font-size: clamp(1.7rem, 1.614rem + 0.43vw, 2rem);
  font-weight: bold;
  background-color: #FFFFFF;
  line-height: 1;
  width: clamp(2.3rem, 2.1rem + 1vw, 3rem);
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
body.page-company .business-wrap__list__item__image__txt {
  width: 100%;
  text-align: right;
  position: relative;
  z-index: 2;
  font-size: clamp(0.9rem, 0.871rem + 0.14vw, 1rem);
  font-weight: 500;
  color: #FFFFFF;
  padding-right: 2.2em;
}
body.page-company .business-wrap__list__item__image__txt::after {
  content: "→";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(0);
  -ms-transform: translateY(-50%) translateX(0);
  transform: translateY(-50%) translateX(0);
  width: clamp(1.2rem, 1.114rem + 0.43vw, 1.5rem);
  height: clamp(1.2rem, 1.114rem + 0.43vw, 1.5rem);
  border-radius: 50%;
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
  font-size: clamp(0.9rem, 0.871rem + 0.14vw, 1rem);
  font-weight: bold;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
body.page-company .philosophy-wrap__con {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 2.5em;
}
@media screen and (max-width: 768px) {
  body.page-company .philosophy-wrap__con {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    margin-top: 0;
  }
}
body.page-company .philosophy-wrap__con__list {
  width: 50%;
}
@media screen and (max-width: 768px) {
  body.page-company .philosophy-wrap__con__list {
    width: 80%;
  }
}
@media screen and (max-width: 480px) {
  body.page-company .philosophy-wrap__con__list {
    width: 100%;
  }
}
body.page-company .philosophy-wrap__con__list__item {
  background-color: #F5F5F5;
  padding: 1.4em 2.4em;
  border-radius: 9999px;
  margin-bottom: 2.5em;
}
body.page-company .philosophy-wrap__con__list__item:last-child {
  margin-bottom: 0;
}
body.page-company .philosophy-wrap__con__list__item__ttl {
  font-size: clamp(1.188rem, 0.843rem + 1.15vw, 1.875rem);
  font-weight: 800;
  line-height: 1;
  padding-bottom: 0.4em;
  border-bottom: 1px solid #CCCCCC;
  font-family: "Work Sans", sans-serif;
}
body.page-company .philosophy-wrap__con__list__item__txt {
  font-size: clamp(0.81rem, 0.79rem + 0.1vw, 0.88rem);
  font-weight: 400;
  padding-top: 0.4em;
  font-weight: 500;
  line-height: 1.5;
}
body.page-company .philosophy-wrap__con__image {
  width: 45%;
  aspect-ratio: 56/51;
}
@media screen and (max-width: 768px) {
  body.page-company .philosophy-wrap__con__image {
    width: 60%;
  }
}
@media screen and (max-width: 480px) {
  body.page-company .philosophy-wrap__con__image {
    width: 100%;
  }
}
body.page-company .greeting {
  background-color: #F5F5F5;
}
body.page-company .greeting-wrap__con {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  body.page-company .greeting-wrap__con {
    -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;
    gap: 2rem;
  }
}
body.page-company .greeting-wrap__con__block {
  width: 37.1%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  body.page-company .greeting-wrap__con__block {
    width: 80%;
  }
}
@media screen and (max-width: 480px) {
  body.page-company .greeting-wrap__con__block {
    width: 100%;
  }
}
body.page-company .greeting-wrap__con__block__image {
  aspect-ratio: 1/1;
}
body.page-company .greeting-wrap__con__block__name {
  display: inline-block;
  font-size: clamp(0.81rem, 0.79rem + 0.1vw, 0.88rem);
  font-weight: 400;
  margin-top: 0.8rem;
  line-height: 1.5;
}
body.page-company .greeting-wrap__con__block__name span {
  display: inline-block;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.188rem, 1.08rem + 0.54vw, 1.563rem);
  font-weight: bold;
  margin-left: 0.56rem;
}
body.page-company .greeting-wrap__con__txt {
  width: 55.5%;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  body.page-company .greeting-wrap__con__txt {
    width: 100%;
  }
}
body.page-company .greeting-wrap__con__txt p {
  font-size: clamp(0.81rem, 0.79rem + 0.1vw, 0.88rem);
  font-weight: 400;
}
body.page-company .outline-wrap__list {
  width: 77.8%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  body.page-company .outline-wrap__list {
    width: 100%;
  }
}
body.page-company .outline-wrap__list li {
  border-bottom: 1px solid #CCCCCC;
}
body.page-company .outline-wrap__list li:last-child {
  border-bottom: none;
}
body.page-company .outline-wrap__list dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1.25rem 0.5rem;
}
@media screen and (max-width: 480px) {
  body.page-company .outline-wrap__list dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.3rem;
    padding: 0.8rem 0.5rem;
  }
}
body.page-company .outline-wrap__list dt {
  width: 25%;
  font-size: clamp(0.9rem, 0.871rem + 0.14vw, 1rem);
  font-weight: 500;
}
@media screen and (max-width: 480px) {
  body.page-company .outline-wrap__list dt {
    width: 100%;
  }
}
body.page-company .outline-wrap__list dd {
  width: 75%;
  font-size: clamp(0.81rem, 0.79rem + 0.1vw, 0.88rem);
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  word-break: keep-all;
}
body.page-company .outline-wrap__list dd span {
  display: block;
}
body.page-company .outline-wrap__list dd a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: none;
  font-size: clamp(0.81rem, 0.79rem + 0.1vw, 0.88rem);
  font-weight: 400;
}
body.page-company .outline-wrap__list dd a span {
  border-bottom: 1px solid #222222;
}
body.page-company .outline-wrap__list dd a i {
  margin-left: 0.5rem;
  font-size: 0.7rem;
}
@media screen and (max-width: 480px) {
  body.page-company .outline-wrap__list dd a {
    width: 100%;
  }
}
body.page-company .history {
  background-color: #F5F5F5;
}
body.page-company .history-wrap__list {
  width: 77.8%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  body.page-company .history-wrap__list {
    width: 90%;
  }
}
@media screen and (max-width: 480px) {
  body.page-company .history-wrap__list {
    width: 100%;
  }
}
body.page-company .history-wrap__list__item {
  position: relative;
}
body.page-company .history-wrap__list__item .line {
  position: absolute;
  top: 100%;
  left: 6rem;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 3px;
  height: 0;
  background-color: #B60120;
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
}
body.page-company .history-wrap__list dl {
  background-color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1rem 1.125rem;
  border-radius: 9999px;
  margin-bottom: 1.25rem;
  gap: 2rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  body.page-company .history-wrap__list dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 0.4rem;
    padding: 0.8rem 1.8rem;
  }
}
li:last-of-type body.page-company .history-wrap__list dl {
  margin-bottom: 0;
}
@media screen and (max-width: 480px) {
  body.page-company .history-wrap__list dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
body.page-company .history-wrap__list dt {
  font-size: clamp(0.9rem, 0.871rem + 0.14vw, 1rem);
  font-weight: 500;
  background-color: #222222;
  color: #FFFFFF;
  padding: 0.6rem 1.6rem;
  text-align: center;
  border-radius: 9999px;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  body.page-company .history-wrap__list dt {
    padding: 0.2rem 1.3rem;
  }
}
body.page-company .history-wrap__list dd {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0.68rem 1.125rem;
  word-break: keep-all;
  font-size: clamp(0.81rem, 0.79rem + 0.1vw, 0.88rem);
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  body.page-company .history-wrap__list dd {
    padding: 0;
  }
}

body.page-entry .top-wrap__txt {
  width: 60%;
  margin: clamp(2.5rem, 2.143rem + 1.79vw, 3.75rem) auto 2.5rem;
  padding: 3.5%;
  text-align: center;
  border: 3px solid #B60120;
  border-radius: 15px;
  font-size: clamp(0.8rem, 0.875rem + 0.31vw, 1.1rem);
  line-height: 1.4;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  body.page-entry .top-wrap__txt {
    width: 70%;
  }
}
@media screen and (max-width: 768px) {
  body.page-entry .top-wrap__txt {
    width: 92%;
  }
}
@media screen and (max-width: 480px) {
  body.page-entry .top-wrap__txt {
    width: 100%;
  }
}
body.page-entry .Form {
  background-color: #F5F5F5;
  padding: clamp(2.5rem, 1.161rem + 3.57vw, 4.375rem) 0;
}
@media screen and (max-width: 480px) {
  body.page-entry .Form {
    width: 100%;
  }
}
body.page-entry .Form-txt {
  text-align: center;
  padding-bottom: 1.8rem;
  font-size: clamp(0.875rem, 0.804rem + 0.36vw, 1.125rem);
  font-weight: 500;
  position: relative;
  max-width: 930px;
  width: 85%;
  margin: 0 auto 1.8rem;
  line-height: 1.5;
}
body.page-entry .Form-txt::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #CCCCCC;
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
body.page-entry .Form .Form-Item {
  max-width: 930px;
  width: 85%;
  margin: 0 auto;
}
body.page-entry .Form .Form-Item-Label {
  font-weight: bold;
  font-size: clamp(0.85rem, 0.759rem + 0.89vw, 1.15rem);
  margin-bottom: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
body.page-entry .Form .Form-Item-Label-Required {
  font-weight: 400;
  display: inline-block;
  background-color: #B60120;
  border-radius: 3px;
  color: #FFFFFF;
  font-size: clamp(0.6rem, 0.482rem + 0.71vw, 0.8rem);
  padding: 0 0.6%;
  margin-left: 2.5%;
  line-height: 1.3;
}
body.page-entry .Form .Form-Item-Label.isMsg {
  margin-bottom: 0.75rem;
}
body.page-entry .Form .Form-Item hr {
  margin: clamp(0.8rem, 1.071rem + 0.89vw, 1.4rem) 0;
}
body.page-entry .Form .Form-Item input {
  border: none;
  border-radius: 5px;
  padding: 1.1%;
  -webkit-transition: border-color 0.3s;
  -o-transition: border-color 0.3s;
  transition: border-color 0.3s;
  height: clamp(2.9rem, 2.527rem + 2.05vw, 3.5rem);
}
body.page-entry .Form .Form-Item input:focus {
  border-color: #333333;
  outline: none;
}
body.page-entry .Form .Form-Item input[type=text],
body.page-entry .Form .Form-Item input[type=email],
body.page-entry .Form .Form-Item input[type=tel] {
  width: 100%;
}
body.page-entry .Form .Form-Item input[type=number] {
  width: 32.3%;
  -moz-appearance: textfield;
}
body.page-entry .Form .Form-Item input[type=number]::-webkit-outer-spin-button,
body.page-entry .Form .Form-Item input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
@media screen and (max-width: 768px) {
  body.page-entry .Form .Form-Item input[type=number] {
    width: 40%;
  }
}
body.page-entry .Form .Form-Item textarea {
  width: 100%;
  border: none;
  border-radius: 5px;
  padding: 1.1%;
  -webkit-transition: border-color 0.3s;
  -o-transition: border-color 0.3s;
  transition: border-color 0.3s;
  height: clamp(9rem, 6.143rem + 14.29vw, 19rem);
}
body.page-entry .Form .Form-Item textarea:focus {
  border-color: #333333;
  outline: none;
}
body.page-entry .Form .Form-Item-Note {
  font-size: clamp(0.81rem, 0.79rem + 0.1vw, 0.88rem);
  font-weight: 400;
  margin-top: clamp(0.8rem, 0.6rem + 1vw, 1.5rem);
}
body.page-entry .Form .Form-Item .Form-CheckboxGroup .wpcf7-form-control {
  width: 80%;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 768px) {
  body.page-entry .Form .Form-Item .Form-CheckboxGroup .wpcf7-form-control {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }
}
body.page-entry .Form .Form-Item .Form-CheckboxGroup .wpcf7-form-control .wpcf7-list-item {
  margin: 0;
}
body.page-entry .Form .Form-Item .Form-CheckboxGroup .wpcf7-form-control label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: clamp(0.313rem, 0.134rem + 0.89vw, 0.938rem);
  white-space: nowrap;
  font-weight: 400;
  line-height: 1;
  font-size: clamp(0.81rem, 0.79rem + 0.1vw, 0.88rem);
  font-weight: 400;
}
body.page-entry .Form .Form-Item .Form-CheckboxGroup .wpcf7-form-control input[type=checkbox] {
  width: clamp(0.625rem, 0.546rem + 0.39vw, 0.9rem);
  height: 3rem;
  margin: 0;
  padding: 0;
  accent-color: #878787;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
body.page-entry .Form .Form-Agreement {
  font-size: clamp(0.81rem, 0.79rem + 0.1vw, 0.88rem);
  font-weight: 500;
  text-align: center;
  margin-top: 5em;
}
body.page-entry .Form .Form-Agreement-Note {
  margin-bottom: 1em;
}
body.page-entry .Form .Form-Agreement label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0.4em;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
body.page-entry .Form .Form-Agreement input[type=checkbox][name="privacy-agree[]"] {
  width: clamp(0.625rem, 0.546rem + 0.39vw, 0.9rem);
  height: 3rem;
  accent-color: #878787;
  margin: 0;
  padding: 0;
}
body.page-entry .Form .Form-Agreement .wpcf7-list-item-label {
  display: none;
}
body.page-entry .Form .Form-Agreement a {
  text-decoration: underline;
  margin-left: 0.2rem;
  white-space: nowrap;
}
body.page-entry .Form .Form-Submit {
  text-align: center;
  max-width: 290px;
  width: 100%;
  margin-top: 3em;
}
@media screen and (max-width: 1024px) {
  body.page-entry .Form .Form-Submit {
    max-width: 250px;
  }
}
body.page-entry .Form .Form-Submit .submit-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}
body.page-entry .Form .Form-Submit .submit-wrap input.wpcf7-submit {
  font-family: "Zen Kaku Gothic New", sans-serif;
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  color: #FFFFFF;
  font-size: clamp(1.125rem, 1.089rem + 0.18vw, 1.25rem);
  font-weight: 500;
  background-color: #B60120;
  padding: 1rem 0;
  border-radius: 9999px;
  border: 2px solid #B60120;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  line-height: 1;
  margin-bottom: 0.5em;
}
body.page-entry .Form .Form-Submit .submit-wrap input.wpcf7-submit:hover {
  background-color: #FFFFFF;
  color: #B60120;
}
@media screen and (max-width: 1024px) {
  body.page-entry .Form .Form-Submit .submit-wrap input.wpcf7-submit {
    font-size: clamp(0.9rem, 0.798rem + 0.51vw, 1.125rem);
    padding: 0.9rem 0;
  }
}
body.page-entry .Form .Form-Submit .submit-wrap::after {
  content: "→";
  position: absolute;
  right: clamp(0.6rem, -0.385rem + 1.54vw, 1rem);
  top: 29%;
  -webkit-transform: translateY(-50%) translateX(0);
  -ms-transform: translateY(-50%) translateX(0);
  transform: translateY(-50%) translateX(0);
  color: #B60120;
  font-size: clamp(0.8rem, 0.595rem + 1.02vw, 1.25rem);
  background-color: #FFFFFF;
  width: clamp(1.1rem, 0.805rem + 1.48vw, 1.75rem);
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  line-height: 1;
}
body.page-entry .Form .Form-Submit .submit-wrap:hover::after {
  background-color: #B60120;
  color: #FFFFFF;
  -webkit-transform: translateY(-50%) translateX(6px);
  -ms-transform: translateY(-50%) translateX(6px);
  transform: translateY(-50%) translateX(6px);
}
body.page-entry .Form .wpcf7-not-valid-tip,
body.page-entry .Form .wpcf7-response-output {
  border: none;
}
body.page-entry .Form .wpcf7-response-output {
  text-align: center;
}

body.page-benefits .top-wrap__image .parallax {
  background-image: url("../img/benefits-top.webp");
}
body.page-benefits .travel-wrap__con {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8%;
}
@media screen and (max-width: 1024px) {
  body.page-benefits .travel-wrap__con {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 2rem;
  }
}
body.page-benefits .travel-wrap__con__images {
  width: 41%;
  -webkit-column-gap: 1.5rem;
  -moz-column-gap: 1.5rem;
  column-gap: 1.5rem;
  row-gap: 1.3rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1.5rem 1fr;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 1024px) {
  body.page-benefits .travel-wrap__con__images {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  body.page-benefits .travel-wrap__con__images {
    width: 90%;
  }
}
@media screen and (max-width: 480px) {
  body.page-benefits .travel-wrap__con__images {
    width: 100%;
  }
}
body.page-benefits .travel-wrap__con__images__image {
  border-radius: 15px;
  overflow: hidden;
}
body.page-benefits .travel-wrap__con__txt {
  width: 51%;
  font-size: clamp(0.81rem, 0.79rem + 0.1vw, 0.88rem);
  font-weight: 400;
  line-height: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (max-width: 1024px) {
  body.page-benefits .travel-wrap__con__txt {
    width: 100%;
  }
}
body.page-benefits .travel-wrap__con__txt h3 {
  color: #B60120;
  display: block;
  margin-top: 1.75rem;
}
body.page-benefits .event-wrap.__inner {
  padding-top: 0;
}
body.page-benefits .event-wrap__con {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 9.5%;
}
@media screen and (max-width: 1024px) {
  body.page-benefits .event-wrap__con {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2rem;
  }
}
body.page-benefits .event-wrap__con__images {
  width: 48.5%;
  -webkit-column-gap: 1.5rem;
  -moz-column-gap: 1.5rem;
  column-gap: 1.5rem;
  row-gap: 1.3rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1.5rem 1fr;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 1024px) {
  body.page-benefits .event-wrap__con__images {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  body.page-benefits .event-wrap__con__images {
    width: 90%;
  }
}
@media screen and (max-width: 480px) {
  body.page-benefits .event-wrap__con__images {
    width: 100%;
  }
}
body.page-benefits .event-wrap__con__images__image {
  border-radius: 15px;
  overflow: hidden;
}
body.page-benefits .event-wrap__con__txt {
  width: 42%;
  font-size: clamp(0.81rem, 0.79rem + 0.1vw, 0.88rem);
  font-weight: 400;
  line-height: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (max-width: 1024px) {
  body.page-benefits .event-wrap__con__txt {
    width: 100%;
  }
}
body.page-benefits .event-wrap__con__txt h3 {
  color: #B60120;
  display: block;
  margin-top: 1.75rem;
}
body.page-benefits .event-wrap__con__txt p span {
  display: block;
  margin-top: 1.75rem;
}
body.page-benefits .personal-wrap {
  font-size: clamp(0.81rem, 0.79rem + 0.1vw, 0.88rem);
  font-weight: 400;
}
body.page-benefits .personal-wrap.__inner {
  padding-top: 0;
}
body.page-benefits .personal-wrap__list {
  margin-top: 3.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2rem;
}
body.page-benefits .personal-wrap__list__item {
  background-color: #F5F5F5;
  border-radius: 25px;
  overflow: hidden;
  padding: clamp(1.25rem, 0.929rem + 1.61vw, 2.375rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 6.4%;
}
@media screen and (max-width: 768px) {
  body.page-benefits .personal-wrap__list__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2rem;
  }
}
body.page-benefits .personal-wrap__list__item:nth-of-type(2) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  body.page-benefits .personal-wrap__list__item:nth-of-type(2) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2rem;
  }
}
body.page-benefits .personal-wrap__list__item:nth-of-type(2) .personal-wrap__list__item__con__txt::after {
  display: none;
}
body.page-benefits .personal-wrap__list__item__image {
  border-radius: 15px;
  overflow: hidden;
  width: 43%;
}
@media screen and (max-width: 768px) {
  body.page-benefits .personal-wrap__list__item__image {
    width: 90%;
  }
}
@media screen and (max-width: 480px) {
  body.page-benefits .personal-wrap__list__item__image {
    width: 100%;
  }
}
body.page-benefits .personal-wrap__list__item__con {
  width: 52%;
}
@media screen and (max-width: 768px) {
  body.page-benefits .personal-wrap__list__item__con {
    width: 90%;
  }
}
@media screen and (max-width: 480px) {
  body.page-benefits .personal-wrap__list__item__con {
    width: 100%;
  }
}
body.page-benefits .personal-wrap__list__item__con__ttl {
  color: #B60120;
  font-size: clamp(1.563rem, 1.473rem + 0.45vw, 1.875rem);
  padding-bottom: 0.8rem;
  margin-bottom: 0.8rem;
  position: relative;
}
body.page-benefits .personal-wrap__list__item__con__ttl::before {
  content: "";
  width: 20.6rem;
  height: 1px;
  background-color: #CCCCCC;
  position: absolute;
  bottom: 0;
  left: 0;
}
body.page-benefits .personal-wrap__list__item__con__txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.9rem;
}
body.page-benefits .personal-wrap__list__item__con__txt p {
  position: relative;
  padding-left: clamp(1.5rem, 1.243rem + 1.29vw, 2.4rem);
  font-size: clamp(0.81rem, 0.79rem + 0.1vw, 0.88rem);
  font-weight: 400;
}
body.page-benefits .personal-wrap__list__item__con__txt p::before {
  content: "\f5a2";
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  font-size: clamp(0.938rem, 0.759rem + 0.89vw, 1.563rem);
  color: #B60120;
  display: inline-block;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
}
body.page-benefits .others-wrap.__inner {
  padding-top: 0;
}
body.page-benefits .others-wrap__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  gap: 3%;
}
body.page-benefits .others-wrap__list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #F5F5F5;
  font-size: clamp(0.81rem, 0.79rem + 0.1vw, 0.88rem);
  font-weight: 400;
  padding: 0.8% 4%;
  border-radius: 9999px;
  font-weight: 500;
}

body.page-recruit .top-wrap__image .parallax {
  background-image: url("../img/recruit-top.webp");
}
body.page-recruit .concept {
  background-color: #F5F5F5;
}
body.page-recruit .concept-wrap .c-ttl2 {
  padding-bottom: 1rem;
}
body.page-recruit .concept-wrap__con {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 3.9%;
}
@media screen and (max-width: 1024px) {
  body.page-recruit .concept-wrap__con {
    -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;
    gap: 2rem;
  }
}
body.page-recruit .concept-wrap__con__ttl {
  position: relative;
  padding-bottom: clamp(2rem, 1.571rem + 2.14vw, 3.5rem);
  width: 39%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  body.page-recruit .concept-wrap__con__ttl {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
body.page-recruit .concept-wrap__con__ttl__main {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #FFFFFF;
  border-radius: 25px;
  color: #B60120;
  font-size: clamp(1.4rem, 1.086rem + 1.57vw, 2rem);
  font-weight: 600;
  line-height: 1.625;
  padding: 6%;
  white-space: nowrap;
  position: relative;
}
body.page-recruit .concept-wrap__con__ttl__main::before {
  content: "“";
  font-size: clamp(3.125rem, 2.679rem + 2.23vw, 4.68rem);
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  position: absolute;
  line-height: 1;
  top: -0.3em;
  left: -0.1em;
}
body.page-recruit .concept-wrap__con__ttl__main::after {
  content: "”";
  font-size: clamp(3.125rem, 2.679rem + 2.23vw, 4.68rem);
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1;
  position: absolute;
  bottom: -0.7em;
  right: -0.1em;
}
body.page-recruit .concept-wrap__con__ttl__sub {
  font-size: clamp(1rem, 0.84rem + 0.8vw, 1.5rem);
  font-weight: 500;
  line-height: 1.2;
  color: #222222;
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
}
body.page-recruit .concept-wrap__con__txt {
  width: 64%;
  font-size: clamp(0.81rem, 0.79rem + 0.1vw, 0.88rem);
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  body.page-recruit .concept-wrap__con__txt {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  body.page-recruit .concept-wrap__con__txt {
    width: 100%;
  }
}
body.page-recruit .data {
  background-color: #B60120;
}
body.page-recruit .data .age-ratio-image {
  margin: auto 0;
}
body.page-recruit .data .shop-wrap {
  margin: auto 0;
}
body.page-recruit .data .shop-labels {
  text-align: center;
  font-weight: bold;
  position: relative;
}
body.page-recruit .data .shop-labels .shop-values {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 1.8em;
}
body.page-recruit .data .shop-labels .shop-values .shop-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
body.page-recruit .data .shop-labels .shop-values .shop-block .shop-name {
  font-size: 0.7em;
  line-height: 1;
  color: #878787;
  white-space: nowrap;
  display: inline-block;
  margin-bottom: 0.1em;
}
body.page-recruit .data .shop-labels .shop-values .shop-block .number {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-size: clamp(3.1rem, 2.957rem + 0.71vw, 3.6rem);
  font-weight: bold;
  color: #B60120;
  line-height: 1;
  white-space: nowrap;
}
body.page-recruit .data .shop-labels .shop-values .shop-block .unit {
  font-size: 0.9em;
  margin-top: 0.1em;
  line-height: 1;
}
body.page-recruit .data .shop-labels .shop-values .colon {
  font-size: clamp(1.1rem, 0.529rem + 2.86vw, 3.1rem);
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  margin: auto 0;
}
body.page-recruit .data-wrap .c-ttl1 span::before {
  background-color: #FFFFFF;
}
body.page-recruit .data-wrap__txt {
  color: #FFFFFF;
  font-size: clamp(0.81rem, 0.79rem + 0.1vw, 0.88rem);
  font-weight: 400;
  margin-bottom: 4.5%;
}
body.page-recruit .data-wrap__list {
  justify-items: center;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 5% 1fr 5% 1fr;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 5%;
  -moz-column-gap: 5%;
  column-gap: 5%;
  row-gap: clamp(1.25rem, 0.393rem + 4.29vw, 4.25rem);
}
@media screen and (max-width: 1024px) {
  body.page-recruit .data-wrap__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  body.page-recruit .data-wrap__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
body.page-recruit .data-wrap__list__item {
  background-color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 1.5em;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1em;
  position: relative;
  z-index: 0;
  max-width: 356px;
  width: 100%;
}
body.page-recruit .data-wrap__list__item__ttl {
  font-size: clamp(0.9rem, 0.786rem + 0.57vw, 1.3rem);
  text-align: center;
  font-weight: bold;
  display: inline-block;
  padding: 2.2% 9%;
  border-radius: 9999px;
  margin-bottom: clamp(0.5rem, 0.357rem + 0.71vw, 1rem);
  line-height: 1.2;
}
body.page-recruit .data-wrap__list__item__con {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0.5em;
}
body.page-recruit .data-wrap__list__item__con.__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  gap: 0;
}
body.page-recruit .data-wrap__list__item__con.__column img {
  -o-object-fit: contain;
  object-fit: contain;
}
body.page-recruit .data-wrap__list__item__con.__column p {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: clamp(1rem, 0.857rem + 0.71vw, 1.5rem);
  font-weight: 500;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  margin-bottom: 0.3em;
}
body.page-recruit .data-wrap__list__item__con.__column p strong {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  color: #B60120;
  font-size: clamp(2.5rem, 2.357rem + 0.71vw, 3rem);
  white-space: nowrap;
  margin-right: 0.05em;
}
body.page-recruit .data-wrap__list__item__con.__column small {
  font-size: clamp(0.8rem, 0.771rem + 0.14vw, 0.9rem);
  line-height: 1;
  display: block;
  width: 100%;
  text-align: end;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
body.page-recruit .data-wrap__list__item__con img {
  -o-object-fit: contain;
  object-fit: contain;
}
body.page-recruit .data-wrap__list__item__con.__gender-ratio {
  gap: 0;
}
body.page-recruit .data-wrap__list__item__con .users-icon {
  width: 28%;
}
body.page-recruit .data-wrap__list__item__con .user-tie-icon {
  width: 25%;
}
body.page-recruit .data-wrap__list__item__con .calendar-days-icon {
  width: 28%;
}
body.page-recruit .data-wrap__list__item__con .vacation-icon {
  width: 28%;
}
body.page-recruit .data-wrap__list__item__con .clock-icon {
  width: 25%;
}
body.page-recruit .data-wrap__list__item__con .person-breastfeeding-icon {
  width: 38%;
}
body.page-recruit .data-wrap__list__item__con .graduation-cap-icon {
  width: 40%;
}
body.page-recruit .data-wrap__list__item__con .woman-icon {
  width: 23%;
}
body.page-recruit .data-wrap__list__item__con p {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: clamp(1rem, 0.857rem + 0.71vw, 1.5rem);
  font-weight: 500;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}
body.page-recruit .data-wrap__list__item__con p strong {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  color: #B60120;
  font-size: clamp(2.5rem, 2.357rem + 0.71vw, 3rem);
  white-space: nowrap;
  margin-right: 0.05em;
}
body.page-recruit .data-wrap__list__item__con p small {
  font-size: clamp(0.8rem, 0.771rem + 0.14vw, 0.9rem);
  line-height: 1.1;
}
body.page-recruit .data-wrap__list__item__con .desc {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(0.8rem, 0.771rem + 0.14vw, 0.9rem);
  font-weight: 500;
  line-height: 1.1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  white-space: nowrap;
}
body.page-recruit .data-wrap__list__item__con .desc span {
  font-size: clamp(1rem, 0.857rem + 0.71vw, 1.5rem);
}
body.page-recruit .data-wrap__list__item .__gender-ratio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
body.page-recruit .data-wrap__list__item .__gender-ratio .gender-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
body.page-recruit .data-wrap__list__item .__gender-ratio .gender-block .label {
  font-size: clamp(0.9rem, 0.871rem + 0.14vw, 1rem);
  font-weight: 500;
  color: #878787;
  text-underline-offset: 0.2em;
  line-height: 1.2;
}
body.page-recruit .data-wrap__list__item .__gender-ratio .gender-block .value {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-size: clamp(2.5rem, 2.357rem + 0.71vw, 3rem);
  font-weight: bold;
  color: #B60120;
  line-height: 1;
}
body.page-recruit .data-wrap__list__item .__gender-ratio .colon {
  font-size: clamp(2.5rem, 2.386rem + 0.57vw, 2.9rem);
  font-weight: 500;
  color: #222222;
  margin-top: auto;
  line-height: 1;
}
body.page-recruit .requirements-wrap__list {
  width: 77.8%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  body.page-recruit .requirements-wrap__list {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  body.page-recruit .requirements-wrap__list {
    width: 100%;
  }
}
body.page-recruit .requirements-wrap__list li {
  border-bottom: 1px solid #CCCCCC;
}
body.page-recruit .requirements-wrap__list li:last-child {
  border-bottom: none;
}
body.page-recruit .requirements-wrap__list dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1.25rem 0.18rem;
}
@media screen and (max-width: 480px) {
  body.page-recruit .requirements-wrap__list dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.8rem;
  }
}
body.page-recruit .requirements-wrap__list dt {
  width: 22%;
  font-size: clamp(0.9rem, 0.871rem + 0.14vw, 1rem);
  font-weight: 500;
}
@media screen and (max-width: 480px) {
  body.page-recruit .requirements-wrap__list dt {
    width: 100%;
  }
}
body.page-recruit .requirements-wrap__list dd {
  width: 78%;
  font-size: clamp(0.81rem, 0.79rem + 0.1vw, 0.88rem);
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  word-break: keep-all;
}
@media screen and (max-width: 480px) {
  body.page-recruit .requirements-wrap__list dd {
    width: 100%;
  }
}
body.page-recruit .requirements-wrap__list dd span {
  display: block;
}
body.page-recruit .requirements-wrap__list dd a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: none;
  font-size: 1.25rem;
}
body.page-recruit .requirements-wrap__list dd a span {
  border-bottom: 1px solid #222222;
}
body.page-recruit .requirements-wrap__list dd a i {
  margin-left: 1rem;
  font-size: 0.9rem;
}
@media screen and (max-width: 480px) {
  body.page-recruit .requirements-wrap__list dd a {
    width: 100%;
  }
}

body.page-privacy .top-wrap .u-ttl {
  font-size: clamp(2.3rem, 1.62rem + 3.4vw, 4.68rem);
  line-height: 1.3;
}
body.page-privacy .privacy-wrap__block {
  margin-bottom: 1.5rem;
}
body.page-privacy .privacy-wrap__block h2 {
  font-size: clamp(1.7rem, 1.186rem + 2.57vw, 3rem);
  text-align: center;
  font-weight: bold;
  line-height: 1.3;
}
body.page-privacy .privacy-wrap__block h3 {
  font-size: clamp(1.2rem, 1.114rem + 0.43vw, 1.5rem);
  font-weight: bold;
  line-height: 1.3;
}
body.page-privacy .privacy-wrap__block p {
  font-size: clamp(0.81rem, 0.79rem + 0.1vw, 0.88rem);
  font-weight: 400;
  font-weight: 400;
}

body.page-confirm .Form {
  padding: clamp(2.5rem, 1.161rem + 3.57vw, 4.375rem) 0;
}
@media screen and (max-width: 480px) {
  body.page-confirm .Form {
    width: 100%;
  }
}
body.page-confirm .Form-txt {
  text-align: center;
  padding-bottom: 1.5em;
  font-size: clamp(0.875rem, 0.804rem + 0.36vw, 1.125rem);
  font-weight: 500;
  position: relative;
  max-width: 930px;
  width: 85%;
  margin: 0 auto 0.5em;
  line-height: 1.5;
}
body.page-confirm .Form-txt::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #CCCCCC;
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
body.page-confirm .Form .Form-Item {
  max-width: 930px;
  width: 85%;
  margin: 0 auto;
}
body.page-confirm .Form .Form-Item-Label {
  font-weight: bold;
}
body.page-confirm .Form .Form-Item hr {
  margin: 0.5em 0;
}
body.page-confirm .Form .Form-Item input {
  border: none;
  border-radius: 5px;
  padding: 0.7em 1em;
}
body.page-confirm .Form .wpcf7-previous {
  background-color: #CCCCCC;
  color: #333333;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
body.page-confirm .Form .wpcf7-previous:hover {
  opacity: 0.6;
}
body.page-confirm .Form .Form-Submit {
  text-align: center;
  max-width: 290px;
  width: 100%;
  margin-top: 3em;
}
@media screen and (max-width: 1024px) {
  body.page-confirm .Form .Form-Submit {
    max-width: 250px;
  }
}
body.page-confirm .Form .Form-Submit .submit-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}
body.page-confirm .Form .Form-Submit .submit-wrap input.wpcf7-submit {
  font-family: "Zen Kaku Gothic New", sans-serif;
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  color: #FFFFFF;
  font-size: clamp(1.125rem, 1.089rem + 0.18vw, 1.25rem);
  font-weight: 500;
  background-color: #B60120;
  padding: 1rem 0;
  border-radius: 9999px;
  border: 2px solid #B60120;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  line-height: 1;
  margin-bottom: 0.5em;
}
body.page-confirm .Form .Form-Submit .submit-wrap input.wpcf7-submit:hover {
  background-color: #FFFFFF;
  color: #B60120;
}
@media screen and (max-width: 1024px) {
  body.page-confirm .Form .Form-Submit .submit-wrap input.wpcf7-submit {
    font-size: clamp(0.9rem, 0.798rem + 0.51vw, 1.125rem);
    padding: 0.9rem 0;
  }
}
body.page-confirm .Form .Form-Submit .submit-wrap::after {
  content: "→";
  position: absolute;
  right: clamp(0.6rem, -0.385rem + 1.54vw, 1rem);
  top: 29%;
  -webkit-transform: translateY(-50%) translateX(0);
  -ms-transform: translateY(-50%) translateX(0);
  transform: translateY(-50%) translateX(0);
  color: #B60120;
  font-size: clamp(0.8rem, 0.595rem + 1.02vw, 1.25rem);
  background-color: #FFFFFF;
  width: clamp(1.1rem, 0.805rem + 1.48vw, 1.75rem);
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  line-height: 1;
}
body.page-confirm .Form .Form-Submit .submit-wrap:hover::after {
  background-color: #B60120;
  color: #FFFFFF;
  -webkit-transform: translateY(-50%) translateX(6px);
  -ms-transform: translateY(-50%) translateX(6px);
  transform: translateY(-50%) translateX(6px);
}

body.post-type-archive-store .top-wrap__image .parallax {
  background-image: url("../img/store-top.webp");
}
body.post-type-archive-store .store-wrap__con {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 3rem;
  margin-top: 3rem;
}
@media screen and (max-width: 1024px) {
  body.post-type-archive-store .store-wrap__con {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
body.post-type-archive-store .store-wrap__con__area {
  width: 45%;
}
@media screen and (max-width: 1024px) {
  body.post-type-archive-store .store-wrap__con__area {
    width: 100%;
  }
}
body.post-type-archive-store .store-wrap__con__area__block {
  margin-bottom: 1.68rem;
}
body.post-type-archive-store .store-wrap__con__area__block:last-child {
  margin-bottom: 0;
}
body.post-type-archive-store .store-wrap__con__area__block__ttl {
  font-size: clamp(1.125rem, 1.036rem + 0.45vw, 1.438rem);
  font-weight: bold;
  position: relative;
  padding-bottom: 0.25em;
  margin-bottom: 0.6em;
  line-height: 1.5;
}
body.post-type-archive-store .store-wrap__con__area__block__ttl::before {
  content: "";
  width: 50%;
  height: 2px;
  border-radius: 10px;
  background-color: #CDCDCD;
  position: absolute;
  bottom: 0;
}
body.post-type-archive-store .store-wrap__con__area__block__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 11px;
}
body.post-type-archive-store .store-wrap__con__area__block__list__item a {
  line-height: 1.5;
  display: block;
  font-size: clamp(0.688rem, 0.616rem + 0.36vw, 0.938rem);
  font-weight: 400;
  color: #B60120;
  padding: 0.3rem 1.56rem;
  background-color: #FFFFFF;
  border: 1.5px solid #B60120;
  border-radius: 9999px;
}
body.post-type-archive-store .store-wrap__con__area__block__list__item a:hover,
body.post-type-archive-store .store-wrap__con__area__block__list__item a.hover {
  background-color: #B60120;
  color: #FFFFFF;
  opacity: 1;
}
body.post-type-archive-store .store-wrap__con__image {
  width: 55%;
}
@media screen and (max-width: 480px) {
  body.post-type-archive-store .store-wrap__con__image {
    width: 70%;
  }
}
body.post-type-archive-store .area-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.75rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  body.post-type-archive-store .area-wrap {
    -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;
  }
}
body.post-type-archive-store .area-wrap__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2.75rem;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media screen and (max-width: 768px) {
  body.post-type-archive-store .area-wrap__block {
    display: contents;
  }
}
body.post-type-archive-store .area-wrap__block__con {
  background-color: #F5F5F5;
  padding: 1.8em 7%;
  border-radius: 50px;
}
@media screen and (max-width: 768px) {
  body.post-type-archive-store .area-wrap__block__con {
    border-radius: 1.8em;
  }
  body.post-type-archive-store .area-wrap__block__con.con1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  body.post-type-archive-store .area-wrap__block__con.con2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  body.post-type-archive-store .area-wrap__block__con.con3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  body.post-type-archive-store .area-wrap__block__con.con4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
}
body.post-type-archive-store .area-wrap__block__con__ttl {
  font-size: clamp(1.125rem, 1.036rem + 0.45vw, 1.438rem);
  font-weight: bold;
  color: #B60120;
  display: inline-block;
}
body.post-type-archive-store .area-wrap__block__con__list__item__pre {
  line-height: 1.5;
  font-size: clamp(0.9rem, 0.871rem + 0.14vw, 1rem);
  font-weight: 500;
  padding-left: 1em;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  position: relative;
}
body.post-type-archive-store .area-wrap__block__con__list__item__pre::before {
  content: "";
  width: 0.5em;
  aspect-ratio: 1/1;
  background-color: #B60120;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
body.post-type-archive-store .area-wrap__block__con__list__item__city {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2% 1fr 2% 1fr;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 2%;
  -moz-column-gap: 2%;
  column-gap: 2%;
}
body.post-type-archive-store .area-wrap__block__con__list__item__city__detail {
  max-width: 160px;
  width: 100%;
  min-width: 0;
}
body.post-type-archive-store .area-wrap__block__con__list__item__city__detail:hover .image,
body.post-type-archive-store .area-wrap__block__con__list__item__city__detail.hover .image {
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
}
body.post-type-archive-store .area-wrap__block__con__list__item__city__detail .image {
  display: block;
  max-width: 160px;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 0 9.3% 9.3% 9.3%;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
body.post-type-archive-store .area-wrap__block__con__list__item__city__detail .image .tag {
  line-height: 1.5;
  position: absolute;
  display: inline-block;
  padding: 0 0.6rem;
  color: #FFFFFF;
  font-size: clamp(0.5rem, 0.429rem + 0.36vw, 0.75rem);
  font-weight: 500;
  z-index: 1;
}
body.post-type-archive-store .area-wrap__block__con__list__item__city__detail .image .tag.au {
  background-color: #FF6600;
}
body.post-type-archive-store .area-wrap__block__con__list__item__city__detail .image .tag.SoftBank {
  background-color: #999999;
}
body.post-type-archive-store .area-wrap__block__con__list__item__city__detail .image .tag.docomo {
  background-color: #FF0000;
}
body.post-type-archive-store .area-wrap__block__con__list__item__city__detail .image .tag.UQ {
  background-color: #FF1493;
}
body.post-type-archive-store .area-wrap__block__con__list__item__city__detail .image .tag.Y！mobile {
  background-color: #CD2323;
}
body.post-type-archive-store .area-wrap__block__con__list__item__city__detail .name {
  line-height: 1.2;
  width: 100%;
  display: inline-block;
  text-align: center;
  padding-top: 0.9rem;
  font-size: clamp(0.81rem, 0.79rem + 0.1vw, 0.88rem);
  font-weight: 400;
  padding: 1rem 0 1.5rem;
}

body.single-store .store {
  background-color: #B60120;
  padding: clamp(2.5rem, 1.786rem + 3.57vw, 5rem) 0;
}
body.single-store .store-wrap {
  background-color: #FFFFFF;
  border-radius: clamp(1.563rem, 1.116rem + 2.23vw, 3.125rem);
}
body.single-store .store-wrap.__inner {
  padding: 80px 0 5%;
}
@media screen and (max-width: 768px) {
  body.single-store .store-wrap.__inner {
    padding: 40px 0 5%;
  }
}
body.single-store .store-wrap__ttl {
  font-size: clamp(1.5rem, 1.271rem + 1.14vw, 2.3rem);
  font-weight: bold;
  text-align: center;
  margin-bottom: clamp(1.2rem, 0.829rem + 1.86vw, 2.5rem);
}
body.single-store .store-wrap__con {
  border-top: 3px solid #CCCCCC;
  padding: clamp(2rem, 1.607rem + 1.96vw, 3.375rem) 6%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6%;
}
@media screen and (max-width: 1024px) {
  body.single-store .store-wrap__con {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 2rem;
  }
}
body.single-store .store-wrap__con__image {
  width: 63.5%;
  aspect-ratio: 4/3;
  border-radius: 0 1.1em 1.1em 1.1em;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 1024px) {
  body.single-store .store-wrap__con__image {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  body.single-store .store-wrap__con__image {
    width: 100%;
  }
}
body.single-store .store-wrap__con__image .tag {
  position: absolute;
  display: inline-block;
  padding: 0 6.3%;
  color: #FFFFFF;
  font-size: clamp(0.938rem, 0.759rem + 0.89vw, 1.563rem);
  font-weight: 500;
  z-index: 1;
  line-height: 1.5;
}
body.single-store .store-wrap__con__image .tag.au {
  background-color: #FF6600;
}
body.single-store .store-wrap__con__image .tag.SoftBank {
  background-color: #999999;
}
body.single-store .store-wrap__con__image .tag.docomo {
  background-color: #FF0000;
}
body.single-store .store-wrap__con__image .tag.UQ {
  background-color: #FF1493;
}
body.single-store .store-wrap__con__image .tag.Y！mobile {
  background-color: #CD2323;
}
body.single-store .store-wrap__con__info {
  width: 78%;
}
@media screen and (max-width: 1024px) {
  body.single-store .store-wrap__con__info {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  body.single-store .store-wrap__con__info {
    width: 100%;
  }
}
body.single-store .store-wrap__con__info p {
  margin-bottom: 1.3rem;
  font-size: clamp(0.81rem, 0.79rem + 0.1vw, 0.88rem);
  font-weight: 400;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
body.single-store .store-wrap__con__info p .address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: 0.5rem;
}
body.single-store .store-wrap__con__info p .address__num {
  display: inline-block;
  margin-right: 0.5rem;
}
body.single-store .store-wrap__con__info p i {
  color: #B60120;
  display: inline-block;
  margin-right: 0.5rem;
}
body.single-store .store-wrap__con__info .c-btn {
  margin-left: 0;
  max-width: 330px;
  margin-top: 2rem;
}
@media screen and (max-width: 1024px) {
  body.single-store .store-wrap__con__info .c-btn {
    margin: 0 auto;
  }
}
body.single-store .store-wrap__map {
  width: 88%;
  margin: 0 auto;
  border-radius: 25px;
  overflow: hidden;
  aspect-ratio: 2.91/1;
}
@media screen and (max-width: 768px) {
  body.single-store .store-wrap__map {
    aspect-ratio: 1/0.5;
  }
}
@media screen and (max-width: 480px) {
  body.single-store .store-wrap__map {
    aspect-ratio: 1/1;
  }
}
body.single-store .store-wrap__map iframe {
  width: 100%;
  height: 100%;
}

body.post-type-archive-voice .top-wrap__image .parallax {
  background-image: url("../img/voice-top.webp");
}
body.post-type-archive-voice .voice {
  background-color: #B60120;
  margin-top: 5rem;
}
body.post-type-archive-voice .voice-wrap__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: clamp(1.875rem, 1.196rem + 3.39vw, 4.25rem);
}
body.post-type-archive-voice .voice-wrap__list__item__num {
  color: #FFFFFF;
  font-size: clamp(2.8rem, 2.314rem + 2.43vw, 4.5rem);
  font-weight: 600;
  line-height: 1;
}
body.post-type-archive-voice .voice-wrap__list__item:nth-child(even) .staff-card {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  padding: 1rem 3rem 0 0;
}
@media screen and (max-width: 1024px) {
  body.post-type-archive-voice .voice-wrap__list__item:nth-child(even) .staff-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 1.75rem 0 0;
  }
}
body.post-type-archive-voice .voice-wrap__list__item .staff-card {
  background-color: #FFFFFF;
  gap: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  border-radius: 25px;
  overflow: hidden;
  padding: 1rem 0 0 3rem;
}
@media screen and (max-width: 1024px) {
  body.post-type-archive-voice .voice-wrap__list__item .staff-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 1.75rem 0 0;
  }
}
body.post-type-archive-voice .voice-wrap__list__item .staff-card__con {
  max-width: 670px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  body.post-type-archive-voice .voice-wrap__list__item .staff-card__con {
    max-width: none;
    width: 90%;
  }
}
body.post-type-archive-voice .voice-wrap__list__item .staff-card__con__name {
  font-size: clamp(1.5rem, 1.071rem + 2.14vw, 3rem);
  padding-bottom: 0.5rem;
  margin-bottom: 1.3rem;
  position: relative;
  line-height: 1.5;
}
body.post-type-archive-voice .voice-wrap__list__item .staff-card__con__name::before {
  content: "";
  width: 52%;
  height: 2px;
  background-color: #CCCCCC;
  position: absolute;
  bottom: 0;
}
@media screen and (max-width: 480px) {
  body.post-type-archive-voice .voice-wrap__list__item .staff-card__con__name::before {
    width: 70%;
  }
}
body.post-type-archive-voice .voice-wrap__list__item .staff-card__con__tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 1rem;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
  row-gap: 1rem;
  margin-bottom: clamp(1rem, 0.643rem + 1.79vw, 2.25rem);
}
body.post-type-archive-voice .voice-wrap__list__item .staff-card__con__tag__item {
  font-size: clamp(0.8rem, 0.743rem + 0.29vw, 1rem);
  font-weight: 500;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0.3rem;
}
body.post-type-archive-voice .voice-wrap__list__item .staff-card__con__tag__item i {
  color: #B60120;
  display: inline-block;
}
body.post-type-archive-voice .voice-wrap__list__item .staff-card__con__ttl {
  font-size: clamp(1.2rem, 0.971rem + 1.14vw, 2rem);
  margin-bottom: clamp(0.8rem, 0.657rem + 0.71vw, 1.3rem);
}
body.post-type-archive-voice .voice-wrap__list__item .staff-card__con__txt {
  font-size: clamp(0.81rem, 0.79rem + 0.1vw, 0.88rem);
  font-weight: 400;
  margin-bottom: clamp(2rem, 1.714rem + 1.43vw, 3rem);
}
body.post-type-archive-voice .voice-wrap__list__item .staff-card__con .c-btn {
  max-width: 370px;
  margin-bottom: clamp(1rem, -0.429rem + 7.14vw, 6rem);
}
@media screen and (max-width: 768px) {
  body.post-type-archive-voice .voice-wrap__list__item .staff-card__con .c-btn {
    margin: 0 auto;
  }
}
body.post-type-archive-voice .voice-wrap__list__item .staff-card__image {
  max-width: 440px;
  width: 100%;
  aspect-ratio: 0.83/1;
}
@media screen and (max-width: 1024px) {
  body.post-type-archive-voice .voice-wrap__list__item .staff-card__image {
    width: 60%;
  }
}

body.single-voice .top-wrap {
  width: 100%;
  aspect-ratio: 180/83;
  position: relative;
  height: max(100vh - 80px, 500px);
  height: max(100dvh - 80px, 500px);
}
@media screen and (max-width: 480px) {
  body.single-voice .top-wrap {
    height: max(100vh - 50px, 500px);
    height: max(100dvh - 50px, 500px);
  }
}
body.single-voice .top-wrap__ttl {
  position: absolute;
  left: 4%;
  bottom: 4%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.875rem;
}
body.single-voice .top-wrap__ttl__ja {
  font-size: clamp(1.875rem, 1.268rem + 3.04vw, 4rem);
  color: #B60120;
  padding: 1.9% 5%;
  white-space: nowrap;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  overflow: hidden;
}
body.single-voice .top-wrap__ttl__ja::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #FFFFFF;
  opacity: 0;
  -webkit-animation: fadeInBg 0.3s ease-out 0.5s forwards;
  animation: fadeInBg 0.3s ease-out 0.5s forwards;
  z-index: 0;
}
body.single-voice .top-wrap__ttl__ja::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #B60120;
  -webkit-animation: wipeGrow 0.5s ease-out, wipeSlide 0.6s 0.6s ease-out;
  animation: wipeGrow 0.5s ease-out, wipeSlide 0.6s 0.6s ease-out;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  z-index: 1;
}
body.single-voice .top-wrap__ttl__ja span {
  position: relative;
  z-index: 2;
  opacity: 0;
  -webkit-animation: fadeInText 0.2s ease-out 0.6s forwards;
  animation: fadeInText 0.2s ease-out 0.6s forwards;
}
body.single-voice .top-wrap__ttl__en {
  font-size: clamp(0.938rem, 0.67rem + 1.34vw, 1.875rem);
  color: #B60120;
  padding: 1.96% 5%;
  white-space: nowrap;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  overflow: hidden;
}
body.single-voice .top-wrap__ttl__en::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #FFFFFF;
  opacity: 0;
  -webkit-animation: fadeInBg 0.3s ease-out 2s forwards;
  animation: fadeInBg 0.3s ease-out 2s forwards;
  z-index: 0;
}
body.single-voice .top-wrap__ttl__en::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #B60120;
  -webkit-animation: wipeGrow 0.5s ease-out 1.3s, wipeSlide 0.6s 2s ease-out;
  animation: wipeGrow 0.5s ease-out 1.3s, wipeSlide 0.6s 2s ease-out;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  z-index: 1;
}
body.single-voice .top-wrap__ttl__en span {
  position: relative;
  z-index: 2;
  opacity: 0;
  -webkit-animation: fadeInText 0.3s ease-out 2s forwards;
  animation: fadeInText 0.3s ease-out 2s forwards;
}
@-webkit-keyframes wipeGrow {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes wipeGrow {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes wipeSlide {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(150%);
    transform: translateX(150%);
  }
}
@keyframes wipeSlide {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(150%);
    transform: translateX(150%);
  }
}
@-webkit-keyframes fadeInText {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInText {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeInBg {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInBg {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
body.single-voice .top-wrap__tag {
  position: absolute;
  left: 4%;
  bottom: 4%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2%;
  width: 90%;
}
body.single-voice .top-wrap__tag__item {
  padding: 0.55% 2.4%;
  color: #FFFFFF;
  background-color: #B60120;
  font-size: clamp(0.7rem, 0.543rem + 0.79vw, 1.25rem);
  font-weight: 500;
  border-radius: 9999px;
}
body.single-voice .interview-wrap__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: clamp(2.5rem, 2.054rem + 2.23vw, 4.063rem);
}
body.single-voice .interview-wrap__list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  body.single-voice .interview-wrap__list__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
body.single-voice .interview-wrap__list__item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  body.single-voice .interview-wrap__list__item:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
body.single-voice .interview-wrap__list__item__con {
  width: 55%;
}
@media screen and (max-width: 768px) {
  body.single-voice .interview-wrap__list__item__con {
    width: 80%;
  }
}
@media screen and (max-width: 480px) {
  body.single-voice .interview-wrap__list__item__con {
    width: 100%;
  }
}
body.single-voice .interview-wrap__list__item__con__ttl {
  font-size: clamp(1.1rem, 0.9rem + 1vw, 1.8rem);
  line-height: 1.3;
  color: #B60120;
  margin-bottom: 0.8rem;
}
body.single-voice .interview-wrap__list__item__con__txt {
  font-size: clamp(0.81rem, 0.79rem + 0.1vw, 0.88rem);
  font-weight: 400;
  line-height: 2;
}
body.single-voice .interview-wrap__list__item__image {
  width: 41.7%;
  aspect-ratio: 4/3;
  border-radius: 25px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  body.single-voice .interview-wrap__list__item__image {
    width: 80%;
  }
}
@media screen and (max-width: 480px) {
  body.single-voice .interview-wrap__list__item__image {
    width: 100%;
  }
}
body.single-voice .voice-wrap__txt {
  font-size: clamp(0.81rem, 0.79rem + 0.1vw, 0.88rem);
  font-weight: 400;
  margin-bottom: 4.5%;
}
body.single-voice .voice {
  background-color: #F5F5F5;
}
body.single-voice .voice-wrap__ttl {
  font-size: clamp(1.3rem, 1.1rem + 1vw, 2rem);
  color: #B60120;
  text-align: center;
  margin-bottom: clamp(2.188rem, 1.795rem + 1.96vw, 3.563rem);
}
body.single-voice .voice-wrap .slider2 .slide2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
body.single-voice .voice-wrap .slider2 .slide2 a {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 3rem;
  position: relative;
}
@media screen and (max-width: 1024px) {
  body.single-voice .voice-wrap .slider2 .slide2 a {
    margin: 0 0.6rem;
  }
}
body.single-voice .voice-wrap .slider2 .slide2 a .slide-list__item__image {
  max-width: 318px;
  width: 100%;
  aspect-ratio: 0.82/1;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  body.single-voice .voice-wrap .slider2 .slide2 a .slide-list__item__image {
    max-width: 412px;
  }
}
body.single-voice .voice-wrap .slider2 .slide2 a .slide-list__item__image img {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
body.single-voice .voice-wrap .slider2 .slide2 a .slide-list__item__image:hover img,
body.single-voice .voice-wrap .slider2 .slide2 a .slide-list__item__image.hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
body.single-voice .voice-wrap .slider2 .slide2 a p {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: clamp(0.8rem, 0.714rem + 0.43vw, 1.1rem);
  font-weight: 500;
  color: #FFFFFF;
  background-color: #B60120;
  display: inline-block;
  padding: 2.2% 18% 2.2% 6.2%;
  -webkit-clip-path: polygon(0 0, calc(100% - 1rem) 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, calc(100% - 1rem) 0, 100% 100%, 0 100%);
  line-height: 1.5;
}
body.single-voice .voice-wrap .slider2 .slide2 a p span {
  font-size: clamp(0.7rem, 0.657rem + 0.21vw, 0.85rem);
  font-weight: 400;
  display: inline-block;
  margin-left: 0.9rem;
}
body.single-voice .voice-wrap .slider2 .slick-dots {
  text-align: center;
  margin-top: 3.75%;
  margin-bottom: 5.6%;
}
body.single-voice .voice-wrap .slider2 .slick-dots li {
  display: inline-block;
  margin: 0 5px;
}
body.single-voice .voice-wrap .slider2 .slick-dots li button {
  color: transparent;
  background: #CDCDCD;
  border-radius: 50%;
  outline: none;
  display: block;
  border: none;
  padding: 2.5px;
  width: 8px;
  height: 8px;
}
@media screen and (max-width: 768px) {
  body.single-voice .voice-wrap .slider2 .slick-dots li button {
    width: 5px;
    height: 5px;
  }
}
body.single-voice .voice-wrap .slider2 .slick-dots li.slick-active button {
  background-color: #B60120;
}
body.single-voice .voice-wrap .slider2 .slick-prev,
body.single-voice .voice-wrap .slider2 .slick-next {
  font-size: clamp(1.1rem, 0.879rem + 1.11vw, 1.875rem);
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
  position: absolute;
  bottom: -20px;
  cursor: pointer;
  outline: none;
  width: clamp(1.875rem, 0.982rem + 4.46vw, 3.125rem);
  height: clamp(1.875rem, 0.982rem + 4.46vw, 3.125rem);
  background-color: #FFFFFF;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 2;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  line-height: 1;
}
@media screen and (max-width: 480px) {
  body.single-voice .voice-wrap .slider2 .slick-prev,
  body.single-voice .voice-wrap .slider2 .slick-next {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
body.single-voice .voice-wrap .slider2 .slick-prev:hover,
body.single-voice .voice-wrap .slider2 .slick-prev.hover,
body.single-voice .voice-wrap .slider2 .slick-next:hover,
body.single-voice .voice-wrap .slider2 .slick-next.hover {
  background-color: #B60120;
  color: #FFFFFF;
}
body.single-voice .voice-wrap .slider2 .slick-prev {
  right: 5.3rem;
}
@media screen and (max-width: 480px) {
  body.single-voice .voice-wrap .slider2 .slick-prev {
    left: 0;
  }
}
body.single-voice .voice-wrap .slider2 .slick-next {
  right: 0;
}
@media screen and (max-width: 480px) {
  body.single-voice .voice-wrap .slider2 .slick-next {
    right: 0;
  }
}
body.single-voice .voice-wrap .c-btn {
  margin: 2.5rem auto 0;
}

body.single-post .news {
  background-color: #B60120;
  padding: clamp(2.5rem, 1.786rem + 3.57vw, 5rem) 0;
}
body.single-post .news-wrap {
  background-color: #FFFFFF;
  border-radius: clamp(1.563rem, 1.116rem + 2.23vw, 3.125rem);
  padding: clamp(2rem, 1.607rem + 1.96vw, 3.375rem) 5%;
}
body.single-post .news-wrap__meta {
  font-size: clamp(0.8rem, 0.743rem + 0.29vw, 1rem);
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.25rem;
}
body.single-post .news-wrap__meta .tag {
  line-height: 1.5;
  display: inline-block;
  background-color: #B60120;
  color: #FFFFFF;
  border-radius: 9999px;
  padding: 0.5% 3%;
}
body.single-post .news-wrap__meta time {
  color: #878787;
}
body.single-post .news-wrap__ttl {
  margin: 0.5rem 0 1rem;
  color: #B60120;
  font-size: clamp(1.2rem, 0.971rem + 1.14vw, 2rem);
}
body.single-post .news-wrap__image {
  border-radius: 25px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  width: 100%;
}
body.single-post .news-wrap__image img {
  -o-object-fit: contain;
  object-fit: contain;
}
body.single-post .news-wrap__txt {
  font-size: clamp(0.81rem, 0.79rem + 0.1vw, 0.88rem);
  font-weight: 400;
  line-height: 2;
}
body.single-post .news .noimage-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #f5f5f5;
  width: 100%;
  aspect-ratio: 2.49/1;
  font-size: 3rem;
  color: #ccc;
}