@charset "UTF-8";
/* === PC、SP切替 === */
@media screen and (max-width: 767px) {
  .sp-none {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .pc-none {
    display: none;
  }
}
/* === 基本設定 === */
html {
  scroll-behavior: smooth;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

p {
  font-size: 14px;
}
@media screen and (min-width:768px) {
  p {
    font-size: 16px;
  }
}

@media screen and (min-width:768px) {
  a:hover {
    opacity: 0.7;
  }
}
.grecaptcha-badge {
  visibility: hidden;
}

/* === Reset CSS === */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  font-family: "Noto Sans JP", sans-serif;
  color: #323134;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  appearance: none;
}

input[type=checkbox] {
  appearance: auto;
}

table {
  border-collapse: collapse;
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

button {
  cursor: pointer;
}

/* === ナビゲーション === */
.nav {
  position: static;
  top: 0;
  right: 0;
}
@media screen and (min-width:768px) {
  .nav {
    position: absolute;
    padding: 0 15px;
  }
  .nav.top {
    color: #ffffff;
  }
}
.nav__list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (max-width:767px) {
  .nav__list {
    justify-content: flex-start;
    flex-direction: column;
    background: #ffffff;
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    height: 100%;
    padding-top: 80px;
    z-index: 100;
    overflow-y: auto;
    color: #323134;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s;
  }
  .nav__list.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
.nav__item {
  padding: 1.5rem;
}

@media screen and (max-width:767px) {
  .hamburger {
    display: block;
    position: fixed;
    top: 1rem;
    right: 1rem;
    width: 30px;
    height: 22px;
    z-index: 110;
  }
  .hamburger span {
    display: block;
    height: 1px;
    background: #323134;
    margin: 5px 0;
    transition: 0.3s;
  }
  .hamburger.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}
@media screen and (min-width:768px) {
  .hamburger {
    display: none;
  }
}

/* === footer === */
.footer {
  text-align: center;
  padding: 1rem 0;
}
.footer__logo {
  max-width: 80px;
  margin: 0 auto 0.2rem;
}

/* === 下層ページ メインビジュアル === */
.pg-hero {
  position: relative;
  min-height: 70vw;
  background: url("../image/about-bg.png") center top/cover no-repeat;
}
.pg-hero .pg-hero__title {
  margin-bottom: 0;
}
@media screen and (min-width:768px) {
  .pg-hero .pg-hero__title {
    margin-bottom: 0;
  }
}
.pg-hero .pg-hero__title--en {
  display: inline-block;
  position: relative;
  padding-left: 50px;
  font-size: 0.9rem;
  color: #9d9d9d;
}
.pg-hero .pg-hero__title--en::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 10px;
  background: url(../image/logo-icn-bl.svg) no-repeat center/contain;
}
.pg-hero .pg-hero__title--jp {
  font-size: 1.8rem;
  font-family: "BIZ UDMincho", serif;
  font-weight: initial;
  color: #323134;
  margin: 0;
}
@media screen and (min-width:768px) {
  .pg-hero .pg-hero__title--jp {
    font-size: 2rem;
  }
}
@media screen and (min-width:768px) {
  .pg-hero {
    min-height: 350px;
  }
}
.pg-hero__inner {
  width: 90%;
  margin: 0 auto;
  min-height: 70vw;
  padding-bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (min-width:768px) {
  .pg-hero__inner {
    max-width: 1080px;
    min-height: 350px;
    padding-bottom: 100px;
  }
}

.pg-content {
  background-color: #ffffff;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  margin-top: -50px;
  position: relative;
  z-index: 1;
}
@media screen and (min-width:768px) {
  .pg-content {
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    margin-top: -100px;
  }
}

/* =======================================
* トップページ
* ===================================== */
/* === メインビジュアル === */
.hero {
  height: 100svh;
  padding: 2%;
}
@media screen and (min-width:768px) {
  .hero {
    padding: 1.2%;
  }
}
.hero__inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: url("../image/hero-bg.png") bottom center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__catch {
  text-align: center;
  flex-direction: column;
}
.hero__catch p {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-family: "BIZ UDMincho", serif;
}
@media screen and (min-width:768px) {
  .hero__catch p {
    font-size: 1.5rem;
  }
}

/* === リード === */
.lead {
  position: relative;
  text-align: center;
  line-height: 1.8;
}
.lead::after {
  content: "";
  position: absolute;
  bottom: -18rem;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../image/lead-bg2.png") center/cover no-repeat;
  z-index: -1;
}
@media screen and (min-width:768px) {
  .lead::after {
    bottom: -10rem;
  }
}
.lead__inner {
  width: 90%;
  margin: 0 auto;
  padding: 2rem 0 3rem;
}
@media screen and (min-width:768px) {
  .lead__inner {
    max-width: 1000px;
    padding: 3rem 0 7rem;
  }
}
.lead__text {
  margin-bottom: 3rem;
}
.lead__text p + p {
  margin-top: 1rem;
}
.lead__catch {
  display: inline-block;
  font-family: "BIZ UDMincho", serif;
  font-size: 1.5rem;
  line-height: 1.6;
  background: linear-gradient(90deg, #1bc2dd, #1d8fe1, #3389ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #1d8fe1;
  margin-bottom: 1rem;
}
@media screen and (min-width:768px) {
  .lead__catch {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
}
.lead__features {
  gap: 2.5rem;
}
@media screen and (min-width:768px) {
  .lead__features {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
  }
}
.lead__features-item {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 2.5rem 1rem 1.5rem;
  background-color: #edf8fc;
  border-radius: 10px;
}
@media screen and (max-width:767px) {
  .lead__features-item:not(:last-child) {
    margin-bottom: 3rem;
  }
}
@media screen and (min-width:768px) {
  .lead__features-item:nth-child(2) {
    bottom: -2rem;
  }
}
.lead__features-item h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.lead__features-item p {
  font-size: 0.9rem;
}
.lead__features-icon {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}

/* === 事業案内 === */
.service .service__title {
  margin-bottom: 1.5rem;
}
@media screen and (min-width:768px) {
  .service .service__title {
    margin-bottom: 2rem;
  }
}
.service .service__title--en {
  display: inline-block;
  position: relative;
  padding-left: 50px;
  font-size: 0.9rem;
  color: #ffffff;
}
.service .service__title--en::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 10px;
  background: url(../image/logo-icn-wh.svg) no-repeat center/contain;
}
.service .service__title--jp {
  font-size: 1.8rem;
  font-family: "BIZ UDMincho", serif;
  font-weight: initial;
  color: #ffffff;
  margin: 0;
}
@media screen and (min-width:768px) {
  .service .service__title--jp {
    font-size: 2rem;
  }
}
.service__inner {
  position: relative;
  color: #ffffff;
  background: linear-gradient(120deg, #3db4e5, #3f64ea);
  border-radius: 20px;
  z-index: 2;
  overflow: hidden;
  width: 90%;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}
@media screen and (min-width:768px) {
  .service__inner {
    max-width: 1200px;
    padding: 1.2%;
  }
}
.service__inner::after {
  content: "";
  position: absolute;
  bottom: 25%;
  left: 19%;
  width: 380px;
  height: 390px;
  background: url("../image/service-bg.png") center/contain no-repeat;
  z-index: -1;
}
@media screen and (min-width:768px) {
  .service__inner::after {
    bottom: -5%;
    left: 29%;
  }
}
@media screen and (min-width:768px) {
  .service__columns {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.service__columns-catch {
  margin-bottom: 1rem;
}
.service__columns-text {
  margin: 0 0 2rem 0;
}
@media screen and (min-width:768px) {
  .service__columns-text {
    flex: 1;
    margin: 0 3rem 0 2rem;
  }
  .service__columns-text p + p {
    margin-top: 0.5rem;
  }
}
.service__columns-image {
  flex: 1;
}
.service__columns-image img {
  border-radius: 15px;
}

/* === 企業情報 === */
.about {
  background-image: linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 10%), url("../image/about-bg.png");
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
}
.about .about__title {
  margin-bottom: 1.5rem;
}
@media screen and (min-width:768px) {
  .about .about__title {
    margin-bottom: 2rem;
  }
}
.about .about__title--en {
  display: inline-block;
  position: relative;
  padding-left: 50px;
  font-size: 0.9rem;
  color: #9d9d9d;
}
.about .about__title--en::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 10px;
  background: url(../image/logo-icn-bl.svg) no-repeat center/contain;
}
.about .about__title--jp {
  font-size: 1.8rem;
  font-family: "BIZ UDMincho", serif;
  font-weight: initial;
  color: #323134;
  margin: 0;
}
@media screen and (min-width:768px) {
  .about .about__title--jp {
    font-size: 2rem;
  }
}
.about__inner {
  width: 90%;
  margin: 0 auto;
  padding: 3rem 0;
}
@media screen and (min-width:768px) {
  .about__inner {
    max-width: 1080px;
    padding: 5rem 0;
  }
}
.about__columns {
  margin-bottom: 2rem;
}
@media screen and (min-width:768px) {
  .about__columns {
    margin-bottom: 3rem;
    gap: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.about__columns-catch {
  margin-bottom: 1rem;
}
@media screen and (max-width:767px) {
  .about__columns-text {
    margin: 0 0 2rem 0;
  }
}
@media screen and (min-width:768px) {
  .about__columns-text {
    flex: 2;
  }
}
@media screen and (max-width:767px) {
  .about__columns-image {
    display: none;
  }
}
@media screen and (min-width:768px) {
  .about__columns-image {
    flex: 1;
  }
}
.about__columns-image img {
  width: 100%;
  border-radius: 15px;
}
.about__profile, .about__company {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 2rem 1.5rem;
}
@media screen and (min-width:768px) {
  .about__profile, .about__company {
    padding: 2.5rem 2.5rem 2.5rem 5rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
}
.about__profile-text {
  flex: 3;
}
.about__profile-text p + p {
  margin-top: 0.5rem;
}
.about__label {
  position: relative;
}
@media screen and (max-width:767px) {
  .about__label {
    margin-bottom: 1.5rem;
  }
}
@media screen and (min-width:768px) {
  .about__label {
    flex: 1;
  }
}
@media screen and (min-width:768px) {
  .about__label::after {
    content: "";
    position: absolute;
    bottom: -25px;
    left: 13px;
    width: 213px;
    height: 70px;
    background: url("../image/about-icn1.svg") center/contain no-repeat;
  }
}
@media screen and (min-width:768px) and (min-width:768px) {
  .about__label::after {
    bottom: -28px;
    left: -100px;
    width: 222px;
    height: 74px;
  }
}
.about__label--en {
  font-size: 0.9rem;
  color: #9d9d9d;
}
.about__label--jp {
  font-size: 1.3rem;
}
.about__company {
  margin-top: 2rem;
}
@media screen and (min-width:768px) {
  .about__company {
    margin-top: 3rem;
  }
}
@media screen and (min-width:768px) {
  .about__company .about__label {
    flex: 1;
  }
}
@media screen and (min-width:768px) {
  .about__company .about__label::after {
    bottom: -14px;
    left: -14px;
    width: 205px;
    height: 66px;
    background: url("../image/about-icn2.svg") center/contain no-repeat;
  }
}
@media screen and (min-width:768px) and (min-width:768px) {
  .about__company .about__label::after {
    bottom: -17px;
    left: -117px;
    width: 240px;
    height: 80px;
  }
}
@media screen and (min-width:768px) {
  .about__company-text {
    flex: 3;
  }
}
.about__company-details {
  border-bottom: 1px dashed #9d9d9d;
  padding: 1rem 0;
}
.about__company-details:nth-of-type(1) {
  padding-top: 0;
}
@media screen and (min-width:768px) {
  .about__company-details {
    display: flex;
    align-items: flex-start;
    justify-content: initial;
    padding: 1.5rem 0;
  }
}
.about__company-details dt {
  font-weight: 600;
}
@media screen and (max-width:767px) {
  .about__company-details dt {
    padding-bottom: 0.5rem;
  }
}
@media screen and (min-width:768px) {
  .about__company-details dt {
    flex: 1;
  }
}
@media screen and (min-width:768px) {
  .about__company-details dd {
    flex: 3;
  }
}

/* === お問い合わせ === */
.contact-cta {
  color: #ffffff;
  background-image: linear-gradient(45deg, rgba(33, 146, 193, 0.7) 0%, rgba(63, 100, 234, 0.7) 100%), url("../image/contact-cta-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.contact-cta .contact-cta__title {
  margin-bottom: 1.5rem;
}
@media screen and (min-width:768px) {
  .contact-cta .contact-cta__title {
    margin-bottom: 2rem;
  }
}
.contact-cta .contact-cta__title--en {
  display: inline-block;
  position: relative;
  padding-left: 50px;
  font-size: 0.9rem;
  color: #ffffff;
}
.contact-cta .contact-cta__title--en::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 10px;
  background: url(../image/logo-icn-wh.svg) no-repeat center/contain;
}
.contact-cta .contact-cta__title--jp {
  font-size: 1.8rem;
  font-family: "BIZ UDMincho", serif;
  font-weight: initial;
  color: #ffffff;
  margin: 0;
}
@media screen and (min-width:768px) {
  .contact-cta .contact-cta__title--jp {
    font-size: 2rem;
  }
}
.contact-cta__inner {
  width: 90%;
  margin: 0 auto;
  padding: 3rem 0;
}
@media screen and (min-width:768px) {
  .contact-cta__inner {
    max-width: 1080px;
    padding: 5rem 0;
  }
}
@media screen and (min-width:768px) {
  .contact-cta__columns {
    gap: 3rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.contact-cta__columns-text {
  font-weight: 500;
}
@media screen and (max-width:767px) {
  .contact-cta__columns-text {
    margin-bottom: 1.5rem;
  }
}
.contact-cta__columns-button {
  width: 280px;
}
@media screen and (max-width:767px) {
  .contact-cta__columns-button {
    margin: 0 auto;
  }
}
.contact-cta__columns-button a {
  width: 100%;
  position: relative;
  display: inline-block;
  font-weight: bold;
  padding: 1rem 1.5rem;
  letter-spacing: 1px;
  color: #ffffff;
  background-color: none;
  border-radius: 50px;
  border: 1px solid #ffffff;
}
.contact-cta__columns-button a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  background: url("../image/btn-arrow-wh.svg") no-repeat;
  background-size: contain;
}

/* =======================================
* お問い合わせページ
* ===================================== */
.form {
  width: 90%;
  margin: 0 auto;
  padding: 3rem 0 2rem;
}
@media screen and (min-width:768px) {
  .form {
    max-width: 900px;
    padding: 5rem 0 3rem;
  }
}
.form__item {
  padding: 1rem 0;
}
@media screen and (min-width:768px) {
  .form__item {
    padding: 1.5rem 0;
    gap: 3rem;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
  }
}
.form__label {
  display: inline-block;
  font-weight: 500;
}
@media screen and (max-width:767px) {
  .form__label {
    margin-bottom: 0.5rem;
  }
}
@media screen and (min-width:768px) {
  .form__label {
    flex: 1;
  }
}
.form__label span {
  font-size: 0.8rem;
  font-weight: bold;
  padding: 2px 8px;
  margin-left: 10px;
  border-radius: 3px;
  background-color: #3cb4e5;
  color: #ffffff;
}
.form__field {
  width: 100%;
  outline: none;
  padding: 10px;
}
.form__field:not(.form__scroll-area) {
  border: 1px solid #9d9d9d;
  border-radius: 5px;
}
@media screen and (min-width:768px) {
  .form__field {
    flex: 3;
  }
}
.form__scroll-area {
  font-size: 0.9rem;
  overflow-y: auto;
  max-height: 300px;
  background-color: #fafafa;
}
.form__scroll-area::-webkit-scrollbar {
  width: 6px;
}
.form__scroll-area::-webkit-scrollbar-track {
  background: #e8e8e8;
  border-radius: 4px;
}
.form__scroll-area::-webkit-scrollbar-thumb {
  background: #3cb4e5;
  border-radius: 4px;
}
.form__scroll-area dl {
  margin-bottom: 1rem;
}
.form__scroll-area dt {
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.form__privacy-text {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.form__privacy-contact {
  margin-top: 1rem;
}
.form__agree {
  padding: 1rem 0 3rem;
  text-align: center;
}
.form__agree label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.form__agree input[type=checkbox] {
  width: 20px;
  height: 20px;
  border: 1px solid #9d9d9d;
  border-radius: 2px;
}
.form__button {
  width: 260px;
  margin: 0 auto;
}
.form__button-inner {
  width: 100%;
  position: relative;
  display: inline-block;
  font-weight: bold;
  padding: 1rem 1.5rem;
  letter-spacing: 1px;
  color: #ffffff;
  background-color: #3cb4e5;
  border-radius: 50px;
  border: none;
}

/*# sourceMappingURL=style.css.map */
