@charset "UTF-8";
/* リキッドレイアウト対応 */
body {
  font-family: "Noto Serif JP";
}

.only-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .only-pc {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .only-sp {
    display: none;
  }
}

html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.4035087719vw;
  }
}
@media (min-width: 1140px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

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

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

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

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

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

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

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

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

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

footer {
  background: #5C0931;
  color: #fff;
  padding: 40px 0 16px;
  padding: 2.5rem 0 1rem;
}
@media screen and (min-width: 768px) {
  footer {
    padding: 0 0 1rem;
  }
}

.footer-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .footer-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.footer__img {
  width: 70px;
  width: 4.375rem;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .footer__img {
    margin: 0 auto 1.5rem;
  }
}

.footer-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 32px 0;
  margin: 2rem 0;
}
@media screen and (min-width: 768px) {
  .footer-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 2.5rem auto;
  }
}

.footer-list__item a {
  text-align: center;
  display: block;
  width: 100%;
  padding: 16px 20px;
  padding: 1rem 1.25rem;
}

.footer__text {
  font-size: 10px;
  font-size: 0.625rem;
  text-align: center;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 5;
  height: 64px;
  background: #fff;
  -webkit-box-shadow: 0 0.125rem 0.25rem 0 rgba(0, 0, 0, .1);
          box-shadow: 0 0.125rem 0.25rem 0 rgba(0, 0, 0, .1);
}
@media screen and (min-width: 768px) {
  header {
    height: 72px;
    padding: 0 4rem;
  }
}

.inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1220px;
    padding-right: 40px;
    padding-left: 40px;
  }
}

.pc-nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 100%;
    margin: auto;
  }
}

.pc-nav__logo {
  width: 200px;
  width: 12.5rem;
}

.pc-nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
  height: 100%;
}

.pc-nav-list__item {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
}

.pc-nav-list__item + .pc-nav-list__item, .pc-nav-list__contact {
  margin-left: 48px;
  margin-left: 3rem;
}

.pc-nav-list__item a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}

.pc-nav-list__item a::after {
  position: absolute;
  content: "";
  top: 20%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: #C2991F;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.pc-nav-list__item a:hover::after {
  opacity: 1;
}

.pc-nav-list__contact a {
  width: 176px;
  width: 11rem;
  height: 43px;
  height: 2.6875rem;
}

.sp-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .sp-header {
    display: none;
  }
}

.sp-header img {
  width: 148px;
  margin-left: 16px;
  margin-left: 1rem;
}

.sp-header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  height: 100%;
}

.sp-header__line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #C2991F;
  color: #fff;
  width: 64px;
  font-size: 12px;
  font-size: 0.75rem;
}

/*ナビ開閉ボタン*/
.sp-openbtn {
  position: relative;
  z-index: 99;
  width: 64px;
  background: #5C0931;
}

