@charset "utf-8";
body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  /* font-family: 'Noto Sans JP', sans-serif; */
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  color: #4D4C4D;
  margin: 0;
  padding: 0;
  /* background: #9ca1bd38; */
}


/*----- header -----*/
.header {
  position: fixed;
  z-index: 10;
	width: 100%;
  height: 80px;
	background: #FFF;
  border-bottom: 2px solid #4EA6FE;
  transition: transform 0.3s 0.3s;
}

.header.hidden {
  transform: translateY(-80px);
}

.header__wrap {
  display: flex;
	justify-content: space-between;
  max-width: 1300px;
  height: 80px;
  margin: 0 auto;
  padding: 0 20px;
  align-items: center;
}

/* ロゴ決定後に設定しなおす */
.header__title {
	width: 132px;
	margin: 0 24px;
}

.header__home-link {
	display: block;
}

.header__logo {
  width: 100%;
  margin: 10px 0 0 0;
}
/*------------*/

.nav-sp {
  display: none;
}

.header-nav__list {
	display: flex;
}

/* ホバー下線 */
.header-nav__item a {
  position: relative;
}

.header-nav__item a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1.5px;
  background: #4EA6FE;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform 0.3s;
}

.header-nav__item a:hover::after {
transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
}
/*------------*/

.header-nav__link {
  margin: 0 26px 0 0;
  padding: 10px 2px;
	font-size: 14px;
	color: #414141;
	font-weight: bold;
  letter-spacing: .02rem;
}

.header-nav__link:hover {
	color: #4EA6FE;
}

/* お問い合わせ CTA　*/
.header-nav__contact .header-nav__link {
  margin: 0;
  padding: 14px 45px;
  background: #d0e8ff;
  color: #41a0ff;
  border-radius: 50vh;
  transition: 0.3s;
}

.header-nav__contact .header-nav__link:hover {
  background: #41a0ff;
  color: #fff;
}

.nav__icon {
  display: none;
}

@media screen and (max-width: 820px) {
  .header {
    height: 60px;
  }

  .header__wrap {
    height: 60px;
  }

  .header__title {
    width: 100px;
    margin: 0;
  }

  /* グローバルナビ設定 */
  .nav__icon {
    width: 40px;
    height: 40px;
    border-radius: 50vh;
    background: #d0e8ff;
  }
  .nav-pc {
    display: none;
  }

  .nav-sp {
    display: none;
  }
}

/*----- main -----*/

/*----- bg -----*/
.bg_pattern {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #ffffff;
  opacity: 0.6;
  z-index: -1;
}

.Polka {
  background-image: radial-gradient(#99ccff 1px, #ffffff 1px);
  background-size: 10px 10px;
}

/*----- section -----*/
section {
  padding: 100px 20px;
}

section h2 {
  font-size: 16px;
  font-weight: normal;
}

.section__sub {
  font-size: 62px;
  font-weight: bold;
}

@media screen and (max-width: 820px) {
  section {
    padding: 60px 20px;
  }

  section h2 {
    font-size: 14px;
    font-weight: normal;
  }

  .section__sub {
    font-size: 40px;
  }
}


/*----- fv -----*/
.fv {
  position: relative;
  max-width: 1300px;
  height: 630px;
  margin: 0 auto;
  padding: 160px 20px;
}

.fv__block {
  position: absolute;
  left: 0;
  margin: 0 50px 0 8vw;
  z-index: 2;
}

.fv h1 {
  font-size: 60px;
  font-weight: 700;
}

.fv p {
  font-size: 18px;
  margin: 20px 0;
}

.fv__img {
 position: absolute;
 right: 0;

}

.cta-btn {
  display: inline-block;
  padding: 16px 50px;
  background: #4EA6FE;
  color: #fff;
  border-radius: 50vh;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: .02rem;
  border: 2px solid #4EA6FE;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #fff;
  color: #4EA6FE;
}

@media screen and (max-width: 820px) {
  .fv {
    position: static;
    padding: 100px 20px;
    height: 500px;
  }

  .fv__block {
    position: static;
    width: 100%;
    margin: 0;
  }

  .fv h1 {
    font-size: 40px;
  }

  .fv p {
    font-size: 14px;
  }
  
  .fv__img {
    display: none;
  }

  .cta-btn {
    display: block;
    width: 200px;
    padding: 14px 20px;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
  }
}

/*----- Service -----*/
.service {
  border-radius: 50px 50px 0 0;
  background:#e9e9e9;
}

.service h2,
.service .section__sub {
  color: #4EA6FE;
  padding: 0 0 0 100px;
}

.service__main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px;
}

