@charset "UTF-8";
/* parts */
.btnPrimary {
  display: inline-block;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.2;
  padding: 1em 2.5em;
  color: #fff;
  border-radius: 100vh;
  background-color: var(--color-brown-base);
}
.btnPrimary._white {
  background-color: #fff;
  color: var(--color-brown-base);
}
@media screen and (max-width: 767px) {
  .btnPrimary {
    padding: 0.75em 1.75em;
  }
}
@media (hover: hover) {
  .btnPrimary {
    transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  }
  .btnPrimary:hover {
    background-color: var(--color-orange);
  }
  .btnPrimary._white:hover {
    color: #fff;
    background-color: var(--color-brown-dark);
  }
}

.btBtn {
  text-align: center;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .btBtn {
    margin-top: 2.5rem;
  }
}

.textLink {
  text-decoration: underline;
}

@media (hover: hover) {
  .textLink {
    text-decoration: none;
  }
}
.marker {
  background: linear-gradient(transparent 60%, rgba(var(--color-orange-rgb), 0.5) 60%);
}

.pageHeader {
  position: relative;
  padding: 2.5rem 0;
  text-align: center;
  font-weight: 700;
  background-color: var(--color-brown-dark);
  overflow: hidden;
  z-index: 5;
}
.pageHeader::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  background: url("../img/common/bg_noise.jpg") repeat center center;
  z-index: 1;
  mix-blend-mode: multiply;
}
.pageHeader .pageTitle, .pageHeader .en {
  position: relative;
  z-index: 5;
}
.pageHeader .pageTitle {
  color: #fff;
}
.pageHeader .en {
  color: rgba(255, 255, 255, 0.8);
  padding-top: 0.25em;
  line-height: 1.2;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
}

.pageContents,
.innerMax {
  width: 92%;
  max-width: 1160px;
  margin: 0 auto;
}
.pageContents.narrow,
.innerMax.narrow {
  max-width: 1000px;
}

.secTitle {
  position: relative;
  padding-bottom: 0.25em;
  margin-bottom: 1em;
  letter-spacing: 0.05em;
  line-height: 1.3;
  border-bottom: 2px solid var(--color-brown-dark);
}
.secTitle::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 4em;
  background-color: var(--color-brown-base);
}

.ttlM {
  position: relative;
  padding-left: 1.25em;
  font-size: 1.5rem;
  margin-bottom: 0.5em;
  line-height: 1.3;
}
.ttlM::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 0.65em;
  height: 0.65em;
  box-sizing: border-box;
  border-radius: 0.25rem;
  background-color: var(--color-brown-gold);
}

.paginationArea {
  text-align: center;
  font-weight: 700;
}
.paginationArea .nav-links {
  position: relative;
  display: inline-block;
  padding-left: 3.5rem;
  padding-right: 3.5rem;
  font-size: 0;
}
.paginationArea .nav-links .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
  color: var(--color-brown-dark);
  background-color: #fff;
  height: 2.2em;
  width: 2.2em;
  font-size: 1.25rem;
  margin: 0.25em;
  transition: background-color 0.3s ease;
  border-radius: 0.5rem;
}
.paginationArea .nav-links .page-numbers.current {
  color: #fff;
  background-color: var(--color-orange);
  border-color: var(--color-orange);
}
.paginationArea .nav-links .page-numbers.prev, .paginationArea .nav-links .page-numbers.next {
  position: absolute;
  top: 0;
}
.paginationArea .nav-links .page-numbers.prev {
  left: 0;
}
.paginationArea .nav-links .page-numbers.next {
  right: 0;
}

.postBlock {
  padding-top: 1em;
  line-height: 2;
}
.postBlock p {
  padding-bottom: 2em;
}
.postBlock a {
  text-decoration: underline;
  color: var(--color-brown-base);
}
.postBlock .wp-block-image {
  margin-bottom: 2em;
}
.postBlock h2 {
  position: relative;
  padding-top: 1em;
  padding-bottom: 0.25em;
  margin-bottom: 1em;
  letter-spacing: 0.05em;
  line-height: 1.3;
  border-bottom: 2px solid var(--color-brown-dark);
}
.postBlock h2::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 4em;
  background-color: var(--color-brown-base);
}
.postBlock h3 {
  position: relative;
  padding-left: 1.25em;
  font-size: 1.5rem;
  margin-bottom: 0.5em;
  line-height: 1.3;
}
.postBlock h3::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 0.65em;
  height: 0.65em;
  box-sizing: border-box;
  border-radius: 0.25rem;
  background-color: var(--color-brown-gold);
}
.postBlock h4 {
  font-size: 1.25rem;
}
.postBlock h5 {
  font-size: 1rem;
}
.postBlock h6 {
  font-size: 0.85rem;
}
.postBlock ul, .postBlock ol {
  padding-left: 1.5em;
  padding-bottom: 2.5em;
}
.postBlock ul li {
  list-style: disc;
}
.postBlock ol li {
  list-style: decimal;
}
.postBlock table {
  margin-bottom: 2em;
}
.postBlock table,
.postBlock .wp-block-table {
  width: 100%;
  min-width: 240px;
  border-collapse: collapse;
}
.postBlock table thead,
.postBlock table tfoot,
.postBlock .wp-block-table thead,
.postBlock .wp-block-table tfoot {
  text-align: center;
}
.postBlock table td,
.postBlock table th,
.postBlock .wp-block-table td,
.postBlock .wp-block-table th {
  padding: 0.4em;
  border: 1px solid var(--color-brown-dark);
}
.postBlock table figcaption,
.postBlock .wp-block-table figcaption {
  color: #666;
  font-size: 0.9rem;
}
.postBlock table.is-style-stripes,
.postBlock .wp-block-table.is-style-stripes {
  border-color: rgba(var(--color-brown-base-rgb), 0.8);
}
.postBlock table.is-style-stripes th,
.postBlock table.is-style-stripes td,
.postBlock .wp-block-table.is-style-stripes th,
.postBlock .wp-block-table.is-style-stripes td {
  border-width: 0;
}
.postBlock table.is-style-stripes tbody tr:nth-child(odd),
.postBlock .wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
  background-color: rgba(var(--color-brown-base-rgb), 0.1);
}
.postBlock table.is-style-stripes .has-background tbody tr:nth-child(odd),
.postBlock .wp-block-table.is-style-stripes .has-background tbody tr:nth-child(odd) {
  background-color: rgba(var(--color-brown-base-rgb), 0.1);
}
.postBlock table.wp-calendar-table td,
.postBlock table.wp-calendar-table th {
  background: transparent;
  border: 0;
  text-align: center;
  line-height: 2;
  vertical-align: middle;
  word-break: normal;
}
.postBlock table.wp-calendar-table th {
  font-weight: bold;
}
.postBlock table.wp-calendar-table thead,
.postBlock table.wp-calendar-table tbody {
  color: currentColor;
  border: 1px solid;
}
.postBlock table.wp-calendar-table caption {
  font-weight: bold;
  text-align: left;
  margin-bottom: 0.5em;
  color: currentColor;
}
.postBlock .has-small-font-size {
  font-size: 0.75rem !important;
}
.postBlock .has-middle-font-size {
  font-size: 1rem !important;
}
.postBlock .has-large-font-size {
  font-size: 1.25rem !important;
}
.postBlock .has-larger-font-size {
  font-size: 1.5rem !important;
}
.postBlock .has-huge-font-size {
  font-size: 2rem !important;
}
.postBlock .wp-block-embed.is-type-video iframe {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  aspect-ratio: 16 / 9;
}

