html {
  font-size: 16px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 600px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  transition: opacity 0.3s;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

ul,
ol {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}

body {
  line-height: 1.5;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

ul,
ol {
  list-style: none;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

img {
  display: block;
  vertical-align: bottom;
  transition: all 0.4s ease;
  width: 100%;
}

article > * + * {
  margin-top: 1em;
}

input,
button,
textarea,
select {
  font: inherit;
}

input,
button,
select,
textarea {
  font: inherit;
  border: none;
  border-radius: 0;
  outline: none;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.header {
  padding: 30px 5% 0;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
}

.header__container {
  max-width: 1240px;
  padding: 0 60px;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  border-radius: 60px;
  height: 120px;
}
@media screen and (max-width: 600px) {
  .header__container {
    height: 80px;
    border-radius: 40px;
    padding: 0 36px;
  }
}

.header__logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 10;
}

.logo__link img {
  display: block;
  height: 64px;
}
@media screen and (max-width: 600px) {
  .logo__link img {
    height: 46px;
  }
}

.header__msg {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  color: #292f4a;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 600px) {
  .header__msg {
    display: none;
  }
}

@media screen and (max-width: 1250px) {
  .pc__menu {
    display: none;
  }
}

.pc__list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 50px;
}

.pc__link {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  color: #292f4a;
  font-weight: 500;
  font-optical-sizing: auto; /* default */
  transition: all 0.4s;
}
.pc__link:hover {
  transition: all 0.4s;
  color: #f4bf87;
}
@media screen and (max-width: 600px) {
  .pc__link {
    font-size: 16px;
  }
}

.menu__btn {
  width: 50px;
  height: 30px;
  position: relative;
  z-index: 10;
  justify-content: center;
  align-items: center;
  display: none;
  padding: 0;
}
@media screen and (max-width: 1250px) {
  .menu__btn {
    display: flex;
  }
}

.menu__btn span {
  position: absolute;
  height: 1px;
  display: inline-block;
  background-color: #292f4a;
  width: 100%;
  transition: all 0.4s ease;
  left: 0;
}

.menu__btn span:nth-child(1) {
  top: 5px;
}

.menu__btn span:nth-child(2) {
  top: 15px;
}

.menu__btn span:nth-child(3) {
  top: 25px;
}

.sp__menu {
  position: fixed;
  z-index: 9;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-top: 200px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.sp__menu::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.5);
  transition: all 0.4s ease;
  z-index: 1;
  pointer-events: none;
}

.sp__menu-inner {
  height: 100%;
  position: relative;
  padding: 0 5% 100px;
  margin-inline: auto;
  z-index: 2;
  overflow: auto;
}

.sp__list {
  text-align: center;
}

.sp__item {
  border-bottom: 1px solid #f4bf87;
}

.sp__link {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  color: #292f4a;
  font-weight: 700;
  padding: 30px 0;
  transition: all 0.4s;
}
.sp__link:hover {
  transition: all 0.4s;
  color: #ffb2f0;
  background-color: #fff;
}
@media screen and (max-width: 600px) {
  .sp__link {
    font-size: 18px;
  }
}

.inquire {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  padding-top: 60px;
}

.inquire__btn {
  flex: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  color: #fff;
  font-weight: 400;
  line-height: 80px;
  text-align: center;
  transition: all 0.4s;
}
.inquire__btn:hover {
  background-color: #fff;
  transition: all 0.4s;
}
@media screen and (max-width: 600px) {
  .inquire__btn {
    font-size: 16px;
  }
}

.sp__document {
  background-color: #f4bf87;
}
.sp__document:hover {
  color: #f4bf87;
}

.sp__contact {
  background-color: #ffb2f0;
}
.sp__contact:hover {
  color: #ffb2f0;
}

.sp__sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  padding-top: 30px;
}

.sp__sns-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #fff;
  padding: 10px;
}
.sp__sns-link:hover {
  opacity: 0.8;
}

.sp__sns-link img {
  max-width: 30px;
  max-height: 30px;
}

.sp__message {
  padding-top: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.menu__btn.active span:nth-child(1) {
  transform: rotate(-135deg);
  top: 50%;
  width: 80%;
}

.menu__btn.active span:nth-child(2) {
  display: none;
}

.menu__btn.active span:nth-child(3) {
  transform: rotate(135deg);
  top: 50%;
  width: 80%;
}

.sp__menu.open {
  opacity: 1;
  pointer-events: visible;
  visibility: visible;
}

.home {
  position: relative;
  padding: 210px 5% 0;
  overflow: hidden;
}
@media screen and (max-width: 600px) {
  .home {
    padding: 150px 5% 0;
  }
}

.home::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -3;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #fedb99, #f3a2aa 25%, #cfaed4 50%, #a7cfe9 75%, #abd6be 100%);
  opacity: 0.56;
}

