@charset "UTF-8";
:root {
  --em: 16;
}

body {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #111111;
}

a {
  color: #111111;
}

.lato {
  font-family: "Lato", sans-serif;
}

.krona-one {
  font-family: "Krona One", sans-serif;
}

.zen-kaku-gothic-antique {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

.flex {
  display: flex;
}

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

.container {
  position: relative;
  display: grid;
  overflow-x: clip;
}
@media screen and (max-width: 768px) {
  .container {
    grid-template-columns: 1fr min(80vw, 1000px) 1fr;
  }
}
@media screen and (min-width: 769px) {
  .container {
    grid-template-columns: 1fr min(90vw, 1000px) 1fr;
  }
}
.container > * {
  grid-column: 2/3;
}
.container > .content-left {
  grid-column: 1/3;
}
.container > .content-right {
  grid-column: 2/4;
}
.container > .content-full {
  grid-column: 1/4;
}
.container .container {
  grid-column: 1/4;
}

@media only screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}
@media only screen and (min-width: 769px) {
  .pc {
    display: block;
  }
}

@media only screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}
@media only screen and (min-width: 769px) {
  .sp {
    display: none;
  }
}

.sec-hd3 {
  position: relative;
  font-family: "Krona One", sans-serif;
  color: #176F6A;
  letter-spacing: -0.01em;
  line-height: 1.85;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .sec-hd3 {
    font-size: calc((34 / var(--em)) * 1rem);
  }
}
@media screen and (min-width: 769px) {
  .sec-hd3 {
    font-size: calc((48 / var(--em)) * 1rem);
  }
}
.sec-hd3::before {
  position: absolute;
  left: 0;
  top: -1.25em;
  content: "";
  font-weight: bold;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: calc((14 / var(--em)) * 1rem);
}

.header {
  font-size: calc((15 / var(--em)) * 1rem);
  font-weight: bold;
  font-family: "Lato", sans-serif;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .header {
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.7);
  }
}
@media screen and (min-width: 769px) {
  .header {
    background-color: #ffffff;
    height: 106px;
  }
}
.header.open {
  background-color: white;
}
.header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: min(90vw, 1160px);
  width: 100%;
  height: 100%;
  margin-inline: auto;
}
.header_inner_right {
  display: flex;
}
@media screen and (max-width: 768px) {
  .header_logo img {
    width: 85px;
  }
}
@media screen and (min-width: 769px) {
  .header_logo img {
    width: 110px;
  }
}
.header_list {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-right: 1.015625vw;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .header_list {
    display: none;
  }
}
.header_list_item {
  white-space: nowrap;
  overflow: hidden;
}
.header_list_item_link {
  color: transparent;
  text-shadow: 0 1.5em 0 #111111, 0 0 0 #111111;
  transition: text-shadow 0.3s;
}
.header_list_item_link:hover {
  text-shadow: 0 0 0 #111111, 0 -1.5em 0 #111111;
}
.header_btn {
  z-index: 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 155px;
  padding-block: 1em;
  border-radius: 1.5em;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #ffffff;
  background: transparent;
}
.header_btn::before {
  z-index: -1;
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 1.5em;
  background-color: #176F6A;
  transition: all 0.3s ease;
}
.header_btn::after {
  z-index: -2;
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 1.5em;
  background-image: linear-gradient(90deg, #497271 1%, #48B0AA);
}
.header_btn:hover::before {
  background-color: transparent;
}
@media screen and (max-width: 768px) {
  .header_btn {
    display: none;
  }
}
.header .js-hamburger-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
}
@media screen and (min-width: 769px) {
  .header .js-hamburger-btn {
    display: none;
  }
}
.header .js-hamburger-btn .bar {
  position: absolute;
  display: block;
  background-color: #111111;
  height: 3px;
  width: 28px;
  border-radius: 1.5px;
  transition: all 0.3s ease;
}
.header .js-hamburger-btn .bar1 {
  top: 11px;
  transition: all 0.3s ease;
}
.header .js-hamburger-btn .bar2 {
  bottom: 11px;
  transition: all 0.3s ease;
}
.header .js-hamburger-btn.open .bar1 {
  transform: translate(-5px, 5.5px) rotate(90deg);
}
.header .js-hamburger-btn.open .bar2 {
  transform: translate(5px, -5.5px) rotate(90deg);
}
.header .js-hamburger-nav {
  overflow-y: scroll;
  z-index: 99;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  transform: translateX(100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: calc(100dvh - 70px);
  padding-bottom: 10vw;
  font-size: calc((22 / var(--em)) * 1rem);
  font-weight: bold;
  background-color: #ffffff;
  transition: transform 0.3s ease-out;
}
@media screen and (min-width: 769px) {
  .header .js-hamburger-nav {
    display: none;
  }
}
.header .js-hamburger-nav.open {
  transform: translateX(0);
}
.header .js-hamburger-nav .hamburger_list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  width: 215px;
  margin-top: 49px;
}
.header .js-hamburger-nav .hamburger_list_item {
  gap: min(10.6666666667vw, 40px);
}
.header .js-hamburger-nav .hamburger_cta {
  display: flex;
  flex-direction: column;
  margin-top: 91px;
  margin-inline: min(10.6666666667vw, 40px);
}
.header .js-hamburger-nav .hamburger_cta_ttl {
  font-size: calc((26 / var(--em)) * 1rem);
  letter-spacing: -0.06em;
}
.header .js-hamburger-nav .hamburger_cta_p {
  white-space: nowrap;
  margin-top: 1em;
  font-size: calc((13 / var(--em)) * 1rem);
  line-height: 1.65;
  font-weight: 400;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}