@media print, screen and (min-width: 768px) {
  .pageHeader {
    margin-bottom: 5rem;
  }
  .pageHeader .pageTitle {
    font-size: 2.5rem;
  }
  .pageContents {
    padding-bottom: 7.5rem;
  }
  .secTitle {
    font-size: 2rem;
  }
  .paginationArea {
    padding-top: 5rem;
  }
  .pageSec + .pageSec {
    padding-top: 5rem;
  }
  .postBlock h2 {
    font-size: 2rem;
  }
}
@media (hover: hover) {
  .paginationArea .nav-links a.page-numbers:hover {
    background-color: rgba(var(--color-brown-pale-rgb), 0.5);
  }
  .postBlock a:hover {
    text-decoration: none;
  }
}
@media screen and (max-width: 767px) {
  .pageHeader {
    margin-bottom: 8%;
    padding: 1.5rem 0;
  }
  .pageHeader .pageTitle {
    font-size: 2rem;
  }
  .pageContents {
    padding-bottom: 12%;
  }
  .paginationArea {
    padding-top: 12%;
  }
  .pageSec + .pageSec {
    padding-top: 12%;
  }
  .secTitle {
    font-size: 1.75rem;
  }
  .postBlock h2 {
    font-size: 1.75rem;
  }
}
/* postThreeClm */
.postThreeClm .item a {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 1rem;
  border: 1px solid #ddd;
  background-color: #fff;
  transition: background-color 0.3s ease-in-out;
}
.postThreeClm .item .thumb {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 1rem 1rem 0 0;
  aspect-ratio: 16 / 9;
}
.postThreeClm .item .thumb img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s linear;
}
.postThreeClm .item .info {
  padding: 1.5rem 1rem;
}
.postThreeClm .item .info .ttl {
  font-size: 1.125rem;
  line-height: 1.4;
  margin-bottom: 0.5em;
}
.postThreeClm .item .info .excerpt {
  font-size: 0.875rem;
  line-height: 2;
}
.postThreeClm .item .date {
  margin-top: auto;
  padding: 0 1rem 1.5rem;
  font-size: 0.875rem;
}
.postThreeClm .item .date > span {
  display: inline-block;
  line-height: 1.75;
  padding: 0 0.5em;
  background-color: #f2f2f2;
}
.postThreeClm .item a.movieModal .thumb::before, .postThreeClm .item a.movieModal .thumb::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}
.postThreeClm .item a.movieModal .thumb::before {
  width: 4rem;
  height: 4rem;
  background-color: #e31001;
  border: 1px solid #fff;
  border-radius: 50%;
}
.postThreeClm .item a.movieModal .thumb::after {
  width: 1.25rem;
  height: 1.5rem;
  background-color: #fff;
  -webkit-clip-path: polygon(0 100%, 0 0, 100% 50%);
          clip-path: polygon(0 100%, 0 0, 100% 50%);
  z-index: 10;
  margin-left: 0.125rem;
}
@media print, screen and (min-width: 768px) {
  .postThreeClm {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
  }
  .postThreeClm .item {
    width: calc(33.33% - 1.67rem);
    display: flex;
  }
  .postThreeClm .item > a {
    display: flex;
    width: 100%;
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .postThreeClm .item + .item {
    margin-top: 8%;
  }
}
@media (hover: hover) {
  .postThreeClm .item a:hover {
    background-color: rgba(var(--color-brown-dark-rgb), 0.05);
  }
  .postThreeClm .item a:hover .thumb img {
    transform: scale(1.1);
  }
}

/* faq-list */
.faqList {
  border-bottom: 1px solid #ddd;
  font-weight: 700;
}
.faqList i {
  font-style: normal;
  line-height: 1;
}
.faqList dt, .faqList dd {
  position: relative;
  display: flex;
  align-items: center;
}
.faqList dt {
  padding: 1.5rem 0;
  cursor: pointer;
  border-top: 1px solid #ddd;
  transition: background-color 0.3s ease;
}
.faqList dd {
  overflow: hidden;
  padding: 0 1rem 0 2.25rem;
  background-color: #f8f8f8;
  max-height: 0;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.faqList a {
  text-decoration: underline;
}
.faqList .q {
  color: var(--color-brown-dark);
  font-size: 1.5rem;
  margin-bottom: auto;
  transition: transform 0.3s ease;
}
.faqList .question {
  max-width: calc(100% - 6.5rem);
  padding: 0 0 0 1rem;
  transition: transform 0.3s ease;
}
.faqList .icon {
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  right: 1.5rem;
  top: 50%;
  margin-top: -0.75rem;
}
.faqList .icon::before, .faqList .icon::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 2px;
  background-color: #707070;
}
.faqList .icon::before {
  transform: rotate(90deg);
  transition: opacity 0.5s ease, transform 0.3s ease;
}
.faqList .a {
  color: var(--color-orange);
  font-size: 2.25rem;
  margin-bottom: auto;
}
.faqList .answer {
  max-width: calc(100% - 2.25rem);
  padding: 0 0 0 1rem;
}
.faqList dt.active .icon::before {
  transform: rotate(180deg);
  opacity: 0;
}
.faqList dt.active + dd {
  max-height: none;
  opacity: 1;
  visibility: visible;
  padding: 1rem 1rem 1rem 2.25rem;
}
@media (hover: hover) {
  .faqList dt:hover {
    background-color: rgba(var(--color-brown-base-rgb), 0.16);
  }
  .faqList dt:hover .q, .faqList dt:hover .question {
    transform: translateX(1rem);
  }
  .faqList a:hover {
    text-decoration: none;
  }
}
@media screen and (max-width: 767px) {
  .faqList dd,
  .faqList dt.active + dd {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .faqList .icon {
    width: 1.2rem;
    height: 1.2rem;
    right: 0.5rem;
    margin-top: -0.6rem;
  }
  .faqList .question {
    max-width: calc(100% - 4rem);
  }
}

/* price-list */
.priceList > .item {
  position: relative;
  padding: 3rem 1rem 1rem;
  border-radius: 1rem;
  background-color: #fff;
}
.priceList > .item::before {
  content: "";
  display: block;
  position: absolute;
  left: 1rem;
  top: -0.375rem;
  width: 2rem;
  height: 2.25rem;
  background-color: var(--color-brown-base);
  -webkit-clip-path: polygon(100% 0%, 100% 100%, 50% 70%, 0 100%, 0 0);
          clip-path: polygon(100% 0%, 100% 100%, 50% 70%, 0 100%, 0 0);
}
.priceList > .item:first-of-type::before {
  background: linear-gradient(105deg, #8c4405 0%, #ba6d0f 30%, #f0bb72 50%, #ba6d0f 75%, #8c4405 90%);
}
.priceList > .item:nth-of-type(2)::before {
  background: linear-gradient(105deg, #757575 0%, #9e9e9e 30%, #e2e2e2 50%, #9e9e9e 75%, #757575 90%);
}
.priceList > .item:nth-of-type(3)::before {
  background: linear-gradient(105deg, #b67b03 0%, #e4b90c 30%, #ffedab 50%, #e4b90c 75%, #b67b03 90%);
}
.priceList .planTtl {
  margin-bottom: 1em;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.4;
}
.priceList .planTtl._bg {
  position: relative;
  text-align: center;
  padding: 0.5rem 0.25rem;
  color: #fff;
  background-color: var(--color-brown-gold);
  border-radius: 0.5rem;
}
.priceList .planTtl._bg::after {
  content: "";
  display: block;
  position: absolute;
  width: 0.75em;
  height: 0.5em;
  top: calc(100% - 1px);
  left: calc(50% - 0.5em);
  background-color: var(--color-brown-gold);
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
}
.priceList .planImg {
  max-width: 160px;
  margin: 0 auto 0.5rem;
}
.priceList .planSet {
  text-align: center;
  padding: 0.25em 1em;
  margin-bottom: 1rem;
  color: #fff;
  font-weight: 700;
  border-radius: 0.5rem;
  background-color: var(--color-brown-gold);
}
.priceList .planSet._line {
  font-size: 1.125rem;
  color: var(--color-brown-gold);
  background-color: transparent;
  border: 1px solid currentColor;
}
.priceList .planFor {
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 700;
}
.priceList .planPrice {
  padding: 0.25rem 0;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  border-top: 1px solid var(--color-brown-gold);
  border-bottom: 1px solid var(--color-brown-gold);
}
.priceList .planPrice strong {
  font-size: 3rem;
  display: inline-block;
  vertical-align: baseline;
}
.priceList .planPriceNote {
  padding: 0.25em 0;
  font-size: 0.875rem;
  text-align: center;
}
.priceList .planPriceNote strong {
  font-size: 171.4%;
}
.priceList .planDetail {
  margin-top: 1rem;
  border-top: 1px dotted #ccc;
}
.priceList .planDetail > li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dotted #ccc;
  padding: 0.25rem;
  font-size: 0.9375rem;
  line-height: 1.3;
}
.priceList .planDetail > li .right {
  flex-shrink: 0;
  width: 1.5em;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  color: var(--color-brown-gold);
}
.priceList .planOption {
  margin-top: 1.5rem;
  padding: 0.25rem 0.5rem;
  background-color: #f8f8f8;
  border-radius: 0.5rem;
}
.priceList .planOption .ttl {
  font-size: 1.125rem;
}
.priceList .planOption .unit {
  font-size: 0.875rem;
}
.priceList .planOptionList {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.4;
  margin-top: 0.5rem;
}
.priceList .planOptionList > li {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 0.25rem 0.25rem 0.25rem 1.5rem;
}
.priceList .planOptionList > li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0.25rem;
  width: 1.2em;
  height: 1.2em;
  background: url("../img/common/icon_check.svg") no-repeat center center;
  background-size: 100% auto;
}
.priceList .planOptionList > li .right {
  font-weight: 700;
  flex-shrink: 0;
  text-align: right;
}
.priceList .planDiscount {
  text-align: center;
  font-weight: 700;
  line-height: 1.2;
}
.priceList .planDiscount strong {
  display: inline-block;
  vertical-align: baseline;
}
.priceList .planDiscount .original strong {
  font-size: 2rem;
}
.priceList .planDiscount .discount {
  position: relative;
  padding-top: 0.75rem;
  font-size: 1.25rem;
}
.priceList .planDiscount .discount::before {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1rem;
  margin: 0 auto 1rem;
  background-color: var(--color-brown-dark);
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
}
.priceList .planDiscount .discount .main {
  display: block;
  margin-top: 0.25rem;
}
.priceList .planDiscount .discount strong {
  font-size: 3.5rem;
}
.priceList .planNote {
  margin-top: 1rem;
  padding: 0.75rem 0.5rem;
  text-align: center;
  font-weight: 700;
  line-height: 1.4;
  background-color: rgba(var(--color-brown-pale-rgb), 0.25);
  border-radius: 0.5rem;
}
.priceList._short > .item {
  padding-bottom: 0;
}
.priceList._short > .item::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4rem;
  background: #f8f5e5;
  background: linear-gradient(0deg, rgb(248, 245, 229) 0%, rgba(248, 245, 229, 0) 100%);
  z-index: 10;
}
.priceList._border > .item {
  border: 1px solid #ddd;
}
.priceList._border .planDetail > li {
  font-weight: 700;
}
.priceList._border .planDetail > li .right {
  font-size: 1.75rem;
}
.priceList._noRibon > .item {
  padding-top: 1rem;
}
.priceList._noRibon > .item::before {
  display: none;
}
.priceList._noRibon .planPrice strong,
.priceList._noRibon .planDiscount strong {
  margin: 0 0.25rem;
}
.priceList._noRibon .planPrice strong,
.priceList._noRibon .planDiscount .discount strong {
  color: #c00;
}
@media print, screen and (min-width: 1001px) {
  .priceList {
    display: flex;
    flex-wrap: wrap;
    margin: -1.25rem 0 0 -1.25rem;
  }
  .priceList > .item {
    margin: 1.25rem 0 0 1.25rem;
    width: calc(33.33% - 1.25rem);
  }
}
@media screen and (max-width: 1000px) {
  .priceList {
    max-width: 640px;
    margin: 0 auto;
  }
  .priceList > .item + .item {
    margin-top: 3rem;
  }
  .priceList .planDetail > li {
    font-size: 1rem;
  }
  .priceList .planDetail > li .right {
    font-size: 1.75rem;
  }
}

.priceNote {
  margin-top: 2rem;
  font-size: 0.875rem;
}
.priceNote > li {
  padding-left: 1em;
  text-indent: -1em;
  margin-bottom: 0.25em;
}

/* index */
#indexMv {
  position: relative;
  overflow: hidden;
  text-align: center;
}
#indexMv .link {
  display: block;
}
#indexMv .mvCont {
  position: relative;
}
#indexMv .mvCont .mvImgs {
  position: relative;
  pointer-events: none;
  z-index: 1;
}
#indexMv .mvCont .mvImgs .img {
  transition: opacity 1s ease-in-out;
}
#indexMv .mvCont .mvImgs .img:not(.active) {
  opacity: 0;
}
#indexMv .mvCont .mvImgs .img:nth-child(n+2) {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
#indexMv .mvCont .mvImgs img {
  pointer-events: none;
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#indexMv .mvCont .hoverCont {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 68%;
  max-width: 680px;
  height: 100%;
  top: 0;
  z-index: 15;
  font-weight: 700;
  filter: drop-shadow(0 0 0.25rem #fff) drop-shadow(0 0 0.25rem #fff);
}
#indexMv .mvCont .hoverCont .sub, #indexMv .mvCont .hoverCont .main {
  line-height: 1.3;
}
#indexMv .mvCont .hoverCont .main {
  margin-top: 1rem;
}
#indexMv .mvCont .hoverCont .main strong {
  font-size: 150%;
  color: var(--color-brown-base);
  display: inline-block;
}
#indexMv .mvCont .hoverCont .sub .l {
  font-size: 172%;
  display: inline-block;
}
#indexMv .mvCont .hoverCont .moreBtn {
  margin-top: 2rem;
}
#indexMv .mvCont .hoverCont .moreBtn .btn {
  display: block;
  padding: 0.65em 1em;
  line-height: 1.3;
  color: #fff;
  border-radius: 100vh;
  background: var(--color-brown-dark);
  background: linear-gradient(0deg, rgb(80, 55, 23) 0%, rgb(194, 157, 42) 100%);
}

