@charset "UTF-8";

:root {
  --primary-color: #32251D;
  --secondary-color: #E8E5E0;
  --success-color: #887A7A;
  --red-color: #F1416C;
  --yellow-color: #F6C000;
  --blue-color: #006FCF;
  --info-color: #EEF6FF;
  --light-color: #F7F8FA;
  --dark-color: #000;
  --body-color: #413228;
}

html {
  height: -webkit-fill-available;
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  background-color: #fff;
  color: var(--body-color);
  display: flex;
  font-size: 1.6rem;
  font-family: "Noto Serif JP", -apple-system, serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 400;
  font-optical-sizing: auto;
  font-style: normal;
  flex-direction: column;
  align-items: center;
  line-height: 2;
  margin: 0;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  padding: 0;
  position: relative;
  overflow-x: hidden;
}

.of-hidden {
  overflow: hidden;
}

.text-primary {
  color: var(--primary-color);
}

.text-white {
  color: #fff;
}

.text-blue {
  color: #006FCF;
}

.text-gray {
  color: #B5B9BC;
}

.text-gold {
  color: #C7BA79;
}

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

.hidden {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s, transform 1s;
}

.visible {
  opacity: 1;
  transform: translateY(0);
}

.h-100 {
  height: 100%;
}

.sticky {
  position: sticky;
  z-index: 1000;
}

img {
  max-width: 100%;
  height: auto;
}

video {
  max-width: 100%;
  height: auto;
}

