@charset "UTF-8";

/* 202511リニューアル */
.abel-regular {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.cmn-inr {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}
.cmn-inr02 {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.cmn-btn .arrow-box {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  position: absolute;
  right: 32px;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #eae5e0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cmn-btn {
  display: flex;
  align-items: center;
  padding: 14px 20px 14px 32px;
  border: solid 1px #937c82;
  position: relative;
  border-radius: 5px;
  font-size: 14px;
  letter-spacing: 0;
  transition: all 0.3s;
  text-decoration: unset;
  max-width: 224px;
}
@media screen and (max-width: 1024px), print {
  .cmn-btn {
    padding: 8px 16px 8px 32px;
  }
}
.cmn-btn::before {
  content: "";
  width: 4px;
  height: 4px;
  background: #e85471;
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.cmn-btn .arrow-box {
  right: 20px;
}
.cmn-btn:hover {
  background: #463a3d;
  color: #fff;
  transition: all 0.3s;
  text-decoration: unset;
}

.top {
  background: #f6f4f2;
}
.top * {
  font-family: "Noto Sans JP", sans-serif;
}
.top .ttl {
  font-size: 64px;
  line-height: 1;
  margin-bottom: 8px;
  color: #463a3d;
    letter-spacing: -0.08em;
  font-family: "Abel", sans-serif;
}
@media screen and (max-width: 1024px), print {
  .top .ttl {
    font-size: 40px;
  }
}
.top .subttl {
  font-size: 12px;
  line-height: 1;
  color: #8a7b7f;
  position: relative;
  padding-left: 13px;
}
.top .subttl::before {
  content: "";
  width: 5px;
  height: 4px;
  background: #e85471;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
/*============================
#fv
============================*/
#top-fv {
  width: 100%;
  height: 100vh;
  background-image: url(../images/index/fv_bg01_pc.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
#top-fv .top-fv_ttl {
  font-size: 40px;
  line-height: 1.6em;
  letter-spacing: 0.04em;
  color: #fff;
  position: absolute;
  left: 120px;
  bottom: 80px;
}
@media screen and (max-width: 1024px), print {
  #top-fv .top-fv_ttl {
    font-size: 28px;
    left: 40px;
    bottom: 80px;
  }
}
@media screen and (max-width: 641px), print {
  #top-fv .top-fv_ttl {
    font-size: 22px;
    left: 24px;
	  bottom: 60vh;
  }
}
/* もともとのスタイル + スライド用に少し調整 */
#top-fv {
  width: 100%;
  height: 100vh;
  background-image: url(../images/index/fv_bg01_pc.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  overflow: hidden;
}

/* 各スライド共通 */
#top-fv .fv-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  animation: fvFade 15s infinite;
}

/* それぞれのスライド画像 */
#top-fv .fv-slide--1 {
  background-image: url(../images/index/fv_bg01_pc.jpg);
  animation-delay: 0s;
}

#top-fv .fv-slide--2 {
  background-image: url(../images/index/fv_bg02_pc.jpg);
  animation-delay: 5s;
}

#top-fv .fv-slide--3 {
  background-image: url(../images/index/fv_bg03_pc.jpg);
  animation-delay: 10s;
}
@media screen and (max-width: 1024px), print {
	#top-fv {
		background-image: url(../images/index/fv_bg01_tb.jpg);
	}
	#top-fv .fv-slide--1 {
  background-image: url(../images/index/fv_bg01_tb.jpg);
}
	#top-fv .fv-slide--2 {
  background-image: url(../images/index/fv_bg02_tb.jpg);
  animation-delay: 5s;
}
	#top-fv .fv-slide--3 {
  background-image: url(../images/index/fv_bg03_tb.jpg);
  animation-delay: 10s;
}
}
@media screen and (max-width: 768px), print {
	#top-fv {
		background-image: url(../images/index/fv_bg01_sp.jpg);
		background-position: center bottom;
		height:calc(100vh - 80px);
	}
	#top-fv .fv-slide {
		background-position: center bottom;
	}
	#top-fv .fv-slide--1 {
  background-image: url(../images/index/fv_bg01_sp.jpg);
}
	#top-fv .fv-slide--2 {
  background-image: url(../images/index/fv_bg02_sp.jpg);
  animation-delay: 5s;
}
	#top-fv .fv-slide--3 {
  background-image: url(../images/index/fv_bg03_sp.jpg);
  animation-delay: 10s;
}
}
/* フェードイン・アウトのアニメーション */
@keyframes fvFade {
  0%   { opacity: 0; }
  8%   { opacity: 1; }  /* フェードイン */
  33%  { opacity: 1; }  /* 表示キープ */
  41%  { opacity: 0; }  /* フェードアウト */
  100% { opacity: 0; }
}