@media print, screen and (min-width: 1001px) {
  #indexMv {
    display: flex;
  }
  #indexMv .mvHeading {
    position: absolute;
    pointer-events: none;
    left: 50%;
    top: 50%;
    z-index: 50;
    font-weight: 700;
    font-size: 4.25rem;
    font-size: min(5.67vw, 4.25rem);
    color: #fff;
    line-height: 1.3;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    border: 1px solid #fff;
    border-radius: 1rem;
    padding: 0.75em 1.5em;
    white-space: nowrap;
  }
  #indexMv .mvCont {
    width: 50%;
    cursor: pointer;
    transition: width 0.5s ease-in-out;
  }
  #indexMv .mvCont::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.4);
    transition: width 0.5s ease-in-out, opacity 0.3s ease-in-out;
    pointer-events: none;
    z-index: 3;
  }
  #indexMv .mvCont .mvImgs img {
    height: 700px;
  }
  #indexMv .mvCont .hoverImg {
    position: absolute;
    bottom: 0;
    width: 490px;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transform: translateY(25%);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  }
  #indexMv .mvCont .hoverCont {
    height: 90%;
    width: 48vw;
    padding-top: 5rem;
    transition: opacity 0.3s ease-in-out;
  }
  #indexMv .mvCont .hoverCont .sub, #indexMv .mvCont .hoverCont .main {
    font-size: 2.25rem;
    font-size: min(2.75vw,2.25rem);
  }
  #indexMv .mvCont._left .hoverCont {
    right: 0;
  }
  #indexMv .mvCont._left .hoverImg {
    left: 24%;
    margin-left: -245px;
  }
  #indexMv .mvCont._right .hoverCont {
    left: 0;
  }
  #indexMv .mvCont._right .hoverImg {
    right: 24%;
    margin-right: -245px;
  }
  #indexMv .mvCont .moreBtn {
    font-size: 1.125rem;
    font-size: min(1.5vw,1.125rem);
  }
  #indexMv.hover .mvHeading, #indexMv.active .mvHeading {
    opacity: 0;
    visibility: hidden;
  }
  #indexMv.hover .mvCont, #indexMv.active .mvCont {
    width: 25%;
  }
  #indexMv.hover .mvCont::before, #indexMv.active .mvCont::before {
    opacity: 1;
  }
  #indexMv.hover .mvCont .hoverCont, #indexMv.active .mvCont .hoverCont {
    opacity: 0;
  }
  #indexMv.hover .mvCont.hover, #indexMv.hover .mvCont.active, #indexMv.active .mvCont.hover, #indexMv.active .mvCont.active {
    width: 75%;
  }
  #indexMv.hover .mvCont.hover::before, #indexMv.hover .mvCont.active::before, #indexMv.active .mvCont.hover::before, #indexMv.active .mvCont.active::before {
    opacity: 0;
  }
  #indexMv.hover .mvCont.hover .more, #indexMv.hover .mvCont.active .more, #indexMv.active .mvCont.hover .more, #indexMv.active .mvCont.active .more {
    display: none;
  }
  #indexMv.hover .mvCont.hover .hoverCont, #indexMv.hover .mvCont.active .hoverCont, #indexMv.active .mvCont.hover .hoverCont, #indexMv.active .mvCont.active .hoverCont {
    opacity: 1;
  }
  #indexMv.hover .mvCont.hover .hoverImg, #indexMv.hover .mvCont.active .hoverImg, #indexMv.active .mvCont.hover .hoverImg, #indexMv.active .mvCont.active .hoverImg {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s 0.3s ease-in-out, transform 0.3s 0.3s ease-in-out;
  }
}
@media screen and (max-width: 1000px) {
  #indexMv .mvHeading {
    display: none;
  }
  #indexMv .mvCont + .mvCont {
    margin-top: 1rem;
  }
  #indexMv .mvCont::before {
    content: "";
    display: block;
    position: absolute;
    width: 75%;
    height: 100%;
    z-index: 6;
  }
  #indexMv .mvCont .mvImgs img {
    aspect-ratio: 3 / 2;
  }
  #indexMv .mvCont .hoverCont .sub, #indexMv .mvCont .hoverCont .main {
    font-size: 1.25rem;
    font-size: min(4.53vw, 2.25rem);
  }
  #indexMv .mvCont .hoverCont .moreBtn {
    margin-top: 1.25rem;
  }
  #indexMv .mvCont .hoverCont .moreBtn .btn > span {
    display: block;
  }
  #indexMv .mvCont .hoverImg {
    position: absolute;
    bottom: 0;
    width: 40%;
    z-index: 10;
    pointer-events: none;
  }
  #indexMv .mvCont._left::before {
    right: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.75) 100%);
  }
  #indexMv .mvCont._left .hoverCont {
    right: 2%;
  }
  #indexMv .mvCont._left .hoverImg {
    left: -8%;
  }
  #indexMv .mvCont._right::before {
    left: 0;
    background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.75) 100%);
  }
  #indexMv .mvCont._right .hoverCont {
    left: 2%;
  }
  #indexMv .mvCont._right .hoverImg {
    right: -8%;
  }
}
@media (hover: hover) {
  #indexMv .link {
    pointer-events: none;
  }
  #indexMv.hover .link, #indexMv.active .link {
    pointer-events: auto;
  }
}
.topTtl {
  font-size: 2rem;
  margin-bottom: 0.5em;
}
.topTtl._bold {
  font-size: 2.15rem;
  text-shadow: 0 0 0.5px currentColor, 0 0 0.5px currentColor, 0 0 0.5px currentColor, 0 0 0.5px currentColor, 0 0 0.5px currentColor, 0 0 0.5px currentColor;
}

