@charset "UTF-8";
/* .l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  z-index: 100;
}
.l-header-inner {
  width: 90%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}
.l-header h1 {
  width: 40px;
}
.l-header h1 img {
  width: 100%;
}
.l-header nav {
  display: inline-block;
  margin-left: auto;
  margin-top: 15px;
}
.l-header ul {
  display: flex;
  font-size: 12px;
}
.l-header ul li:not(:last-child) {
  margin-right: 24px;
}
.l-header ul a:hover {
  color: #FF7F50;
} */

.hamburger-line {
  position: absolute;
  left: 13px;
  width: 18px;
  height: 2px;
  background-color: #333;
  transition: all 0.6s;
}

.hamburger-line01 {
  top: 15px;
}

.hamburger-line02 {
  top: 20px;
}

.hamburger-line03 {
  top: 25px;
}

.l-footer {
  background-color: #333333;
  color: #ffffff;
  font-size: 13px;
}
@media screen and (min-width: 1024px) {
  .l-footer {
    position: relative;
  }
}
.l-footer-sns {
  width: 25px;
  margin: 0 auto;
  padding: 32px 0;
  justify-content: space-between;
}
.l-footer-sns a {
  width: 25px;
  transition: all 0.3s 0s;
}
.l-footer-sns a:hover {
  opacity: 0.8;
}
.l-footer-sns a img {
  width: 100%;
}
.l-footer-nav {
  display: flex;
  width: 90%;
  max-width: 375px;
  margin: 0 auto;
  margin-bottom: 32px;
  justify-content: space-between;
}
.l-footer-company {
  font-size: 11px;
  text-align: center;
  padding-bottom: 32px;
}

.l-section-container {
  width: 90%;
  margin: 0 auto;
  padding: 48px 0;
}
@media screen and (min-width: 768px) {
  .l-section-container {
    max-width: 1000px;
  }
}

.l-section-container-lv2 {
  width: 90%;
  margin: 0 auto;
  padding: 32px 16px;
}

.l-grid-bg {
  content: "";
  display: block;
  width: 100%;
  height: 350vh;
  position: absolute;
  top: calc(100vh + 403px);
  left: 0;
  right: 0;
  background-color: white;
  /* 方眼紙模様に必須のスタイル */
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px));
  background-size: 16px 16px;
  background-repeat: repeat;
  background-position: center center;
  /* 以下任意のスタイル */
  padding: 20px;
  z-index: -1;
}
@media screen and (min-width: 1024px) {
  .l-grid-bg {
    height: 200vh;
  }
}

.scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}

.scroll_up.on {
  transform: translateY(0);
  opacity: 1;
}

.p-heroArea {
  width: 100%;
  height: 100vh;
  position: relative;
}
.p-heroArea-bg {
  z-index: -2;
}
.p-heroArea-textArea {
  position: fixed;
  bottom: 20%;
  left: 5%;
  z-index: -1;
}
.p-heroArea-text {
  font-size: 18px;
  line-height: 1.5;
  font-weight: bold;
  text-decoration: underline;
  color: #ffffff;
}
.p-heroArea-text span {
  color: #FF7F50;
}
@media screen and (min-width: 1024px) {
  .p-heroArea-text {
    font-size: 30px;
  }
}
.p-heroArea-title {
  font-size: 60px;
  font-weight: bold;
  color: #ffffff;
  font-family: "Avenir", "Noto Sans";
}
@media screen and (min-width: 1024px) {
  .p-heroArea-title {
    font-size: 80px;
  }
}
.p-heroArea-title .title_em {
  color: #FF7F50;
}
.p-heroArea-title .title_br {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .p-heroArea-title .title_br {
    margin-left: 30px;
  }
}
.p-heroArea-title .title_br span {
  color: #FF7F50;
}

.video-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: -4;
}

video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 動画が領域にピッタリ収まるように */
}

.video-bg {
  width: 100vw;
  height: 100vh;
  background-color: #333333;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -3;
  background-image: url(/img/heroArea_bg01.png);
  background-position: bottom;
  background-repeat: repeat-x;
}
@media screen and (min-width: 1024px) {
  .video-bg {
    height: 150vh;
    background-size: 1000px;
  }
}