.service__item {
  position: relative;
  width: calc((100% - 40px) / 2);
  margin: 10px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 12px;
  text-align: center;
} 

.service__item h3 {
  font-size: 24px;
  padding: 0 0 12px 0;
  color: #4EA6FE;
}

.service__img {
  display: block;
  width: 60%;
  padding: 20px 0 0 0;
  margin: 0 auto;
}

.service__yaji {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 60px;
}

.service__link:hover {
  opacity: .5;
}

@media screen and (max-width: 820px) {
  .service h2,
  .service .section__sub {
    padding: 0 0 0 10px;
  }

  .service__main {
    padding: 20px 0;
  }

  .service__item {
    width: calc((100% - 10px) / 2);
    margin: 2px;
    padding: 30px 16px;
  }

  .service__item h3 {
    font-size: 16px;
    padding: 0 0 12px 0;
  }

  .service__item p {
    font-size: 14px;
  }

  .service__img {
    display: block;
    width: 60%;
    padding: 10px 0 0 0;
    margin: 0 auto;
  }

  .service__yaji {
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 30px;
  }
}

/*----- Strength -----*/
.strengths_bg {
  width: 90%;
  margin: 0 auto;
  padding: 70px 50px;
  background: #4b98e5;
  border-radius: 40px;
  text-align: center;
}

.strengths h2,
.strengths .section__sub {
  color: #fff;
}

.strengths__wrap {
  max-width: 1000px;
  margin: 30px auto 0;
}

.strengths__block {
  display: flex;
  justify-content: space-between;
}

.strengths__item {
  width: calc((100% - 40px)/ 3) ;
  height: 340px;
  margin: 12px 0;
  padding: 40px 20px;
  background: #fff;
  font-size: 22px;
  border-radius: 12px;
}

.strengths__img {
  width: 60%;
  padding: 40px 0 0 0;
}

@media screen and (max-width: 820px) {
  .strengths_bg {
    width: auto;
    padding: 50px 16px;
  }

  .strengths__wrap {
    margin: 10px auto 0;
  }

  .strengths__block {
    display: block;
  }

  .strengths__item {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 100px;
    padding: 16px;
   
  }

  .strengths__item p {
    font-size: 14px;
  }

  .strengths__img {
    display: block;
    width: auto;
    padding: 0;
  }
}

/*----- Members -----*/
.members {
  background: #99ccff;
}

.members h2,
.members .section__sub {
  padding: 0 0 0 100px;
  color: #fff;
}

.members__block {
  max-width: 1100px;
  margin: 0 auto;
}

.member__item {
  display: flex;
  justify-content: space-evenly;
}

.member-link {
   width: 45%;
  margin: 20px 0 10px 0;
  color: #4EA6FE;
}

.member {
  display: flex;
  min-height: 180px;
  max-height: 180px;
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  align-items: center;
}

.member img {
  width: 80px;
  height: 80px;
}

.member__info {
  width: 100%;
  padding: 30px 0 30px 20px;
}

.member h4 {
  margin: 5px 0 10px 0;
  padding: 0 0 0 10px;
  font-size: 24px;
}

.member p {
  font-size: 16px;
  color: #666;
}

.product {
  margin: 0 0 10px 0;
  padding: 0 0 0 10px;
}

.tool {
  padding: 10px 0 0 10px;
  border-top: 1px solid #ddd;
}

@media screen and (max-width: 820px) {
  .members h2,
  .members .section__sub {
    padding: 0 0 0 10px;
  }

  .member__item {
    display: contents;
  }

  .member-link {
    margin: 2px;
  }

  .member {
    min-height: fit-content;
    padding: 10px 20px;
  }

  .member img {
    width: 40px;
    height: 40px;
  }

  .member__info {
    padding: 10px 0 10px 10px;
  }

  .member h4 {
    font-size: 18px;
  }

  .member p {
    font-size: 12px;
  }

  .product {
    margin: 0 0 4px 0;
  }
}

/*----- Contact -----*/
#contact {
  text-align: center;
  background: #e9e9e9;
}

#contact h2,
#contact .section__sub {
  color: #4EA6FE;
}

.contact__item {
  max-width: 850px;
  margin: 30px auto 0;
  padding: 40px;
  background: #fff;
  border-radius: 45px;
  text-align: left;
}

.form__item {
  padding: 14px;
}

.form__label {
  margin: 0 0 12px 0;
  letter-spacing: 0.05em;
}