.ttlReason {
  width: 92%;
  max-width: 1160px;
  margin: 0 auto;
  font-size: 2.5rem;
  font-size: min(4vw, 2.5rem);
  line-height: 1.2;
  font-feature-settings: "palt";
  letter-spacing: 0.04em;
}
.ttlReason::after {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.25rem;
  margin-left: 2rem;
  margin-top: -1px;
  background-color: #ff6e00;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
}
.ttlReason > span {
  display: inline-block;
  padding: 0.5em 0.75em;
  color: #fff;
  background-color: #ff6e00;
  border-radius: 0.5rem;
}
@media screen and (max-width: 767px) {
  .ttlReason {
    font-size: 1.6735rem;
  }
  .ttlReason::after {
    margin-left: 1.375rem;
  }
  .ttlReason > span {
    display: block;
    text-align: center;
    padding: 0.5em;
  }
}

.topAbout {
  max-width: 1160px;
  margin: 5rem auto 0;
  text-align: center;
}
.topAbout .subTtl {
  display: block;
  margin-bottom: 0.25em;
  font-size: 1.5rem;
  font-weight: 700;
}
.topAbout .comments {
  font-weight: 700;
  line-height: 1.75;
}
.topAbout .comments > li {
  position: relative;
  border-radius: 0.5rem;
  background-color: #f0ebdb;
  box-shadow: 0.25rem 0.25rem 0 rgba(0, 0, 0, 0.032);
  text-align: left;
}
.topAbout .videoFrame {
  position: relative;
}
.topAbout .videoFrame .frame {
  position: relative;
  pointer-events: none;
  z-index: 5;
}
.topAbout .videoFrame .video {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 63.8%;
  top: 0;
  left: 18.1%;
  margin-top: 1.465%;
  background-color: #101010;
  aspect-ratio: 740 / 556;
}
.topAbout .videoFrame .video video, .topAbout .videoFrame .video iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}

.topProblem {
  position: relative;
  text-align: center;
  background-color: rgba(var(--color-brown-base-rgb), 0.4);
  z-index: 5;
}
.topProblem::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.32;
  background: url("../img/common/bg_noise.jpg") repeat center center;
  z-index: -1;
}
.topProblem .problemHeading {
  padding: 4.5rem 4%;
}
.topProblem .problemHeading .topTtl > span {
  background: linear-gradient(transparent 50%, #f8f5e5 50%);
}
.topProblem .problemHeading .lead {
  line-height: 2;
}
.topProblem .problemFlow {
  position: relative;
  padding: 3.75rem 4%;
}
.topProblem .problemFlow::after {
  content: "";
  display: block;
  position: absolute;
  width: 4rem;
  height: 2rem;
  top: calc(100% - 1px);
  left: calc(50% - 2rem);
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
}
.topProblem .problemFlow .ttl {
  margin-bottom: 0.75em;
  font-size: 2.25rem;
  line-height: 1.3;
  color: #fff;
}
.topProblem .problemFlow._flow1 {
  background-color: var(--color-brown-base);
  z-index: 30;
}
.topProblem .problemFlow._flow1::after {
  background-color: var(--color-brown-base);
}
.topProblem .problemFlow._flow2 {
  background-color: var(--color-brown-gold);
  padding-top: 6rem;
  z-index: 20;
}
.topProblem .problemFlow._flow2::after {
  background-color: var(--color-brown-gold);
}
.topProblem .problemFlow._flow3 {
  background-color: var(--color-brown-pale);
  padding-top: 6rem;
  z-index: 10;
}
.topProblem .problemFlow._flow3::after {
  background-color: var(--color-brown-pale);
}
.topProblem .problemFlow._flow3 .ttl {
  color: var(--color-brown-dark);
}
.topProblem .problemFlow .problemComments {
  max-width: 1160px;
  margin: 0 auto;
}
.topProblem .problemFlow .problemComments .list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  border-radius: 1.5rem;
  padding: 1rem;
  background-color: #f8f5e5;
  text-align: left;
}
.topProblem .problemFlow .problemComments .list::before {
  content: "";
  display: block;
  position: absolute;
  background-color: #f8f5e5;
}
.topProblem .problemFlow .problemComments .list > li {
  position: relative;
  width: calc(50% - 0.5rem);
  padding: 1em 1em 1em 3em;
  font-weight: 700;
  border-radius: 1em;
  background-color: #fff;
}
.topProblem .problemFlow .problemComments .list > li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0.75em;
  top: 0.75em;
  width: 2em;
  height: 2em;
  background: url("../img/common/icon_check.svg") no-repeat center center;
  background-size: 100% auto;
}
.topProblem .problemSolve {
  padding: 4rem 0 3rem;
  color: #fff;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.4;
  background-color: var(--color-orange);
}
.topProblem .problemSolve p + p {
  font-size: 75%;
}

.topFeature {
  margin: 6.25rem 0 0;
}
.topFeature .featureInfo .text {
  padding: 4%;
  box-shadow: 0 0 1rem rgba(var(--color-brown-dark-rgb), 0.16);
  border-radius: 1rem;
  background-color: #fff;
}
.topFeature .featureSubTtl {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-brown-gold);
  text-align: center;
}
.topFeature .solveList {
  font-weight: 700;
  line-height: 2;
}
.topFeature .solveList > li {
  padding-left: 1em;
  text-indent: -1em;
}
.topFeature .featureSolve {
  width: 92%;
  max-width: 1160px;
  margin: 0 auto;
}
.topFeature .featureSolve .ttl {
  position: relative;
}
.topFeature .featureSolve .ttl::after {
  content: "";
  display: block;
  background-color: var(--color-brown-pale);
}
.topFeature .featureSolve .solve {
  position: relative;
  padding: 1.5rem 1rem 1rem;
  border-radius: 1rem;
  background-color: #f8f5e5;
}
.topFeature .featureSolve .solve .featureSubTtl {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
}
.topFeature .featureSolve .solve .list {
  font-weight: 700;
  line-height: 2;
}
.topFeature .featureSolve .solve .list > li {
  padding-left: 1em;
  text-indent: -1em;
}
.topFeature .featureTranslate {
  width: 92%;
  max-width: 1160px;
  margin: 0 auto;
}
.topFeature .featureTranslate .list .number {
  position: relative;
  width: 12.5rem;
  z-index: 5;
}
.topFeature .featureTranslate .list .number .main {
  display: flex;
  align-items: center;
  color: #fff;
  padding: 0.625rem;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 0.5rem;
  background-color: var(--color-brown-base);
}
.topFeature .featureTranslate .list .number .num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  font-size: 2rem;
  border-radius: 0.5rem;
  background-color: var(--color-brown-dark);
  margin-right: 0.375rem;
}
.topFeature .featureTranslate .list .number .illust {
  display: block;
  margin-top: 0.625rem;
  height: 7rem;
  background: url("../img/common/illust_feature_l.svg") no-repeat center bottom;
  background-size: contain;
}
.topFeature .featureTranslate .list .text {
  position: relative;
  z-index: 1;
  border-radius: 1rem;
  background-color: #fff;
  filter: drop-shadow(0 0 0.5rem rgba(var(--color-brown-dark-rgb), 0.16));
}
.topFeature .featureTranslate .list .text::before {
  content: "";
  display: block;
  position: absolute;
  background-color: #fff;
}
.topFeature .featureMovie {
  text-align: center;
  margin-top: 2rem;
}
.topFeature .featureMovie .ttl {
  font-size: 1.5rem;
  line-height: 1.3;
}
.topFeature .featureMovie .ttl::after {
  content: "";
  display: block;
  margin: 1rem auto;
  width: 2rem;
  height: 1rem;
  background-color: var(--color-brown-dark);
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
}
.topFeature .featureMovie .movieArea {
  background-color: #f8f5e5;
}
.topFeature .featureMovie .movieArea .movieFrame {
  max-width: 780px;
  margin: 0 auto;
}
.topFeature .featureMovie .movieArea .movieFrame iframe, .topFeature .featureMovie .movieArea .movieFrame video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}

.topSec {
  padding: 6.25rem 0;
}
.topSec._borderTop {
  border-top: 1px solid #ddd;
}
.topSec .topTtl {
  text-align: center;
}
.topSec .topLead {
  width: 92%;
  margin: 0 auto 3rem;
  text-align: center;
}

.topAdvantages > li + li {
  margin-top: 2rem;
}
.topAdvantages .ttl {
  padding: 0.5rem 4%;
  background-color: #f8f5e5;
}
.topAdvantages .ttlInner {
  display: flex;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
}
.topAdvantages .ttl .num {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  color: #fff;
  background-color: #ff6e00;
  border-radius: 50%;
  font-size: 2.25rem;
  line-height: 1;
  font-weight: 700;
}
.topAdvantages .ttl .num small {
  display: block;
  font-size: 0.75rem;
}
.topAdvantages .ttl .main {
  font-size: 2rem;
  font-size: min(2.75vw, 2rem);
  color: var(--color-brown-base);
  padding-left: 1.25rem;
}
.topAdvantages .adv .text {
  line-height: 1.8;
}

