@charset "UTF-8";
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: 0;
}

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

html {
  font-size: 100%;
  background-color: #fff;
  word-break: break-word;
}

body {
  min-height: 100vh;
  background-color: #fff;
}

a,
a:active,
a:link,
a:visited {
  text-decoration: none;
  color: inherit;
}

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

audio,
canvas,
iframe,
img,
svg,
progress,
video {
  display: inline-block;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

textarea {
  resize: vertical;
}

input,
select {
  vertical-align: middle;
}

button {
  vertical-align: inherit;
  line-height: inherit;
  cursor: pointer;
}

code,
kbd,
pre,
samp {
  font-family: monospace, sans-serif;
  font-size: 1em;
}

mark {
  background-color: #ff0;
}

small {
  font-size: 80%;
}

img {
  max-inline-size: 100%;
  height: auto;
}

ul, li {
  list-style: none;
}

body.error404 {
  background-color: #121212;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.text404 {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  color: #ccc;
  text-align: center;
  font-family: sans-serif;
  white-space: nowrap;
}
.text404 strong {
  font-size: 80px;
  line-height: 1.2;
  font-weight: bold;
  display: inline-block;
  text-indent: -0.08em;
}
@media (max-width: 600px) {
  .text404 strong {
    font-size: 45px;
  }
}
.text404 p {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.2;
}
.text404 a,
.text404 a:link {
  margin-top: 40px;
  font-size: 14px;
  line-height: 1.2;
  white-space: normal;
  display: inline-block;
  height: 2.5em;
  line-height: 2.5em;
  width: auto;
  padding: 0 1.5em;
  background-color: #333 !important;
  color: #ccc !important;
  transition: 0.2s;
  border-radius: 100em;
  overflow: hidden;
  font-weight: normal;
}
.text404 a:hover,
.text404 a:link:hover {
  color: #333 !important;
  background-color: #ccc !important;
  text-decoration: none;
}

/* mixin */
.c-header {
  display: flex;
  position: fixed;
  justify-content: space-between;
  align-items: center;
  width: 96%;
  padding: 10px 24px;
  z-index: 110;
  top: 30px;
  transition: 0.9s;
  background-color: var(--color-white);
  left: 50%;
  border-radius: 12px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  box-shadow: 0 6px 13px rgba(227, 227, 227, 0.22);
}
@media screen and (max-width: 767px) {
  .c-header {
    background-color: var(--color-white);
    width: 90%;
    top: 20px;
    border-radius: var(--radius);
    padding: 0.8rem 1.4rem;
  }
}
.c-header__logo {
  width: 23%;
}
@media screen and (max-width: 1200px) {
  .c-header__logo {
    width: 100%;
  }
}
.c-header__logo a {
  display: flex;
  align-items: center;
  gap: 12px;
}
.c-header__logo a img {
  max-inline-size: 60%;
}
@media screen and (max-width: 767px) {
  .c-header__logo a img {
    width: 80px;
  }
}
.c-header__logo a p {
  border: 1px solid #ececec;
  border-radius: 30px;
  padding: 4px 12px;
  color: var(--color-font);
  font-size: 0.8rem;
}
@media screen and (max-width: 767px) {
  .c-header__logo svg {
    width: 130px;
    height: auto;
  }
  .c-header__logo svg path,
  .c-header__logo svg rect {
    fill: #333;
  }
}
.c-header nav {
  width: 77%;
}
@media screen and (max-width: 1200px) {
  .c-header nav {
    width: 100%;
  }
  .c-header__logo a img {
    max-inline-size: 20%;
  }
}
@media screen and (max-width: 767px) {
  .c-header nav {
    width: 40%;
  }
}
.c-header__cta {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-right: 24px;
}
@media screen and (max-width: 767px) {
  .c-header__cta {
    display: none;
  }
}
.c-header__cta .c-button {
  margin-top: 0;
}
.c-header__menu {
  align-items: center;
  padding: 0 1rem;
  display: flex;
  position: relative;
  justify-content: end;
}
@media screen and (max-width: 767px) {
  .c-header__menu {
    position: unset;
  }
}
.c-header__list {
  display: flex;
  padding: 1rem 2rem 1rem 1rem;
  gap: 1rem;
}
@media screen and (max-width: 1200px) {
  .c-header__list {
    display: none;
  }
}
.c-header__list li {
  position: relative;
}
.c-header__list li.menu-item-has-children {
  margin-right: 12px;
}
.c-header__list li.menu-item-has-children::before {
  content: "";
  background-image: url(../img/icon/icon-simple-arrow-bottom.svg);
  width: 10px;
  height: 6px;
  background-size: contain;
  display: block;
  background-repeat: no-repeat;
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transition: all 0.4s ease;
}
.c-header__list li:hover > a {
  color: var(--color-bland);
}
.c-header__list li:hover::before {
  transform: rotate(-180deg);
  top: 10px;
}
.c-header__list li:hover .sub-menu {
  opacity: 1;
  pointer-events: auto;
}
.c-header__list li .sub-menu {
  position: absolute;
  padding: 1rem;
  border-radius: var(--radius);
  bottom: 0px;
  left: 50%;
  display: block;
  background-color: var(--color-white);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 100%);
  width: -moz-max-content;
  width: max-content;
  transition: all 0.4s ease;
  border: 1px solid #eeeeee;
  box-shadow: 0 6px 13px rgba(226, 242, 245, 0.72);
}
.c-header__list li .sub-menu .current-menu-item > a {
  color: var(--color-bland);
}
.c-header__list .current_page_item > a {
  color: var(--color-bland);
}
.c-header__hamburger {
  height: -moz-max-content;
  height: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
  width: 44px;
  aspect-ratio: 1;
  border-radius: 100%;
  background-color: var(--color-bland);
  background-size: cover;
  z-index: 100000;
}
@media screen and (max-width: 767px) {
  .c-header__hamburger {
    top: 50%;
  }
}
.c-header__hamburger span {
  width: 11px;
  height: 1px;
  background-color: #fff;
  margin: 2px 0;
  transform-origin: center center;
  display: inline-block;
}
.u-show .c-header__hamburger span:first-child {
  transform: translate(0, 2.3px) rotate(-135deg);
}
.u-show .c-header__hamburger span:last-child {
  transform: translate(0, -3.5px) rotate(135deg);
}
.c-header__hamburger__content {
  position: fixed;
  top: -30px;
  height: 100vh;
  background-color: var(--color-sub-dark);
  color: #fff;
  opacity: 0;
  padding-top: var(--top-height);
  left: -6%;
  width: 112%;
  pointer-events: none;
  transition: all 0.4s ease;
}
@media screen and (max-width: 767px) {
  .c-header__hamburger__content {
    top: -20px;
  }
}
.u-show .c-header__hamburger__content {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.c-header__hamburger__content__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .c-header__hamburger__content__inner {
    width: 100%;
  }
}
.c-header__hamburger__content__inner .p-footer__list {
  padding: 24px;
  position: relative;
}
.c-header__hamburger__content__inner .p-footer__list a {
  position: relative;
}

.c-header__sticky {
  position: fixed;
  transform: translateY(-100%);
  transition: 0.9s;
}
@media screen and (max-width: 767px) {
  .c-header__sticky {
    transform: translate(-50%, -150%);
  }
}
.c-header__sticky.show {
  transform: translateY(0);
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .c-header__sticky.show {
    transform: translate(-50%, 0%);
  }
}

.c-header__announce {
  background-color: var(--color-error);
  color: var(--color-white);
}
.c-header__announce a {
  width: 100%;
  text-align: center;
  display: block;
  padding: 0.5rem;
  text-decoration: underline;
}

.c-inner {
  max-width: 1400px;
  width: 90%;
  height: 100%;
  position: relative;
  margin: 0 auto;
}

.c-pageHeading {
  width: 100%;
  padding-bottom: 2rem;
  position: relative;
  margin-top: 50px;
}
.c-pageHeading__head {
  text-align: center;
  color: var(--color-bland);
  max-width: 1400px;
  width: 90%;
  height: 100%;
  position: relative;
  margin: 0 auto;
}
.c-pageHeading__head .c-title {
  text-align: center;
}
.c-pageHeading__head__sub {
  margin-bottom: 1rem;
  text-align: left;
  font-size: 1rem;
  letter-spacing: 2px;
  text-align: center;
  color: var(--color-font);
}

.c-breadcrumbs {
  color: var(--color-font);
  font-size: 0.8rem;
  text-align: right;
  max-width: 1400px;
  width: 90%;
  margin: 0 auto;
}
.c-breadcrumbs a {
  font-size: 0.8rem;
  color: var(--color-font);
  text-decoration: underline;
}
.c-breadcrumbs .seperator::before {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1px;
  background-color: #9b9b9b;
  vertical-align: middle;
  margin-inline: 8px;
  opacity: 0.3;
}

.c-title {
  font-size: clamp(3rem, 2.259rem + 3.7vw, 5.5rem);
  margin-bottom: 1rem;
  font-family: var(--font_heading);
  font-variation-settings: "wdth" 135, "wght" 700;
  letter-spacing: 2px;
  text-align: left;
  line-height: 1;
}
.c-title__en {
  font-size: clamp(2.8rem, 2.273rem + 3.64vw, 5rem);
  color: var(--color-bland);
}
.c-title__ja {
  font-size: 1.25rem;
  margin-top: 1rem;
  color: var(--color-bland);
}
.c-title__section {
  font-size: var(--title__section);
  display: flex;
  border-bottom: 1px solid var(--color-annotation);
  width: 100%;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 3rem;
}
.c-title__section__ja {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-bland);
}
.c-title__subsection {
  color: var(--color-bland);
  line-height: 1.75;
}
.c-title__subsection__en {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--color-accent);
  line-height: 1;
}
.c-title__subsection02 .c-title__subsection__en {
  font-size: var(--title__subsection);
  color: var(--color-bland);
  line-height: 1;
}
.c-title__subsection__ja {
  font-size: var(--title__subsection);
}
.c-title__subsection02 .c-title__subsection__ja {
  font-size: 1rem;
}
.c-title__small {
  font-size: var(--title__small);
  text-align: center;
}
.c-title__small__ja {
  margin-bottom: 1rem;
  color: var(--color-bland);
}
.c-title__small__en {
  color: var(--color-bland);
}
.c-title__caption {
  font-size: 1rem;
  font-size: var(--title__caption);
}
.c-title__border {
  border-bottom: 1px solid var(--color-annotation);
  text-align: left;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  margin-top: 5rem;
}
.c-title__simple__section {
  background-color: var(--color-bland);
  color: var(--color-white);
  border-radius: var(--radius);
  padding: 1rem;
  font-size: 2rem;
  font-family: var(--font_sansserif);
  font-style: normal;
  font-weight: bold;
}
.c-title__simple__subsection {
  font-size: 1.5rem;
  background-color: var(--color-sub);
  border-radius: var(--radius);
  padding: 1rem;
  font-family: var(--font_sansserif);
  font-style: normal;
  font-weight: bold;
}
.c-title__simple__small {
  font-size: 1.25rem;
  font-family: var(--font_sansserif);
  font-style: normal;
  font-weight: bold;
}

.c-text__lg {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
  color: var(--color-bland);
  font-family: var(--font_serif);
  font-style: normal;
  letter-spacing: 0.4rem;
}
.c-text__md {
  font-size: 1.25rem;
  color: var(--color-bland);
  font-family: var(--font_serif);
  font-style: normal;
  letter-spacing: 0.2rem;
}
.c-text__vertical {
  writing-mode: vertical-rl;
}

.c-dotList__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.c-dotList__item::before {
  content: "";
  background-color: var(--color-bland);
  border-radius: 50%;
  font-size: 10px;
  width: 0.4rem;
  height: 0.4rem;
  display: block;
}

