@charset "UTF-8";
/*------------------------------------------------------------
 common
------------------------------------------------------------*/
html {
  scroll-behavior: smooth;
}

body * {
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}

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

.l-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.section__ttl {
  font-size: 40px;
  font-weight: 700;
  font-family: oswald;
  letter-spacing: 0.03em;
  text-align: center;
  margin-bottom: 40px;
}
.section__ttl::after {
  content: "";
  display: block;
  width: 49px;
  height: 7px;
  background: linear-gradient(to right, #133279, #0BA366);
  margin: 5px auto 0;
  transition: all 0.8s 0.5s ease;
  opacity: 0;
}
.section__ttl.active::after {
  opacity: 1;
}

/*全共通*/
.bgextend {
  animation-name: bgextendAnimeBase;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  position: relative;
  overflow: hidden;
  /*　はみ出た色要素を隠す　*/
  opacity: 0;
}

@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*中の要素*/
.bgappear {
  animation-name: bgextendAnimeSecond;
  animation-duration: 1s;
  animation-delay: 0.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*左から右*/
.bgLRextend::before {
  animation-name: bgLRextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  /*伸びる背景色の設定*/
}

.section__ttl .bgLRextend::before {
  background: linear-gradient(to right, #133279, #0BA366);
}

.box__ttl .bgLRextend::before {
  background: #1D1D1D;
}

@keyframes bgLRextendAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.bgappearTrigger,
.bgLRextendTrigger {
  opacity: 0;
}

.animation-box:nth-child(odd) {
  background: #eee;
}

.fade {
  opacity: 0;
  transition: all 0.8s 0.5s ease;
}

.fade.active {
  opacity: 1;
}

/*------------------------------------------------------------
 HEADER
------------------------------------------------------------*/
#header {
  height: 73px;
  position: absolute;
  z-index: 4;
  left: 0;
  right: 0;
  transition: 0.3s all;
}
#header.fixed {
  position: fixed;
  background-color: #FFFFFF;
  box-shadow: 0 0 25px rgba(29, 29, 29, 0.16);
  transition: 0.3s all;
}
#header.fixed .l-header li a {
  color: #1D1D1D;
}
#header .l-header {
  height: 73px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1306px;
  margin: 0 auto;
  padding: 0 20px;
}
#header .l-header a:hover {
  opacity: 0.6;
  transition: 0.5s all;
}
#header .l-header__nav--pc {
  display: flex;
  justify-content: space-between;
}
#header .l-header__nav--pc li a {
  color: #FFFFFF;
  display: block;
  padding: 0 27px 0 28px;
  text-align: center;
  font: normal normal bold 18px/24px Zen Kaku Gothic New;
  transition: 0.5s all;
}
#header .l-header__nav--pc li a span {
  display: block;
  font: normal normal bold 14px/21px Oswald;
  letter-spacing: 2.8px;
}
#header .l-header__nav--pc li a:hover {
  opacity: 0.6;
  transition: 0.5s all;
}
#header .l-header__nav--pc li:first-child a {
  padding: 0 27px 0 0;
}
#header .l-header__nav--pc li:last-child a {
  padding: 0 0 0 28px;
}

.l-header__nav--sp {
  display: none;
}

.header__list {
  display: none;
}

.header__btn {
  display: none;
}

@media screen and (max-width: 1080px) {
  #header .l-header__nav--pc {
    display: none;
  }
  .l-header__nav--sp {
    display: block;
  }
  #header:not(.fixed) .header__btn {
    display: none;
  }
  .header__btn {
    display: block;
  }
  .header__btn img {
    width: 20px;
  }
  .header__list {
    position: absolute;
    top: 73px;
    left: 0;
    right: 0;
    width: 100vw;
    background-color: #FFFFFF;
    padding: 0 30px;
  }
  .header__list li {
    margin-bottom: 30px;
  }
  .header__list li a {
    display: block;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
  }
}
/*------------------------------------------------------------
 MV
-----------------------------------------------------------*/
.p-mv {
  height: 400px;
  background: url(assets/images/mv_bg.jpg);
}
.p-mv__content {
  padding-top: 134px;
}
.p-mv__content h1 {
  font: normal normal bold 38px/60px Noto Sans CJK JP;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  margin-bottom: 0px;
}
.p-mv__content h1 .deco {
  display: block;
  font-size: 26px;
  font-weight: 500;
  font-family: oswald;
  letter-spacing: 0.03em;
  margin-bottom: -3px;
}
.p-mv__content figure img {
  display: block;
  width: 241px;
}