@media print, screen and (min-width: 768px) {
  .topAbout {
    width: 92%;
  }
  .topAbout .comments {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 1rem;
    margin: 2rem 0 2.5rem;
  }
  .topAbout .comments > li {
    padding: 1.5rem 2.375rem;
  }
  .topAbout .comments > li::before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 100%;
    width: 2px;
    height: 2rem;
    background-color: rgba(var(--color-brown-dark-rgb), 0.5);
  }
  .topAbout .comments > li:nth-of-type(odd)::before {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  .topAbout .comments > li:nth-of-type(even)::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .topProblem .problemFlow .problemComments {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  .topProblem .problemFlow .problemComments .list {
    width: 75%;
  }
  .topProblem .problemFlow .problemComments .list::before {
    width: 1.5rem;
    height: 1.5rem;
    bottom: 5rem;
    right: calc(100% - 1px);
    -webkit-clip-path: polygon(100% 100%, 100% 0, 0 50%);
            clip-path: polygon(100% 100%, 100% 0, 0 50%);
  }
  .topProblem .problemFlow .problemComments .illust {
    width: 22%;
  }
  .topProblem .problemFlow:nth-of-type(odd) .problemComments {
    flex-direction: row-reverse;
  }
  .topProblem .problemFlow:nth-of-type(odd) .problemComments .list::before {
    right: auto;
    left: calc(100% - 1px);
    -webkit-clip-path: polygon(0 100%, 0 0, 100% 50%);
            clip-path: polygon(0 100%, 0 0, 100% 50%);
  }
  .topFeature + .topFeature {
    margin-top: 10rem;
  }
  .topFeature .featureInfo {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    padding: 0 4%;
    margin-bottom: 5rem;
  }
  .topFeature .featureInfo .img {
    position: relative;
    width: 59.345%;
    margin: 0 -4.345% 0 -5%;
    z-index: 1;
  }
  .topFeature .featureInfo .text {
    position: relative;
    padding: 2rem;
    border-radius: 2rem;
    width: 58%;
    margin-right: -8%;
    z-index: 5;
  }
  .topFeature .featureInfo .ttl {
    margin-bottom: 0.5em;
    font-size: 2rem;
    font-size: min(2.4vw,2rem);
  }
  .topFeature .featureInfo + .featureInfo {
    padding-top: 5rem;
  }
  .topFeature .featureInfo._rev {
    flex-direction: row;
  }
  .topFeature .featureInfo._rev .img {
    margin: 0 -5% 0 -4.345%;
  }
  .topFeature .featureInfo._rev .text {
    margin-right: 0;
    margin-left: -8%;
  }
  .topFeature .featureSolve {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
  .topFeature .featureSolve .ttl {
    width: 35%;
    padding-right: 5rem;
  }
  .topFeature .featureSolve .ttl::after {
    position: absolute;
    right: 0;
    top: calc(50% - 2.5rem);
    width: 2rem;
    height: 5rem;
    -webkit-clip-path: polygon(0 100%, 0 0, 100% 50%);
            clip-path: polygon(0 100%, 0 0, 100% 50%);
  }
  .topFeature .featureSolve .solve {
    width: calc(65% - 5rem);
    border-radius: 2rem;
    text-align: center;
  }
  .topFeature .featureSolve .solve .list {
    display: inline-block;
    text-align: left;
    font-size: 1.125rem;
  }
  .topFeature .featureTranslate .list > li {
    display: flex;
    align-items: flex-start;
  }
  .topFeature .featureTranslate .list > li + li {
    margin-top: 1.875rem;
  }
  .topFeature .featureTranslate .list .number {
    flex-shrink: 0;
  }
  .topFeature .featureTranslate .list .text {
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: calc(100% - 11.25rem);
    margin-top: 2.125rem;
    padding: 1rem 2.5rem;
    margin-left: -0.75rem;
    min-height: 9.75rem;
  }
  .topFeature .featureTranslate .list .text::before {
    width: 2rem;
    height: 1rem;
    -webkit-clip-path: polygon(100% 100%, 100% 0, 0 50%);
            clip-path: polygon(100% 100%, 100% 0, 0 50%);
    right: 100%;
    bottom: 2rem;
    margin: 0 -1px 0 0;
  }
  .topFeature .featureTranslate .list > li:nth-of-type(even) {
    flex-direction: row-reverse;
  }
  .topFeature .featureTranslate .list > li:nth-of-type(even) .number .illust {
    background-image: url("../img/common/illust_feature_r.svg");
  }
  .topFeature .featureTranslate .list > li:nth-of-type(even) .text {
    margin-left: 0;
    margin-right: -0.75rem;
  }
  .topFeature .featureTranslate .list > li:nth-of-type(even) .text::before {
    right: auto;
    left: 100%;
    -webkit-clip-path: polygon(0 100%, 0 0, 100% 50%);
            clip-path: polygon(0 100%, 0 0, 100% 50%);
    margin: 0 0 0 -1px;
  }
  .topAdvantages .adv {
    display: flex;
    align-items: center;
  }
  .topAdvantages .adv .img, .topAdvantages .adv .text {
    width: 50%;
  }
  .topAdvantages .adv .text > div {
    width: calc(100% - 2.5rem);
    max-width: 580px;
    padding: 1.5rem 0 1.5rem 2.5rem;
  }
  .topAdvantages > li:nth-of-type(even) .adv {
    flex-direction: row-reverse;
  }
  .topAdvantages > li:nth-of-type(even) .adv .text > div {
    margin-left: auto;
    padding: 1.5rem 2.5rem 1.5rem 0;
  }
}
@media (min-width: 1300px) {
  .topFeature .featureInfo .text {
    padding: 3rem;
    width: 696px;
    margin-right: -116px;
  }
}
@media screen and (max-width: 767px) {
  .topTtl {
    font-size: 1.5rem;
  }
  .topAbout {
    overflow: hidden;
    margin-top: 3rem;
  }
  .topAbout .subTtl {
    font-size: 1.25rem;
  }
  .topAbout .comments {
    width: 92%;
    margin: 0 auto 1rem;
  }
  .topAbout .comments > li {
    padding: 1rem 1.25rem;
  }
  .topAbout .comments > li + li {
    margin-top: 0.75rem;
  }
  .topAbout .videoFrame {
    width: 130%;
    margin-left: -15%;
  }
  .topProblem .problemHeading {
    padding: 3rem 4%;
  }
  .topProblem .problemHeading .lead {
    text-align: left;
  }
  .topProblem .problemFlow {
    padding: 2.5rem 4%;
  }
  .topProblem .problemFlow._flow2, .topProblem .problemFlow._flow3 {
    padding-top: 3rem;
  }
  .topProblem .problemFlow .ttl {
    font-size: 1.75rem;
  }
  .topProblem .problemFlow .problemComments .list {
    padding: 0.5rem;
    gap: 0.5rem;
  }
  .topProblem .problemFlow .problemComments .list > li {
    width: 100%;
  }
  .topProblem .problemFlow .problemComments .illust {
    width: 48%;
    margin: 0 auto -2%;
  }
  .topProblem .problemSolve {
    padding: 3rem 0 2rem;
    font-size: 2.25rem;
  }
  .topFeature {
    margin: 3.5rem 0 0;
  }
  .topFeature + .topFeature {
    margin-top: 6rem;
  }
  .topFeature .featureInfo {
    margin-bottom: 2.5rem;
  }
  .topFeature .featureInfo .img {
    margin-bottom: -1.5rem;
  }
  .topFeature .featureInfo .text {
    position: relative;
    width: 92%;
    padding: 1.5rem;
    margin: 0 auto;
    z-index: 5;
  }
  .topFeature .featureInfo .ttl {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
  }
  .topFeature .featureSolve .ttl {
    width: 80%;
    margin: 0 auto;
    padding-bottom: 1rem;
  }
  .topFeature .featureSolve .ttl::after {
    margin: 1rem auto;
    width: 3rem;
    height: 1.5rem;
    -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
            clip-path: polygon(50% 100%, 0 0, 100% 0);
  }
  .topFeature .featureTranslate .list > li + li {
    margin-top: 2rem;
  }
  .topFeature .featureTranslate .list .number {
    margin: 0 0 -1rem;
  }
  .topFeature .featureTranslate .list .text {
    padding: 1rem;
    z-index: 10;
  }
  .topFeature .featureTranslate .list .text::before {
    display: none;
  }
  .topFeature .featureMovie .ttl {
    font-size: 1.25rem;
  }
  .topSec {
    padding: 3.5rem 0;
  }
  .topSec .topLead {
    text-align: left;
    margin-bottom: 2rem;
  }
  .topAdvantages .ttl .num {
    width: 4rem;
    height: 4rem;
    font-size: 1.75rem;
  }
  .topAdvantages .ttl .num small {
    font-size: 0.6rem;
  }
  .topAdvantages .ttl .main {
    font-size: 1.35rem;
    padding-left: 1rem;
    line-height: 1.4;
  }
  .topAdvantages .adv .text {
    padding: 1rem 4% 0;
  }
}
.topSecFlow {
  overflow: hidden;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .topSecFlow .innerMax {
    width: calc(100% - 8rem);
    max-width: 92%;
  }
}
@media screen and (max-width: 767px) {
  .topSecFlow .innerMax {
    width: calc(100% - 3rem);
    max-width: 92%;
  }
}

.topFlow {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  padding-top: 1.5rem;
}
.topFlow .item {
  position: relative;
  padding: 1rem;
  border-radius: 1rem;
  background-color: #fff;
  box-shadow: 0 0 0.5rem rgba(var(--color-brown-dark-rgb), 0.16);
  font-weight: 700;
}
.topFlow .item::before, .topFlow .item::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 0.5rem);
  height: 1rem;
  background-color: var(--color-brown-pale);
}
.topFlow .item::before {
  right: 100%;
}
.topFlow .item::after {
  left: 100%;
}
.topFlow .item:first-of-type::before {
  display: none;
}
.topFlow .item:last-of-type::after {
  display: none;
}
.topFlow .item .caption {
  display: block;
  margin-top: 0.5em;
  line-height: 1.2;
}
.topFlow .line {
  width: 100%;
  position: relative;
  height: 1rem;
  margin: 2.5rem 0 0;
  background-color: var(--color-brown-pale);
}
@media (min-width: 768px) and (max-width: 1199px) {
  .topFlow {
    margin: -2.5rem 0 0 -2.5rem;
  }
  .topFlow .item {
    width: calc(25% - 2.5rem);
    margin: 2.5rem 0 0 2.5rem;
  }
  .topFlow .item::before, .topFlow .item::after {
    width: 2.5rem;
  }
  .topFlow .item:nth-of-type(4n)::after {
    height: calc(50% + 3.5rem);
    background-color: transparent;
    border-right: 1rem solid var(--color-brown-pale);
    border-top: 1rem solid var(--color-brown-pale);
  }
  .topFlow .item:nth-of-type(4n+1)::before {
    height: calc(50% + 3.5rem);
    background-color: transparent;
    border-left: 1rem solid var(--color-brown-pale);
    border-bottom: 1rem solid var(--color-brown-pale);
    top: -3rem;
  }
  .topFlow .line {
    width: calc(100% + 2.5rem);
    margin-right: -2.5rem;
  }
  .topFlow .line._lg, .topFlow .line._sp {
    display: none;
  }
}
@media (min-width: 1200px) {
  .topFlow {
    margin: -2.5rem 0 0 0;
    padding-right: 2.5rem;
    font-size: 1.125rem;
  }
  .topFlow .item {
    width: calc(20% - 2.5rem);
    margin: 2.5rem 0 0 2.5rem;
  }
  .topFlow .item::before, .topFlow .item::after {
    width: 2.5rem;
  }
  .topFlow .item:first-of-type {
    margin-left: 0;
  }
  .topFlow .item:nth-of-type(5n)::after {
    height: calc(50% + 3.5rem);
    background-color: transparent;
    border-right: 1rem solid var(--color-brown-pale);
    border-top: 1rem solid var(--color-brown-pale);
  }
  .topFlow .item:nth-of-type(5n+1)::before {
    height: calc(50% + 3.5rem);
    background-color: transparent;
    border-left: 1rem solid var(--color-brown-pale);
    border-bottom: 1rem solid var(--color-brown-pale);
    top: -3rem;
  }
  .topFlow .line._pc, .topFlow .line._sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .topFlow {
    margin: -1rem 0 0 -1rem;
    padding-right: 0;
    font-size: 0.9375rem;
  }
  .topFlow .item {
    width: calc(33.33% - 1rem);
    padding: 1rem 0.75rem;
    margin: 1rem 0 0 1rem;
  }
  .topFlow .item::before, .topFlow .item::after {
    width: 1rem;
    height: 0.5rem;
    top: calc(50% - 0.25rem);
  }
  .topFlow .item:nth-of-type(3n)::after {
    height: calc(50% + 1.25rem);
    background-color: transparent;
    border-right: 0.5rem solid var(--color-brown-pale);
    border-top: 0.5rem solid var(--color-brown-pale);
  }
  .topFlow .item:nth-of-type(3n+1)::before {
    height: calc(50% + 1.25rem);
    background-color: transparent;
    border-left: 0.5rem solid var(--color-brown-pale);
    border-bottom: 0.5rem solid var(--color-brown-pale);
    top: -1.5rem;
  }
  .topFlow .line {
    width: calc(100% + 1.5rem);
    margin-right: -1rem;
    margin-top: 1rem;
    height: 0.5rem;
  }
  .topFlow .line._lg, .topFlow .line._pc {
    display: none;
  }
}