.sp-openbtn span {
  position: absolute;
  right: 22px;
  display: inline-block;
  width: 20px;
  height: 1px;
  background: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.sp-openbtn span:nth-of-type(1) {
  top: 24px;
}

.sp-openbtn span:nth-of-type(2) {
  top: 31px;
}

.sp-openbtn span:nth-of-type(3) {
  top: 38px;
}

.sp-openbtn.active span:nth-of-type(1) {
  top: 31px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.sp-openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.sp-openbtn.active span:nth-of-type(3) {
  top: 31px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.sp-nav {
  position: fixed;
  top: 64px;
  left: 0;
  background: #fff;
  -webkit-transform: translateX(100%) translateZ(0);
          transform: translateX(100%) translateZ(0);
  -webkit-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100%;
  visibility: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  padding: 24px 0 24px;
  padding: 1.5rem 0 1.5rem;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .sp-nav {
    display: none;
  }
}

.sp-nav.active {
  -webkit-transform: translateX(0%) translateZ(0);
          transform: translateX(0%) translateZ(0);
  visibility: visible;
}

.sp-nav-list {
  margin: auto;
  width: 90%;
}

.sp-nav-list__item {
  border-bottom: solid 1px #C2991F;
  border-bottom: solid 0.0625rem #C2991F;
}

.sp-nav-list__item {
  height: 64px;
  height: 4rem;
  line-height: 64px;
  line-height: 4rem;
}

.sp-nav-list__item a {
  display: block;
  width: 100%;
}

/*ご挨拶*/
.about-greeting {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 40px auto 64px;
  margin: 2.5rem auto 4rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 990px;
}
@media screen and (min-width: 768px) {
  .about-greeting {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin: 2rem auto 4.5rem;
  }
}

.about-greeting__img {
  width: 140px;
  width: 8.75rem;
  margin: 0 auto 24px;
  margin: 0 auto 1.5rem;
}
@media screen and (min-width: 768px) {
  .about-greeting__img {
    width: 11.4375rem;
    margin: 0 3.5rem 0 0;
  }
}

.about-greeting__text {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .about-greeting__text {
    font-size: 1rem;
  }
}

/*会社概要*/
.about-overview {
  position: relative;
  background: #FBF8F1;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 96px;
  margin: 0 auto 6rem;
  padding: 40px 20px;
  padding: 2.5rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .about-overview {
    margin-bottom: 8rem;
  }
}

.about-overview::before {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  left: 0;
  background: url(../images/common/about_Jpattern_top.png) no-repeat;
  background-position: left top;
  background-size: contain;
  width: 235px;
  width: 14.6875rem;
  height: 177px;
  height: 11.0625rem;
}
@media screen and (min-width: 768px) {
  .about-overview::before {
    width: 22.5625rem;
    height: 17rem;
  }
}

.about-overview::after {
  position: absolute;
  display: block;
  content: "";
  bottom: 0;
  right: 0;
  background: url(../images/common/about_Jpattern_bottom.png) no-repeat;
  background-position: left top;
  background-size: contain;
  width: 228px;
  width: 14.25rem;
  height: 196px;
  height: 12.25rem;
}
@media screen and (min-width: 768px) {
  .about-overview::after {
    width: 19.1875rem;
    height: 16.5rem;
  }
}

.about-overview-table {
  margin: 8px auto 0;
  margin: 0.5rem auto 0;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .about-overview-table {
    margin-top: 1rem;
    font-size: 1rem;
  }
}

.about-overview-table td {
  vertical-align: top;
  padding: 8px;
  padding: 0.5rem;
}
@media screen and (min-width: 768px) {
  .about-overview-table td {
    padding: 1rem;
  }
}

.about-overview-table th {
  vertical-align: top;
  padding: 8px;
  padding: 0.5rem;
}
@media screen and (min-width: 768px) {
  .about-overview-table th {
    padding: 1rem;
  }
}

.contact {
  width: 100%;
  max-width: 940px;
  margin: auto;
}

.contact-line {
  margin-bottom: 64px;
  margin-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .contact-line {
    margin-bottom: 5rem;
  }
}

.contact-line__QR {
  width: 64px;
  width: 4rem;
  margin: 24px auto 16px;
  margin: 1.5rem auto 1rem;
}
@media screen and (min-width: 768px) {
  .contact-line__QR {
    margin: 2rem auto 0;
  }
}

.contact__text {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 24px auto 0;
  margin: 1.5rem auto 0;
}
@media screen and (min-width: 768px) {
  .contact__text {
    font-size: 1rem;
    text-align: center;
  }
}

.contact-line__btn {
  margin: auto;
  background: #C2991F;
  color: #fff;
  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;
  width: 200px;
  width: 12.5rem;
  height: 48px;
  height: 3rem;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
@media screen and (min-width: 768px) {
  .contact-line__btn {
    display: none;
  }
}

.contact-line__btn:hover {
  border-radius: 32px;
}

/*メールフォーム*/
.contact-form {
  margin-top: 32px;
  margin-top: 2rem;
  margin-bottom: 96px;
  margin-bottom: 6rem;
}
@media screen and (min-width: 768px) {
  .contact-form {
    margin-bottom: 8rem;
  }
}

.contact-form-list {
  margin-bottom: 64px;
  margin-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .contact-form-list {
    margin-bottom: 5rem;
  }
}

.contact-form__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .contact-form__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.contact-form__item + .contact-form__item {
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .contact-form__item + .contact-form__item {
    margin-top: 2.5rem;
  }
}

.contact-form__title {
  min-width: 224px;
  min-width: 14rem;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
  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;
}
@media screen and (min-width: 768px) {
  .contact-form__title {
    margin-bottom: 0;
    padding-right: 3rem;
    font-size: 1rem;
  }
}

.contact-form__title--require {
  font-size: 10px;
  font-size: 0.625rem;
  color: #fff;
  background: #5C0931;
  padding: 2px 4px;
  padding: 0.125rem 0.25rem;
  margin-right: 10px;
  margin-right: 0.625rem;
}

.contact-form-list dd {
  width: 100%;
}

.contact-form-list input {
  background: #FBF8F1;
  border-bottom: solid 2px #5C0931;
  width: 100%;
  height: 48px;
  height: 3rem;
  padding: 12px 8px;
  padding: 0.75rem 0.5rem;
}

@media screen and (min-width: 768px) {
  .contactform__item--textarea {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

@media screen and (min-width: 768px) {
  .contactform__item--textarea dt {
    margin-top: 0.625rem;
  }
}

.contact-form-list dd > textarea {
  background: #FBF8F1;
  border-bottom: solid 2px #5C0931;
  width: 100%;
  height: 200px;
  height: 12.5rem;
  padding: 12px 8px;
  padding: 0.75rem 0.5rem;
}

.contact-agreement {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 32px;
  margin: 0 auto 2rem;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .contact-agreement {
    font-size: 1rem;
  }
}

.contact-form input[type=checkbox] {
  display: inline-block;
  border: solid 1px #333;
  width: 16px;
  width: 1rem;
  height: 16px;
  height: 1rem;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  cursor: pointer;
}

.contact-form input[type=checkbox]:checked {
  position: relative;
  background: #5C0931;
}

.contact-form input[type=checkbox]:checked::before {
  position: absolute;
  content: "";
  top: 1px;
  left: 4px;
  -webkit-transform: rotate(50deg);
          transform: rotate(50deg);
  width: 5px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

.contact-form__link {
  text-decoration: underline;
  margin-left: 4px;
  margin-left: 0.25rem;
}

.contact-form__btn {
  margin: auto;
  width: 200px;
  width: 12.5rem;
  height: 48px;
  height: 3rem;
}

/*確認画面*/
#formWrap h4 {
  color: #FE4242;
}

#formWrap > div {
  height: 300px;
}

.contact-form-confirm__text {
  text-align: center;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
  padding: 0 20px;
  padding: 0 1.25rem;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .contact-form-confirm__text {
    font-size: 1rem;
  }
}

.formTable {
  font-size: 14px;
  font-size: 0.875rem;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .formTable {
    font-size: 1rem;
  }
}

.formTable th {
  text-align: left;
  padding: 8px;
  padding: 0.5rem;
}
@media screen and (min-width: 768px) {
  .formTable th {
    padding: 0.75rem;
  }
}

.formTable > tbody > tr:last-of-type {
  display: none;
}

.contact-form-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  gap: 1rem;
  margin: 32px auto 128px;
  margin: 2rem auto 8rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .contact-form-btns {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 1.5rem;
  }
}

.btn-contact, .btn-contact--back {
  display: block;
  width: 200px;
  width: 12.5rem;
  height: 48px;
  height: 3rem;
}

.btn-contact--back {
  border: solid 1px #C2991F;
  color: #C2991F;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.btn-contact--back:hover {
  border-radius: 2rem;
}

/*完了画面*/
.thanks {
  height: 200px;
}
@media screen and (min-width: 768px) {
  .thanks {
    height: 300px;
  }
}

.flow {
  width: 100%;
  padding: 0 20px;
  padding: 0 1.25rem;
  counter-reset: rank;
}
@media screen and (min-width: 768px) {
  .flow {
    padding: 0;
    background: -webkit-gradient(linear, left top, right top, color-stop(8%, rgb(194, 153, 31)), color-stop(8%, rgb(255, 255, 255)));
    background: linear-gradient(90deg, rgb(194, 153, 31) 8%, rgb(255, 255, 255) 8%);
  }
}
@media screen and (min-width: 1300px) {
  .flow {
    max-width: 1140px;
    margin: auto;
  }
}

.flow-step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 64px;
  margin-bottom: 4rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .flow-step {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    margin-right: 4.375rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    margin-bottom: 2.5rem;
  }
}

.flow-step::after {
  position: absolute;
  bottom: -48px;
  bottom: -3rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  content: "";
  width: 4px;
  height: 48px;
  background: #C2991F;
}
@media screen and (min-width: 768px) {
  .flow-step::after {
    display: none;
  }
}

.flow-step:last-child::after {
  display: none;
}

.flow-step-text-wrap {
  margin-bottom: 16px;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .flow-step-text-wrap {
    margin-bottom: 0;
  }
}

.flow-step__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #5C0931;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .flow-step__title {
    font-size: 1.5rem;
  }
}

.flow-step__title::before {
  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;
  counter-increment: rank;
  content: counter(rank);
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
  background: #5C0931;
  color: #fff;
  border-radius: 50%;
  font-size: 16px;
  font-size: 1rem;
  margin-right: 10px;
  margin-right: 0.625rem;
}
@media screen and (min-width: 768px) {
  .flow-step__title::before {
    font-size: 1.25rem;
    width: 2rem;
    height: 2rem;
    margin-right: 1rem;
  }
}

.flow-step__text {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2;
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .flow-step__text {
    font-size: 1rem;
    margin-top: 1.5rem;
  }
}

.flow-step__img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .flow-step__img {
    width: 28.1875rem;
    margin-right: 4rem;
  }
}