.header .js-hamburger-nav .hamburger_cta_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 170px;
  height: 40px;
  margin-top: 1em;
  border-radius: 20px;
  color: #ffffff;
  font-size: calc((14 / var(--em)) * 1rem);
  letter-spacing: 0.06em;
  background-color: #176F6A;
  font-weight: bold;
}

.fv_copy {
  font-weight: bold;
  letter-spacing: -0.01em;
  line-height: 1.13;
}
@media screen and (max-width: 768px) {
  .fv_copy {
    padding-block: min(96vw, 360px) min(3.75vw, 48px);
    font-size: calc((40 / var(--em)) * 1rem);
  }
}
@media screen and (min-width: 769px) {
  .fv_copy {
    padding-block: 17.890625vw 6.25vw;
    font-size: calc((62 / var(--em)) * 1rem);
  }
}
.fv_copy .small {
  display: inline-block;
  font-weight: 400;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .fv_copy .small {
    font-size: calc((15 / var(--em)) * 1rem);
    transform: translateY(max(-5.3333333333vw, -20px));
  }
}
@media screen and (min-width: 769px) {
  .fv_copy .small {
    font-size: calc((17 / var(--em)) * 1rem);
    transform: translateY(-1.5625vw);
  }
}
.fv_movie {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  aspect-ratio: 1280/670;
  overflow-x: clip;
}
.fv_movie_txt {
  padding-block: 206px;
  text-align: center;
  font-size: calc((26 / var(--em)) * 1rem);
  font-weight: 500;
  line-height: 1.84;
  color: #ffffff;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 768px) {
  .fv_movie_txt {
    display: none;
  }
}
.fv_movie_txt_p {
  margin-top: 2.2em;
  font-size: calc((14 / var(--em)) * 1rem);
  line-height: 1.71;
}
.fv_movie_wrapper {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.fv_movie_wrapper video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.fv_movie_wrapper::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #B0BEBD;
  position: absolute;
  left: 0;
  top: 0;
  mix-blend-mode: multiply;
}
@media screen and (min-width: 769px) {
  .fv .container_sp {
    display: none;
  }
}
.fv .container_sp .fv_txt {
  margin-top: 120px;
  text-align: center;
  font-size: calc((21 / var(--em)) * 1rem);
  letter-spacing: -0.01em;
  line-height: 1.73;
  font-weight: bold;
}
.fv .container_sp .fv_txt_p {
  margin-top: 2.5em;
  font-size: calc((14 / var(--em)) * 1rem);
  font-weight: normal;
}

