@charset "UTF-8";
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Noto Sans JP";
  background-color: #f7f8fa;
  color: #323940;
  overflow-x: hidden;
}

header {
  position: relative;
  background: linear-gradient(-25deg, rgba(255, 255, 255, 0.4) 50%, #F0F3F6 0);
  height: clamp(600px, 65vw, 780px);
}
header::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  background-image: url(../image/kv_pc_bg.svg);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: contain;
  z-index: 0;
}
header .header {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 42px 0 52px 0;
  z-index: 100;
}
header .header::after {
  content: "";
  width: clamp(600px, 65vw, 780px);
  height: clamp(600px, 65vw, 780px);
  position: absolute;
  top: 0;
  right: 0;
  background-image: url(../image/kv_pc.svg);
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
  z-index: -1;
}
header .header figure {
  padding: 0 0 clamp(40px, 4vw, 53px) clamp(60px, 6vw, 86px);
}
header .header p.subtitle {
  padding-left: 22px;
  color: #323940;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: clamp(50px, 6vw, 80px);
  font-weight: 900;
  line-height: 1.2;
}
header .header h1 {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  margin: 24px 0 0 22px;
  padding: 5px 10px 2px 10px;
  background: #323940;
  color: #fff;
  font-size: clamp(30px, 4vw, 44px);
  font-family: "Avenir", sans-serif;
  font-weight: 900;
  line-height: 1;
  gap: 1rem;
}
header .header h1 br {
  display: none;
}
@media (max-width: 1024px) {
  header {
    height: 1130px;
    background: #F0F3F6;
    position: relative;
  }
  header::after {
    width: 100%;
    height: 390px;
    background-image: url(../image/kv_sp_bottom.svg);
    background-size: cover;
    background-position: top;
    top: unset;
    bottom: 0;
    left: 0;
    right: unset;
  }
  header .header {
    padding: 263px 0 0 0;
    display: grid;
    justify-content: center;
    justify-items: center;
  }
  header .header::before {
    content: "";
    width: 100%;
    height: 200px;
    position: absolute;
    background-image: url(../image/kv_sp_top.svg);
    background-size: cover;
    background-position: bottom;
    top: 0;
    left: 0;
    right: unset;
  }
  header .header::after {
    display: none;
  }
  header .header figure {
    padding: 0;
  }
  header .header figure img {
    max-width: 120px;
  }
  header .header p.subtitle {
    font-size: 31px;
    text-align: center;
    padding: 1rem 0 19px 0;
  }
  header .header h1 {
    display: grid;
    justify-items: center;
    font-size: 32px;
    text-align: center;
    margin: 0;
    background: unset;
    gap: 0;
  }
  header .header h1 span {
    padding: 10px;
    width: -moz-fit-content;
    width: fit-content;
    background-color: #323940;
  }
  header .header h1 br {
    display: block;
  }
}