.c-priceList {
  display: flex;
  gap: var(--gap);
  flex-flow: column;
}
.c-priceList__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--color-sub);
  padding: var(--padding);
  border-radius: var(--radius);
}
.c-priceList__item:last-child {
  margin-bottom: 0;
}
.c-priceList__border .c-priceList__item {
  background-color: unset;
  padding: 0 0 0.5rem 0;
  border-bottom: 1px solid var(--color-annotation);
  margin-bottom: 1rem;
  position: relative;
  border-radius: 0;
  transition: all 0.4s ease;
}
.c-priceList__border .c-priceList__item:hover {
  text-decoration: unset;
}
.c-priceList__border .c-priceList__item:hover .u-arrow svg:last-child {
  transform: translate(-50%, -50%);
}
.c-priceList__border .c-priceList__item:hover .u-arrow svg:first-child {
  transform: translate(300%, -50%);
}
.c-priceList__border .c-priceList__item .u-arrow {
  right: 0;
  background: unset;
}

.c-tagList {
  list-style-type: none;
  display: grid;
  gap: 32px;
  flex-wrap: wrap;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 767px) {
  .c-tagList {
    grid-template-columns: repeat(1, 1fr);
    gap: 8px;
  }
}
.c-tagList__item a {
  font-size: 0.75rem;
  border-radius: 16px;
  display: inline-block;
  padding: 1rem 1.25rem;
  position: relative;
  transition: all 0.4s ease;
  background-color: var(--color-bland);
  color: var(--color-white);
  width: 100%;
  font-size: 1.2rem;
  font-weight: bold;
}
.c-tagList__item a svg:last-child {
  transform: translate(-50%, -300%);
}
.c-tagList__item a:hover {
  text-decoration: none;
}
.c-tagList__item a:hover .u-arrow svg:last-child {
  transform: translate(-50%, -50%);
}
.c-tagList__item a:hover .u-arrow svg:first-child {
  transform: translate(-50%, 300%);
}
.c-tagList__icon .c-tagList__item a {
  padding: 0.6rem 1.25rem 0.6rem 2.2rem;
}
.c-tagList__item a .u-arrow {
  background-color: unset;
  right: 1rem;
  width: 1rem;
  height: 1rem;
  position: absolute;
  background: #fff;
  padding: 1rem;
}
.c-tagList__item a:hover {
  opacity: 0.8;
  text-decoration: none;
}
.c-tagList__item a.is-active {
  color: var(--color-bland);
  border: 1px solid var(--color-bland);
}

.c-note-list__item {
  position: relative;
  padding-left: 15px;
  font-size: 12px;
  margin-bottom: 4px;
  color: var(--color-annotation);
}
.c-note-list__item:before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}