.fixed_btn {
  z-index: 99;
  position: fixed;
  right: 5vw;
  bottom: 5vw;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background-color: #176F6A;
}
.fixed_btn img {
  width: 22px;
}
@media screen and (min-width: 769px) {
  .fixed_btn {
    display: none;
  }
}

.business,
.member {
  --sticky-img-height:395px;
}

@media screen and (max-width: 768px) {
  .business {
    margin-block: 160px 200px;
  }
}
@media screen and (min-width: 769px) {
  .business {
    margin-block: 93px 79px;
  }
}
.business .sec-hd2_small {
  color: #176F6A;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .business .sec-hd2_small {
    font-size: calc((15 / var(--em)) * 1rem);
  }
}
.business .splide {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .business .splide {
    font-size: calc((32 / var(--em)) * 1rem);
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 769px) {
  .business .splide {
    font-size: calc((96 / var(--em)) * 1rem);
    margin-bottom: 88px;
  }
}
.business .splide__slide {
  color: #ffffff;
  text-shadow: 1px 1px 0 #176F6A, -1px 1px 0 #176F6A, 1px -1px 0 #176F6A, -1px -1px 0 #176F6A;
  white-space: nowrap;
  letter-spacing: -0.04em;
}
.business_list_item {
  display: flex;
}
@media screen and (max-width: 768px) {
  .business_list_item {
    flex-direction: column;
    gap: 16px;
  }
}
@media screen and (min-width: 769px) {
  .business_list_item {
    gap: min(6.5625vw, 84px);
  }
}
@media screen and (max-width: 768px) {
  .business_list_item:not(:last-of-type) {
    margin-bottom: 80px;
  }
}
@media screen and (min-width: 769px) {
  .business_list_item:not(:last-of-type) {
    margin-bottom: 70dvh;
  }
}
.business_list_item_txt {
  position: relative;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 768px) {
  .business_list_item_txt {
    padding-left: min(13.3333333333vw, 50px);
  }
}
@media screen and (min-width: 769px) {
  .business_list_item_txt {
    max-width: 50%;
    padding-left: 124px;
  }
}
.business_list_item_txt_num {
  position: absolute;
  top: 0;
  line-height: 1;
  color: #176F6A;
}
@media screen and (max-width: 768px) {
  .business_list_item_txt_num {
    left: 0;
    font-size: calc((28 / var(--em)) * 1rem);
  }
}
@media screen and (min-width: 769px) {
  .business_list_item_txt_num {
    left: 1em;
    font-size: calc((38 / var(--em)) * 1rem);
  }
}
.business_list_item_txt_num::before {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  height: 2px;
  background-color: #CBD9D9;
}
@media screen and (max-width: 768px) {
  .business_list_item_txt_num::before {
    width: 21px;
  }
}
@media screen and (min-width: 769px) {
  .business_list_item_txt_num::before {
    width: 50px;
  }
}
.business_list_item_txt_num::after {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  content: "5";
  color: #CBD9D9;
  font-family: "Krona One", serif;
}
@media screen and (max-width: 768px) {
  .business_list_item_txt_num::after {
    bottom: -40px;
    font-size: calc((14 / var(--em)) * 1rem);
  }
}
@media screen and (min-width: 769px) {
  .business_list_item_txt_num::after {
    bottom: -50px;
    font-size: calc((18 / var(--em)) * 1rem);
  }
}
.business_list_item_txt_ttl {
  font-weight: bold;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .business_list_item_txt_ttl {
    font-size: calc((26 / var(--em)) * 1rem);
  }
}
@media screen and (min-width: 769px) {
  .business_list_item_txt_ttl {
    font-size: calc((32 / var(--em)) * 1rem);
  }
}
.business_list_item_txt_p {
  margin-top: 1em;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .business_list_item_txt_p {
    font-size: calc((14 / var(--em)) * 1rem);
  }
}
@media screen and (min-width: 769px) {
  .business_list_item_txt_p {
    font-size: calc((15 / var(--em)) * 1rem);
  }
}
@media screen and (max-width: 768px) {
  .business_list_item_img {
    padding-left: min(13.3333333333vw, 50px);
  }
}
@media screen and (min-width: 769px) {
  .business_list_item_img {
    max-width: min(40%, 395px);
  }
}
.business_img {
  position: -webkit-sticky;
  position: sticky;
  inset: 88px 0 auto auto;
  margin-left: auto;
  width: var(--sticky-img-height);
  max-width: min(50%, 395px);
}
.business_img img {
  opacity: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .member {
    margin-top: 144px;
  }
}
@media screen and (min-width: 769px) {
  .member {
    margin-top: calc(144px + var(--sticky-img-height));
  }
}
.member .sec-hd3::before {
  content: "ヒットビットのメンバー";
}
.member_list {
  display: flex;
  gap: 64px;
}
@media screen and (max-width: 768px) {
  .member_list {
    overflow-x: scroll;
    padding-inline: 10vw;
  }
}
@media screen and (min-width: 769px) {
  .member_list {
    justify-content: center;
    margin-top: 64px;
  }
}
@media screen and (max-width: 375px) {
  .member_list_item {
    min-width: 60vw;
  }
}
@media screen and (min-width: 376px) {
  .member_list_item {
    min-width: 260px;
    width: 260px;
  }
}
.member_list_item_name {
  margin-top: 0.5em;
  font-weight: bold;
  font-size: calc((26 / var(--em)) * 1rem);
}
.member_list_item_name .small {
  display: block;
  font-size: calc((14 / var(--em)) * 1rem);
  letter-spacing: 0.02rem;
  font-weight: 400;
}
.member_list_item_prof {
  margin-top: 0.5em;
  margin-bottom: 0.2em;
  display: block;
  font-size: calc((12 / var(--em)) * 1rem);
  color: #CCCCCC;
  letter-spacing: 0.1em;
}
.member_list_item_p {
  font-size: calc((14 / var(--em)) * 1rem);
}
.member_list_item_hobby {
  font-weight: bold;
}
.member_list_item_list {
  font-size: calc((14 / var(--em)) * 1rem);
  margin-top: 0.5em;
  display: grid;
  grid-template-columns: auto 1fr;
}
@media screen and (min-width: 769px) {
  .member_list_item_list {
    white-space: nowrap;
  }
}
.member_list_item_list dt {
  margin-bottom: 0.5em;
  display: flex;
  justify-content: space-between;
}
.member_list_item_list dt::after {
  content: "：";
}
.member_list_item_list dd {
  margin-bottom: 0.5em;
}
.member_list_item_list dd .small {
  font-size: calc((12 / var(--em)) * 1rem);
  color: #707070;
}

@media screen and (max-width: 768px) {
  .clients {
    margin-top: 160px;
  }
}
@media screen and (min-width: 769px) {
  .clients {
    margin-top: 224px;
  }
}
.clients .sec-hd3::before {
  content: "お取引企業様";
}
.clients_list {
  display: flex;
  flex-wrap: wrap;
  margin-inline: auto;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .clients_list {
    margin-top: 24px;
    gap: 0.8vw;
    width: min(100%, 496px);
  }
}
@media screen and (min-width: 769px) {
  .clients_list {
    margin-top: 40px;
    gap: 16px 8px;
    width: 496px;
  }
}
@media screen and (max-width: 768px) {
  .clients_list_item {
    width: min(27.4666666667vw, 160px);
  }
}
@media screen and (min-width: 769px) {
  .clients_list_item {
    width: 160px;
  }
}

@media screen and (max-width: 768px) {
  .news {
    margin-top: 160px;
  }
}
@media screen and (min-width: 769px) {
  .news {
    margin-top: 274px;
  }
}
@media screen and (max-width: 768px) {
  .news_inner {
    display: flex;
    flex-direction: column;
    gap: min(1.875vw, 24px);
  }
}
@media screen and (min-width: 769px) {
  .news_inner {
    display: grid;
    grid-template-columns: 20% 1fr;
    gap: min(8.828125vw, 113px);
  }
}
.news .sec-hd3::before {
  content: "お知らせ";
}
.news_list_item {
  width: 100%;
  margin-top: 16px;
  background-color: #F5F7F7;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .news_list_item {
    padding: min(6.4vw, 24px);
  }
}
@media screen and (min-width: 769px) {
  .news_list_item {
    padding: min(1.875vw, 24px);
  }
}
@media screen and (max-width: 768px) {
  .news_list_item .flex {
    flex-wrap: wrap;
    justify-content: flex-start;
    row-gap: 5px;
  }
}
@media screen and (min-width: 769px) {
  .news_list_item .flex {
    display: grid;
    grid-template-columns: 1fr 1fr 65%;
  }
}
.news_list_item_date {
  display: inline-block;
  white-space: nowrap;
  font-size: calc((13 / var(--em)) * 1rem);
}
@media screen and (max-width: 768px) {
  .news_list_item_date {
    margin-right: min(3.4666666667vw, 13px);
  }
}
.news_list_item_category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-inline: 16px;
  color: #ffffff;
  background-color: #176F6A;
  white-space: nowrap;
  font-size: calc((12 / var(--em)) * 1rem);
}
@media screen and (max-width: 768px) {
  .news_list_item_category {
    height: 18px;
    margin-right: 0;
    border-radius: 9px;
  }
}
@media screen and (min-width: 769px) {
  .news_list_item_category {
    height: 20px;
    margin-right: min(1.25vw, 16px);
    border-radius: 10px;
  }
}
.news_list_item_hd {
  display: inline-block;
  font-weight: 500;
  width: 100%;
}
.news_list_item_p {
  margin-top: 0.5em;
  margin-inline: auto 0;
  line-height: 1.6;
  font-size: calc((15 / var(--em)) * 1rem);
}
@media screen and (max-width: 768px) {
  .news_list_item_p {
    width: 100%;
  }
}
@media screen and (min-width: 769px) {
  .news_list_item_p {
    width: 65%;
  }
}