.price__figure {
  font-family: sans-serif;
  font-weight: 300;
}

.construction-h2-wrap {
  background: #fff;
  position: relative;
  z-index: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  padding: 0 40px;
  padding: 0 2.5rem;
}

/*対応工事*/
.construction-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 900px;
  margin: -32px auto 64px;
  margin: -2rem auto 4rem;
  border: solid 1px #5C0931;
  gap: 16px 24px;
  gap: 1rem 1.5rem;
  padding: 48px 24px 40px;
  padding: 3rem 1.5rem 2.5rem;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .construction-list {
    gap: 1rem 3rem;
    padding: 3.5rem 8rem 2.5rem;
    font-size: 1rem;
    margin: -2rem auto 5rem;
  }
}

/*料金表*/
.price-table-arrow {
  position: relative;
}

.price-table-wrap {
  overflow-x: auto;
  margin-bottom: 80px;
  margin-bottom: 5rem;
}

.arrow {
  position: absolute;
  top: 16px;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 115px;
  font-size: 10px;
  font-size: 0.625rem;
  color: #777;
}
@media screen and (min-width: 490px) {
  .arrow {
    display: none;
  }
}

.arrow::after {
  content: "";
  margin-left: 2px;
  width: 16px;
  height: 5px;
  border-bottom: solid 1px #999;
  border-right: solid 1px #999;
  -webkit-transform: skew(45deg);
          transform: skew(45deg);
}