input[type="text"],
textarea {
  cursor: text;
}

.form__required {
  display: inline-block;
  margin: 0 8px 0 0;
  padding: 2px 8px;
  border-radius: 6px;
  background: #4EA6FE;
  color: #fff;
  font-size: 12px;
}

.form__box,
.form__textarea {
  height: 48px;
  width: 100%;
  padding: 0 16px;
  background: #eef7ff;
  border: 1px solid #acacac;
  border-radius: 6px;
  box-sizing: border-box;
}

.form__textarea {
    padding: 16px;
    height: 216px;
}

.form__btn {
    display: block;
    max-width: 280px;
    width: 100%;
    margin: 16px auto 0;
    padding: 20px 0;
    letter-spacing: 0.05em;
    background: #4EA6FE;
    color: #fff;
    font-size: 20px;
    border-radius: 50vh;
    transition: 0.3s;
    border: 2px solid #4EA6FE;
}

.form__btn:hover {
    background: #fff;
    color: #4EA6FE;
}

input.invalid,
textarea.invalid {
    background-color: #fff7f3;
    border: 1.5px solid #ff8336;
}

.error.invalid {
    display: block;
}

.error {
    display: none;
    color: #ff8336;
    font-size: 12px;
    line-height: 24px;
}

@media screen and (max-width: 820px) {
  .contact__item {
    padding: 30px 10px;
  }

  .form__label {
    font-size: 14px;
  }

  .form__required {
    font-size: 10px;
  }

  .form__box {
    height: 40px;
  }

  .form__btn {
    padding: 10px 0;
    font-size: 16px;
  }
}

/*----- Footer -----*/

footer {
  background: #414141;
  color: #4b98e5;
  text-align: center;
  padding: 30px 20px 0 20px;
  border-top: .5px solid #2a2a2a;;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 800px;
  height: 200px;
  margin: 0 auto 30px;
}

.footer-company {
  width: 250px;
}

.footer-company img {
  width: 200px;
  margin: 0 0 -16px 0;
}

.footer-btn {
  display: block;
  margin: 10px 0;
  padding: 14px 45px;
  background: #d0e8ff;
  color: #41a0ff;
  border-radius: 50vh;
  transition: 0.3s;
  font-weight: bold;
}

.footer-btn:hover {
  background: #41a0ff;
  color: #d0e8ff;
}
  

.footer-columns {
  display: flex;
}

.footer-col {
  padding: 20px 24px;
  text-align: left;
}

.footer-col a {
  display: inline-block;
  margin: 0 0 4px 0;
  color: #fff;
  font-size: 12px;
  font-weight: normal;
}

.footer-col a:hover {
  opacity: .7;
}

.footer-copyright {
  padding: 30px;
  border-top: 1px solid #fff;
  color: #fff;
  font-size: 11px;
}

.footer-sp {
  display: none;
}

@media screen and (max-width: 820px) {
  .footer-sp {
    display: block;
  }

  .footer-columns {
    display: none;
  }
  
  .footer-inner {
    display: block;
    margin: 0 auto 50px;
  }

  .footer-company {
    width: 100%;
  }

  .footer-sp h4 {
    display: inline-block;
  }

  .footer-sp a {
    padding: 2px 6px;
    color: #fff;
    font-size: 14px;
    font-weight: normal;
  }

  .footer-buttons-vertical {
    margin: 20px 0;
  }
}

/* ========================
↓ service page
======================== */
.service-page__top-img {
  display: block;
  width: 80%;
  position: absolute;
  right: -20%;
  z-index: -1;
}

.service-page {
  overflow: hidden;
}

.service-page__top {
  display: flex;
  max-width: 1000px;
  margin: 40px auto 0;
  position: relative;
  height: 40vh;
  align-items: center;
}

.service-page__top-title {
  font-weight: bold;
  position: relative;
  margin: 0 0 140px;
  line-height: 1;
}

.service-page__top-title::before {
  content: "";
  background: #4b98e5;
  margin: 0 6px 0 0;
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 50%;
}

.service-page__top-title::after {
  content: "Service";
  position: absolute;
  top: 100%;
  left: 0;
  font-size: 80px;
  margin: 4px 0 0;
  color: #4b98e5;
}

.service-page__top-txt {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: .05rem;
  line-height: 1.6;
}

.service-page__item {
  background: #fff;
  border-radius: 24px;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  padding: 60px;
  box-shadow: rgb(0 51 255 / 20%) 0px 0px 20px;
  max-width: 850px;
  margin: 0 auto 60px;
  color: #4D4C4D;
  transition: opacity 0.5s ease;
}