/*スクロールダウン全体の場所*/
.scrolldown1 {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  left: 50%;
  bottom: 20px;
  /*全体の高さ*/
  height: 50px;
}
.scrolldown1::before {
  content: "";
  width: 65px;
  height: 65px;
  display: block;
  border-radius: 50%;
  border: 1px solid #FF7F50;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  bottom: 10px;
}

/*Scrollテキストの描写*/
.scrolldown1 span {
  /*描画位置*/
  position: absolute;
  left: -15px;
  top: -10px;
  /*テキストの形状*/
  color: #eee;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}

/* 線の描写 */
.scrolldown1::after {
  content: "";
  /*描画位置*/
  position: absolute;
  top: 0;
  /*線の形状*/
  width: 1px;
  height: 10px;
  background: #eee;
  /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 15px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 30px;
    opacity: 0;
  }
}
.p-service {
  background-color: #FF7F50;
  margin-bottom: 40px;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .p-service {
    width: 90%;
    border-radius: 0 300px 300px 0;
    margin-top: 30px;
  }
}
@media screen and (min-width: 1024px) {
  .p-service-container {
    width: 100%;
    display: flex;
  }
}
.p-service-title {
  font-size: 20px;
  margin-bottom: 40px;
  color: #ffffff;
  font-weight: bold;
}
@media screen and (min-width: 1024px) {
  .p-service-title {
    font-size: 24px;
  }
}
.p-service-title-lv2 {
  font-size: 13px;
  line-height: 2;
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 24px;
}
@media screen and (min-width: 1024px) {
  .p-service-left {
    width: 40%;
    margin-right: 150px;
  }
}
.p-service-text {
  font-size: 12px;
  line-height: 2;
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 24px;
}
@media screen and (min-width: 1024px) {
  .p-service-text {
    font-size: 14px;
  }
}
.p-service-img {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .p-service-img {
    width: 350px;
  }
}
.p-service-img img {
  width: 100%;
}

.p-service2 {
  width: 100%;
  background-repeat: repeat;
  background-size: 200% 200%;
  z-index: 2;
  position: relative;
}
.p-service2-item {
  position: relative;
  margin-bottom: 80px;
}
@media screen and (min-width: 1024px) {
  .p-service2-item {
    display: flex;
    max-width: 900px;
    margin: 0 auto;
  }
}
.p-service2-item:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .p-service2-item:nth-child(odd) {
    margin-bottom: 100px;
  }
}
@media screen and (min-width: 1024px) {
  .p-service2-item:nth-child(odd) img {
    display: block;
    position: absolute;
    right: 0;
    width: 300px;
  }
}
@media screen and (min-width: 1024px) {
  .p-service2-item:nth-child(even) img {
    position: inherit;
    display: block;
    width: 300px;
    margin-right: 100px;
  }
}
.p-service2-item img {
  width: 130px;
  position: absolute;
  right: 0;
  top: -40px;
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  .p-service2-item dl {
    width: 50%;
    font-size: 14px;
  }
}
.p-service2-item dt {
  color: #FF7F50;
  margin-bottom: 40px;
}
@media screen and (min-width: 1024px) {
  .p-service2-item dt {
    margin-bottom: 30px;
  }
}
.p-service2-item dt::before {
  display: inline-block;
  content: "";
  width: 13px;
  height: 13px;
  background-color: #FF7F50;
  border-radius: 15px;
  margin-right: 8px;
}
.p-service2-item dd {
  font-size: 13px;
  line-height: 2;
}

