@charset "UTF-8";
.wrapper {
  margin-top: 60px;
}
@media screen and (min-width: 1024px) {
  .wrapper {
    margin-top: 65px;
  }
}
@media screen and (min-width: 1200px) {
  .wrapper {
    padding-right: 300px;
  }
}
@media screen and (min-width: 1440px) {
  .wrapper {
    padding-right: 390px;
  }
}

.main {
  width: 100%;
  min-height: 100vh;
  padding-bottom: 100px;
  display: flex;
  flex-direction: column;
  grid-gap: 80px;
  position: relative;
  overflow: hidden;
}
.main::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/top/top_bg.jpg) right top/100% no-repeat;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .main {
    padding-bottom: 120px;
    grid-gap: 100px;
  }
}
@media screen and (min-width: 1200px) {
  .main {
    padding-bottom: 180px;
    grid-gap: 120px;
  }
  .main::before {
    width: calc(100% - 300px);
  }
}
@media screen and (min-width: 1440px) {
  .main::before {
    width: calc(100% - 390px);
  }
}

.section {
  width: 100%;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .section__inner {
    max-width: 700px;
  }
}
@media screen and (min-width: 1024px) {
  .section__inner {
    width: 90%;
    max-width: 1000px;
  }
}
@media screen and (min-width: 1200px) {
  .section__inner {
    width: calc(100% - 40px);
  }
}
.section__ttl {
  margin-bottom: 1.6667em;
  font-size: 24px;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
}
.section__ttl_jp {
  font-weight: 600;
  --lh: 1.66666667;
  text-align: center;
  position: relative;
  z-index: 1;
}
.section__ttl_jp strong {
  font-size: 133.33%;
  font-weight: 600;
  --lh: 1.25;
}
.section__ttl_jp small {
  font-size: 40%;
  font-weight: 400;
  white-space: nowrap;
  position: absolute;
  bottom: 0.625em;
  right: 0;
  transform: translateX(100%);
}
.section__ttl_en {
  font-size: 83.33%;
  --lh: 2.15;
  position: relative;
  z-index: 1;
}
.section__ttl_en::before {
  content: "";
  width: 10.5em;
  height: 3.25em;
  background: url(../img/top/sectionttl_bg.png) center bottom/contain no-repeat;
  mix-blend-mode: lighten;
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 20%);
  z-index: -1;
}
.section__ttl_en::first-letter {
  font-size: 160%;
  --lh: 1.6;
}
.section__ttl_en > span {
  transition: 0.5s;
  opacity: 0.5;
  filter: blur(10px);
}
.section__ttl.visible .section__ttl_en > span {
  opacity: 1;
  filter: blur(0);
}
@media screen and (min-width: 768px) {
  .section__ttl {
    font-size: clamp(24px, 3.1vw, 30px);
  }
  .section__ttl_jp strong {
    font-size: 160%;
  }
  .section__ttl_en {
    font-size: 80%;
  }
  .section__ttl_en::before {
    content: "";
    width: 9.7em;
    height: 3em;
  }
  .section__ttl_en::first-letter {
    font-size: 120%;
  }
}
@media screen and (min-width: 1200px) {
  .section__ttl {
    font-size: clamp(30px, 2.5vw, 40px);
  }
}
@media screen and (min-width: 1600px) {
  .section__ttl {
    font-size: 50px;
  }
}
.section .txtBlk strong {
  font-size: 125%;
  font-weight: 500;
  display: inline-block;
  position: relative;
}
.section .txtBlk strong::before {
  content: "";
  width: 0;
  height: 1px;
  background-color: #A09152;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 0.5s;
}
.section .txtBlk strong.on::before {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .section .txtBlk {
    font-size: 106.25%;
  }
}
@media screen and (min-width: 1200px) {
  .section .txtBlk {
    font-size: 100%;
  }
}
@media screen and (min-width: 1440px) {
  .section .txtBlk {
    font-size: 112.5%;
  }
}
@media screen and (min-width: 1600px) {
  .section .txtBlk {
    font-size: 125%;
  }
}
.section__row {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 2.5em;
}
.section__row + .section__row {
  margin-top: 2.5em;
}
@media screen and (min-width: 768px) {
  .section__row {
    flex-direction: row;
    align-items: center;
    grid-gap: 4em;
  }
  .section__row--rev {
    flex-direction: row-reverse;
  }
}
.section__row_txtWrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  grid-gap: 2em;
}
.section__row_txtWrap .txtBlk {
  width: 100%;
  font-size: 100%;
  --lh: 2;
}
@media screen and (min-width: 1024px) {
  .section__row_txtWrap {
    font-size: 106.25%;
  }
}
@media screen and (min-width: 1200px) {
  .section__row_txtWrap {
    font-size: 100%;
  }
}
@media screen and (min-width: 1440px) {
  .section__row_txtWrap {
    font-size: 112.5%;
  }
}
@media screen and (min-width: 1600px) {
  .section__row_txtWrap {
    font-size: 125%;
  }
}
.section__row_img {
  width: 100%;
  max-width: 315px;
  position: relative;
}
.section__row_img img {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
  transition: 0.5s;
}
.section__row_img img.shadow {
  filter: blur(30px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  z-index: 0;
}
.section__row_img.radius img {
  border-radius: 50%;
}
.section__row_img.visible img.shadow {
  transform: translate(-50%, -50%) scale(1);
}
@media screen and (min-width: 768px) {
  .section__row_img {
    width: 37.5%;
    max-width: 100%;
    flex-shrink: 0;
  }
  .section__row_img img.shadow {
    filter: blur(50px);
  }
}

.secMV {
  padding: 30px 0 0;
}
@media screen and (min-width: 768px) {
  .secMV {
    padding-top: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .secMV {
    padding-top: 50px;
  }
}
.secMV__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.secMV__ttlWrap {
  padding-bottom: 20px;
  position: relative;
}
.secMV__ttlWrap .award {
  width: 100px;
  position: absolute;
  bottom: 40px;
  left: calc(50% + 5em);
  z-index: 1;
}
@media screen and (min-width: 576px) {
  .secMV__ttlWrap .award {
    left: calc(50% + 6em);
  }
}
@media screen and (min-width: 768px) {
  .secMV__ttlWrap {
    padding-bottom: 80px;
  }
  .secMV__ttlWrap .award {
    width: 140px;
    bottom: 20px;
    left: calc(50% + 14em);
  }
}
@media screen and (min-width: 1024px) {
  .secMV__ttlWrap .award {
    width: 160px;
    left: calc(50% + 20em);
  }
}
@media screen and (min-width: 1200px) {
  .secMV__ttlWrap .award {
    width: 140px;
    left: calc(50% + 19em);
  }
}
@media screen and (min-width: 1440px) {
  .secMV__ttlWrap .award {
    width: 160px;
    bottom: 0;
    left: calc(50% + 22.5em);
  }
}
@media screen and (min-width: 1600px) {
  .secMV__ttlWrap .award {
    left: calc(50% + 27em);
    bottom: 20px;
  }
}
.secMV__ttl {
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 0.5556em;
}
.secMV__ttl_txt {
  line-height: 1.6667em;
  font-weight: 600;
}
.secMV__ttl_txt em {
  font-size: 133.33%;
  font-style: normal;
  line-height: 1.25em;
}
.secMV__ttl_logo {
  width: 139px;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .secMV__ttl {
    font-size: clamp(28px, 4vw, 36px);
    grid-gap: 0.48em;
  }
  .secMV__ttl_txt {
    line-height: 2;
  }
  .secMV__ttl_txt em {
    font-size: 160%;
    line-height: 1.25;
  }
  .secMV__ttl_logo {
    width: 8.24em;
  }
}
@media screen and (min-width: 1440px) {
  .secMV__ttl {
    font-size: 45px;
  }
}
@media screen and (min-width: 1600px) {
  .secMV__ttl {
    font-size: 50px;
  }
}
.secMV__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  grid-gap: 30px;
}
@media screen and (min-width: 768px) {
  .secMV__body {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    grid-gap: 0;
  }
}
@media screen and (min-width: 1024px) {
  .secMV__body {
    grid-gap: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .secMV__body {
    grid-gap: 40px;
  }
}
@media screen and (min-width: 1440px) {
  .secMV__body {
    grid-gap: 80px;
  }
}
@media screen and (min-width: 1600px) {
  .secMV__body {
    grid-gap: 100px;
  }
}
.secMV__body .phoneImage {
  width: 178px;
  height: 352px;
  background: url(../img/top/mv_phone.png) center/contain no-repeat;
  color: var(--bg);
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  --ls: 0;
  --lh: 1.5;
  flex-shrink: 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .secMV__body .phoneImage {
    width: 235px;
    height: 465px;
  }
}
@media screen and (min-width: 1200px) {
  .secMV__body .phoneImage {
    width: 296px;
    height: 585px;
  }
}
.secMV__body .phoneImage__date {
  width: 100%;
  font-size: 8px;
  text-align: center;
  position: absolute;
  top: 22%;
  left: 0;
}
@media screen and (min-width: 768px) {
  .secMV__body .phoneImage__date {
    top: 23%;
  }
}
.secMV__body .phoneImage__contents {
  padding: 0 10%;
  position: absolute;
  top: 30%;
  left: 0;
}
.secMV__body .phoneImage__contents .fukihidashi {
  width: 85%;
  max-width: 185px;
  padding: 8px;
  background-color: #F0F0F0;
  border-radius: 10px;
  font-size: 11px;
  position: relative;
  opacity: 0;
}
.secMV__body .phoneImage__contents .fukihidashi::after {
  content: "";
  width: 8px;
  height: 11px;
  background: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="9" height="11" viewBox="0 0 9 11" fill="none"><path d="M6.00098 0V1.41602C7.76689 2.18757 9.00098 3.94968 9.00098 6C9.00098 8.76142 6.7624 11 4.00098 11C2.61784 11 1.36613 11.0647 0.460938 10.7832C2.19864 10.2535 3.53434 8.8029 3.90039 7H3.90723L4.00098 0H6.00098Z" fill="%23F0F0F0"/></svg>') center/contain no-repeat;
  display: block;
  position: absolute;
  bottom: 8px;
  left: -3px;
  transform: translateY(100%);
}
@media screen and (min-width: 768px) {
  .secMV__body .phoneImage__contents {
    padding: 0 9%;
  }
  .secMV__body .phoneImage__contents .fukihidashi {
    padding: 10px;
    font-size: 12px;
  }
}
@media screen and (min-width: 1200px) {
  .secMV__body .phoneImage__contents {
    top: 29%;
  }
  .secMV__body .phoneImage__contents .fukihidashi {
    font-size: 13px;
  }
}
.secMV__body .btnsWrap {
  display: flex;
  flex-direction: column;
  grid-gap: 20px;
  flex-shrink: 0;
}
.secMV__body .btnsWrap .ctaBtn {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .secMV__body .btnsWrap {
    flex-direction: row;
    grid-gap: 10px;
  }
  .secMV__body .btnsWrap > li {
    width: 50%;
  }
}
.secMV__body_phoneBlk {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 14px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .secMV__body_phoneBlk {
    width: auto;
    justify-content: center;
  }
}
.secMV__body_txtBlk {
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  grid-gap: 25px;
}
.secMV__body_txtBlk .txtWrap {
  font-size: 112.5%;
  display: flex;
  flex-direction: column;
  grid-gap: 0.5556em;
}
.secMV__body_txtBlk .txtWrap__ttl {
  padding-bottom: 0.1667em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  --lh: 1.77777778;
}
.secMV__body_txtBlk .txtWrap__ttl > span::first-letter {
  font-size: 133.33%;
  --lh: 1.33333333;
}
.secMV__body_txtBlk .txtWrap__txt {
  font-size: 111.11%;
  --lh: 1.85;
}
.secMV__body_txtBlk .txtWrap__txt strong {
  font-size: 160%;
  font-weight: 400;
  --lh: 1.15625;
}
@media screen and (min-width: 768px) {
  .secMV__body_txtBlk {
    width: 100%;
    max-width: 420px;
  }
  .secMV__body_txtBlk .txtWrap {
    font-size: 18px;
    grid-gap: 0.625em;
  }
  .secMV__body_txtBlk .txtWrap__ttl {
    padding-bottom: 0.1667em;
    font-size: 109.38%;
  }
  .secMV__body_txtBlk .txtWrap__ttl > span::first-letter {
    font-size: 114.29%;
  }
  .secMV__body_txtBlk .txtWrap__txt {
    font-size: 100%;
  }
  .secMV__body_txtBlk .txtWrap__txt strong {
    font-size: 162.5%;
  }
}
@media screen and (min-width: 1024px) {
  .secMV__body_txtBlk .txtWrap {
    font-size: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .secMV__body_txtBlk .txtWrap {
    font-size: 28px;
  }
  .secMV__body_txtBlk .btnsWrap {
    display: none;
  }
}
@media screen and (min-width: 1600px) {
  .secMV__body_txtBlk .txtWrap {
    font-size: 32px;
  }
}
.secMV .featureList {
  width: 50%;
  max-width: 14.1667em;
  margin: 0 50% 0 auto;
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 75%;
  font-weight: 400;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  grid-gap: 10px;
}
.secMV .featureList li {
  width: 100%;
  padding: 4px 5px;
  color: #fff;
  text-shadow: 0px 0px 3px rgba(27, 27, 27, 0.5);
  --ls: 0.05em;
  --lh: 1.5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.secMV .featureList li::before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #BFA25C 0%, #E6D8A2 35%, #BFA25C 60%, #8C7741 100%);
  clip-path: polygon(10px 0%, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0% 10px);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.6;
}
@media screen and (min-width: 768px) {
  .secMV .featureList {
    max-width: 300px;
    margin: 0;
  }
  .secMV .featureList li {
    width: calc(50% - 5px);
  }
  .secMV .featureList li:last-child {
    width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .secMV .featureList {
    width: 100%;
    max-width: 460px;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
}
@media screen and (min-width: 1440px) {
  .secMV .featureList {
    max-width: 600px;
    font-size: 16px;
  }
  .secMV .featureList li {
    padding: 4px 10px;
  }
}

.secSolution__solList {
  width: 100%;
  max-width: 336px;
  margin: 0 auto;
  font-size: 125%;
}
.secSolution__solList .listItem {
  width: 100%;
  padding-top: 100%;
  position: relative;
}
.secSolution__solList .listItem::before, .secSolution__solList .listItem::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.secSolution__solList .listItem::before {
  border: 1px solid var(--text);
  border-radius: 50%;
}
.secSolution__solList .listItem::after {
  animation: rotation 30s linear infinite;
}
.secSolution__solList .listItem--item01::after {
  background: url(../img/top/solution_bg01.png) center/contain no-repeat;
}
.secSolution__solList .listItem--item02 {
  margin-top: -10%;
}
.secSolution__solList .listItem--item02::after {
  background: url(../img/top/solution_bg02.png) center/contain no-repeat;
}
.secSolution__solList .listItem--item03 {
  margin-top: -10%;
}
.secSolution__solList .listItem--item03::after {
  background: url(../img/top/solution_bg03.png) center/contain no-repeat;
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.secSolution__solList .listItem__inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.secSolution__solList .listItem__txt {
  --lh: 1.875;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .secSolution__solList {
    max-width: 100%;
    display: flex;
    align-items: flex-start;
  }
  .secSolution__solList .listItem {
    width: 41.666%;
    padding-top: 41.666%;
    flex-shrink: 0;
  }
  .secSolution__solList .listItem--item01 {
    margin: 0 -12.499%;
  }
  .secSolution__solList .listItem--item02, .secSolution__solList .listItem--item03 {
    margin-top: 25%;
  }
  .secSolution__solList .listItem--item02 {
    order: -1;
  }
}
@media screen and (min-width: 1024px) {
  .secSolution__solList {
    font-size: 156.25%;
  }
}
@media screen and (min-width: 1200px) {
  .secSolution__solList {
    font-size: clamp(22px, 1.83vw, 26px);
  }
}
@media screen and (min-width: 1600px) {
  .secSolution__solList {
    font-size: 200%;
  }
}

.secCase {
  padding: 45px 0;
  background: var(--bg);
  position: relative;
}
.secCase::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/common/pagettl_bg.jpg) center/cover no-repeat;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.6;
}
@media screen and (min-width: 768px) {
  .secCase {
    padding: 60px 0;
  }
}
@media screen and (min-width: 1024px) {
  .secCase {
    padding: 80px 0;
  }
}
.secCase .section__ttl_en {
  --lh: 1.3;
}
.secCase .section__ttl_en::before {
  display: none;
}
.secCase__slider {
  width: calc(100% - 40px);
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .secCase__slider {
    width: 100%;
    padding: 0 20px;
  }
}
@media screen and (min-width: 1630px) {
  .secCase__slider {
    padding: 0 calc((100vw - 360px) / 2 - 610px);
  }
}
.secCase__slider .listItem {
  height: auto;
  padding: 40px 0 40px;
  background: #fff url(../img/top/case_slidebg.jpg) right bottom/140% no-repeat;
  border-radius: 10px;
  color: var(--bg);
  position: relative;
}
.secCase__slider .listItem::before {
  content: "Cases";
  color: rgba(51, 51, 51, 0.5);
  font-size: 125%;
  font-family: "Beau Rivage", cursive;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  transform: rotate(17.97deg);
  transform-origin: left top;
  pointer-events: none;
}
.secCase__slider .listItem::before::first-letter {
  font-size: 156.25%;
}
@media screen and (min-width: 768px) {
  .secCase__slider .listItem {
    padding: 40px 0 100px;
    background-size: 100%;
  }
  .secCase__slider .listItem::before {
    font-size: 187.5%;
  }
  .secCase__slider .listItem::before::first-letter {
    font-size: 150%;
  }
}
.secCase__slider .listItem__inner {
  width: calc(100% - 36px);
}
@media screen and (min-width: 768px) {
  .secCase__slider .listItem__inner {
    width: calc(100% - 40px);
  }
}
@media screen and (min-width: 1024px) {
  .secCase__slider .listItem__inner {
    width: calc(100% - 60px);
  }
}
@media screen and (min-width: 1440px) {
  .secCase__slider .listItem__inner {
    width: calc(100% - 80px);
  }
}
@media screen and (min-width: 1600px) {
  .secCase__slider .listItem__inner {
    width: calc(100% - 100px);
  }
}
.secCase__slider .listItem__header {
  margin-bottom: 1.5em;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  grid-gap: 0.625em;
}
@media screen and (min-width: 576px) {
  .secCase__slider .listItem__header {
    grid-gap: 0;
  }
}
@media screen and (min-width: 768px) {
  .secCase__slider .listItem__header {
    font-size: 112.5%;
  }
}
@media screen and (min-width: 1024px) {
  .secCase__slider .listItem__header {
    font-size: 125%;
  }
}
@media screen and (min-width: 1200px) and (max-width: 1439px) {
  .secCase__slider .listItem__header {
    font-size: 112.5%;
  }
}
.secCase__slider .listItem__ttl {
  font-weight: 600;
  --lh: 1.8;
}
.secCase__slider .listItem__ttl strong {
  font-size: 125%;
  font-weight: 600;
  --lh: 1.5;
}
.secCase__slider .listItem__ttl--center {
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .secCase__slider .listItem__ttl {
    --lh: 2.5;
  }
  .secCase__slider .listItem__ttl strong {
    font-size: 180%;
  }
}
.secCase__slider .listItem__img {
  width: 6.25em;
  height: 6.25em;
  border-radius: 50%;
  align-self: flex-end;
  overflow: hidden;
  flex-shrink: 0;
}
@media screen and (min-width: 576px) {
  .secCase__slider .listItem__img {
    margin-top: -1em;
  }
}
@media screen and (min-width: 768px) {
  .secCase__slider .listItem__img {
    width: 8.75em;
    height: 8.75em;
    margin-top: -4.4444em;
  }
}
@media screen and (min-width: 1024px) {
  .secCase__slider .listItem__img {
    width: 10em;
    height: 10em;
    margin-top: 0;
  }
}
.secCase__slider .listItem__txtWrap {
  width: 100%;
  max-width: 620px;
  font-size: 87.5%;
  font-weight: 500;
  --lh: 1.8;
}
.secCase__slider .listItem__txtWrap p + p {
  margin-top: 2em;
}
.secCase__slider .listItem__txtWrap--others {
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .secCase__slider .listItem__txtWrap {
    font-size: 100%;
    --lh: 2;
  }
}
@media screen and (min-width: 1024px) {
  .secCase__slider .listItem__txtWrap {
    font-size: 112.5%;
  }
}
.secCase__slider .listItem__txt {
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .secCase__slider .listItem__txt {
    font-size: 125%;
  }
}
.secCase__slider .listItem__list {
  width: 100%;
  max-width: 500px;
  margin: 0 auto 10px;
  display: grid;
}
@media screen and (min-width: 768px) {
  .secCase__slider .listItem__list {
    max-width: 100%;
    margin-bottom: 30px;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px 20px;
  }
}
.secCase__slider .listItem__listItem {
  font-size: 85.71%;
  font-weight: 500;
  display: flex;
  align-items: center;
  grid-gap: 10px;
}
.secCase__slider .listItem__listItem_img {
  width: 30%;
  padding-top: 30%;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.secCase__slider .listItem__listItem_img img {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .secCase__slider .listItem__listItem:nth-child(even) {
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 768px) {
  .secCase__slider .listItem__listItem {
    font-size: 14px;
    flex-direction: column;
  }
  .secCase__slider .listItem__listItem_img {
    width: 90%;
    padding-top: 90%;
  }
}
@media screen and (min-width: 1440px) {
  .secCase__slider .listItem__listItem {
    font-size: 16px;
  }
}
.secCase__slider_arrow {
  width: 50px;
  height: 20px;
  background: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="9" viewBox="0 0 16 9" fill="none"><path d="M1 1.25L8 7.75L15 1.25" stroke="%23fff"/></svg>') center/contain no-repeat;
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translateY(-50%) rotate(-90deg);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .secCase__slider_arrow {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .secCase__slider_arrow {
    right: 10%;
  }
}
@media screen and (min-width: 1200px) {
  .secCase__slider_arrow {
    right: 8%;
  }
}
@media screen and (min-width: 1630px) {
  .secCase__slider_arrow {
    right: auto;
    left: calc(50vw + 230px);
  }
}
.secCase__slider_dots {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 15px;
}
.secCase__slider_dots .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 1;
  transition: 0.5s;
}
.secCase__slider_dots .swiper-pagination-bullet-active {
  background-color: var(--main);
}

.secPrice__priceWrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  grid-gap: 15px;
}
@media screen and (min-width: 768px) {
  .secPrice__priceWrap {
    flex-direction: row;
  }
}
.secPrice__priceItem {
  width: 100%;
  max-width: 20.3125em;
  height: 13.125em;
  padding: 1.5em 1.5em 2.375em;
  background-color: rgba(51, 51, 51, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid #fff;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.secPrice__priceItem::before {
  content: "";
  width: 100%;
  height: 60%;
  background-color: #5b5b5b;
  clip-path: polygon(0 0, 0% 100%, 100% 0);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.secPrice__priceItem_header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}
.secPrice__priceItem_header .jp {
  font-size: 200%;
  font-weight: 700;
  line-height: 1.25;
  align-self: flex-end;
}
.secPrice__priceItem_header .jp::first-letter {
  color: var(--main);
  font-size: 125%;
  line-height: 1;
}
.secPrice__priceItem_body {
  font-size: 100%;
  line-height: 3;
  white-space: nowrap;
  text-align: center;
  position: relative;
  z-index: 1;
}
.secPrice__priceItem_body strong {
  font-size: 250%;
  line-height: 1.2;
}
.secPrice__priceItem_body em {
  font-size: 120%;
  font-weight: 500;
  font-style: normal;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .secPrice__priceItem {
    height: 12em;
    font-size: 87.5%;
  }
  .secPrice__priceItem_header .jp {
    font-size: 162.5%;
  }
  .secPrice__priceItem_body strong {
    font-size: 200%;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1199px) {
  .secPrice__priceItem {
    height: 13.125em;
  }
}
@media screen and (min-width: 1200px) and (max-width: 1439px) {
  .secPrice__priceItem {
    height: 12em;
    padding: 1.5em 1.5em 1.5em;
  }
  .secPrice__priceItem_header .jp {
    font-size: 162.5%;
  }
  .secPrice__priceItem_body strong {
    font-size: 200%;
  }
}
@media screen and (min-width: 1440px) {
  .secPrice__priceItem {
    height: 13.75em;
  }
}
.secPrice__pricePlus {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.875;
}

@media screen and (min-width: 768px) {
  .secNews__inner {
    max-width: 700px;
  }
}
@media screen and (min-width: 1024px) {
  .secNews__inner {
    width: 90%;
    max-width: 1000px;
  }
}
@media screen and (min-width: 1200px) {
  .secNews__inner {
    width: calc(100% - 40px);
  }
}
.secNews__newsList {
  width: 100%;
  margin-bottom: 1.875em;
  display: grid;
  grid-gap: 1.875em;
}
@media screen and (min-width: 768px) {
  .secNews__newsList {
    margin-bottom: 3.2em;
    grid-gap: 1.75em;
  }
}
@media screen and (min-width: 1200px) {
  .secNews__newsList {
    font-size: 18px;
  }
}
@media screen and (min-width: 1600px) {
  .secNews__newsList {
    font-size: 20px;
  }
}
.secNews__newsList .listItem {
  width: 100%;
  --lh: 1.5;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  grid-gap: 10px;
}
@media screen and (min-width: 768px) {
  .secNews__newsList .listItem {
    flex-direction: row;
    align-items: center;
    grid-gap: 1em;
  }
  .secNews__newsList .listItem__date {
    flex-shrink: 0;
  }
  .secNews__newsList .listItem__txt {
    --lh: 3;
  }
}
@media screen and (min-width: 1024px) {
  .secNews__newsList .listItem {
    grid-gap: 1.5em;
  }
}
.secNews__btnWrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

@media screen and (min-width: 768px) {
  .secFaq__inner {
    max-width: 700px;
  }
}
@media screen and (min-width: 1024px) {
  .secFaq__inner {
    width: 90%;
    max-width: 1000px;
  }
}
@media screen and (min-width: 1200px) {
  .secFaq__inner {
    width: calc(100% - 40px);
  }
}
.secFaq__faqList {
  width: 100%;
  margin-bottom: 1.875em;
  display: grid;
  grid-gap: 0.9375em;
}
@media screen and (min-width: 768px) {
  .secFaq__faqList {
    margin-bottom: 3.2em;
    grid-gap: 1.75em;
  }
}
@media screen and (min-width: 1200px) {
  .secFaq__faqList {
    font-size: 18px;
  }
}
@media screen and (min-width: 1600px) {
  .secFaq__faqList {
    font-size: 20px;
  }
}
.secFaq__faqList .listItem {
  width: 100%;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--main);
}
.secFaq__faqList .listItem__qBlk {
  width: 100%;
  display: flex;
  align-items: center;
  grid-gap: 10px;
}
.secFaq__faqList .listItem__qBlk::before {
  content: "Q.";
  font-size: 250%;
  font-family: "Beau Rivage", cursive;
  flex-shrink: 0;
}
.secFaq__faqList .listItem__qBlk::after {
  content: "";
  width: 20px;
  height: 10px;
  margin-left: auto;
  background: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="9" viewBox="0 0 16 9" fill="none"><path d="M1 1.25L8 7.75L15 1.25" stroke="%23fff"/></svg>') center/contain no-repeat;
  display: block;
  flex-shrink: 0;
  transition: 0.5s;
}
.secFaq__faqList .listItem__qBlk.open::after {
  transform: rotate(180deg);
}
.secFaq__faqList .listItem__aBlk {
  width: calc(100% - 30px);
  max-height: 0;
  margin-left: auto;
  display: flex;
  align-items: flex-start;
  grid-gap: 10px;
  transition: 0.5s;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
}
.secFaq__faqList .listItem__aBlk::before {
  content: "A.";
  font-size: 250%;
  font-family: "Beau Rivage", cursive;
  flex-shrink: 0;
  display: none;
}
.secFaq__faqList .listItem__aBlk.open {
  padding: 15px 0;
  max-height: 10000px;
  opacity: 1;
  pointer-events: auto;
}
.secFaq__faqList .listItem__aBlk.open::before {
  display: block;
}
.secFaq__faqList .listItem__aBlk_txtWrap {
  min-height: 4.5em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.secFaq__faqList .listItem__aBlk dl {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 8em 2.5em;
  grid-gap: 0 20px;
}
.secFaq__faqList .listItem__aBlk dl dt {
  font-weight: 400;
  text-align: right;
}
.secFaq__btnWrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.ctaBlk {
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .ctaBlk {
    display: none;
  }
}
.ctaBlk__btnsWrap {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  grid-gap: 20px;
  flex-shrink: 0;
}
.ctaBlk__btnsWrap li {
  width: calc(50% - 10px);
}
.ctaBlk__btnsWrap .ctaBtn {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .ctaBlk__btnsWrap {
    max-width: 700px;
  }
  .ctaBlk__btnsWrap li {
    width: calc((100% - 40px) / 3);
  }
}

.sidebar {
  width: 0;
  height: 100vh;
  background-color: rgba(51, 51, 51, 0.9);
  backdrop-filter: blur(5px);
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1042;
  transition: 0.5s;
  overflow-x: hidden;
}
@media screen and (max-width: 1199px) {
  .sidebar {
    opacity: 0;
    pointer-events: none;
  }
  .sidebar.visible {
    width: 100%;
    opacity: 1;
    pointer-events: auto;
  }
  .sidebar.visible .sidebar__contents {
    opacity: 1;
  }
}
@media screen and (min-width: 1200px) {
  .sidebar {
    width: 300px;
    height: calc(100vh - 65px);
    background-color: #4C4C4C;
    justify-content: center;
    top: 65px;
  }
}
@media screen and (min-width: 1440px) {
  .sidebar {
    width: 390px;
  }
}
.sidebar__contents {
  width: calc(100% - 60px);
  max-width: 314px;
  height: 100%;
  padding: 35px 0 60px;
  background-color: #4C4C4C;
  display: flex;
  flex-direction: column;
  grid-gap: 45px;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.sidebar__contents::-webkit-scrollbar {
  display: none;
}
@media screen and (min-width: 1200px) {
  .sidebar__contents {
    width: 100%;
    opacity: 1;
  }
}
.sidebar__blk {
  width: 100%;
}
.sidebar__blk_ttl {
  margin-bottom: 14px;
  --lh: 1;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  transition: 0.5s;
}
.sidebar__blk_ttl .jp {
  font-size: 26px;
  font-weight: 600;
}
.sidebar__blk_ttl .en {
  font-size: 20px;
}
.sidebar__blk_form {
  width: 100%;
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  transition: 0.5s;
}
.sidebar__blk_form_inner {
  width: calc(100% - 10px);
  max-width: 237px;
  display: flex;
  flex-direction: column;
  grid-gap: 16px;
}
.sidebar__blk_form .submitBtn {
  padding: 0.5em 1.25em;
  background-color: var(--main);
  border-radius: 6px;
  --ls: 0.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  cursor: pointer;
}
.sidebar__blk_form .submitBtn:hover {
  background-color: color-mix(in srgb, var(--main), black 20%);
}
.sidebar__blk_inputBlk {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  grid-gap: 27px;
}
.sidebar__blk_inputBlk .inputWrap {
  width: 100%;
}
.sidebar__blk_inputBlk .inputWrap.sub {
  padding: 1.5em 1em 0 1.5em;
  margin-top: -27px;
  background-color: rgba(160, 145, 82, 0.2);
}
.sidebar__blk_inputBlk .inputWrap.sub--end {
  padding-bottom: 1.5em;
}
.sidebar__blk_inputBlk .inputWrap__ttl {
  margin-bottom: 0.375em;
  display: flex;
  align-items: center;
  grid-gap: 0.3125em;
}
.sidebar__blk_inputBlk .inputWrap__ttl::before {
  content: "";
  width: 0.625em;
  height: 0.625em;
  background-color: var(--main);
  border-radius: 50%;
  display: block;
  flex-shrink: 0;
}
.sidebar__blk_inputBlk .inputWrap__ttl.mt {
  margin-top: 0.625em;
}
.sidebar__blk_inputBlk .inputWrap__ttl.required::after {
  content: "必須";
  padding: 2px 10px;
  margin-left: 5px;
  background-color: rgba(160, 145, 82, 0.6);
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  display: inline-block;
}
.sidebar__blk_inputBlk .inputWrap__ttl.enquete {
  flex-wrap: wrap;
  align-items: flex-start;
}
.sidebar__blk_inputBlk .inputWrap__ttl.enquete span {
  width: calc(100% - 1.0714em);
  font-size: 87.5%;
  --lh: 1.5;
}
.sidebar__blk_inputBlk .inputWrap__ttl.enquete::before {
  transform: translateY(65%);
}
.sidebar__blk_inputBlk .inputWrap__ttl.enquete::after {
  margin-left: auto;
}
.sidebar__blk_inputBlk .inputWrap__row {
  display: flex;
  grid-gap: 0.375em;
}
.sidebar__blk_inputBlk .inputWrap__selectWrap {
  position: relative;
}
.sidebar__blk_inputBlk .inputWrap__selectWrap::before {
  content: "";
  width: 0.875em;
  height: 0.4063em;
  background: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="9" viewBox="0 0 16 9" fill="none"><path d="M1 1.25L8 7.75L15 1.25" stroke="%231B1B1B"/></svg>') center/contain no-repeat;
  position: absolute;
  top: 1.125em;
  right: 10px;
  z-index: 1;
  pointer-events: none;
}
.sidebar__blk_inputBlk input[type=text], .sidebar__blk_inputBlk input[type=tel], .sidebar__blk_inputBlk input[type=email], .sidebar__blk_inputBlk textarea, .sidebar__blk_inputBlk select {
  width: 100%;
  padding: 0.5714em 0.7143em;
  background-color: #fff;
  border: 1px solid #fff;
  color: var(--sub);
  font-size: 87.5%;
  line-height: 1.5;
  transition: 0.5s;
}
.sidebar__blk_inputBlk input[type=text]::placeholder, .sidebar__blk_inputBlk input[type=tel]::placeholder, .sidebar__blk_inputBlk input[type=email]::placeholder, .sidebar__blk_inputBlk textarea::placeholder, .sidebar__blk_inputBlk select::placeholder {
  color: #aaa;
}
.sidebar__blk_inputBlk input[type=text]:focus, .sidebar__blk_inputBlk input[type=tel]:focus, .sidebar__blk_inputBlk input[type=email]:focus, .sidebar__blk_inputBlk textarea:focus, .sidebar__blk_inputBlk select:focus {
  border: 1px solid var(--main);
  outline: 0;
}
.sidebar__blk_inputBlk .submitBtn {
  padding: 0.8em 1em;
  font-size: 10px;
  --ls: 0.05em;
  flex-shrink: 0;
}
.sidebar__blk_inputBlk .submitBtn.btn_voice {
  padding: 0.4167em 1.6667em;
  margin: 0.5em auto 0;
  font-size: 12px;
}
.sidebar__blk_inputBlk .submitBtn.btn_reset {
  margin-top: 2em;
  background-color: rgba(51, 51, 51, 0.8);
}
.sidebar__blk_inputBlk .msg {
  margin-top: 0.5em;
  color: var(--main);
  font-size: 75%;
  --lh: 1.5;
  text-align: center;
  display: block;
}
.sidebar__blk_inputBlk textarea {
  height: 110px;
}
.sidebar__blk_inputBlk_errMsg {
  color: #ff4a4b;
  font-size: 75%;
  text-align: center;
  display: block;
}
.sidebar__blk_submitBlk {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sidebar__blk_toggler {
  width: 80px;
  height: 30px;
  padding: 0 0 6px;
  margin: 0 auto;
  background-color: var(--main);
  background-color: rgba(51, 51, 51, 0.6);
  border-radius: 50%/0 0 100% 100%;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.sidebar__blk_toggler::after {
  content: "";
  width: 10px;
  height: 10px;
  background: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="9" viewBox="0 0 16 9" fill="none"><path d="M1 1.25L8 7.75L15 1.25" stroke="%23fff"/></svg>') center/contain no-repeat;
  display: block;
  flex-shrink: 0;
}
.sidebar__blk.visible .sidebar__blk_ttl {
  margin-bottom: 36px;
}
.sidebar__blk.visible .sidebar__blk_toggler {
  display: none;
}
.sidebar__blk.visible .sidebar__blk_form {
  max-height: 10000px;
  opacity: 1;
  pointer-events: auto;
}
.sidebar__blk .hidden {
  display: none !important;
}
.sidebar__blk .completeTtl {
  color: var(--main);
  font-size: 112.5%;
  font-weight: 600;
  text-align: center;
}
.sidebar__blk .note {
  font-size: 75%;
}
.sidebar__blk .note a {
  color: var(--main);
  text-decoration: underline;
}
.sidebar__blk .note a:hover {
  text-decoration: none;
}
.sidebar__toggler {
  width: 40px;
  height: 80px;
  padding: 0 0.125em 0 0;
  background-color: var(--sub);
  border-radius: 100% 0 0 100%/50%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
}
.sidebar__toggler_txt {
  writing-mode: sideways-lr;
  font-size: 75%;
  line-height: 1;
}
.sidebar__toggler_icon {
  width: 0.875em;
  height: 0.375em;
  background: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="9" viewBox="0 0 16 9" fill="none"><path d="M1 1.25L8 7.75L15 1.25" stroke="%23fff"/></svg>') center/contain no-repeat;
  display: block;
  transform: rotate(-90deg);
}
@media screen and (min-width: 1200px) {
  .sidebar__toggler {
    display: none;
  }
}
.sidebar__telWrap {
  margin: -10px 0 25px 0;
  color: var(--main);
  --lh: 1.5;
  text-align: center;
  filter: brightness(1.15);
}
.sidebar__telWrap a {
  font-size: 150%;
  font-weight: 700;
}
.sidebar__telWrap a .en {
  margin-right: 0.2em;
  font-size: 66.67%;
  display: inline-block;
}
.sidebar__telWrap small {
  font-size: 87.5%;
}

@media screen and (min-width: 1200px) {
  .footer {
    width: calc(100% - 300px);
    font-size: 14px;
  }
}
@media screen and (min-width: 1440px) {
  .footer {
    width: calc(100% - 390px);
    font-size: 15px;
  }
}
@media screen and (min-width: 1600px) {
  .footer {
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .footer__infoBlk {
    grid-gap: 1.25em;
  }
}
@media screen and (min-width: 1440px) {
  .footer__infoBlk {
    grid-gap: 2.5em;
  }
}
.footer__infoBlk_logo {
  width: 13.8571em;
}
@media screen and (min-width: 1200px) {
  .footer__infoBlk_logo {
    width: 8.125em;
  }
}
@media screen and (min-width: 1600px) {
  .footer__infoBlk_logo {
    width: 12.125em;
  }
}
@media screen and (min-width: 1200px) {
  .footer__infoBlk_nav1 {
    grid-gap: 1.25em;
  }
}
@media screen and (min-width: 1440px) {
  .footer__infoBlk_nav1 {
    grid-gap: 2.1875em;
  }
}
@media screen and (min-width: 1200px) {
  .footer__infoBlk_nav2 {
    grid-gap: 0.625em;
  }
}
@media screen and (min-width: 1440px) {
  .footer__infoBlk_nav2 {
    grid-gap: 1.25em;
  }
}
@media screen and (min-width: 1600px) {
  .footer__infoBlk_nav2 {
    grid-gap: 2.1875em;
  }
}