.arrow-animation {
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  width: 115px;
}

.arrow-keyframe {
  -webkit-animation-name: arrow-keyframe;
          animation-name: arrow-keyframe;
}

@-webkit-keyframes arrow-keyframe {
  0% {
    -webkit-transform: translate(0px, 0);
            transform: translate(0px, 0);
  }
  100% {
    -webkit-transform: translate(4px, 0);
            transform: translate(4px, 0);
  }
}

@keyframes arrow-keyframe {
  0% {
    -webkit-transform: translate(0px, 0);
            transform: translate(0px, 0);
  }
  100% {
    -webkit-transform: translate(4px, 0);
            transform: translate(4px, 0);
  }
}
.price-table {
  border-collapse: collapse;
  border: solid 1px #E1DBCA;
  border-top: none;
  margin: 40px auto 0;
  margin: 2.5rem auto 0;
  width: 100%;
  max-width: 900px;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .price-table {
    font-size: 1rem;
  }
}

.price-table th, .price-table td {
  border-right: solid 1px #E1DBCA;
  text-align: center;
  padding: 8px;
  padding: 0.5rem;
}

.price-table th:nth-of-type(1) {
  min-width: 184px;
  min-width: 11.5rem;
  text-align: left;
  padding: 12px 14px;
  padding: 0.75rem 0.875rem;
}
@media screen and (min-width: 768px) {
  .price-table th:nth-of-type(1) {
    padding: 1rem 1.25rem;
  }
}

.price-table__bg-wine {
  background: #5C0931;
  color: #fff;
  border: none;
  border-left: solid 1px #5C0931;
  border-right: solid 1px #5C0931;
}

.price-table__bg-wine th {
  width: 104px;
  width: 6.5rem;
  border-right: solid 1px #fff;
}
@media screen and (min-width: 768px) {
  .price-table__bg-wine th {
    width: 14.0625rem;
  }
}

.price-table__bg-wine th:nth-last-child(1) {
  border-right: none;
}

.price-table__bg-beige {
  background: #FBF8F1;
}