/*============================
#concept
============================*/
#top-concept {
  padding: 120px 0 60px 0;
  overflow: hidden;
}
@media screen and (max-width: 1024px), print {
  #top-concept {
    padding: 12% 0 6% 0;
  }
}
@media screen and (max-width: 768px), print {
  #top-concept {
    padding: 64px 0 40px 0;
  }
}
#top-concept .cmn-inr {
  display: flex;
  gap: 80px;
}
@media screen and (max-width: 768px), print {
  #top-concept .cmn-inr {
    display: block;
  }
}
.top-concept_box-l {
  width: 39.167%;
}
@media screen and (max-width: 1200px), print {
  .top-concept_box-l {
    width: 50%;
  }
}
@media screen and (max-width: 768px), print {
  .top-concept_box-l {
    width: 100%;
  }
}

.top-concept_box-l .box-l_ttl-wrap {
  margin-bottom: 56px;
}
.top-concept_box-l .box-l_txt-wrap h3 {
  margin-bottom: 36px;
  font-size: 28px;
  line-height: 1.6em;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 1024px), print {
  .top-concept_box-l .box-l_txt-wrap h3 {
    font-size: 20px;
    margin-bottom: 28px;
  }
}
.top-concept_box-l .box-l_txt-wrap p {
  font-size: 16px;
  line-height: 2em;
  letter-spacing: 0;
  font-weight: 400;
}
@media screen and (max-width: 1024px), print {
  .top-concept_box-l .box-l_txt-wrap p {
    font-size: 14px;
  }
}
.top-concept_box-l .box-l_txt-wrap {
  margin-bottom: 32px;
}
@media screen and (max-width: 768px), print {
  .top-concept_box-l .box-l_txt-wrap {
    margin-top: 4%;
  }
}

.top-concept_box-r {
  width: 54.25%;
}
@media screen and (max-width: 768px), print {
  .top-concept_box-r {
    width: 100%;
    max-width: 480px;
    margin: 8% auto 0 auto;
  }
}
.top-concept_box-r picture {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
}
.top-concept_box-r picture img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}
.top-concept_box-r picture::after {
  content: "";
  background-image: url(../images/index/top-concept_deco.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 81.5%;
  height: auto;
  aspect-ratio: 531 / 542;
  position: absolute;
  right: -20%;
  top: -20%;
  z-index: 1;
}
/*============================
#feature
============================*/

#top-feature {
  overflow: hidden;
  padding: 60px 0;
  background: #f5f1ec;
}
@media screen and (max-width: 1024px), print {
  #top-feature {
    padding: 12% 0;
  }
}
@media screen and (max-width: 768px), print {
  #top-feature {
    padding: 64px 0 40px 0;
  }
}
#top-feature .ttl-wrap {
  margin-bottom: 32px;
}
.feature-slider {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}

.feature-slider__viewport {
  position: relative;
}
.feature-slider__track {
  /* display: flex; */
  list-style: none;
  padding: 0;
  margin: 0;
  /* gap: 40px; */
}
.feature-slide {
  /* flex: 0 0 520px; */
  width: 520px;
  margin: 0 20px;
  transform-origin: center center;
  transform: scale(0.9);
  opacity: 0.6;
  position: relative;
  transition: all 0.3s;
	
}
@media screen and (max-width: 641px), print {
  .feature-slide {
    width: 340px;
    margin: 0 10px;
  }
}
.feature-slide.is-active {
  transform: scale(1);
  opacity: 1;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}
.feature-slide__num {
  content: "";
  color: #463a3d;
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 96px;
  line-height: 1em;
  position: absolute;
  right: 40px;
  top: 170px;
}
@media screen and (max-width: 1024px), print {
  .feature-slide__num {
    font-size: 64px;
    right: 24px;
    top: 186px;
  }
}

.feature-slide__inner {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
}

.feature-slide__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.feature-slide__body {
  padding: 24px 28px 28px;
}
.feature-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #463a3d;
  z-index: 10;
  opacity: 0.8;
}

