@charset "UTF-8";
html {
  font-size: 100%;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 890px) {
  html {
    font-size: 0.9039548023vw;
  }
}
@media (min-width: 1770px) {
  html {
    font-size: 100%;
  }
}

body {
  font-family: 游ゴシック体, YuGothic, 游ゴシック Medium, Yu Gothic Medium, 游ゴシック, Yu Gothic, Noto Sans JP, sans-serif;
  color: #000;
  background-color: #c30111;
  font-weight: 500;
}
@media screen and (min-width: 890px) {
  body {
    font-size: 0.875rem;
  }
}

body.archive,
body.single {
  position: relative;
}

body.archive::before,
body.single::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60vh;
  background-image: url(../images/common/page_bg.jpg);
  background-size: cover;
  z-index: -1;
}

body.page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60vh;
  background-image: url(../images/case/case_bg.jpg);
  background-size: cover;
  z-index: -1;
}

/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
li {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
}

picture {
  height: 100%;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

button {
  border: none;
  padding: 0;
  background-color: transparent;
  background-color: initial;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
*::before,
*::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  border: none;
}

.l-blog {
  width: 100%;
  margin: 0 auto;
  padding: 30px 20px 0;
  padding: 1.875rem 1.25rem 0;
}
@media screen and (min-width: 1024px) {
  .l-blog {
    display: grid;
    grid-template-columns: 1fr 18.75rem;
    grid-column-gap: 3.125rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    width: 81.25%;
    max-width: 97.5rem;
    padding: 0 1.25rem 0;
  }
}

.l-case-blog {
  background-color: #F5F7F9;
}

.l-case-main {
  margin-top: 129px;
  margin-top: 8.0625rem;
}

.l-case {
  margin-top: 130px;
  margin-top: 8.125rem;
  color: #fff;
}

.l-contact {
  margin-top: 111px;
  margin-top: 6.9375rem;
}

.l-content {
  width: 100%;
  background-color: #fff;
  margin-top: 81px;
  margin-top: 5.0625rem;
}

.l-esl,.l-rental {
  margin-top: 129px;
  margin-top: 8.0625rem;
  background-color: #fff;
}

.l-features {
  margin-top: 174px;
  margin-top: 10.875rem;
}

.l-footer {
  background-color: #F0F3F6;
}

.l-header {
  color: #fff;
}

.l-inner {
  width: 100%;
  padding-right: 20px;
  padding-right: 1.25rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 890px) {
  .l-inner {
    max-width: 1770px;
    padding-right: 1.5625rem;
    padding-left: 1.5625rem;
  }
}

.l-main-content {
  color: #fff;
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (min-width: 890px) {
  .l-main-content {
    margin-top: 0;
  }
}

.l-mv {
  color: #fff;
}

.l-plan {
  margin-top: 120px;
  margin-top: 7.5rem;
}

.l-product-single {
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (min-width: 890px) {
  .l-product-single {
    margin-top: 5.625rem;
  }
}

.l-product {
  margin-top: 135px;
  margin-top: 8.4375rem;
}

/*==================================================
ふわっ
===================================*/
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.box {
  opacity: 0;
}

.c-common-btn {
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
  border-radius: 50%;
  position: relative;
}
.c-common-btn a {
  display: block;
  width: 100%;
  height: 100%;
}

.c-common-btn::before {
  content: "";
  position: absolute;
  width: 12px;
  width: 0.75rem;
  height: 12px;
  height: 0.75rem;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
  top: 50%;
  left: 15px;
  left: 0.9375rem;
}

.c-common-btn__black {
  border: 1px solid #000;
}

.c-common-btn__black::before {
  border-top: 1px solid #000;
  border-right: 1px solid #000;
}

.c-common-btn__white {
  border: 1px solid #fff;
}

.c-common-btn__white::before {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

.c-common-head {
  color: #fff;
  text-align: center;
}

.c-common-head__en {
  height: 40px;
  height: 2.5rem;
}
@media screen and (min-width: 890px) {
  .c-common-head__en {
    height: 3.375rem;
  }
}
.c-common-head__en img {
  height: inherit;
  margin: auto;
}

.c-common-head__ja {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.8888888889;
  font-weight: bold;
}
@media screen and (min-width: 890px) {
  .c-common-head__ja {
    font-size: 1.125rem;
  }
}

.c-common-title {
  color: #000;
  font-weight: bold;
}
@media screen and (min-width: 890px) {
  .c-common-title {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
  }
}

.c-common-title__en {
  height: 40px;
  height: 2.5rem;
  margin-right: 10px;
  margin-right: 0.625rem;
}
.c-common-title__en img {
  width: auto;
  height: 100%;
}
@media screen and (min-width: 890px) {
  .c-common-title__en {
    width: 5.6875rem;
    margin-right: 0;
  }
  .c-common-title__en img {
    width: 100%;
    height: auto;
  }
}

.c-common-title__ja {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.8888888889;
  padding-left: 27px;
  padding-left: 1.6875rem;
  position: relative;
  font-weight: bold;
}
@media screen and (min-width: 890px) {
  .c-common-title__ja {
    padding-left: 0;
    padding-top: 1.6875rem;
  }
}
.c-common-title__ja span {
  text-orientation: upright;
}

.c-common-title__ja::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 13px;
  width: 0.8125rem;
  height: 13px;
  height: 0.8125rem;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #c30111;
}
@media screen and (min-width: 890px) {
  .c-common-title__ja::before {
    top: 0.28125rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.c-icon {
  position: absolute;
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
}

.c-icon__item {
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
  border-radius: 50%;
  display: inline-block;
  background-color: #fff;
  position: relative;
}

.c-icon__item::before {
  content: "";
  position: absolute;
  width: 5px;
  width: 0.3125rem;
  height: 5px;
  height: 0.3125rem;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
  top: 50%;
  left: 15px;
  left: 0.9375rem;
}

.c-product-card {
  background-color: #fff;
  color: #000;
  position: relative;
}
.c-product-card a {
  display: block;
  padding: 28px 23px 84px;
  padding: 1.75rem 1.4375rem 5.25rem;
}
@media screen and (min-width: 890px) {
  .c-product-card a {
    padding: 3rem 1.4375rem 5.25rem;
  }
}
@media screen and (min-width: 1440px) {
  .c-product-card a {
    padding: 3rem 3.3125rem 5.25rem;
  }
}

.c-product-card__image {
  width: 100%;
  height: 150px;
  height: 9.375rem;
  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;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}
@media screen and (min-width: 1024px) {
  .c-product-card__image {
    height: 12.75rem;
  }
}
.c-product-card__image img {
  width: auto;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 1024px) {
  .c-product-card__image img {
    width: 100%;
    height: auto;
  }
}

.c-product-card__head {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 2;
  padding: 10px 0;
  padding: 0.625rem 0;
  color: #c30111;
  border-top: 1px solid #c30111;
  border-bottom: 1px solid #c30111;
  font-weight: bold;
  text-align: center;
  margin-top: 38px;
  margin-top: 2.375rem;
}

.c-product-card__text {
  margin-top: 23px;
  margin-top: 1.4375rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.625;
}
.c-product-card__text span {
  display: block;
}

.c-product-card__link {
  position: absolute;
  bottom: 20px;
  bottom: 1.25rem;
  right: 20px;
  right: 1.25rem;
}
@media screen and (min-width: 890px) {
  .c-product-card__link {
    bottom: 1.875rem;
    right: 1.875rem;
  }
}

.c-product-card:hover .c-product-card__link {
  background-color: #000;
}

.c-product-card:hover .c-common-btn__black::before {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

.c-read-more {
  position: relative;
  color: #fff;
  font-weight: bold;
}

.c-read-more__btn {
  padding: 20px 10px;
  padding: 1.25rem 0.625rem;
  background-color: #000;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 3.125rem;
  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;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border: 1px solid #000;
  border: 0.0625rem solid #000;
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 500px) {
  .c-read-more__btn {
    font-size: 0.875rem;
    padding: 1.25rem 1.25rem;
  }
}
@media screen and (min-width: 890px) {
  .c-read-more__btn {
    font-size: 1.125rem;
    padding: 1.25rem 0;
  }
}

.c-read-more__btn:hover {
  background-color: #fff;
  color: #000;
  border: 1px solid #000;
  border: 0.0625rem solid #000;
  padding: -1px;
  padding: -0.0625rem;
}

.c-read-more__icon {
  top: 50%;
  right: 20px;
  right: 1.25rem;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  display: none;
}
@media screen and (min-width: 500px) {
  .c-read-more__icon {
    display: block;
  }
}

.c-read-more__btn:hover .c-read-more__icon {
  opacity: 0;
}

.p-404 {
  height: 100vh;
  background-color: #c30111;
  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;
  color: white;
}
.p-404 h1 {
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 890px) {
  .p-404 h1 {
    font-size: 1.75rem;
  }
}
.p-404 p {
  margin-top: 70px;
  margin-top: 4.375rem;
  font-size: 16px;
  font-size: 1rem;
}

.p-about-main__inner {
  padding: 0 20px;
  padding: 0 1.25rem;
  margin: 90px auto 0;
  margin: 5.625rem auto 0;
  max-width: 600px;
  max-width: 37.5rem;
}
@media screen and (min-width: 890px) {
  .p-about-main__inner {
    width: 70.8333333333%;
    max-width: 85rem;
    margin: 8.125rem auto 0;
  }
}

.p-about-main__wrap {
  padding: 20px;
  padding: 1.25rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #fff;
}
@media screen and (min-width: 890px) {
  .p-about-main__wrap {
    padding: 3.125rem;
  }
}

.p-about-table {
  width: 100%;
}

.p-about-table tr {
  border-bottom: 1px solid #a2a2a2;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.p-about-table__l,
.p-about-table__r {
  padding: 20px 10px;
  padding: 1.25rem 0.625rem;
}

.p-about-table__l {
  font-weight: bold;
  font-size: 18px;
  font-size: 1.125rem;
  display: block;
  width: 100%;
}
@media screen and (min-width: 890px) {
  .p-about-table__l {
    width: 20%;
    display: table-cell;
    border-bottom: 1px solid #a2a2a2;
  }
}

.p-about-table__r {
  font-size: 16px;
  font-size: 1rem;
  border-bottom: 1px solid #a2a2a2;
  display: block;
  width: 100%;
}
@media screen and (min-width: 890px) {
  .p-about-table__r {
    font-size: 1.125rem;
    display: table-cell;
    width: auto;
  }
}

.p-archive-item {
  width: 100%;
  padding: 0 0 30px;
  padding: 0 0 1.875rem;
  border-bottom: 1px solid #000;
  border-bottom: 0.0625rem solid #000;
}
.p-archive-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}

.p-archive-item__title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.5;
  margin-top: 10px;
  margin-top: 0.625rem;
}

.p-archive-item__post-time {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7142857143;
  color: #c30111;
  font-weight: bold;
}

.p-archive-item__thumbnail {
  width: 100%;
  position: relative;
  padding-top: 60%;
  overflow: hidden;
  margin-top: 20px;
  margin-top: 1.25rem;
}
.p-archive-item__thumbnail img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.p-archive-item__thumbnail:hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.p-archive__bottom {
  margin-top: auto;
}

.p-archive__top {
  margin-top: 10px;
  margin-top: 0.625rem;
}

.p-archive-item__content {
  font-size: 16px;
  font-size: 1rem;
  margin-top: 10px;
  margin-top: 0.625rem;
}

.p-archive__left {
  width: 100%;
  background-color: #F5F7F9;
  padding: 15px 25px;
  padding: 0.9375rem 1.5625rem;
}
@media screen and (min-width: 890px) {
  .p-archive__left {
    padding: 5rem 6.25rem;
  }
}

.p-archive__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 3.125rem 1.5625rem;
}
@media screen and (min-width: 500px) {
  .p-archive__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 890px) {
  .p-archive__list {
    grid-gap: 1.875rem 3.75rem;
  }
}

.p-blog-single {
  position: relative;
  overflow: hidden;
}

.p-blog-single__wrap {
  width: 100%;
  background-color: #fff;
  margin-bottom: 50px;
  margin-bottom: 3.125rem;
  padding: 50px 20px;
  padding: 3.125rem 1.25rem;
}
@media screen and (min-width: 890px) {
  .p-blog-single__wrap {
    padding: 5rem 6.25rem;
    margin-bottom: 0;
  }
}

.p-blog-single__title {
  font-size: 18px;
  font-size: 1.125rem;
  padding-bottom: 5px;
  padding-bottom: 0.3125rem;
  border-bottom: 3px solid #c30111;
  border-bottom: 0.1875rem solid #c30111;
}
@media screen and (min-width: 890px) {
  .p-blog-single__title {
    font-size: 1.75rem;
  }
}

.p-blog-single__top {
  margin-top: 10px;
  margin-top: 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-blog-single__time {
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 890px) {
  .p-blog-single__time {
    font-size: 0.9375rem;
  }
}

.p-blog-single__cat {
  margin-left: 14px;
  margin-left: 0.875rem;
  font-size: 12px;
  font-size: 0.75rem;
  color: #fff;
}
@media screen and (min-width: 890px) {
  .p-blog-single__cat {
    font-size: 0.9375rem;
  }
}
.p-blog-single__cat ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-blog-single__cat li {
  padding: 3px 5px;
  padding: 0.1875rem 0.3125rem;
  background-color: #c30111;
  display: block;
}
.p-blog-single__cat li + li {
  margin-left: 5px;
  margin-left: 0.3125rem;
}

.p-blog-single__body {
  margin-top: 30px;
  margin-top: 1.875rem;
}
.p-blog-single__body h2 {
  font-size: 20px;
  font-size: 1.25rem;
  color: #fff;
  padding: 10px 10px;
  padding: 0.625rem 0.625rem;
  line-height: 2;
  font-weight: bold;
  margin-top: 40px;
  margin-top: 2.5rem;
  background-color: #000;
}
@media screen and (min-width: 890px) {
  .p-blog-single__body h2 {
    font-size: 1.75rem;
  }
}
.p-blog-single__body h3 {
  font-size: 18px;
  font-size: 1.125rem;
  margin-top: 40px;
  margin-top: 2.5rem;
  line-height: 2;
  font-weight: bold;
  border-bottom: 2px solid #c30111;
  border-bottom: 0.125rem solid #c30111;
}
@media screen and (min-width: 890px) {
  .p-blog-single__body h3 {
    font-size: 1.75rem;
  }
}
.p-blog-single__body h4 {
  font-size: 16px;
  font-size: 1rem;
  margin-top: 40px;
  margin-top: 2.5rem;
  line-height: 2;
  border-bottom: 2px solid #000;
  border-bottom: 0.125rem solid #000;
}
@media screen and (min-width: 890px) {
  .p-blog-single__body h4 {
    font-size: 1.125rem;
  }
}
.p-blog-single__body h5 {
  font-size: 16px;
  font-size: 1rem;
  margin-top: 40px;
  margin-top: 2.5rem;
  font-weight: bold;
  line-height: 2;
}
@media screen and (min-width: 890px) {
  .p-blog-single__body h5 {
    font-size: 1.125rem;
  }
}
.p-blog-single__body p {
  font-size: 16px;
  margin-top: 20px;
  margin-top: 1.25rem;
}
.p-blog-single__body img {
  margin-top: 20px;
  margin-top: 1.25rem;
}
.p-blog-single__body iframe {
  max-width: 100%;
  margin-top: 40px;
  margin-top: 2.5rem;
}
.p-blog-single__body dl + h1, .p-blog-single__body dl + h2, .p-blog-single__body dl + h3, .p-blog-single__body dl + h4, .p-blog-single__body dl + h5, .p-blog-single__body dl + h6, .p-blog-single__body ol + h1, .p-blog-single__body ol + h2, .p-blog-single__body ol + h3, .p-blog-single__body ol + h4, .p-blog-single__body ol + h5, .p-blog-single__body ol + h6, .p-blog-single__body p + h1, .p-blog-single__body p + h2, .p-blog-single__body p + h3, .p-blog-single__body p + h4, .p-blog-single__body p + h5, .p-blog-single__body p + h6, .p-blog-single__body table + h1, .p-blog-single__body table + h2, .p-blog-single__body table + h3, .p-blog-single__body table + h4, .p-blog-single__body table + h5, .p-blog-single__body table + h6, .p-blog-single__body ul + h1, .p-blog-single__body ul + h2, .p-blog-single__body ul + h3, .p-blog-single__body ul + h4, .p-blog-single__body ul + h5, .p-blog-single__body ul + h6 {
  margin-top: 2em;
}

/*--------breadcrumb---------*/
.p-breadcrumb {
  font-weight: 500;
  color: #fff; /* 文字の色 */
  font-size: 14px;
  font-size: 0.875rem; /* 文字のサイズ */
  padding: 10px 0;
  padding: 0.625rem 0;
}
@media screen and (min-width: 890px) {
  .p-breadcrumb {
    padding: 1.875rem 0;
  }
}

.p-breadcrumb2 {
  margin-left: 20px;
  margin-left: 1.25rem;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 20px;
  line-height: 1.25rem;
  padding-bottom: 50px;
  padding-bottom: 3.125rem;
}
@media screen and (min-width: 890px) {
  .p-breadcrumb2 {
    font-size: 1.125rem;
    max-width: 107.5rem;
    margin: 0 auto;
  }
}

.p-breadcrumb2__archive {
  padding: 0 10px 0 22px;
  padding: 0 0.625rem 0 1.375rem;
  position: relative;
  border-right: 1px solid white;
  border-right: 0.0625rem solid white;
  margin-left: 0;
}
@media screen and (min-width: 890px) {
  .p-breadcrumb2__archive {
    margin-left: 9.9479166667vw;
    padding: 0 1.5rem 0 2rem;
  }
}
.p-breadcrumb2__archive a {
  white-space: nowrap;
}

.p-breadcrumb2__archive::before {
  content: "";
  width: 8px;
  width: 0.5rem;
  height: 8px;
  height: 0.5rem;
  background-color: #000;
  position: absolute;
  top: 50%;
  left: 0;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 890px) {
  .p-breadcrumb2__archive::before {
    width: 0.8125rem;
    height: 0.8125rem;
  }
}

.p-breadcrumb__is-page {
  padding: 0 10px;
  padding: 0 0.625rem;
}
@media screen and (min-width: 890px) {
  .p-breadcrumb__is-page {
    padding: 0 1.5rem;
  }
}

.p-case-archive {
  margin-top: 90px;
  margin-top: 5.625rem;
  background-color: #fff;
}

.p-case-archive__inner {
  margin: 0 auto;
  padding: 50px 20px;
  padding: 3.125rem 1.25rem;
}
@media screen and (min-width: 890px) {
  .p-case-archive__inner {
    width: 70.8333333333%;
    max-width: 85rem;
  }
}

@media screen and (min-width: 890px) {
  .p-case-archive__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1.25rem;
  }
}
.p-case-archive__list .p-case__item a {
  padding: 32% 50px 0;
  padding: 32% 3.125rem 0;
}

.p-case-blog__inner {
  max-width: 600px;
  max-width: 37.5rem;
  width: 100%;
  margin: auto;
  padding: 100px 20px 95px;
  padding: 6.25rem 1.25rem 5.9375rem;
}
@media screen and (min-width: 890px) {
  .p-case-blog__inner {
    width: 81.25%;
    max-width: 97.5rem;
  }
}

.p-case-blog__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-row-gap: 2.5rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 890px) {
  .p-case-blog__list {
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 2.5rem;
    grid-row-gap: 0;
  }
}

.p-case-blog__btn {
  width: 100%;
  max-width: 300px;
  max-width: 18.75rem;
  margin: 43px auto 0;
  margin: 2.6875rem auto 0;
}

.p-case-item {
  width: 100%;
  max-width: 408px;
  max-width: 25.5rem;
  position: relative;
  margin: 0 auto 50px;
  margin: 0 auto 3.125rem;
  color: #fff;
}
@media screen and (min-width: 890px) {
  .p-case-item {
    margin-bottom: 0;
  }
}

.p-case-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  aspect-ratio: 408/639;
  padding: 0 50px;
  padding: 0 3.125rem;
}
@media screen and (min-width: 890px) {
  .p-case-item a {
    -webkit-box-align: normal;
        -ms-flex-align: normal;
            align-items: normal;
    padding: 47% 3.125rem 0;
  }
}

.p-case-item__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-case-item:hover .c-common-btn {
  background-color: #fff;
}

.p-case-item:hover .c-common-btn__white::before {
  border-top: 1px solid #000;
  border-right: 1px solid #000;
}

.p-case-item__1 {
  background-image: url(../images/top/case_01.jpg);
}

.p-case-item__2 {
  background-image: url(../images/top/case_02.jpg);
}

.p-case-item__3 {
  background-image: url(../images/top/case_03.jpg);
}

.p-case-item__title {
  line-height: 1.5;
  position: relative;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 890px) {
  .p-case-item__title {
    font-size: 1.75rem;
    margin-bottom: 2.625rem;
  }
}

.p-case-item__title::before {
  content: "";
  position: absolute;
  width: 100px;
  width: 6.25rem;
  height: 3px;
  height: 0.1875rem;
  background-color: #fff;
  left: 0;
  bottom: 0;
}

.p-case-item__text {
  font-size: 16px;
  font-size: 1rem;
  line-height: 2;
}

.p-case-item__btn {
  position: absolute;
  bottom: 20px;
  bottom: 1.25rem;
  right: 20px;
  right: 1.25rem;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
@media screen and (min-width: 890px) {
  .p-case-item__btn {
    bottom: 1.875rem;
    right: 1.875rem;
  }
}

.p-case-main {
  color: #fff;
}

.p-case-main__inner {
  max-width: 600px;
  max-width: 37.5rem;
  width: 100%;
  padding: 0 20px;
  padding: 0 1.25rem;
  margin: 0 auto;
}
@media screen and (min-width: 890px) {
  .p-case-main__inner {
    width: 70.8333333333%;
    max-width: 85rem;
  }
}

.p-case-main__title {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.6666666667;
}
@media screen and (min-width: 890px) {
  .p-case-main__title {
    font-size: 1.875rem;
  }
}

.p-case-main__text {
  font-size: 16px;
  font-size: 1rem;
  line-height: 2.125;
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-case-main__link {
  text-align: center;
}

.p-case-main__link--text {
  margin-top: 50px;
  margin-top: 3.125rem;
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
  display: inline-block;
  position: relative;
}
@media screen and (min-width: 890px) {
  .p-case-main__link--text {
    font-size: 1.125rem;
  }
}

.p-case-main__link--text::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 20px;
  height: 1.25rem;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  top: 50%;
  left: -19px;
  left: -1.1875rem;
  background-color: #fff;
}
@media screen and (min-width: 890px) {
  .p-case-main__link--text::before {
    height: 2.1875rem;
  }
}

.p-case-main__link--text::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 20px;
  height: 1.25rem;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  top: 50%;
  right: -19px;
  right: -1.1875rem;
  background-color: #fff;
}
@media screen and (min-width: 890px) {
  .p-case-main__link--text::after {
    height: 2.1875rem;
  }
}

.p-case-main__btn {
  margin-top: 15px;
  margin-top: 0.9375rem;
  margin: 15px auto 0;
  margin: 0.9375rem auto 0;
  max-width: 500px;
  max-width: 31.25rem;
  width: 100%;
}

.p-case {
  width: 100%;
}

@media screen and (min-width: 890px) {
  .p-case__inner {
    width: 94.7916666667%;
    max-width: 113.75rem;
    margin-left: auto;
  }
}

.p-case__wrap {
  background-color: #fff;
  padding: 95px 0;
  padding: 5.9375rem 0;
}
@media screen and (min-width: 890px) {
  .p-case__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 9.375rem 0;
  }
}

.p-case__title {
  margin-left: 20px;
  margin-left: 1.25rem;
}
@media screen and (min-width: 890px) {
  .p-case__title {
    margin-left: 8%;
    margin-right: 3.125rem;
  }
}

.p-case__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-column-gap: 0.9375rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 50px 20px;
  padding: 3.125rem 1.25rem;
}
@media screen and (min-width: 890px) {
  .p-case__list {
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 2.375rem;
    max-width: 81.25rem;
    width: 100%;
    margin-right: 1.25rem;
    padding: 0;
  }
}