hr {
  height: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

hr,
.hr {
  border-top: 1px solid #C7BA79;
  display: block;
}

a {
  color: #000;
  text-decoration: none;
}

.underline {
  text-decoration: underline;
}

.link-hover:hover,
.link-hover:focus {
  opacity: 0.6;
}

a[href^="tel:"] {
  color: #333;
  text-decoration: none;
}

.block {
  display: block;
}

.inblock {
  display: inline-block;
}

.lsm-20 {
  letter-spacing: -0.02em;
}

.ls-20 {
  letter-spacing: 0.02em;
}

.disabled,
.btn:disabled {
  pointer-events: none;
  text-decoration: none !important;
}

.required {
  color: #F1416C;
  padding-left: 0.5rem;
}

.block {
  display: block;
}

.radius-sm {
  border-radius: 4px;
}

.radius-md {
  border-radius: 8px;
}

.radius-lg {
  border-radius: 60px;
}

.text-center {
  text-align: center !important;
}

.align-left {
  text-align: left !important;
}

.align-right {
  text-align: right !important;
}

.bold {
  font-weight: 600;
}

strong,
.strong {
  font-weight: 700;
}

.fw-normal {
  font-weight: normal !important;
}

.unstyled {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul:not([class]) {
  list-style: none;
  padding-left: 0;
}

ul:not([class]) > li {
  padding-left: 16px;
  position: relative;
}

ul:not([class]) > li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

ol.small {
  padding-left: 20px;
}

ol.small li {
  margin-bottom: 5px;
}

ol:not([class]) {
  padding-left: 27px;
}

ol:not([class]) li {
  margin-bottom: 10px;
}

.flex {
  display: flex;
}

.flex-inline {
  display: inline-flex;
}

.flex-fill {
  flex: 1 1 auto;
}

.flex-column {
  flex-direction: column;
}

.flex-sp-row {
  flex-direction: column !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
  flex-direction: row !important;
}

.flex-sp-wrap {
  flex-wrap: nowrap;
}

.flex-md-wrap {
  flex-wrap: nowrap;
}

.jc-center {
  justify-content: center !important;
}

.jc-between {
  justify-content: space-between !important;
}

.jc-end {
  justify-content: flex-end !important;
}

.ai-end {
  align-items: flex-end !important;
}

.ai-center {
  align-items: center !important;
}

.as-center {
  align-self: center !important;
}

.col-100 {
  width: 100%;
}

.col-5 {
  max-width: 50%;
  width: 100%;
}

.col-3 {
  max-width: 33.3333333333%;
  width: 100%;
}

.col-4 {
  width: 25%;
}

.col-auto {
  width: auto;
}

.col-10 {
  width: 100px;
}

.col-16 {
  width: 160px;
}

.col-20 {
  width: 200px;
}

.col-24 {
  width: 240px;
}

.col-42 {
  width: 420px;
}

.gap-10 {
  gap: 10px;
}

.gap-12 {
  gap: 12px;
}

.gap-15 {
  gap: 15px;
}

.gap-20 {
  gap: 2rem;
}

.gap-30 {
  gap: 2rem;
}

.gap-40 {
  gap: 40px;
}

.gap-74 {
  gap: 74px;
}

.ml-auto {
  margin-left: auto;
}

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

.ml-5 {
  margin-left: 5px !important;
}

h1,
h2,
h3,
h4,
h5,
dl,
dt,
dd,
li,
p {
  margin: 0;
  padding: 0;
}

.header {
  max-width: 1280px;
  width: 100%;
}

.header h1 {
  font-size: 1.4rem;
}

.main {
  margin: 0;
  position: relative;
  width: 100%;
  z-index: 1;
}

.main .wrapper {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  width: 100%;
}

.main .wrapper section {
  padding-right: 4rem;
  padding-left: 4rem;
}

.container {
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  width: 100%;
}

.footer {
  margin-top: auto;
  text-align: center;
  position: relative;
  width: 100%;
  z-index: 0;
}

_::-webkit-full-page-media,
_:future,
:root .footer {
  background-color: rgba(255, 255, 255, 0.9);
}

.backtotop {
  display: inline-block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 105px;
  z-index: 1;
}

.backtotop span {
  display: flex;
  align-items: center;
  font-size: 3rem;
  height: 60px;
}

.backtotop .bt-mask {
  display: flex;
  justify-content: center;
  height: 150px;
  position: relative;
  overflow: hidden;
}

.backtotop .bt-maskimg {
  display: block;
  height: 140px;
  position: absolute;
  bottom: -70px;
  transition: bottom 0.5s;
}

@keyframes bounce {
  0% {
    transform: translateY(100%);
  }

  20% {
    transform: translateY(-10%);
  }

  40% {
    transform: translateY(5%);
  }

  60% {
    transform: translateY(-5%);
  }

  80% {
    transform: translateY(2%);
  }

  100% {
    transform: translateY(0);
  }
}

.p-20 {
  padding: 20px;
}

.p-30 {
  padding: 30px;
}

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

.mt-auto {
  margin-top: auto;
}

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

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-50 {
  margin-top: 50px !important;
}

.block {
  display: block;
  position: relative;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 3rem;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 5rem;
}

.mb-70 {
  margin-bottom: 7rem;
}

.mb-65 {
  margin-bottom: 65px;
}

.mb-80 {
  margin-bottom: 8rem;
}

.mb-90 {
  margin-bottom: 9rem;
}

.mb-100 {
  margin-bottom: 10rem;
}

.mb-150 {
  margin-bottom: 15rem;
}

.mr-0 {
  margin-right: 0 !important;
}

.small,
small {
  font-size: 1.4rem;
}

:user-valid {
  border-color: #D5D5D5;
}

:user-invalid {
  border-color: #F1416C;
}

.btn {
  background-color: transparent;
  border: none;
  border-radius: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: 0;
  position: relative;
  padding: 1.1rem 1.2rem;
  font-size: 1.6rem;
  font-weight: 600;
  width: 100%;
}

.btn:hover,
.btn:focus,
.btn:active {
  opacity: 1;
}

.btn-border {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  width: 25.8rem;
}

.btn-border:hover,
.btn-border:active,
.btn-border:focus {
  background-color: var(--secondary-color);
}

.sub-text {
  color: #C1C5C7;
}

.relative {
  position: relative;
}

.badge {
  display: inline-flex;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  line-height: 1;
  padding: 0.3rem;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
}

.badge-dark {
  background-color: var(--primary-color);
  color: #fff;
  font-size: 1.2rem;
  padding: 0.3rem 0.5rem;
}

.fs-11 {
  font-size: 1.1rem;
}

.fs-12 {
  font-size: 1.2rem;
}

.fs-13 {
  font-size: 1.3rem;
}

.fs-14 {
  font-size: 1.4rem;
}

.fs-15 {
  font-size: 1.5rem;
}

.fs-16 {
  font-size: 1.6rem;
}

.fs-18 {
  font-size: 1.8rem;
}

.fs-20 {
  font-size: 2rem;
}

.fs-23 {
  font-size: max(2.3rem, 10px);
}

.fs-24 {
  font-size: 2.4rem;
}

.fs-25 {
  font-size: 2.5rem;
}

.fs-26 {
  font-size: 2.6rem;
}

.fs-28 {
  font-size: 2.8rem;
}

.fs-30 {
  font-size: 3rem;
}

.fs-34 {
  font-size: 3.4rem;
}

.fs-clamp-32 {
  font-size: clamp(1.5rem, 2.4vw, 3.2rem);
}

.fs-40 {
  font-size: 4rem;
}

.ic {
  display: inline-block;
  position: relative;
  margin: 0;
  padding: 0;
}

.ic::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto;
}

.ic-right {
  padding-right: 14px;
  position: relative;
  margin-left: auto;
}

.ic-right::after {
  content: "";
  background-image: url("data:image/svg+xml, %3csvg id='arrow2' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 7 10.42'%3e%3cdefs%3e%3cstyle%3e.cls-1{fill:%2350bcb1;}%3c/style%3e%3c/defs%3e%3cg id='arrow1-2'%3e%3cpolygon class='cls-1' points='7 5.21 0 0 0 10.42 7 5.21'/%3e%3c/g%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 7px 12px;
  transform: translateY(-50%);
  position: absolute;
  right: 10px;
  top: 50%;
  z-index: 1;
  height: 12px;
  width: 12px;
}

.ic-right:hover::after {
  right: 5px;
}

.ic-check {
  position: absolute;
  left: 1rem;
  height: 15px;
  width: 15px;
}

.ic-check::after {
  content: "";
  background-image: url("data:image/svg+xml, %3csvg id='_check' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 31.68 25.86'%3e%3cg id='_check_1-2'%3e%3cpath d='M.34,19.83c-.57,1.74-.43,3.78.4,5.35.25.48.88.94,1.32.53,7.32-6.83,14.9-13.21,22.69-19.11,2.2-1.66,4.42-3.29,6.65-4.88.38-.27.34-.91.08-1.28-.29-.41-.81-.59-1.2-.31-7.91,5.63-15.62,11.74-23.08,18.31-2.11,1.86-4.19,3.75-6.26,5.67.44.18.88.35,1.32.53-.62-1.18-.74-2.62-.3-3.93.36-1.08-1.26-1.97-1.61-.89'/%3e%3c/g%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 15px 15px;
  transform: translateY(-50%);
  position: absolute;
  right: 0;
  top: 50%;
  z-index: 1;
  height: 15px;
  width: 15px;
}

.ic-new-r {
  position: absolute;
  height: 2.7rem;
  width: 2.7rem;
}

.ic-new-r::after {
  content: "";
  background-image: url("data:image/svg+xml, %3csvg id='_new_2' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 44.76 44.76'%3e%3cdefs%3e%3cstyle%3e.cls-1{fill:%23fff;}.cls-2{fill:%234ac8bb;}%3c/style%3e%3c/defs%3e%3cg id='_new_1-2'%3e%3cpath class='cls-1' d='M39.01,37.35c-8.27,9.18-22.42,9.93-31.6,1.66C-1.78,30.74-2.52,16.59,5.75,7.4,14.02-1.78,28.17-2.52,37.35,5.75c9.18,8.27,9.93,22.42,1.66,31.6'/%3e%3cpath class='cls-1' d='M42.69,40.67c-2.84-1.48-6.34-1.13-8.85.94l8.86-9.84c-1.8,2.71-1.78,6.22-.01,8.9'/%3e%3cpath class='cls-2' d='M37.35,26.39c0-.79-.62-1.42-1.42-1.42s-1.42.64-1.42,1.42.64,1.42,1.42,1.42,1.42-.62,1.42-1.42M37.05,16.37h-2.21v7.88h2.21v-7.88ZM33.54,16.37h-2.33l-.81,4.51c-.2,1.08-.3,2.18-.3,3.27-.07-.71-.18-1.42-.32-2.13l-1.15-5.66h-1.76l-1.05,5.06c-.18.89-.32,1.81-.42,2.72,0-.95-.12-1.91-.29-2.84l-.91-4.95h-2.28l2.28,11.26h1.94l1.06-4.42c.29-1.18.47-2.38.57-3.58.05,1.11.12,2.23.39,3.33.39,1.55.74,3.12,1.1,4.68h1.94l2.33-11.26ZM21.03,27.62v-2.08h-2.28v-2.53h1.98v-2.12h-1.98v-2.43h2.25v-2.09h-4.47v11.26h4.51ZM14.65,27.62v-11.26h-2.26v5.28c0,.51.07,1.01.17,1.52l-2.77-6.8h-2.11v11.26h2.23v-5.5c0-.42-.03-.86-.12-1.28l2.77,6.79h2.09Z'/%3e%3c/g%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  z-index: 1;
  height: 2.7rem;
  width: 2.7rem;
}

.newlist-text .ic-new-r {
  top: -1.9rem;
  left: -2.2rem;
}

.newitem_image {
  position: relative;
}

.newitem_image .ic-new-r {
  height: 100%;
  width: 100%;
}

.newitem_image .ic-new-r::after {
  content: "";
  background-size: contain;
  height: 100%;
  width: 100%;
}

.newitem_image .ic01,
.newitem_image .ic02,
.newitem_image .ic03 {
  display: block;
  position: absolute;
  z-index: 1;
  height: 13.671%;
  width: 8.139%;
}

.newitem_image .ic01 {
  top: 14.105%;
  left: 6.278%;
}

.newitem_image .ic02 {
  top: 11.335%;
  left: 62.068%;
}

.newitem_image .ic03 {
  top: 11.335%;
  left: 82.79%;
}

.ic-new-l {
  position: absolute;
  height: 100%;
  width: 100%;
}

.ic-new-l::after {
  content: "";
  background-image: url("data:image/svg+xml, %3csvg id='_new_2' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 35 35'%3e%3cdefs%3e%3cstyle%3e.cls-1{fill:%23fff;}.cls-2{fill:%2350bcb1;}%3c/style%3e%3c/defs%3e%3cg id='_new_1-2'%3e%3cpath class='cls-1' d='M4.5,29.21c6.47,7.18,17.53,7.76,24.71,1.29,7.18-6.47,7.76-17.53,1.3-24.71C24.04-1.39,12.97-1.97,5.79,4.5-1.39,10.96-1.97,22.03,4.5,29.21'/%3e%3cpath class='cls-1' d='M1.61,31.8c2.22-1.16,4.96-.88,6.92.74l-6.93-7.69c1.41,2.12,1.39,4.87.01,6.96'/%3e%3cpath class='cls-2' d='M29.75,21.35c0-.62-.49-1.11-1.11-1.11s-1.11.5-1.11,1.11.5,1.11,1.11,1.11,1.11-.49,1.11-1.11M29.52,13.51h-1.73v6.17h1.73v-6.17ZM26.89,13.51h-1.82l-.63,3.52c-.16.84-.24,1.7-.24,2.56-.05-.55-.15-1.11-.25-1.66l-.9-4.42h-1.37l-.82,3.96c-.14.7-.25,1.41-.33,2.12,0-.74-.09-1.49-.22-2.22l-.71-3.87h-1.78l1.78,8.8h1.52l.83-3.46c.23-.92.37-1.86.45-2.8.04.87.09,1.74.3,2.6.3,1.21.58,2.44.86,3.66h1.52l1.82-8.8ZM17.21,22.31v-1.62h-1.78v-1.98h1.54v-1.66h-1.54v-1.9h1.76v-1.64h-3.5v8.8h3.52ZM12.33,22.31v-8.8h-1.77v4.13c0,.4.05.79.13,1.19l-2.17-5.32h-1.65v8.8h1.74v-4.3c0-.33-.03-.67-.09-1l2.17,5.31h1.64Z'/%3e%3c/g%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 100%;
}

@media screen and (min-width: 600px), print {
  a[href^="tel:"] {
    color: #333;
    pointer-events: none;
  }
}

@media screen and (min-width: 600px) {
  .ai-md-center {
    align-items: center;
  }

  .gap-30 {
    gap: 3rem;
  }

  .ml-tablet-auto {
    margin-left: auto;
  }

  .btn-border {
    padding: 3.2rem;
    width: 46.4rem;
  }

  .ic-check {
    left: 2.5rem;
    height: 32px;
    width: 32px;
  }

  .ic-check::after {
    background-size: 32px 32px;
    height: 32px;
    width: 32px;
  }

  .ic-new-r {
    height: 4.5rem;
    width: 4.5rem;
  }

  .ic-new-r::after {
    height: 4.5rem;
    width: 4.5rem;
  }

  .newlist-text .ic-new-r {
    top: -3.2rem;
    left: -3.8rem;
  }

  .newitem_image .ic02 {
    top: 7.421%;
    left: 64.651%;
  }

  .newitem_image .ic03 {
    top: 12.89%;
    left: 79.82%;
  }
}

@media screen and (min-width: 1024px) {
  .d-pc {
    display: block;
  }

  .d-sp {
    display: none !important;
  }

  .d-tablet-sp {
    display: none !important;
  }

  .header {
    margin: 0;
  }

  .backtotop {
    bottom: 87px;
  }

  .backtotop:hover .bt-maskimg {
    bottom: 0;
    animation: bounce 1s ease-out;
  }
}

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

  .d-sp {
    display: block;
  }

  .d-tablet-sp {
    display: block;
  }

  .flex-md-column {
    flex-direction: column;
  }

  .flex-md-wrap {
    flex-wrap: wrap;
  }

  .backtotop .bt-maskimg {
    bottom: 0;
    transition: none;
  }
}

@media screen and (max-width: 767.98px) {
  .flex-sp-row {
    flex-direction: row !important;
  }

  .flex-sp-wrap {
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 599.98px) {
  body {
    font-size: 1.4rem;
  }

  .text-sp-center {
    text-align: center !important;
  }

  .flex-sp-column {
    flex-direction: column;
  }

  .jc-sp-center {
    justify-content: center !important;
  }

  .col-5 {
    max-width: 100%;
  }

  .col-3 {
    max-width: 100%;
  }

  .col-4 {
    width: 50%;
  }

  .col-10 {
    width: 100%;
    max-width: 100px;
  }

  .col-16 {
    width: 100%;
    max-width: 160px;
  }

  .col-24 {
    width: 100%;
  }

  .col-24.ml-auto {
    width: auto;
  }

  .col-42 {
    width: 100%;
  }

  .gap-15 {
    gap: 12px;
  }

  .gap-40 {
    gap: 20px;
  }

  .gap-74 {
    gap: 25px;
  }

  .main .wrapper section {
    padding-right: 1.6rem;
    padding-left: 1.6rem;
  }

  .p-20 {
    padding: 10px;
  }

  .p-30 {
    padding: 15px;
  }

  .px-sp-10 {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .pb-sp-100 {
    padding-bottom: 10rem;
  }

  .pb-sp-50 {
    padding-bottom: 5rem;
  }

  .mt-30 {
    margin-top: 15px;
  }

  .mt-50 {
    margin-top: 30px !important;
  }

  .mb-30 {
    margin-bottom: 2rem;
  }

  .mb-sp-30 {
    margin-bottom: 30px;
  }

  .mb-40 {
    margin-bottom: 20px;
  }

  .mb-50 {
    margin-bottom: 25px;
  }

  .mb-70 {
    margin-bottom: 5rem;
  }

  .mb-65 {
    margin-bottom: 50px;
  }

  .mb-80 {
    margin-bottom: 4rem;
  }

  .mb-90 {
    margin-bottom: 5rem;
  }

  .mb-100 {
    margin-bottom: 6rem;
  }

  .mb-150 {
    margin-bottom: 8rem;
  }

  .btn-border {
    font-size: 1.4rem;
  }

  .fs-18 {
    font-size: 1.6rem;
  }

  .fs-20 {
    font-size: 1.6rem;
  }

  .fs-23 {
    font-size: 1.8rem;
  }

  .fs-24 {
    font-size: 1.8rem;
  }

  .fs-25 {
    font-size: 1.8rem;
  }

  .fs-26 {
    font-size: 1.5rem;
  }

  .fs-28 {
    font-size: 1.5rem;
  }

  .fs-30 {
    font-size: 2rem;
  }

  .fs-34 {
    font-size: 1.4rem;
  }

  .fs-40 {
    font-size: 2.2rem;
  }
}

@media screen and (min-width: 600px) and (max-width: 767.98px) {
  .gap-74 {
    gap: 40px;
  }
}

@media  {
  img {
    image-rendering: -webkit-optimize-contrast;
  }
}