.feature-slider_parts {
  width: 160px;
  margin: 0 auto;
  position: relative;
}
.feature-slider__pager {
  text-align: center;
  font-size: 20px;
  letter-spacing: 0.2em;
  color: #463a3d;
  /* width: 68px; */
  margin: 24px auto 0 auto;
  display: flex;
  justify-content: center;
}
.feature-slider__arrow--prev {
  left: 0px;
}
.feature-slider__arrow--next {
  right: 0px;
}
.feature-slider__arrow:hover {
  opacity: 1;
}
.feature-slider__current,
.feature-slider__total {
  min-width: 2ch;
  display: inline-block;
}
.feature-slide__label {
  color: #727171;
  font-size: 12px;
  line-height: 1;
  margin-bottom: 8px;
  position: relative;
  padding-left: 13px;
}
.feature-slide__label::before {
  content: "";
  display: block;
  width: 5px;
  height: 4px;
  background: #e85471;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.feature-slide__title {
  font-size: 24px;
  line-height: 1.34em;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  color: #463a3d;
}
@media screen and (max-width: 1024px), print {
  .feature-slide__title {
    font-size: 20px;
  }
}
.feature-slide__text {
  font-size: 16px;
  line-height: 2em;
  letter-spacing: 0.04em;
  color: #463a3d;
  margin-bottom: 16px;
  font-weight: 400;
}
@media screen and (max-width: 1024px), print {
  .feature-slide__text {
    font-size: 14px;
  }
}
.feature-slide__body .cmn-btn {
  margin: 0 auto;
}

/*============================
banner-section
============================*/
.banner-section {
  padding: 60px 0;
}
@media screen and (max-width: 1024px), print {
  .banner-section {
    padding: 6% 0;
  }
}
@media screen and (max-width: 768px), print {
  #top-feature {
    padding: 40px 0;
  }
}
.banner-section a {
  display: block;
  width: 100%;
  height: auto;
  padding: 48px 80px;
  background-image: url(../images/index/banner-section01_bg_pc.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 24px;
  text-decoration: none;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px), print {
  .banner-section a {
    padding: 0;
    background: unset;
  }
}
.banner-section01 a::before {
  content: "";
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 876 / 488;
  background-image: url(../images/index/banner-section01_deco.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: -25%;
  top: -55%;
  pointer-events: none;
  z-index: -1;
}

.banner-section a h2 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.42em;
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 24px;
}
@media screen and (max-width: 1024px), print {
  .banner-section a h2 {
    font-size: 20px;
  }
}
.banner-section a .cmn-btn {
  background: #fff;
  border: unset;
  transition: all 0.3s;
}
.banner-section a:hover .cmn-btn {
  background: #463a3d;
  color: #fff;
  transition: all 0.3s;
}
.banner-section02 {
  background-image: url(../images/index/banner-section02_deco.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.banner-section02 a {
  display: block;
  width: 100%;
  height: auto;
  padding: 48px 80px;
  background-image: url(../images/index/banner-section02_bg_pc.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 24px;
  text-decoration: none;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px), print {
  .banner-section02 a {
    padding: 0;
    background: unset;
  }
}
/*============================
top-events
============================*/
#top-events {
  position: relative;
  padding: 60px 0 0 0;
}
@media screen and (max-width: 1024px), print {
  #top-events {
    padding: 12% 0 0 0;
  }
}
@media screen and (max-width: 768px), print {
  #top-events {
    padding: 64px 0 40px 0;
  }
}
#top-events .ttl-wrap {
  margin-bottom: 48px;
}
#top-events .system-list {
  /* display: flex;
  gap: 36px; */
  width: calc(100% + 36px);
  margin-left: -18px;
  margin-bottom: 64px;
}
@media screen and (max-width: 768px), print {
  #top-events .system-list {
    margin-bottom: 32px;
  }
}
#top-events .system-list li {
  /* width: calc((100% - 72px) / 3); */
  /* height: auto; */
  margin: 0 18px;
}
#top-events .system-list li a {
  text-decoration: none;
}
#top-events .system-list li a:hover {
  text-decoration: none;
}
#top-events .system-list li .system-pic {
  width: 100%;
  height: auto;
	aspect-ratio: 760 / 540;
  margin-bottom: 16px;
	border-radius:20px;
}
#top-events .system-list li .system-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

#top-events .system-list li .icon {
  background: #d3c8be;
  padding: 6px 16px;
  color: #463a3d;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  width: fit-content;
  border-radius: 5px;
  margin-bottom: 16px;
}
#top-events .system-list li .icon.icon02 {
  background: #e85471;
  color: #fff;
}
#top-events .system-list li .icon.icon03 {
  background: #bcbcbc;
  color: #fff;
}
#top-events .system-ttl-01 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 1024px), print {
  #top-events .system-ttl-01 {
    font-size: 16px;
  }
}
#top-events .sy-txt-01 {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}
#top-events .sy-txt-01 .ss {
  width: 58px;
  height: auto;
  color: #5c5c5c;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4em;
}
#top-events .sy-txt-01 .ss2 {
  width: calc(100% - 64px);
  color: #5c5c5c;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4em;
}