.topPrice {
  padding: 5rem 0;
  background-color: #f8f5e5;
}
.topPrice .topTtl {
  text-align: center;
}
.topPrice .thoughtBlock {
  padding: 0 4%;
  margin: 2rem auto;
}
.topPrice .priceMessage {
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .topPrice {
    padding: 3rem 0;
  }
  .topPrice .priceMessage {
    margin-bottom: 3rem;
  }
}

.thoughtBlock {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 8%;
       column-gap: 8%;
  row-gap: 2rem;
  justify-content: center;
}
.thoughtBlock .item {
  position: relative;
  width: 46%;
  max-width: 362px;
  text-align: center;
}
.thoughtBlock .img {
  pointer-events: none;
}
.thoughtBlock .text {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 0;
  top: 0;
  width: 100%;
  height: 36%;
  font-weight: 700;
  font-size: min(2.4vw, 1.5rem);
}
@media screen and (max-width: 767px) {
  .thoughtBlock .item {
    width: 60%;
  }
  .thoughtBlock .text {
    font-size: 4vw;
  }
}

.priceMessage {
  text-align: center;
  font-weight: 700;
  color: #fff;
  padding: 1em;
  margin-bottom: 4rem;
  border-radius: 1rem;
  line-height: 1.4;
  font-size: 2rem;
  font-size: min(2.8vw, 2rem);
  background-color: var(--color-brown-base);
  box-shadow: 0.5rem 0.5rem 0 rgba(var(--color-brown-base-rgb), 0.16);
}
@media screen and (max-width: 767px) {
  .priceMessage {
    margin-bottom: 2rem;
    font-size: 1.25rem;
  }
}

/* price */
.priceIndefinitely {
  margin: 5rem auto 0;
}
.priceIndefinitely .msg {
  padding: 0.75em;
  text-align: center;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.2;
  color: #fff;
  background-color: var(--color-orange);
}
.priceIndefinitely .inner {
  position: relative;
  padding: 3.5rem 2.5rem 2.5rem;
  border-bottom: 1px solid #ddd;
  background-color: #f8f8f8;
  text-align: center;
}
.priceIndefinitely .inner::before {
  content: "";
  display: block;
  position: absolute;
  left: calc(50% - 1.5rem);
  top: -1px;
  width: 3rem;
  height: 2rem;
  background-color: var(--color-orange);
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
}
.priceIndefinitely .ttl {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.priceIndefinitely .ttl strong {
  font-size: 140%;
}
.priceIndefinitely .list {
  font-size: 1.125rem;
  font-weight: 700;
  display: inline-block;
  text-align: left;
}
.priceIndefinitely .list > li {
  position: relative;
  padding-left: 1.5em;
}
.priceIndefinitely .list > li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 0.8em;
  height: 0.8em;
  border-radius: 50%;
  border: 0.2em solid var(--color-brown-gold);
}
.priceIndefinitely .list > li + li {
  margin-top: 0.5em;
}
@media screen and (max-width: 767px) {
  .priceIndefinitely {
    margin: 3rem auto 0;
  }
  .priceIndefinitely .msg {
    font-size: 1.5rem;
  }
  .priceIndefinitely .inner {
    padding: 3rem 1rem 1rem;
  }
  .priceIndefinitely .inner::before {
    left: calc(50% - 1rem);
    width: 2rem;
    height: 1.5rem;
  }
  .priceIndefinitely .ttl {
    font-size: 1.5rem;
  }
}

.priceBnr {
  max-width: 920px;
  margin: 6.25rem auto 0;
}
.priceBnr .more {
  margin-bottom: 2rem;
  font-weight: 700;
  line-height: 1.2;
  font-size: 2.25rem;
  text-align: center;
}
.priceBnr .more::after {
  content: "";
  display: block;
  width: 3rem;
  height: 2rem;
  margin: 0.5rem auto 0;
  background-color: var(--color-brown-gold);
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
}
.priceBnr .more > span {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
}
.priceBnr .more > span::before, .priceBnr .more > span::after {
  content: "";
  display: block;
  width: 3px;
  height: 1.5em;
  background-color: currentColor;
  border-radius: 3px;
}
.priceBnr .more > span::before {
  transform: rotate(-35deg);
}
.priceBnr .more > span::after {
  transform: rotate(35deg);
}
@media screen and (max-width: 767px) {
  .priceBnr {
    margin: 3rem auto 0;
  }
  .priceBnr .more {
    font-size: 1.5rem;
  }
  .priceBnr .more::after {
    width: 2rem;
    height: 1.5rem;
  }
}
@media (hover: hover) {
  .priceBnr a img {
    transition: transform 0.3s ease-in-out;
  }
  .priceBnr a:hover img {
    transform: scale(1.08);
  }
}