a.c-button {
  display: block;
  background-color: var(--color-bland);
  padding: 1rem 2.25rem 1rem 1.75rem;
  text-align: center;
  width: 100%;
  max-width: 300px;
  color: var(--color-white);
  border-radius: var(--radius__lg);
  text-align: left;
  position: relative;
  height: -moz-fit-content;
  height: fit-content;
  transition: all 0.4s ease;
  box-shadow: inset 2px 4px 4px rgba(255, 255, 255, 0.44), 0 4px 5px rgba(96, 96, 96, 0.16);
  letter-spacing: 1.5px;
  text-align: center;
}
a.c-button:hover {
  text-decoration: none;
}
a.c-button:hover .u-arrow {
  background-color: var(--color-bland);
}
a.c-button:hover .u-arrow svg:last-child {
  transform: translate(-50%, -50%);
}
a.c-button:hover .u-arrow svg:first-child {
  transform: translate(300%, -50%);
}
a.c-button:hover .u-arrow svg path {
  fill: var(--color-white);
}
a.c-button__icon {
  position: absolute;
  left: 1.5rem;
  line-height: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
a.c-button__cta {
  background: var(--color-accent);
  color: var(--color-white) !important;
  text-align: center;
  border: unset;
}
a.c-button__cta:hover {
  border: unset;
}
a.c-button__cta:hover .u-arrow {
  background-color: var(--color-accent-dark);
}
a.c-button__cta .u-arrow {
  background-color: var(--color-accent-dark);
}
a.c-button__cta .u-arrow svg path {
  fill: var(--color-white);
}
a.c-button__cta01 .u-arrow, a.c-button__cta02 .u-arrow {
  background-color: var(--color-white);
}
a.c-button__cta01 {
  background-color: #FF2A18;
}
.c-header a.c-button__cta01 {
  border-radius: 20px 0px 0px 20px;
  max-width: 160px;
  padding: 0.8rem 1rem 0.6rem 1.5rem;
}
a.c-button__cta02 {
  background-color: #FF6A18;
}
.c-header a.c-button__cta02 {
  border-radius: 0px 20px 20px 0px;
  max-width: 160px;
  padding: 0.8rem 1.5rem 0.6rem 1rem;
}
a.c-button__line {
  background: var(--color-line);
  color: var(--color-white) !important;
  text-align: center;
  border: unset;
}
a.c-button__line:hover {
  border: unset;
}
a.c-button__line:hover .u-arrow {
  background-color: var(--color-line-dark);
}
a.c-button__line .u-arrow {
  background-color: var(--color-line-dark);
}
a.c-button__line .u-arrow svg path {
  fill: var(--color-white);
}
a.c-button__gmap {
  background-color: unset;
  color: var(--color-white) !important;
  text-align: center;
  border-radius: var(--radius);
  border: unset;
  padding: 0.75rem;
  box-shadow: unset;
  border: 1px solid #767D8B;
}
a.c-button__gmap:hover {
  border: 1px solid var(--color-white);
}
a.c-button__gmap .c-button__icon {
  display: inline-block;
}
a.c-button__gmap .c-button__icon svg {
  width: auto;
  height: 20px;
  top: 4px;
  position: relative;
  left: -6px;
}
a.c-button__gmap .u-arrow {
  background-color: #696c77;
}
a.c-button__gmap .u-arrow svg {
  width: 13px;
}
a.c-button__gmap .u-arrow svg g {
  fill: var(--color-white);
}
a.c-button__tel {
  border: unset;
  background: unset;
  text-align: center;
  padding: 0;
}
a.c-button__tel:hover {
  border: unset;
}
a.c-button__tel__number {
  display: inline-flex;
  align-items: center;
}
a.c-button__tel__number p {
  font-size: 2rem;
  text-align: center;
  font-weight: bold;
}
a.c-button__tel__number .c-button__icon {
  position: relative;
  margin-right: 0.65rem;
  left: 0;
}
a.c-button__tel__number .c-button__icon svg path {
  fill: var(--color-bland);
}

.c-table__body {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.c-table__body tr td {
  text-align: center;
}
.c-table__body tr td:first-child {
  text-align: left;
}
.c-table__body th,
.c-table__body td {
  padding: 1rem;
  border: 1px solid var(--color-annotation);
}
.c-table__body th {
  background-color: var(--color-bland);
  font-weight: bold;
}
.c-table__body td {
  vertical-align: top;
  width: 33.3%;
}
.c-table__header th {
  background-color: var(--color-bland);
  color: var(--color-white);
  text-align: center;
}

.c-openingHours {
  width: 100%;
  border-spacing: 0;
}
.c-openingHours tr {
  border-bottom: 1px solid var(--color-annotation);
}
.c-openingHours tr:first-child {
  background-color: var(--color-bland);
  color: var(--color-white);
}
.c-openingHours tr th,
.c-openingHours tr td {
  padding: 1rem;
  text-align: center;
  border-right: 1px solid var(--color-annotation);
}
@media screen and (max-width: 767px) {
  .c-openingHours tr th,
  .c-openingHours tr td {
    padding: 0.25rem;
  }
}
.c-openingHours tr th:last-child,
.c-openingHours tr td:last-child {
  border-right: unset;
}
.c-openingHours tr td {
  color: var(--color-bland);
}

.c-itemList {
  display: grid;
  flex-flow: column;
  gap: var(--gap);
}
.c-itemList__item {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  background: var(--color-sub);
  align-items: center;
  position: relative;
}
.c-itemList__item__content {
  padding: var(--padding);
}
.c-itemList__item__image {
  line-height: 0;
}
.c-itemList__item__image img {
  width: 100%;
}

.c-caseList__item {
  border: 1px solid var(--color-annotation);
}
.c-caseList__item__header {
  background-color: var(--color-bland);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 1rem;
}
.c-caseList__item__header-tag {
  display: inline-block;
  border: 1px solid var(--color-white);
  padding: 0.25rem 0.5rem;
}
.c-caseList__item__flex {
  display: flex;
  padding: 2rem;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .c-caseList__item__flex {
    display: block;
  }
}
.c-caseList__item__left {
  width: 40%;
}
@media screen and (max-width: 767px) {
  .c-caseList__item__left {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.c-caseList__item__left > div {
  margin-bottom: 1rem;
}
.c-caseList__item__left > div:last-child {
  margin-bottom: 0;
}
.c-caseList__item__right {
  width: 60%;
}
@media screen and (max-width: 767px) {
  .c-caseList__item__right {
    width: 100%;
  }
}
.c-caseList__item__info {
  padding: 1rem;
}

.c-infoTable {
  width: 100%;
  border: unset;
}
.c-infoTable th,
.c-infoTable td {
  border: unset;
  padding: 1.5rem 0;
  text-align: left;
  vertical-align: baseline;
}
@media screen and (max-width: 767px) {
  .c-infoTable th,
  .c-infoTable td {
    display: block;
    padding: 0.5rem 0 0.5rem;
  }
}
.c-infoTable th {
  color: var(--color-bland);
}
.c-infoTable tr {
  border-bottom: 1px solid var(--color-annotation);
}
@media screen and (max-width: 767px) {
  .c-infoTable tr {
    padding-bottom: 0.3rem;
    display: block;
    margin-bottom: 1.25rem;
    border-bottom: unset;
  }
}
.c-infoTable tr:last-child {
  border-bottom: unset;
}

.c-tabList {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, 1fr);
}
.c-tabList li a {
  background-color: var(--color-bland);
  text-decoration: unset;
  color: var(--color-white);
  text-align: center;
  display: block;
  opacity: 0.2;
  padding: 1rem;
}
.c-tabList li a[aria-selected=true] {
  font-weight: bold;
  opacity: 1;
}
.c-tabList__content > div {
  margin-top: 1rem;
}

.js-summary {
  display: block;
}

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

.c-faqList__item {
  border-radius: var(--radius);
  background-color: var(--color-sub);
  transition: all 0.4s ease;
}
.c-faqList__item .u-arrow svg {
  transform: translate(-50%, -20%) !important;
}
.c-faqList__item:hover .u-arrow {
  transition: all 0.4s ease;
  background-color: var(--color-bland);
}
.c-faqList__item:hover .u-arrow svg {
  fill: var(--color-white);
}
.c-faqList__item__question {
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 1.25rem 1rem 1.25rem 3rem;
}
.c-faqList__item__question::before {
  position: absolute;
  left: 1rem;
  text-align: center;
  display: block;
  content: "Q";
  top: 1rem;
  font-family: var(--font_heading);
  font-variation-settings: "wdth" 135, "wght" 700;
  font-size: 1.75rem;
  line-height: 1;
}
.c-faqList__item__answer {
  overflow: hidden;
  height: 0;
  transition: height 0.4s ease;
  padding: 0.75rem 1rem 0.75rem 3rem;
}
.c-faqList__item__answer__inner {
  position: relative;
}

.js-details[open] .js-content {
  height: auto;
}

.c-sliderList.p-cardList {
  grid-template-columns: unset;
}
.c-sliderList.p-cardList .o-interview__flex h2 {
  color: var(--color-white);
}
.c-sliderList.p-cardList .o-interview__flex .interview-join-date {
  color: var(--color-white);
}
.c-sliderList .slick-track li {
  margin: 0.5rem;
  margin-left: 20px;
}
.c-sliderList .slick-track li:first-child {
  position: relative;
  margin-left: 20px;
}
.c-sliderList .slick-dots {
  display: flex;
  gap: 3px;
}
.c-sliderList .c-slick__prev,
.c-sliderList .c-slick__next {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  border: unset;
  z-index: 10;
  background-color: var(--color-bland);
  border-radius: 50%;
}
.c-sliderList .c-slick__prev::before,
.c-sliderList .c-slick__next::before {
  content: "";
  background-image: url(../img/icon/icon-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 13px;
  height: 9px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.c-sliderList .c-slick__prev {
  left: 0;
  transform: rotate(180deg);
}
.c-sliderList .c-slick__next {
  right: 0;
}

.p-voiceList .p-cardList__item {
  background-color: var(--color-sub);
}
.p-voiceList .p-cardList__item > .p-cardList__link {
  display: flex;
  aspect-ratio: unset;
  padding: var(--padding);
  gap: var(--gap);
}
.p-voiceList .p-cardList__item > .p-cardList__link img {
  width: 50px;
  height: 50px;
}

.c-newsList {
  display: grid;
  gap: var(--gap);
  flex-flow: column;
}
.c-newsList__item {
  background-color: var(--color-sub);
  padding: var(--padding);
  border-radius: var(--radius);
}
.c-newsList__item:hover {
  color: var(--main-color);
}
.c-newsList__item__link:hover {
  text-decoration: none;
}
.c-newsList__item__link .time {
  margin-bottom: 12px;
  color: var(--bg2-color);
}
.c-newsList__item__link .ttl {
  font-size: 16px;
}

.c-pagetop {
  background-color: var(--color-white);
  display: inline-block;
  padding: 1rem;
  border-top-right-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
  text-align: center;
  transition: 0.6s cubic-bezier(0.4, 0.4, 0, 1);
  box-shadow: 0px 0px 6px 0px rgba(124, 124, 124, 0.17);
  font-size: 0.75rem;
}
.c-pagetop svg {
  transition: 0.6s cubic-bezier(0.4, 0.4, 0, 1);
}
.c-pagetop:hover {
  background-color: var(--color-bland);
  color: var(--color-white);
  text-decoration: unset;
  transition: 0.6s cubic-bezier(0.4, 0.4, 0, 1);
  opacity: 1;
}
.c-pagetop:hover svg {
  transform: translate(0px, -3px);
  transition: 0.8s cubic-bezier(0.4, 0.4, 0, 1);
}
.c-pagetop:hover svg path {
  fill: var(--color-white);
}

.c-cta__entry {
  position: relative;
  background-color: #FFDDD9;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .c-cta__entry {
    justify-content: end;
    background-color: unset;
    padding: 8px;
  }
}
.c-cta__entry__main {
  border: 10px solid #ffddd9;
  margin-left: -110px;
  background-color: #FF2A18;
  color: var(--color-white) !important;
  aspect-ratio: 1/1;
  text-align: center;
  padding: 32px;
  position: relative;
  display: block;
  border-radius: 50%;
  display: flex;
  font-size: 1.25rem;
  line-height: 1.5;
  align-items: center;
  font-weight: bold;
  box-shadow: inset 2px 4px 4px rgba(255, 255, 255, 0.44);
}
@media screen and (max-width: 767px) {
  .c-cta__entry__main {
    display: none;
  }
}
.c-cta__entry__main::before {
  content: "";
  background-image: url(../img/cta-balloon.svg);
  background-size: contain;
  width: 175px;
  height: 76px;
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  top: -25px;
  left: -42px;
}
.c-cta__entry__flex {
  display: flex;
  gap: 10px;
}
.c-cta__entry__flex a {
  background-color: var(--color-accent);
  padding: 16px 26px;
  display: block;
  border-radius: 12px;
  line-height: 1.25;
  font-weight: bold;
  color: var(--color-white);
  font-size: 1.2rem;
  box-shadow: inset 2px 4px 4px rgba(255, 255, 255, 0.44), 0 4px 5px rgba(96, 96, 96, 0.16);
}
@media screen and (max-width: 767px) {
  .c-cta__entry__flex a {
    width: 50%;
  }
  .c-cta__entry__flex a br {
    display: none;
  }
}
.c-cta__entry__flex__mini01 {
  background-color: #FF2A18 !important;
}

.c-fixedArea {
  position: relative;
  z-index: 100;
}
.c-fixedArea__left {
  position: fixed;
  transform: translateX(-120px);
  bottom: 1rem;
  transition: all 0.4s ease;
  z-index: 10;
}
.c-fixedArea__right {
  position: fixed;
  transform: translate(233px, -20px);
  right: 0;
  bottom: 0;
  transition: all 0.4s ease;
}
@media screen and (max-width: 767px) {
  .c-fixedArea__right {
    transform: translate(0);
    width: 100%;
  }
}
.c-cta__entry__main:hover .c-fixedArea__right {
  transform: translate(0px, -20px);
}
.c-fixedArea.show .c-fixedArea__left {
  transform: translateX(0);
}
.c-fixedArea__right:hover {
  transform: translate(0px, -20px);
}

.c-flowing {
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
}
.c-flowing ul {
  animation: flowing 60s linear infinite;
  display: inline-block;
  margin: 0;
  white-space: nowrap;
}
.c-flowing ul li {
  display: inline;
  font-size: 24rem;
  line-height: 1;
  font-family: var(--font_heading);
  font-variation-settings: "wdth" 135, "wght" 700;
}

@keyframes flowing {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.p-mainHero {
  width: 100svw;
  height: 100svh;
  min-height: 800px;
  max-height: 1000px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bland);
}
@media screen and (max-width: 1200px) {
  .p-mainHero {
    flex-flow: column;
    align-items: center;
    justify-content: center;
  }
}
.p-mainHero__image {
  width: 70%;
  height: 100%;
  padding: 170px 60px 60px 0px;
  background-color: var(--color-bland);
  max-width: 1200px;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .p-mainHero__image {
    width: 100%;
    height: 50%;
    padding: 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-mainHero__image {
    height: 50%;
  }
}
.p-mainHero__image__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10%;
}
@media screen and (max-width: 1200px) {
  .p-mainHero__image__img {
    border-radius: 2%;
  }
}
.p-mainHero__image__fv001 {
  position: absolute;
  top: 23%;
  right: 60%;
  height: auto;
  width: 16vw;
  max-width: 250px;
  height: auto;
  animation: floating-y 1.8s ease-in-out infinite alternate-reverse;
}
@media screen and (max-width: 1200px) {
  .p-mainHero__image__fv001 {
    width: 24vw;
    max-width: 160px;
    top: 0%;
    right: 57%;
  }
}
@media screen and (max-width: 900px) {
  .p-mainHero__image__fv001 {
    top: 7%;
  }
}
@media screen and (max-width: 767px) {
  .p-mainHero__image__fv001 {
    right: 61%;
    top: 13%;
    width: 32vw;
  }
}
.p-mainHero__image__fv002 {
  position: absolute;
  top: 29%;
  left: 54%;
  height: auto;
  width: 16vw;
  max-width: 222px;
  animation: floating-y 1.8s ease-in-out infinite alternate-reverse;
}
@media screen and (max-width: 1200px) {
  .p-mainHero__image__fv002 {
    top: 3%;
    right: 28%;
    width: 20vw;
    max-width: 162px;
  }
}
@media screen and (max-width: 900px) {
  .p-mainHero__image__fv002 {
    top: 10%;
  }
}
@media screen and (max-width: 767px) {
  .p-mainHero__image__fv002 {
    right: 4%;
    width: 32vw;
  }
}
@media screen and (max-width: 450px) {
  .p-mainHero__image__fv002 {
    top: 16%;
  }
}
.p-mainHero__image__fv003 {
  position: absolute;
  bottom: 21%;
  right: 72%;
  width: 10vw;
  max-width: 205px;
  height: auto;
  animation: floating-y 1.8s ease-in-out infinite alternate-reverse;
}
@media screen and (min-width: 1400px) {
  .p-mainHero__image__fv003 {
    right: 64%;
  }
}
@media screen and (max-width: 1200px) {
  .p-mainHero__image__fv003 {
    left: 30%;
    bottom: 21%;
    width: 12vw;
  }
}
@media screen and (max-width: 767px) {
  .p-mainHero__image__fv003 {
    left: 21%;
    width: 19vw;
    bottom: 25%;
  }
}
@media screen and (max-width: 480px) {
  .p-mainHero__image__fv003 {
    left: 14%;
  }
}
.p-mainHero__image__fv004 {
  position: absolute;
  top: 59%;
  right: 26%;
  width: 10vw;
  max-width: 162px;
  height: auto;
  animation: floating-y 1.8s ease-in-out infinite alternate-reverse;
}
@media screen and (max-width: 1520px) {
  .p-mainHero__image__fv004 {
    top: 63%;
    right: 19%;
  }
}
@media screen and (max-width: 1200px) {
  .p-mainHero__image__fv004 {
    top: 55%;
    right: 28%;
    width: 13vw;
  }
}
@media screen and (max-width: 767px) {
  .p-mainHero__image__fv004 {
    width: 20vw;
    top: 49%;
    right: 17%;
    left: unset;
  }
}
@media screen and (max-width: 520px) {
  .p-mainHero__image__fv004 {
    top: 59%;
    right: 9%;
  }
}
@keyframes floating-y {
  0% {
    transform: translateY(-3%);
  }
  100% {
    transform: translateY(3%);
  }
}
.p-mainHero__message {
  background-color: var(--color-bland);
  height: 100%;
  width: 30%;
  color: var(--color-bland);
  letter-spacing: 0.5rem;
  font-weight: bold;
  display: flex;
  flex-flow: column;
  justify-content: center;
  padding: 0 0px 0 60px;
  min-width: 540px;
}
@media screen and (max-width: 1200px) {
  .p-mainHero__message {
    width: 100%;
    min-width: unset;
    padding: 120px 16px 0 16px;
    height: 50%;
  }
}
@media screen and (max-width: 767px) {
  .p-mainHero__message {
    height: 50%;
  }
}
.p-mainHero__message__title {
  font-size: clamp(2.3rem, 1.636rem + 1.82vw, 3rem);
  margin-bottom: 1rem;
  letter-spacing: 5px;
  line-height: 2;
  color: var(--color-white);
}
@media screen and (max-width: 1200px) {
  .p-mainHero__message__title {
    text-align: center;
  }
}
.p-mainHero__message__title span {
  opacity: 0;
}
.p-mainHero__message__title__bg {
  background-color: var(--color-white);
  padding: 24px 20px 16px 28px;
  color: var(--color-bland);
  border-radius: 8px;
  margin-right: 12px;
}
@media screen and (max-width: 1200px) {
  .p-mainHero__message__title__bg {
    padding: 20px 16px 12px 14px;
  }
}
.p-mainHero__message__text {
  color: var(--color-white);
  font-weight: normal;
  font-size: 1.1rem;
  opacity: 0;
  transition: all 1.4s ease;
}
.p-mainHero__message__text.is-visible {
  opacity: 1;
}
@media screen and (max-width: 1200px) {
  .p-mainHero__message__text {
    text-align: center;
  }
}

.p-mainHero__bottom {
  position: absolute;
  bottom: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: end;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media screen and (max-width: 1200px) {
  .p-mainHero__bottom {
    flex-flow: column;
    gap: 1rem;
    width: 90%;
    align-items: center;
  }
}
.p-mainHero__bottom__left {
  position: relative;
  left: 3rem;
}
@media screen and (max-width: 1200px) {
  .p-mainHero__bottom__left {
    left: 0;
  }
}
.p-mainHero__bottom__right {
  position: relative;
  right: 3rem;
  max-width: 540px;
  width: 100%;
}
.p-mainHero__bottom__right .u-textLink {
  color: var(--color-white);
  text-align: center;
  display: block;
  text-decoration: underline;
}
@media screen and (max-width: 1200px) {
  .p-mainHero__bottom__right {
    right: 0;
  }
}

.p-pointList {
  display: flex;
  gap: 2px;
  max-width: 520px;
}
.p-pointList__item {
  text-align: center;
  background-color: var(--color-white);
  padding: 0.75rem;
  width: 100%;
}
.p-pointList__item img {
  height: 50px;
  width: auto;
}
.p-pointList__item span {
  font-size: 18px;
  font-weight: bold;
  color: var(--key-color);
}

.p-cardList {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}
.p-cardList__item {
  box-shadow: 0 6px 13px rgba(226, 242, 245, 0.72);
  position: relative;
}
.p-cardLogoList .p-cardList__item {
  background-color: var(--color-sub);
  border-radius: var(--radius);
}
.p-cardList__item > .p-cardList__link {
  display: block;
  overflow: hidden;
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
  aspect-ratio: 3/2;
}
.p-cardList__item > .p-cardList__link::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(42, 44, 47, 0.42));
  border-radius: var(--radius);
  z-index: 1;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .page-solution .p-cardList__item > .p-cardList__link::after {
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(42, 44, 47, 0.92));
  }
}
.p-cardList__item > .p-cardList__link img {
  transition: all 0.4s ease;
}
.p-cardList__item > .p-cardList__link:hover img {
  transform: scale(1.1);
}
.p-cardList__item > .p-cardList__link:hover .u-arrow {
  z-index: 3;
}
.p-cardList__item > .p-cardList__link:hover .u-arrow svg:last-child {
  transform: translate(-50%, -50%);
}
.p-cardList__item > .p-cardList__link:hover .u-arrow svg:first-child {
  transform: translate(300%, -50%);
}
.p-cardLogoList .p-cardList__item > .p-cardList__link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.p-cardList__item > .p-cardList__link .c-button {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .p-cardList__item > .p-cardList__link .c-button {
    position: relative;
    right: unset;
    margin: 1.5rem 0 0 auto;
    bottom: unset;
  }
}
.p-cardImgList .p-cardList__item > .p-cardList__link {
  border-radius: var(--radius);
  height: 100%;
  aspect-ratio: 1/1;
}
.p-cardList__item > .p-cardList__link img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-cardLogoList .p-cardList__item > .p-cardList__link img {
  width: auto;
  height: auto;
}
.p-cardImgList .p-cardList__item > .p-cardList__link .p-cardList__content {
  position: absolute;
  bottom: 0;
  left: 0;
  color: var(--color-white);
  background-color: unset;
  box-shadow: unset;
  border-radius: unset;
  padding: var(--padding);
  width: 100%;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .p-cardImgList .p-cardList__item > .p-cardList__link .p-cardList__content {
    padding: 0.75rem;
  }
}
.p-cardList__2 .p-cardList__item {
  flex-basis: calc(50% - 16px);
}
.p-cardList__content {
  background-color: #fff;
  box-shadow: 0 6px 13px rgba(226, 242, 245, 0.72);
  border-bottom-left-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
  padding: 25px;
}
.p-cardList__content > .p-cardList__meta {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  align-items: end;
}

.p-cardImgList .p-cardList__item .p-cardList__link > .u-arrow {
  bottom: 0.5rem;
  right: 0.5rem;
  top: unset;
  transform: translate(0%, 0%);
  z-index: 3;
}

.p-profileList__item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  background-color: var(--color-sub);
  padding: 3rem 4rem;
  gap: 6rem;
}
@media screen and (max-width: 767px) {
  .p-profileList__item {
    display: block;
  }
}
.p-profileList__item__image img {
  margin-bottom: 2rem;
}

.p-concept {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-concept {
    width: 100%;
    display: block;
  }
}
.p-concept__image img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-concept__image {
    margin: -3rem -5.5% 0;
  }
}