@media screen and (max-width: 768px) {
  .company {
    margin-top: 160px;
  }
}
@media screen and (min-width: 769px) {
  .company {
    margin-top: 264px;
  }
}
.company .sec-hd3::before {
  content: "会社概要";
}
.company_list {
  display: flex;
  flex-wrap: wrap;
}
.company_list dt {
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .company_list dt {
    margin-top: 1lh;
    width: 100%;
  }
}
@media screen and (min-width: 769px) {
  .company_list dt {
    padding-block: 1lh;
    width: 20%;
    border-bottom: 1px solid #D8DDDC;
  }
}
.company_list dd {
  border-bottom: 1px solid #D8DDDC;
}
@media screen and (max-width: 768px) {
  .company_list dd {
    padding-bottom: 1lh;
    width: 100%;
  }
}
@media screen and (min-width: 769px) {
  .company_list dd {
    padding-block: 1lh;
    width: 80%;
  }
}
.company_cap {
  margin-top: 1lh;
  line-height: 2.2;
}
.company iframe {
  width: 100%;
  border-radius: 15px;
}
@media screen and (max-width: 768px) {
  .company iframe {
    height: 315px;
  }
}
@media screen and (min-width: 769px) {
  .company iframe {
    height: 321px;
  }
}

@media screen and (max-width: 768px) {
  .footer {
    margin-top: 160px;
  }
}
@media screen and (min-width: 769px) {
  .footer {
    margin-block: 208px 78px;
  }
}
@media screen and (max-width: 768px) {
  .footer .flex {
    flex-direction: column;
    align-items: center;
    gap: 112px;
  }
}
@media screen and (min-width: 769px) {
  .footer .flex {
    justify-content: space-between;
    align-items: flex-end;
  }
}
@media screen and (max-width: 768px) {
  .footer_left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (min-width: 769px) {
  .footer_left {
    margin-bottom: 100px;
  }
}
.footer_left_ttl {
  letter-spacing: -0.04em;
}
@media screen and (max-width: 768px) {
  .footer_left_ttl {
    font-size: calc((36 / var(--em)) * 1rem);
  }
}
@media screen and (min-width: 769px) {
  .footer_left_ttl {
    font-size: calc((42 / var(--em)) * 1rem);
  }
}
.footer_left_p {
  margin-top: 0.5em;
  font-size: calc((14 / var(--em)) * 1rem);
}
@media screen and (max-width: 768px) {
  .footer_left_p_sp {
    display: none;
  }
}
.footer_left_cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1lh;
  color: #ffffff;
  background: transparent;
  letter-spacing: 0.06em;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .footer_left_cta {
    width: 190px;
    height: 50px;
    font-size: calc((14 / var(--em)) * 1rem);
  }
}
@media screen and (min-width: 769px) {
  .footer_left_cta {
    width: 200px;
    height: 46px;
  }
}
.footer_left_cta::before {
  z-index: -1;
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #176F6A;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .footer_left_cta::before {
    border-radius: 25px;
  }
}
@media screen and (min-width: 769px) {
  .footer_left_cta::before {
    border-radius: 23px;
  }
}
.footer_left_cta::after {
  z-index: -2;
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 1.5em;
  background-image: linear-gradient(90deg, #497271 1%, #48B0AA);
}
@media screen and (max-width: 768px) {
  .footer_left_cta::after {
    border-radius: 25px;
  }
}
@media screen and (min-width: 769px) {
  .footer_left_cta::after {
    border-radius: 23px;
  }
}
.footer_left_cta:hover::before {
  background-color: transparent;
}
@media screen and (max-width: 768px) {
  .footer_right {
    margin-inline: auto;
  }
}
@media screen and (max-width: 768px) {
  .footer_right_logo {
    width: 94px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 769px) {
  .footer_right_logo {
    width: 210px;
  }
}
@media screen and (max-width: 768px) {
  .footer_right_cap {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .footer_right_cap {
    display: block;
    margin-top: 2em;
    font-size: calc((12 / var(--em)) * 1rem);
    letter-spacing: 0.05em;
    color: #999999;
  }
}
.footer_right_list {
  position: relative;
  display: grid;
}
@media screen and (max-width: 768px) {
  .footer_right_list {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 65px;
    margin-top: min(12.5333333333vw, 47px);
  }
}
@media screen and (min-width: 769px) {
  .footer_right_list {
    grid-template-columns: 168px 1fr;
    gap: 16px 38px;
    padding-bottom: 31px;
  }
}
.footer_right_list::after {
  position: absolute;
  bottom: 0;
  height: 1px;
  content: "";
  background-color: #D8DDDC;
}
@media screen and (max-width: 768px) {
  .footer_right_list::after {
    left: 50%;
    transform: translateX(-50%);
    width: 90vw;
  }
}
@media screen and (min-width: 769px) {
  .footer_right_list::after {
    left: 0;
    width: 100%;
  }
}
.footer_right_list_item {
  overflow: hidden;
  letter-spacing: -0.01em;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .footer_right_list_item {
    margin-inline: auto;
    font-size: calc((17 / var(--em)) * 1rem);
  }
}
@media screen and (min-width: 769px) {
  .footer_right_list_item {
    font-size: calc((24 / var(--em)) * 1rem);
  }
}
.footer_right_list_item a {
  color: transparent;
  text-shadow: 0 1.5em 0 #111111, 0 0 0 #111111;
  transition: text-shadow 0.3s;
}
.footer_right_list_item a:hover {
  text-shadow: 0 0 0 #111111, 0 -1.5em 0 #111111;
}
.footer_right_pp {
  display: inline-block;
  font-size: calc((14 / var(--em)) * 1rem);
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .footer_right_pp {
    display: block;
    text-align: center;
    margin-top: calc(2.5em + 3px);
  }
}
@media screen and (min-width: 769px) {
  .footer_right_pp {
    margin-top: 6px;
  }
}
.footer_right_cr {
  white-space: nowrap;
  letter-spacing: 0.05em;
  color: #888888;
  font-size: calc((14 / var(--em)) * 1rem);
}
@media screen and (max-width: 768px) {
  .footer_right_cr {
    display: block;
    margin-block: 1em;
  }
}

@media screen and (max-width: 768px) {
  .privacy {
    margin-block: calc(96px + 1em) 160px;
  }
}
@media screen and (min-width: 769px) {
  .privacy {
    margin-block: 160px 208px;
  }
}
.privacy .sec-hd3 {
  line-height: 1;
}
.privacy .sec-hd3 + * {
  margin-top: 1em;
}
.privacy .sec-hd3::before {
  top: -1.5em;
  content: "プライバシーポリシー";
}
.privacy .sec-hd4,
.privacy .lead,
.privacy .sec-p,
.privacy .sec-list_item {
  line-height: 1.6;
  font-size: calc((15 / var(--em)) * 1rem);
}
@media screen and (max-width: 768px) {
  .privacy .lead {
    margin-top: 24px;
  }
}
@media screen and (min-width: 769px) {
  .privacy .lead {
    margin-top: 56px;
  }
}
.privacy .sec-hd4 {
  margin-top: 2em;
}
.privacy .sec-p {
  margin-left: 1em;
  margin-top: 0.5em;
}
.privacy .sec-list {
  margin-top: 1em;
  margin-left: 3em;
}
.privacy .sec-list_item {
  position: relative;
  line-height: 1.73;
}
.privacy .sec-list_item::before {
  position: absolute;
  left: -1em;
  content: "・";
}

@media screen and (max-width: 768px) {
  .contact_form {
    margin-block: 97px 160px;
  }
}
@media screen and (min-width: 769px) {
  .contact_form {
    margin-block: 160px 208px;
  }
}
.contact_form .sec-hd3::before {
  content: "お問い合わせ";
}
.contact_form .sec-hd4,
.contact_form .lead,
.contact_form .sec-p,
.contact_form .sec-list_item {
  line-height: 1.6;
  font-size: calc((15 / var(--em)) * 1rem);
}
.contact_form .sec-p_m {
  margin: 1em auto 3em 1em;
}
@media screen and (max-width: 768px) {
  .contact_form .lead {
    margin-top: 24px;
  }
}
@media screen and (min-width: 769px) {
  .contact_form .lead {
    margin-top: 56px;
  }
}
.contact_form .time {
  margin-top: 1em;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .contact_form .time {
    font-size: calc((15 / var(--em)) * 1rem);
  }
}
@media screen and (min-width: 769px) {
  .contact_form .time {
    font-size: calc((16 / var(--em)) * 1rem);
  }
}
.contact_form .time .small {
  font-size: calc((12 / var(--em)) * 1rem);
}
.contact_form .form-wrapper {
  width: min(80vw, 580px);
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .contact_form .form-wrapper {
    margin-top: 40px;
  }
}
@media screen and (min-width: 769px) {
  .contact_form .form-wrapper {
    margin-top: 72px;
  }
}
/*# sourceMappingURL=style.css.map */