/* flow */
.flowList .item {
  position: relative;
  z-index: 5;
}
.flowList .item::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  height: 100%;
  width: 0.5rem;
  background-color: var(--color-brown-pale);
  z-index: -1;
  transform: translateX(-50%);
}
.flowList .item:last-of-type {
  padding-bottom: 0;
}
.flowList .item:last-of-type::before {
  display: none;
}
.flowList .item .icon {
  display: block;
  border-radius: 1rem;
  background-color: #fff;
  box-shadow: 0 0 0.5rem rgba(var(--color-brown-dark-rgb), 0.16);
}
.flowList .item .flowStep {
  line-height: 1.4;
  margin-bottom: 1rem;
}
.flowList .item .flowStep .step {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  font-weight: 700;
  color: var(--color-brown-base);
  margin-bottom: 0.25rem;
}
.flowList .item .flowStep .step::before, .flowList .item .flowStep .step::after {
  content: "-";
}
.flowList .item .flowStep .ttl {
  font-size: 2rem;
}
.flowList .item .flowStep .ttl small {
  font-size: 75%;
}
.flowList .item .flowStep .period {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.25rem 0.5rem;
  font-weight: 700;
  font-size: 0.875rem;
  background-color: #f2f2f2;
}
.flowList .item .flowContent ul {
  padding-left: 1em;
  margin-top: 1rem;
}
.flowList .item .flowContent ul > li {
  list-style: disc;
}
.flowList .item .flowContent ul > li + li {
  margin-top: 0.5rem;
}
@media print, screen and (min-width: 768px) {
  .flowList .item {
    display: flex;
    align-items: flex-start;
    padding-bottom: 6.75rem;
  }
  .flowList .item::before {
    left: 5rem;
  }
  .flowList .item .icon {
    width: 10rem;
    padding: 1rem 0.5rem;
    flex-shrink: 0;
  }
  .flowList .item .flow {
    padding-left: 2rem;
    width: calc(100% - 10rem);
  }
  .flowList .item .flowContent._twoClm {
    display: flex;
  }
  .flowList .item .flowContent._twoClm .text {
    width: 68%;
    padding-right: 2rem;
  }
  .flowList .item .flowContent._twoClm .ph {
    width: 32%;
  }
  .flowList .item .flowContent._twoClm .ph img {
    display: block;
    width: 100%;
    border-radius: 0.5rem;
  }
  .flowList .item .flowContent._twoClm .ph img + img {
    margin-top: 0.5rem;
  }
}
@media screen and (max-width: 767px) {
  .flowList .item {
    padding-bottom: 3rem;
  }
  .flowList .item::before {
    left: 1.25rem;
    width: 0.25rem;
  }
  .flowList .item .icon {
    width: 10rem;
    padding: 1rem;
  }
  .flowList .item .flow {
    padding: 1rem 0 0 3rem;
  }
  .flowList .item .flowStep .ttl {
    font-size: 1.5rem;
  }
  .flowList .item .flowContent .ph {
    margin-top: 1rem;
    display: flex;
  }
  .flowList .item .flowContent .ph img {
    width: 50%;
  }
}

/* case */
.caseDetail {
  max-width: 920px;
  margin: 0 auto;
}

/* useful */
.usefulTitle {
  position: relative;
  padding: 0 0 0.4em;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.4;
}

.usefulDetail {
  max-width: 920px;
  margin: 0 auto;
}
.usefulDetail .date {
  padding: 1em 0 2rem;
  line-height: 1.2;
}
.usefulDetail .date span {
  display: inline-block;
  padding: 0.5em 1em;
  background-color: rgba(var(--color-brown-pale-rgb), 0.5);
}
.usefulDetail .postMeta {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0 2rem;
}
.usefulDetail .postMeta .date {
  padding: 0;
}
.usefulDetail .postMeta .date > span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.4em 0.75em;
  border-radius: 0.5rem;
}
.usefulDetail .postMeta .date > span::before {
  content: "";
  display: block;
  width: 1.2em;
  height: 1.2em;
  margin-right: 0.25em;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0iIzcwNzA3MCI+PHBhdGggZD0iTTAgMGgyNHYyNEgwVjB6IiBmaWxsPSJub25lIi8+PHBhdGggZD0iTTExLjk5IDJDNi40NyAyIDIgNi40OCAyIDEyczQuNDcgMTAgOS45OSAxMEMxNy41MiAyMiAyMiAxNy41MiAyMiAxMlMxNy41MiAyIDExLjk5IDJ6TTEyIDIwYy00LjQyIDAtOC0zLjU4LTgtOHMzLjU4LTggOC04IDggMy41OCA4IDgtMy41OCA4LTggOHptLjUtMTNIMTF2Nmw1LjI1IDMuMTUuNzUtMS4yMy00LjUtMi42N3oiLz48L3N2Zz4=") no-repeat center center;
  background-size: 100% auto;
}
.usefulDetail .postMeta .categories {
  max-width: calc(100% - 10em);
  display: flex;
  flex-wrap: wrap;
}
.usefulDetail .postMeta .categories > li {
  margin-left: 0.25rem;
}
.usefulDetail .postMeta .categories a {
  display: flex;
  align-items: center;
  padding: 0.4em 1em;
  color: #fff;
  background-color: #f2e700;
  transition: opacity 0.3s ease;
}
.usefulDetail .postMeta .categories a::before {
  content: "";
  display: block;
  width: 1.2em;
  height: 1.2em;
  margin-right: 0.25em;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0iI0ZGRkZGRiI+PHBhdGggZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPjxwYXRoIGQ9Ik0xMCA0SDRjLTEuMSAwLTEuOTkuOS0xLjk5IDJMMiAxOGMwIDEuMS45IDIgMiAyaDE2YzEuMSAwIDItLjkgMi0yVjhjMC0xLjEtLjktMi0yLTJoLThsLTItMnoiLz48L3N2Zz4=") no-repeat center center;
  background-size: 100% auto;
}
@media (hover: hover) {
  .usefulDetail .postMeta .categories a:hover {
    opacity: 0.75;
  }
}

.usefulRelatedBnrs {
  max-width: 900px;
  padding: 5.2% 0;
  margin: 5.2% auto 0;
  border-top: 1px solid rgba(var(--color-brown-dark-rgb), 0.5);
  border-bottom: 1px solid rgba(var(--color-brown-dark-rgb), 0.5);
  text-align: center;
}
.usefulRelatedBnrs a {
  display: block;
  border: 1px solid rgba(var(--color-brown-dark-rgb), 0.5);
  transition: border 0.3s ease;
  background-color: var(--color-brown-pale);
}
.usefulRelatedBnrs a img {
  transition: opacity 0.3s ease;
}

@media print, screen and (min-width: 768px) {
  .usefulRelatedBnrs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .usefulRelatedBnrs .bnr {
    width: 48%;
    max-width: 360px;
    padding: 2% 0;
  }
  .usefulRelatedBnrs .bnr:nth-of-type(even) {
    margin-left: 4%;
  }
}
@media (hover: hover) {
  .usefulRelatedBnrs a:hover {
    border-color: var(--color-brown-base);
  }
  .usefulRelatedBnrs a:hover img {
    opacity: 0.8;
  }
}
@media screen and (max-width: 767px) {
  .usefulTitle {
    font-size: 1.8rem;
  }
  .usefulRelatedBnrs {
    padding-left: 4%;
    padding-right: 4%;
  }
  .usefulRelatedBnrs .bnr {
    max-width: 375px;
    margin: 0 auto;
  }
  .usefulRelatedBnrs .bnr + .bnr {
    padding-top: 3%;
  }
}
/* company */
.companyOutline {
  line-height: 1.8;
}
.companyOutline dt {
  background-color: #f8f8f8;
}

.gMap {
  position: relative;
  padding-bottom: 40%;
  border: 4px solid #f2f2f2;
}
.gMap iframe {
  position: absolute;
  left: 0.25rem;
  top: 0.25rem;
  width: calc(100% - 0.5rem);
  height: calc(100% - 0.5rem);
}

.companyMaps .office + .office {
  padding-top: 6%;
}
.companyMaps .address {
  margin-top: 1.5rem;
  padding: 1rem;
  border: 1px solid #ddd;
  line-height: 1.8;
}

@media print, screen and (min-width: 768px) {
  .companyOutline {
    display: flex;
    flex-wrap: wrap;
  }
  .companyOutline a {
    transition: color 0.3s ease;
  }
  .companyOutline dt {
    padding: 0.8em 1em;
    width: 10em;
  }
  .companyOutline dd {
    width: calc(100% - 10em);
    padding: 0.8em 0 0.8em 2em;
  }
  .companyOutline dt:not(:first-of-type),
  .companyOutline dd:not(:first-of-type) {
    margin-top: 0.25rem;
  }
}
@media (hover: hover) {
  .companyOutline a:hover {
    color: #ff4b00;
    text-decoration: underline;
  }
}
@media screen and (max-width: 767px) {
  .companyOutline dt {
    padding: 0.5em;
  }
  .companyOutline dd {
    padding: 0.5em 0 0.5em 1em;
  }
  .companyOutline dd + dt {
    margin-top: 1rem;
  }
  .gMap {
    padding-bottom: 70%;
  }
}
/* privacy policy */
.privacyArea .lead,
.privacyArea .privacyList p {
  line-height: 2;
}
.privacyArea .lead {
  padding-bottom: 2.5rem;
}
.privacyArea .privacyList li {
  padding-left: 1.875rem;
}
.privacyArea .privacyList li .ttlM {
  margin-left: -1.875rem;
}
.privacyArea .privacyList li + li {
  padding-top: 2.5rem;
}