#top-events .cmn-btn {
  margin-left: auto;
}
@media screen and (max-width: 640px), print {
  #top-events .cmn-btn {
    margin: 0 auto;
  }
}

#top-events .events-nav {
  /* margin-top: 64px; */
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  font-size: 20px;
  letter-spacing: 0.05em;
  color: #463a3d;
  position: absolute;
  left: 20px;
  bottom: 15px;
}
@media screen and (max-width: 640px), print {
  #top-events .events-nav {
    position: unset;
    justify-content: center;
    margin-bottom: 8%;
  }
}

#top-events .events-nav__btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
}

#top-events .events-nav__btn:disabled {
  opacity: 0.3;
  cursor: default;
}

#top-events .events-nav__count {
  display: flex;
  align-items: center;
}

#top-events .events-nav__sep {
  margin: 0 8px;
}
/*============================
top-modelhouse
============================*/
#top-modelhouse {
  display: flex;
  gap: 56px;
  padding: 180px 0 40px 0;
  background-image: url(../images/index/modelhouse-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  margin-top: 120px;
}
@media screen and (max-width: 1200px), print {
  #top-modelhouse {
    padding: 180px 20px 40px 0;
  }
}
@media screen and (max-width: 1024px), print {
  #top-modelhouse {
    padding: 12% 20px 6% 0;
    margin-top: 12%;
  }
}
@media screen and (max-width: 768px), print {
  #top-modelhouse {
    padding: 64px 0 40px 0;
    margin-top: 0;
    flex-direction: column;
background-image: url(../images/index/modelhouse-bg_sp.png);
  }
}
.top-modelhouse_img {
  width: 59.73%;
  aspect-ratio: 2 / 1;
}
@media screen and (max-width: 768px), print {
  .top-modelhouse_img {
    width: calc(100% + 20px);
    margin-left: -20px;
    margin-bottom: 16px;
  }
}
.top-modelhouse_img img {
  width: 100%;
  height: auto;
}
.top-modelhouse_txt {
  width: 400px;
}
@media screen and (max-width: 768px), print {
  .top-modelhouse_txt {
    width: 100%;
    padding: 0 20px;
  }
}
.top-modelhouse_txt .ttl-wrap {
  margin-bottom: 48px;
}
.top-modelhouse_txt .top-modelhouse_txt_detail {
  font-size: 16px;
  line-height: 2em;
  letter-spacing: 0.04em;
  font-weight: 400;
  margin-bottom: 32px;
}
@media screen and (max-width: 1024px), print {
  .top-modelhouse_txt .top-modelhouse_txt_detail {
    font-size: 14px;
  }
}
.top-modelhouse_txt .cmn-btn {
  margin-bottom: 116px;
}
@media screen and (max-width: 1024px), print {
  .top-modelhouse_txt .cmn-btn {
    margin-bottom: 12%;
  }
}
@media screen and (max-width: 768px), print {
  .top-modelhouse_txt .cmn-btn {
    margin-bottom: 6%;
  }
}
.top-modelhouse_txt img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px), print {
  .top-modelhouse_txt img {
    display: block;
    max-width: 480px;
    margin: 0 auto;
  }
}

/*============================
#works
============================*/
#top-works {
  position: relative;
  background-image: url(../images/index/works-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  padding: 120px 0 60px 0;
}
@media screen and (max-width: 1024px), print {
  #top-works {
    padding: 12% 0 6% 0;
  }
}
@media screen and (max-width: 768px), print {
  #top-works {
    padding: 64px 0 40px 0;
	  background-image: url(../images/index/works-bg_sp.png);
  }
}
#top-works .ttl-wrap {
  margin-bottom: 48px;
}
#top-works .system-list {
  /* display: flex;
  gap: 36px; */
  width: calc(100% + 36px);
  margin-left: -18px;
  margin-bottom: 64px;
}
@media screen and (max-width: 768px), print {
  #top-works .system-list {
    margin-bottom: 32px;
  }
}
#top-works .system-list li {
  /* width: calc((100% - 72px) / 3); */
  /* height: auto; */
  margin: 0 18px;
}
#top-works .system-list li a {
  text-decoration: none;
}
#top-works .system-list li a:hover {
  text-decoration: none;
}
#top-works .system-list li .system-pic {
  width: 100%;
  height: auto;
  aspect-ratio: 376 / 237;
  margin-bottom: 16px;
}
#top-works .system-list li .system-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
#top-works .system-ttl-01 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
@media screen and (max-width: 1024px), print {
  #top-works .system-ttl-01 {
    font-size: 16px;
  }
}
#top-works .sy-txt-01 {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}
#top-works .sy-txt-01 .ss {
  width: 58px;
  height: auto;
  color: #5c5c5c;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4em;
}
#top-works .sy-txt-01 .ss2 {
  width: calc(100% - 64px);
  color: #5c5c5c;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4em;
}