.p-tablePrice {
  border: 1px solid #ddd;
  border-radius: var(--radius);
}
.p-tablePrice__row {
  display: flex;
}
.p-tablePrice__header {
  background-color: var(--color-bland);
  color: #fff;
  text-align: center;
  padding: 1rem;
  flex: 0 0 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.p-tablePrice__badge {
  background: var(--color-accent-gradation);
  padding: 0.5rem 1rem;
  border-radius: var(--radius__lg);
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}
.p-tablePrice__title {
  font-size: 1.2rem;
  font-weight: bold;
}
.p-tablePrice__content {
  background-color: #f8f9fa;
  flex: 1;
}
.p-tablePrice__item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-sub-light);
  padding: 1rem 2rem;
}
.p-tablePrice__item:first-child {
  background-color: var(--color-sub-light);
}
.p-tablePrice__item:last-child {
  border-bottom: none;
}
.p-tablePrice__item-title {
  font-size: 1rem;
  color: var(--color-font);
}
.p-tablePrice__item-title small {
  color: var(--color-font);
}
.p-tablePrice__item-price {
  font-weight: bold;
  color: var(--color-font);
}
.p-tablePrice__item-price small {
  color: var(--color-font);
}
.p-tablePrice__item-price strong {
  font-size: 1.5rem;
  line-height: 0;
}

.p-access {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
}
.p-access__image {
  background: var(--color-white);
  color: var(--color-font);
  padding: 0.2rem;
  margin-top: -15px;
  border-radius: 0 0 6px 6px;
}
.p-access__image iframe {
  filter: grayscale(80%);
  -webkit-filter: grayscale(80%);
  border-radius: var(--radius);
}
.p-access__image .u-layout__between {
  padding: 0.4rem 1rem;
}
.p-access__image .u-layout__between span {
  width: 70px;
  display: inline-block;
  background-color: #edecec;
  padding: 0.1rem;
  text-align: center;
  border-radius: 3px;
  font-size: 0.8rem;
  font-weight: bold;
  margin-right: 0.45rem;
  color: #444444;
}
@media screen and (max-width: 767px) {
  .p-access {
    display: block;
  }
}

.p-flowList {
  display: grid;
  gap: var(--gap);
  position: relative;
}
.p-flowList::before {
  content: "";
  background-color: var(--color-annotation);
  height: 74%;
  width: 1px;
  position: absolute;
  left: 4.8%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  top: 10%;
}
.p-flowList__item {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-flowList__item {
    gap: 1rem;
  }
}
.p-flowList__item:last-child .p-flowList__item__number::before {
  content: none;
}
.p-flowList__item__number {
  width: 10%;
  border: 1px solid var(--color-accent);
  background-color: var(--color-white);
  border-radius: 100%;
  text-align: center;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-family: var(--font_heading);
}
.p-flowList__item__number p {
  letter-spacing: 0.1rem;
}
.p-flowList__item__number p span {
  font-size: 0.8rem;
  color: var(--color-accent);
  display: block;
}
.p-flowList__item__number p strong {
  font-size: 1.75rem;
  line-height: 0;
  color: var(--color-bland);
}
.p-flowList__item__content {
  width: 90%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  padding-bottom: var(--gap);
}
@media screen and (max-width: 767px) {
  .p-flowList__item__content {
    width: 80%;
  }
}
@media screen and (max-width: 767px) {
  .p-flowList__item__content__description {
    grid-column: 2/1;
    margin-top: 0.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-flowList__item__content__image {
    grid-column: 1/3;
    grid-row: 1;
  }
}
.p-flowList__item__content__image img {
  height: 100%;
  display: block;
  border-radius: var(--radius);
}
@media screen and (max-width: 767px) {
  .p-flowList__item__content__image img {
    -o-object-fit: cover;
       object-fit: cover;
    aspect-ratio: 4/1.5;
  }
}

.p-cta {
  background-image: url(../img/p-cta.jpg);
  background-size: cover;
  padding: 4rem;
  color: var(--color-white);
  top: -6rem;
  position: relative;
  margin-bottom: -6rem;
}
.p-cta__content {
  width: 50%;
}
.p-cta__content .c-text__lg {
  color: var(--color-white);
}
.p-cta__content__tel {
  display: flex;
  align-items: center;
}
.p-cta__content__tel__heading {
  display: inline-block;
  border-top: 1px solid var(--color-white);
  border-bottom: 1px solid var(--color-white);
  padding: 0.65rem 1.25rem;
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
}
.p-cta__content__tel .c-button__tel {
  margin-top: 0;
}
.p-cta__content__tel .c-button__tel__number svg path {
  fill: var(--color-white);
}

.p-anchorLink {
  border-bottom: 1px solid var(--color-sub-light);
  padding: 2rem 0rem;
  margin-bottom: 4rem;
}

.p-note {
  background-color: var(--color-sub);
  border-radius: var(--radius);
  padding: 2rem;
}
.p-note .c-title__caption {
  border-bottom: 1px solid var(--color-annotation);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.p-note .c-title__caption svg {
  margin-right: 0.25rem;
}

.p-footer {
  background-color: var(--color-sub-dark);
  color: var(--color-white);
  padding-top: 3rem;
  padding-bottom: 30rem;
  position: relative;
}
.p-footer .c-openingHours {
  font-family: var(--font_serif);
  margin-bottom: 2rem;
}
.p-footer .c-openingHours tr {
  border-bottom: 1px solid #767981;
}
.p-footer .c-openingHours tr:first-child {
  background-color: unset;
}
.p-footer .c-openingHours tr:last-child {
  border: unset;
}
.p-footer .c-openingHours tr td {
  color: var(--color-white);
  font-size: 0.75rem;
  border-right: 1px solid #767981;
}
.p-footer .c-openingHours tr td:last-child {
  border: unset;
}
.p-footer .c-openingHours tr th {
  border-right: 1px solid #767981;
}
.p-footer .c-openingHours tr th:last-child {
  border: unset;
}
.p-footer .l-inner__lg,
.p-footer .l-inner__lg__right {
  padding: 0 0 0rem 0;
  position: relative;
}
.p-footer__description {
  background-color: var(--color-font);
  padding: 3rem 6rem 3rem 0rem;
  border-radius: 0 4rem 1rem 0;
  max-width: 420px;
  position: relative;
  z-index: 10;
  box-shadow: inset -6px 4px 5px -5px rgb(72, 72, 76);
}
.p-footer__description__inner {
  position: relative;
  z-index: 10;
}
.p-footer__description svg {
  width: 100%;
  margin-bottom: 1rem;
  height: 110px;
}
.p-footer__description p {
  font-size: 0.9rem;
}
.p-footer__description .c-text__md {
  color: var(--color-white);
  font-size: 1.5rem;
  position: relative;
  z-index: 10;
}
.p-footer__description::before {
  content: "";
  background-color: var(--color-font);
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: -420px;
  z-index: 1;
}
.p-footer__menu li {
  margin-bottom: 1.5rem;
}
.p-footer__menu__sub {
  margin-top: 1rem;
  color: var(--color-sub-light);
  font-weight: normal;
  font-size: 0.9rem;
}
.p-footer__menu__sub li {
  margin-bottom: 0.25rem;
}
.p-footer .c-flowing {
  position: absolute;
  bottom: 0px;
  animation: flowing 380s linear infinite;
}
.p-footer .c-flowing ul {
  color: #5e6370;
}
.p-footer__info > img {
  width: 260px;
}
.p-footer__info__02 {
  color: #D5DCEB;
  line-height: 1.65;
}
.p-footer__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: end;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .p-footer__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 2rem;
  }
}
.p-footer__list > li > a {
  padding-bottom: 0.75rem;
  display: block;
}
.p-footer__list > li .sub-menu li {
  color: #D5DCEB;
}
.p-footer__right {
  align-items: end;
}
.p-footer__snslist {
  display: flex;
  gap: 1.25rem;
  justify-content: end;
}
.p-footer__snslist svg path {
  fill: var(--color-white);
}
.p-footer__otherlist {
  display: flex;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-footer__otherlist {
    flex-wrap: wrap;
    justify-content: end;
  }
}