.p-works-title {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .p-works-title {
    font-size: 40px;
  }
}
.p-works-subTitle {
  font-size: 13px;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (min-width: 1024px) {
  .p-works-subTitle {
    font-size: 14px;
  }
}
.p-works p {
  font-size: 13px;
  line-height: 2;
  margin-bottom: 40px;
}
@media screen and (min-width: 1024px) {
  .p-works p {
    width: 800px;
    margin: 0 auto;
    font-size: 14px;
    margin-bottom: 45px;
  }
}
.p-works img {
  display: block;
  width: 330px;
  margin: 0 auto;
}

.p-members {
  background-color: #f7f7f7;
  border-radius: 50px 50px 0 0;
  padding-top: 40px;
  padding-bottom: 60px;
  margin-top: 40px;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .p-members {
    padding-bottom: 50px;
  }
}
.p-members-wrapper {
  position: relative;
}
.p-members h2 {
  text-align: center;
  font-size: 30px;
  font-weight: bold;
}
@media screen and (min-width: 1024px) {
  .p-members h2 {
    font-size: 40px;
  }
}
.p-members p {
  font-size: 13px;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (min-width: 1024px) {
  .p-members p {
    font-size: 14px;
    margin-bottom: 80px;
  }
}
@media screen and (min-width: 1024px) {
  .p-members-slide-wrapper {
    width: 1000px;
    padding-top: 600px;
    margin: 0 auto;
    display: flex;
    position: relative;
    z-index: 2;
  }
}
@media screen and (min-width: 1024px) {
  .p-members-slide-wrapper .item1 {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transition: all 0.3s ease 0s;
  }
}
@media screen and (min-width: 1024px) {
  .p-members-slide-wrapper .item1:hover {
    top: 10px;
  }
}
@media screen and (min-width: 1024px) {
  .p-members-slide-wrapper .item2 {
    position: absolute;
    top: 20%;
    left: 0;
    margin: auto;
    transform: rotate(-10deg);
    transition: all 0.3s ease 0s;
  }
}
@media screen and (min-width: 1024px) {
  .p-members-slide-wrapper .item2:hover {
    top: 18%;
  }
}
@media screen and (min-width: 1024px) {
  .p-members-slide-wrapper .item3 {
    position: absolute;
    top: 20%;
    right: 0;
    margin: auto;
    transform: rotate(10deg);
    transition: all 0.3s ease 0s;
  }
}
@media screen and (min-width: 1024px) {
  .p-members-slide-wrapper .item3:hover {
    top: 18%;
  }
}
.p-members-card {
  width: 285px;
  min-height: 390px;
  background-color: #FF7F50;
  border-radius: 10px;
  padding: 24px 16px;
  margin: 10px auto;
  transform: rotate(5deg);
}
.p-members-card dl {
  color: #ffffff;
}
.p-members-card dl dd {
  font-size: 13px;
  line-height: 2;
}
.p-members-card dl dt {
  font-size: 20px;
  margin: 8px 0;
}
.p-members-img {
  display: inline-block;
  width: 176px;
  height: 176px;
  border-radius: 100px;
  background-color: #FFAA8B;
  position: relative;
  left: 45px;
}
.p-members-img::after {
  display: inline-block;
  content: "";
  width: 158px;
  height: 158px;
  border-radius: 100px;
  position: absolute;
  top: 9px;
  left: 9px;
  background-color: #ffffff;
}
.p-members-img img {
  position: absolute;
  z-index: 2;
  top: 30px;
  left: 35px;
}
.p-members-slider {
  margin: 40px 0;
  position: relative;
}
.p-members-slider-wrapper {
  width: 300px;
}
.p-members-bg {
  width: 350px;
  height: 350px;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  animation: rotate 15s linear infinite;
}
@media screen and (min-width: 768px) {
  .p-members-bg {
    top: 30%;
    width: 450px;
    height: 450px;
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

.button-next,
.button-prev {
  cursor: pointer;
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}
.button-next::before,
.button-prev::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border: 1px solid #FF7F50;
  border-width: 3px 3px 0 0;
  position: absolute;
  top: 25px;
}

.button-next {
  right: 15px;
}
@media screen and (min-width: 768px) {
  .button-next {
    right: 10%;
  }
}
@media screen and (min-width: 1024px) {
  .button-next {
    display: none;
  }
}
.button-next::before {
  left: 16px;
  transform: translateY(-50%) rotate(45deg);
}

.button-prev {
  left: 15px;
}
@media screen and (min-width: 768px) {
  .button-prev {
    left: 10%;
  }
}
@media screen and (min-width: 1024px) {
  .button-prev {
    display: none;
  }
}
.button-prev::before {
  left: 20px;
  transform: translateY(-50%) rotate(-135deg);
}

.pagination {
  padding: 5px 0;
  display: flex;
  justify-content: center;
  z-index: 1;
}
.pagination span {
  width: 10px;
  height: 10px;
  background: #cfcfcf;
  opacity: 1;
}
.pagination .swiper-pagination-bullet-active {
  background-color: #FF7F50;
}

.p-company {
  background-color: #f7f7f7;
  padding-top: 24px;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .p-company {
    padding-bottom: 100px;
  }
}
.p-company-title {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .p-company-title {
    font-size: 40px;
  }
}
.p-company-text {
  font-size: 13px;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .p-company-text {
    font-size: 14px;
  }
}
.p-company-wrap {
  background-color: #ffffff;
  border-radius: 20px;
  margin-top: 24px;
  z-index: 2;
}
@media screen and (min-width: 1024px) {
  .p-company-wrap {
    display: flex;
    justify-content: space-between;
  }
}
.p-company-content {
  font-size: 13px;
  margin-bottom: 40px;
}
@media screen and (min-width: 1024px) {
  .p-company-content {
    margin-top: 40px;
    width: 40%;
  }
}
.p-company-content div {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #d9d9d9;
  position: relative;
}
.p-company-content div::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 25%;
  bottom: -1px;
  border-bottom: 1px solid #FF7F50;
}
.p-company-content dt {
  font-weight: normal;
  display: inline-block;
  width: 40%;
}
.p-company-content dd {
  display: inline-block;
  width: 55%;
}
@media screen and (min-width: 1024px) {
  .p-company-contact {
    width: 50%;
  }
}
.p-company-contact-title {
  font-size: 34px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 24px;
}
.p-company-contact-title span {
  display: block;
  position: relative;
  font-size: 37px;
  color: #ffffff;
  letter-spacing: 2px;
  text-shadow: 1px 1px 0px #333333, -1px 1px 0px #333333, 1px -1px 0px #333333, -1px -1px 0px #333333, 1px 0px 0px #333333, 0px 1px 0px #333333, -1px 0px 0px #333333, 0px -1px 0px #333333;
}
.p-company-contact-title span:before {
  content: "";
  /*絶対配置で下線の位置を決める*/
  position: absolute;
  bottom: 0;
  right: 0;
  /*下線の形状*/
  width: calc(100% - 195px);
  height: 1px;
  background: #333;
  /*アニメーションの指定*/
  transition: all 0.3s;
}
.p-company-contact-title span:after {
  content: "";
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  bottom: 3px;
  right: 0;
  /*矢印の形状*/
  width: 10px;
  height: 1px;
  background: #333;
  transform: rotate(35deg);
  /*アニメーションの指定*/
  transition: all 0.3s;
}
.p-company-contact-title span:hover::before {
  right: -2%;
}
.p-company-contact-title span:hover::after {
  right: -2%;
}
.p-company-contact-btn li {
  width: 100%;
  height: 75px;
  border-radius: 10px;
  transition: all 0.3s 0s;
}
.p-company-contact-btn li:hover {
  opacity: 0.5;
  transform: ease 1s;
}
.p-company-contact-btn li:first-child {
  background-image: url(/img/company_bt01.png);
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: 16px;
  color: #ffffff;
  text-align: center;
}
.p-company-contact-btn li:nth-child(2) {
  background-image: url(/img/company_bt02.png);
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: 16px;
  color: #ffffff;
  text-align: center;
}
.p-company-contact-btn li a {
  width: 100%;
}
.p-company-contact-btn li a span:first-child {
  display: block;
  font-size: 16px;
  font-weight: bold;
  padding-top: 18px;
  padding-bottom: 4px;
}
.p-company-contact-btn li a span:nth-child(2) {
  font-size: 12px;
}
.p-company-contact-note {
  font-size: 11px;
}

canvas {
  display: block;
  vertical-align: bottom;
} /* ---- particles.js container ---- */
#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  background-image: url("");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
} /* ---- stats.js ---- */
.count-particles {
  background: #000022;
  position: absolute;
  top: 48px;
  left: 0;
  width: 80px;
  color: #13E8E9;
  font-size: 0.8em;
  text-align: left;
  text-indent: 4px;
  line-height: 14px;
  padding-bottom: 2px;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: bold;
}

.js-count-particles {
  font-size: 1.1em;
}

#stats, .count-particles {
  -webkit-user-select: none;
  margin-top: 5px;
  margin-left: 5px;
}