#top-works .cmn-btn {
  margin-left: auto;
}
@media screen and (max-width: 640px), print {
  #top-works .cmn-btn {
    margin: 0 auto;
  }
}

#top-works .works-nav {
  /* margin-top: 64px; */
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  font-size: 20px;
  letter-spacing: 0.05em;
  color: #463a3d;
  position: absolute;
  left: 20px;
  bottom: 15px;
}
@media screen and (max-width: 640px), print {
  #top-works .works-nav {
    position: unset;
    justify-content: center;
    margin-bottom: 8%;
  }
}
#top-works .works-nav__btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
}

#top-works .works-nav__btn:disabled {
  opacity: 0.3;
  cursor: default;
}

#top-works .works-nav__count {
  display: flex;
  align-items: center;
}

#top-works .works-nav__sep {
  margin: 0 8px;
}
#top-works .system-cat {
  margin-top: 4px;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #999;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
#top-works .system-cat span {
  display: block;
  border: 1px solid #d4cbcd;
  border-radius: 16px;
  padding: 10px 14px;
  font-size: 12px;
  color: #463a3d;
  line-height: 1;
  letter-spacing: 0;
}
@media screen and (max-width: 1024px), print {
  #top-works .system-cat span {
    padding: 4px 8px;
    font-size: 12px;
  }
}

/*============================
top-voice
============================*/
#top-voice {
  position: relative;
  background-image: url(../images/index/voice-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  padding: 120px 0 60px 0;
  margin-top: 60px;
}
@media screen and (max-width: 1024px), print {
  #top-voice {
    padding: 12% 0 6% 0;
    margin-top: 6%;
  }
}
@media screen and (max-width: 768px), print {
  #top-voice {
    padding: 64px 0 40px 0;
    margin-top: 0;
	  background-image: url(../images/index/voice-bg_sp.png);
  }
}
#top-voice .ttl-wrap {
  margin-bottom: 48px;
}
#top-voice .system-list {
  /* display: flex;
  gap: 36px; */
  width: calc(100% + 36px);
  margin-left: -18px;
  margin-bottom: 64px;
}
@media screen and (max-width: 1024px), print {
  #top-voice .system-list {
    margin-bottom: 6%;
  }
}
#top-voice .system-list li {
  /* width: calc((100% - 72px) / 3); */
  /* height: auto; */
  margin: 0 18px;
}
#top-voice .system-list li a {
  text-decoration: none;
}
#top-voice .system-list li a:hover {
  text-decoration: none;
}
#top-voice .system-list li .system-pic {
  width: 100%;
  height: auto;
  aspect-ratio: 376 / 237;
  margin-bottom: 16px;
}
#top-voice .system-list li .system-pic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 20px;
}

#top-voice .system-ttl-01 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
@media screen and (max-width: 1024px), print {
  #top-voice .system-ttl-01 {
    font-size: 16px;
  }
}
#top-voice .sy-txt-01 {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}
#top-voice .sy-txt-01 .ss {
  width: 58px;
  height: auto;
  color: #5c5c5c;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4em;
}
#top-voice .sy-txt-01 .ss2 {
  width: calc(100% - 64px);
  color: #5c5c5c;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4em;
}

#top-voice .cmn-btn {
  margin-left: auto;
  max-width: 250px;
}
@media screen and (max-width: 640px), print {
  #top-voice .cmn-btn {
    margin: 0 auto;
  }
}

#top-voice .voice-nav {
  /* margin-top: 64px; */
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  font-size: 20px;
  letter-spacing: 0.05em;
  color: #463a3d;
  position: absolute;
  left: 20px;
  bottom: 15px;
}
@media screen and (max-width: 640px), print {
  #top-voice .voice-nav {
    position: unset;
    justify-content: center;
    margin-bottom: 8%;
  }
}

