@charset "UTF-8";
/** pxからvwへ変換関数 **/
html {
  font-size: 10px;
}

body {
  color: #1E1E1E;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  font-family: "Noto Sans JP", "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}

/*.fixed {
  position: fixed;
}*/
ul {
  list-style: none;
}

a {
  -webkit-transition: all .5s 0s ease;
  transition: all .5s 0s ease;
}

a:hover {
  color: #4E2A87;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

h1 {
  font-size: 4rem;
}

h2 {
  font-size: 3.2rem;
  line-height: 1.5;
  margin-bottom: 3rem;
}

h3 {
  font-size: 2.8rem;
  line-height: 1.5;
}

h4 {
  font-size: 2.4rem;
  font-weight: 500;
}

h5 {
  font-size: 1.8rem;
  font-weight: 500;
}

table {
  width: 100%;
  text-align: left;
}

.w1000 {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

.w900 {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}

.w800 {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.w60 {
  width: 60%;
  padding-right: 3rem;
}

.w40 {
  width: 40%;
}

.w75 {
  width: 72%;
}

.w75 table th {
  width: 30%;
  font-weight: normal;
}

.w75 table td {
  width: 70%;
}

.w25 {
  width: 25%;
}

.text-align-center {
  text-align: center;
}

.text-align-right {
  text-align: right;
}

.font-bold {
  font-weight: bold;
}

.mt-02{
  margin-top: 2rem;
}

.mt-03 {
  margin-top: 3rem;
}

.mb-05 {
  margin-bottom: 5rem;
}

.mb-06 {
  margin-bottom: 6rem;
}

.mb-10 {
  margin-bottom: 10rem;
}

.mb-03 {
  margin-bottom: 3rem;
}

.mb-02 {
  margin-bottom: 2rem;
}

.pl-01 {
  padding-left: 1rem;
}

/*fonts*/
.lato-thin {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.lato-light {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.lato-regular {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.lato-bold {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.lato-black {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.lato-thin-italic {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.lato-light-italic {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.lato-regular-italic {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.lato-bold-italic {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.lato-black-italic {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: italic;
}

.pacifico-regular, .en {
  font-family: "Pacifico", cursive;
  font-weight: 400;
  font-style: normal;
}

.bg-purple {
  background-color: #F5F7FD;
  position: relative;
  z-index: 1;
}

.bg-purple:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../img/common/bg-rough.png");
  z-index: -1;
}

.bg-pink {
  background-color: #F7EEF0;
  position: relative;
  z-index: 1;
}

.bg-pink:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../img/common/bg-rough.png");
  z-index: -1;
}

.bg-grad-purple {
  color: #fff;
  background: linear-gradient(54deg, #3b56ce 0%, #2f4293 100%);
}

.bg-zara {
  background-image: url("../img/common/bg-rough.png");
}

.bg-white {
  background-color: #fff !important;
}

span.border-grad-purple {
  position: relative;
}

span.border-grad-purple::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1rem;
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(78deg, #271875 0%, #822ad4 100%);
}

.text-center {
  text-align: center;
}

.font-purple {
  color: #3B56CE;
}

/*===========
main contents
=============*/
.container {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flex-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex-start {
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: flex-start !important;
}

.flex-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.flex-center {
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}

.flex-align-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-align-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.flex-direction-col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flex-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flex-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.col-01 {
  width: 100%;
}

.col-02 {
  width: 48%;
  margin-bottom: 3rem;
}

.col-03 {
  width: 31%;
}

.cvn-area .contact-btn {
  color: #fff;
  display: block;
  padding: 1rem 3rem;
  width: 170px;
  text-align: center;
  border-radius: 40px;
  overflow: hidden;
  -webkit-transition: all .4s;
  transition: all .4s;
  position: relative;
}

.cvn-area .contact-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(78deg, #e52b61 0%, #c6064b 100%);
  -webkit-transition: background 0.4s ease;
  transition: background 0.4s ease;
  z-index: -1;
  border-radius: 40px;
}

.cvn-area .contact-btn:hover::before {
  background: linear-gradient(78deg, #b61f4b 0%, #970036 100%);
}

.btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.btns .btn {
  font-size: 2rem;
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 1.5rem 3rem;
  text-align: center;
  border-radius: 40px;
  overflow: hidden;
  -webkit-transition: all .4s;
  transition: all .4s;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.btns .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(78deg, #e52b61 0%, #c6064b 100%);
  -webkit-transition: background 0.4s ease;
  transition: background 0.4s ease;
  z-index: -1;
  border-radius: 40px;
}

.btns .btn:hover::before {
  background: linear-gradient(78deg, #b61f4b 0%, #970036 100%);
}

.btns .btn-arrow {
  background-color: #fff;
  border-radius: 50%;
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-left: 1rem;
}

.btns .btn-arrow:before {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 27%;
  width: 10px;
  height: 2px;
  border-radius: 9999px;
  background-color: #C6064B;
  -webkit-transform-origin: calc(100% - 1px) 50%;
          transform-origin: calc(100% - 1px) 50%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.btns .btn-arrow:after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 27%;
  width: 10px;
  height: 2px;
  border-radius: 9999px;
  background-color: #C6064B;
  -webkit-transform-origin: calc(100% - 1px) 50%;
          transform-origin: calc(100% - 1px) 50%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.main {
  overflow: hidden;
}

.section {
  padding: 7rem 0;
}

.section .title {
  display: inline-block;
  position: relative;
  margin-bottom: 6rem;
}

.section .title .en {
  color: #E52B61;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: rotate(10deg) translate(50%, -10%);
          transform: rotate(10deg) translate(50%, -10%);
}

.section .title .ja {
  position: relative;
  top: 25px;
}

.section .flex-wrap {
  margin-bottom: 6rem;
}

.section h2 .en {
  color: #3B56CE;
  font-size: 2.4rem;
  display: block;
}

.lead-section .content .img {
  width: 35%;
}

.lead-section .content .text {
  width: 62%;
}

.lead-section .content .img-full {
  margin-bottom: 2rem;
}

.lead-section .content .text-full {
  width: 80%;
  margin: 0 auto;
}

.works-section .flex-wrap {
  margin-bottom: 0;
}

.works-section .flex-wrap:after {
  content: "";
  width: 31%;
  display: block;
}

.works-section .flex-wrap .img {
  margin-bottom: 2rem;
}

.works-section .company-name {
  color: #3B56CE;
}

.works-section .col-03 {
  margin-bottom: 4rem;
}

.works-section .date {
  font-size: 1.4rem;
  color: #686868;
  display: inline-block;
  margin-right: 1.5rem;
}

.category {
  margin-top: 1.5rem;
}

.category span {
  font-size: 1.4rem;
  color: #3B56CE;
  border: 1px solid #3B56CE;
  display: inline-block;
  padding: 0 1.5rem;
  border-radius: 8px;
}

/*===========
header
=============*/
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.header .header-container {
  padding: 1.5rem 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: inherit;
  position: relative;
}

.header .logo {
  width: 295px;
}

.header .logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header .logo img {
  width: 100%;
}

.header.scrolled {
  background-color: #fff;
}

.nav-items__item {
  margin-right: 3rem;
}

.nav-items__item a {
  -webkit-transition: all .5s 0s ease;
  transition: all .5s 0s ease;
}

.nav-items__item a:hover {
  color: #4E2A87;
}

.header__nav {
  position: static;
  -webkit-transform: initial;
          transform: initial;
  background-color: inherit;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

.nav__items {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: initial;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.nav-items {
  padding-top: inherit;
  padding-bottom: inherit;
  top: 0;
  left: 0;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

/* ハンバーガーメニュー */
.header__hamburger {
  width: 48px;
  height: 100%;
}

.hamburger {
  border-color: transparent;
  z-index: 9999;
  background: #E52B61;
  height: 48px;
  border-radius: 50%;
}

.hamburger span {
  width: 80%;
  height: 2px;
  background-color: #fff;
  position: relative;
  -webkit-transition: ease .4s;
  transition: ease .4s;
  display: block;
  margin: 0 auto;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  margin: 8px auto;
}

.hamburger span:nth-child(3) {
  top: 0;
}

/* ハンバーガーメニュークリック後のスタイル */
.header__nav.active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.hamburger.active span:nth-child(1) {
  top: 10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  top: -10px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

footer {
  background-image: url("../img//common/bg-footer.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 5rem 0 2rem;
  color: #fff;
}

footer p {
  font-size: 1.4rem;
}

footer:before {
  content: "";
  background-color: rgba(59, 86, 206, 0.75);
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

footer .container {
  position: relative;
  z-index: 1;
}

footer .logo {
  width: 250px;
}

footer .logo img {
  margin-bottom: 2rem;
}

footer .menu-content {
  width: 60%;
  position: relative;
}

footer .menu {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

footer .menu .menu-list {
  width: 25%;
}

footer .menu .menu-list h5 {
  margin-bottom: 1.5rem;
}

footer a, footer .menu .menu-list a {
  color: #fff;
  transition: all .4s;
}

footer a:hover, footer .menu .menu-list a:hover {
  color: #ddd;
}

footer .menu .menu-list ul li:before {
  content: "-";
  padding-right: .5rem;
}

footer .menu-cta {
  position: absolute;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

footer .menu-cta a {
  font-size: 1.8rem;
  color: #fff;
  border: 2px solid #fff;
  padding: 0.5rem 3rem;
  border-radius: 30px;
}

footer .footer-bottom {
  margin-top: 5rem;
}

.copyright {
  font-size: 1.2rem;
}

@media screen and (min-width: 961px) {
  .hamburger {
    display: none;
  }
  .pc-none {
    display: none !important;
  }
}

@media screen and (max-width: 960px) {
  .header__nav {
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    background: url("../img/top/bg-main.jpg");
    background-blend-mode: multiply;
    -webkit-transition: ease .4s;
    transition: ease .4s;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-top: 6rem;
    z-index: 99;
  }
  .nav-items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 90%;
    margin: 0 auto;
    background-color: #fff;
    padding: 2rem 2rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    border-radius: 20px 20px;
    margin-bottom: 4rem;
  }
  .nav-items__item a {
    color: #56423D;
    display: block;
  }
  .nav-items__item:last-child a {
    margin-bottom: 0;
    border-bottom: 0;
  }
  .nav-items__item {
    width: 100%;
  }
  .nav-items__item a {
    margin-bottom: 0;
    display: block;
    padding: 1.4rem 0;
    border-bottom: 1px solid #56423D;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .nav-items__item a:after {
    content: "";
    background-image: url("../img/common/icon-arrow-brown.svg");
    width: 25px;
    height: 10px;
    display: block;
    margin-left: 1rem;
  }
  .cvn-area .contact-btn {
    width: 90%;
    margin: 0 auto;
    padding: 2rem 3rem;
  }
}

.nav-items__item.dropdown {
  position: relative;
}

.nav-items__item .dropdown-menu {
  visibility: hidden;  /* 初期状態で非表示にする */
  opacity: 0;  /* 非表示にする */
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  min-width: 200px;
  transform: translateY(-20px);  /* 少し上に位置をずらす */
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0s 0.5s;  /* visibilityの遅延 */
  z-index: 10;
}

.nav-items__item:hover .dropdown-menu {
  visibility: visible;  /* 表示状態にする */
  opacity: 1;  /* フワッと表示 */
  transform: translateY(0);  /* 元の位置に戻す */
  transition: opacity 0.5s ease, transform 0.5s ease;  /* アニメーション */
}

.nav-items__item .dropdown-menu li {
  padding: 10px;
}

.nav-items__item .dropdown-menu li a {
  color: #333;
  text-decoration: none;
  display: block;
  padding: 5px 10px;
}

.nav-items__item .dropdown-menu li a:hover {
  background-color: #f5f5f5;
}

.all-member img {
  display: block;
  margin: 0 auto 5rem;
}

@media screen and (max-width: 1080px) {
  .container {
    padding: 0 2rem;
  }
}

@media screen and (max-width: 960px) {
  .header .logo {
    width: 35%;
  }
  .nav-items__item .dropdown-menu {
    display: none !important;
  }
}

@media screen and (min-width: 761px) {
  .sp-br {
    display: none;
  }
}

@media screen and (max-width: 760px) {
  .sp-marin-zero {
    margin-bottom: 0 !important;
  }
  .pc-br {
    display: none;
  }
  .w60 {
    width: 100%;
    padding-right: 0;
    margin-bottom: 4rem;
  }
  .w40 {
    width: 100%;
  }
  .col-02 {
    width: 100%;
  }
  .col-03 {
    width: 100%;
    margin-bottom: 3rem;
  }
  .col-03:last-child {
    margin-bottom: 0;
  }
  footer {
    padding: 3rem 0;
  }
  footer .menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer .menu .menu-list {
    width: 100%;
    padding: 1.5rem 0;
  }
  footer .menu .menu-list h5 {
    border-bottom: 1px solid #fff;
    text-align: left;
  }
  footer .menu-content {
    width: 100%;
  }
  footer .menu-cta {
    position: static;
  }
  .lead-section .content .img {
    width: 70%;
    margin: 0 auto 2rem;
  }
  .lead-section .content .text {
    width: 100%;
  }
  .section .title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .section .title img {
    width: 25%;
  }
  .section .title .ja {
    width: 75%;
    padding-left: 1.5rem;
  }
  .section .title .en {
    -webkit-transform: rotate(10deg) translate(0%, -50%);
            transform: rotate(10deg) translate(0%, -50%);
  }
  .works-section .btn {
    margin-top: 5rem;
  }
}

@media screen and (max-width: 540px) {
  body {
    font-size: 4vw;
  }
  h1 {
    font-size: 8vw;
  }
  h2 {
    font-size: 6.66667vw;
  }
  h3 {
    font-size: 5.33333vw;
  }
  h4 {
    font-size: 4.26667vw;
  }
  .header .logo {
    width: 50%;
  }
  .btns .btn {
    font-size: 4.8vw;
  }
  .breadcrumb ul li {
    font-size: 3.2vw;
  }
  .section .title .ja {
    font-size: 6vw;
  }
}
/*# sourceMappingURL=style.css.map */