.p-interview {
  position: absolute;
  right: 0;
  width: 60%;
}
@media screen and (max-width: 767px) {
  .p-interview {
    position: relative;
    width: 100%;
  }
}

.p-recruit {
  background-image: url(../img/recruit-bg.jpg);
  background-size: cover;
  padding: 80px 0;
}

.p-categoryFilter {
  margin-bottom: 3rem;
}
.p-categoryFilter__list {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bland);
  border-radius: 12px;
  flex-wrap: wrap;
}
.p-categoryFilter__list .p-categoryFilter__item .p-categoryFilter__link {
  padding: 16px;
  color: var(--color-white);
  display: block;
  letter-spacing: 2px;
  font-size: 1.1rem;
  opacity: 0.4;
}
.p-categoryFilter__list .p-categoryFilter__item .p-categoryFilter__link:hover {
  opacity: 1;
}
.p-categoryFilter__list .p-categoryFilter__item .p-categoryFilter__link.is-active {
  opacity: 1;
  position: relative;
}
.p-categoryFilter__list .p-categoryFilter__item .p-categoryFilter__link.is-active::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--color-white);
  position: absolute;
  bottom: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 6px 6px 0 0;
}

.layout-main-container {
  max-width: 1400px;
  width: 90%;
  display: flex;
  margin: 100px auto;
  gap: 60px;
  padding: 0 0 10rem 0;
}
.layout-main-container .layout-sidebar {
  width: 30%;
  min-width: 200px;
  position: sticky;
  top: 0;
  height: 100%;
  background-color: var(--color-sub);
  padding: var(--padding);
}
@media screen and (max-width: 767px) {
  .layout-main-container .layout-sidebar {
    display: none;
  }
}
.layout-main-container .layout-sidebar li a.current {
  color: var(--color-accent);
  font-weight: bold;
  position: relative;
}
.layout-main-container .layout-sidebar li a.current::before {
  content: "・";
  position: absolute;
  left: -1rem;
}
.layout-main-container .layout-content {
  width: 70%;
}
@media screen and (max-width: 767px) {
  .layout-main-container .layout-content {
    width: 100%;
  }
}

.l-inner {
  max-width: 1400px;
  width: 90%;
  margin: 0 auto;
}

.l-inner__lg {
  max-width: 1400px;
  width: 90%;
  margin: 0 auto;
}

.l-inner__lg__right {
  width: 95%;
  margin: 0 auto 0 0;
}

.l-inner__sm {
  max-width: 1000px;
}

section {
  padding: 0 0 10rem 0;
}

.l-loading {
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1110000000;
  background-color: #ffffff;
  opacity: 1;
  pointer-events: none;
}

body.is-load .l-loading {
  opacity: 0;
  transition: 900ms cubic-bezier(0.215, 0.61, 0.355, 1);
}

.u-mt10 {
  margin-top: 10px;
}

.u-mt20 {
  margin-top: 20px;
}

.u-mt30 {
  margin-top: 30px;
}

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

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

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

.u-mt70 {
  margin-top: 70px;
}

.u-mt80 {
  margin-top: 80px;
}

.u-mt90 {
  margin-top: 90px;
}

.u-mt100 {
  margin-top: 100px;
}

.u-mt110 {
  margin-top: 110px;
}

.u-mt120 {
  margin-top: 120px;
}

.u-mt130 {
  margin-top: 130px;
}

.u-mt140 {
  margin-top: 140px;
}

.u-mt150 {
  margin-top: 150px;
}

.u-mt160 {
  margin-top: 160px;
}

.u-mt170 {
  margin-top: 170px;
}

.u-mt180 {
  margin-top: 180px;
}

.u-mt190 {
  margin-top: 190px;
}

.u-mt200 {
  margin-top: 200px;
}

.u-mt210 {
  margin-top: 210px;
}

.u-mt220 {
  margin-top: 220px;
}

.u-mt230 {
  margin-top: 230px;
}

.u-mt240 {
  margin-top: 240px;
}

.u-mt250 {
  margin-top: 250px;
}

.u-mt260 {
  margin-top: 260px;
}

.u-mt270 {
  margin-top: 270px;
}

.u-mt280 {
  margin-top: 280px;
}

.u-mt290 {
  margin-top: 290px;
}

.u-mt300 {
  margin-top: 300px;
}

.u-mt310 {
  margin-top: 310px;
}

.u-mt320 {
  margin-top: 320px;
}

.u-mt330 {
  margin-top: 330px;
}

.u-mt340 {
  margin-top: 340px;
}

.u-mt350 {
  margin-top: 350px;
}

.u-mt360 {
  margin-top: 360px;
}

.u-mt370 {
  margin-top: 370px;
}

.u-mt380 {
  margin-top: 380px;
}

.u-mt390 {
  margin-top: 390px;
}

.u-mt400 {
  margin-top: 400px;
}

.u-mt410 {
  margin-top: 410px;
}

.u-mt420 {
  margin-top: 420px;
}

.u-mt430 {
  margin-top: 430px;
}

.u-mt440 {
  margin-top: 440px;
}

.u-mt450 {
  margin-top: 450px;
}

.u-mt460 {
  margin-top: 460px;
}

.u-mt470 {
  margin-top: 470px;
}

.u-mt480 {
  margin-top: 480px;
}

.u-mt490 {
  margin-top: 490px;
}

.u-mt500 {
  margin-top: 500px;
}

.u-mt510 {
  margin-top: 510px;
}

.u-mt520 {
  margin-top: 520px;
}

.u-mt530 {
  margin-top: 530px;
}

.u-mt540 {
  margin-top: 540px;
}

.u-mt550 {
  margin-top: 550px;
}

.u-mt560 {
  margin-top: 560px;
}

.u-mt570 {
  margin-top: 570px;
}

.u-mt580 {
  margin-top: 580px;
}

.u-mt590 {
  margin-top: 590px;
}

.u-mt600 {
  margin-top: 600px;
}

.u-mt610 {
  margin-top: 610px;
}

.u-mt620 {
  margin-top: 620px;
}

.u-mt630 {
  margin-top: 630px;
}

.u-mt640 {
  margin-top: 640px;
}

.u-mt650 {
  margin-top: 650px;
}

.u-mt660 {
  margin-top: 660px;
}

.u-mt670 {
  margin-top: 670px;
}

.u-mt680 {
  margin-top: 680px;
}

.u-mt690 {
  margin-top: 690px;
}

.u-mt700 {
  margin-top: 700px;
}

.u-mt710 {
  margin-top: 710px;
}

.u-mt720 {
  margin-top: 720px;
}

.u-mt730 {
  margin-top: 730px;
}

.u-mt740 {
  margin-top: 740px;
}

.u-mt750 {
  margin-top: 750px;
}

.u-mt760 {
  margin-top: 760px;
}

.u-mt770 {
  margin-top: 770px;
}

.u-mt780 {
  margin-top: 780px;
}

.u-mt790 {
  margin-top: 790px;
}

.u-mt800 {
  margin-top: 800px;
}

.u-mt810 {
  margin-top: 810px;
}

.u-mt820 {
  margin-top: 820px;
}

.u-mt830 {
  margin-top: 830px;
}

.u-mt840 {
  margin-top: 840px;
}

.u-mt850 {
  margin-top: 850px;
}

.u-mt860 {
  margin-top: 860px;
}

.u-mt870 {
  margin-top: 870px;
}

.u-mt880 {
  margin-top: 880px;
}

.u-mt890 {
  margin-top: 890px;
}

.u-mt900 {
  margin-top: 900px;
}

.u-mt910 {
  margin-top: 910px;
}

.u-mt920 {
  margin-top: 920px;
}

.u-mt930 {
  margin-top: 930px;
}

.u-mt940 {
  margin-top: 940px;
}

.u-mt950 {
  margin-top: 950px;
}

.u-mt960 {
  margin-top: 960px;
}

.u-mt970 {
  margin-top: 970px;
}

.u-mt980 {
  margin-top: 980px;
}

.u-mt990 {
  margin-top: 990px;
}

.u-mt1000 {
  margin-top: 1000px;
}