#top-voice .voice-nav__btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
}

#top-voice .voice-nav__btn:disabled {
  opacity: 0.3;
  cursor: default;
}

#top-voice .voice-nav__count {
  display: flex;
  align-items: center;
}

#top-voice .voice-nav__sep {
  margin: 0 8px;
}

/*============================
top-land
============================*/
#top-land {
  position: relative;
  background-image: url(../images/index/land-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
    background-position: center;
}
#top-land .top-land_inr {
	position: relative;
margin: auto;
  padding: 120px 0 296px 0;
	max-width: 1440px;
}
@media screen and (max-width: 1024px), print {
#top-land .top-land_inr {
    padding: 12% 0 20% 0;
  }
}
@media screen and (max-width: 768px), print {
#top-land .top-land_inr {
    padding: 64px 0;
  }
}
#top-land .top-land_box {
  width: 450px;
  height: auto;
  margin: 0 auto;
}
@media screen and (max-width: 768px), print {
  #top-land .top-land_box {
    width: 100%;
	  padding:0 42px;
  }
}
#top-land .top-land_box_subttl {
  color: #fff;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.43em;
  letter-spacing: 0.04em;
  padding-bottom: 8px;
  border-bottom: solid 1px #fff;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px), print {
  #top-land .top-land_box_subttl {
    font-size: 20px;
  }
}
#top-land .top-land_box_ttl {
  color: #fff;
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.33em;
  letter-spacing: 0.04em;
  padding-bottom: 8px;
  border-bottom: solid 1px #fff;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px), print {
  #top-land .top-land_box_ttl {
    font-size: 24px;
  }
}
#top-land .top-land_box_ttl span {
  font-size: 56px;
}
@media screen and (max-width: 768px), print {
  #top-land .top-land_box_ttl span {
    font-size: 36px;
  }
}
#top-land .top-land_box_area {
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5em;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px), print {
  #top-land .top-land_box_area {
    font-size: 12px;
  }
}
#top-land .cmn-btn {
  background: #fff;
  border: unset;
  margin: 0 auto;
}
#top-land .cmn-btn:hover {
  background: #463a3d;
}
#top-land .cmn-btn .arrow-box {
  background: rgba(255, 255, 255, 0.3);
}
#top-land .cmn-btn .arrow-box svg path {
  transition: all 0.3s;
}
#top-land .cmn-btn:hover .arrow-box svg path {
  fill: #fff;
  transition: all 0.3s;
}
.top-land_img01,
.top-land_img02 {
  position: absolute;
}
.top-land_img03 {
  display: none;
  width: 100%;
  max-width: 480px;
  margin: 28px auto 0 auto;
}
@media screen and (max-width: 1024px), print {
  .top-land_img01,
  .top-land_img02 {
    display: none;
  }
  .top-land_img03 {
    display: block;
  }
}
.top-land_img01 {
  top: 64px;
  left: 0;
  width: 32.5%;
  height: auto;
  aspect-ratio: 466 / 438;
}
@media screen and (max-width: 1024px), print {
}
.top-land_img02 {
  top: 60px;
  right: 0;
  width: 23.95%;
  height: auto;
  aspect-ratio: 345 / 467;
}

/*============================
top-product
============================*/
#top-product {
  padding: 120px 0 80px 0;
  background-image: url(../images/index/product-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  margin-top: -64px;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
@media screen and (max-width: 1024px), print {
  #top-product {
    padding: 12% 0 8% 0;
  }
}
@media screen and (max-width: 768px), print {
  #top-product {
    padding: 64px 0 40px 0;
	  margin-top:-24px;
	  background-image: url(../images/index/product-bg_sp.png);
  }
}
#top-product .cmn-inr {
  display: flex;
  gap: 56px;
}
@media screen and (max-width: 768px), print {
  #top-product .cmn-inr {
    flex-direction: column;
    gap: 24px;
  }
}
.top-product_img {
  width: 60%;
  aspect-ratio: 720 / 496;
}
@media screen and (max-width: 768px), print {
  .top-product_img {
    width: 100%;
    max-width: 480px;
  }
}
.top-product_img img {
  width: 100%;
  height: auto;
}
.top-product_txt {
  width: 400px;
  margin-top: 200px;
  position: relative;
}
@media screen and (max-width: 768px), print {
  .top-product_txt {
    width: 100%;
    margin-top: 0;
    background: #d3c8be;
    border-radius: 10px;
    padding: 40px 24px;
  }
}
.top-product_txt::before {
  content: "";
  display: block;
  width: 720px;
  height: 100%;
  position: absolute;
  left: -18vw;
  top: -64px;
  z-index: -1;
  background: #d3c8be;
  border-radius: 10px;
}
@media screen and (min-width: 1440px), print {
	.top-product_txt::before {
width: 50vw;
}
}
@media screen and (max-width: 768px), print {
  .top-product_txt::before {
    display: none;
  }
}
.top-product_txt .ttl-wrap {
  margin-bottom: 48px;
}
.top-product_txt .top-product_txt_detail {
  font-size: 16px;
  line-height: 2em;
  letter-spacing: 0.04em;
  font-weight: 400;
  margin-bottom: 32px;
}
@media screen and (max-width: 1024px), print {
  .top-product_txt .top-product_txt_detail {
    font-size: 14px;
  }
}
.top-product_txt .cmn-btn {
  margin-bottom: 116px;
}
@media screen and (max-width: 768px), print {
  .top-product_txt .cmn-btn {
    margin-bottom: 0;
  }
}
.top-product_txt img {
  width: 100%;
  height: auto;
}