.price-table tr:last-child td {
  text-align: left;
  padding-left: 10px;
  padding-left: 0.625rem;
}
@media screen and (min-width: 768px) {
  .price-table tr:last-child td {
    padding-left: 4rem;
  }
}

.price-table__link {
  color: #777;
  font-size: 10px;
  font-size: 0.625rem;
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .price-table__link {
    font-size: 0.75rem;
  }
}

/*クロスの料金表*/
.cloth-price-table {
  border-collapse: collapse;
  margin: 40px auto 80px;
  margin: 2.5rem auto 5rem;
  width: 100%;
  max-width: 900px;
  border-bottom: solid 1px #E1DBCA;
}
@media screen and (min-width: 768px) {
  .cloth-price-table {
    border: solid 1px #E1DBCA;
    border-top: none;
  }
}

.cloth-price-table__bg-wine {
  background: #5C0931;
  color: #fff;
}

.cloth-price-table__img {
  margin: auto;
  width: 160px;
  width: 10rem;
}

.cloth-price-table th, .cloth-price-table td {
  display: block;
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .cloth-price-table th, .cloth-price-table td {
    display: table-cell;
    width: auto;
    border-right: solid 1px #E1DBCA;
  }
}

.cloth-price-table th {
  font-size: 14px;
  font-size: 0.875rem;
  padding: 16px 20px;
  padding: 1rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .cloth-price-table th {
    font-size: 1rem;
  }
}

.cloth-price-table .cloth-price-table__th--pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .cloth-price-table .cloth-price-table__th--pc {
    display: table-cell;
  }
}

.cloth-price-table .cloth-price-table__th--sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .cloth-price-table .cloth-price-table__th--sp {
    display: none;
  }
}

.cloth-price-table td {
  border-right: solid 1px #E1DBCA;
  border-left: solid 1px #E1DBCA;
  padding: 24px;
  padding: 1.5rem;
}
@media screen and (min-width: 768px) {
  .cloth-price-table td {
    padding: 2rem;
  }
}

.cloth-price-table td:nth-child(2) {
  padding: 0;
}
@media screen and (min-width: 768px) {
  .cloth-price-table td:nth-child(2) {
    padding: 2rem;
  }
}

.cloth-price-table__caption {
  font-size: 14px;
  font-size: 0.875rem;
  margin-top: 8px;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .cloth-price-table__caption {
    font-size: 1rem;
    margin-top: 1rem;
  }
}

/*決済方法*/
.payment-table {
  border-collapse: collapse;
  margin: 40px auto 128px;
  margin: 2.5rem auto 8rem;
  width: 100%;
  max-width: 900px;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .payment-table {
    font-size: 1rem;
  }
}

.payment-table__bg-wine {
  background: #5C0931;
  color: #fff;
  padding: 16px;
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  .payment-table__bg-wine {
    padding: 3rem;
    width: 14.0625rem;
  }
}

.payment-table__bg-beige {
  background: #FBF8F1;
  border-bottom: solid 1px #E1DBCA;
}

.payment-table td, .payment-table th {
  display: block;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .payment-table td, .payment-table th {
    display: table-cell;
    width: auto;
  }
}

.payment-table td {
  border-left: solid 1px #E1DBCA;
  border-right: solid 1px #E1DBCA;
  padding: 16px;
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  .payment-table td {
    border-left: none;
    padding-left: 2.5rem;
  }
}

.payment-table tr:first-child td {
  border-top: solid 1px #E1DBCA;
}

.privacypolicy-list {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 96px;
  margin: 0 auto 6rem;
  padding: 0 20px;
  padding: 0 1.25rem;
}
@media screen and (min-width: 768px) {
  .privacypolicy-list {
    margin-bottom: 8rem;
  }
}

.privacypolicy-list__item + .privacypolicy-list__item {
  margin-top: 48px;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .privacypolicy-list__item + .privacypolicy-list__item {
    margin-top: 3.5rem;
  }
}

.privacypolicy-list__title {
  color: #5C0931;
  font-size: 16px;
  font-size: 1rem;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .privacypolicy-list__title {
    font-size: 1.5rem;
  }
}

.privacypolicy-list__text, .privacypolicy-list__text--ul {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .privacypolicy-list__text, .privacypolicy-list__text--ul {
    font-size: 1rem;
  }
}