@media screen and (max-width: 1200px) {
  .u-mt10__tb {
    margin-top: 10px;
  }
  .u-mt20__tb {
    margin-top: 20px;
  }
  .u-mt30__tb {
    margin-top: 30px;
  }
  .u-mt40__tb {
    margin-top: 40px;
  }
  .u-mt50__tb {
    margin-top: 50px;
  }
  .u-mt60__tb {
    margin-top: 60px;
  }
  .u-mt70__tb {
    margin-top: 70px;
  }
  .u-mt80__tb {
    margin-top: 80px;
  }
  .u-mt90__tb {
    margin-top: 90px;
  }
  .u-mt100__tb {
    margin-top: 100px;
  }
  .u-mt110__tb {
    margin-top: 110px;
  }
  .u-mt120__tb {
    margin-top: 120px;
  }
  .u-mt130__tb {
    margin-top: 130px;
  }
  .u-mt140__tb {
    margin-top: 140px;
  }
  .u-mt150__tb {
    margin-top: 150px;
  }
  .u-mt160__tb {
    margin-top: 160px;
  }
  .u-mt170__tb {
    margin-top: 170px;
  }
  .u-mt180__tb {
    margin-top: 180px;
  }
  .u-mt190__tb {
    margin-top: 190px;
  }
  .u-mt200__tb {
    margin-top: 200px;
  }
  .u-mt210__tb {
    margin-top: 210px;
  }
  .u-mt220__tb {
    margin-top: 220px;
  }
  .u-mt230__tb {
    margin-top: 230px;
  }
  .u-mt240__tb {
    margin-top: 240px;
  }
  .u-mt250__tb {
    margin-top: 250px;
  }
  .u-mt260__tb {
    margin-top: 260px;
  }
  .u-mt270__tb {
    margin-top: 270px;
  }
  .u-mt280__tb {
    margin-top: 280px;
  }
  .u-mt290__tb {
    margin-top: 290px;
  }
  .u-mt300__tb {
    margin-top: 300px;
  }
  .u-mt310__tb {
    margin-top: 310px;
  }
  .u-mt320__tb {
    margin-top: 320px;
  }
  .u-mt330__tb {
    margin-top: 330px;
  }
  .u-mt340__tb {
    margin-top: 340px;
  }
  .u-mt350__tb {
    margin-top: 350px;
  }
  .u-mt360__tb {
    margin-top: 360px;
  }
  .u-mt370__tb {
    margin-top: 370px;
  }
  .u-mt380__tb {
    margin-top: 380px;
  }
  .u-mt390__tb {
    margin-top: 390px;
  }
  .u-mt400__tb {
    margin-top: 400px;
  }
  .u-mt410__tb {
    margin-top: 410px;
  }
  .u-mt420__tb {
    margin-top: 420px;
  }
  .u-mt430__tb {
    margin-top: 430px;
  }
  .u-mt440__tb {
    margin-top: 440px;
  }
  .u-mt450__tb {
    margin-top: 450px;
  }
  .u-mt460__tb {
    margin-top: 460px;
  }
  .u-mt470__tb {
    margin-top: 470px;
  }
  .u-mt480__tb {
    margin-top: 480px;
  }
  .u-mt490__tb {
    margin-top: 490px;
  }
  .u-mt500__tb {
    margin-top: 500px;
  }
  .u-mt510__tb {
    margin-top: 510px;
  }
  .u-mt520__tb {
    margin-top: 520px;
  }
  .u-mt530__tb {
    margin-top: 530px;
  }
  .u-mt540__tb {
    margin-top: 540px;
  }
  .u-mt550__tb {
    margin-top: 550px;
  }
  .u-mt560__tb {
    margin-top: 560px;
  }
  .u-mt570__tb {
    margin-top: 570px;
  }
  .u-mt580__tb {
    margin-top: 580px;
  }
  .u-mt590__tb {
    margin-top: 590px;
  }
  .u-mt600__tb {
    margin-top: 600px;
  }
  .u-mt610__tb {
    margin-top: 610px;
  }
  .u-mt620__tb {
    margin-top: 620px;
  }
  .u-mt630__tb {
    margin-top: 630px;
  }
  .u-mt640__tb {
    margin-top: 640px;
  }
  .u-mt650__tb {
    margin-top: 650px;
  }
  .u-mt660__tb {
    margin-top: 660px;
  }
  .u-mt670__tb {
    margin-top: 670px;
  }
  .u-mt680__tb {
    margin-top: 680px;
  }
  .u-mt690__tb {
    margin-top: 690px;
  }
  .u-mt700__tb {
    margin-top: 700px;
  }
  .u-mt710__tb {
    margin-top: 710px;
  }
  .u-mt720__tb {
    margin-top: 720px;
  }
  .u-mt730__tb {
    margin-top: 730px;
  }
  .u-mt740__tb {
    margin-top: 740px;
  }
  .u-mt750__tb {
    margin-top: 750px;
  }
  .u-mt760__tb {
    margin-top: 760px;
  }
  .u-mt770__tb {
    margin-top: 770px;
  }
  .u-mt780__tb {
    margin-top: 780px;
  }
  .u-mt790__tb {
    margin-top: 790px;
  }
  .u-mt800__tb {
    margin-top: 800px;
  }
  .u-mt810__tb {
    margin-top: 810px;
  }
  .u-mt820__tb {
    margin-top: 820px;
  }
  .u-mt830__tb {
    margin-top: 830px;
  }
  .u-mt840__tb {
    margin-top: 840px;
  }
  .u-mt850__tb {
    margin-top: 850px;
  }
  .u-mt860__tb {
    margin-top: 860px;
  }
  .u-mt870__tb {
    margin-top: 870px;
  }
  .u-mt880__tb {
    margin-top: 880px;
  }
  .u-mt890__tb {
    margin-top: 890px;
  }
  .u-mt900__tb {
    margin-top: 900px;
  }
  .u-mt910__tb {
    margin-top: 910px;
  }
  .u-mt920__tb {
    margin-top: 920px;
  }
  .u-mt930__tb {
    margin-top: 930px;
  }
  .u-mt940__tb {
    margin-top: 940px;
  }
  .u-mt950__tb {
    margin-top: 950px;
  }
  .u-mt960__tb {
    margin-top: 960px;
  }
  .u-mt970__tb {
    margin-top: 970px;
  }
  .u-mt980__tb {
    margin-top: 980px;
  }
  .u-mt990__tb {
    margin-top: 990px;
  }
  .u-mt1000__tb {
    margin-top: 1000px;
  }
}
@media screen and (max-width: 767px) {
  .u-mt10__sp {
    margin-top: 10px;
  }
  .u-mt20__sp {
    margin-top: 20px;
  }
  .u-mt30__sp {
    margin-top: 30px;
  }
  .u-mt40__sp {
    margin-top: 40px;
  }
  .u-mt50__sp {
    margin-top: 50px;
  }
  .u-mt60__sp {
    margin-top: 60px;
  }
  .u-mt70__sp {
    margin-top: 70px;
  }
  .u-mt80__sp {
    margin-top: 80px;
  }
  .u-mt90__sp {
    margin-top: 90px;
  }
  .u-mt100__sp {
    margin-top: 100px;
  }
  .u-mt110__sp {
    margin-top: 110px;
  }
  .u-mt120__sp {
    margin-top: 120px;
  }
  .u-mt130__sp {
    margin-top: 130px;
  }
  .u-mt140__sp {
    margin-top: 140px;
  }
  .u-mt150__sp {
    margin-top: 150px;
  }
  .u-mt160__sp {
    margin-top: 160px;
  }
  .u-mt170__sp {
    margin-top: 170px;
  }
  .u-mt180__sp {
    margin-top: 180px;
  }
  .u-mt190__sp {
    margin-top: 190px;
  }
  .u-mt200__sp {
    margin-top: 200px;
  }
  .u-mt210__sp {
    margin-top: 210px;
  }
  .u-mt220__sp {
    margin-top: 220px;
  }
  .u-mt230__sp {
    margin-top: 230px;
  }
  .u-mt240__sp {
    margin-top: 240px;
  }
  .u-mt250__sp {
    margin-top: 250px;
  }
  .u-mt260__sp {
    margin-top: 260px;
  }
  .u-mt270__sp {
    margin-top: 270px;
  }
  .u-mt280__sp {
    margin-top: 280px;
  }
  .u-mt290__sp {
    margin-top: 290px;
  }
  .u-mt300__sp {
    margin-top: 300px;
  }
  .u-mt310__sp {
    margin-top: 310px;
  }
  .u-mt320__sp {
    margin-top: 320px;
  }
  .u-mt330__sp {
    margin-top: 330px;
  }
  .u-mt340__sp {
    margin-top: 340px;
  }
  .u-mt350__sp {
    margin-top: 350px;
  }
  .u-mt360__sp {
    margin-top: 360px;
  }
  .u-mt370__sp {
    margin-top: 370px;
  }
  .u-mt380__sp {
    margin-top: 380px;
  }
  .u-mt390__sp {
    margin-top: 390px;
  }
  .u-mt400__sp {
    margin-top: 400px;
  }
  .u-mt410__sp {
    margin-top: 410px;
  }
  .u-mt420__sp {
    margin-top: 420px;
  }
  .u-mt430__sp {
    margin-top: 430px;
  }
  .u-mt440__sp {
    margin-top: 440px;
  }
  .u-mt450__sp {
    margin-top: 450px;
  }
  .u-mt460__sp {
    margin-top: 460px;
  }
  .u-mt470__sp {
    margin-top: 470px;
  }
  .u-mt480__sp {
    margin-top: 480px;
  }
  .u-mt490__sp {
    margin-top: 490px;
  }
  .u-mt500__sp {
    margin-top: 500px;
  }
  .u-mt510__sp {
    margin-top: 510px;
  }
  .u-mt520__sp {
    margin-top: 520px;
  }
  .u-mt530__sp {
    margin-top: 530px;
  }
  .u-mt540__sp {
    margin-top: 540px;
  }
  .u-mt550__sp {
    margin-top: 550px;
  }
  .u-mt560__sp {
    margin-top: 560px;
  }
  .u-mt570__sp {
    margin-top: 570px;
  }
  .u-mt580__sp {
    margin-top: 580px;
  }
  .u-mt590__sp {
    margin-top: 590px;
  }
  .u-mt600__sp {
    margin-top: 600px;
  }
  .u-mt610__sp {
    margin-top: 610px;
  }
  .u-mt620__sp {
    margin-top: 620px;
  }
  .u-mt630__sp {
    margin-top: 630px;
  }
  .u-mt640__sp {
    margin-top: 640px;
  }
  .u-mt650__sp {
    margin-top: 650px;
  }
  .u-mt660__sp {
    margin-top: 660px;
  }
  .u-mt670__sp {
    margin-top: 670px;
  }
  .u-mt680__sp {
    margin-top: 680px;
  }
  .u-mt690__sp {
    margin-top: 690px;
  }
  .u-mt700__sp {
    margin-top: 700px;
  }
  .u-mt710__sp {
    margin-top: 710px;
  }
  .u-mt720__sp {
    margin-top: 720px;
  }
  .u-mt730__sp {
    margin-top: 730px;
  }
  .u-mt740__sp {
    margin-top: 740px;
  }
  .u-mt750__sp {
    margin-top: 750px;
  }
  .u-mt760__sp {
    margin-top: 760px;
  }
  .u-mt770__sp {
    margin-top: 770px;
  }
  .u-mt780__sp {
    margin-top: 780px;
  }
  .u-mt790__sp {
    margin-top: 790px;
  }
  .u-mt800__sp {
    margin-top: 800px;
  }
  .u-mt810__sp {
    margin-top: 810px;
  }
  .u-mt820__sp {
    margin-top: 820px;
  }
  .u-mt830__sp {
    margin-top: 830px;
  }
  .u-mt840__sp {
    margin-top: 840px;
  }
  .u-mt850__sp {
    margin-top: 850px;
  }
  .u-mt860__sp {
    margin-top: 860px;
  }
  .u-mt870__sp {
    margin-top: 870px;
  }
  .u-mt880__sp {
    margin-top: 880px;
  }
  .u-mt890__sp {
    margin-top: 890px;
  }
  .u-mt900__sp {
    margin-top: 900px;
  }
  .u-mt910__sp {
    margin-top: 910px;
  }
  .u-mt920__sp {
    margin-top: 920px;
  }
  .u-mt930__sp {
    margin-top: 930px;
  }
  .u-mt940__sp {
    margin-top: 940px;
  }
  .u-mt950__sp {
    margin-top: 950px;
  }
  .u-mt960__sp {
    margin-top: 960px;
  }
  .u-mt970__sp {
    margin-top: 970px;
  }
  .u-mt980__sp {
    margin-top: 980px;
  }
  .u-mt990__sp {
    margin-top: 990px;
  }
  .u-mt1000__sp {
    margin-top: 1000px;
  }
}
.u-pc_show {
  display: block;
}
@media screen and (max-width: 1200px) {
  .u-pc_show {
    display: none;
  }
}

.u-tb_show {
  display: none;
}
@media screen and (max-width: 1200px) {
  .u-tb_show {
    display: block;
  }
}

.u-sp_show {
  display: block;
}
@media screen and (max-width: 767px) {
  .u-sp_show {
    display: none;
  }
}

.u-layout {
  display: grid;
  gap: var(--gap);
  grid-template-columns: repeat(12, 1fr);
  justify-content: space-between;
}

.u-col1 {
  grid-template-columns: repeat(1, 1fr) !important;
}

.u-col2 {
  grid-template-columns: repeat(2, 1fr) !important;
}

.u-col3 {
  grid-template-columns: repeat(3, 1fr) !important;
}

.u-col4 {
  grid-template-columns: repeat(4, 1fr) !important;
}

.u-col5 {
  grid-template-columns: repeat(5, 1fr) !important;
}

.u-col6 {
  grid-template-columns: repeat(6, 1fr) !important;
}

.u-col7 {
  grid-template-columns: repeat(7, 1fr) !important;
}

.u-col8 {
  grid-template-columns: repeat(8, 1fr) !important;
}