@media screen and (max-width: 768px) {
  .p-mv {
    height: auto;
    padding-bottom: 60px;
    background: url(assets/images/mv_bg.jpg) no-repeat center/cover;
  }
  .p-mv__content {
    padding-top: 134px;
  }
  .p-mv__content h1 {
    font: normal normal bold 30px/60px Noto Sans CJK JP;
    letter-spacing: 0.1em;
    color: #FFFFFF;
    margin-bottom: 30px;
  }
  .p-mv__content h1 span {
    display: block;
    font-size: 22px;
    font-weight: 500;
    font-family: oswald;
    letter-spacing: 0.03em;
    margin-bottom: -3px;
  }
  .p-mv__content figure img {
    display: block;
    width: 121px;
  }
}
/*------------------------------------------------------------
 PRODUCT
------------------------------------------------------------*/
.p-product {
  padding-top: 60px;
}
.p-product ul {
  display: flex;
  justify-content: space-between;
}
.p-product__list {
  max-width: 510px;
  min-width: 340px;
  box-shadow: 0 0 25px rgba(29, 29, 29, 0.16);
  transition: 0.5s all;
}
.p-product__list img {
  transition: 0.5s all;
}
.p-product__list:hover {
  opacity: 0.6;
  transition: 0.5s all;
}
.p-product__list:hover img {
  transform: scale(1.1);
  transition: 0.5s all;
}
.p-product__list a {
  display: block;
}
.p-product__list.-first {
  margin-right: 20px;
}
.p-product__list.-first div:first-child {
  background-color: #5776F2;
}
.p-product__list.-second div:first-child {
  background-color: #AADBD8;
}
.p-product__list__figure {
  height: 107px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-product__list__content {
  position: relative;
  padding: 33px 52px 76px;
}
.p-product__list__content::before {
  content: "MORE";
  position: absolute;
  bottom: 34px;
  right: 48px;
  color: #1D1D1D;
  font-size: 13px;
  font-weight: 400;
  font-family: oswald;
  letter-spacing: 0.05em;
}
.p-product__list__content::after {
  content: "";
  position: absolute;
  display: block;
  width: 54.26px;
  height: 5px;
  bottom: 30.4px;
  right: 30.5px;
  background: url(assets/images/product_aroow_01.png) no-repeat center/cover;
}
.p-product__list__content h3 {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  color: #1D1D1D;
  margin-bottom: 33px;
}
.p-product__list__content h3 span {
  display: block;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.15em;
}
.p-product__list__content p {
  color: #1D1D1D;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.85;
}

@media screen and (max-width: 768px) {
  .p-product ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  .p-product__list.-first {
    margin-right: 0;
    margin-bottom: 40px;
  }
}
/*------------------------------------------------------------
 WORK
------------------------------------------------------------*/
.p-work {
  padding-top: 80px;
}
.p-work__container ul li {
  position: relative;
  width: 313px;
}
.p-work__container ul li a {
  display: block;
  transition: 0.3s all;
}
.p-work__container ul li a:hover {
  opacity: 0.8;
  transition: 0.3s all;
}
.p-work__container ul li figure {
  display: block;
  margin-bottom: 18px;
}
.p-work__container ul li h3 {
  width: 304px;
  margin: 0 auto 16px;
  color: #1D1D1D;
  font-size: 20px;
  font-weight: 700;
}
.p-work__container ul li p {
  width: 304px;
  margin: 0 auto;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
}
.p-work .swiper-container {
  overflow-x: hidden;
  overflow-y: auto;
}
.p-work .swiper-pagination {
  margin-top: 24px;
  position: unset;
}
.p-work .swiper-pagination .swiper-pagination-bullet-active {
  background: #1D1D1D;
}

/*------------------------------------------------------------
 ABOUT
------------------------------------------------------------*/
.p-about {
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}
.p-about p {
  max-width: 966px;
  padding: 0 20px;
  margin: 0 auto;
  font-size: 16px;
  font-weight: 500;
  line-height: 2.28;
  margin-bottom: 146px;
}
.p-about__info__content {
  display: block;
  margin: 80px 0 55px 0;
  width: 84%;
  border: #00976b solid 4px;
  padding: 76px 10% 66px 8%;
  position: relative;
  left: -4px;
}
.p-about__info__content h3 {
  position: absolute;
  left: 10%;
  top: -25px;
  font-size: 32px;
  font-weight: 500;
  font-family: oswald;
  letter-spacing: 0.05em;
  padding: 0 22px;
  background-color: #FFFFFF;
  color: #1D1D1D;
}
.p-about__info__content div dl {
  display: flex;
}
.p-about__info__content div dl dt {
  width: 120px;
  height: 67.6px;
  font-size: 16px;
  font-weight: 600;
  font-family: Zen Kaku Gothic New;
  border-top: #1D1D1D solid 1px;
  line-height: 67.6px;
  padding-left: 10px;
  margin-right: 85px;
}
.p-about__info__content div dl dd {
  width: 660px;
  height: 67.6px;
  font-size: 17px;
  font-weight: 500;
  border-top: #D8D8D8 solid 1px;
  line-height: 67.6px;
  padding-left: 13px;
}
.p-about__info__content div dl:last-child dt {
  border-bottom: #1D1D1D solid 1px;
}
.p-about__info__content div dl:last-child dd {
  border-bottom: #D8D8D8 solid 1px;
}
.p-about__client__content {
  display: block;
  margin: 0 0 0 auto;
  width: 71%;
  border: #123179 solid 4px;
  padding: 61px 10% 55px;
  position: relative;
  right: -4px;
}
.p-about__client__content h3 {
  position: absolute;
  left: 10%;
  top: -25px;
  font-size: 32px;
  font-weight: 500;
  font-family: oswald;
  letter-spacing: 0.05em;
  padding: 0 22px;
  background-color: #FFFFFF;
  color: #1D1D1D;
}
.p-about__client__content ul li {
  display: inline-block;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-right: 2em;
  margin-bottom: 15px;
}

@media screen and (max-width: 1080px) {
  .p-about__info__content {
    width: 92%;
    padding: 76px 5% 66px 5%;
  }
  .p-about__info__content div dl dt {
    margin-right: 40px;
  }
}
@media screen and (max-width: 768px) {
  .p-about__info__content div dl dt {
    width: 310px;
    margin-right: 20px;
    font-size: 13px;
  }
  .p-about__info__content div dl dd {
    display: flex;
    align-items: center;
    font-size: 12px;
    line-height: 20px;
  }
  .p-about__client__content {
    width: 92%;
  }
  .p-about__client__content ul li {
    font-size: 13px;
  }
}
/*------------------------------------------------------------
 PROFILE
------------------------------------------------------------*/
.p-profile {
  padding: 80px 20px 0;
  max-width: 966px;
  margin: 0 auto;
}
.p-profile .section__ttl {
  margin-bottom: 63px;
}
.p-profile__content {
  border: #1D1D1D solid 4px;
  position: relative;
  padding: 40px 30px 40px;
}
.p-profile__content h3 {
  position: absolute;
  left: 10%;
  top: -25px;
  font-size: 32px;
  font-weight: 500;
  font-family: oswald;
  letter-spacing: 0.05em;
  padding: 0 22px;
  background-color: #FFFFFF;
  color: #1D1D1D;
}
.p-profile__content__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 737px;
  margin: 0 auto;
}
.p-profile__content__inner figure {
  margin-right: 20px;
}
.p-profile__content__inner figure img {
  max-width: 187px;
}
.p-profile__content__inner p {
  width: 445px;
  font-size: 16px;
  line-height: 1.85;
}

