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

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

ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

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

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

del {
  text-decoration: line-through;
}

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

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

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

input,
select {
  vertical-align: middle;
}

button {
  background-color: transparent;
  cursor: pointer;
}

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

/*------------------------------------------------------------------------------
  base
------------------------------------------------------------------------------*/
html {
  font-size: 62.5%;
  scroll-padding-top: 11.5rem;
}
@media screen and (max-width: 767px) {
  html {
    scroll-padding-top: 8rem;
  }
}

body {
  color: #333;
  font-size: 1.6rem;
  font-weight: normal;
  font-style: normal;
  line-height: 1.7;
  letter-spacing: 0.05em;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #fff;
  margin: 0;
}
@media screen and (max-width: 900px) {
  body {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.3rem;
  }
}

img {
  border: 0;
  margin: 0;
  vertical-align: bottom;
  max-width: 100%;
  -webkit-user-drag: none;
}

p {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

a {
  color: #333;
  text-decoration: none;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
a:hover {
  opacity: 0.85;
}

.object_cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.object_contain {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

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

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

/*------------------------------------------------------------------------------
  common
------------------------------------------------------------------------------*/
#wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  overflow: hidden;
}

.l-main {
  display: block;
  background-color: transparent;
}

#wrapper .l-main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.l-main__common-container {
  margin: 13.6rem 0 18.4rem;
}
@media screen and (max-width: 767px) {
  .l-main__common-container {
    margin: 7.2rem 0 9.6rem;
  }
}

.l-main__section {
  margin-bottom: 18.4rem;
}
@media screen and (max-width: 767px) {
  .l-main__section {
    margin-bottom: 9.6rem;
  }
}

.l-main__section-contents {
  margin-top: 7.2rem;
}
@media screen and (max-width: 767px) {
  .l-main__section-contents {
    margin-top: 4rem;
  }
}

/*------------------------------------------------------------------------------
  l-header
------------------------------------------------------------------------------*/
.l-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
}
@media screen and (max-width: 1023px) {
  .l-header {
    height: 8.2rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header {
    height: 7.2rem;
  }
}
.l-header.is-bgc {
  background-color: rgba(255, 255, 255, 0.98);
}

.l-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding: 1.2rem 4rem;
}
@media screen and (max-width: 1140px) {
  .l-header__inner {
    padding: 1.2rem 2rem;
  }
}
@media screen and (max-width: 1023px) {
  .l-header__inner {
    padding: 0 0 0 2rem;
  }
}

.l-header__logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 16.4rem;
          flex: 0 1 16.4rem;
  margin-right: 1.6rem;
}
@media screen and (max-width: 1140px) {
  .l-header__logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 13.6rem;
            flex: 0 1 13.6rem;
  }
}
@media screen and (max-width: 1023px) {
  .l-header__logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 12rem;
            flex: 0 1 12rem;
    padding: 1.4rem 0;
  }
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 10rem;
            flex: 0 1 10rem;
  }
}
.l-header__logo a {
  display: block;
}
.l-header__logo a :hover {
  opacity: 0.75;
}

.l-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 0.8rem;
}
@media screen and (max-width: 1023px) {
  .l-header__nav {
    position: fixed;
    top: 0;
    right: 0;
    opacity: 0;
    z-index: -99;
    width: 100%;
    height: 100vh;
    background-color: #F6F6F6;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    visibility: hidden;
    overflow-y: scroll;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 10rem 0 4rem;
    clip-path: inset(0 0 100% 100%);
    margin-top: 0;
  }
  .l-header__nav.open {
    display: block;
    opacity: 1;
    visibility: visible;
    z-index: 99;
    clip-path: inset(0 0 0 0);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
}
@media screen and (max-width: 767px) {
  .l-header__nav {
    padding-top: 8rem;
  }
}

.l-header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 0 4rem;
  margin-right: 4rem;
}
@media screen and (max-width: 1140px) {
  .l-header__nav-list {
    gap: 0 2.4rem;
    margin-right: 2.4rem;
  }
}
@media screen and (max-width: 1023px) {
  .l-header__nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    gap: 0;
    margin-right: 0;
    margin-bottom: 3.2rem;
  }
}

@media screen and (max-width: 767px) {
  .l-header__nav-item {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-bottom: 1px solid #E0E0E0;
    position: relative;
  }
  .l-header__nav-item::after {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 1rem;
    width: 3rem;
    height: 0.6rem;
    background-image: url(../img/arrow-black.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
  }
  .l-header__nav-item.sp {
    display: block !important;
  }
}

@media screen and (max-width: 1023px) {
  .l-header__nav-item {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-bottom: 1px solid #E0E0E0;
    position: relative;
  }
  .l-header__nav-item::after {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 1rem;
    width: 1.8rem;
    height: 0.9rem;
    background-image: url(../img/caret-black-R.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
  }
  .l-header__nav-item.sp {
    display: block !important;
  }
}

.l-header__nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  color: #333;
  text-decoration: none;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
}
@media screen and (max-width: 1023px) {
  .l-header__nav-link {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 2.4rem 1.6rem;
  }
}
.l-header__nav-link:hover {
  opacity: 0.8;
}

.l-header__nav-text-en {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-family: "Jost", sans-serif;
  text-transform: uppercase;
}
@media screen and (max-width: 1140px) {
  .l-header__nav-text-en {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 1023px) {
  .l-header__nav-text-en {
    font-size: 2rem;
    margin-right: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header__nav-text-en {
    font-size: 1.9rem;
    margin-right: 1.4rem;
  }
}

.l-header__nav-text-ja {
  font-size: 1.2rem;
  font-weight: normal;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
@media screen and (max-width: 1140px) {
  .l-header__nav-text-ja {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header__nav-text-ja {
    letter-spacing: 0.05em;
  }
}

.l-header__btn {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 18rem;
          flex: 0 0 18rem;
  color: #fff;
  font-size: 1.7rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.12em;
  font-family: "Jost", sans-serif;
  text-transform: uppercase;
  width: 18rem;
  height: 5rem;
  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;
  border-radius: 4.8rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #1D1D1D;
  background-color: #1D1D1D;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1140px) {
  .l-header__btn {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16rem;
            flex: 0 0 16rem;
    font-size: 1.6rem;
    height: 4.8rem;
  }
}
@media screen and (max-width: 1023px) {
  .l-header__btn {
    letter-spacing: 0.15em;
    width: 30rem;
    height: 5.2rem;
    margin: 0 auto;
  }
}
.l-header__btn:hover {
  background-color: #fff;
  color: #1D1D1D;
}

/*------------------------------------------------------------------------------
  l-footer
------------------------------------------------------------------------------*/
.l-footer {
  background-color: #1D1D1D;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 13.6rem 0 2.4rem;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding: 9.6rem 0 2rem;
  }
}

.l-footer__logo {
  max-width: 35.6rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .l-footer__logo {
    max-width: 24rem;
    margin-bottom: 3.2rem;
  }
}
.l-footer__logo a {
  display: block;
}
.l-footer__logo a:hover {
  opacity: 0.75;
}

.l-footer__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  .l-footer__contents {
    display: block;
    margin-bottom: 2.8rem;
  }
}

.l-footer__info {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-right: 2rem;
}
@media screen and (max-width: 767px) {
  .l-footer__info {
    display: block;
    padding-right: 0;
    margin-bottom: 3.2rem;
  }
}

.l-footer__address {
  font-weight: normal;
  letter-spacing: 0.1em;
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 767px) {
  .l-footer__address {
    font-size: 1.4rem;
    margin-bottom: 1.6rem;
  }
}
.l-footer__address p:not(:last-child) {
  margin-bottom: 1em;
}
.l-footer__address .--sm {
  font-size: 1.4rem;
  line-height: 1.5;
  display: block;
  margin-top: 0.8rem;
}
@media screen and (max-width: 767px) {
  .l-footer__address .--sm {
    font-size: 1.2rem;
    margin-top: 0.4rem;
  }
}

.l-footer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 2.4rem;
}
@media screen and (max-width: 767px) {
  .l-footer__sns {
    gap: 0 2rem;
  }
}

.l-footer__sns-link {
  display: block;
}
.l-footer__sns-link.--x {
  max-width: 2.4rem;
}

.l-footer__link {
  color: #fff;
  font-size: 1.4rem;
  font-weight: normal;
  display: inline-block;
  margin-top: auto;
}
@media screen and (max-width: 767px) {
  .l-footer__link {
    font-size: 1.1rem;
    margin-bottom: 4.8rem;
  }
}
.l-footer__link:hover {
  opacity: 0.75;
  text-decoration: underline;
}

.l-footer__nav {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 6.4rem 1fr 6.4rem 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem 6.4rem;
}
@media screen and (max-width: 900px) {
  .l-footer__nav {
    gap: 3.2rem 2rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__nav {
    gap: 2rem 1.6rem;
    -ms-grid-columns: 1fr 1.6rem 1fr;
    grid-template-columns: repeat(2, 1fr);
  }
}

.l-footer__nav-link {
  color: #fff;
  font-weight: bold;
  display: inline-block;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .l-footer__nav-link {
    font-size: 1.4rem;
  }
}
.l-footer__nav-link:hover {
  opacity: 0.75;
  text-decoration: underline;
}

.l-footer__nav-child {
  margin-top: 0.4rem;
}

.l-footer__nav-child-item:not(:last-child) {
  margin-bottom: 0.6rem;
}
@media screen and (max-width: 767px) {
  .l-footer__nav-child-item:not(:last-child) {
    margin-bottom: 0.3rem;
  }
}
.l-footer__nav-child-item a {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-decoration: none;
  padding-left: 1.5em;
  position: relative;
  display: inline-block;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 900px) {
  .l-footer__nav-child-item a {
    font-size: 1.3rem;
    line-height: 1.85;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__nav-child-item a {
    font-size: 1.2rem;
    padding-left: 1.3em;
  }
}
.l-footer__nav-child-item a::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  background-color: #fff;
  width: 12px;
  height: 1px;
}
@media screen and (max-width: 767px) {
  .l-footer__nav-child-item a::before {
    top: 11px;
    width: 10px;
  }
}
.l-footer__nav-child-item a:hover {
  opacity: 0.75;
  text-decoration: underline;
}

.l-footer__copyright {
  color: #fff;
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 1.2;
  letter-spacing: 0.15em;
  font-family: "Jost", sans-serif;
  text-align: center;
  display: block;
}
@media screen and (max-width: 767px) {
  .l-footer__copyright {
    font-size: 1.2rem;
  }
}

/*------------------------------------------------------------------------------
  sidebar
------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------
  l-common-contact
------------------------------------------------------------------------------*/
.l-common-contact {
  background-image: url(../img/common-contact-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 16rem 0;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .l-common-contact {
    padding: 8.8rem 0;
  }
}

.l-common-contact__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: 4.8rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 900px) {
  .l-common-contact__contents {
    display: block;
    margin-top: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .l-common-contact__contents {
    margin-top: 3.2rem;
  }
}

.l-common-contact__text {
  font-size: 1.7rem;
  line-height: 2.2;
  letter-spacing: 0.05em;
  margin-right: 6rem;
}
@media screen and (max-width: 900px) {
  .l-common-contact__text {
    font-size: 1.4rem;
    margin: 0 0 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .l-common-contact__text {
    line-height: 2;
    margin-bottom: 2.4rem;
  }
}

.l-common-contact__bg-text-wrap {
  position: absolute;
  bottom: -5rem;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .l-common-contact__bg-text-wrap {
    bottom: -3.2rem;
  }
}

.l-common-contact__bg-text-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  will-change: transform;
  -webkit-animation: scrollText 25s linear infinite;
          animation: scrollText 25s linear infinite;
}
@media screen and (max-width: 767px) {
  .l-common-contact__bg-text-track {
    -webkit-animation: scrollText 18s linear infinite;
            animation: scrollText 18s linear infinite;
  }
}

.l-common-contact__bg-text {
  color: #fff;
  font-size: 32.6rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
  font-family: "Jost", sans-serif;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  padding-right: 10rem;
  opacity: 0.5;
}
@media screen and (max-width: 767px) {
  .l-common-contact__bg-text {
    font-size: 22rem;
    padding-right: 7rem;
  }
}

@-webkit-keyframes scrollText {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0);
  }
}

@keyframes scrollText {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0);
  }
}
/*------------------------------------------------------------------------------
  c-inner
------------------------------------------------------------------------------*/
.c-inner {
  max-width: 114rem;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 2rem;
}