.p-contact-main {
  width: 100%;
  padding-bottom: 110px;
  padding-bottom: 6.875rem;
}

.p-contact-main__text {
  padding: 60px 20px 50px;
  padding: 3.75rem 1.25rem 3.125rem;
  text-align: center;
  font-weight: 700;
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2.44;
}
@media screen and (min-width: 890px) {
  .p-contact-main__text {
    font-size: 1rem;
    padding: 6.25rem 1.25rem 4.375rem;
  }
}

.p-contact-main__inner {
  background-color: white;
  max-width: 600px;
  margin: 0 auto;
  padding: 98px 10px 90px;
  padding: 6.125rem 0.625rem 5.625rem;
  width: 90%;
  /* エラー個所をわかりやすく表示 */
  /*項目の下線*/
  /*必須・任意のラベルの形状*/
  /*必須のカラー*/
  /*任意のカラー*/
  /* デフォルトのボタン */
  /* チェック前のボタン */
  /* チェック後のボタン */
}
@media screen and (min-width: 890px) {
  .p-contact-main__inner {
    width: 70.8333333333%;
    max-width: 85rem;
    padding: 6.125rem 1.5625rem 5.625rem;
  }
}
.p-contact-main__inner .wpcf7 {
  width: 100%;
  max-width: 800px;
  max-width: 50rem;
  margin: 0 auto;
}
@media screen and (min-width: 890px) {
  .p-contact-main__inner .wpcf7 {
    width: 60rem;
    max-width: 100%;
  }
}
.p-contact-main__inner .wpcf7 textarea {
  width: 97.5%;
  height: 300px;
}
.p-contact-main__inner .wpcf7 input:focus,
.p-contact-main__inner .wpcf7 textarea:focus {
  border: 1px solid #009de1;
}
.p-contact-main__inner .wpcf7-captchac {
  border: 1px solid #ccc;
}
.p-contact-main__inner .wpcf7 .wpcf7-not-valid {
  background: #ffb6c1;
}
.p-contact-main__inner .wpcf7 span.wpcf7-not-valid-tip {
  font-size: 80%;
}
.p-contact-main__inner .wpcf7 .wpcf7-response-output {
  margin: 10px 0 0;
  margin: 0.625rem 0 0;
  padding: 8px 45px 8px 14px;
  padding: 0.5rem 2.8125rem 0.5rem 0.875rem;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .5);
  border-radius: 0.25rem;
}
.p-contact-main__inner .contact-text {
  display: block;
  font-size: 16px;
  font-size: 1rem;
  margin-bottom: 30px;
}
@media screen and (min-width: 890px) {
  .p-contact-main__inner .contact-text {
    font-size: 1.5rem;
  }
}
.p-contact-main__inner .wpcf7-text,
.p-contact-main__inner .wpcf7-textarea {
  border: 1px solid #a1a1a1;
  padding: 8px;
  background-color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 500px) {
  .p-contact-main__inner .wpcf7-text,
.p-contact-main__inner .wpcf7-textarea {
    padding: 0.75rem 0.375rem;
    font-size: 16px;
  }
}
.p-contact-main__inner .inquiry th,
.p-contact-main__inner .inquiry td {
  border: none;
  background: #fff;
  border-bottom: 3px dotted silver;
}
.p-contact-main__inner .formlabel {
  padding: 5px;
  padding: 0.3125rem;
  font-size: 14px;
  font-size: 0.875rem;
  margin-right: 10px;
  position: relative;
}
@media screen and (min-width: 890px) {
  .p-contact-main__inner .formlabel {
    font-size: 1rem;
  }
}
.p-contact-main__inner .must {
  color: #fff;
  background-color: #c30111;
  border-radius: 20px;
  padding: 4px 6px;
  padding: 0.25rem 0.375rem;
  font-size: 14px;
  font-size: 0.875rem;
  margin-left: 10px;
  margin-left: 0.625rem;
}
.p-contact-main__inner .may {
  color: white;
  background-color: #000;
  border-radius: 20px;
  padding: 4px 6px;
  padding: 0.25rem 0.375rem;
  font-size: 14px;
  font-size: 0.875rem;
  margin-left: 10px;
  margin-left: 0.625rem;
}
.p-contact-main__inner .wpcf7-list-item.first {
  margin: 0;
}
.p-contact-main__inner .wpcf7-list-item-label {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-contact-main__inner input[type=radio] {
  opacity: 0;
  position: absolute;
}
.p-contact-main__inner .wpcf7-list-item-label::before {
  background: #fff;
  border: 1px solid #333;
  border-radius: 50%;
  content: "";
  height: 1.2em;
  margin-bottom: auto;
  margin-right: 0.5em;
  margin-top: auto;
  -webkit-transition: background-color 0.5s;
  transition: background-color 0.5s;
  width: 1.2em;
}
.p-contact-main__inner input[type=radio]:checked + .wpcf7-list-item-label::before {
  background-color: #333;
  -webkit-box-shadow: inset 0 0 0 3px #fff;
          box-shadow: inset 0 0 0 3px #fff;
}
.p-contact-main__inner .wpcf7 textarea {
  width: 100%;
}
.p-contact-main__inner .wpcf7 form.sent .wpcf7-response-output {
  display: none;
}
.p-contact-main__inner .wpcf7 input {
  max-width: 100%;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.p-contact-main__inner .wpcf7-list-item {
  display: block;
  margin: 0;
}
@media screen and (min-width: 890px) {
  .p-contact-main__inner .wpcf7-list-item {
    display: inline-block;
  }
}
.p-contact-main__inner .wpcf7-list-item + .wpcf7-list-item {
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (min-width: 890px) {
  .p-contact-main__inner .wpcf7-list-item + .wpcf7-list-item {
    margin-top: 0rem;
    margin-left: 0.3125rem;
  }
}

.wpcf7-form-control-wrap.your-name input,
.wpcf7-form-control-wrap.your-email input,
.wpcf7-form-control-wrap.your-subject input {
  max-width: 100%;
}

.p-contact-form {
  width: 100%;
  margin: 0 auto;
  border-spacing: 10px 0;
}
.p-contact-form tr td,
.p-contact-form tr th {
  text-align: left;
  padding-bottom: 30px;
  display: block;
}
@media screen and (min-width: 890px) {
  .p-contact-form tr td,
.p-contact-form tr th {
    display: table-cell;
    vertical-align: top;
  }
}
.p-contact-form tr td {
  width: 100%;
}
@media screen and (min-width: 890px) {
  .p-contact-form tr td {
    width: 38.75rem;
  }
}
.p-contact-form tr th {
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 890px) {
  .p-contact-form tr th {
    font-size: 1rem;
    line-height: 3.125rem;
  }
}

/*送信ボタンのデザイン変更*/
.submit-btn {
  position: relative;
  display: inline-block;
  width: 280px !important;
  width: 17.5rem !important;
  padding: 20px 20px;
  padding: 1.25rem 1.25rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  display: block;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin: 0 auto;
  background-color: #000;
  color: #fff;
  border-radius: 2.5rem;
  cursor: pointer;
}

/*送信ボタンマウスホバー*/
input.submit-btn:hover {
  background-color: #fff;
  color: #000;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.input-label {
  font-size: 12px;
  font-size: 0.75rem;
  color: #a1a1a1;
}

.p-contact-sub__text {
  margin-top: 40px;
  margin-top: 2.5rem;
  font-size: 16px;
  line-height: 1.75;
  color: #fff;
  text-align: center;
  padding: 0 20px;
}

.p-contact__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-contact__left {
  background-color: #000;
  width: 15%;
  padding: 40px 10px;
  padding: 2.5rem 0.625rem;
}
@media screen and (min-width: 890px) {
  .p-contact__left {
    width: 28.6458333333%;
    padding: 4.75rem 4.5625rem;
  }
}

.p-contact__right {
  width: 85%;
  background-color: #82000a;
  padding: 40px 20px;
  padding: 2.5rem 1.25rem;
  position: relative;
}
@media screen and (min-width: 890px) {
  .p-contact__right {
    width: 71.3541666667%;
    padding: 4.75rem 3.5625rem;
    -webkit-transition: 0.5s all;
    transition: 0.5s all;
  }
}

.p-contact__mail {
  margin-left: auto;
  width: 40px;
  width: 2.5rem;
}

.p-contact__title {
  color: #fff;
}
@media screen and (min-width: 890px) {
  .p-contact__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.25rem;
  }
}

.p-contact__title--en {
  height: 30px;
  height: 1.875rem;
}
@media screen and (min-width: 890px) {
  .p-contact__title--en {
    height: 2.8125rem;
  }
}
.p-contact__title--en img {
  height: inherit;
}

.p-contact__title--ja {
  font-size: 14px;
  font-size: 0.875rem;
  margin-top: 10px;
  margin-top: 0.625rem;
  font-weight: bold;
}
@media screen and (min-width: 890px) {
  .p-contact__title--ja {
    margin-top: 0;
    font-size: 1.125rem;
  }
}

.p-contact__btn {
  margin-top: 10px;
  margin-top: 0.625rem;
  margin-left: auto;
}
@media screen and (min-width: 890px) {
  .p-contact__btn {
    position: absolute;
    top: 50%;
    right: 12.5rem;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    margin-top: 0;
  }
}

@media screen and (min-width: 890px) {
  .p-contact:hover .p-contact__right {
    background-color: #000;
  }
}

.p-content-merit {
  margin-top: 42px;
  margin-top: 2.625rem;
}

.p-content-merit__item {
  padding: 44px 20px;
  padding: 2.75rem 1.25rem;
  border: 1px solid #c30111;
  border: 0.0625rem solid #c30111;
}
@media screen and (min-width: 500px) {
  .p-content-merit__item {
    padding: 4rem 3.125rem;
  }
}
@media screen and (min-width: 890px) {
  .p-content-merit__item {
    display: grid;
    grid-template-columns: 7.8125rem 1fr;
    padding: 4rem 4.375rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-content-merit__item + .p-content-merit__item {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-content-merit__label img {
  width: 60px;
  width: 3.75rem;
  border-bottom: 3px solid #c30111;
  border-bottom: 0.1875rem solid #c30111;
}

.p-content-merit__title {
  font-size: 16px;
  font-size: 1rem;
  color: #c30111;
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (min-width: 890px) {
  .p-content-merit__title {
    font-size: 1.625rem;
    margin-top: 0;
  }
}

.p-content-merit__text {
  font-size: 16px;
  font-size: 1rem;
  margin-top: 26px;
  margin-top: 1.625rem;
  line-height: 1.875;
}

.p-content__inner {
  max-width: 600px;
  max-width: 37.5rem;
  padding: 157px 20px 53px;
  padding: 9.8125rem 1.25rem 3.3125rem;
  margin: 0 auto;
  width: 100%;
}
@media screen and (min-width: 890px) {
  .p-content__inner {
    width: 70.8333333333%;
    max-width: 85rem;
  }
}

.p-content__title {
  font-size: 18px;
  font-size: 1.125rem;
  padding-left: 32px;
  padding-left: 2rem;
  position: relative;
}
@media screen and (min-width: 890px) {
  .p-content__title {
    font-size: 1.625rem;
  }
}

.p-content__title::before {
  content: "";
  position: absolute;
  width: 13px;
  width: 0.8125rem;
  height: 13px;
  height: 0.8125rem;
  background-color: #c30111;
  border-radius: 50%;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-content__item + .p-content__item {
  margin-top: 142px;
  margin-top: 8.875rem;
}

.p-content__text {
  font-size: 16px;
  font-size: 1rem;
  margin-top: 15px;
  margin-top: 0.9375rem;
}

.p-esl__inner {
  max-width: 600px;
  max-width: 37.5rem;
  width: 100%;
  padding: 40px 20px;
  padding: 2.5rem 1.25rem;
  margin: 0 auto;
}
@media screen and (min-width: 890px) {
  .p-esl__inner {
    width: 70.8333333333%;
    max-width: 85rem;
    padding: 5rem 1.25rem;
  }
}
.p-esl__inner a:hover {
  opacity: 0.7;
}

.p-esl__content:not(:nth-of-type(1)) {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.p-esl__title {
  position: relative;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6666666667;
  padding-left: 30px;
  padding-left: 1.875rem;
}
@media screen and (min-width: 890px) {
  .p-esl__title {
    font-size: 1.875rem;
  }
}
.p-esl__title::before {
  content: "";
  position: absolute;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  border-radius: 50%;
  background-color: #c30111;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-esl__image {
  width: 100%;
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 890px) {
  .p-esl__image {
    margin-top: 2.5rem;
  }
}

.p-esl__image-top {
  -o-object-position: top;
     object-position: top;
}

.p-esl__image--1 {
  position: relative;
  padding-top: 38%;
}
.p-esl__image--1 img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-esl__text {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.75;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 890px) {
  .p-esl__text {
    font-size: 1.125rem;
  }
}

.p-esl__content-card-area {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-esl__content-card {
  border: 1px solid #c30111;
  padding: 24px;
  padding: 1.5rem;
}
@media screen and (min-width: 890px) {
  .p-esl__content-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 2.5rem;
  }
}
.p-esl__content-card + .p-esl__content-card {
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 890px) {
  .p-esl__content-card + .p-esl__content-card {
    margin-top: 2.5rem;
  }
}

.p-esl__content-card-label {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: bold;
  text-align: center;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
  border-bottom: 4px solid #c30111;
  margin: 0 auto;
}
@media screen and (min-width: 890px) {
  .p-esl__content-card-label {
    font-size: 3.125rem;
    margin-right: 2.5rem;
  }
}
.p-esl__content-card-label span {
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.2em;
}

.p-esl__content-card-label--merit span {
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.p-esl__content-card-title {
  font-size: 18px;
  font-size: 1.125rem;
  color: #c30111;
}
@media screen and (min-width: 890px) {
  .p-esl__content-card-title {
    font-size: 1.5rem;
  }
}

.p-esl__content-card-text {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 890px) {
  .p-esl__content-card-text {
    margin-top: 1.5rem;
    font-size: 1.125rem;
  }
}

.p-esl__content-card-body {
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 890px) {
  .p-esl__content-card-body {
    width: calc(100% - 2.5rem);
    margin-top: 0;
  }
}

.p-esl__content-card-image {
  width: 100%;
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 890px) {
  .p-esl__content-card-image {
    width: 23.4375%;
    -ms-flex-item-align: stretch;
        align-self: stretch;
    margin-left: 0.625rem;
    margin-top: 0;
  }
}
.p-esl__content-card-image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
@media screen and (min-width: 890px) {
  .p-esl__content-card-image img {
    height: 100%;
  }
}

.p-esl__card-Image-right {
  -o-object-position: right;
     object-position: right;
}

.p-esl__card-area {
  margin: 2.5rem calc(50% - 50vw) 0;
  width: 100vw;
  background-color: #c30111;
  padding: 24px 20px 40px;
  padding: 1.5rem 1.25rem 2.5rem;
}
@media screen and (min-width: 890px) {
  .p-esl__card-area {
    padding: 2.5rem 1.25rem 3.75rem;
  }
}

.p-esl__card-area-title {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6666666667;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 890px) {
  .p-esl__card-area-title {
    font-size: 1.875rem;
  }
}

.p-esl__card-area-textarea {
  max-width: 600px;
  max-width: 37.5rem;
  width: 95%;
  padding: 24px 20px;
  padding: 1.5rem 1.25rem;
  margin: 0 auto;
  background-color: #fff;
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 890px) {
  .p-esl__card-area-textarea {
    width: 70.8333333333%;
    max-width: 85rem;
    padding: 2.5rem 1.25rem;
    margin-top: 2.5rem;
  }
}

.p-esl__card-area-text {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}
@media screen and (min-width: 890px) {
  .p-esl__card-area-text {
    font-size: 1.125rem;
  }
}

.p-esl__card {
  border: 1px solid #ccc;
  padding: 20px;
  padding: 1.25rem;
  position: relative;
  width: 100%;
  margin-top: 40px;
  margin-top: 2.5rem;
  display: block;
}
@media screen and (min-width: 890px) {
  .p-esl__card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.p-esl__card-Image {
  width: 100%;
}
@media screen and (min-width: 890px) {
  .p-esl__card-Image {
    width: 37.5%;
    margin-right: 1.875rem;
  }
}
.p-esl__card-Image img {
  aspect-ratio: 330/160;
}

.p-esl__card-label {
  position: absolute;
  top: -10px;
  top: -0.625rem;
  left: 24px;
  left: 1.5rem;
  padding: 0 10px;
  padding: 0 0.625rem;
  background-color: #fff;
}

.p-esl__card-text {
  font-size: 14px;
  font-size: 0.875rem;
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 890px) {
  .p-esl__card-text {
    font-size: 1.125rem;
    margin-top: 0;
  }
}
.p-esl__card-text span {
  display: block;
  font-weight: 500;
  margin-top: 10px;
  margin-top: 0.625rem;
}

.p-esl__benefits {
  padding: 24px 20px 40px;
  padding: 1.5rem 1.25rem 2.5rem;
  margin: 0 calc(50% - 50vw) 0;
  width: 100vw;
  background-color: #c30111;
}
@media screen and (min-width: 890px) {
  .p-esl__benefits {
    padding: 2.5rem 1.25rem 3.75rem;
  }
}

.p-esl__benefits--grey {
  background-color: #ccc;
}

.p-esl__benefits-title {
  position: relative;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6666666667;
  padding-left: 30px;
  padding-left: 1.875rem;
  color: #fff;
}
@media screen and (min-width: 890px) {
  .p-esl__benefits-title {
    font-size: 1.875rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}
.p-esl__benefits-title::before {
  content: "";
  position: absolute;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  border-radius: 50%;
  background-color: #000;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-esl__benefits-title--black {
  color: #000;
}
.p-esl__benefits-title--black::before {
  background-color: #c30111;
}

.p-esl__benefits-inner {
  max-width: 600px;
  max-width: 37.5rem;
  width: 95%;
  margin: 0 auto;
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 890px) {
  .p-esl__benefits-inner {
    width: 70.8333333333%;
    max-width: 85rem;
    margin-top: 2.5rem;
  }
}

.p-esl__content-5-wrap {
  margin-top: 24px;
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 1.875rem;
}
@media screen and (min-width: 890px) {
  .p-esl__content-5-wrap {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 2.5rem;
  }
}

.p-esl__content-5-item {
  padding: 14px;
  padding: 0.875rem;
  border: 1px solid #c30111;
}
@media screen and (min-width: 890px) {
  .p-esl__content-5-item {
    padding: 1.25rem;
  }
}

.p-esl__content-5-item-image {
  width: 100%;
  position: relative;
  padding-top: 42%;
}
.p-esl__content-5-item-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-esl__content-5-item-image-top {
  -o-object-position: top;
     object-position: top;
}

.p-esl__content-5-item-title {
  position: relative;
  padding-left: 24px;
  padding-left: 1.5rem;
  color: #c30111;
  margin-top: 16px;
  margin-top: 1rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
}
@media screen and (min-width: 890px) {
  .p-esl__content-5-item-title {
    font-size: 1.125rem;
  }
}
.p-esl__content-5-item-title::before {
  content: "";
  position: absolute;
  width: 14px;
  width: 0.875rem;
  height: 14px;
  height: 0.875rem;
  border-radius: 50%;
  background-color: #000;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-esl__content-5-item-text {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 890px) {
  .p-esl__content-5-item-text {
    font-size: 1.125rem;
  }
}

.p-esl__banner {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 890px) {
  .p-esl__banner {
    margin-top: 5rem;
  }
}
.p-esl__banner a {
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.p-esl__banner img {
  width: 100%;
}

.p-esl__content-card-banner {
  max-width: 600px;
  max-width: 37.5rem;
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 890px) {
  .p-esl__content-card-banner {
    margin-top: 2.5rem;
  }
}
.p-esl__content-card-banner a {
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.p-esl__content-card-banner img {
  width: 100%;
}

.p-faq {
  padding: 0 20px;
  padding: 0 1.25rem;
}

.p-faq__inner {
  margin: 50px auto 0;
  margin: 3.125rem auto 0;
  background-color: #fff;
  padding: 30px 10px;
  padding: 1.875rem 0.625rem;
}
@media screen and (min-width: 890px) {
  .p-faq__inner {
    margin: 5.625rem auto 0;
    width: 92%;
    max-width: 1485px;
    padding: 3.125rem 6.25rem;
  }
}

.p-faq__accordion {
  position: relative;
  width: 100%;
}

.p-faq__accordion-title {
  cursor: pointer;
  font-size: 14px;
  font-size: 0.875rem;
  padding: 10px 44px 10px 12px;
  padding: 0.625rem 2.75rem 0.625rem 0.75rem;
  display: grid;
  grid-template-columns: 1.25rem 1fr;
  grid-column-gap: 0.625rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  border-bottom: 1px solid #e9e9e9;
  border-bottom: 0.0625rem solid #e9e9e9;
}
@media screen and (min-width: 890px) {
  .p-faq__accordion-title {
    font-size: 18px;
    font-weight: 700;
    padding: 0.9375rem 5.875rem 0.9375rem 2rem;
    grid-template-columns: 1.875rem 1fr;
    grid-column-gap: 1.75rem;
  }
}
.p-faq__accordion-title span {
  height: 36px;
  width: auto;
}
.p-faq__accordion-title span img {
  width: auto;
  height: 100%;
}

.p-faq__accordion-content {
  display: none;
  padding: 10px 44px 10px 12px;
  padding: 0.625rem 2.75rem 0.625rem 0.75rem;
}
@media screen and (min-width: 890px) {
  .p-faq__accordion-content {
    padding: 0.9375rem 5.875rem 0.9375rem 2rem;
  }
}
.p-faq__accordion-content span {
  height: 36px;
  width: auto;
}
.p-faq__accordion-content span img {
  width: auto;
  height: 100%;
}

.p-faq__accordion-content p {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.5;
}
@media screen and (min-width: 890px) {
  .p-faq__accordion-content p {
    font-size: 1.125rem;
  }
}

/* 矢印 */
.p-faq__accordion-title {
  position: relative;
}

.p-faq__accordion__wrap {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-template-columns: 1.25rem 1fr;
  grid-column-gap: 1.25rem;
}
@media screen and (min-width: 890px) {
  .p-faq__accordion__wrap {
    grid-template-columns: 1.875rem 1fr;
    grid-column-gap: 1.75rem;
  }
}

.p-faq__accordion-title::after {
  content: "";
  width: 10px;
  display: block;
  height: 1px;
  position: absolute;
  right: 25px;
  top: 50%;
  background-color: #000;
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
@media screen and (min-width: 890px) {
  .p-faq__accordion-title::after {
    width: 18px;
    height: 2px;
  }
}

.p-faq__accordion-title::before {
  content: "";
  display: block;
  width: 10px;
  height: 1px;
  background: #000;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  right: 25px;
  position: absolute;
  top: 50%;
}
@media screen and (min-width: 890px) {
  .p-faq__accordion-title::before {
    width: 18px;
    height: 2px;
  }
}

.p-faq__accordion-title.open::before {
  display: none;
}

.p-features-item {
  padding: 0 20px 100px;
  padding: 0 1.25rem 6.25rem;
  max-width: 600px;
  max-width: 37.5rem;
  margin: 0 auto;
}
@media screen and (min-width: 890px) {
  .p-features-item {
    padding: 7.0625rem 1.25rem 4.375rem;
    max-width: 100%;
    margin: 0;
  }
}

@media screen and (min-width: 1024px) {
  .p-features-item + .p-features-item {
    border-left: 1px solid #c30111;
  }
}

.p-features-item__label {
  width: 40px;
  width: 2.5rem;
  margin: 0 auto 16px;
  margin: 0 auto 1rem;
  position: relative;
}
@media screen and (min-width: 890px) {
  .p-features-item__label {
    width: 3.75rem;
  }
}

.p-features-item__label::before {
  content: "";
  position: absolute;
  width: 60px;
  width: 3.75rem;
  height: 3px;
  height: 0.1875rem;
  bottom: 0;
  left: 50%;
  background-color: #c30111;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.p-features-item__title {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.7142857143;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
  text-align: center;
  color: #c30111;
}
@media screen and (min-width: 890px) {
  .p-features-item__title {
    font-size: 1.75rem;
  }
}

.p-features-item__text {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.875;
  color: #000;
  width: 100%;
  max-width: 600px;
  max-width: 37.5rem;
  margin: auto;
}
@media screen and (min-width: 890px) {
  .p-features-item__text {
    max-width: 18.75rem;
  }
}

.p-features {
  width: 100%;
}

.p-features__inner {
  width: 100%;
}
@media screen and (min-width: 890px) {
  .p-features__inner {
    max-width: 113.75rem;
    width: 94.7916666667%;
  }
}

.p-features__wrap {
  background-color: #fff;
}
@media screen and (min-width: 890px) {
  .p-features__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.p-features__title {
  padding-top: 95px;
  padding-top: 5.9375rem;
  margin-left: 20px;
  margin-left: 1.25rem;
}
@media screen and (min-width: 890px) {
  .p-features__title {
    margin-left: 3.125rem;
    padding-top: 3.4375rem;
  }
}
@media screen and (min-width: 1440px) {
  .p-features__title {
    margin-left: 13.75%;
  }
}

.p-features__list {
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (min-width: 890px) {
  .p-features__list {
    width: 100%;
    margin-top: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-footer-nav {
  margin-left: auto;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 890px) {
  .p-footer-nav {
    margin-top: 0;
  }
}

@media screen and (min-width: 890px) {
  .p-footer-nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width: 890px) {
  .p-footer-nav__item + .p-footer-nav__item {
    margin-left: 2.5rem;
  }
}

.p-footer-nav__item {
  font-size: 16px;
  font-size: 1rem;
  line-height: 2;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
  font-weight: bold;
  position: relative;
}
@media screen and (min-width: 890px) {
  .p-footer-nav__item {
    margin-bottom: 0;
  }
}

.p-footer-nav__item:hover {
  color: #c30111;
}

.p-footer-nav__sub-items {
  width: 150px;
  width: 9.375rem;
}
@media screen and (min-width: 890px) {
  .p-footer-nav__sub-items {
    position: absolute;
    left: 50%;
    top: 2.25rem;
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
    width: 9.375rem;
    text-align: center;
    display: none;
  }
}

.p-footer-nav__sub-item {
  padding: 7px 5px;
  padding: 0.4375rem 0.3125rem;
  color: #000;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-bottom: 1px solid #ccc;
  border-bottom: 0.0625rem solid #ccc;
}

.p-footer-nav__sub-item:hover {
  background-color: #82000a;
  color: #fff;
}

.p-footer-nav__sub-item a {
  display: block;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 890px) {
  .p-footer-nav__item--case {
    cursor: pointer;
    padding-bottom: 30px;
  }
}

.p-footer-nav__sub-items.is-open {
  display: block;
}

.p-footer__inner {
  padding: 50px 20px 64px;
  padding: 3.125rem 1.25rem 4rem;
  max-width: 1560px;
  max-width: 97.5rem;
  width: 81.25%;
  margin: 0 auto;
}

@media screen and (min-width: 890px) {
  .p-footer__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.p-footer__logo {
  width: 150px;
  width: 9.375rem;
}

.p-footer__access {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2;
  margin-top: 15px;
  margin-top: 0.9375rem;
  font-weight: bold;
}
@media screen and (min-width: 890px) {
  .p-footer__access {
    font-size: 1rem;
  }
}

.p-footer__copy {
  font-size: 14px;
  font-size: 0.875rem;
  margin-top: 30px;
  margin-top: 1.875rem;
  color: #B2B2B2;
}

.p-header-nav {
  display: none;
}
@media screen and (min-width: 1024px) {
  .p-header-nav {
    margin-right: 1.625rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: inherit;
  }
}

.p-header-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
}

.p-header-nav__item + .p-header-nav__item {
  margin-left: 33px;
  margin-left: 2.0625rem;
}

.p-header-nav__item {
  font-size: 16px;
  font-size: 1rem;
  line-height: 40px;
  line-height: 2.5rem;
  font-weight: bold;
  color: white;
  position: relative;
}

.p-header-nav__sub-items {
  position: absolute;
  left: 50%;
  top: 36px;
  top: 2.25rem;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  width: 150px;
  width: 9.375rem;
  text-align: center;
  display: none;
}

.p-header-nav__sub-item {
  padding: 7px 5px;
  padding: 0.4375rem 0.3125rem;
  background-color: #fff;
  color: #000;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-bottom: 1px solid #ccc;
  border-bottom: 0.0625rem solid #ccc;
}

.p-header-nav__sub-item:hover {
  background-color: #82000A;
  color: #fff;
}

.p-header-nav__sub-item a {
  display: block;
  width: 100%;
  height: 100%;
}

.p-header-nav__item--case:hover .p-header-nav__sub-items {
  display: block;
}

@media screen and (min-width: 890px) {
  .p-header-nav__contact {
    background-color: #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 3.125rem;
    font-weight: bold;
    margin-right: 0.3125rem;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
}
.p-header-nav__contact a {
  padding: 16px 35px;
  padding: 1rem 2.1875rem;
  min-width: 200px;
  min-width: 12.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}

.p-header-nav__contact:hover {
  opacity: 0.7;
}

.p-header-nav__contact-icon {
  width: 25px;
  width: 1.5625rem;
  display: inline-block;
  margin-right: 10px;
  margin-right: 0.625rem;
}

.p-header {
  height: 85px;
  height: 5.3125rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
@media screen and (min-width: 890px) {
  .p-header {
    height: 6.875rem;
  }
}

.p-header.change-color {
  background-color: #fff;
}
.p-header.change-color .p-header-nav__item {
  color: #000 !important;
}

.p-header__inner {
  padding: 28px 15px;
  padding: 1.75rem 0.9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: inherit;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 890px) {
  .p-header__inner {
    padding: 0 1.875rem;
  }
}

.p-header__logo {
  width: 70px;
  width: 4.375rem;
}
@media screen and (min-width: 890px) {
  .p-header__logo {
    width: 9.375rem;
  }
}

.p-header__nav {
  margin-left: auto;
}

.p-introduction {
  margin-top: 132px;
  margin-top: 8.25rem;
}

.p-introduction__item {
  max-width: 1320px;
  max-width: 82.5rem;
  background-color: #f5f7f9;
  padding: 20px;
  padding: 1.25rem;
}
@media screen and (min-width: 890px) {
  .p-introduction__item {
    padding: 3.125rem;
  }
}

.p-introduction__item:nth-of-type(1) {
  margin-top: 45px;
  margin-top: 2.8125rem;
}

.p-introduction__item + .p-introduction__item {
  margin-top: 74px;
  margin-top: 4.625rem;
}

.p-introduction__image {
  position: relative;
  width: 100%;
  padding-top: 100%;
  margin: auto;
}
@media screen and (min-width: 500px) {
  .p-introduction__image {
    padding-top: 70%;
  }
}
@media screen and (min-width: 890px) {
  .p-introduction__image {
    max-width: 76.25rem;
    padding-top: 36.88%;
  }
}
.p-introduction__image .p-label__picture {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-introduction__label {
  position: absolute;
  bottom: 0;
  left: 3.6885245902%;
}

.p-introduction__textarea {
  background-color: #fff;
  padding: 32px 20px;
  padding: 2rem 1.25rem;
  display: grid;
  grid-row-gap: 2.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 43px;
  margin-top: 2.6875rem;
}
@media screen and (min-width: 890px) {
  .p-introduction__textarea {
    grid-template-columns: 1fr 3.5625rem 1fr;
    padding: 2rem 2.0625rem;
  }
}

.p-introduction__prev,
.p-introduction__next {
  width: 95px;
  width: 5.9375rem;
  height: 95px;
  height: 5.9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 50%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: auto;
}

@media screen and (min-width: 890px) {
  .p-introduction__left,
.p-introduction__right {
    display: grid;
    grid-template-columns: 5.9375rem 1fr;
    grid-column-gap: 1.25rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-introduction__prev {
  background-color: #000;
}

.p-introduction__next {
  background-color: #c30111;
}

.p-introduction__prev,
.p-introduction__next {
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
}

.p-introduction__text {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 890px) {
  .p-introduction__text {
    margin-top: 0;
  }
}

.p-introduction__yajirushi {
  width: 10px;
  width: 0.625rem;
  height: 10px;
  height: 0.625rem;
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
  margin: auto;
}
@media screen and (min-width: 890px) {
  .p-introduction__yajirushi {
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    border-bottom: none;
  }
}

.p-label {
  width: 150px;
  width: 9.375rem;
  height: 150px;
  height: 9.375rem;
  background-color: #c30111;
  text-align: center;
  color: #fff;
  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;
}
@media screen and (min-width: 890px) {
  .p-label {
    width: 15.625rem;
    height: 15.625rem;
  }
}

.p-label__img {
  width: auto;
  height: 36px;
  height: 2.25rem;
  display: inline-block;
  border-bottom: 3px solid #fff;
  border-bottom: 0.1875rem solid #fff;
  margin: 10px auto 0;
  margin: 0.625rem auto 0;
}
@media screen and (min-width: 890px) {
  .p-label__img {
    height: 3.5rem;
  }
}
.p-label__img picture, .p-label__img img, .p-label__img source {
  height: 100%;
}

.p-label__text {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 2.125;
  letter-spacing: 0.15em;
}
@media screen and (min-width: 890px) {
  .p-label__text {
    font-size: 1rem;
  }
}

.p-label__head {
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 890px) {
  .p-label__head {
    font-size: 1.25rem;
    margin-top: 1.875rem;
  }
}

.p-main-content {
  width: 100%;
  position: relative;
}

.p-main-content::before {
  content: "";
  position: absolute;
  background-image: url(../images/top/main-content-bg.png);
  background-size: contain;
  background-position: 66px 0 0 0;
  top: 66px;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-main-content__inner {
  width: 100%;
  max-width: 600px;
  max-width: 37.5rem;
  margin: 0 auto;
}
@media screen and (min-width: 890px) {
  .p-main-content__inner {
    max-width: 100%;
    margin-top: 1rem;
  }
}

@media screen and (min-width: 890px) {
  .p-main-content__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 8.5rem;
  }
}

@media screen and (min-width: 890px) {
  .p-main-content__item:nth-of-type(2) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-flow: row-reverse;
            flex-flow: row-reverse;
    margin-bottom: 0;
  }
}
.p-main-content__item:nth-of-type(2) .p-main-content__textarea {
  padding: 80px 20px;
  padding: 5rem 1.25rem;
}
@media screen and (min-width: 890px) {
  .p-main-content__item:nth-of-type(2) .p-main-content__textarea {
    padding: 6.875rem 1.25rem 0;
    max-width: 33.75rem;
    width: 50%;
  }
}

@media screen and (min-width: 890px) {
  .p-main-content__image {
    width: 54.6875%;
    max-width: 65.625rem;
    z-index: 1;
  }
}

.p-main-content__textarea {
  padding: 80px 20px;
  padding: 5rem 1.25rem;
}
@media screen and (min-width: 890px) {
  .p-main-content__textarea {
    padding: 9.375rem 1.25rem 0;
    max-width: 33.75rem;
    width: 50%;
  }
}

@media screen and (min-width: 890px) {
  .p-main-content__image1 {
    margin-right: 5.25%;
  }
}

@media screen and (min-width: 890px) {
  .p-main-content__image2 {
    margin-left: 2.75%;
  }
}

.p-main-content__title {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.7857142857;
  margin-bottom: 55px;
  margin-bottom: 3.4375rem;
}
@media screen and (min-width: 890px) {
  .p-main-content__title {
    font-size: 1.625rem;
  }
}

.p-main-content__text {
  font-size: 16px;
  font-size: 1rem;
  line-height: 2.125;
}

.p-merit {
  background-color: #f5f7f9;
  padding: 54px 20px 57px;
  padding: 3.375rem 1.25rem 3.5625rem;
}
@media screen and (min-width: 890px) {
  .p-merit {
    padding: 3.125rem 2.5rem 3.5625rem;
  }
}

.p-merit__title {
  font-size: 16px;
  font-size: 1rem;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
  margin-bottom: 23px;
  margin-bottom: 1.4375rem;
  font-weight: bold;
  border-bottom: 1px solid #000;
}
@media screen and (min-width: 890px) {
  .p-merit__title {
    font-size: 1.125rem;
  }
}

.p-merit__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-row-gap: 1.1875rem;
  grid-column-gap: 1.0625rem;
}
@media screen and (min-width: 890px) {
  .p-merit__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-merit__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
}
.p-merit__item p {
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 890px) {
  .p-merit__item p {
    font-size: 1rem;
  }
}

.p-merit__item img {
  width: 30px;
  width: 1.875rem;
  margin-right: 10px;
  margin-right: 0.625rem;
}
@media screen and (min-width: 890px) {
  .p-merit__item img {
    width: 3.125rem;
  }
}

.p-mv {
  width: 100%;
  height: 600px;
  height: 37.5rem;
  background-image: url(../images/top/top-bg.jpg);
  background-size: cover;
  position: relative;
}
@media screen and (min-width: 890px) {
  .p-mv {
    height: 100vh;
  }
}

.p-mv__image {
  width: 83.3333333333%;
  max-width: 1600px;
  max-width: 100rem;
  height: 90.625%;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (min-width: 890px) {
  .p-mv__image {
    max-width: 100rem;
    height: 78.125vh;
  }
}

.p-mv__slide {
  width: 100%;
  height: 100%;
}
.p-mv__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-mv__slide::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, .3);
  z-index: 2;
}

.p-mv__catch {
  top: 50%;
  left: 30px;
  left: 1.875rem;
  position: absolute;
  z-index: 10;
  width: calc(100% - 1.875rem);
}
@media screen and (min-width: 890px) {
  .p-mv__catch {
    top: 44.875vh;
    left: 8.3%;
    width: 91.7%;
  }
}

.p-mv__catch--main {
  width: 82%;
  max-width: 400px;
  max-width: 25rem;
}
@media screen and (min-width: 890px) {
  .p-mv__catch--main {
    margin-bottom: 8.125rem;
    max-width: 51.25rem;
    width: 45%;
  }
}
.p-mv__catch--main img {
  width: 100%;
}

.p-mv__catch--sub {
  margin-top: 50px;
  margin-top: 3.125rem;
  width: 80%;
  max-width: 400px;
  max-width: 25rem;
  font-weight: bold;
}
@media screen and (min-width: 890px) {
  .p-mv__catch--sub {
    width: 36%;
    max-width: 40.6875rem;
  }
}

.p-mv__sub-image {
  position: absolute;
  width: 70%;
  right: 50px;
  right: 3.125rem;
  top: 83%;
  max-width: 250px;
  max-width: 15.625rem;
}
@media screen and (min-width: 890px) {
  .p-mv__sub-image {
    width: 27.3958333333%;
    max-width: 100%;
    top: 60.824742268vh;
    left: 57.2916666667%;
  }
}

.p-mv__sub-image-fuda {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 10;
}
.p-mv__sub-image-fuda img {
  width: 100%;
}

.p-sub-image__slide {
  position: absolute;
  top: 6.7%;
  left: 16.6%;
  width: 66.74%;
}

.swiper-slide {
  width: 100%;
  position: relative;
  padding-top: 51.6393%;
  z-index: 1;
}
.swiper-slide img,
.swiper-slide picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-archive__page-nation {
  margin-top: 50px;
  margin-top: 3.125rem;
}
.p-archive__page-nation .nav-links {
  text-align: center;
}
.p-archive__page-nation .page-numbers {
  color: #000;
  background-color: #fff;
  padding: 5px 7px;
  padding: 0.3125rem 0.4375rem;
}
.p-archive__page-nation .page-numbers.current {
  color: #000;
  background-color: #fff;
  background-color: #000;
  color: #fff;
}

.post-navigation {
  margin-top: 50px;
  margin-top: 3.125rem;
  max-width: 600px;
  max-width: 37.5rem;
  padding: 0 10px;
  padding: 0 0.625rem;
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 890px) {
  .post-navigation {
    max-width: 93.75rem;
    padding: 0 3.125rem;
    font-size: 1rem;
  }
}
.post-navigation .nav-next {
  margin-left: auto;
}
.post-navigation .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-page-top__inner {
  padding-top: 104px;
  padding-top: 6.5rem;
}
@media screen and (min-width: 890px) {
  .p-page-top__inner {
    width: 81.25%;
    max-width: 97.5rem;
    margin: 0 auto;
    padding: 11.5rem 1.25rem 0;
  }
}

@media screen and (min-width: 890px) {
  .p-archive-top__inner .p-page-top__title {
    padding-bottom: 2.9375rem;
  }
}
.p-archive-top__inner .p-page-top__title--ja {
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}

.p-page-top__title {
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
}
@media screen and (min-width: 890px) {
  .p-page-top__title {
    padding-left: 6.25rem;
    padding-bottom: 1.6875rem;
  }
}

.p-page-top__title-text {
  font-size: 14px;
  line-height: 1;
  color: #FFFFFF;
}
@media screen and (min-width: 890px) {
  .p-page-top__title-text {
    font-size: 14px;
  }
}

.p-page-top__title--en {
  height: 51px;
  height: 3.1875rem;
}
@media screen and (min-width: 890px) {
  .p-page-top__title--en {
    height: 5.6875rem;
  }
}
.p-page-top__title--en img {
  height: 100%;
  width: auto;
}

.p-page-top__title--ja {
  font-size: 18px;
  font-size: 1.125rem;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
  color: #fff;
}

.p-page-top__image {
  max-width: 1760px;
  max-width: 110rem;
  width: 100%;
  padding: 0 20px;
  padding: 0 1.25rem;
  margin: 50px auto 0;
  margin: 3.125rem auto 0;
}
@media screen and (min-width: 890px) {
  .p-page-top__image {
    width: 91.6666666667%;
    max-width: 110rem;
    margin: 0 auto;
  }
}

.p-page-top__imageWrap {
  position: relative;
  width: 100%;
  padding-top: 50%;
}
@media screen and (min-width: 890px) {
  .p-page-top__imageWrap {
    padding-top: 23.2558%;
  }
}
.p-page-top__imageWrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-page-top__contact img {
  -o-object-position: center 30%;
     object-position: center 30%;
}

.p-page-top__logistics img {
  -o-object-position: bottom;
     object-position: bottom;
}

.p-pagetop {
  position: fixed;
  cursor: pointer;
  bottom: 0px;
  bottom: 0rem;
  right: 0;
  width: 50px;
  width: 3.125rem;
  height: 50px;
  height: 3.125rem;
  z-index: 99;
  background-color: #000;
}
@media screen and (min-width: 890px) {
  .p-pagetop {
    width: 6.25rem;
    height: 6.25rem;
  }
}

.p-pagetop__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #fff;
  line-height: 1;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  border: 3px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transform: translate(-50%, -30%) rotate(-45deg);
          transform: translate(-50%, -30%) rotate(-45deg);
}
@media screen and (min-width: 890px) {
  .p-pagetop__icon {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.p-plan {
  width: 100%;
}

.p-plan__inner {
  width: 100%;
  padding: 0 20px;
  padding: 0 1.25rem;
  max-width: 600px;
  max-width: 37.5rem;
  margin: 0 auto;
}
@media screen and (min-width: 890px) {
  .p-plan__inner {
    width: 81.25%;
    max-width: 97.5rem;
  }
}

.p-plan__wrap {
  background-color: #fff;
  padding: 50px 20px;
  padding: 3.125rem 1.25rem;
  margin-top: 30px;
  margin-top: 1.875rem;
  border: 5px solid #f08278;
}
@media screen and (min-width: 890px) {
  .p-plan__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 3.125rem 1.875rem 3.125rem 5rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.p-plan__left {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (min-width: 890px) {
  .p-plan__left {
    width: 50%;
    max-width: 32.5rem;
    padding-top: 1.25rem;
    padding-left: 1.0625rem;
    padding-right: 1.25rem;
  }
}

.p-plan__title {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.5;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
  color: #c30111;
}
@media screen and (min-width: 890px) {
  .p-plan__title {
    font-size: 1.75rem;
  }
}

.p-plan__text {
  font-size: 16px;
  font-size: 1rem;
  line-height: 2;
}

.p-plan__right {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 890px) {
  .p-plan__right {
    width: 59%;
    max-width: 50.0625rem;
    margin-top: 0;
  }
}

.p-plan__btn {
  width: 100%;
  max-width: 250px;
  max-width: 15.625rem;
  margin-top: 20px;
  margin-top: 1.25rem;
  margin: 20px auto 0;
  margin: 1.25rem auto 0;
}
@media screen and (min-width: 890px) {
  .p-plan__btn {
    margin-left: auto;
    margin-right: 0;
  }
}

@media screen and (min-width: 890px) {
  .p-product-bottom__wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 2.5rem;
  }
}

.p-product-bottom__right {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 890px) {
  .p-product-bottom__right {
    margin-top: 0;
  }
}

.p-product-main__inner {
  margin: 50px auto 0;
  margin: 3.125rem auto 0;
  padding: 30px 20px;
  padding: 1.875rem 1.25rem;
}
@media screen and (min-width: 890px) {
  .p-product-main__inner {
    margin: 5.625rem auto 0;
    width: 81.25%;
    max-width: 97.5rem;
    padding: 3.125rem 1.25rem;
  }
}

.p-product-price {
  width: 100%;
  background-color: #F5F7F9;
  padding: 15px 10px;
  padding: 0.9375rem 0.625rem;
}
@media screen and (min-width: 890px) {
  .p-product-price {
    padding: 1.5625rem;
  }
}

.p-product-price + .p-product-price {
  margin-top: 10px;
  margin-top: 0.625rem;
}

.product-price__head {
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
}

.p-product-price__yen {
  color: #646464;
  font-size: 32px;
  font-size: 2rem;
  line-height: 42px;
  line-height: 2.625rem;
}
.p-product-price__tax {
  font-size: 16px;
  font-size: 1rem;
}

.product-price__nosetting a {
text-decoration: underline;
}

.p-product-sidebar {
  color: #fff;
  margin-right: 20px;
  margin-right: 1.25rem;
  padding-top: 25px;
  padding-top: 1.5625rem;
}

.p-product-sidebar__item {
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  line-height: 2;
  padding-left: 20px;
  padding-left: 1.25rem;
  position: relative;
}

.p-product-sidebar__item::before {
  content: "";
  width: 8px;
  width: 0.5rem;
  height: 8px;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-product-sidebar__item.current::before {
  background-color: #000;
}

.p-product-sidebar__item + .p-product-sidebar__item {
  margin-top: 23px;
  margin-top: 1.4375rem;
}

.p-product-single {
  width: 100%;
  padding: 0 20px;
  padding: 0 1.25rem;
  margin: 35px auto 0;
  margin: 2.1875rem auto 0;
}
@media screen and (min-width: 890px) {
  .p-product-single {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 111.25rem;
    margin: 0.8125rem auto 0;
  }
}

.p-product-single__sidebar {
  max-width: 360px;
  max-width: 22.5rem;
  width: 19.5402298851%;
  margin-right: 20px;
  margin-right: 1.25rem;
}

.p-product-single__main {
  width: 100%;
  background-color: #fff;
}
@media screen and (min-width: 1024px) {
  .p-product-single__main {
    max-width: 85rem;
    width: 78.1609195402%;
  }
}

.p-product-single__wrap {
  max-width: 1060px;
  max-width: 66.25rem;
  padding: 88px 20px;
  padding: 5.5rem 1.25rem;
  margin: 0 auto;
}

.p-product-single__title {
  padding: 20px 36px;
  padding: 1.25rem 2.25rem;
  border-top: 1px solid #e1282d;
  border-top: 0.0625rem solid #e1282d;
  border-bottom: 1px solid #e1282d;
  border-bottom: 0.0625rem solid #e1282d;
  font-size: 18px;
  font-size: 1.125rem;
  position: relative;
}
@media screen and (min-width: 890px) {
  .p-product-single__title {
    font-size: 1.5rem;
    padding: 2.5rem 2.25rem;
  }
}

.p-product-single__title::before {
  content: "";
  width: 13px;
  width: 0.8125rem;
  height: 13px;
  height: 0.8125rem;
  background-color: #e1282d;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-product-single__top {
  margin-top: 75px;
  margin-top: 4.6875rem;
}
@media screen and (min-width: 890px) {
  .p-product-single__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.p-product-single__image {
  width: 80%;
  margin: 0 auto;
}
@media screen and (min-width: 890px) {
  .p-product-single__image {
    max-height: 18.75rem;
    max-width: 34.4375rem;
    width: 51.9811320755%;
    margin-right: 1.25rem;
  }
}
.p-product-single__image img {
  margin: auto;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 890px) {
  .p-product-single__image img {
    height: 100%;
    width: auto;
  }
}

.p-product-single__prices {
  width: 100%;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 890px) {
  .p-product-single__prices {
    width: 47.1698113208%;
    max-width: 31.25rem;
    margin-top: auto;
  }
}

.p-product-single__spec {
  margin-top: 42px;
  margin-top: 2.625rem;
}

.p-product-single__bottom {
  margin-top: 32px;
  margin-top: 2rem;
}

.p-product-bottom__item {
  width: 100%;
}

.p-product-bottom__item + .p-product-bottom__item {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-product-bottom__title {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.75;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid #000;
  border-bottom: 0.0625rem solid #000;
}

.p-product-spec__title {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.75;
  font-weight: bold;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid #000;
  border-bottom: 0.0625rem solid #000;
}

.p-product-spec__image {
  max-width: 980px;
  max-width: 61.25rem;
  width: 92.4528301887%;
  margin: 20px auto 0;
  margin: 1.25rem auto 0;
}
.p-product-spec__image img {
  width: 100%;
}

.p-product-bottom__btn {
  margin: 59px auto 0;
  margin: 3.6875rem auto 0;
  max-width: 450px;
  max-width: 28.125rem;
}

.p-product-table {
  width: 100%;
  text-align: left;
  font-size: 14px;
  font-size: 0.875rem;
}
.p-product-table th {
  background-color: #f5f7f9;
  font-weight: normal;
  display: block;
  width: 100%;
}
@media screen and (min-width: 500px) {
  .p-product-table th {
    display: table-cell;
    width: 44.1176470588%;
  }
}
.p-product-table td {
  display: block;
  width: 100%;
}
@media screen and (min-width: 500px) {
  .p-product-table td {
    width: 55.8823529412%;
    display: table-cell;
  }
}
.p-product-table th,
.p-product-table td {
  padding: 20px 15px;
  padding: 1.25rem 0.9375rem;
  border-bottom: 1px solid #c8c8c8;
  border-bottom: 0.0625rem solid #c8c8c8;
}

.p-product {
  width: 100%;
}

.p-product__inner {
  padding: 0 20px;
  padding: 0 1.25rem;
  max-width: 1760px;
  max-width: 110rem;
  margin: 0 auto;
}
@media screen and (min-width: 890px) {
  .p-product__inner {
    width: 91.6666666667%;
    max-width: 110rem;
  }
}

.p-product__wrap {
  max-width: 600px;
  max-width: 37.5rem;
  width: 100%;
  margin: 0 auto;
  margin-top: 37px;
  margin-top: 2.3125rem;
}
@media screen and (min-width: 890px) {
  .p-product__wrap {
    width: 100%;
    max-width: 97.5rem;
  }
}

.p-product__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-column-gap: 0.9375rem;
  grid-row-gap: 0.9375rem;
}
@media screen and (min-width: 890px) {
  .p-product__list {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: repeat(4, 1fr);
  }
}

.p-product__item {
  opacity: 0;
}

.p-product__btn {
  max-width: 300px;
  max-width: 18.75rem;
  margin: 62px auto 0;
  margin: 3.875rem auto 0;
}

.p-product__item:hover + .c-common-btn__black {
  background-color: #000;
}

.p-product__item:hover + .c-common-btn__black::before {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

.p-product__sub-content {
  margin-top: 90px;
  margin-top: 5.625rem;
}
@media screen and (min-width: 890px) {
  .p-product__sub-content {
    margin-top: 8.125rem;
  }
}

.p-product__sub-content-inner {
  width: 100%;
  max-width: 600px;
  max-width: 37.5rem;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (min-width: 890px) {
  .p-product__sub-content-inner {
    width: 70.8333333333%;
    max-width: 85rem;
  }
}

.p-product__sub-content-text {
  margin-top: 40px;
  margin-top: 2.5rem;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.75;
}

.p-request-table {
  width: 100%;
}
.p-request-table th {
  font-size: 12px;
  font-size: 0.75rem;
  padding-right: 18px;
  padding-right: 1.125rem;
  width: 100%;
  display: block;
}
@media screen and (min-width: 890px) {
  .p-request-table th {
    font-size: 1rem;
    display: table-cell;
    width: auto;
  }
}
.p-request-table td {
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
  width: 100%;
  display: block;
}
@media screen and (min-width: 890px) {
  .p-request-table td {
    display: table-cell;
    width: auto;
  }
}
.p-request-table td input {
  background-color: #d3d3d3;
  border: none;
  width: 100%;
  font-size: 18px;
  font-size: 1.125rem;
  padding: 6px 10px;
  padding: 0.375rem 0.625rem;
}

input.p-request__btn {
  display: block;
  color: #fff;
  background-color: #000;
  border-radius: 3.125rem;
  padding: 13px 20px;
  margin: 23px auto 0;
  margin: 1.4375rem auto 0;
  display: block;
  cursor: pointer;
  border: none;
  width: 100%;
  min-width: 200px;
  min-width: 12.5rem;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border: 1px solid #fff;
  border: 0.0625rem solid #fff;
}
@media screen and (min-width: 890px) {
  input.p-request__btn {
    width: auto;
    min-width: 12.5rem;
  }
}

.p-request__btn:hover {
  background-color: #fff;
  color: #000;
  border: 1px solid #000;
  border: 0.0625rem solid #000;
}

.p-request {
  background-color: #c30111;
  background-image: url(../images/common/bg.png);
  background-size: cover;
  text-align: left;
}

.p-requests__inner {
  padding: 50px 20px;
  padding: 3.125rem 1.25rem;
}

.p-request__wrap {
  width: 100%;
  margin: 0 auto;
  background-color: #fff;
  padding: 50px 20px;
  padding: 3.125rem 1.25rem;
  max-width: 600px;
  max-width: 37.5rem;
  margin: 0 auto;
}
@media screen and (min-width: 890px) {
  .p-request__wrap {
    width: 91.6666666667%;
    max-width: 110rem;
    display: grid;
    padding: 0;
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-request__left {
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 890px) {
  .p-request__left {
    padding: 5rem 6.25rem 3.125rem;
    border-right: 0.0625rem solid #c30111;
  }
}

.p-request__right {
  width: 100%;
  margin: 50px auto 0;
  margin: 3.125rem auto 0;
}
@media screen and (min-width: 890px) {
  .p-request__right {
    padding: 5rem 6.25rem 3.125rem;
    margin: 0 auto;
  }
}

.p-request__head img {
  margin-left: 0;
}

.p-head--request {
  color: #000;
  text-align: left;
  font-weight: 700;
}

.p-request__text {
  margin-top: 16px;
  margin-top: 1rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 2;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
}

.p-request__text--small {
  font-size: 14px;
  font-size: 0.875rem;
}

@media screen and (min-width: 890px) {
  .p-request__head .c-common-head__en {
    height: 2.8125rem;
  }
}

aside {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #fff;
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (min-width: 890px) {
  aside {
    margin-top: 0;
  }
}
aside h2, aside h3 {
  padding: 10px 30px;
  padding: 0.625rem 1.875rem;
  font-size: 18px;
  font-size: 1.125rem;
  background-color: #000;
  color: #fff;
}
aside a {
  color: #000;
}
aside ul li {
  border-bottom: 1px solid #c30111;
  font-size: 15px;
  font-size: 0.9375rem;
  padding: 10px 30px !important;
  padding: 0.625rem 1.875rem !important;
}
aside ul li:last-child {
  border-bottom: none;
}

.p-sidebar__item {
  font-size: 20px;
  padding: 25px 15px 25px 15px;
  background-color: #fff4f4;
}
@media screen and (min-width: 500px) {
  .p-sidebar__item {
    font-size: 16px;
    padding: 25px 15px 25px 15px;
  }
}

.rpwwt-post-title {
  display: block;
}

.rpwwt-widget ul li img {
  float: none;
  margin: 0 !important;
}

.rpwwt-widget ul li {
  margin: 0 !important;
}

.rpwwt-widget ul li a {
  display: grid;
  grid-template-columns: 75px 1fr;
  grid-column-gap: 10px;
}

.p-sp-nav {
  display: block;
  position: fixed;
  z-index: 9999;
  cursor: pointer;
  top: 10px;
  top: 0.625rem;
  right: 10px;
  width: 55px;
  height: 55px;
  color: #000;
}
@media screen and (min-width: 1024px) {
  .p-sp-nav {
    display: none;
  }
}
.p-sp-nav span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  /*アニメーションの設定*/
  position: absolute;
  left: 10px;
  height: 2px;
  width: 50%;
  background-color: #000;
}
.p-sp-nav span:nth-of-type(1) {
  top: 22px;
}
.p-sp-nav span:nth-of-type(2) {
  top: 29px;
}
.p-sp-nav span:nth-of-type(3) {
  top: 36px;
}

.p-sp-nav.active span:nth-of-type(1) {
  top: 20px;
  left: 16px;
  -webkit-transform: translateY(6px) rotate(-45deg);
          transform: translateY(6px) rotate(-45deg);
  width: 35%;
}

.p-sp-nav.active span:nth-of-type(2) {
  display: none;
}

.p-sp-nav.active span:nth-of-type(3) {
  top: 32px;
  left: 16px;
  -webkit-transform: translateY(-6px) rotate(45deg);
          transform: translateY(-6px) rotate(45deg);
  width: 35%;
}

/*========= ナビゲーションのためのCSS ===============*/
.p-g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  right: -100%;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  /*ナビの高さ*/
  background-color: #c30111;
  /*動き*/
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  z-index: 99;
}

.p-g-nav.panelactive {
  right: 0;
}

/*ナビゲーションの縦スクロール*/
.p-g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
.p-g-nav-list {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  max-width: 200px;
  max-width: 12.5rem;
}

/*リストのレイアウト設定*/
.p-g-nav__item {
  list-style: none;
  opacity: 1;
}

.p-g-nav__item a {
  text-decoration: none;
  padding: 0 10px;
  padding: 0 0.625rem;
  display: block;
  margin-top: 20px;
  margin-top: 1.25rem;
  letter-spacing: 0.1em;
  font-weight: bold;
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
}

.p-g-nav__item a:hover {
  opacity: 0.7;
}

.p-g-nav__sub-items {
  -webkit-padding-start: 30px;
  -webkit-padding-start: 1.875rem;
}

.p-g-nav__contact a {
  background-color: #000;
  padding: 8px 8px;
  padding: 0.5rem 0.5rem;
  border-radius: 2.5rem;
  text-align: center;
}

.p-test {
  color: red;
  font-size: 25px;
  font-size: 1.5625rem;
}
@media screen and (min-width: 890px) {
  .p-test {
    font-size: 3.125rem;
  }
}

.p-worries {
  background-color: #fff;
  color: #000;
  text-align: center;
  padding: 53px 20px;
  padding: 3.3125rem 1.25rem;
  margin-top: 55px;
  margin-top: 3.4375rem;
}
@media screen and (min-width: 890px) {
  .p-worries {
    padding: 3.3125rem 6.25rem;
  }
}

.p-worries__content {
  margin-top: 35px;
  margin-top: 2.1875rem;
}

.p-worries__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-row-gap: 3.125rem;
  position: relative;
  border-bottom: solid 1px #c30111;
  padding: 0 0 37px;
  padding: 0 0 2.3125rem;
  max-width: 300px;
  max-width: 18.75rem;
  margin: auto;
}
@media screen and (min-width: 890px) {
  .p-worries__list {
    max-width: 100%;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 2.1875rem;
  }
}

.p-worries__item {
  width: 100%;
  padding-top: 100%;
  background-color: #f5f7f9;
  position: relative;
  border-radius: 50%;
}

.p-worries__title {
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 890px) {
  .p-worries__title {
    font-size: 1.125rem;
  }
}

.p-worries__text {
  font-size: 16px;
  font-size: 1rem;
  font-size: 4.267vw;
  line-height: 1.875;
  width: 90%;
}
@media screen and (min-width: 500px) {
  .p-worries__text {
    font-size: 1rem;
  }
}

.p-worries__text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.p-worries__img {
  position: absolute;
  bottom: -10px;
  bottom: -0.625rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 50px;
  height: 3.125rem;
}
.p-worries__img img {
  height: 100%;
  width: auto;
}

.p-worries__bottom {
  margin-top: 42px;
  margin-top: 2.625rem;
  font-size: 18px;
  font-size: 1.125rem;
  color: #c30111;
}
@media screen and (min-width: 890px) {
  .p-worries__bottom {
    font-size: 1.625rem;
  }
}

.p-worries__list:before {
  content: "";
  position: absolute;
  bottom: -23px;
  left: 50%;
  margin-left: -17px;
  border: 12px solid transparent;
  border-top: 12px solid #FFF;
  z-index: 2;
}

.p-worries__list:after {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 50%;
  margin-left: -17px;
  border: 12px solid transparent;
  border-top: 12px solid #c30111;
  z-index: 1;
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 1024px) {
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 1024px) {
  .u-mobile {
    display: none;
  }
}


.p-product-main__content-image {
  margin-top: 80px;
  margin-top: 5rem;
  display: block;
}
.p-product-main__content-image img {
  width: 100%;
  height: auto;
}

.p-product-table {
  width: 100%;
  overflow: hidden;
  margin-top: 100px;
  margin-top: 6.25rem;
}
.p-product-table__items {
  width: inherit;
  overflow: scroll;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
}
@media screen and (min-width: 890px) {
  .p-product-table__items {
    gap: 0;
    display: block;
  }
}
.p-product-table__items li.-head {
  display: none;
}
@media screen and (min-width: 890px) {
  .p-product-table__items li.-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.p-product-table__items li {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-product-table__items li .item {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 20px 30px;
  padding: 1.25rem 1.875rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 1px solid #000;
  border-left: 1px solid #000;
}
.p-product-table__items li .item p {
  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;
  height: 100%;
}
.p-product-table__items li .group {
  border-bottom: 1px solid #000;
  border-left: 1px solid #000;
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-product-table__items li .group p {
  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;
  padding: 20px 30px;
  padding: 1.25rem 1.875rem;
}
.p-product-table__items li .group ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: 59%;
  border-top: 1px solid #000;
}
.p-product-table__items li .group ul li {
  padding: 20px 10px;
  padding: 1.25rem 0.625rem;
  min-width: 88px;
  min-width: 5.5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  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;
}
.p-product-table__items li .group ul li:not(:first-child) {
  border-left: 1px solid #000;
}
.p-product-table__items li.-head .item,
.p-product-table__items li.-head .group {
  background-color: #ccc;
  display: none;
}
@media screen and (min-width: 890px) {
  .p-product-table__items li.-head .item,
.p-product-table__items li.-head .group {
    display: block;
  }
}
.p-product-table__items li.-head div {
  width: 120px;
  width: 7.5rem;
}
.p-product-table__items li.-head div:nth-child(1) {
  width: 250px;
  width: 15.625rem;
}
.p-product-table__items li.-head div:nth-child(5) {
  width: 267px;
  width: 16.6875rem;
}
.p-product-table__items li.-head div:nth-child(6) {
  width: 178px;
  width: 11.125rem;
}
.p-product-table__items li.-head div:nth-child(13) {
  width: 415px;
  width: 25.9375rem;
}
.p-product-table__items li.-head div:nth-child(13) ul li:nth-child(1) {
  width: 185px;
  width: 11.5625rem;
}
.p-product-table__items li.-head div:nth-child(13) ul li:nth-child(2) {
  width: 89px;
  width: 5.5625rem;
}
.p-product-table__items li.-head div:nth-child(13) ul li:nth-child(3) {
  width: 140px;
  width: 8.75rem;
}
.p-product-table__items li.-item {
  width: 100%;
  background-color: #fff;
  border-bottom: 1px solid #000;
}
@media screen and (min-width: 890px) {
  .p-product-table__items li.-item {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.p-product-table__items li.-item a {
  width: 100%;
}
@media screen and (min-width: 890px) {
  .p-product-table__items li.-item a {
    width: inherit;
  }
}
.p-product-table__items li.-item a ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
}
.p-product-table__items li.-item a ul li {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-left: 1px solid #000;
  text-align: center;
  width: 120px;
  width: 7.5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 890px) {
  .p-product-table__items li.-item a ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.p-product-table__items li.-item a ul li:nth-child(5), .p-product-table__items li.-item a ul li:nth-child(6), .p-product-table__items li.-item a ul li:nth-child(7), .p-product-table__items li.-item a ul li:nth-child(8), .p-product-table__items li.-item a ul li:nth-child(9) {
  width: 89px;
  width: 5.5625rem;
}
.p-product-table__items li.-item a ul li:nth-child(16) {
  width: 186px;
  width: 11.625rem;
}
.p-product-table__items li.-item a ul li:nth-child(17) {
  width: 89px;
  width: 5.5625rem;
}
.p-product-table__items li.-item a ul li:nth-child(18) {
  width: 140px;
  width: 8.75rem;
}
.p-product-table__items li.-item li.-image {
  width: 100%;
  padding: 40px 0 20px;
  padding: 2.5rem 0 1.25rem;
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
}
@media screen and (min-width: 890px) {
  .p-product-table__items li.-item li.-image {
    width: 15.625rem;
    padding: 1.25rem 0;
  }
}
.p-product-table__items li.-item li.-image .-image-label {
  display: block;
  background-color: #000;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 5px 0;
  padding: 0.3125rem 0;
}
@media screen and (min-width: 890px) {
  .p-product-table__items li.-item li.-image .-image-label {
    display: none;
  }
}
.p-product-table__items li.-item li.-image img {
  width: 65%;
  height: auto;
}
@media screen and (min-width: 890px) {
  .p-product-table__items li.-item li.-image img {
    width: 85%;
  }
}
.p-product-table__items li.-item .-title {
  width: 120px;
  width: 7.5rem;
}

/*# sourceMappingURL=styles.css.map */

/* h3タイトル 太字化 */
.p-main-content__title {
  font-weight: 700;
}

.p-features-item__title {
  font-weight: 700;
}

/* PRODUCTセクション: テキスト化対応 */
.p-product .c-common-head__en {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  height: auto;
}

.p-product .c-common-head__ja {
  font-size: 0.875rem;
  font-weight: 400;
}

@media screen and (min-width: 890px) {
  .p-product .c-common-head__ja {
    font-size: 0.875rem;
  }
}

/* PRODUCTセクション: 見出しサイズ調整 */
.p-product .c-common-head__en {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  height: auto;
  color: #fff;
}

/* PRODUCTセクション: 見出しサイズ調整 */
.p-product .c-common-head__en {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  height: auto;
  color: #fff;
}

.p-product .c-common-head__ja {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}

@media screen and (min-width: 890px) {
  .p-product .c-common-head__en {
    font-size: 2rem;
  }
  .p-product .c-common-head__ja {
    font-size: 1rem;
  }
}
/* PRODUCTセクション: サイズ微調整 */
.p-product .c-common-head__en {
  font-size: 1.75rem;
}

.p-product .c-common-head__ja {
  font-size: 1rem;
}

@media screen and (min-width: 890px) {
  .p-product .c-common-head__en {
    font-size: 2.5rem;
  }
  .p-product .c-common-head__ja {
    font-size: 1.125rem;
  }
}

/* PLANセクション: ENとJAのサイズ入れ替え */
.p-plan .c-common-head__en {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  height: auto;
  color: #fff;
}

.p-plan .c-common-head__ja {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

@media screen and (min-width: 890px) {
  .p-plan .c-common-head__en {
    font-size: 2.5rem;
  }
}

/* PLANセクション */
.p-plan .c-common-head__en {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  height: auto;
  color: #fff;
}

.p-plan .c-common-head__ja {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

/* PRODUCTセクション: 太字追加 */
.p-product .c-common-head__en {
  font-weight: 700;
}

/* CASEセクション: 業種タイトル太字 */
.p-case-item__title {
  font-weight: 700;
}

/* トップへ戻るボタン: 黒背景・角丸なし */
.p-pagetop {
  background-color: #000 !important;
  border-radius: 4px !important;
}
/* トップへ戻るボタン: 現行サイトに合わせたサイズ */
.p-pagetop {
  background-color: #000 !important;
  border-radius: 4px !important;
  width: 3.125rem !important;
  height: 3.125rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.p-pagetop a {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: 100% !important;
}

@media screen and (min-width: 890px) {
  .p-pagetop {
    width: 6.25rem !important;
    height: 6.25rem !important;
  }
}
/* トップへ戻るボタン: 位置・サイズ最終調整 */
.p-pagetop {
  background-color: #000 !important;
  border-radius: 4px !important;
  width: 3.125rem !important;
  height: 3.125rem !important;
  bottom: 0 !important;
  right: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.p-pagetop a {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: 100% !important;
  font-size: 1.5rem !important;
}

@media screen and (min-width: 890px) {
  .p-pagetop {
    width: 6.25rem !important;
    height: 6.25rem !important;
  }

  .p-pagetop a {
    font-size: 2.5rem !important;
  }
}

/* トップへ戻るボタン: アイコンサイズ調整 */
.p-pagetop__icon {
  width: 1.25rem !important;
  height: 1.25rem !important;
}

@media screen and (min-width: 890px) {
  .p-pagetop__icon {
    width: 2.5rem !important;
    height: 2.5rem !important;
  }
}

/* トップへ戻るボタン: アイコン中央寄せ・太字 */
.p-pagetop__icon {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 1.25rem !important;
  height: 1.25rem !important;
  font-weight: 700 !important;
}

@media screen and (min-width: 890px) {
  .p-pagetop__icon {
    width: 2.5rem !important;
    height: 2.5rem !important;
  }
}

/* トップへ戻るボタン: アイコン上向き修正 */
.p-pagetop__icon {
  transform: rotate(-45deg) !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  margin-top: -0.9rem !important;
  margin-left: -0.75rem !important;
  border-top-width: 3px !important;
  border-right-width: 3px !important;
}

/* 製品一覧はこちら・詳しくはこちら: 現行サイトに合わせた黒背景ボタン */
.c-read-more__btn {
  background-color: #000 !important;
  border-color: #000 !important;
  border-radius: 50px !important;
  display: flex !important;
  align-items: center !important;
}

.c-read-more__btn span {
  color: #fff !important;
}

.c-read-more__icon.c-icon {
  background-color: #fff !important;
  border-radius: 50% !important;
}

.c-read-more__icon .c-icon__item,
.c-read-more__icon .c-icon__item::before,
.c-read-more__icon .c-icon__item::after {
  background-color: #000 !important;
}

/* ボタン: サイズ・矢印修正 */
a.c-read-more__btn,
.c-read-more__btn,
.c-read-more.p-product__btn .c-read-more__btn,
.c-read-more.p-plan__btn .c-read-more__btn {
  background-color: #000 !important;
  border-color: #000 !important;
  color: #fff !important;
  border-radius: 50px !important;
  padding: 1.25rem 2.5rem !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
}

a.c-read-more__btn span,
.c-read-more__btn span {
  color: #fff !important;
  font-weight: 700 !important;
}

a.c-read-more__btn .c-icon,
.c-read-more__btn .c-icon {
  background-color: #fff !important;
  border-radius: 50% !important;
  min-width: 2.5rem !important;
  min-height: 2.5rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

a.c-read-more__btn .c-icon__item,
.c-read-more__btn .c-icon__item,
a.c-read-more__btn .c-icon__item::before,
a.c-read-more__btn .c-icon__item::after,
.c-read-more__btn .c-icon__item::before,
.c-read-more__btn .c-icon__item::after {
  background-color: #000 !important;
}

/* ボタン矢印: 白丸内の > を黒で表示 */
.c-read-more__btn .c-icon__item {
  width: 0.6rem !important;
  height: 0.6rem !important;
  background-color: transparent !important;
  border-top: 2.5px solid #000 !important;
  border-right: 2.5px solid #000 !important;
  border-left: none !important;
  border-bottom: none !important;
  transform: rotate(45deg) translateX(-20%) !important;
  display: block !important;
}

.c-read-more__btn .c-icon__item::before,
.c-read-more__btn .c-icon__item::after {
  display: none !important;
}

/* ボタン矢印: テキスト › を使用 */
.c-read-more__btn .c-icon {
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  color: #000 !important;
  line-height: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* REQUESTセクション: 白背景・レイアウト修正 */
.p-request {
  background-color: #fff !important;
}

.p-requests__inner {
  background-color: #fff !important;
}

.p-request__wrap {
  background-color: #fff !important;
}

.p-head--request.c-common-head__en {
  font-size: 2rem !important;
  font-weight: 700 !important;
  color: #c30111 !important;
  height: auto !important;
}

.p-head--request {
  color: #c30111 !important;
}

.wpcf7-submit {
  background-color: #000 !important;
  color: #fff !important;
  border-radius: 50px !important;
  width: auto !important;
  padding: 0.75rem 3rem !important;
}

/* 資料請求: 色を黒に戻す */
.p-head--request {
  color: #000 !important;
}

.p-head--request.c-common-head__ja {
  font-size: 1.125rem !important;
  font-weight: 700 !important;
  color: #000 !important;
}

/* REQUESTセクション: レイアウト修正 */
.p-request__wrap {
  display: flex !important;
  background-color: #fff !important;
  padding: 3rem !important;
}

.p-request__left {
  flex: 1 !important;
  padding-right: 2rem !important;
}

.p-request__right {
  flex: 1 !important;
}

.p-request__text p {
  display: block !important;
  color: #000 !important;
  font-size: 0.875rem !important;
}

.p-request__text--small {
  display: block !important;
  color: #000 !important;
  font-size: 0.75rem !important;
}

.p-form__item label {
  display: block !important;
  color: #000 !important;
  margin-bottom: 0.5rem !important;
}
/* REQUESTセクション: 現行サイトに合わせる */
.p-request.l-request {
  background-color: #c30111 !important;
  padding: 3rem 0 !important;
}

.p-request__wrap {
  background-color: #fff !important;
  padding: 3rem !important;
  display: flex !important;
}

/* フォーム入力欄: グレー背景 */
.wpcf7-form-control.wpcf7-text,
.wpcf7-form-control.wpcf7-email {
  background-color: #e0e0e0 !important;
  border: none !important;
  padding: 0.75rem 1rem !important;
  width: 100% !important;
}

/* 送信ボタン: 横幅広め */
.wpcf7-submit {
  width: 60% !important;
  padding: 1rem !important;
}

/* REQUESTセクション: 細部調整 */
.p-requests__inner {
  max-width: none !important;
  margin: 0 auto !important;
  padding: 3.125rem 1.25rem !important;
}

.p-request__wrap {
  padding: 4rem 3rem !important;
  gap: 2rem !important;
}

/* 区切り線を非表示 */
.p-request__left {
  border-right: none !important;
}

/* 送信ボタン幅を広く */
.wpcf7-submit {
  width: 70% !important;
}

/* ===== REQUEST 再修正 ===== */

/* 白枠を縮める */
.p-request .p-requests__inner {
  padding: 0.5rem 1rem !important;
}

.p-request .p-request__wrap {
  padding: 1.5rem 2rem !important;
  gap: 2rem !important;
}

/* REQUEST画像サイズ */
.p-request__head .c-common-head__en img {
  height: 3rem !important;
  width: auto !important;
}

/* 資料請求 太字・大きく */
h2.p-head--request {
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  color: #000 !important;
  margin-top: 0.25rem !important;
}

/* ラベル＋入力欄 横並び：flexをfieldsetレベルで強制 */
.p-request .p-form__item {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  margin-bottom: 0.875rem !important;
  gap: 0 !important;
}

.p-request .p-form__item > label {
  display: inline-block !important;
  width: 8rem !important;
  min-width: 8rem !important;
  max-width: 8rem !important;
  flex: 0 0 8rem !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: #000 !important;
  white-space: nowrap !important;
  margin-bottom: 0 !important;
  line-height: 1 !important;
}

.p-request .p-form__item > .wpcf7-form-control-wrap {
  display: block !important;
  flex: 1 1 auto !important;
  width: auto !important;
}

.p-request .p-form__item input[type="text"],
.p-request .p-form__item input[type="email"] {
  display: block !important;
  width: 100% !important;
  background-color: #d3d3d3 !important;
  border: none !important;
  padding: 0.5rem 0.75rem !important;
  font-size: 0.9rem !important;
  box-sizing: border-box !important;
}

/* 送信ボタン */
.p-request .p-form__submit {
  padding-left: 8rem !important;
  margin-top: 1rem !important;
}

.p-request input.wpcf7-submit {
  background-color: #000 !important;
  color: #fff !important;
  border-radius: 50px !important;
  padding: 0.75rem 2.5rem !important;
  width: auto !important;
  min-width: 10rem !important;
  cursor: pointer !important;
}

/* SP */
@media screen and (max-width: 889px) {
  .p-request .p-request__wrap {
    flex-direction: column !important;
  }
  .p-request .p-form__item > label {
    width: 6rem !important;
    min-width: 6rem !important;
    flex: 0 0 6rem !important;
  }
  .p-request .p-form__submit {
    padding-left: 6rem !important;
  }
}

/* ===== REQUEST 最終統合 ===== */
.p-request .p-requests__inner {
  padding: 3.125rem 1.25rem !important;
  max-width: none !important;
  width: 100% !important;
  margin: 0 auto !important;
}

.p-request .p-request__wrap {
  width: 91.6666666667% !important;
  max-width: 110rem !important;
  margin: 0 auto !important;
  padding: 0 !important;
  display: flex !important;
  align-items: stretch !important;
  background-color: #fff !important;
}

.p-request .p-request__left {
  border-right: 1px solid #c30111 !important;
  padding: 3rem 1.5rem 3rem 2rem !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  flex: 1 !important;
}

.p-request .p-request__right {
  padding: 3rem 2rem !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  flex: 1 !important;
}

.p-request .p-form__item {
  display: flex !important;
  align-items: center !important;
  margin-bottom: 0.875rem !important;
  width: 100% !important;
}

.p-request .p-form__item > label {
  flex: 0 0 7rem !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  white-space: nowrap !important;
}

.p-request .p-form__item > .wpcf7-form-control-wrap {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  display: block !important;
  width: 100% !important;
}

.p-request .p-form__item input[type="text"],
.p-request .p-form__item input[type="email"] {
  display: block !important;
  width: 100% !important;
  background-color: #d3d3d3 !important;
  border: none !important;
  padding: 0.5rem 0.75rem !important;
  box-sizing: border-box !important;
}

.p-request .p-form__submit {
  margin-top: 1rem !important;
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  padding-left: 0 !important;
}

.p-request input.wpcf7-submit {
  background-color: #000 !important;
  color: #fff !important;
  border-radius: 50px !important;
  padding: 0.75rem 2.5rem !important;
  width: auto !important;
  min-width: 10rem !important;
  cursor: pointer !important;
}

@media screen and (max-width: 889px) {
  .p-request .p-request__wrap {
    flex-direction: column !important;
    width: 100% !important;
  }
  .p-request .p-request__left {
    border-right: none !important;
    border-bottom: 1px solid #c30111 !important;
    padding: 1.5rem !important;
  }
  .p-request .p-request__right {
    padding: 1.5rem !important;
  }
  .p-request .p-form__submit {
    padding-left: 0 !important;
  }
}

.p-request .p-request__text p {
  font-size: 1.0625rem !important;
  line-height: 1.8 !important;
}

.p-request .p-request__text--small {
  font-size: 0.9375rem !important;
}

/* ヘッダー スクロール時 白背景・枠線 */
.p-header.change-color {
  background-color: #fff !important;
  border-bottom: 1px solid #e0e0e0 !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
}

.p-header.change-color .p-header-nav__item {
  color: #000 !important;
}

/* レンタルプラン タイトル太字 */
.p-plan__title {
  font-weight: 700 !important;
}

/* ヘッダー スクロール時 文字色黒 */
.p-header.change-color .p-header-nav__item,
.p-header.change-color .p-header-nav__item a,
.p-header.change-color .p-header-nav__list,
.p-header.change-color a {
  color: #000 !important;
}

/* スクロール時ヘッダー */
.p-header.is-scrolled {
  background-color: #fff !important;
}
.p-header.is-scrolled .p-header-nav__list a {
  color: #000 !important;
}
.p-header.is-scrolled .p-header__logo img {
  filter: none;
}

/* ブログ系ページ (/blog/, /<category>/, /<category>/<slug>/) は
   スクロール時のヘッダー背景をしっかり透明にして、記事が透けて見える
   没入感を出す。文字は可読性のため黒のままにする */
.p-header.is-blog.is-scrolled {
  background-color: rgba(255, 255, 255, 0.65) !important;
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
}
/* 半透明背景でも文字を読めるように黒文字を維持 */
.p-header.is-blog.is-scrolled .p-header-nav__item,
.p-header.is-blog.is-scrolled .p-header-nav__item a,
.p-header.is-blog.is-scrolled .p-header-nav__list a {
  color: #000 !important;
}

/* ===== REQUEST 資料請求フォーム：現行デザイン忠実再現 ===== */
/* 白枠の左右に赤背景が見えるように余白を確保、真ん中に赤い区切り線 */
body .p-request.l-request .p-requests__inner {
  padding: 3.125rem 0 !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  background-color: transparent !important;
}

body .p-request.l-request .p-request__wrap {
  width: 91.6666666667% !important;
  max-width: 110rem !important;
  margin: 0 auto !important;
  padding: 0 !important;
  display: flex !important;
  align-items: stretch !important;
  background-color: #fff !important;
}

/* 真ん中の赤い区切り線 */
body .p-request.l-request .p-request__left {
  border-right: 1px solid #c30111 !important;
  padding: 3rem 2.5rem !important;
  flex: 1 1 50% !important;
}

body .p-request.l-request .p-request__right {
  border-right: none !important;
  padding: 3rem 2.5rem !important;
  flex: 1 1 50% !important;
}

@media screen and (max-width: 889px) {
  body .p-request.l-request .p-request__wrap {
    width: 92% !important;
    flex-direction: column !important;
  }
  body .p-request.l-request .p-request__left {
    border-right: none !important;
    border-bottom: 1px solid #c30111 !important;
    padding: 1.5rem !important;
  }
  body .p-request.l-request .p-request__right {
    padding: 1.5rem !important;
  }
}

/* 資料請求フォーム: 業種ドロップダウンの見た目を input と統一 */
.p-request .p-form__item select.wpcf7-form-control {
  display: block !important;
  width: 100% !important;
  background-color: #d3d3d3 !important;
  border: none !important;
  padding: 0.5rem 2rem 0.5rem 0.75rem !important;
  font-size: 0.95rem !important;
  color: #1a1a1a !important;
  box-sizing: border-box !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path fill='%23555' d='M5 6L0 0h10z'/></svg>") !important;
  background-repeat: no-repeat !important;
  background-position: right 0.6rem center !important;
  cursor: pointer !important;
  border-radius: 0 !important;
  line-height: 1.5 !important;
}
.p-request .p-form__item select.wpcf7-form-control:focus {
  outline: 2px solid #c30111 !important;
  outline-offset: -1px !important;
}

/* ============================================
   c-read-more__btn の矢印アイコン修正
   (黒ボタン内の白丸 + 黒「>」矢印を確実に表示)
   ============================================ */
.c-read-more__btn .c-read-more__icon,
.c-read-more__btn .c-read-more__icon.c-icon {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 2rem !important;
  height: 2rem !important;
  min-width: 2rem !important;
  min-height: 2rem !important;
  background-color: #fff !important;
  border-radius: 50% !important;
  color: transparent !important;
  font-size: 0 !important;
  flex-shrink: 0 !important;
  top: auto !important;
  right: auto !important;
  transform: none !important;
  margin-left: 0.5rem !important;
  overflow: hidden !important;
}
.c-read-more__btn .c-read-more__icon .c-icon__item,
.c-read-more__btn .c-icon__item {
  display: block !important;
  position: relative !important;
  width: 0.55rem !important;
  height: 0.55rem !important;
  background-color: transparent !important;
  border: 0 !important;
  border-top: 2px solid #000 !important;
  border-right: 2px solid #000 !important;
  border-radius: 0 !important;
  transform: rotate(45deg) translate(-2px, 2px) !important;
  top: auto !important;
  left: auto !important;
  margin: 0 !important;
}
.c-read-more__btn .c-icon__item::before,
.c-read-more__btn .c-icon__item::after {
  content: none !important;
  display: none !important;
  border: 0 !important;
  background: none !important;
}
@media screen and (min-width: 500px) {
  .c-read-more__btn .c-read-more__icon {
    position: absolute !important;
    right: 1.25rem !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    margin-left: 0 !important;
  }
}