.privacypolicy-list__text + .privacypolicy-list__text {
  margin-top: 8px;
  margin-top: 0.5rem;
}

.privacypolicy-list__text--ul {
  list-style: disc;
  margin-left: 16px;
  margin-left: 1rem;
}

.top-h2 img {
  width: 48px;
  margin: 0 auto 48px;
  margin: 0 auto 3rem;
}
@media screen and (min-width: 768px) {
  .top-h2 img {
    width: 56px;
    margin-bottom: 3.5rem;
  }
}

#firstAccess.active {
  position: fixed;
  background: #fff;
  width: 100vw;
  height: 100vh;
  z-index: 99;
  display: block;
}

#firstAccess img {
  width: 200px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/*mv*/
.mv {
  position: relative;
  background: #5C0931;
  padding-top: 64px;
  padding-top: 4rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
  overflow: hidden;
  max-height: 930px;
}
@media screen and (min-width: 768px) {
  .mv {
    padding-top: 112px;
    max-height: 930px;
    padding-bottom: 0;
  }
}

@media screen and (min-width: 768px) {
  .mv-sp {
    display: none;
  }
}

.mv-sp__img {
  width: 89%;
  margin-left: auto;
}

.mv-sp__text {
  position: absolute;
  width: 66%;
  top: 81%;
  left: 5%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="4" /><feOffset dx="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(0,0,0,0.2)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, .2));
          filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, .2));
}

.mv-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .mv-pc {
    display: block;
  }
}

.mv-pc__img {
  width: 70%;
  margin-left: auto;
}

.mv-pc__text {
  position: absolute;
  top: 60%;
  left: 5%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 46%;
  max-width: 750px;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="4" /><feOffset dx="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(0,0,0,0.2)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, .2));
          filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, .2));
}

.mv-text {
  font-size: 16px;
  font-size: 1rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .mv-text {
    font-size: 1.5rem;
  }
}

.mv-catch {
  position: relative;
  padding: 72px 20px 96px;
  padding: 4.5rem 1.25rem 6rem;
  margin-bottom: 72px;
  margin-bottom: 4.5rem;
}
@media screen and (min-width: 768px) {
  .mv-catch {
    padding: 6rem 0 9.5rem;
    margin-bottom: 8rem;
  }
}

.mv-catch::before {
  position: absolute;
  display: block;
  content: "";
  top: -8px;
  left: 0;
  background: url(../images/common/top_Jpattern_top.png) no-repeat;
  background-size: contain;
  width: 144px;
  width: 9rem;
  height: 58px;
  height: 3.625rem;
}
@media screen and (min-width: 768px) {
  .mv-catch::before {
    top: -24px;
    width: 28rem;
    height: 11.3125rem;
  }
}

.mv-catch::after {
  position: absolute;
  display: block;
  content: "";
  bottom: 0;
  right: 0;
  background: url(../images/common/top_Jpattern_bottom.png) no-repeat;
  background-size: contain;
  width: 147px;
  width: 9.1875rem;
  height: 38px;
  height: 2.375rem;
}
@media screen and (min-width: 768px) {
  .mv-catch::after {
    width: 28.75rem;
    height: 7.5rem;
  }
}

.mv-list {
  width: 100%;
  max-width: 440px;
  max-width: 27.5rem;
  margin: 24px auto 0;
  margin: 1.5rem auto 0;
}
@media screen and (min-width: 768px) {
  .mv-list {
    margin: 2rem auto 0;
  }
}

.mv-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #5C0931;
  font-size: 14px;
  font-size: 0.875rem;
  padding: 12px 8px;
  padding: 0.75rem 0.5rem;
}
@media screen and (min-width: 768px) {
  .mv-list li {
    font-size: 1rem;
    padding: 0.75rem 0.5rem;
  }
}

.mv-list li:first-child {
  border-top: 1px solid #5C0931;
}

.mv-list li::before {
  display: inline-block;
  content: "";
  width: 8px;
  height: 8px;
  background: #5C0931;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-right: 8px;
  margin-right: 0.5rem;
}

.visible-wrap {
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .visible-wrap {
    overflow: visible;
  }
}

/* お知らせ */
.news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 72px;
  margin-bottom: 4.5rem;
}
@media screen and (min-width: 768px) {
  .news {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    border: 1px solid #5C0931;
    width: 100%;
    max-width: 1140px;
    margin: 0 auto 8rem;
    padding: 2.5rem 3rem 2.5rem 6.125rem;
  }
}