@media screen and (max-width: 767px) {
  .u-col1__sp {
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .u-col2__sp {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .u-col3__sp {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  .u-col4__sp {
    grid-template-columns: repeat(4, 1fr) !important;
  }
  .u-col5__sp {
    grid-template-columns: repeat(5, 1fr) !important;
  }
  .u-col6__sp {
    grid-template-columns: repeat(6, 1fr) !important;
  }
  .u-col7__sp {
    grid-template-columns: repeat(7, 1fr) !important;
  }
  .u-col8__sp {
    grid-template-columns: repeat(8, 1fr) !important;
  }
}
.u-layout__between > *:first-child {
  justify-self: start;
}
.u-layout__between > *:last-child {
  justify-self: end;
}

.u-row-col1 {
  grid-column: span 1;
  padding: 1rem 0;
}

.u-row-col2 {
  grid-column: span 2;
}

.u-row-col3 {
  grid-column: span 3;
}

.u-row-col4 {
  grid-column: span 4;
}

.u-row-col5 {
  grid-column: span 5;
}

.u-row-col6 {
  grid-column: span 6;
}

.u-row-col7 {
  grid-column: span 7;
}

.u-row-col8 {
  grid-column: span 8;
}

.u-row-col9 {
  grid-column: span 9;
}

.u-row-col10 {
  grid-column: span 10;
}

.u-row-col11 {
  grid-column: span 11;
}

.u-row-col12 {
  grid-column: span 12;
}

@media screen and (max-width: 1200px) {
  .u-row-col1__tb {
    grid-column: span 1;
  }
  .u-row-col2__tb {
    grid-column: span 2;
  }
  .u-row-col3__tb {
    grid-column: span 3;
  }
  .u-row-col4__tb {
    grid-column: span 4;
  }
  .u-row-col5__tb {
    grid-column: span 5;
  }
  .u-row-col6__tb {
    grid-column: span 6;
  }
  .u-row-col7__tb {
    grid-column: span 7;
  }
  .u-row-col8__tb {
    grid-column: span 8;
  }
  .u-row-col9__tb {
    grid-column: span 9;
  }
  .u-row-col10__tb {
    grid-column: span 10;
  }
  .u-row-col11__tb {
    grid-column: span 11;
  }
  .u-row-col12__tb {
    grid-column: span 12;
  }
}
@media screen and (max-width: 767px) {
  .u-row-col1__sp {
    grid-column: span 1;
  }
  .u-row-col2__sp {
    grid-column: span 2;
  }
  .u-row-col3__sp {
    grid-column: span 3;
  }
  .u-row-col4__sp {
    grid-column: span 4;
  }
  .u-row-col5__sp {
    grid-column: span 5;
  }
  .u-row-col6__sp {
    grid-column: span 6;
  }
  .u-row-col7__sp {
    grid-column: span 7;
  }
  .u-row-col8__sp {
    grid-column: span 8;
  }
  .u-row-col9__sp {
    grid-column: span 9;
  }
  .u-row-col10__sp {
    grid-column: span 10;
  }
  .u-row-col11__sp {
    grid-column: span 11;
  }
  .u-row-col12__sp {
    grid-column: span 12;
  }
}
.u-numbering {
  counter-reset: note-counter;
}
.u-numbering .c-note-list__item {
  counter-increment: note-counter;
  padding-left: 1.5rem;
}
.u-numbering .c-note-list__item:before {
  content: "※" counter(note-counter);
}

.u-textLink {
  text-decoration: underline;
}

.u-icon {
  display: inline-block;
  margin-right: 0.5rem;
}

.u-active {
  color: var(--color-accent) !important;
  pointer-events: none;
}
.u-active .u-arrow {
  display: none;
}

.u-arrow {
  background-color: var(--color-white);
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translate(0%, -50%);
  -webkit-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  overflow: hidden;
  transition: all 0.4s ease;
}
.u-arrow svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}
.u-arrow svg path {
  fill: var(--font-color);
}
.u-arrow svg:last-child {
  transform: translate(-300%, -50%);
}

.u-aspect4-3 .p-cardList__link {
  aspect-ratio: 4/3 !important;
}
.u-aspect16-9 .p-cardList__link {
  aspect-ratio: 16/9 !important;
}
.u-aspect9-16 .p-cardList__link {
  aspect-ratio: 9/16 !important;
}
.u-aspect7-6 .p-cardList__link {
  aspect-ratio: 7/6 !important;
}
.u-aspect6-7 .p-cardList__link {
  aspect-ratio: 6/7 !important;
}
.u-aspect2-1 .p-cardList__link {
  aspect-ratio: 2/1 !important;
}
.u-aspect3-1 .p-cardList__link {
  aspect-ratio: 3/1 !important;
}
.u-aspect__film .p-cardList__link {
  aspect-ratio: 2.35/1 !important;
}
@media screen and (max-width: 767px) {
  .u-aspect4-3__sp .p-cardList__link {
    aspect-ratio: 4/3 !important;
  }
  .u-aspect16-9__sp .p-cardList__link {
    aspect-ratio: 16/9 !important;
  }
  .u-aspect9-16__sp .p-cardList__link {
    aspect-ratio: 9/16 !important;
  }
  .u-aspect7-6__sp .p-cardList__link {
    aspect-ratio: 7/6 !important;
  }
  .u-aspect6-7__sp .p-cardList__link {
    aspect-ratio: 6/7 !important;
  }
  .u-aspect2-1__sp .p-cardList__link {
    aspect-ratio: 2/1 !important;
  }
  .u-aspect3-1__sp .p-cardList__link {
    aspect-ratio: 3/1 !important;
  }
  .u-aspect__film__sp .p-cardList__link {
    aspect-ratio: 2.35/1 !important;
  }
}

.u-serif {
  font-family: var(--font-serif);
}

.u-sans_serif {
  font-family: var(--font-sans_serif);
  font-variation-settings: "wdth" 125, "wght" 700;
}

.u-gothic {
  font-family: var(--font-gothic);
}

.u-mincho {
  font-family: var(--font-mincho);
}

.u-animation-none {
  opacity: 0;
  transform: translateY(30px);
}

.u-animation {
  transform: translateY(0px);
  opacity: 1;
  transition-duration: 0.8s;
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.u-center {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.scroll-area .colorize {
  filter: grayscale(0%) !important;
  transition: filter 4s ease, background-size 0.7s ease, transform 1.5s ease, opacity 1s, -webkit-mask-position 2.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: filter 4s ease, background-size 0.7s ease, mask-position 2.8s cubic-bezier(0.215, 0.61, 0.355, 1), transform 1.5s ease, opacity 1s;
  transition: filter 4s ease, background-size 0.7s ease, mask-position 2.8s cubic-bezier(0.215, 0.61, 0.355, 1), transform 1.5s ease, opacity 1s, -webkit-mask-position 2.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  opacity: 1;
  -webkit-mask-position: 0% 0%;
          mask-position: 0% 0%;
  will-change: mask-position;
  transform: translate(0px, 0px);
}

.monochrome {
  filter: grayscale(100%);
  /* 変化の速さやイージングを調整できます */
  transform: translate(0px, 1vw);
  opacity: 0;
  -webkit-mask-image: linear-gradient(to bottom, #000, #000 33%, rgba(0, 0, 0, 0) 66%, rgba(0, 0, 0, 0) 100%);
          mask-image: linear-gradient(to bottom, #000, #000 33%, rgba(0, 0, 0, 0) 66%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-size: 100% 300%;
          mask-size: 100% 300%;
  -webkit-mask-position: 0 100%;
          mask-position: 0 100%;
}

.page-data .p-cardList__item {
  box-shadow: unset;
}
.page-data .p-cardList__item img {
  width: 100%;
  height: 100%;
}

.o-top__menu {
  position: relative;
}
.o-top__menu .c-flowing {
  position: absolute;
  top: 103px;
  opacity: 0.03;
}
.o-top__menu .l-inner {
  z-index: 1;
  position: relative;
}
.o-top__menu .l-inner .u-layout {
  align-items: center;
}

#top-career > .u-layout {
  gap: 100px;
  align-items: center;
}
@media screen and (max-width: 1200px) {
  #top-career > .u-layout {
    gap: 0;
  }
}
#top-career > .u-layout img {
  border-radius: var(--radius);
}
#top-career > .u-layout h3 {
  font-size: clamp(1.8rem, 1.364rem + 2.18vw, 3rem);
}
.c-title img {
  max-inline-size: 45%;
}
@media screen and (max-width: 767px) {
  #top-person .c-title img {
    width: 100px;
  }
}
#top-person .c-title p {
  font-size: 1.1rem;
  line-height: 2;
  margin-left: 6rem;
  margin-top: -4rem;
}

.o-copy {
  text-align: right;
}

.o-footer-copy {
  font-size: clamp(1.3rem, 1rem + 3.64vw, 2.1rem);
  font-weight: bold;
  letter-spacing: 5px;
}

.o-footer-bottom {
  align-items: end;
}

.page-companyinfo .l-inner {
  background-color: var(--color-white);
  padding: 100px 40px;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .page-companyinfo .l-inner {
    padding: 20px 24px;
  }
}
.page-companyinfo .l-inner .c-infoTable {
  margin: 0 auto;
}
.page-companyinfo .l-inner .c-infoTable span {
  background-color: #F5F5F5;
  display: block;
  padding: 6px 12px;
  font-weight: bold;
  margin-top: 1.5rem;
  margin-bottom: 0.7rem;
  border-radius: 2px;
}
.page-companyinfo .l-inner .c-infoTable span:first-child {
  margin-top: 0;
}
.page-companyinfo .l-inner .c-infoTable strong {
  display: block;
  margin-top: 1rem;
  color: var(--color-font);
}

.u-daily-flow .u-layout {
  gap: 80px;
}
@media screen and (max-width: 767px) {
  .u-daily-flow .u-layout {
    gap: 12px;
  }
}
.u-daily-flow .u-layout img {
  width: 100%;
}
.u-daily-flow .u-layout .u-row-col6 img {
  border-radius: 12px;
  width: 100%;
}
.u-daily-flow .u-layout .u-row-col6 h3 {
  font-size: 2rem;
  color: var(--color-bland);
  letter-spacing: 2px;
}

.u-benefits .p-cardList__item .p-cardList__link {
  text-align: center;
}
.u-benefits .p-cardList__item .p-cardList__link img {
  height: 80px;
}
.u-benefits .p-cardList__item .p-cardList__link h3 {
  color: var(--color-bland);
  font-size: 1.35rem;
  letter-spacing: 1px;
}

.post-type-archive-interview .p-cardList .p-cardList__item .p-cardList__link::after,
.tax-department .p-cardList .p-cardList__item .p-cardList__link::after,
.single-interview .p-cardList .p-cardList__item .p-cardList__link::after {
  content: unset;
}

.interview-item a {
  background-color: var(--color-bland);
  padding: 12px 12px 8px;
  display: inline-block;
  color: var(--color-white);
  border-radius: 6px;
  line-height: 1;
}

.department-sales a {
  background-color: #17A37E;
}
.department-cs a {
  background-color: #1783A3;
}
.department-technology a {
  background-color: #A38817;
}
.department-management a {
  background-color: #1583A3;
}

.o-interview__flex {
  display: flex;
  align-items: center;
  margin-top: 0.5rem;
  gap: 32px;
}
.o-interview__flex .interview-join-date {
  color: #A3A3A3;
}

.c-pageHeading__head__flex {
  display: flex;
  align-items: center;
  gap: 80px;
}
@media screen and (max-width: 767px) {
  .c-pageHeading__head__flex {
    flex-flow: column-reverse;
    gap: 30px;
  }
}

.c-pageHeading__head__flex__right__flex {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 2rem;
}