/*============================
#top-about
============================*/
#top-about {
  padding: 120px 0;
  background-image: url(../images/index/about-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  position: relative;
}
@media screen and (max-width: 1024px), print {
  #top-about {
    padding: 12% 0;
  }
}
@media screen and (max-width: 768px), print {
  #top-about {
    padding: 64px 0 40px 0;
  }
}
#top-about::before {
  content: "";
  display: block;
  width: 507px;
  height: auto;
  aspect-ratio: 507 / 337;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
  background-image: url(../images/index/about-deco01.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
}
@media screen and (max-width: 768px), print {
  #top-about::before {
    width: 240px;
  }
}
#top-about::after {
  content: "";
  display: block;
  width: 352px;
  height: auto;
  aspect-ratio: 352 / 305;
  position: absolute;
  right: 120px;
  top: -30px;
  z-index: 0;
  background-image: url(../images/index/about-deco02.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
}
@media screen and (max-width: 768px), print {
  #top-about::after {
    width: 120px;
    right: -10%;
    top: -30px;
  }
}
#top-about .ttl-wrap {
  margin-bottom: 48px;
}
#top-about .top-about_links {
  display: flex;
  gap: 24px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px), print {
  #top-about .top-about_links {
    justify-content: center;
    flex-wrap: wrap;
  }
}
#top-about .top-about_links-item {
  width: calc((100% - 48px) / 3);
  background: #fff;
  padding: 20px 20px 28px 20px;
  transition: all 0.3s;
}
@media screen and (max-width: 768px), print {
  #top-about .top-about_links-item {
    width: calc((100% - 48px) / 2);
    padding: 8px;
  }
}
#top-about .top-about_links-item a {
  text-decoration: none;
}
#top-about .top-about_links-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 344 / 237;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px), print {
  #top-about .top-about_links-item img {
    margin-bottom: 12px;
  }
}
#top-about .top-about_links-item h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px 0 21px;
  position: relative;
  font-size: 20px;
}
@media screen and (max-width: 768px), print {
  #top-about .top-about_links-item h3 {
    font-size: 16px;
  }
}
#top-about .top-about_links-item h3 span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: #eae5e0;
  border-radius: 5px;
}

#top-about .top-about_links-item h3::before {
  content: "";
  width: 5px;
  height: 4px;
  background: #e85471;
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  margin: auto;
}
#top-about .top-about_links-item:hover {
  opacity: 0.6;
  transition: all 0.3s;
}

/*============================
#c1
============================*/
#c1 {
  padding: 120px 0 60px 0;
}
@media screen and (max-width: 1024px), print {
  #c1 {
    padding: 12% 0 6% 0;
  }
}
@media screen and (max-width: 768px), print {
  #c1 {
    padding: 64px 0 40px 0;
  }
}
#c1 .inner .flex-01 {
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  justify-content: space-between;
}

#c1 .inner .flex-01 .box-l {
  width: 224px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 1024px), print {
  #c1 .inner .flex-01 .box-l {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 8%;
  }
  #c1 .inner .flex-01 .box-l .cmn-btn {
    width: 240px;
  }
}
@media screen and (max-width: 768px), print {
  #c1 .inner .flex-01 .box-l .cmn-btn {
    width: 180px;
  }
}
#c1 .inner .flex-01 .box-l .box-l_ttl-wrap {
}
#c1 .inner .flex-01 .box-l .subttl::before {
  content: "";
  width: 5px;
  height: 4px;
  background: #e85471;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