@media screen and (max-width: 768px) {
  .p-profile__content {
    padding: 80px 25px 70px;
  }
  .p-profile__content__inner {
    flex-wrap: wrap;
    justify-content: center;
  }
  .p-profile__content__inner figure {
    margin-bottom: 30px;
  }
}
/*------------------------------------------------------------
 CONTACT
------------------------------------------------------------*/
.p-contact {
  padding: 80px 20px;
  max-width: 966px;
  margin: 0 auto;
}
.p-contact p {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 40px;
}
.p-contact a {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 60px;
  text-align: center;
  display: block;
  width: 308px;
  height: 60px;
  background: #1D1D1D;
  margin: 0 auto;
  border-radius: 33px;
  transition: 0.5s all;
}
.p-contact a:hover {
  transition: 0.5s all;
  background: linear-gradient(to right, #133279, #0BA366);
}

/*------------------------------------------------------------
 FOOTER
------------------------------------------------------------*/
.l-footer {
  background-color: #1D1D1D;
  height: 56px;
}
.l-footer small {
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  line-height: 56px;
  display: block;
  text-align: center;
  font-family: oswald;
  letter-spacing: 0.1em;
}

/*------------------------------------------------------------
 CONTACT-PAGE
------------------------------------------------------------*/
#contact-page .l-container {
  margin: 0 auto;
}
#contact-page #header {
  top: 0;
}
#contact-page #mv {
  background: #F6F6F6;
  height: 100px;
  margin-top: 73px;
}
#contact-page #mv h1 {
  position: relative;
  top: 24px;
  margin: 0 auto;
  text-align: center;
  font-size: 22px;
  color: #1D1D1D;
  letter-spacing: 0.1em;
  font-weight: 700;
}
#contact-page #mv h1 span {
  display: block;
  text-align: center;
  font-family: oswald;
  font-size: 74px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