.c-pageHeading__head__flex__left {
  aspect-ratio: 1.6/1;
  width: 60%;
}
@media screen and (max-width: 767px) {
  .c-pageHeading__head__flex__left {
    width: 100%;
  }
}
.c-pageHeading__head__flex__left img {
  border-radius: 12px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-pageHeading__head__flex__right {
  width: 40%;
}
@media screen and (max-width: 767px) {
  .c-pageHeading__head__flex__right {
    width: 100%;
  }
}

.o-interview__heading {
  font-size: 80px;
  text-align: left;
  color: var(--color-bland);
  font-family: var(--font_heading);
  line-height: 1;
  margin-top: 24px;
}

.o-university,
.o-interview__no {
  text-align: left;
  font-family: var(--font_heading);
}

.o-university {
  font-size: 1.25rem;
  color: var(--color-font);
}

.o-interview__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 100px;
  gap: 60px;
}
@media screen and (max-width: 767px) {
  .o-interview__content {
    grid-template-columns: repeat(1, 1fr);
  }
}
.o-interview__content img {
  border-radius: 12px;
}
.o-interview__content:nth-child(even) .o-interview__content__inner {
  order: 2;
}
@media screen and (max-width: 767px) {
  .o-interview__content:nth-child(even) .o-interview__content__inner {
    order: 0;
  }
}
.o-interview__content h2 {
  margin-top: 1.75rem;
  margin-bottom: 1.25rem;
  color: var(--color-bland);
  font-size: 1.75rem;
}
.o-interview__content p {
  font-size: 1.05rem;
}
.o-interview__content__question {
  background-color: var(--color-bland);
  color: var(--color-white);
  border-radius: 60px 60px 0 60px;
  padding: 6px 32px 0px;
  display: inline-block;
  font-weight: bold;
  font-size: 32px !important;
  letter-spacing: 6px;
}

.o-other__interview__outer {
  background-color: var(--color-bland);
  position: relative;
  padding: 5rem 0 18rem 0;
}

.o-other__interview .l-inner {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .o-other__interview .c-title {
    width: 90%;
    margin: 0 auto;
  }
}
.o-other__interview .c-title__ja {
  color: var(--color-white);
  font-size: 2rem;
  line-height: 1.75;
}
.o-other__interview .c-button {
  box-shadow: unset;
  border: 1px solid #fff;
}

.js-column-slick-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  align-items: center;
  margin-bottom: 120px;
  max-width: 1000px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .js-column-slick-bottom {
    width: 90%;
    margin: 0 auto;
  }
}

.js-column-slick-bottom .arrow_box {
  width: 25%;
}
@media screen and (max-width: 767px) {
  .js-column-slick-bottom .arrow_box {
    width: 55%;
  }
}

.js-column-slick-bottom .dots_box {
  width: 75%;
}
@media screen and (max-width: 767px) {
  .js-column-slick-bottom .dots_box {
    width: 45%;
  }
}

.arrow_box button {
  background-color: var(--color-white);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  margin-right: 12px;
  border: #F0F0F0;
  color: #D5908E;
  transition: all 0.3sease;
  border: 1px solid var(--color-bland);
  transition: all 0.4s ease;
}
.arrow_box button svg path {
  fill: var(--color-bland);
}

.slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
}
.slick-dots li {
  position: relative;
  flex-grow: 1;
  margin: 0;
  list-style-type: none;
  height: 3px;
}
.slick-dots li button {
  width: auto;
  background: unset;
  border: unset;
  color: transparent;
}
.slick-dots li button:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background-color: #f5eeec;
  opacity: 1;
  transition: all 0.3s ease;
  border-radius: 8px;
}
.slick-dots li button::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 3px;
  background-color: var(--color-accent);
  transition: width 0.3s ease;
}

.slick-dots li.slick-active button::after {
  width: 100%;
}

.slick-prev {
  transform: rotate(-180deg);
}

.slick-disabled {
  opacity: 0.2;
}

.o-pmvv th,
.o-pmvv td {
  padding: 70px 0 130px;
  border-top: 1px solid #E3E3E3;
  border-bottom: unset;
  vertical-align: top;
}
@media screen and (max-width: 1200px) {
  .o-pmvv th,
  .o-pmvv td {
    padding: 30px 0 20px;
    border-top: unset;
  }
}
.o-pmvv th {
  border-top: 1px solid var(--color-bland);
  padding-right: 60px;
}
.o-pmvv .o-pmvv__heading p {
  font-size: 32px;
  color: var(--color-bland);
}
.o-pmvv .o-pmvv__heading h2 {
  font-size: 1rem;
  color: var(--color-bland);
}
.o-pmvv .o-pmvv__heading02 {
  font-size: 1.65rem;
  font-weight: bold;
}
.o-pmvv .u-numbering .c-note-list__item {
  font-size: 1.5rem;
  color: var(--color-font);
  font-weight: bold;
  margin-bottom: 1.5rem;
  padding-left: 1.85rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #E3E3E3;
}
.o-pmvv .u-numbering .c-note-list__item:last-child {
  border-bottom: unset;
}
.o-pmvv .u-numbering .c-note-list__item::before {
  content: counter(note-counter);
  color: var(--color-bland);
  font-size: 2rem;
  line-height: 1.35;
}
.o-pmvv__vision {
  display: flex;
  align-items: center;
  gap: 60px;
}
@media screen and (max-width: 1200px) {
  .o-pmvv__vision {
    display: block;
  }
  .o-pmvv__vision img {
    text-align: center;
    display: block;
    margin: 0 auto 40px;
  }
}
.o-pmvv__value .u-numbering .c-note-list__item {
  padding-left: 5.5rem;
}
.o-pmvv__value .u-numbering .c-note-list__item::before {
  font-size: 6.5rem;
  opacity: 0.2;
  line-height: 1;
}

.o-mission__title {
  font-size: 2.5rem;
  color: var(--color-bland);
  letter-spacing: 5px;
  font-weight: bold;
}

.o-mission__text {
  font-size: 1.1rem;
}
.o-mission__text strong {
  color: var(--color-bland);
}

.o-interview__list {
  gap: 32px;
}
.o-interview__list .p-cardList__item {
  box-shadow: unset;
}
.o-interview__list .p-cardList__content {
  background-color: unset;
  box-shadow: unset;
  padding: 1.5rem 0;
}
.o-interview__list .p-cardList__content h2 {
  color: var(--color-bland);
  font-size: 2rem;
}

html.u-show {
  height: 100svh;
  overflow: hidden;
  scrollbar-gutter: stable;
}

.o-career__sec img {
  min-width: 600px;
}

.modal-wrapper {
  z-index: 999;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 60px 10px;
  text-align: center;
}

.modal-wrapper:not(:target) {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.modal-wrapper:target {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s, visibility 0.4s;
}

.modal-wrapper::after {
  display: inline-block;
  height: 100%;
  margin-left: -0.05em;
  vertical-align: middle;
  content: "";
}

.modal-wrapper .modal-window {
  box-sizing: border-box;
  display: inline-block;
  z-index: 20;
  position: relative;
  width: 70%;
  max-width: 600px;
  padding: 30px 30px 15px;
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
  vertical-align: middle;
}

.modal-wrapper .modal-window .modal-content {
  max-height: 80vh;
  overflow-y: auto;
}

.modal-overlay {
  z-index: 10;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
}

.modal-wrapper .modal-close {
  z-index: 20;
  position: absolute;
  top: 0;
  right: 0;
  width: 35px;
  color: #95979c !important;
  font-size: 20px;
  font-weight: 700;
  line-height: 35px;
  text-align: center;
  text-decoration: none;
  text-indent: 0;
}

.modal-wrapper .modal-close:hover {
  color: #2b2e38 !important;
}

.modal__fv {
  cursor: pointer;
}
.modal__fv img {
  transition: all 0.4s ease;
}
.modal__fv img:hover {
  opacity: 0.8;
}
.modal__fv img.p-mainHero__image__fv001:hover {
  top: 24%;
}
@media screen and (max-width: 1200px) {
  .modal__fv img.p-mainHero__image__fv001:hover {
    top: 1%;
  }
}
@media screen and (max-width: 900px) {
  .modal__fv img.p-mainHero__image__fv001:hover {
    top: 8%;
  }
}
@media screen and (max-width: 767px) {
  .modal__fv img.p-mainHero__image__fv001:hover {
    top: 14%;
  }
}
.modal__fv img.p-mainHero__image__fv002:hover {
  top: 30%;
}
@media screen and (max-width: 1200px) {
  .modal__fv img.p-mainHero__image__fv002:hover {
    top: 4%;
  }
}
@media screen and (max-width: 900px) {
  .modal__fv img.p-mainHero__image__fv002:hover {
    top: 11%;
  }
}
@media screen and (max-width: 450px) {
  .modal__fv img.p-mainHero__image__fv002:hover {
    top: 17%;
  }
}
.modal__fv img.p-mainHero__image__fv003:hover {
  bottom: 20%;
}
@media screen and (max-width: 1200px) {
  .modal__fv img.p-mainHero__image__fv003:hover {
    bottom: 20%;
  }
}
@media screen and (max-width: 767px) {
  .modal__fv img.p-mainHero__image__fv003:hover {
    bottom: 24%;
  }
}
.modal__fv img.p-mainHero__image__fv004:hover {
  top: 60%;
}
@media screen and (max-width: 1520px) {
  .modal__fv img.p-mainHero__image__fv004:hover {
    top: 64%;
  }
}
@media screen and (max-width: 1200px) {
  .modal__fv img.p-mainHero__image__fv004:hover {
    top: 56%;
  }
}
@media screen and (max-width: 767px) {
  .modal__fv img.p-mainHero__image__fv004:hover {
    top: 50%;
  }
}
@media screen and (max-width: 520px) {
  .modal__fv img.p-mainHero__image__fv004:hover {
    top: 60%;
  }
}

#msg a {
  display: inline-block;
  color: #fff;
  background: #CE5D8B;
  border-radius: 20px;
  padding: 0.5em 1.5em;
  text-decoration: none;
}

#msg a:hover {
  opacity: 0.7;
}

article h2 {
  margin-top: 5rem;
}
article h2:first-child {
  margin-top: 0;
}
article h3 {
  margin-top: 2.5rem;
}
article .c-faqList__item__question__text {
  margin-top: 0;
}

/* --------------------------------------------------------- */
/* --------------------------------------------------------- */
html {
  overflow-x: hidden;
  font-size: var(--rem__pc);
  line-height: 1.9;
  color: var(--color-font);
}
@media screen and (max-width: 767px) {
  html {
    font-size: var(--rem__sp);
  }
}

body {
  font-family: var(--font_sansserif);
  font-style: normal;
  position: relative;
}
body::before {
  content: "";
  background-color: #FEFBF4;
  width: 100svw;
  height: 100svh;
  position: fixed;
  z-index: 0;
}

main {
  position: relative;
  z-index: 1;
}

p, li, a {
  font-size: var(--rem__pc);
  letter-spacing: 0.025rem;
}
@media screen and (max-width: 767px) {
  p, li, a {
    font-size: var(--rem__sp);
  }
}

strong {
  color: var(--color-accent);
}

small {
  color: var(--color-annotation);
}

/* ========================================================= */
/* Loading背景画面設定　*/
#splash {
  /*fixedで全面に固定*/
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  background: var(--bg-color);
  text-align: center;
  color: #fff;
  top: 0;
  /* Loading画像中央配置　*/
}
#splash #splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#splash #splash_logo img {
  width: 260px;
}
#splash #splash_logo #counter {
  color: var(--font-color);
  margin-top: 16px;
}

.--color-bland {
  background: var(--color-bland);
}

.--color-bland-dark {
  background: var(--color-bland-dark);
}

.--color-font {
  background: var(--color-font);
}

.--color-sub {
  background: var(--color-sub);
}

.--color-sub-light {
  background: var(--color-sub-light);
}

.--color-sub-dark {
  background: var(--color-sub-dark);
}

.--color-border {
  background: var(--color-border);
}

.--color-accent {
  background: var(--color-accent);
}

.--color-accent-dark {
  background: var(--color-accent-dark);
}

.--color-accent-gradation {
  background: var(--color-accent-gradation);
}

.--color-success {
  background: var(--color-success);
}

.--color-error {
  background: var(--color-error);
}

.--color-link {
  background: var(--color-link);
}

.--color-line {
  background: var(--color-line);
}

.--color-line-dark {
  background: var(--color-line-dark);
}

.--radius__lg {
  border-radius: var(--radius__lg);
}/*# sourceMappingURL=style.css.map */