#c1 .inner .flex-01 .box-r {
  position: relative;
  width: 810px;
  /* border-top: solid 1px #eae5e0; */
}
@media screen and (max-width: 1024px), print {
  #c1 .inner .flex-01 .box-r {
    width: 100%;
  }
}
#c1 .inner .flex-01 .box-r .system-list li {
  padding: 32px;
  border-bottom: solid 1px #eae5e0;
  position: relative;
}
@media screen and (max-width: 768px), print {
  #c1 .inner .flex-01 .box-r .system-list li {
    padding: 12px;
  }
}
#c1 .inner .flex-01 .box-r .system-list li .arrow-box {
  width: 20px;
  height: 20px;
  background: #eae5e0;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  padding-bottom: 2px;
}
#c1 .inner .flex-01 .box-r .system-list .sy-flex-01 {
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
}
@media screen and (max-width: 768px), print {
  #c1 .inner .flex-01 .box-r .system-list .sy-flex-01 {
    display: block;
  }
}
#c1 .inner .flex-01 .box-r .system-list .sy-flex-01 .box-l2 {
  width: 84px;
}
#c1 .inner .flex-01 .box-r .system-list .sy-flex-01 .box-l2 .sy-hi {
  font-size: 14px;
  line-height: 24px;
  color: #463a3d;
}
#c1 .inner .flex-01 .box-r .system-list .sy-flex-01 .box-r2 {
  width: calc(100% - 108px);
}
@media screen and (max-width: 768px), print {
  #c1 .inner .flex-01 .box-r .system-list .sy-flex-01 .box-r2 {
    width: 100%;
    padding-right: 12px;
    margin-top: 2%;
  }
}
#c1 .inner .flex-01 .box-r .system-list .sy-flex-01 .box-r2 .system-ttl-01 {
  font-size: 14px;
  line-height: 24px;
  color: #463a3d;
}

/*============================
.ft-menu
============================*/
.ft-menu {
  width: 100%;
  padding: 60px 0 80px 0;
}
@media screen and (max-width: 1024px), print {
  .ft-menu {
    padding: 6% 0 8% 0;
  }
}
@media screen and (max-width: 768px), print {
  .ft-menu {
    padding: 64px 0 40px 0;
  }
}
.ft-menu_list {
  display: flex;
  justify-content: center;
  gap: 8px;
  width: 100%;
}
@media screen and (max-width: 640px), print {
  .ft-menu_list {
    flex-wrap: wrap;
  }
}

.ft-menu_list-item {
  width: calc((100% - 16px) / 3);
  border-radius: 10px;
}
@media screen and (max-width: 640px), print {
  .ft-menu_list-item {
    width: calc((100% - 16px) / 2);
  }
}
@media screen and (max-width: 450px), print {
  .ft-menu_list-item {
    width: 100%;
  }
}

.ft-menu_list-item-link {
  position: relative;
  padding: 30px 32px;
  border-radius: 10px;
  background-color: #e85471;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  transition: all 0.3s;
  text-decoration: unset;
}
@media screen and (max-width: 768px), print {
  .ft-menu_list-item-link {
    padding: 16px;
  }
}

.ft-menu_list-item-link_ttl {
  font-size: 40px;
  margin-bottom: 8px;
}
@media screen and (max-width: 1024px), print {
  .ft-menu_list-item-link_ttl {
    font-size: 28px;
  }
}

.ft-menu_list-item-link_subttl {
  font-size: 12px;
  line-height: 1;
  color: #fff;
  position: relative;
  padding-left: 13px;
}
.ft-menu_list-item-link_subttl::before {
  content: "";
  width: 5px;
  height: 4px;
  background: #fff;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.ft-menu_list-item-link_arrow {
  position: absolute;
  right: 32px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}
@media screen and (max-width: 768px), print {
  .ft-menu_list-item-link_arrow {
    right: 16px;
  }
}
.ft-menu_list-item-link_arrow > div {
  width: 100%;
  height: 100%;
  background-image: url(../images/index/ft-menu_list-item-link_arrow.png);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: -10px;
  transition: all 0.3s;
}
.ft-menu_list-item-link:hover {
  opacity: 0.8;
  transition: all 0.3s;
  text-decoration: unset;
}
.ft-menu_list-item-link:hover .ft-menu_list-item-link_arrow > div {
  background-position: 12px;
  transition: all 0.3s;
}