.news__title img {
  width: 48px;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .news__title img {
    min-width: 48px;
    padding-top: 4px;
  }
}

.news-inner {
  margin-top: 40px;
  margin-top: 2.5rem;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .news-inner {
    font-size: 1rem;
    margin-top: 0;
    margin-left: 3.5rem;
  }
}

.news__time {
  display: block;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
  font-family: sans-serif;
}

/* 強み */
.strength {
  margin-bottom: 72px;
  margin-bottom: 4.5rem;
}
@media screen and (min-width: 768px) {
  .strength {
    margin-bottom: 11rem;
  }
}

.strength__img {
  width: 85%;
}
@media screen and (min-width: 768px) {
  .strength__img {
    width: 100%;
    max-width: 50rem;
  }
}

.strength-inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .strength-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    max-width: 71.25rem;
    margin: auto;
  }
}

.strength-inner::before, .strength-inner::after {
  position: absolute;
  display: block;
  content: "";
  background: url(../images/common/top_Jpattern_strength.png) no-repeat;
  background-size: cover;
  z-index: -1;
}

.strength-inner::before {
  top: -56px;
  right: -96px;
  width: 342px;
  height: 342px;
}
@media screen and (min-width: 768px) {
  .strength-inner::before {
    top: -88px;
    right: 16px;
    width: 593px;
    height: 593px;
  }
}

.strength-inner::after {
  bottom: -48px;
  left: -56px;
  width: 342px;
  height: 342px;
}
@media screen and (min-width: 768px) {
  .strength-inner::after {
    display: none;
  }
}

.strength-list {
  width: 80%;
  color: #fff;
  margin-left: auto;
  margin-top: -16px;
  margin-top: -1rem;
}
@media screen and (min-width: 768px) and (max-width: 1140px) {
  .strength-list {
    width: 100%;
    padding-right: 40px;
    margin: 0 0 -8rem -7.5rem;
  }
}
@media screen and (min-width: 1140px) {
  .strength-list {
    width: 100%;
    margin: 0 0 -4rem -2.5rem;
  }
}

.strength-list__item + .strength-list__item {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.strength-list__item {
  background: #5C0931;
  padding: 24px;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: 1s all;
  transition: 1s all;
}

.strength-list__item.js-fadein {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.strength-list__title {
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .strength-list__title {
    font-size: 1.25rem;
    font-weight: 300;
  }
}

.strength-list__title::after {
  display: block;
  content: "";
  width: 41px;
  height: 6px;
  background: url(../images/common/top_h3_strength.svg) no-repeat;
  background-size: contain;
  margin: 16px 0;
  margin: 1rem 0;
}

.strength-list__text {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .strength-list__text {
    font-size: 1rem;
  }
}

/* サービス */
.service {
  margin-bottom: 96px;
  margin-bottom: 6rem;
}
@media screen and (min-width: 768px) {
  .service {
    margin-bottom: 9rem;
  }
}

.service-list__item {
  margin-bottom: 64px;
  margin-bottom: 4rem;
  padding-bottom: 64px;
  padding-bottom: 4rem;
}

.service-list__item:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}

.js-underline {
  position: relative;
}

.js-underline::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  height: 1px;
  background: #5C0931;
  width: 0%;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}

.js-underline.active::after {
  width: 50%;
}
@media screen and (min-width: 768px) {
  .js-underline.active::after {
    width: 30%;
  }
}

.service-list__item:nth-child(2n)::after {
  left: auto;
  right: 0;
}

.service-list__item:last-child::after {
  display: none;
}

.service-list__item--inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 20px;
  row-gap: 1.25rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .service-list__item--inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    grid-template-columns: 1fr 1fr;
    row-gap: 0;
    -webkit-column-gap: 2.5rem;
       -moz-column-gap: 2.5rem;
            column-gap: 2.5rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (min-width: 768px) {
  .service-list__item:nth-child(2n+1) > .service-list__item--inner > .service-list__img {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.service-list__img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .service-list__img {
    max-width: 35.625rem;
  }
}

.service-list__title {
  color: #5C0931;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .service-list__title {
    font-size: 1.25rem;
  }
}