#stats {
  border-radius: 3px 3px 0 0;
  overflow: hidden;
}

.count-particles {
  border-radius: 0 0 3px 3px;
}

.p-textCard01 {
  transform: rotate(-5deg);
}
.p-textCard01 li img {
  width: 566px;
  height: 41px;
}

.p-textCard02 {
  transform: rotate(5deg);
}
.p-textCard02 li img {
  width: 566px;
  height: 41px;
}

.p-roundText-text {
  margin: 20px;
  color: white;
}

.p-roundText-container {
  width: 100%;
  aspect-ratio: 4/1;
}

.p-roundText-bg {
  display: inline-block;
  width: 250px;
  height: 250px;
  border-radius: 200px;
  position: absolute;
  top: 50%;
  left: calc(50% - 125px);
  background-color: #EFE0CB;
}
@media screen and (min-width: 1024px) {
  .p-roundText-bg {
    width: 400px;
    height: 400px;
    top: 170px;
    left: calc(50% - 190px);
  }
}

.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 80px;
  z-index: 200;
  background-color: rgba(255, 255, 255, 0.3);
}

.header_inner {
  position: relative;
}

.nav {
  padding: 15px 0px;
}
 

.logo {
  position: absolute;
  top: 0;
  left: 0;
}

.title {
  width: 56px;
}
.title img {
  width: 100%;
}