.service-page__item:hover {
  opacity: .5 !important;
}

.service-page__item-img {
  display: block;
  width: 30%;
}

.service-page__item-title {
  font-size: 20px;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.service-page__item-title::before {
  content: "website";
  color: #4b98e5;
  font-weight: normal;
  font-size: 14px;
}

.service-page__item_banner .service-page__item-title::before {
  content: "banner";
}

.service-page__item_movie .service-page__item-title::before {
  content: "movie";
}

.service-page__item_chatbot .service-page__item-title::before {
  content: "chatbot";
}

.service-page__top-txt-container .service-page__item-title::before {
  position: absolute;
}

.section_bg {
  background: #99ccff;
}

/* パンくず */

.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin: 12px 0 0;
  font-size: 14px;
}

.breadcrumb li {
  display: flex;
  align-items: center;
}

.breadcrumb li + li::before {
  content: " / ";
  margin: 0 0.5em;
}

.breadcrumb a {
  text-decoration: none;
  transition: color 0.3s;
  color: #4D4C4D;
}

.breadcrumb a:hover {
  color: #4b98e5;
}






@media screen and (max-width: 820px) {
  
  .service-page__top-title::after {
    font-size: 60px;
  }
  
  .service-page__top-title {
    margin: 0 0 100px 0;
  }
  
  .service-page__top-txt {
    font-size: initial;
  }
  
  .service-page__top-img {
    display: none;
  }
  
  .service-page__top-txt-container {
    position: unset;
  }
  
  .service-page__top {
    height: auto;
  }
  
  .br-none {
    display: none;
  }
  
  .service-page__item {
    padding: 30px;
    flex-direction: column;
    gap: 24px;
    margin: 0 auto 32px;
    max-width: 500px;
  }
  
  .service-page__item-title {
    font-size: inherit;
    margin: 0 0 16px 0;
  }

  .service-page__item-img {
    width: 100%;
  }
  
}

/* ========================
↑ service page
======================== */



/**/
.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    opacity: 0;
    }

@keyframes fadeUpAnime{
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    
    to {
        opacity: 1;
        transform: translateY(0);
    }
}












/* ----- confirm complete ----- */
.confirm_title {
    margin: 0 0 30px 0;
    padding: 50px 0 0 0;
    font-size: 32px;
    font-weight: 500;
    text-align: center;
}

.contact__text {
    text-align: center;
}

.input-area {
    margin: 24px 0 0 0;
    text-align: center;
}

.btn__back,
.btn__submit {
    border-radius: 50vh;
    margin: 0 8px;
    padding: 20px 0;
    width: 280px;
    display: inline-block;
    letter-spacing: 0.05em;
    color: #fff;
    font-size: 20px;
}

.btn__back {
    max-width: 280px;
    width: 100%;
    padding: 20px 0;
    letter-spacing: 0.05em;
    color: #fff;
    font-size: 20px;
    border-radius: 50vh;
    transition: 0.3s;
    background: #b0b0b0;
    border: 2px solid #b0b0b0;
}

.btn__back:hover {
    background: #fff;
    color: #8c8c8c;
}

.btn__submit {
    max-width: 280px;
    width: 100%;
    padding: 20px 0;
    letter-spacing: 0.05em;
    background: #4EA6FE;
    color: #fff;
    font-size: 20px;
    border-radius: 50vh;
    transition: 0.3s;
    border: 2px solid #4EA6FE;
}

.btn__submit:hover {
    background: #fff;
    color: #4EA6FE;
}

.complete {
    padding: 160px 16px;
    text-align: center;
    background: #e9e9e9;
}

.send {
    width: 120px;
}

.complete__text {
    color: #4EA6FE;
    font-weight: bold;
    font-size: 24px;
}

.complete__note {
    padding: 40px 0 60px;
}

.footer__btm {
    position: absolute;
    bottom: 0;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .input-area {
        padding: 0 16px;
    }

    .btn__back,
    .btn__submit {
        width: 45%;
        padding: 16px 0;
        font-size: 16px;
    }
    
    .send {
        width: 80px;
    }
}

@media screen and (max-width: 520px) {
    .confirm {
        padding: 0 16px 60px;
    }

    .input-area {
        padding: 0;
    }
    
    .btn__back,
    .btn__submit {
        width: 45%;
        padding: 16px 0;
        margin: 0 4px;
    }

    .complete__text {
        font-size: 18px;
    }

    .complete__note {
        font-size: 14px;
    }
}