.home::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff);
}

.home__inner {
  max-width: 920px;
  margin-inline: auto;
  padding-top: 70px;
}
@media screen and (max-width: 767px) {
  .home__inner {
    padding: 20px 5% 0;
  }
}

.cp {
  position: relative;
  z-index: 2;
}

.cp img {
  width: 86px;
  margin-inline: auto;
}
@media screen and (max-width: 600px) {
  .cp img {
    width: 57px;
  }
}

.mv {
  position: relative;
  z-index: 1;
  margin-top: -320px;
  height: 500px;
}
@media screen and (max-width: 767px) {
  .mv {
    height: 420px;
  }
}
@media screen and (max-width: 600px) {
  .mv {
    height: initial;
    margin-top: -140px;
    overflow: visible;
  }
}

.mv img {
  object-fit: cover;
  object-position: center center;
  width: 100%;
  height: 100%;
  border-radius: 120px 120px 0 0;
}
@media screen and (max-width: 600px) {
  .mv img {
    border-radius: 80px 80px 0 0;
  }
}

.home__list {
  position: absolute;
  z-index: 3;
  bottom: 60px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 50px;
  animation: flowing 30s linear infinite;
  font-size: 20px;
  transform: translateX(100%);
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 70px;
}
@media screen and (max-width: 600px) {
  .home__list {
    position: static;
    margin-top: 80px;
  }
}

@keyframes flowing {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.home__item {
  height: 70px;
}

.home__item img {
  height: 100%;
  width: auto;
}

.company {
  padding: 220px 5% 0;
  margin-top: -120px;
}
@media screen and (max-width: 600px) {
  .company {
    padding-top: 170px;
  }
}

.ttlbox {
  position: relative;
  padding-left: 20px;
  display: inline-block;
  text-align: left;
}

.sub__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  color: #b9b4af;
  font-weight: 700;
  line-height: 2;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 600px) {
  .sub__text {
    font-size: 18px;
  }
}

.deco {
  position: absolute;
  z-index: -1;
  top: -10px;
  left: 0;
}

.main {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 40px;
  font-weight: 700;
  margin-top: 8px;
  color: #292f4a;
}
@media screen and (max-width: 600px) {
  .main {
    font-size: 36px;
  }
}

.company__content {
  padding-top: 80px;
  display: flex;
  align-items: flex-start;
  gap: 10%;
}
@media screen and (max-width: 767px) {
  .company__content {
    flex-direction: column;
  }
}
@media screen and (max-width: 600px) {
  .company__content {
    padding-top: 60px;
  }
}

.content__img {
  flex: 3;
}

.content__img img {
  border-radius: 20px;
}

.name {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 2;
  text-align: right;
  color: #292f4a;
  margin-top: 25px;
}

.content__text {
  flex: 4;
}
@media screen and (max-width: 767px) {
  .content__text {
    padding-top: 40px;
  }
}

.company__head {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 30px;
  line-height: 2;
  color: #292f4a;
  font-weight: 500;
}
@media screen and (max-width: 600px) {
  .company__head {
    font-size: 24px;
  }
}

.company__line {
  height: 1px;
  background: linear-gradient(to right, #f4bf87, #f4bf87 14px, transparent 14px);
  background-size: 28px 1px;
  background-position: left bottom;
  background-repeat: repeat-x;
  margin: 40px 0;
}

.company__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  line-height: 2.5555555556;
  color: #292f4a;
  font-weight: 400;
}
@media screen and (max-width: 600px) {
  .company__text {
    font-size: 16px;
  }
}

.chance {
  padding: 240px 5% 100px;
  position: relative;
}
@media screen and (max-width: 600px) {
  .chance {
    padding: 200px 5% 80px;
  }
}

.chance::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 160px;
  left: 0;
  width: 100%;
  height: 100%;
  height: calc(100% - 160px);
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 600px) {
  .chance::before {
    top: 120px;
    height: calc(100% - 120px);
  }
}

.chance__head {
  text-align: center;
}

.chance__content {
  padding-top: 80px;
}

.chance__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9%;
}
@media screen and (max-width: 767px) {
  .chance__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 60px;
  }
}

.chance__item {
  flex: 1;
}

.chance__link {
  display: block;
}
@media screen and (max-width: 767px) {
  .chance__link {
    width: 50%;
    min-width: 300px;
    margin-inline: auto;
  }
}

.chance__link:hover > .link__img img {
  transform: scale(1.1, 1.1);
  transition: all 0.4s;
}
.chance__link:hover > .link__ttl {
  color: #f4bf87;
  transition: all 0.4s;
}