/* contact */
.contactSec .req {
  display: inline-block;
  font-size: 80%;
  color: #c00;
  vertical-align: middle;
}

.contactSec .note {
  display: block;
  font-size: 80%;
}

.contactLead {
  line-height: 1.75;
  font-weight: 700;
  background-color: rgba(var(--color-brown-base-rgb), 0.1);
}

.formLead {
  padding-bottom: 2em;
}

.formList input[type=text],
.formList input[type=tel],
.formList input[type=email],
.formList input[type=number],
.formList textarea {
  width: 100%;
  padding: 0.5em;
  border: 1px solid #707070;
  border-radius: 0.25rem;
}
.formList input.short {
  max-width: 15em;
}
.formList select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  width: 100%;
  border: 1px solid #707070;
  border-radius: 0.25rem;
  padding: 0.5em;
}
.formList label {
  cursor: pointer;
}
.formList dt {
  font-weight: 700;
  color: #333;
}
.formList dd {
  padding-bottom: 1.5em;
}
.formList .addressBlock {
  display: flex;
  align-items: center;
}
.formList .addressBlock + .addressBlock {
  padding-top: 0.5em;
}
.formList .addressBlock label {
  width: 5em;
  font-size: 92%;
}
.formList .addressBlock .addressInput {
  width: calc(100% - 5em);
}
.formList .selectBox {
  position: relative;
  max-width: 20em;
}
.formList .selectBox::after {
  content: "▼";
  position: absolute;
  right: 0.6em;
  top: 50%;
  margin-top: -0.5em;
  line-height: 1;
  transform: scaleY(0.8);
  pointer-events: none;
}
.formList .checkboxList,
.formList .radioList {
  display: flex;
  flex-wrap: wrap;
}
.formList .checkboxList label,
.formList .radioList label {
  display: block;
  padding: 0.4em 0;
  margin-right: 2em;
  min-width: 9em;
}
.formList .checkboxList input,
.formList .radioList input {
  vertical-align: middle;
}
.formList .otherInput {
  margin-top: 1rem;
  display: flex;
  align-items: center;
}
.formList .otherInput label {
  display: block;
  width: 7em;
}
.formList .otherInput > span {
  display: block;
  width: calc(100% - 7em);
}
.formList .areaAll,
.formList .areaList {
  margin-top: 0.5em;
}
.formList .areaAll label,
.formList .areaList label {
  display: block;
  padding: 0.4em 0;
  margin-right: 2em;
  min-width: 5.5em;
}
.formList .areaList {
  display: flex;
}
.formList .areaList .l {
  width: 9.5em;
}
.formList .areaList .r {
  width: calc(100% - 9.5em);
  padding-left: 1em;
  border-left: 1px solid #707070;
}
.formList .note {
  margin-top: 0.5rem;
}

.formBtns {
  padding-top: 1em;
  text-align: center;
  font-size: 1.25rem;
}
.formBtns button {
  cursor: pointer;
  font-weight: 700;
  color: #fff;
  padding: 0.8em 2em;
  background-color: var(--color-brown-base);
  border-radius: 0.5rem;
  transition: background-color 0.3s cubic-bezier(0.18, 0.29, 0.29, 0.93), color 0.3s cubic-bezier(0.18, 0.29, 0.29, 0.93);
}

.thanksMessage {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}
.thanksMessage .title {
  position: relative;
  padding-bottom: 0.8em;
  margin-bottom: 0.8em;
  font-size: 1.75rem;
  line-height: 1.4;
}
.thanksMessage .title::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 2em;
  height: 0.25rem;
  background-color: #f2e700;
  border-radius: 1em;
  margin-left: -1em;
}
.thanksMessage .message {
  padding-top: 1em;
  line-height: 2;
}
.thanksMessage .message a {
  color: #ff4b00;
  text-decoration: underline;
}

@media print, screen and (min-width: 768px) {
  .contactLead {
    padding: 2.5rem;
    margin-bottom: 4rem;
  }
  .contactSec + .contactSec {
    padding-top: 5rem;
  }
  .contactSec._pt {
    padding-top: 3rem;
  }
  .formList {
    display: flex;
    flex-wrap: wrap;
  }
  .formList dt {
    padding-top: 0.5em;
    width: 13em;
  }
  .formList dt.hr {
    padding-top: 2rem;
    border-top: 1px dotted #707070;
  }
  .formList dd {
    width: calc(100% - 13em);
  }
  .formList dd.hr {
    padding-top: 1.5rem;
    border-top: 1px dotted #707070;
  }
  .formList._narrow {
    display: block;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .formList._narrow dt, .formList._narrow dd {
    width: 100%;
  }
  .formList._narrow dt {
    padding: 0 0 0.5em;
  }
}
@media (hover: hover) {
  .contactFlowList .text a:hover {
    text-decoration: none;
  }
  .formBtns button:hover {
    background-color: var(--color-orange);
  }
}
@media screen and (max-width: 767px) {
  .contactLead {
    padding: 1rem;
    margin-bottom: 10%;
  }
  .contactSec + .contactSec {
    padding-top: 10%;
  }
  .contactSec._pt {
    padding-top: 4%;
  }
  .formList dt {
    padding: 0.3em 0;
  }
  .formList dt.hr {
    padding-top: 1rem;
    border-top: 1px dotted #707070;
  }
  .formList dd {
    padding-bottom: 1em;
  }
}
/* download */
.dlLead {
  text-align: center;
}
.dlLead .ttl {
  font-size: 2.25rem;
  line-height: 1.4;
  text-shadow: 0.125rem 0.125rem 0 rgba(var(--color-brown-dark-rgb), 0.15);
}
.dlLead .msg {
  display: inline-block;
  text-align: left;
  padding-left: 1em;
  text-indent: -1em;
  margin-top: 1.5rem;
  line-height: 1.75;
}
.dlLead .msg strong {
  color: #c00;
}
.dlLead .caution {
  background-color: #f2f2f2;
  border-radius: 0.5rem;
}
.dlLead .caution::before {
  content: "!";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  font-size: 2.5rem;
  font-weight: 900;
  font-family: "Times New Roman", Times, serif;
  line-height: 1;
  color: #fff;
  background-color: var(--color-brown-gold);
  border-radius: 50%;
}
.dlLead .caution p {
  font-size: 0.875rem;
  line-height: 1.75;
  text-align: left;
  font-weight: 700;
  color: var(--color-brown-dark);
}
@media print, screen and (min-width: 768px) {
  .dlLead .caution {
    padding: 1.5rem 2.5rem;
    margin-top: 2.5rem;
    display: inline-flex;
    align-items: center;
  }
  .dlLead .caution::before {
    flex-shrink: 0;
  }
  .dlLead .caution p {
    padding-left: 2.5rem;
    margin-left: 2.5rem;
    border-left: 1px solid #ccc;
  }
}
@media screen and (max-width: 767px) {
  .dlLead .ttl {
    font-size: 2.25rem;
  }
  .dlLead .caution {
    padding: 1rem 1.5rem;
    margin-top: 1.5rem;
  }
  .dlLead .caution::before {
    margin: 0 auto 1rem;
  }
  .dlLead .caution p {
    font-size: 0.9375rem;
  }
}

.dlBnr {
  padding: 1.5rem 0;
  margin-bottom: 5rem;
  text-align: center;
  background-color: rgba(var(--color-brown-pale-rgb), 0.25);
}
.dlBnr .ttl {
  margin-bottom: 0.75rem;
  font-size: 1.75rem;
}
.dlBnr .ttl > span {
  display: inline-flex;
  gap: 1rem;
}
.dlBnr .ttl > span::before, .dlBnr .ttl > span::after {
  content: "|";
}
.dlBnr .ttl > span::before {
  transform: rotate(-25deg);
}
.dlBnr .ttl > span::after {
  transform: rotate(25deg);
}
.dlBnr .dlBtn a {
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .dlBnr .ttl {
    font-size: 1.375rem;
  }
  .dlBnr .dlBtn a {
    font-size: 1.25rem;
  }
}

.dlDoc {
  text-align: center;
}
.dlDoc .msg {
  margin-bottom: 1.5rem;
  padding: 0.75rem 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  background-color: var(--color-brown-dark);
}
.dlDoc .pages {
  display: flex;
  flex-direction: column;
  max-width: 640px;
  margin: 0 auto;
}
.dlDoc .pages > * + * {
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .dlDoc .msg {
    margin-bottom: 1rem;
    font-size: 1.125rem;
  }
  .dlDoc .pages > * + * {
    margin-top: 0.5rem;
  }
}

.faqDetail {
  max-width: 800px;
  margin: 0 auto;
}
.faqDetail .question,
.faqDetail .answerBlock {
  position: relative;
  padding-left: 2.5rem;
}
.faqDetail .q, .faqDetail .a {
  position: absolute;
  left: 0;
  top: 0;
  font-style: normal;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
}
.faqDetail .q {
  color: #f2e700;
}
.faqDetail .a {
  color: #f6aa00;
}
.faqDetail .question {
  font-size: 1.5rem;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px dotted #ddd;
}
.faqDetail .answerBlock {
  padding-top: 0.15rem;
  font-size: 1.05rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .faqDetail .question {
    font-size: 1.25rem;
  }
}