#contact-page #mv h1 span::after {
  content: "";
  display: block;
  width: 179px;
  height: 7px;
  background: linear-gradient(to right, #133279, #0BA366);
  margin: 8px auto 19px;
}
#contact-page .p-form {
  max-width: 1080px;
  margin: 104px auto 0;
}
#contact-page .p-form__group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 94px;
  border-bottom: #E5E5E5 solid 1px;
  padding-right: 16px;
}
#contact-page .p-form__group label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding-left: 16px;
}
#contact-page .p-form__group div {
  display: flex;
  align-items: center;
}
#contact-page .p-form__group div::before {
  content: "必須";
  display: inline-block;
  width: 51px;
  height: 26px;
  background-color: #000;
  font-size: 12px;
  color: #FFFFFF;
  text-align: center;
  line-height: 26px;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-right: 21px;
}
#contact-page .p-form__group input {
  display: block;
  width: 721px;
  height: 58px;
  background-color: #F6F6F6;
  padding: 0 15px 0;
}
#contact-page .p-form__group--textarea {
  padding-top: 16.5px;
  display: flex;
  justify-content: space-between;
  height: 270px;
  border-bottom: #E5E5E5 solid 1px;
  margin-bottom: 24px;
  padding-right: 16px;
}
#contact-page .p-form__group--textarea label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding-left: 16px;
  margin-top: 14px;
}
#contact-page .p-form__group--textarea div {
  display: flex;
}
#contact-page .p-form__group--textarea div::before {
  content: "必須";
  display: inline-block;
  width: 51px;
  height: 26px;
  background-color: #000;
  font-size: 12px;
  color: #FFFFFF;
  text-align: center;
  line-height: 26px;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-right: 21px;
  margin-top: 14px;
}
#contact-page .p-form__group--textarea textarea {
  display: block;
  width: 721px;
  height: 234px;
  background-color: #F6F6F6;
  padding: 15px;
}
#contact-page .p-form__submit {
  margin-bottom: 40px;
}
#contact-page .p-form__submit button {
  display: block;
  width: 308px;
  height: 65px;
  margin: 0 auto;
  background-color: #1D1D1D;
  color: #fff;
  line-height: 65px;
  text-align: center;
  border-radius: 32.5px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: 0.3s all;
}
#contact-page .p-form__submit button:hover {
  opacity: 0.8;
  transition: 0.3s all;
}

@media screen and (max-width: 1080px) {
  #contact-page .p-form__group input,
  #contact-page .p-form__group--textarea textarea {
    width: 56.7vw;
  }
  #contact-page .p-form__group label,
  #contact-page .p-form__group--textarea label {
    font-size: 12px;
  }
}
/*------------------------------------------------------------
 WT-PAGE,SM-PAGE
------------------------------------------------------------*/
#wt-page body {
  margin: 0;
}
#wt-page main {
  overflow: hidden;
}
#wt-page iframe {
  width: 100vw;
  height: calc(100vh - 73px);
  border: 0;
  margin-top: 73px;
}
#wt-page #header {
  top: 0;
}

#sm-page body {
  margin: 0;
}
#sm-page main {
  overflow: hidden;
}
#sm-page iframe {
  width: 100vw;
  height: calc(100vh - 73px);
  border: 0;
  margin-top: 73px;
}
#sm-page #header {
  top: 0;
}/*# sourceMappingURL=style.css.map */