/* header固定のため余白をつける。メニューのCSSには関係ない */
.main {
  margin-top: 80px;
}

@media only screen and (max-width: 768px) {

  .header{
    height: 56px;
    padding: 0px 15px;

  }
  .nav {
    position: fixed;
    right: -320px; /* 右から出てくる */
    top: 0;
    width: 300px; /* スマホに収まるサイズ */
    height: 100vh;
    padding-top: 60px;
    background-color: #fff;
    transition: all 0.6s;
    z-index: 200;
    overflow-y: auto; /* メニューが多くなったらスクロールできるように */
  }
  .hamburger {
    position: absolute;
    right: 15px;
    top: 8px;
    width: 40px; /* クリックしやすい幅 */
    height: 40px; /* クリックしやすい高さ */
    cursor: pointer;
    z-index: 300;
  }
  .nav_list {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .nav_item {
    text-align: center;
    padding: 0 14px;
  }
  .nav_item a {
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #333;
  }
  .nav_item a:hover {
    background-color: #eee;
  }
  .hamburger_border {
    position: absolute;
    left: 11px;
    width: 18px;
    height: 2px;
    background-color: #333;
    transition: all 0.6s;
  }
  .hamburger_border_top {
    top: 14px;
  }
  .hamburger_border_center {
    top: 20px;
  }
  .hamburger_border_bottom {
    top: 26px;
  }
  .black_bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    background-color: #333;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s;
    cursor: pointer;
  }
  /* 表示された時用のCSS */
  .nav-open .nav {
    right: 0;
  }
  .nav-open .black_bg {
    opacity: 0.8;
    visibility: visible;
  }
  .nav-open .hamburger_border_top {
    transform: rotate(45deg);
    top: 20px;
  }
  .nav-open .hamburger_border_center {
    width: 0;
    left: 50%;
  }
  .nav-open .hamburger_border_bottom {
    transform: rotate(-45deg);
    top: 20px;
  }
} /* sp */
@media only screen and (min-width: 769px) {
  .header_inner {
    max-width: 980px;
    width: 100%;
    padding: 15px 30px;
    margin-left: auto;
    margin-right: auto;
  }
  .logo {
    padding: 12px 30px;
  }
  .nav_list {
    text-align: right;
  }
  .nav_list li {
    display: inline-block;
    text-align: right;
    padding-left: 20px;
  }
  .nav_list li a {
    color: #333333;
    font-weight: 600;
    transition: all 0.3s ease 0s;
  }
  .nav_list li a:hover {
    color: #FF7F50;
  }
} /* pc */

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