.c-inner--sm {
  max-width: 94rem;
}

.c-inner--md {
  max-width: 104rem;
}

.c-inner--lg {
  max-width: 124rem;
}

/*------------------------------------------------------------------------------
  c-btn
------------------------------------------------------------------------------*/
.c-btn {
  color: #fff;
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.05em;
  font-family: "Jost", sans-serif;
  width: 100%;
  background-color: #1D1D1D;
  max-width: 23.2rem;
  height: 5.4rem;
  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-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #1D1D1D;
  border-radius: 4.8rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-btn {
    font-size: 1.5rem;
    max-width: 22.6rem;
    height: 5rem;
  }
}
.c-btn:hover {
  color: #1D1D1D;
  background-color: #fff;
}
.c-btn:hover .c-btn__icon {
  stroke: #1D1D1D;
}

.c-btn--ja {
  font-family: "Noto Sans JP", sans-serif;
}

.c-btn__icon {
  position: absolute;
  top: 50%;
  right: 2rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.8rem;
  stroke: #fff;
  fill: transparent;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-btn__icon {
    right: 1.6rem;
    width: 0.7rem;
  }
}

.c-btn--white {
  color: #1D1D1D;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 4.8rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}
.c-btn--white:hover {
  color: #fff;
  background-color: #1D1D1D;
}
.c-btn--white:hover .c-btn__icon {
  stroke: #fff;
}
.c-btn--white .c-btn__icon {
  stroke: #1D1D1D;
}

/*------------------------------------------------------------------------------
  c-title
------------------------------------------------------------------------------*/
.c-title__en {
  color: #1D1D1D;
  font-size: 7.2rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.07em;
  font-family: "Jost", sans-serif;
  text-transform: uppercase;
}
@media screen and (max-width: 900px) {
  .c-title__en {
    font-size: 5.6rem;
  }
}
@media screen and (max-width: 767px) {
  .c-title__en {
    font-size: 4.8rem;
  }
}

.js-titleAnim {
  visibility: hidden;
}
.js-titleAnim span {
  visibility: visible;
  display: inline-block;
  opacity: 0;
  -webkit-transform: translateY(34px);
          transform: translateY(34px);
  -webkit-transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 1s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 1s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 1s cubic-bezier(0.25, 1, 0.5, 1);
  -webkit-transition-delay: var(--delay, 0s);
          transition-delay: var(--delay, 0s);
}
@media screen and (max-width: 767px) {
  .js-titleAnim span {
    -webkit-transform: translateY(22px);
            transform: translateY(22px);
  }
}
.js-titleAnim.is-active span {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.js-titleAnim.is-no-anim span {
  -webkit-transition: none !important;
  transition: none !important;
  -webkit-transition-delay: 0s !important;
          transition-delay: 0s !important;
  opacity: 1 !important;
  -webkit-transform: translateY(0) !important;
          transform: translateY(0) !important;
}

.c-title__ja {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 900px) {
  .c-title__ja {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .c-title__ja {
    font-size: 1.4rem;
  }
}

.c-title--md .c-title__en {
  font-size: 6.4rem;
}
@media screen and (max-width: 900px) {
  .c-title--md .c-title__en {
    font-size: 5.6rem;
  }
}
@media screen and (max-width: 767px) {
  .c-title--md .c-title__en {
    font-size: 4.4rem;
  }
}
.c-title--md .c-title__ja {
  font-size: 1.7rem;
}
@media screen and (max-width: 900px) {
  .c-title--md .c-title__ja {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .c-title--md .c-title__ja {
    font-size: 1.4rem;
  }
}

.c-title--horizontal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .c-title--horizontal {
    display: block;
  }
}
.c-title--horizontal .c-title__en {
  margin-right: 2.4rem;
}
@media screen and (max-width: 767px) {
  .c-title--horizontal .c-title__en {
    margin-right: 0;
  }
}
.c-title--horizontal .c-title__ja {
  margin-bottom: 1.3rem;
}
@media screen and (max-width: 767px) {
  .c-title--horizontal .c-title__ja {
    margin-bottom: 0;
  }
}

/*------------------------------------------------------------------------------
  c-title02
------------------------------------------------------------------------------*/
.c-title02__en {
  color: #828282;
  font-size: 1.7rem;
  font-weight: normal;
  line-height: 1;
  letter-spacing: 0.1em;
  font-family: "Jost", sans-serif;
  text-transform: uppercase;
  color: #828282;
}
@media screen and (max-width: 900px) {
  .c-title02__en {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .c-title02__en {
    font-size: 1.3rem;
  }
}

.c-title02__ja {
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 900px) {
  .c-title02__ja {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 767px) {
  .c-title02__ja {
    font-size: 2.4rem;
  }
}

/*------------------------------------------------------------------------------
  c-title03
------------------------------------------------------------------------------*/
.c-title03 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-title03__en {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 4rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.1em;
  font-family: "Jost", sans-serif;
  text-transform: uppercase;
  margin-right: 1.6rem;
  -webkit-box-ordinal-group: -1;
      -ms-flex-order: -2;
          order: -2;
}
@media screen and (max-width: 767px) {
  .c-title03__en {
    font-size: 2.6rem;
    letter-spacing: 0.05em;
    margin-right: 1rem;
  }
}

.c-title03__ja {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-bottom: 0.6rem;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}
@media screen and (max-width: 767px) {
  .c-title03__ja {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
  }
}

.c-title03--line {
  position: relative;
}
.c-title03--line::before {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  position: relative;
  bottom: 16px;
  left: 0;
  width: 100%;
  height: 1px;
  display: block;
  background-color: #ddd;
  margin-left: 2rem;
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
  -ms-flex-item-align: end;
      align-self: flex-end;
}
@media screen and (max-width: 767px) {
  .c-title03--line::before {
    bottom: 11px;
    margin-left: 1rem;
  }
}

/*------------------------------------------------------------------------------
  c-burger-btn
------------------------------------------------------------------------------*/
.c-burger-btn {
  display: none;
}
@media screen and (max-width: 1023px) {
  .c-burger-btn {
    display: block;
    border: none;
    cursor: pointer;
    position: relative;
    top: 0px;
    z-index: 999;
    background-color: #1D1D1D;
    padding: 1.2rem 2.4rem;
    height: 8.2rem;
    margin-left: auto;
    /* ハンバーガーメニューが開いたとき */
  }
  .c-burger-btn.cross .c-burger-btn__bar--top {
    -webkit-transition-delay: 40ms;
            transition-delay: 40ms;
    -webkit-transform: translateY(9px) rotate(135deg);
            transform: translateY(9px) rotate(135deg);
  }
  .c-burger-btn.cross .c-burger-btn__bar--mid {
    -webkit-transition-delay: 120ms;
            transition-delay: 120ms;
    -webkit-transform: translateX(-15px) scaleX(0);
            transform: translateX(-15px) scaleX(0);
  }
  .c-burger-btn.cross .c-burger-btn__bar--bottom {
    -webkit-transition-delay: 20ms;
            transition-delay: 20ms;
    -webkit-transform: translateY(-9px) rotate(-135deg);
            transform: translateY(-9px) rotate(-135deg);
  }
}
@media screen and (max-width: 767px) {
  .c-burger-btn {
    height: 7.2rem;
    padding: 1.2rem 2rem;
  }
}

.c-burger-btn__bar {
  margin: 0 auto;
  display: block;
  height: 1px;
  width: 3.6rem;
  border-radius: 0px;
  background-color: #fff;
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: -webkit-transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media screen and (max-width: 767px) {
  .c-burger-btn__bar {
    width: 3.2rem;
  }
}

.c-burger-btn__bar--top,
.c-burger-btn__bar--mid {
  margin-bottom: 8px;
}

/*------------------------------------------------------------------------------
  c-voice-card
------------------------------------------------------------------------------*/
.c-voice-card-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 103rem;
  gap: 0 6.2%;
}
@media screen and (max-width: 767px) {
  .c-voice-card-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3.2rem 0;
  }
}

.c-voice-card {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 29.2%;
          flex: 0 1 29.2%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .c-voice-card {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    max-width: 50rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.c-voice-card__img {
  width: 100%;
  margin: 0 auto 1.6rem;
}
@media screen and (max-width: 767px) {
  .c-voice-card__img {
    width: 80%;
    margin-bottom: 1.2rem;
  }
}

.c-voice-card__text {
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.9;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .c-voice-card__text {
    font-size: 1.3rem;
    line-height: 1.8;
    text-align: justify;
  }
}

/*------------------------------------------------------------------------------
  c-label
------------------------------------------------------------------------------*/
.c-label {
  font-weight: 500;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  padding: 0.5rem 1.6rem;
  border: 1px solid #333;
}

/*------------------------------------------------------------------------------
  c-fade-up - 汎用アニメーションクラス
------------------------------------------------------------------------------*/
.c-fade-up {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, -webkit-transform 0.8s ease-out;
}
.c-fade-up.is-active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.c-fade-up.is-no-anim {
  -webkit-transition: none !important;
  transition: none !important;
  opacity: 1 !important;
  -webkit-transform: translateY(0) !important;
          transform: translateY(0) !important;
}

/*------------------------------------------------------------------------------
  c-breadcrumb
------------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .c-breadcrumb.u-mt-2 {
    margin-top: 0.8rem !important;
  }
}

.c-breadcrumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.c-breadcrumb__item {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.c-breadcrumb__item:not(:last-child) {
  margin-right: 3.6rem;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb__item:not(:last-child) {
    margin-right: 3.2rem;
  }
}
.c-breadcrumb__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 16px;
  width: 12px;
  height: 1px;
  background-color: #4F4F4F;
  right: -24px;
}
@media screen and (max-width: 900px) {
  .c-breadcrumb__item:not(:last-child)::after {
    top: 13px;
  }
}
@media screen and (max-width: 767px) {
  .c-breadcrumb__item:not(:last-child)::after {
    width: 10px;
    right: -21px;
  }
}

.c-breadcrumb__link {
  color: #4F4F4F;
  font-size: 1.3rem;
  font-weight: normal;
  line-height: 1.3;
  letter-spacing: 0.02em;
  display: inline-block;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb__link {
    font-size: 1.1rem;
  }
}
.c-breadcrumb__link:hover {
  opacity: 0.8;
  text-decoration: underline;
}
.c-breadcrumb__link.--current {
  pointer-events: none;
}

/*------------------------------------------------------------------------------
  c-pagination
------------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .c-pagination.u-mt-8 {
    margin-top: 4rem !important;
  }
}
.c-pagination .page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-pagination .page-numbers li {
  margin: 0 0.6rem;
}
@media screen and (max-width: 767px) {
  .c-pagination .page-numbers li {
    margin: 0 0.3rem;
  }
}
.c-pagination .page-numbers span,
.c-pagination .page-numbers a {
  font-size: 1.6rem;
  font-weight: 600;
  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;
  color: #1D1D1D;
  font-family: "Jost", sans-serif;
  background-color: #fff;
  text-decoration: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 43px;
  height: 43px;
  border-radius: 1px;
  border: 1px solid #1D1D1D;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  padding-top: 1px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .c-pagination .page-numbers span,
  .c-pagination .page-numbers a {
    font-size: 1.4rem;
    width: 34px;
    height: 34px;
  }
}
.c-pagination .page-numbers span.current,
.c-pagination .page-numbers a.current {
  pointer-events: none;
}
.c-pagination .page-numbers span.current, .c-pagination .page-numbers span:hover,
.c-pagination .page-numbers a.current,
.c-pagination .page-numbers a:hover {
  color: #fff;
  background-color: #1D1D1D;
  opacity: 1;
}
.c-pagination .page-numbers .dots {
  font-weight: normal;
  pointer-events: none;
  border: none;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 1.25rem;
  background-color: transparent;
}
@media screen and (max-width: 767px) {
  .c-pagination .page-numbers .dots {
    width: 26px;
  }
}
.c-pagination .page-numbers .prev,
.c-pagination .page-numbers .next {
  font-size: 1.4rem;
  font-weight: 300;
  font-family: "Jost", sans-serif;
}
@media screen and (max-width: 767px) {
  .c-pagination .page-numbers .prev,
  .c-pagination .page-numbers .next {
    font-size: 1.3rem;
  }
}

/*------------------------------------------------------------------------------
  c-prose
------------------------------------------------------------------------------*/
.c-prose h2 {
  color: #1D1D1D;
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.6;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 2rem;
  border-left: 4px solid #1D1D1D;
}
.c-prose h2[style*="text-align: center"], .c-prose h2.has-text-align-center {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.c-prose h2[style*="text-align: right"], .c-prose h2.has-text-align-right {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
@media screen and (max-width: 900px) {
  .c-prose h2 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .c-prose h2 {
    font-size: 1.8rem;
    line-height: 1.5;
    border-width: 3px;
    padding-left: 1.2rem;
  }
}
.c-prose h3 {
  font-size: 2.4rem;
  font-weight: bold;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #E0E0E0;
}
@media screen and (max-width: 767px) {
  .c-prose h3 {
    font-size: 1.7rem;
  }
}
.c-prose h4 {
  font-size: 2.2rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .c-prose h4 {
    font-size: 1.6rem;
  }
}
.c-prose h5 {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .c-prose h5 {
    font-size: 1.5rem;
  }
}
.c-prose h2,
.c-prose h3,
.c-prose h4,
.c-prose h5,
.c-prose a,
.c-prose p,
.c-prose ul,
.c-prose ol,
.c-prose dl,
.c-prose .wp-block-table,
.c-prose .wp-block-image,
.c-prose .wp-block-media-text,
.c-prose .wp-block-gallery {
  line-height: 2;
  margin: 1.5em 0;
}
.c-prose ul {
  list-style-type: disc;
  list-style-position: inside;
}
.c-prose ul li {
  text-indent: -1em;
  padding-left: 1em;
}
.c-prose ol {
  list-style-type: decimal;
  list-style-position: outside;
  padding-left: 1.2em;
}
.c-prose ol li {
  text-indent: 0;
  padding-left: 0.3em;
}
.c-prose a:not([class]) {
  color: #09099C;
  text-decoration: underline;
}
.c-prose .wp-block-table table {
  width: 100%;
  table-layout: auto;
}
.c-prose .wp-block-table td,
.c-prose .wp-block-table th {
  min-width: 7rem;
  width: auto;
}
@media screen and (max-width: 767px) {
  .c-prose .wp-block-table td,
  .c-prose .wp-block-table th {
    min-width: 3rem;
    white-space: normal;
  }
}
.c-prose table td:first-child,
.c-prose table th:first-child {
  min-width: 8rem;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .c-prose table td:first-child,
  .c-prose table th:first-child {
    min-width: 5rem;
    white-space: normal;
  }
}
.c-prose .wp-block-image.aligncenter {
  margin-inline: auto;
}
.c-prose .wp-block-image.alignright {
  margin-inline: auto 0;
}
.c-prose .wp-block-image.alignleft {
  margin-inline: 0 auto;
}
.c-prose .wp-block-image.alignnone {
  margin-inline: 0;
}
.c-prose figure.wp-block-image.aligncenter {
  margin-inline: auto;
}
.c-prose figure.wp-block-image.alignright {
  margin-inline: auto 0;
}
.c-prose figure.wp-block-image.alignleft {
  margin-inline: 0 auto;
}
.c-prose figure.wp-block-image.alignnone {
  margin-inline: 0;
}
.c-prose img.aligncenter {
  margin-inline: auto;
  display: block;
}
.c-prose img.alignright {
  margin-inline: auto 0;
  display: block;
}
.c-prose img.alignleft {
  margin-inline: 0 auto;
  display: block;
}

/*------------------------------------------------------------------------------
  c-info-list
------------------------------------------------------------------------------*/
.c-info-list {
  margin: 0 auto;
}

.c-info-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.c-info-list__item dt {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 22rem;
          flex: 0 0 22rem;
  font-weight: bold;
  border-bottom: 1px solid #1D1D1D;
  padding: 4rem 2rem 4rem 1.6rem;
}
@media screen and (max-width: 900px) {
  .c-info-list__item dt {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16rem;
            flex: 0 0 16rem;
  }
}
@media screen and (max-width: 767px) {
  .c-info-list__item dt {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 7.2rem;
            flex: 0 1 7.2rem;
    padding: 2.4rem 1.6rem;
  }
}
.c-info-list__item dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: 500;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: 1px solid #BDBDBD;
  padding: 4rem 1.6rem 4rem 3.2rem;
}
@media screen and (max-width: 767px) {
  .c-info-list__item dd {
    padding: 2.4rem 1.6rem;
  }
}
.c-info-list__item dd a {
  color: #2267C0;
  text-decoration: underline;
}
.c-info-list__item:first-child dt {
  border-top: 1px solid #1D1D1D;
}
.c-info-list__item:first-child dd {
  border-top: 1px solid #BDBDBD;
}

.c-info-list__map {
  margin-right: -1.6rem;
}
.c-info-list__map iframe {
  width: 100%;
  height: 34rem;
  vertical-align: bottom;
}
@media screen and (max-width: 767px) {
  .c-info-list__map iframe {
    height: 20rem;
  }
}

/*------------------------------------------------------------------------------
  c-anchor-nav
------------------------------------------------------------------------------*/
.c-anchor-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.6rem 2rem;
}
@media screen and (max-width: 767px) {
  .c-anchor-nav__list {
    gap: 0.75rem;
  }
}

.c-anchor-nav__link {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-decoration: none;
  background-color: #1D1D1D;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 1px;
  padding: 1rem 4.8rem 1rem 1.6rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-anchor-nav__link {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(50% - 0.375rem);
            flex: 0 1 calc(50% - 0.375rem);
    font-size: 1.2rem;
    padding: 1rem 2.8rem 1rem 1.2rem;
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
}
.c-anchor-nav__link:hover::after {
  top: 55%;
}
.c-anchor-nav__link::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 10px;
  width: 18px;
  height: 13px;
  background-image: url(../img/caret-white-B.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

/*------------------------------------------------------------------------------
  c-menu-card
------------------------------------------------------------------------------*/
.c-menu-card-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3.2rem;
}
@media screen and (max-width: 767px) {
  .c-menu-card-wrap {
    gap: 2rem 4%;
  }
}

.c-menu-card {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc((100% - 9.6rem) / 4);
          flex: 0 1 calc((100% - 9.6rem) / 4);
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-menu-card {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 48%;
            flex: 0 1 48%;
  }
}

.c-menu-card__img {
  margin-bottom: 1.2rem;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c-menu-card__img {
    margin-bottom: 0.8rem;
  }
}
.c-menu-card__img > img {
  aspect-ratio: 1/1;
  border-radius: 4px;
}
@media screen and (max-width: 767px) {
  .c-menu-card__img > img {
    border-radius: 2px;
  }
}

.c-menu-card__zoom {
  position: absolute;
  right: -7px;
  bottom: -7px;
  width: 43px;
  height: 43px;
  background-color: #1D1D1D;
  border-radius: 50%;
  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;
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .c-menu-card__zoom {
    width: 36px;
    height: 36px;
  }
}
.c-menu-card__zoom:hover {
  opacity: 0.9;
}
.c-menu-card__zoom img {
  width: 18px;
  height: 20px;
  margin-right: 0.3rem;
}
@media screen and (max-width: 767px) {
  .c-menu-card__zoom img {
    width: 16px;
    height: 18px;
  }
}

.c-menu-card__title {
  color: #1D1D1D;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.02em;
  margin-bottom: 0.4rem;
}
@media screen and (max-width: 767px) {
  .c-menu-card__title {
    font-size: 1.25rem;
    line-height: 1.5;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
    text-align: left;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 0.4rem;
  }
}

.c-menu-card__price {
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.01em;
  font-family: "Jost", sans-serif;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-menu-card__price {
    font-size: 1.8rem;
  }
}
.c-menu-card__price span {
  font-size: 1.4rem;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  margin-left: 0.4rem;
}
@media screen and (max-width: 767px) {
  .c-menu-card__price span {
    font-size: 1.1rem;
    margin-left: 0.2rem;
  }
}

/*------------------------------------------------------------------------------
  c-modal
------------------------------------------------------------------------------*/
.c-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.c-modal.is-active {
  opacity: 1;
  visibility: visible;
}

.c-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}

.c-modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 90%;
  max-width: 60rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #fff;
  padding: 4.8rem 4rem;
  border-radius: 8px;
  max-height: 90vh;
  overflow-y: auto;
}
@media screen and (max-width: 767px) {
  .c-modal__content {
    border-radius: 6px;
    padding: 4rem 2rem 3.2rem;
  }
}

.c-modal__close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 2.8rem;
  background: none;
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .c-modal__close {
    top: 10px;
    right: 14px;
    font-size: 2.4rem;
  }
}

.c-modal__desc {
  font-size: 1.7rem;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .c-modal__desc {
    font-size: 1.3rem;
    line-height: 1.7;
  }
}

/*------------------------------------------------------------------------------
  c-menu-list
------------------------------------------------------------------------------*/
.c-menu-list--2col {
  display: block;
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
  -webkit-column-gap: 8rem;
     -moz-column-gap: 8rem;
          column-gap: 8rem;
  margin-bottom: -1.6rem;
}
@media screen and (max-width: 900px) {
  .c-menu-list--2col {
    -webkit-column-gap: 4rem;
       -moz-column-gap: 4rem;
            column-gap: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .c-menu-list--2col {
    -webkit-column-count: 1;
       -moz-column-count: 1;
            column-count: 1;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
}

.c-menu-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  -webkit-column-break-inside: avoid;
     -moz-column-break-inside: avoid;
          break-inside: avoid;
}
.c-menu-list__item:not(:last-child) {
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 767px) {
  .c-menu-list__item:not(:last-child) {
    margin-bottom: 1.2rem;
  }
}
.c-menu-list__item::after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  border-bottom: 1px solid #ddd;
  margin: 0 2.4rem;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  position: relative;
  top: -6px;
}
@media screen and (max-width: 900px) {
  .c-menu-list__item::after {
    margin: 0 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .c-menu-list__item::after {
    top: -4px;
    margin: 0 1.2rem;
  }
}

.c-menu-list__item--bottom {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.c-menu-list__item--bottom::after {
  margin: 0 2.4rem 0 1.6rem;
  top: -10px;
}
@media screen and (max-width: 900px) {
  .c-menu-list__item--bottom::after {
    margin: 0 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .c-menu-list__item--bottom::after {
    top: -8px;
    margin: 0 1.2rem;
  }
}

.c-menu-list__item-name {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #1D1D1D;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.02em;
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
}
@media screen and (max-width: 900px) {
  .c-menu-list__item-name {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .c-menu-list__item-name {
    font-size: 1.2rem;
  }
}
.c-menu-list__item-name .--sm {
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .c-menu-list__item-name .--sm {
    font-size: 1rem;
  }
}

.c-menu-list__item-price {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 2.6rem;
  font-weight: 600;
  font-family: "Jost", sans-serif;
  letter-spacing: 0.02em;
  line-height: 1.2;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media screen and (max-width: 900px) {
  .c-menu-list__item-price {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .c-menu-list__item-price {
    font-size: 1.8rem;
  }
}
.c-menu-list__item-price span {
  font-size: 1.4rem;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  vertical-align: 2.5px;
  margin-left: 0.3rem;
}
@media screen and (max-width: 900px) {
  .c-menu-list__item-price span {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .c-menu-list__item-price span {
    font-size: 1rem;
    margin-left: 0.2rem;
    vertical-align: 2px;
  }
}

/*------------------------------------------------------------------------------
  p-mv
------------------------------------------------------------------------------*/
.p-mv {
  margin-top: 11.2rem;
}
@media screen and (max-width: 1140px) {
  .p-mv {
    margin-top: 10rem;
  }
}
@media screen and (max-width: 1023px) {
  .p-mv {
    margin-top: 8.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-mv {
    margin-top: 7.2rem;
  }
}

.p-mv__inner {
  max-width: 100%;
  padding: 0 4rem;
  position: relative;
}
@media screen and (max-width: 1140px) {
  .p-mv__inner {
    padding: 0 2rem;
  }
}
@media screen and (max-width: 1023px) {
  .p-mv__inner {
    padding: 0;
  }
}

.p-mv__video {
  width: 100%;
  height: calc(100vh - 15.2rem);
}
@media screen and (max-width: 1140px) {
  .p-mv__video {
    height: 88vw;
  }
}

.p-mv__title {
  position: absolute;
  bottom: 10.4rem;
  left: 8rem;
  color: #fff;
  text-shadow: -5px -5px 15px rgba(0, 0, 0, 0.12), 5px 5px 13px rgba(0, 0, 0, 0.13);
  z-index: 9;
}
@media screen and (max-width: 1140px) {
  .p-mv__title {
    left: 4.4rem;
    bottom: 3.2rem;
  }
}
@media screen and (max-width: 1023px) {
  .p-mv__title {
    left: 2rem;
  }
}

.p-mv__title-ja {
  font-size: 4.2rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.14em;
  margin-bottom: 1rem;
}
@media screen and (max-width: 1140px) {
  .p-mv__title-ja {
    font-size: 3.8rem;
    margin-bottom: 0.6rem;
  }
}
.p-mv__title-ja span {
  font-size: 4rem;
}
@media screen and (max-width: 1140px) {
  .p-mv__title-ja span {
    font-size: 3.6rem;
  }
}

.p-mv__title-en {
  font-size: 1.8rem;
  font-weight: normal;
  font-style: italic;
  line-height: 1.8;
  letter-spacing: 0.15em;
  font-family: "Jost", sans-serif;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 3.2rem;
  position: relative;
}
.p-mv__title-en::after {
  content: "";
  background-color: #fff;
  width: 6.4rem;
  height: 1px;
  display: inline-block;
  margin-left: 1.6rem;
}

/*------------------------------------------------------------------------------
  p-home-about
------------------------------------------------------------------------------*/
.p-home-about {
  padding-top: 23.4rem;
  margin-bottom: 23.8rem;
}
@media screen and (max-width: 767px) {
  .p-home-about {
    padding-top: 12rem;
    margin-bottom: 9.6rem;
  }
}

.p-home-about__inner {
  position: relative;
}
.p-home-about__inner::before {
  content: "";
  position: absolute;
  bottom: -5rem;
  left: -5.6rem;
  background-image: url(../img/logo-bg.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 85.6rem;
  height: 115.8rem;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-home-about__inner::before {
    bottom: auto;
    top: -58vw;
    left: -3vw;
    width: 133vw;
    height: 240vw;
  }
}

.p-home-about__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-home-about__contents {
    display: block;
    max-width: 55rem;
  }
}

.p-home-about__text-wrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 47.3%;
          flex: 0 1 47.3%;
  margin-top: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-home-about__text-wrap {
    margin: 0 0 3.2rem;
  }
}

.p-home-about__lead {
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 7.2rem 0 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-home-about__lead {
    font-size: 2.2rem;
    margin: 3.6rem 0 2.4rem;
  }
}

.p-home-about__texts {
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 2.2;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .p-home-about__texts {
    font-size: 1.3rem;
    line-height: 2;
    margin-bottom: 2.4rem;
  }
}
.p-home-about__texts p:not(:last-child) {
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-home-about__texts p:not(:last-child) {
    margin-bottom: 1.2rem;
  }
}

.p-home-about__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 45.2%;
          flex: 0 1 45.2%;
}

/*------------------------------------------------------------------------------
  p-home-links
------------------------------------------------------------------------------*/
.p-home-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-home-links {
    display: block;
  }
}

.p-home-links__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  width: 50%;
  height: auto;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
}
@media screen and (max-width: 767px) {
  .p-home-links__item {
    width: 100%;
  }
}

.p-home-links__contents {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
  padding: 14rem 4rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 900px) {
  .p-home-links__contents {
    padding: 11.2rem 4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-home-links__contents {
    padding: 7.2rem 3.2rem;
  }
}
.p-home-links__contents:hover {
  opacity: 1;
}
.p-home-links__contents::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: calc(100% - 6rem);
  height: calc(100% - 6rem);
  border: 2px solid #fff;
  z-index: 0;
  pointer-events: none;
}
@media screen and (max-width: 900px) {
  .p-home-links__contents::before {
    width: calc(100% - 4rem);
    height: calc(100% - 4rem);
  }
}
@media screen and (max-width: 767px) {
  .p-home-links__contents::before {
    width: calc(100% - 2.4rem);
    height: calc(100% - 2.4rem);
    border-width: 1px;
  }
}

.p-home-links__item-text {
  color: #fff;
  font-size: 1.7rem;
  line-height: 2.2;
  text-align: center;
  margin: 4.8rem 0;
}
@media screen and (max-width: 1140px) {
  .p-home-links__item-text {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 900px) {
  .p-home-links__item-text {
    font-size: 1.4rem;
  }
  .p-home-links__item-text br {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .p-home-links__item-text {
    font-size: 1.2rem;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
    margin: 3.2rem 0 2.4rem;
  }
}

.p-home-links__bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.p-home-links__bg img {
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}
.p-home-links__contents:hover .p-home-links__bg img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

/*------------------------------------------------------------------------------
  p-home-voice
------------------------------------------------------------------------------*/
.p-home-voice {
  background-color: #F6F6F6;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 18rem 0 13rem;
}
@media screen and (max-width: 767px) {
  .p-home-voice {
    padding: 9.6rem 0 4rem;
  }
}

.p-home-voice__inner {
  position: relative;
}

.p-home-voice__list {
  margin: 7.2rem auto 0;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-home-voice__list {
    margin-top: 4rem;
  }
}

.p-home-voice__bg-text-wrap {
  position: relative;
  top: -6.4rem;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-home-voice__bg-text-wrap {
    top: -4rem;
  }
}

.p-home-voice__bg-text-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  will-change: transform;
  -webkit-animation: scrollText 22s linear infinite;
          animation: scrollText 22s linear infinite;
}
@media screen and (max-width: 767px) {
  .p-home-voice__bg-text-track {
    -webkit-animation: scrollText 8s linear infinite;
            animation: scrollText 8s linear infinite;
  }
}

.p-home-voice__bg-text {
  color: #fff;
  font-size: 25rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  white-space: nowrap;
  font-family: "Jost", sans-serif;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  padding-right: 9.6rem;
}
@media screen and (max-width: 767px) {
  .p-home-voice__bg-text {
    font-size: 12.8rem;
    padding-right: 4rem;
  }
}

@keyframes scrollText {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
/*------------------------------------------------------------------------------
  p-home-recruit
------------------------------------------------------------------------------*/
.p-home-recruit {
  margin-bottom: 16.8rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-home-recruit {
    margin-bottom: 9.6rem;
  }
}
.p-home-recruit::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 50%;
  z-index: -1;
  background-color: #F6F6F6;
}

.p-home-recruit__bg {
  width: calc(100% - 10rem);
  background-image: url(../img/home-recruit-bg.jpg?ver1.1);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 16.2rem 0;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  .p-home-recruit__bg {
    width: calc(100% - 4rem);
  }
}
@media screen and (max-width: 767px) {
  .p-home-recruit__bg {
    background-image: url(../img/home-recruit-bg_sp.jpg?ver1.1);
    background-position: center top;
    width: calc(100% - 3.2rem);
    padding: 8rem 0 6.4rem;
  }
}

.p-home-recruit__text {
  color: #fff;
  font-size: 1.7rem;
  line-height: 2.2;
  letter-spacing: 0.1em;
  margin: 4rem 0;
}
@media screen and (max-width: 767px) {
  .p-home-recruit__text {
    font-size: 1.3rem;
    line-height: 1.85;
    text-shadow: -5px -5px 18px rgba(0, 0, 0, 0.45), 5px 5px 18px rgba(0, 0, 0, 0.45);
    max-width: 26rem;
    padding-right: 4.8rem;
    margin: 3.2rem 0 2.4rem;
  }
}

/*------------------------------------------------------------------------------
  p-home-news
------------------------------------------------------------------------------*/
.p-home-news {
  margin-bottom: 16.8rem;
}
@media screen and (max-width: 767px) {
  .p-home-news {
    margin-bottom: 9.6rem;
  }
}

@media screen and (max-width: 767px) {
  .p-home-news__contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-home-news__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 4.8rem;
}
@media screen and (max-width: 767px) {
  .p-home-news__heading {
    -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;
    display: contents;
    margin-bottom: 0;
  }
  .p-home-news__heading .c-title {
    -webkit-box-ordinal-group: -1;
        -ms-flex-order: -2;
            order: -2;
  }
}

@media screen and (max-width: 767px) {
  .p-home-news__list {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin: 2.4rem 0 3.2rem;
  }
}
.p-home-news__list .p-news-list__item:first-child {
  border-top: none;
}

.p-home-news__btn {
  margin-bottom: 0.4rem;
}

/*------------------------------------------------------------------------------
  p-sub-mv
------------------------------------------------------------------------------*/
.p-sub-mv {
  background-color: #F0F0F0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 26.4rem 0 6.4rem;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-sub-mv {
    padding: 24rem 0 5.6rem;
  }
}
@media screen and (max-width: 520px) {
  .p-sub-mv {
    padding: 18rem 0 4rem;
  }
}
.p-sub-mv::before {
  content: "";
  position: absolute;
  top: -31.7rem;
  left: 35%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 101rem;
  height: 137rem;
  background-image: url(../img/common-logo-bg.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 0;
}
@media screen and (max-width: 1280px) {
  .p-sub-mv::before {
    left: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@media screen and (max-width: 520px) {
  .p-sub-mv::before {
    top: -15rem;
    left: -0.4rem;
    width: 64rem;
    height: 85rem;
  }
}
@media screen and (max-width: 520px) {
  .p-sub-mv::before {
    top: -15rem;
    width: 57rem;
    height: 81rem;
  }
}

.p-sub-mv--about {
  background-image: url(../img/sub-mv-about-bg.jpg);
  background-position: right bottom;
}
@media screen and (max-width: 767px) {
  .p-sub-mv--about {
    background-image: url(../img/sub-mv-about-bg_sp.jpg);
    background-position: center;
  }
  .p-sub-mv--about .p-sub-mv__title-en,
  .p-sub-mv--about .p-sub-mv__title-ja {
    text-shadow: -5px -5px 20px rgba(255, 255, 255, 0.25), 5px 5px 13px rgba(255, 255, 255, 0.25);
  }
}

.p-sub-mv--partners {
  background-image: url(../img/sub-mv-partners-bg.jpg);
  background-position: right bottom;
}
@media screen and (max-width: 767px) {
  .p-sub-mv--partners {
    background-image: url(../img/sub-mv-partners-bg_sp.jpg);
    background-position: center;
  }
  .p-sub-mv--partners .p-sub-mv__title-en,
  .p-sub-mv--partners .p-sub-mv__title-ja {
    text-shadow: -5px -5px 20px rgba(255, 255, 255, 0.25), 5px 5px 13px rgba(255, 255, 255, 0.25);
  }
}

.p-sub-mv--service {
  background-image: url(../img/sub-mv-service-bg.jpg);
  background-position: right bottom;
}
@media screen and (max-width: 767px) {
  .p-sub-mv--service {
    background-position: 22% bottom;
  }
  .p-sub-mv--service .p-sub-mv__title-en,
  .p-sub-mv--service .p-sub-mv__title-ja {
    text-shadow: -5px -5px 20px rgba(255, 255, 255, 0.25), 5px 5px 13px rgba(255, 255, 255, 0.25);
  }
}

.p-sub-mv--recruit {
  background-image: url(../img/sub-mv-recruit-bg.jpg?ver1.2);
  background-position: 20% bottom;
}

.p-sub-mv__title {
  position: relative;
  z-index: 1;
}

.p-sub-mv__title-en {
  color: #1D1D1D;
  font-size: 8.8rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
  font-family: "Jost", sans-serif;
  text-transform: uppercase;
}
@media screen and (max-width: 1140px) {
  .p-sub-mv__title-en {
    font-size: clamp(6.4rem, 7vw, 8.8rem);
  }
}
@media screen and (max-width: 767px) {
  .p-sub-mv__title-en {
    font-size: clamp(5.6rem, 10vw, 6.4rem);
  }
}

.p-sub-mv__title-ja {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1140px) {
  .p-sub-mv__title-ja {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 767px) {
  .p-sub-mv__title-ja {
    font-size: 1.5rem;
  }
}

/*------------------------------------------------------------------------------
  p-mvv
------------------------------------------------------------------------------*/
.p-mvv__item {
  border-bottom: 1px solid #E0E0E0;
  padding-bottom: 12.8rem;
}
@media screen and (max-width: 767px) {
  .p-mvv__item {
    padding-bottom: 6.4rem;
  }
}
.p-mvv__item:not(:last-child) {
  margin-bottom: 12.8rem;
}
@media screen and (max-width: 767px) {
  .p-mvv__item:not(:last-child) {
    margin-bottom: 6.4rem;
  }
}

.p-mvv__title {
  position: relative;
  margin-bottom: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-mvv__title {
    margin-bottom: 1.6rem;
  }
}

.p-mvv__title-en {
  color: #F6F6F6;
  font-size: 21.2rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
  font-family: "Jost", sans-serif;
  text-transform: uppercase;
  white-space: nowrap;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media screen and (max-width: 900px) {
  .p-mvv__title-en {
    font-size: 16rem;
  }
}
@media screen and (max-width: 767px) {
  .p-mvv__title-en {
    font-size: 7.6rem;
    font-size: clamp(6.4rem, 20.1vw, 9.6rem);
    margin-left: -1rem;
  }
}

.p-mvv__title-ja {
  font-size: 2.8rem;
  font-weight: bold;
  letter-spacing: 0.15em;
  position: absolute;
  left: 2.8rem;
  top: 52%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 900px) {
  .p-mvv__title-ja {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-mvv__title-ja {
    font-size: 2.2rem;
    left: 0;
  }
}

.p-mvv__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-mvv__contents {
    display: block;
  }
}

.p-mvv__heading {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 51rem;
          flex: 0 0 51rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-right: 12.8rem;
  margin-left: 1.2rem;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .p-mvv__heading {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 45rem;
            flex: 0 0 45rem;
    margin-right: 4rem;
  }
}
@media screen and (max-width: 900px) {
  .p-mvv__heading {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 38rem;
            flex: 0 0 38rem;
  }
}
@media screen and (max-width: 767px) {
  .p-mvv__heading {
    margin: 0 0 2.4rem;
  }
}
.p-mvv__heading::before {
  content: "";
  position: absolute;
  top: 30px;
  right: -12.8rem;
  background-color: #828282;
  width: 12.8rem;
  height: 1px;
}
@media screen and (max-width: 1280px) {
  .p-mvv__heading::before {
    right: -4rem;
    width: 8.8rem;
  }
}
@media screen and (max-width: 900px) {
  .p-mvv__heading::before {
    top: 20px;
    width: 8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-mvv__heading::before {
    display: none;
  }
}

.p-mvv__lead {
  font-size: 3.6rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.2em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (max-width: 1280px) {
  .p-mvv__lead {
    font-size: 3rem;
  }
}
@media screen and (max-width: 900px) {
  .p-mvv__lead {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-mvv__lead {
    font-size: 1.8rem;
  }
}

.p-mvv__lead-en {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.8;
  font-style: italic;
  letter-spacing: 0.15em;
  font-family: "Jost", sans-serif;
  text-transform: uppercase;
  margin-top: 1.8rem;
  margin-left: 2.8rem;
}
@media screen and (max-width: 1280px) {
  .p-mvv__lead-en {
    font-size: 1.6rem;
    margin-top: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-mvv__lead-en {
    font-size: 1.1rem;
    margin-top: 0.6rem;
    margin-left: 1.4rem;
  }
}

.p-mvv__texts {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 4.8rem;
}
@media screen and (max-width: 1280px) {
  .p-mvv__texts {
    margin-left: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-mvv__texts {
    margin-left: 0;
  }
}

.p-mvv__text {
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.2em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  margin-top: 1.2rem;
}
@media screen and (max-width: 900px) {
  .p-mvv__text {
    font-size: 1.4rem;
    margin-top: 0.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-mvv__text {
    font-size: 1.3rem;
    margin-left: 1.4rem;
  }
}

.p-mvv__vision {
  margin-top: 1.3rem;
}
@media screen and (max-width: 900px) {
  .p-mvv__vision {
    margin-top: 0.8rem;
  }
}

.p-mvv__vision-item:not(:last-child) {
  margin-bottom: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-mvv__vision-item:not(:last-child) {
    margin-bottom: 2.4rem;
  }
}

.p-mvv__vision-title {
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.2em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  margin-bottom: 1.4rem;
}
@media screen and (max-width: 1280px) {
  .p-mvv__vision-title {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 900px) {
  .p-mvv__vision-title {
    font-size: 2rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-mvv__vision-title {
    font-size: 1.7rem;
  }
}
.p-mvv__vision-title span {
  font-size: 1.9rem;
  font-weight: 600;
  vertical-align: 2px;
  margin-left: 0.4rem;
}
@media screen and (max-width: 1280px) {
  .p-mvv__vision-title span {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 900px) {
  .p-mvv__vision-title span {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-mvv__vision-title span {
    font-size: 1.1rem;
    font-weight: 500;
  }
}

.p-mvv__vision-text {
  font-weight: normal;
  letter-spacing: 0.2em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.p-mvv__value-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4.8rem 0;
  max-width: 110rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-mvv__value-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.4rem 0;
  }
}

.p-mvv__value {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: 2rem;
}
@media screen and (max-width: 767px) {
  .p-mvv__value {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    padding-right: 0;
  }
}

.p-mvv__value-number {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 7.6rem;
          flex: 0 0 7.6rem;
  color: #1D1D1D;
  font-size: 4.2rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
  font-family: "Jost", sans-serif;
  margin-right: 3.2rem;
  position: relative;
}
@media screen and (max-width: 900px) {
  .p-mvv__value-number {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 6rem;
            flex: 0 0 6rem;
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-mvv__value-number {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 5rem;
            flex: 0 0 5rem;
    font-size: 2.6rem;
  }
}
.p-mvv__value-number::after {
  content: "";
  position: absolute;
  top: 19px;
  right: -32px;
  width: 32px;
  height: 1px;
  background-color: #828282;
}
@media screen and (max-width: 900px) {
  .p-mvv__value-number::after {
    top: 16px;
  }
}
@media screen and (max-width: 767px) {
  .p-mvv__value-number::after {
    top: 11px;
  }
}

.p-mvv__value-texts {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 2rem;
}
@media screen and (max-width: 767px) {
  .p-mvv__value-texts {
    padding-left: 1.6rem;
    margin-top: 0.1rem;
  }
}

.p-mvv__value-title {
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.2em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 900px) {
  .p-mvv__value-title {
    font-size: 2.4rem;
    margin-bottom: 0.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-mvv__value-title {
    font-size: 1.6rem;
    margin-bottom: 0.4rem;
  }
}

.p-mvv__value-text {
  font-weight: normal;
  line-height: 2;
  letter-spacing: 0.2em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-mvv__value-text {
    font-size: 1.2rem;
    line-height: 1.8;
  }
}

/*------------------------------------------------------------------------------
  p-message
------------------------------------------------------------------------------*/
.p-message {
  background-color: #F6F6F6;
  padding: 16.8rem 0;
}
@media screen and (max-width: 767px) {
  .p-message {
    padding: 9.6rem 0;
  }
}

.p-message__title {
  margin-bottom: 11.2rem;
}
@media screen and (max-width: 767px) {
  .p-message__title {
    margin-bottom: 5.6rem;
  }
}

.p-message__media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-message__media {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-message__media:not(:last-of-type) {
  border-bottom: 1px solid #E0E0E0;
  padding-bottom: 11.2rem;
  margin-bottom: 11.2rem;
}
@media screen and (max-width: 767px) {
  .p-message__media:not(:last-of-type) {
    padding-bottom: 6.4rem;
    margin-bottom: 6.4rem;
  }
}

.p-message__media-contents {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 54%;
          flex: 0 1 54%;
  margin-top: 1.2rem;
}
@media screen and (max-width: 900px) {
  .p-message__media-contents {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 57%;
            flex: 0 1 57%;
  }
}
@media screen and (max-width: 767px) {
  .p-message__media-contents {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-top: 2rem;
  }
}

.p-message__media-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 2rem;
  margin-bottom: 4.8rem;
}
@media screen and (max-width: 900px) {
  .p-message__media-name {
    margin-bottom: 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-message__media-name {
    gap: 0 1.6rem;
    margin-bottom: 2rem;
  }
}

.p-message__media-name-ja {
  font-size: 3.4rem;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.2em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (max-width: 900px) {
  .p-message__media-name-ja {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-message__media-name-ja {
    font-size: 2.4rem;
  }
}

.p-message__media-name-en {
  font-size: 1.7rem;
  font-weight: 300;
  line-height: 1.24;
  letter-spacing: 0.1em;
  font-family: "Jost", sans-serif;
  -ms-flex-item-align: end;
      align-self: flex-end;
}
@media screen and (max-width: 900px) {
  .p-message__media-name-en {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-message__media-name-en {
    font-size: 1.2rem;
    line-height: 1.27;
  }
}

.p-message__media-history {
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .p-message__media-history {
    margin-bottom: 1.6rem;
  }
}

.p-message__media-history-title {
  font-weight: bold;
  letter-spacing: 0.2em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  margin-bottom: 0.4rem;
}

.p-message__media-history-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 900px) {
  .p-message__media-history-item {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-message__media-history-item {
    font-size: 1.3rem;
  }
}
.p-message__media-history-item dt {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 8rem;
          flex: 0 0 8rem;
}
@media screen and (max-width: 900px) {
  .p-message__media-history-item dt {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 7rem;
            flex: 0 0 7rem;
  }
}
@media screen and (max-width: 767px) {
  .p-message__media-history-item dt {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 6.2rem;
            flex: 0 0 6.2rem;
  }
}
.p-message__media-history-item dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.p-message__media-texts {
  line-height: 1.8;
}
@media screen and (max-width: 900px) {
  .p-message__media-texts br {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .p-message__media-texts br {
    display: block;
  }
}
.p-message__media-texts p:not(:last-child) {
  margin-bottom: 1em;
}

.p-message__media-img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 37%;
          flex: 0 1 37%;
}
@media screen and (max-width: 767px) {
  .p-message__media-img {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
  }
  .p-message__media-img img {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center top;
       object-position: center top;
    height: 95vw;
  }
}

/*------------------------------------------------------------------------------
  p-overview
------------------------------------------------------------------------------*/
.p-overview__list {
  max-width: 100rem;
  margin: 0;
}

/*------------------------------------------------------------------------------
  p-access
------------------------------------------------------------------------------*/
.p-access__map {
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-access__map {
    margin-bottom: 1.2rem;
  }
}
.p-access__map iframe {
  width: 100%;
  height: 530px;
  vertical-align: bottom;
}
@media screen and (max-width: 767px) {
  .p-access__map iframe {
    height: 85vw;
  }
}

.p-access__text {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .p-access__text {
    font-size: 1.3rem;
  }
}

.p-access__map-link {
  margin-left: 2rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  padding-right: 2rem;
  position: relative;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
@media screen and (max-width: 767px) {
  .p-access__map-link {
    margin-left: 1.2rem;
  }
}
.p-access__map-link:hover {
  opacity: 0.8;
}
.p-access__map-link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 1px;
  background-color: currentColor;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.p-access__map-link:hover::before {
  opacity: 1;
}
.p-access__map-link::after {
  content: "";
  position: absolute;
  top: 51.5%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-image: url(../img/icon-xternal-link.svg);
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
}

/*------------------------------------------------------------------------------
  p-partners
------------------------------------------------------------------------------*/
.p-partners__lead {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 2.2;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 900px) {
  .p-partners__lead {
    font-size: 1.8rem;
    letter-spacing: 0.1em;
  }
  .p-partners__lead br {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .p-partners__lead {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}

.p-partners__heading {
  position: relative;
  margin: 9.6rem 0 4.8rem;
}
@media screen and (max-width: 767px) {
  .p-partners__heading {
    margin: 4.8rem 0 2.4rem;
  }
}

.p-partners__heading-en {
  color: #F6F6F6;
  font-size: 16.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
  font-family: "Jost", sans-serif;
  text-transform: uppercase;
  white-space: nowrap;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media screen and (max-width: 900px) {
  .p-partners__heading-en {
    font-size: 16rem;
  }
}
@media screen and (max-width: 767px) {
  .p-partners__heading-en {
    font-size: 7.6rem;
    font-size: clamp(6.4rem, 22vw, 9.6rem);
    margin-left: -1rem;
  }
}

.p-partners__heading-ja {
  font-size: 3.2rem;
  font-weight: bold;
  letter-spacing: 0.15em;
  position: absolute;
  left: 3.6rem;
  top: 52%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 900px) {
  .p-partners__heading-ja {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-partners__heading-ja {
    font-size: 2.2rem;
    left: 4px;
  }
}

.p-partners__service-wrap {
  margin-top: 14.4rem;
}
@media screen and (max-width: 767px) {
  .p-partners__service-wrap {
    margin-top: 7.2rem;
  }
}

/*------------------------------------------------------------------------------
  p-partner-service
------------------------------------------------------------------------------*/
.p-partner-service {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem 0;
}
@media screen and (max-width: 767px) {
  .p-partner-service {
    gap: 2.4rem 0;
  }
}
.p-partner-service:not(:last-child) {
  margin-bottom: 14.4rem;
}
@media screen and (max-width: 767px) {
  .p-partner-service:not(:last-child) {
    margin-bottom: 6.4rem;
  }
}

.p-partner-service__heading {
  color: #fff;
  background-color: #1D1D1D;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 2.5rem 2.4rem 2.1rem 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-partner-service__heading {
    padding: 2rem 1.6rem 1.8rem 1.6rem;
  }
}
.p-partner-service__heading::before {
  content: "";
  position: absolute;
  top: -31px;
  left: 0;
  width: 178px;
  height: 141px;
  background-image: url(../img/title-logo-bg.svg);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-partner-service__heading::before {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 140px;
    left: -4px;
    height: 120px;
  }
}

.p-partner-service__number {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1;
  font-family: "Jost", sans-serif;
  letter-spacing: 0.02em;
  margin-right: 3.2rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-partner-service__number {
    font-size: 2.8rem;
    margin-right: 1.6rem;
  }
}

.p-partner-service__title {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.1em;
  padding-bottom: 0.35rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-partner-service__title {
    font-size: 1.9rem;
    padding-bottom: 0.25rem;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
    line-height: 1.4;
  }
}
.p-partner-service__title span {
  font-size: 2.6rem;
}
@media screen and (max-width: 767px) {
  .p-partner-service__title span {
    font-size: 1.5rem;
    display: inline-block;
  }
}

.p-partner-service__lead {
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.15em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-partner-service__lead {
    font-size: 1.3rem;
    letter-spacing: 0.07em;
    line-height: 1.7;
    margin-top: -0.4rem;
  }
}

.p-partner-service__detail-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-partner-service__detail {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 47.63%;
          flex: 0 1 47.63%;
}

.p-partner-service__detail--wide {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
}

.p-partner-service__detail-title {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #1D1D1D;
  padding-bottom: 1.2rem;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-partner-service__detail-title {
    font-size: 1.5rem;
    padding-bottom: 0.8rem;
    margin-bottom: 1.2rem;
  }
}

.p-partner-service__list li {
  font-weight: 500;
  letter-spacing: 0.1em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 1.8rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-partner-service__list li {
    font-size: 1.2rem;
    letter-spacing: 0.07em;
    padding-left: 1.4rem;
  }
}
.p-partner-service__list li::before {
  content: "";
  position: absolute;
  top: 11.5px;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #1D1D1D;
  border-radius: 3px;
}
@media screen and (max-width: 767px) {
  .p-partner-service__list li::before {
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 2px;
  }
}
.p-partner-service__list li:not(:last-child) {
  margin-bottom: 0.6rem;
}
@media screen and (max-width: 767px) {
  .p-partner-service__list li:not(:last-child) {
    margin-bottom: 0.3rem;
  }
}

/*------------------------------------------------------------------------------
  p-service-intro
------------------------------------------------------------------------------*/
.p-service-intro {
  margin-bottom: 12rem;
}
@media screen and (max-width: 767px) {
  .p-service-intro {
    margin-bottom: 6.4rem;
  }
}
.p-service-intro .c-inner {
  padding-left: 5rem;
}
@media screen and (max-width: 1240px) {
  .p-service-intro .c-inner {
    padding-left: 2rem;
  }
}

.p-service-intro__text-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0 7.2rem;
}
@media screen and (max-width: 1280px) {
  .p-service-intro__text-wrap {
    gap: 0 3.2rem;
  }
}
@media screen and (max-width: 900px) {
  .p-service-intro__text-wrap {
    gap: 0 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-service-intro__text-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.6rem 0;
  }
}

.p-service-intro__lead {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 1280px) {
  .p-service-intro__lead {
    font-size: 2.7rem;
    letter-spacing: 0.12em;
  }
}
@media screen and (max-width: 900px) {
  .p-service-intro__lead {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-service-intro__lead {
    font-size: 2rem;
  }
}

.p-service-intro__text {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2;
}
@media screen and (max-width: 1280px) {
  .p-service-intro__text {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 900px) {
  .p-service-intro__text {
    font-size: 1.5rem;
    letter-spacing: 0.07em;
  }
}
@media screen and (max-width: 767px) {
  .p-service-intro__text {
    font-size: 1.4rem;
  }
}

/*------------------------------------------------------------------------------
  p-service
------------------------------------------------------------------------------*/
.p-service__anchor-nav {
  max-width: 114rem;
  margin: 0 auto 4.8rem;
}
@media screen and (max-width: 767px) {
  .p-service__anchor-nav {
    margin: 0 auto 3.2rem;
  }
}

.p-brand__title {
  position: relative;
}

.p-brand__title-en {
  color: #F6F6F6;
  font-size: 18.4rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
  font-family: "Jost", sans-serif;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media screen and (max-width: 900px) {
  .p-brand__title-en {
    font-size: 12rem;
  }
}
@media screen and (max-width: 767px) {
  .p-brand__title-en {
    font-size: clamp(4.8rem, 16vw, 9.6rem);
    letter-spacing: 0;
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 100vw;
  }
}

.p-brand__title-ja {
  position: absolute;
  left: 50%;
  top: 62%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  line-height: 1.5;
  text-align: center;
  padding-bottom: 2.4rem;
}
@media screen and (max-width: 900px) {
  .p-brand__title-ja {
    top: 70%;
  }
}
@media screen and (max-width: 767px) {
  .p-brand__title-ja {
    top: 80%;
    padding-bottom: 1.8rem;
  }
}
.p-brand__title-ja::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  width: 40px;
  height: 1px;
  background-color: #1D1D1D;
}
@media screen and (max-width: 767px) {
  .p-brand__title-ja::before {
    width: 32px;
  }
}

.p-brand__title-ja-main {
  font-size: 4.8rem;
  font-weight: bold;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 900px) {
  .p-brand__title-ja-main {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-brand__title-ja-main {
    font-size: 2.8rem;
  }
}

.p-brand__title-ja-sub {
  font-weight: normal;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-brand__title-ja-sub {
    font-size: 1.1rem;
  }
}

.p-brand__media {
  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;
  max-width: 114rem;
  margin: 10.4rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-brand__media {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 7.2rem;
  }
}

.p-brand__media-text-wrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 48.33%;
          flex: 0 1 48.33%;
}
@media screen and (max-width: 767px) {
  .p-brand__media-text-wrap {
    display: contents;
  }
}

.p-brand__media-title {
  margin-bottom: 4rem;
}
@media screen and (max-width: 900px) {
  .p-brand__media-title {
    margin-bottom: 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-brand__media-title {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    -webkit-box-ordinal-group: -1;
        -ms-flex-order: -2;
            order: -2;
    width: 100%;
    margin-bottom: 2rem;
  }
}

.p-brand__media-title-en {
  font-size: 4rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
  font-family: "Jost", sans-serif;
}
@media screen and (max-width: 900px) {
  .p-brand__media-title-en {
    font-size: 3.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-brand__media-title-en {
    font-size: 2.6rem;
  }
}

.p-brand__media-title-ja {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 900px) {
  .p-brand__media-title-ja {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-brand__media-title-ja {
    font-size: 1.2rem;
  }
}

.p-brand__media-texts {
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-brand__media-texts {
    line-height: 1.8;
    margin-top: 2rem;
  }
}
.p-brand__media-texts p:not(:last-child) {
  margin-bottom: 1.5em;
}
@media screen and (max-width: 767px) {
  .p-brand__media-texts p:not(:last-child) {
    margin-bottom: 1em;
  }
}

.p-brand__media-img-wrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 42.9%;
          flex: 0 1 42.9%;
}
@media screen and (max-width: 900px) {
  .p-brand__media-img-wrap {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 47%;
            flex: 0 1 47%;
  }
}
@media screen and (max-width: 767px) {
  .p-brand__media-img-wrap {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}

.p-brand__media-img:not(:last-child) {
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 767px) {
  .p-brand__media-img:not(:last-child) {
    margin-bottom: 0.4rem;
  }
}

.p-brand__media-img--nico {
  max-width: 42.5rem;
}

.p-brand__contents {
  margin-top: 8.8rem;
}
@media screen and (max-width: 767px) {
  .p-brand__contents {
    margin-top: 4rem;
  }
}

.p-brand__item {
  background-color: #F6F6F6;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 1px;
  padding: 10.4rem 5rem;
}
@media screen and (max-width: 900px) {
  .p-brand__item {
    padding: 7.2rem 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-brand__item {
    padding: 4.8rem 1.6rem;
  }
}
.p-brand__item:not(:last-child) {
  margin-bottom: 4.8rem;
}
@media screen and (max-width: 767px) {
  .p-brand__item:not(:last-child) {
    margin-bottom: 3.2rem;
  }
}

.p-brand__sub-contents {
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .p-brand__sub-contents {
    margin-top: 4rem;
  }
}

.p-brand__sub-item {
  background-color: #fff;
  border-radius: 12px;
  border: 1px solid #ddd;
  padding: 8rem 4rem;
  background-image: url(../img/dot-bg.svg);
  background-repeat: repeat;
  background-size: 26px 26px;
  background-position: 13px 13px;
}
@media screen and (max-width: 900px) {
  .p-brand__sub-item {
    padding: 6.4rem 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-brand__sub-item {
    padding: 4.8rem 1.6rem;
    border-radius: 8px;
  }
}
.p-brand__sub-item:not(:last-child) {
  margin-bottom: 4.8rem;
}
@media screen and (max-width: 767px) {
  .p-brand__sub-item:not(:last-child) {
    margin-bottom: 2.4rem;
  }
}

.p-brand__menu-card-wrap {
  margin-top: 3.6rem;
}
@media screen and (max-width: 767px) {
  .p-brand__menu-card-wrap {
    margin-top: 2.4rem;
  }
}

.p-brand__menu-list {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-brand__menu-list {
    margin-top: 2.4rem;
  }
}

.p-brand__menu-media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-brand__menu-media {
    display: block;
  }
}

.p-brand__menu-media-text-wrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 46.08%;
          flex: 0 1 46.08%;
}
@media screen and (max-width: 767px) {
  .p-brand__menu-media-text-wrap {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    margin-bottom: 1.6rem;
  }
}

.p-brand__menu-media-img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 45.8%;
          flex: 0 1 45.8%;
}

.p-brand__item-media {
  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;
}
@media screen and (max-width: 767px) {
  .p-brand__item-media {
    display: block;
  }
}

.p-brand__item-media-text {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 48.5%;
          flex: 0 1 48.5%;
}
@media screen and (max-width: 1023px) {
  .p-brand__item-media-text {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 53%;
            flex: 0 1 53%;
  }
}
@media screen and (max-width: 767px) {
  .p-brand__item-media-text {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    margin-bottom: 1.6rem;
  }
}

.p-brand__item-media-img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 47.3%;
          flex: 0 1 47.3%;
}
@media screen and (max-width: 1023px) {
  .p-brand__item-media-img {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 37%;
            flex: 0 1 37%;
  }
}

.p-brand__item-map {
  margin: 2rem 0;
}
@media screen and (max-width: 767px) {
  .p-brand__item-map {
    margin: 1.6rem 0;
  }
}
.p-brand__item-map iframe {
  width: 100%;
  border: 0;
  vertical-align: bottom;
}
@media screen and (max-width: 767px) {
  .p-brand__item-map iframe {
    height: 80vw;
  }
}

.p-brand__item-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-brand__item-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.2rem 0;
  }
}

.p-brand__item-info-child {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 48.5%;
          flex: 0 1 48.5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 3.2rem;
}
@media screen and (max-width: 900px) {
  .p-brand__item-info-child {
    gap: 0 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-brand__item-info-child {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    gap: 0 1.4rem;
  }
}
.p-brand__item-info-child dt {
  font-size: 1.6rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-brand__item-info-child dt {
    font-size: 1.3rem;
  }
}
.p-brand__item-info-child dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1.4rem;
  margin-top: 0.3rem;
}
@media screen and (max-width: 767px) {
  .p-brand__item-info-child dd {
    font-size: 1.2rem;
    margin-top: 0.1rem;
  }
}
.p-brand__item-info-child dd .--note {
  margin-left: 0.8rem;
}
@media screen and (max-width: 767px) {
  .p-brand__item-info-child dd .--note {
    display: block;
    margin-left: 0;
  }
}

.p-brand__item-info-link {
  margin-left: 1.6rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  padding-right: 2rem;
  position: relative;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
@media screen and (max-width: 900px) {
  .p-brand__item-info-link {
    margin-left: 0;
  }
}
.p-brand__item-info-link:hover {
  opacity: 0.8;
}
.p-brand__item-info-link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 1px;
  background-color: currentColor;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.p-brand__item-info-link:hover::before {
  opacity: 1;
}
.p-brand__item-info-link::after {
  content: "";
  position: absolute;
  top: 51.5%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-image: url(../img/icon-xternal-link.svg);
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
}

.p-brand__card-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-brand__card-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.4rem 0;
    margin-top: 2.4rem;
  }
}

.p-brand__card {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 47.3%;
          flex: 0 1 47.3%;
}

.p-brand__card-img {
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .p-brand__card-img {
    margin-bottom: 1.2rem;
  }
}
.p-brand__card-img img {
  border-radius: 2px;
}

.p-brand__card-title {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.1em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: center;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 900px) {
  .p-brand__card-title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-brand__card-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
}
.p-brand__card-title span {
  font-size: 2rem;
}
@media screen and (max-width: 900px) {
  .p-brand__card-title span {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-brand__card-title span {
    font-size: 1.2rem;
  }
}

.p-brand__card-text {
  line-height: 2;
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 767px) {
  .p-brand__card-text {
    line-height: 1.8;
    margin-bottom: 0.8rem;
  }
}

.p-brand__card-price {
  color: #4F4F4F;
  font-weight: normal;
  text-align: right;
  letter-spacing: 0.1em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-brand__card-price {
    font-size: 1.2rem;
  }
}

.p-brand__card-btn {
  margin: 2.4rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-brand__card-btn {
    margin-top: 1.6rem;
  }
}

/*------------------------------------------------------------------------------
  p-contact
------------------------------------------------------------------------------*/
.p-contact__text {
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 520px) {
  .p-contact__text {
    letter-spacing: 0.05em;
    line-height: 1.8;
    text-align: left;
  }
}

/*------------------------------------------------------------------------------
  p-contact-form
------------------------------------------------------------------------------*/
.p-contact-form {
  margin-top: 4.8rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form {
    margin-top: 4rem;
  }
}

.p-contact-form__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: 4rem 0;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form__list {
    gap: 3.2rem 0;
    margin-bottom: 2.8rem;
  }
}

.p-contact-form__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-contact-form__item {
    display: block;
  }
}

.p-contact-form__item-heading {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 28.4rem;
          flex: 0 1 28.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: 2rem;
  margin-top: 1.2rem;
}
@media screen and (max-width: 900px) {
  .p-contact-form__item-heading {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 24rem;
            flex: 0 1 24rem;
  }
}
@media screen and (max-width: 767px) {
  .p-contact-form__item-heading {
    padding-right: 0;
    margin: 0 0 1.2rem;
  }
}

.p-contact-form__required {
  color: #fff;
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1;
  background-color: #1D1D1D;
  text-align: center;
  -ms-flex-item-align: start;
      align-self: flex-start;
  display: inline-block;
  border-radius: 1px;
  padding: 0.6rem 1.2rem;
  margin-top: 0.4rem;
  margin-right: 1.6rem;
}
@media screen and (max-width: 900px) {
  .p-contact-form__required {
    margin-top: 0.1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-contact-form__required {
    font-size: 1.2rem;
    margin-right: 1.2rem;
  }
}
.p-contact-form__required.--any {
  background-color: #aaa;
}

.p-contact-form__item-title {
  font-size: 1.7rem;
  font-weight: 500;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  .p-contact-form__item-title {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-contact-form__item-title {
    font-size: 1.4rem;
  }
}

.p-contact-form__input-wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
}
.p-contact-form__input-wrap input[type=text],
.p-contact-form__input-wrap input[type=email],
.p-contact-form__input-wrap input[type=tel],
.p-contact-form__input-wrap select,
.p-contact-form__input-wrap textarea {
  color: #333;
  font-size: 1.6rem !important;
  width: 100%;
  padding: 15.5px 12px;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 2px;
  background-color: #F5F5F5;
  font-family: "Noto Sans JP", sans-serif;
}
.p-contact-form__input-wrap input[type=text]::-webkit-input-placeholder, .p-contact-form__input-wrap input[type=email]::-webkit-input-placeholder, .p-contact-form__input-wrap input[type=tel]::-webkit-input-placeholder, .p-contact-form__input-wrap select::-webkit-input-placeholder, .p-contact-form__input-wrap textarea::-webkit-input-placeholder {
  color: #aaa;
  font-size: 1.5rem;
  font-weight: normal;
  letter-spacing: 0.05em;
  font-family: "Noto Sans JP", sans-serif;
}
.p-contact-form__input-wrap input[type=text]::-moz-placeholder, .p-contact-form__input-wrap input[type=email]::-moz-placeholder, .p-contact-form__input-wrap input[type=tel]::-moz-placeholder, .p-contact-form__input-wrap select::-moz-placeholder, .p-contact-form__input-wrap textarea::-moz-placeholder {
  color: #aaa;
  font-size: 1.5rem;
  font-weight: normal;
  letter-spacing: 0.05em;
  font-family: "Noto Sans JP", sans-serif;
}
.p-contact-form__input-wrap input[type=text]:-ms-input-placeholder, .p-contact-form__input-wrap input[type=email]:-ms-input-placeholder, .p-contact-form__input-wrap input[type=tel]:-ms-input-placeholder, .p-contact-form__input-wrap select:-ms-input-placeholder, .p-contact-form__input-wrap textarea:-ms-input-placeholder {
  color: #aaa;
  font-size: 1.5rem;
  font-weight: normal;
  letter-spacing: 0.05em;
  font-family: "Noto Sans JP", sans-serif;
}
.p-contact-form__input-wrap input[type=text]::-ms-input-placeholder, .p-contact-form__input-wrap input[type=email]::-ms-input-placeholder, .p-contact-form__input-wrap input[type=tel]::-ms-input-placeholder, .p-contact-form__input-wrap select::-ms-input-placeholder, .p-contact-form__input-wrap textarea::-ms-input-placeholder {
  color: #aaa;
  font-size: 1.5rem;
  font-weight: normal;
  letter-spacing: 0.05em;
  font-family: "Noto Sans JP", sans-serif;
}
.p-contact-form__input-wrap input[type=text]::placeholder,
.p-contact-form__input-wrap input[type=email]::placeholder,
.p-contact-form__input-wrap input[type=tel]::placeholder,
.p-contact-form__input-wrap select::placeholder,
.p-contact-form__input-wrap textarea::placeholder {
  color: #aaa;
  font-size: 1.5rem;
  font-weight: normal;
  letter-spacing: 0.05em;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-contact-form__input-wrap input[type=text]::-webkit-input-placeholder, .p-contact-form__input-wrap input[type=email]::-webkit-input-placeholder, .p-contact-form__input-wrap input[type=tel]::-webkit-input-placeholder, .p-contact-form__input-wrap select::-webkit-input-placeholder, .p-contact-form__input-wrap textarea::-webkit-input-placeholder {
    font-size: 1.4rem;
  }
  .p-contact-form__input-wrap input[type=text]::-moz-placeholder, .p-contact-form__input-wrap input[type=email]::-moz-placeholder, .p-contact-form__input-wrap input[type=tel]::-moz-placeholder, .p-contact-form__input-wrap select::-moz-placeholder, .p-contact-form__input-wrap textarea::-moz-placeholder {
    font-size: 1.4rem;
  }
  .p-contact-form__input-wrap input[type=text]:-ms-input-placeholder, .p-contact-form__input-wrap input[type=email]:-ms-input-placeholder, .p-contact-form__input-wrap input[type=tel]:-ms-input-placeholder, .p-contact-form__input-wrap select:-ms-input-placeholder, .p-contact-form__input-wrap textarea:-ms-input-placeholder {
    font-size: 1.4rem;
  }
  .p-contact-form__input-wrap input[type=text]::-ms-input-placeholder, .p-contact-form__input-wrap input[type=email]::-ms-input-placeholder, .p-contact-form__input-wrap input[type=tel]::-ms-input-placeholder, .p-contact-form__input-wrap select::-ms-input-placeholder, .p-contact-form__input-wrap textarea::-ms-input-placeholder {
    font-size: 1.4rem;
  }
  .p-contact-form__input-wrap input[type=text]::placeholder,
  .p-contact-form__input-wrap input[type=email]::placeholder,
  .p-contact-form__input-wrap input[type=tel]::placeholder,
  .p-contact-form__input-wrap select::placeholder,
  .p-contact-form__input-wrap textarea::placeholder {
    font-size: 1.4rem;
  }
}
.p-contact-form__input-wrap textarea {
  resize: none;
  min-height: 25rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form__input-wrap textarea {
    min-height: 20rem;
  }
}
.p-contact-form__input-wrap input[type=radio],
.p-contact-form__input-wrap input[type=checkbox] {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 1.5px solid #E6E6E6;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  vertical-align: -4.5px;
  background-color: transparent;
  border-radius: 50%;
  cursor: pointer;
  display: inline-block;
  margin-right: 1rem;
}
.p-contact-form__input-wrap input[type=radio]:checked,
.p-contact-form__input-wrap input[type=checkbox]:checked {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  outline: none !important;
  outline-offset: none;
  border-radius: 50%;
}

.p-contact-form__radio-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.2rem 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form__radio-wrap {
    gap: 1.2rem 1.6rem;
  }
}
.p-contact-form__radio-wrap label {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  font-weight: 500;
  cursor: pointer;
  display: inline-block;
}

.p-contact-form__select-wrap {
  max-width: 33rem;
  margin-right: auto;
  position: relative;
}
.p-contact-form__select-wrap::after {
  content: "";
  position: absolute;
  top: 52%;
  right: 16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../img/caret-black-B.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 10px;
  height: 10px;
  pointer-events: none;
  z-index: 1;
}
.p-contact-form__select-wrap select {
  cursor: pointer;
}

.p-contact-form__agree {
  color: #333;
  font-size: 1.5rem;
  font-weight: 500;
  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;
  margin-bottom: 7.2rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form__agree {
    font-size: 1.4rem;
    margin-bottom: 4.8rem;
  }
}
.p-contact-form__agree input {
  margin-right: 1.4rem;
}
.p-contact-form__agree a {
  text-decoration: underline;
}

.p-contact-form__btn {
  height: 5.4rem;
  width: 100%;
  max-width: 24rem;
  margin: 0 auto;
  display: block;
  padding-left: 0.6rem;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media screen and (max-width: 767px) {
  .p-contact-form__btn {
    max-width: 22.6rem;
    height: 5rem;
  }
  .p-contact-form__btn:hover {
    opacity: 1;
    color: #fff;
    background-color: #1D1D1D;
  }
}
.p-contact-form__btn input[type=submit] {
  color: #fff;
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  font-family: "Noto Sans JP", sans-serif;
  width: 100%;
  height: 100%;
  border-radius: 48px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-contact-form__btn input[type=submit] {
    font-size: 1.5rem;
  }
}
.p-contact-form__btn input[type=submit]:hover {
  color: #1D1D1D;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .p-contact-form__btn input[type=submit]:hover {
    color: #fff;
    background-color: #1D1D1D;
  }
}
.p-contact-form__btn:has(:disabled) {
  opacity: 0.4;
  border: none;
  background: #999;
}
.p-contact-form__btn:has(:disabled):hover input[type=submit] {
  color: #fff;
}
.p-contact-form__btn:has(:disabled) .c-btn__icon {
  display: none;
}

.p-contact-form .wpcf7-list-item {
  margin-left: 0;
}

.p-contact-form__radio-wrap .wpcf7-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.2rem 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form__radio-wrap .wpcf7-radio {
    gap: 1.2rem 1.6rem;
  }
}
.p-contact-form__radio-wrap .wpcf7-radio label {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  font-weight: 500;
  cursor: pointer;
  display: inline-block;
}

/*------------------------------------------------------------------------------
  p-recruit
------------------------------------------------------------------------------*/
.p-recruit__intro {
  margin-bottom: 8.8rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__intro {
    margin-bottom: 5.6rem;
  }
}

.p-recruit__lead {
  font-size: 2.6rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  margin-bottom: 3.2rem;
}
@media screen and (max-width: 1023px) {
  .p-recruit__lead {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit__lead {
    font-size: 1.8rem;
    margin-bottom: 2.4rem;
  }
}

.p-recruit__ideal {
  background-color: #F6F6F6;
  background-image: radial-gradient(circle, rgba(0, 0, 0, 0.08) 1px, transparent 1.5px);
  background-position: 6px 6px;
  background-size: 24px 24px;
  border-radius: 12px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 3.2rem 2.4rem 3.2rem 4rem;
  margin-top: 4.8rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__ideal {
    background-image: radial-gradient(circle, rgba(0, 0, 0, 0.06) 1px, transparent 1.5px);
    background-size: 22px 22px;
    margin-top: 3.2rem;
    padding: 2.4rem 2rem;
  }
}

.p-recruit__ideal-title {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__ideal-title {
    font-size: 1.7rem;
    margin-bottom: 1.2rem;
  }
}

.p-recruit__ideal-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.6rem 0;
}
@media screen and (max-width: 767px) {
  .p-recruit__ideal-list {
    gap: 0.4rem 0;
  }
}
.p-recruit__ideal-list li {
  font-size: 1.5rem;
  font-weight: normal;
  position: relative;
  padding-left: 1.8rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__ideal-list li {
    font-size: 1.2rem;
  }
}
.p-recruit__ideal-list li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

.p-recruit__info-list {
  margin: 3rem 0 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__info-list {
    margin: 2.4rem 0 4rem;
  }
}

/*------------------------------------------------------------------------------
  p-news-list
------------------------------------------------------------------------------*/
.p-news-list__item {
  border-bottom: 1px solid #E0E0E0;
}
.p-news-list__item:first-child {
  border-top: 1px solid #E0E0E0;
}

.p-news-list__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem 4rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 4.8rem 1.6rem;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.p-news-list__link:hover {
  opacity: 1;
  background-color: #F4F4F4;
}
.p-news-list__link:hover .p-news-list__title {
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .p-news-list__link {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px 15px;
    padding: 20px 0;
  }
}

.p-news-list__date {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #333;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-news-list__date {
    font-size: 1.4rem;
  }
}

.p-news-list__category {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-news-list__title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #333;
  font-weight: 600;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-news-list__title {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    font-size: 1.4rem;
  }
}
.p-news-list__title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../img/caret-black-R.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 0.8rem;
  height: 2rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/*------------------------------------------------------------------------------
  p-single
------------------------------------------------------------------------------*/
.p-single__head {
  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;
  gap: 1.6rem 2rem;
  border-bottom: 1px solid #E0E0E0;
  padding-bottom: 2.8rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .p-single__head {
    gap: 0.8rem 1.6rem;
    padding-bottom: 2.4rem;
    margin-bottom: 3rem;
  }
}

.p-single__label-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
}

.p-single__date {
  font-size: 1.8rem;
  font-weight: normal;
  letter-spacing: 0.05em;
  font-family: "Jost", sans-serif;
  display: inline-block;
  padding-top: 0.4rem;
}
@media screen and (max-width: 767px) {
  .p-single__date {
    font-size: 1.6rem;
  }
}

.p-single__title {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 900px) {
  .p-single__title {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-single__title {
    font-size: 2rem;
    letter-spacing: 0.05em;
  }
}

.p-single__contents {
  margin-bottom: 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-single__contents {
    margin-bottom: 4rem;
  }
}

.p-single__btn {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 auto;
  padding-top: 0.15rem;
}

/*------------------------------------------------------------------------------
  u-color
------------------------------------------------------------------------------*/
.u-primary-color {
  color: #1D1D1D;
}

.u-white-color {
  color: #fff;
}

/*------------------------------------------------------------------------------
  u-fz
------------------------------------------------------------------------------*/
.u-fz16 {
  font-size: 1.6rem;
}

.u-fz15 {
  font-size: 1.5rem;
}

.u-fz14 {
  font-size: 1.4rem;
}

.u-fz13 {
  font-size: 1.3rem;
}

.u-fz12 {
  font-size: 1.2rem;
}

/*------------------------------------------------------------------------------
  u-fw
------------------------------------------------------------------------------*/
.u-fw-bold {
  font-weight: bold;
}

.u-fw-medium {
  font-weight: 500;
}

.u-fw-normal {
  font-weight: 400;
}

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

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

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

/*------------------------------------------------------------------------------
  margin
------------------------------------------------------------------------------*/
.u-mt-0 {
  margin-top: 0 !important;
}

.u-mt-space-2 {
  margin-top: 2px !important;
}

.u-mt-space-3 {
  margin-top: 3px !important;
}

.u-mt-space-4 {
  margin-top: 4px !important;
}

.u-mt-space-3 {
  margin-top: 3px !important;
}

.u-mt-1 {
  margin-top: 8px !important;
}

.u-mt-2 {
  margin-top: 16px !important;
}

.u-mt-3 {
  margin-top: 24px !important;
}

.u-mt-4 {
  margin-top: 32px !important;
}

.u-mt-5 {
  margin-top: 40px !important;
}

.u-mt-6 {
  margin-top: 48px !important;
}

.u-mt-7 {
  margin-top: 56px !important;
}

.u-mt-8 {
  margin-top: 64px !important;
}

.u-mb-0 {
  margin-bottom: 0 !important;
}

.u-mb-05 {
  margin-bottom: 4px !important;
}

.u-mb-1 {
  margin-bottom: 8px !important;
}

.u-mb-2 {
  margin-bottom: 16px !important;
}

.u-mb-3 {
  margin-bottom: 24px !important;
}

.u-mb-4 {
  margin-bottom: 32px !important;
}

.u-mb-5 {
  margin-bottom: 40px !important;
}

.u-mb-6 {
  margin-bottom: 48px !important;
}

.u-mb-7 {
  margin-bottom: 56px !important;
}

.u-my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.u-my-1 {
  margin-top: 8px !important;
  margin-bottom: 8px !important;
}

.u-my-2 {
  margin-top: 16px !important;
  margin-bottom: 16px !important;
}

.u-my-3 {
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}

.u-my-4 {
  margin-top: 32px !important;
  margin-bottom: 32px !important;
}

.u-my-5 {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}

.u-my-6 {
  margin-top: 48px !important;
  margin-bottom: 48px !important;
}

.u-my-7 {
  margin-top: 56px !important;
  margin-bottom: 56px !important;
}

.u-ml-1 {
  margin-left: 8px !important;
}

.u-ml-2 {
  margin-left: 16px !important;
}

.u-ml-05 {
  margin-left: 4px !important;
}

.u-mr-1 {
  margin-right: 8px !important;
}

.u-mr-2 {
  margin-right: 16px !important;
}

.u-mr-3 {
  margin-right: 24px !important;
}

.u-mr-4 {
  margin-right: 32px !important;
}

.u-mr-5 {
  margin-right: 40px !important;
}

.u-m-space-4 {
  margin: 4px !important;
}

.u-m-1 {
  margin: 8px !important;
}

.u-m-2 {
  margin: 16px !important;
}

.u-mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.u-ml-auto {
  margin-left: auto !important;
}

.u-mr-auto {
  margin-right: auto !important;
}

/*------------------------------------------------------------------------------
  padding
------------------------------------------------------------------------------*/
.u-pt-0 {
  padding-top: 0 !important;
}

.u-pt-1 {
  padding-top: 8px !important;
}

.u-pt-2 {
  padding-top: 16px !important;
}

.u-pt-3 {
  padding-top: 24px !important;
}

.u-pt-4 {
  padding-top: 32px !important;
}

.u-pt-5 {
  padding-top: 40px !important;
}

.u-pt-6 {
  padding-top: 48px !important;
}

.u-pt-7 {
  padding-top: 56px !important;
}

.u-pb-0 {
  padding-bottom: 0 !important;
}

.u-pb-1 {
  padding-bottom: 8px !important;
}

.u-pb-2 {
  padding-bottom: 16px !important;
}

.u-pb-3 {
  padding-bottom: 24px !important;
}

.u-pb-4 {
  padding-bottom: 32px !important;
}

.u-pb-5 {
  padding-bottom: 40px !important;
}

.u-pb-6 {
  padding-bottom: 48px !important;
}

.u-pb-7 {
  padding-bottom: 56px !important;
}

.u-py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.u-py-1 {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

.u-py-2 {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}

.u-py-3 {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}

.u-py-4 {
  padding-top: 32px !important;
  padding-bottom: 32px !important;
}

.u-py-5 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.u-py-6 {
  padding-top: 48px !important;
  padding-bottom: 48px !important;
}

.u-py-7 {
  padding-top: 56px !important;
  padding-bottom: 56px !important;
}

.u-pl-1 {
  padding-left: 8px !important;
}

.u-pl-2 {
  padding-left: 16px !important;
}

.u-pr-1 {
  padding-right: 8px !important;
}

.u-pr-2 {
  padding-right: 16px !important;
}

.u-p-1 {
  padding: 8px !important;
}

.u-p-2 {
  padding: 16px !important;
}

/*------------------------------------------------------------------------------
  u-flex
------------------------------------------------------------------------------*/
.u-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.u-justify-content-star {
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: start !important;
}

.u-justify-content-end {
  -webkit-box-pack: end !important;
      -ms-flex-pack: end !important;
          justify-content: end !important;
}

.u-justify-content-between {
  -webkit-box-pack: justify !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important;
}

.u-justify-content-center {
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.u-align-items-start {
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: start !important;
}

.u-align-items-flex-start {
  -ms-flex-item-align: start !important;
      align-self: flex-start !important;
}

.u-align-items-end {
  -webkit-box-align: end !important;
      -ms-flex-align: end !important;
          align-items: end !important;
}

.u-align-items-center {
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}

.u-align-self-start {
  -ms-flex-item-align: start !important;
      -ms-grid-row-align: start !important;
      align-self: start !important;
}

.u-align-self-end {
  -ms-flex-item-align: end !important;
      -ms-grid-row-align: end !important;
      align-self: end !important;
}

.u-align-self-center {
  -ms-flex-item-align: center !important;
      -ms-grid-row-align: center !important;
      align-self: center !important;
}

.u-align-self-strech {
  -ms-flex-item-align: stretch !important;
      -ms-grid-row-align: stretch !important;
      align-self: stretch !important;
}

.u-flex-grow-1 {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.u-flex-shrink-0 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
/*# sourceMappingURL=style.css.map */