.service-list__title::before {
  display: inline-block;
  content: "";
  width: 16px;
  height: 16px;
  background: url(../images/common/top_h3_service.svg) no-repeat;
  background-size: cover;
  margin-right: 8px;
  margin-right: 0.5rem;
}
@media screen and (min-width: 768px) {
  .service-list__title::before {
    width: 20px;
    height: 20px;
  }
}

.service-list__title, .service-list__text {
  margin-bottom: 16px;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .service-list__title, .service-list__text {
    margin-bottom: 2rem;
  }
}

.service-list__text {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .service-list__text {
    font-size: 1rem;
  }
}

.service-list__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #C2991F;
  color: #C2991F;
  width: 144px;
  width: 9rem;
  padding: 10px;
  padding: 0.625rem;
  font-size: 14px;
  font-size: 0.875rem;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
@media screen and (min-width: 768px) {
  .service-list__btn {
    font-size: 1rem;
  }
}

.service-list__btn:hover {
  border-radius: 2rem;
}

.top-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  gap: 24px;
  gap: 1.5rem;
  margin-bottom: 96px;
  margin-bottom: 6rem;
}
@media screen and (min-width: 768px) {
  .top-btns {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 2rem;
    margin-bottom: 9rem;
  }
}

.top-btns__btn {
  width: 256px;
  width: 16rem;
  height: 134px;
  height: 8.375rem;
}

html {
  background: #fff;
}

.br-sp {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .br-sp {
    display: none;
  }
}

.br-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .br-pc {
    display: inline-block;
  }
}

.sub-pagetitle-wrap {
  position: relative;
  background: #5C0931;
  color: #fff;
  width: 100%;
  height: 150px;
  height: 9.375rem;
  margin-top: 64px;
}
@media screen and (min-width: 768px) {
  .sub-pagetitle-wrap {
    height: 7.875rem;
    margin-top: 72px;
  }
}

.sub-pagetitle-wrap::before {
  position: absolute;
  display: block;
  content: "";
  width: 1px;
  height: 80px;
  background: #fff;
  bottom: -56px;
  left: 50%;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(70%, rgb(92, 9, 49)), color-stop(70%, rgb(255, 255, 255)));
  background: linear-gradient(0deg, rgb(92, 9, 49) 70%, rgb(255, 255, 255) 70%);
}

.sub-pagetitle {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 24px;
  font-size: 1.5rem;
  text-align: center;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .sub-pagetitle {
    font-size: 2rem;
  }
}

.sub-pagetitle::before, .sub-pagetitle::after {
  position: absolute;
  display: block;
  z-index: -1;
  content: "";
  width: 174px;
  width: 10.875rem;
  height: 150px;
  height: 9.375rem;
  top: 0;
}
@media screen and (min-width: 768px) {
  .sub-pagetitle::before, .sub-pagetitle::after {
    width: 23.9375rem;
    height: 7.875rem;
  }
}

.sub-pagetitle::before {
  left: 0;
  background: url(../images/common/SP-sub-title__bg--left.png) #5C0931 no-repeat;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .sub-pagetitle::before {
    background: url(../images/common/PC-sub-title__bg--left.png) #5C0931 no-repeat;
  }
}

.sub-pagetitle::after {
  right: 0;
  background: url(../images/common/SP-sub-title__bg--right.png) #5C0931 no-repeat;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .sub-pagetitle::after {
    background: url(../images/common/PC-sub-title__bg--right.png) #5C0931 no-repeat;
  }
}

.sub-pagetitle-text-wrap {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  padding: 0 20px;
  padding: 0 1.25rem;
}

.sub-pagetitle-text {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2;
  margin-top: 72px;
  margin-top: 4.5rem;
  margin-bottom: 64px;
  margin-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .sub-pagetitle-text {
    font-size: 1rem;
    margin-bottom: 5rem;
  }
}

.sub-h2 {
  font-size: 20px;
  font-size: 1.25rem;
  text-align: center;
  color: #5C0931;
}
@media screen and (min-width: 768px) {
  .sub-h2 {
    font-size: 1.5rem;
  }
}

.sub-h2::before {
  display: block;
  content: "";
  background: url(../images/common/sub_h2.svg) no-repeat;
  background-size: cover;
  width: 24px;
  height: 19px;
  margin: 0 auto 10px;
}

.btn {
  background: #C2991F;
  color: #fff;
  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.3s all;
  transition: 0.3s all;
}

.btn:hover {
  border-radius: 32px;
}
/*# sourceMappingURL=styles.css.map */