section {
  overflow: hidden;
}
section .wrap_message {
  position: relative;
  background-color: #fff;
}
section .wrap_message::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-image: url(../image/img_decoration_about.svg);
  background-repeat: no-repeat;
  top: 0;
  left: 0;
}
@media (max-width: 768px) {
  section .wrap_message::before {
    max-width: 345px;
    background-size: contain;
    top: 350px;
    background-image: url(../image/img_decoration_about_sp.svg);
  }
}
section .wrap_message .inner {
  position: relative;
  width: 100%;
  max-width: 1152px;
  margin: 0 auto;
  padding: 430px 0 274px 0;
  z-index: 100;
}
section .wrap_message .inner .text_wrap {
  margin-left: auto;
  width: -moz-fit-content;
  width: fit-content;
}
section .wrap_message .inner .text_wrap h2 {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 64px;
  font-weight: 900;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  margin-bottom: 43px;
  line-height: 1.2;
}
section .wrap_message .inner .text_wrap p {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 24px;
  font-weight: 900;
  font-family: "Noto Sans JP";
  line-height: 1.75;
}
@media (max-width: 768px) {
  section .wrap_message .inner {
    width: 95%;
    padding: 174px 0 416px;
  }
  section .wrap_message .inner .text_wrap {
    margin-left: unset;
    margin-right: auto;
  }
  section .wrap_message .inner .text_wrap h2 {
    font-size: 40px;
    margin-bottom: 40px;
  }
  section .wrap_message .inner .text_wrap p {
    font-size: 1rem;
  }
}
section .wrap_message ul {
  overflow: hidden;
  height: clamp(460px, 40vw, 625px);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: clamp(50px, 9vw, 120px);
  position: relative;
  z-index: 100;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  section .wrap_message ul {
    display: grid;
    height: auto;
    padding-bottom: 231px;
  }
  section .wrap_message ul::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    background-image: url(../image/img_decoration_gray_bg.svg);
    background-repeat: no-repeat;
    background-position: bottom;
  }
}
section .wrap_message ul::after {
  content: "";
  width: 105%;
  height: 100%;
  max-width: 1630px;
  max-height: clamp(460px, 46vw, 639px);
  position: absolute;
  top: 53%;
  left: 52%;
  transform: translate(-50%, -50%);
  background-image: url(../image/img_decoration_about-list.svg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
@media (max-width: 1024px) {
  section .wrap_message ul::after {
    display: none;
  }
}
section .wrap_message ul li {
  width: clamp(250px, 23vw, 362px);
  position: relative;
}
@media (max-width: 1024px) {
  section .wrap_message ul li {
    width: 262px;
    height: 262px;
    margin-top: -80px;
    margin-right: 108px;
    display: grid;
    align-items: center;
    align-content: center;
  }
  section .wrap_message ul li::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='262' height='262' viewBox='0 0 262 262' fill='none'%3E%3Cpath opacity='0.8' d='M131 262C203.349 262 262 203.349 262 131C262 58.6507 203.349 0 131 0C58.6507 0 0 58.6507 0 131C0 203.349 58.6507 262 131 262Z' fill='url(%23paint0_linear_591_7610)' style='mix-blend-mode:multiply'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_591_7610' x1='131' y1='0' x2='131' y2='262' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23FFD106'/%3E%3Cstop offset='1' stop-color='white'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.8;
    z-index: -1;
  }
  section .wrap_message ul li:nth-of-type(1) {
    margin-top: 0;
  }
  section .wrap_message ul li:nth-of-type(1)::after {
    border-radius: 50%;
    background: linear-gradient(180deg, #FFD106 0%, transparent 100%);
  }
  section .wrap_message ul li:nth-of-type(2) {
    margin-right: 0;
    margin-left: 108px;
  }
  section .wrap_message ul li:nth-of-type(2)::after {
    background: linear-gradient(0deg, #FF5930 0%, #FFC6B8 50%, transparent 100%);
  }
  section .wrap_message ul li:nth-of-type(3) {
    width: 303px;
    margin-top: -100px;
    margin-right: 67px;
    padding-top: 5rem;
  }
  section .wrap_message ul li:nth-of-type(3)::after {
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    background: linear-gradient(180deg, transparent 9.4%, #1988C4 100%);
  }
}
section .wrap_message ul li p {
  font-size: 1rem;
  font-weight: 900;
}
@media (max-width: 1024px) {
  section .wrap_message ul li p {
    font-size: 12px;
  }
}
section .wrap_message ul li .en_title {
  font-size: 44px;
  font-weight: 900;
  font-family: "Avenir", sans-serif;
  color: #323940;
}
@media (max-width: 1024px) {
  section .wrap_message ul li .en_title {
    font-size: 30px;
  }
}
section .wrap_message ul li h3 {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 24px;
  color: #323940;
}
@media (max-width: 1024px) {
  section .wrap_message ul li h3 {
    font-size: 1rem;
  }
}
section .wrap_about {
  position: relative;
  z-index: 100;
}
@media (max-width: 1024px) {
  section .wrap_about {
    display: flex;
    flex-direction: column-reverse;
  }
}
section .wrap_about .inner_left {
  width: 90%;
  max-width: 1152px;
  margin: 0 auto;
  padding: 264px 0;
  display: grid;
  gap: 2rem;
}
@media (max-width: 1024px) {
  section .wrap_about .inner_left {
    padding: 60px 0 145px 0;
  }
}
section .wrap_about .inner_left p {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.8;
}
@media (max-width: 1024px) {
  section .wrap_about .inner_left p {
    font-size: 1rem;
  }
}
section .wrap_about .inner_right {
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 1024px) {
  section .wrap_about .inner_right {
    display: block;
    position: relative;
  }
}
section .wrap_about .inner_right figure {
  position: relative;
  height: 100%;
}
section .wrap_about .inner_right figure img {
  width: clamp(500px, 50vw, 699px);
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left;
     object-position: left;
}
@media (max-width: 1024px) {
  section .wrap_about .inner_right figure img {
    width: 100%;
    max-height: 504px;
    -o-object-position: center left;
       object-position: center left;
  }
}
section .wrap_about .inner_right figure figcaption {
  position: absolute;
  bottom: 16px;
  left: 10px;
  background-color: #fff;
  line-height: 1.1;
}
section .wrap_news {
  display: none;
  width: 90%;
  max-width: 1009px;
  margin: 0 auto;
  padding: 0 0 124px 0;
  position: relative;
  z-index: 100;
}
section .wrap_news h2 {
  color: #4A4A4A;
  font-size: 64px;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  section .wrap_news h2 {
    font-size: 2rem;
  }
}
section .wrap_news details {
  margin-bottom: 18px;
  background-color: #fff;
}
section .wrap_news details:last-child {
  margin-bottom: 0;
}
section .wrap_news details summary {
  position: relative;
  padding: 30px 54px 30px 43px;
  display: grid;
  gap: 24px;
  font-size: 1rem;
  font-weight: 900;
  cursor: po "Inter", "Noto Sans JP", sans-serif;
}
@media (max-width: 1024px) {
  section .wrap_news details summary {
    padding: 20px 104px 20px 24px;
  }
}
section .wrap_news details summary::before {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background-color: #f2f2f2;
  border-radius: 50%;
  /* 横線を描画 */
  background-image: linear-gradient(#333, #333);
  background-size: 16px 2px;
  background-position: center;
  background-repeat: no-repeat;
}
section .wrap_news details summary::after {
  content: "";
  position: absolute;
  /* 右端からの位置: 余白24px + 円の半径24px - 線の幅の半分1px = 47px */
  right: 47px;
  top: 50%;
  width: 2px;
  height: 16px;
  background-color: #333333;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}
section .wrap_news details summary span {
  color: #777777;
  font-weight: 500;
}
section .wrap_news details div {
  padding: 30px 54px 30px 43px;
}
@media (max-width: 1024px) {
  section .wrap_news details div {
    padding: 20px 24px;
  }
}
section .wrap_news details[open] summary::after {
  transform: translateY(-50%) scaleY(0);
}
section.content_message_news {
  position: relative;
  background-color: #F0F3F6;
  overflow: hidden;
}
section.content_message_news::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: -290px;
  left: 5px;
  background-image: url(../image/img_decoration_news_bg.svg);
  background-repeat: no-repeat;
  background-position: top left;
}
@media (max-width: 1024px) {
  section.content_message_news::after {
    background-image: url(../image/img_decoration_wt_red.svg);
    bottom: unset;
    right: 0;
    top: 140px;
    background-position: right;
  }
}

.container {
  background: #F0F3F6;
  color: #ffffff;
  position: relative;
}
.container.community {
  padding-bottom: 178px;
}
.container.community::before {
  content: "";
  width: 100%;
  height: 777px;
  position: absolute;
  top: 450px;
  left: 0;
  background: url(../image/img_community_bg.png) lightgray 0px -103px/100% 123.552% no-repeat;
  background-size: cover;
  background-position: bottom;
  mix-blend-mode: soft-light;
  z-index: 50;
}
@media (max-width: 1024px) {
  .container.community::before {
    top: 340px;
    height: 865px;
  }
}
.container.community::after {
  content: "";
  width: 100%;
  height: 1205px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #434C56;
}
.container.community .decoration {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  background-image: url(../image/img_decoration_community_bg.svg);
  background-repeat: no-repeat;
  background-position: bottom right;
}
@media (max-width: 1024px) {
  .container.community .decoration {
    background: url(../image/img_decoration_yellow-sp.svg);
    background-repeat: no-repeat;
    background-position: bottom;
  }
}
.container.commerce {
  padding-bottom: 259px;
}
.container.commerce::before {
  content: "";
  width: 100%;
  height: 777px;
  position: absolute;
  top: 520px;
  left: 0;
  background: url(../image/img_commerce_bg.png) lightgray 0px -103px/100% 123.552% no-repeat;
  background-size: cover;
  background-position: bottom;
  mix-blend-mode: soft-light;
  z-index: 50;
}
@media (max-width: 1024px) {
  .container.commerce::before {
    top: 434px;
    height: 660px;
    background-position: center;
  }
}
.container.commerce::after {
  content: "";
  width: 100%;
  height: 1295px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #434C56;
}
@media (max-width: 1024px) {
  .container.commerce::after {
    height: 1090px;
  }
}
.container.commerce .main-title {
  margin-bottom: 55px;
}
@media (max-width: 1024px) {
  .container.commerce .main-title {
    margin-bottom: 56px;
  }
}
@media (max-width: 1024px) {
  .container.commerce .sub-title {
    margin-bottom: 106px;
  }
}
.container.commerce .decoration {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: url(../image/img_decoration_commerce_bg.svg);
  background-repeat: no-repeat;
  background-position: bottom left;
}
@media (max-width: 1024px) {
  .container.commerce .decoration {
    background-image: url(../image/img_decoration_red-sp.svg);
    background-position: bottom;
  }
}
.container.commerce .intro-area {
  margin: 0 auto 148px auto;
}
@media (max-width: 1024px) {
  .container.commerce .intro-area {
    margin: 0 auto;
  }
}
@media (max-width: 1024px) {
  .container.commerce .hero-content::after {
    content: "";
    width: 260px;
    height: 130px;
    top: 302px;
    right: 0;
    position: absolute;
    background-image: url(../image/img_decoration_wt-sp.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
  }
}
.container .hero-content {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  z-index: 200;
}
@media (max-width: 1024px) {
  .container .hero-content {
    text-align: center;
  }
  .container .hero-content::after {
    content: "";
    width: 260px;
    height: 130px;
    top: 165px;
    right: 0;
    position: absolute;
    background-image: url(../image/img_decoration_wt-sp.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
  }
}
.container .main-title {
  width: 90%;
  font-size: clamp(150px, 13vw, 172px);
  font-weight: 900;
  line-height: 0.8;
  margin-top: -10px;
  margin-bottom: 110px;
  font-family: "Avenir", sans-serif;
}
.container .main-title .text-yellow {
  color: #fccf00;
}
@media (max-width: 1024px) {
  .container .main-title {
    font-size: clamp(50px, 15.6vw, 61px);
    width: 100%;
    margin-top: -4px;
    margin-bottom: 45px;
    text-align: left;
  }
}
.container .sub-title {
  width: 90%;
  max-width: 1152px;
  font-size: 64px;
  font-weight: 900;
  margin: 0 auto 60px auto;
  line-height: 1.4;
  color: #fff;
  font-family: "Inter", "Noto Sans JP", sans-serif;
}
@media (max-width: 1024px) {
  .container .sub-title {
    position: relative;
    font-size: 44px;
    text-align: left;
    margin: 0 auto 163px auto;
    line-height: 1.2;
  }
}
.container .sub-title br.sp {
  display: none;
}
@media (max-width: 1024px) {
  .container .sub-title br.sp {
    display: block;
  }
}
.container .bg_img {
  position: absolute;
  top: 200px;
  left: 0;
  z-index: 100;
}
.container .intro-area {
  width: 90%;
  max-width: 1152px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  margin: 0 auto 90px auto;
}
@media (max-width: 1024px) {
  .container .intro-area {
    flex-direction: column;
    align-items: center;
    display: block;
    margin: 0 auto;
  }
}
.container .intro-text {
  max-width: 700px;
  line-height: 2.1;
}
.container .intro-text p {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
}
@media (max-width: 1024px) {
  .container .intro-text p {
    font-size: 1rem;
    text-align: left;
  }
}
.container .intro-text p:last-child {
  margin-bottom: 0;
}
.container .yellow-badge, .container .orange-badge {
  background: linear-gradient(307deg, rgba(249, 191, 0, 0.7) 14.67%, #F9BF00 84.77%);
  color: #ffffff;
  width: 307px;
  height: 307px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: bold;
  position: absolute;
  right: -100px;
  top: 100px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  line-height: 1.4;
  font-size: 24px;
}
@media (max-width: 1024px) {
  .container .yellow-badge, .container .orange-badge {
    position: relative;
    top: 0;
    right: 0;
    margin-bottom: 40px;
    width: 162px;
    height: 162px;
    margin: 100px 0px 0px auto;
    font-size: 14px;
  }
}
.container .orange-badge {
  background: linear-gradient(307deg, rgba(255, 89, 48, 0.7) 14.67%, #FF5930 84.77%);
}
.container .card-grid {
  width: 90%;
  display: flex;
  gap: 40px;
  max-width: 950px;
  margin: 60px auto 0;
  position: relative;
  z-index: 200;
}
@media (max-width: 1024px) {
  .container .card-grid {
    width: 100%;
    max-width: unset;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    margin: -40px 0 0 0;
    padding-bottom: 100px;
    padding-left: 20px;
    padding-right: 20px;
    scrollbar-width: none;
  }
  .container .card-grid::-webkit-scrollbar {
    display: none;
  }
}
.container .card-grid .card-column {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto auto;
  grid-auto-flow: column;
  gap: 40px;
  margin-bottom: 160px;
}
.container .card-grid .card-column > :nth-child(-n+3) {
  transform: translateY(160px);
  z-index: 100;
}
.container .card-grid .card-column > :nth-child(n+7):nth-child(-n+9) {
  transform: translateY(80px);
}
@media (max-width: 1024px) {
  .container .card-grid .card-column {
    grid-template-columns: unset;
    grid-template-rows: auto auto;
    margin-top: 0 !important;
    margin-bottom: 0;
    padding: 0 20px;
    scroll-snap-align: center;
    gap: 20px;
  }
  .container .card-grid .card-column > :nth-child(-n+3), .container .card-grid .card-column > :nth-child(n+7):nth-child(-n+9) {
    transform: unset;
    z-index: unset;
  }
  .container .card-grid .card-column > :nth-child(even) {
    transform: translateX(100px) !important;
    z-index: 100;
  }
}
.container .card-grid .card-column .card.bt-right {
  border-radius: 8px 8px 64px 8px;
}
@media (max-width: 1024px) {
  .container .card-grid .card-column .card.bt-right {
    border-radius: 8px 8px 40px 8px;
  }
}
.container .card-grid .card-column .card.top-right {
  border-radius: 8px 64px 8px 8px;
}
@media (max-width: 1024px) {
  .container .card-grid .card-column .card.top-right {
    border-radius: 8px 40px 8px 8px;
  }
}
.container .card-grid .card-column .card.top-left {
  border-radius: 64px 8px 8px 8px;
}
@media (max-width: 1024px) {
  .container .card-grid .card-column .card.top-left {
    border-radius: 40px 8px 8px 8px;
  }
}
.container .card-grid .card-column .card.bt-left {
  border-radius: 8px 8px 8px 64px;
}
@media (max-width: 1024px) {
  .container .card-grid .card-column .card.bt-left {
    border-radius: 8px 8px 8px 40px;
  }
}
@media (max-width: 1024px) {
  .container .card-grid .card-column .card {
    min-width: 224px;
  }
}
.container .card {
  background-color: #ffffff;
  padding: 56px 29px;
  border-radius: 32px 8px 32px 8px;
  color: #323940;
  position: relative;
}
@media (max-width: 1024px) {
  .container .card {
    padding: 40px 20px;
  }
}
.container .card h3 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 2rem;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .container .card h3 {
    font-size: 24px;
  }
}
.container .card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #323940;
  font-weight: 700;
  letter-spacing: 0.32px;
}
@media (max-width: 1024px) {
  .container .card p {
    font-size: 14px;
  }
}
.container .card .overlap-img-coworking {
  position: absolute;
  top: -110px;
  left: -70px;
}
@media (max-width: 1024px) {
  .container .card .overlap-img-coworking {
    top: unset;
    left: 120px;
    bottom: -65px;
    max-height: 120px;
  }
}
.container .card .overlap-img-livecommerce {
  position: absolute;
  right: -90px;
  bottom: 45px;
  width: 102px;
  height: 125px;
  z-index: 200;
}
@media (max-width: 1024px) {
  .container .card .overlap-img-livecommerce {
    right: -55px;
    bottom: -50px;
  }
}
.container .card .overlap-img-meeting {
  position: absolute;
  left: -75px;
  bottom: -100px;
  width: 218px;
  height: 166px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1024px) {
  .container .card .overlap-img-meeting {
    height: 123px;
    bottom: unset;
    top: -100px;
    right: -110px;
    left: unset;
    -o-object-fit: contain;
       object-fit: contain;
    z-index: 100;
  }
}
.container .card .overlap-img-cafe {
  position: absolute;
  left: -80px;
  bottom: 78px;
  width: 95px;
  height: 152px;
}
@media (max-width: 1024px) {
  .container .card .overlap-img-cafe {
    bottom: -80px;
    left: -20px;
  }
}

.hero {
  background-color: #434C56;
  padding: 80px 0 200px;
  color: #ffffff;
  position: relative;
  z-index: 1;
}
.hero .hero-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 1024px) {
  .hero .hero-inner {
    text-align: center;
  }
}
.hero .hero-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 24px;
}
.hero .hero-title .text-yellow {
  color: #fccf00;
}
@media (max-width: 1024px) {
  .hero .hero-title {
    font-size: 3rem;
  }
}
.hero .hero-subtitle {
  font-size: 1.8rem;
  margin-bottom: 60px;
  line-height: 1.4;
}
.hero .hero-body {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}
@media (max-width: 1024px) {
  .hero .hero-body {
    flex-direction: column;
    align-items: center;
  }
}
.hero .hero-text {
  max-width: 600px;
  line-height: 1.8;
}
.hero .hero-text p {
  margin-bottom: 20px;
}
.hero .hero-badge {
  background-color: rgba(230, 175, 15, 0.9);
  width: 240px;
  height: 240px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: bold;
  position: absolute;
  right: 0;
  top: -40px;
}
@media (max-width: 1024px) {
  .hero .hero-badge {
    position: relative;
    top: 0;
    margin: 40px auto 0;
  }
}
.hero .features {
  position: relative;
  max-width: 1100px;
  margin: -160px auto 0;
  padding: 0 20px 100px;
  z-index: 10;
}
.hero .features .bg-shape {
  position: absolute;
  border-radius: 50%;
  z-index: -1;
}
.hero .features .bg-shape.shape-pink {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #fbd8d5 0%, transparent 70%);
  left: -150px;
  top: 150px;
}
.hero .features .bg-shape.shape-white-1 {
  width: 300px;
  height: 300px;
  background-color: rgba(255, 255, 255, 0.6);
  left: 50px;
  top: -50px;
}
.hero .features .bg-shape.shape-white-2 {
  width: 400px;
  height: 400px;
  background-color: rgba(255, 255, 255, 0.6);
  right: -100px;
  bottom: 0;
}
.hero .features .features-inner {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
@media (max-width: 1024px) {
  .hero .features .features-inner {
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    margin-top: 60px;
    padding-bottom: 24px;
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
    scrollbar-width: none;
  }
  .hero .features .features-inner::-webkit-scrollbar {
    display: none;
  }
}
.hero .features .features-inner .col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hero .features .features-inner .col.col-left {
  margin-top: 100px;
}
.hero .features .features-inner .col.col-center {
  margin-top: 0px;
}
.hero .features .features-inner .col.col-right {
  margin-top: 50px;
}
@media (max-width: 1024px) {
  .hero .features .features-inner .col {
    margin-top: 0 !important;
    flex: 0 0 85%;
    scroll-snap-align: center;
  }
}
.hero .features .features-inner .card {
  background-color: #ffffff;
  padding: 40px 32px;
  border-radius: 32px 8px 32px 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  position: relative;
  color: #323940;
}
.hero .features .features-inner .card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.hero .features .features-inner .card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #555555;
}
.hero .features .features-inner .card .card-img-overlap {
  position: absolute;
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.hero .features .features-inner .card .card-img-overlap.img-circle {
  border-radius: 50%;
  right: -20px;
  bottom: -20px;
}
.hero .features .features-inner .card .card-img-overlap.img-square {
  border-radius: 8px;
  left: -20px;
  bottom: -20px;
}

footer {
  position: relative;
  background: #E9EDF1;
  overflow: hidden;
}
footer::after {
  content: "";
  width: clamp(600px, 65vw, 780px);
  height: clamp(600px, 65vw, 780px);
  position: absolute;
  bottom: -55px;
  right: -150px;
  background-image: url(../image/kv_pc.svg);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
}
footer .footer {
  position: relative;
  display: grid;
  grid-template-columns: auto auto;
  justify-self: center;
  max-width: 1120px;
  margin: 0 auto;
  padding: 210px 0;
  gap: 0 clamp(40px, 5vw, 64px);
  z-index: 100;
}
footer .footer .inner_left {
  height: -moz-fit-content;
  height: fit-content;
  display: grid;
  justify-content: center;
}
footer .footer .inner_left.top {
  grid-column: 1/2;
  grid-row: 1/2;
}
footer .footer .inner_left.bottom {
  grid-column: 1/2;
  grid-row: 2/3;
}
footer .footer .inner_left figure {
  height: -moz-fit-content;
  height: fit-content;
  padding: 18px 0 34px 0;
  display: grid;
  justify-content: center;
}
footer .footer .inner_left h2 {
  font-size: 24px;
  font-weight: 900;
  font-family: "Avenir", sans-serif;
  margin-bottom: 19px;
}
footer .footer .inner_left p {
  font-size: 1rem;
  font-family: "Avenir", sans-serif;
  text-align: center;
  font-weight: 500;
  color: #323940;
  margin-bottom: 2rem;
}
footer .footer .inner_left .links {
  display: grid;
  gap: 1rem;
}
footer .footer .inner_left .links a {
  width: 296px;
  background-color: #323940;
  color: #fff;
  text-decoration: unset;
  padding: 20px 2rem;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: "Inter", "Noto Sans JP", sans-serif;
  transition: 0.3s;
}
footer .footer .inner_left .links a:hover {
  padding: 20px 1.5rem 20px 2rem;
  box-shadow: 0 0 10px #666;
}
footer .footer .inner_left .links a::after {
  content: "";
  width: 1rem;
  height: 1rem;
  display: block;
  background-image: url(../image/ico_target_blank.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
footer .footer .inner_right {
  grid-column: 2/3;
  grid-row: 1/3;
}
footer .footer .inner_right iframe {
  width: clamp(460px, 55vw, 784px);
  height: 520px;
  border-radius: 1rem;
}
footer p.copyright {
  padding: 2rem 0;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: #323940;
  position: relative;
  z-index: 100;
}
@media (max-width: 1024px) {
  footer::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url(../image/img_decoration_gray-sp.svg);
    background-repeat: no-repeat;
    background-position: center top;
  }
  footer::after {
    width: 100%;
    height: clamp(200px, 70vw, 268px);
    bottom: 0;
    left: 0;
    background-image: url(../image/img_decoration_footer_sp.svg);
    background-size: contain;
    background-position: top;
  }
  footer .footer {
    display: grid;
    padding: 180px 0 260px 0;
  }
  footer .footer .inner_left.top {
    grid-column: 1/2;
    grid-row: 1/2;
  }
  footer .footer .inner_left.bottom {
    grid-column: 1/2;
    grid-row: 3/4;
  }
  footer .footer .inner_left figure {
    padding: 0 0 34px 0;
  }
  footer .footer .inner_left figure img {
    max-width: 120px;
  }
  footer .footer .inner_left p {
    font-size: 14px;
  }
  footer .footer .inner_left .links a {
    width: 330px;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
  }
  footer .footer .inner_left .links a::after {
    position: absolute;
    right: 2rem;
  }
  footer .footer .inner_right {
    grid-column: 1/2;
    grid-row: 2/3;
  }
  footer .footer .inner_right iframe {
    width: 100vw;
    height: 390px;
    border-radius: 0;
    margin-bottom: 54px;
  }
}/*# sourceMappingURL=style.css.map */