.link__img {
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
}

.link__head {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  padding-top: 25px;
}

.cat__icon {
  width: 20px;
  display: block;
}

.cat__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  color: #292f4a;
}
@media screen and (max-width: 600px) {
  .cat__text {
    font-size: 16px;
  }
}

.link__ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  color: #292f4a;
  margin-top: 20px;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 600px) {
  .link__ttl {
    font-size: 18px;
  }
}

.news {
  padding: 150px 5%;
  position: relative;
}
@media screen and (max-width: 600px) {
  .news {
    padding: 120px 5%;
  }
}

.news__content {
  padding-top: 80px;
}
@media screen and (max-width: 600px) {
  .news__content {
    padding-top: 60px;
  }
}

.news__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 90px;
}
@media screen and (max-width: 767px) {
  .news__list {
    flex-direction: column;
  }
}

.news__link:hover > .news__linkimg img {
  transform: scale(1.1, 1.1);
  transition: all 0.4s;
}
.news__link:hover > .news__linktext .news__text {
  color: #f4bf87;
  transition: all 0.4s;
}

.news__linkimg {
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  transition: all 0.4s;
}

.news__date {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  color: #b9b4af;
  margin-top: 25px;
}

.news__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  color: #292f4a;
  font-weight: 700;
  margin-top: 20px;
  text-overflow: ellipsis;
  transition: all 0.4s;
}
@media screen and (max-width: 600px) {
  .news__text {
    font-size: 18px;
  }
}

.footer {
  background-color: #292f4a;
  border-radius: 60px 60px 0 0;
}

.footer__inner {
  padding: 80px 5% 0;
}

.footer__main {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .footer__main {
    display: block;
  }
}

.footer__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.footer__logo-link img {
  display: block;
  height: 64px;
}

.footer__msg {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 2;
  color: #fff;
  font-weight: 500;
}

.footer__sns {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .footer__sns {
    margin-top: 50px;
    justify-content: center;
  }
}

.footer__nav {
  margin-top: 60px;
}
@media screen and (max-width: 600px) {
  .footer__nav {
    margin-top: 50px;
  }
}

.footer__list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px 50px;
}
@media screen and (max-width: 767px) {
  .footer__list {
    justify-content: center;
    flex-wrap: wrap;
  }
}

.footer__link {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  color: #fff;
  font-weight: 400;
  transition: all 0.4s;
}
.footer__link:hover {
  color: #f4bf87;
  transition: all 0.4s;
}
@media screen and (max-width: 600px) {
  .footer__link {
    font-size: 16px;
  }
}

.footer__copy {
  margin-top: 90px;
  padding: 40px 0;
  border-top: 1px solid #b9b4af;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .footer__copy {
    margin-top: 60px;
    padding: 30px 0;
  }
}

.footer__copyright {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  color: #b9b4af;
  letter-spacing: 0.05em;
}

.deco1 {
  width: 870px;
  position: absolute;
  z-index: -1;
  top: -360px;
  right: -320px;
}
@media screen and (max-width: 1250px) {
  .deco1 {
    width: 80vw;
    top: -32vw;
    right: -32vw;
  }
}
@media screen and (max-width: 767px) {
  .deco1 {
    top: -20vw;
  }
}

.deco2 {
  width: 112px;
  position: absolute;
  z-index: -1;
  bottom: 40%;
  left: 10%;
}
@media screen and (max-width: 1250px) {
  .deco2 {
    left: 5%;
    bottom: 50%;
  }
}

.deco3 {
  width: 580px;
  position: absolute;
  z-index: -1;
  bottom: -240px;
  left: -240px;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 1250px) {
  .deco3 {
    width: 60vw;
    left: -35vw;
    bottom: -20vw;
  }
}

.deco4 {
  width: 376px;
  position: absolute;
  z-index: 5;
  top: -37px;
  right: 81%;
}
@media screen and (max-width: 767px) {
  .deco4 {
    width: 209px;
    right: 75%;
  }
}

.deco4 img {
  border-radius: 0;
}

.deco5 {
  position: absolute;
  z-index: -2;
  top: -175px;
  left: -88px;
  width: 440px;
}
@media screen and (max-width: 600px) {
  .deco5 {
    top: -85px;
    left: -90px;
    width: 380px;
  }
}

.deco6 {
  position: absolute;
  z-index: -2;
  top: calc(100% - 80px);
  right: 0;
  width: 540px;
}
@media screen and (max-width: 600px) {
  .deco6 {
    width: 390px;
    top: calc(100% - 100px);
  }
}

.company__inner,
.chance__inner,
.news__inner {
  max-width: 1080px;
  margin-inline: auto;
}/*# sourceMappingURL=style.css.map */