@charset "UTF-8";
body {
  font-family: Hiragino Sans, "ヒラギノ角ゴシック", Hiragino Kaku Gothic ProN,
    "ヒラギノ角ゴ ProN W3", Arial, "Droid Sans", "ＭＳ ゴシック", YuGothic,
    "游ゴシック", "Noto Sans JP", "メイリオ", "Roboto", Verdana,
    "ＭＳ Ｐゴシック", "Noto Sans JP", sans-serif;
  color: #ededed;
  background-color: #262626;
}

/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.0810810811vw;
  }
}
@media screen and (min-width: 1480px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
  height: auto;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type="checkbox"],
input[type="radio"] {
  display: none;
}

input[type="submit"],
input[type="button"],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/****  pc,spだし分け  *****/
.pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc {
    display: block;
  }
}

.sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

/*****  タイトル系  *******/
h1,
h2 {
  font-weight: normal;
}

.h2-title {
  font-size: 12vw;
  line-height: 1;
  font-weight: 800;
  text-transform: capitalize;
  /* margin-bottom: 30px; */
}
@media screen and (min-width: 768px) {
  .h2-title {
    font-size: 9vw;
  }
}

.sub {
  font-size: 26px;
  font-size: 1.625rem;
  line-height: 1.5;
  font-weight: 800;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .sub {
    font-size: min(6.25vw, 120px);
    line-height: 1.6;
    line-height: 1;
  }
}

.catch {
  font-size: calc(20 * 100vw / 393);
  line-height: 1.2;
  font-weight: 900;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  margin: 3vw 0;
  font-family: "Noto Sans JP", sans-serif;
  color: #ededed;
}
@media screen and (min-width: 768px) {
  .catch {
    font-size: 2.2vw;
    line-height: 1.875;
    gap: 22px;
    margin: 1.7vw 0;
  }
}

.catch span {
  display: none;
}
@media screen and (min-width: 768px) {
  .catch span {
    display: block;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 1px;
    background-color: #ededed;
  }
}

.right {
  text-align: right;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
}
@media screen and (min-width: 768px) {
  .right {
    text-align: left;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
  }
}

/***** innerなど余白 *****/
.inner {
  width: 100%;
  padding-inline: 6vw;
}
@media screen and (min-width: 768px) {
  .inner {
    padding-inline: 7.8vw;
  }
}

section {
  margin-bottom: 13.3333333333vw;
}
@media screen and (min-width: 768px) {
  section {
    margin-bottom: 15.625vw;
  }
}

/******* flex ******/
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

/****** font ****/
p {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.5714285714;
  font-weight: 200;
}
@media screen and (min-width: 768px) {
  p {
    font-size: 1.25rem;
    line-height: 2;
  }
}

/*****スクロール時にふわっと**********/
.fadein {
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  opacity: 0;
}

.fadein.scrollin {
  -webkit-transform: unset;
  transform: unset;
  opacity: 1;
  -webkit-transition: 1s;
  transition: 1s;
}

.fadein.scrollin.delay200 {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.fadein.scrollin.delay600 {
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}

/********* スクロールで透過　*********/
/* .opacity {
  opacity: 1;
} */
.opacityUp.opacity {
  opacity: 0.06;
}
.fix-sns {
  position: fixed;
  top: 10vw;
  right: 1vw;
  z-index: 1000;
}

.fix-sns .icon {
  display: none;
}
@media screen and (min-width: 768px) {
  .fix-sns .icon {
    display: block;
    margin-bottom: 17px;
    width: 4.3vw;
    height: 4.3vw;
  }
}
@media (min-width: 1920px) {
  .fix-sns .icon {
    width: 83px;
    height: 83px;
  }
}

.fix-sns svg {
  width: 4.3vw;
  height: 4.3vw;
}

.fix-sns .icon svg path {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.fix-sns .icon:hover svg path {
  fill: #fff;
}

.fix-sns .icon svg > * {
  width: 100%;
  height: 100%;
}

.footer {
  width: 100%;
  padding: 34px 0 30px;
  border-top: 1px solid #fff;
}
@media screen and (min-width: 768px) {
  .footer {
    padding: 2.7vw 0 4.7vw;
  }
}
@media (min-width: 1920px) {
  .footer {
    padding: 53px 0 90px;
  }
}

.copy-right {
  font-size: 14px;
  font-size: 0.875rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .copy-right {
    font-size: min(1.6vw, 30px);
  }
}

.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media screen and (min-width: 768px) {
  .header {
    height: 8vw;
    border-bottom: 1px solid #fff;
    background: -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(rgb(38, 38, 38)),
      color-stop(20%, rgb(38, 38, 38)),
      to(rgba(38, 38, 38, 0))
    );
    background: linear-gradient(
      180deg,
      rgb(38, 38, 38) 0%,
      rgb(38, 38, 38) 20%,
      rgba(38, 38, 38, 0) 100%
    );
  }
}

.header.on {
  border-bottom: none;
}
@media screen and (min-width: 768px) {
  .header.on {
    height: 7vw;
  }
}

.header__inner {
  width: 100%;
  height: 100%;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 16px 0 0 19px;
}
@media screen and (min-width: 768px) {
  .header__inner {
    padding: 1.25vw 1.9vw 1vw 2.1vw;
  }
}

@media screen and (min-width: 768px) {
  .header.on .header__inner {
    padding: 0vw 1.9vw 0vw 2.1vw;
  }
}
.header__logo img {
  width: 49px;
  height: 49px;
}
@media screen and (min-width: 768px) {
  .header__logo img {
    width: 5.625vw;
    height: 5.625vw;
  }
}

.header__btn {
  width: 36px;
  height: 21px;
  position: fixed;
  top: 23px;
  right: 23px;
}

.header__btn span {
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  display: block;
  left: 0;
}

.header.is-active .header__btn span {
  background-color: #6c6c6c;
}

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

.header__btn span:nth-child(2) {
  top: 9px;
}

.header__btn span:nth-child(3) {
  top: 19px;
}

.header.is-active .header__btn span:nth-child(1) {
  -webkit-transform: rotate(-30deg);
  transform: rotate(-30deg);
  top: 9px;
}

.header.is-active .header__btn span:nth-child(2) {
  display: none;
}

.header.is-active .header__btn span:nth-child(3) {
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
  top: 9px;
}

/*
  -----------------------------------
sp
  -----------------------------------
  */
.headerSp__nav {
  position: fixed;
  top: 0;
  bottom: 0;
  right: -100%;
  width: calc(100vw - 80px);
  height: 100%;
  background-color: rgba(255, 255, 255, 0.93);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
.headerSp__nav .header__nav-items {
  padding: 74px 25px 43px;
  text-align: right;
  width: 100%;
}
.headerSp__nav .header__nav-item {
  margin-bottom: 17px;
}
.headerSp__nav .header__nav-item a {
  color: #3e3e3e;
  font-size: 32px;
  font-size: 2rem;
  line-height: 1.6875;
  font-weight: 800;
  text-transform: capitalize;
}
.headerSp__nav .header__nav-item.privacy {
  padding-top: 5vw;
}
.headerSp__nav .header__nav-item.privacy a {
  font-size: 16px;
  font-size: 1rem;
  line-height: 2.8125;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  gap: 10px;
}
.headerSp__nav .header__nav-item.privacy a span {
  display: block;
  width: 20px;
}

.headerSp__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
}

.headerSp__sns svg {
  display: block;
  fill: #404040;
  width: 73px;
  height: 73px;
}

/*
-----------------------------------
pc
-----------------------------------
*/
.headerPc__nav {
  height: 100%;
}
.headerPc__nav ul {
  height: 100%;
}
.headerPc__nav .header__nav-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 52px;
}
.headerPc__nav .header__nav-item a {
  font-size: 1.25vw;
  font-weight: 800;
  text-transform: capitalize;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}
.headerPc__nav .header__nav-item a::after {
  display: block;
  content: "";
  position: absolute;
  bottom: 1vw;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: #fff;
  -webkit-transition: width 0.4s ease;
  transition: width 0.4s ease;
}
.headerPc__nav .header__nav-item a:hover {
  opacity: 0.8;
}
.headerPc__nav .header__nav-item a:hover:after {
  width: 100%;
}

.header.is-active .headerSp__nav {
  right: 0;
}
.modal-cont {
  position: fixed;
  z-index: 1000;
  width: calc(100% - 12vw);
  height: 73%;
  aspect-ratio: 380/324;
  background: #fff;
  top: 14%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  color: #707070;
  display: none;
}
@media screen and (min-width: 768px) {
  .modal-cont {
    width: calc(100% - 7.8vw);
    height: calc(100% - 13vw);
    top: 52%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}
@media (min-width: 1920px) {
  .modal-cont {
    width: calc(100% - 140px);
    height: calc(100% - 160px);
  }
}

.modal01.modal-cont {
  background: no-repeat center/cover url(../images/web-marketing.jpg);
}

.modal02.modal-cont {
  background: no-repeat center/cover url(../images/event.jpg);
}

.modal03.modal-cont {
  background: no-repeat center/cover url(../images/sales.jpg);
}

.modal04.modal-cont {
  background: no-repeat center/cover url(../images/creative.jpg);
}

.modal05.modal-cont {
  background: no-repeat center/cover url(../images/sptools.jpg);
}

.modal06.modal-cont {
  background: no-repeat center/cover url(../images/community.jpg);
}

.modal07.modal-cont {
  background: no-repeat center/cover url(../images/agriculture.jpg);
}

.modal08.modal-cont {
  background: no-repeat center/cover url(../images/food-truck.jpg);
}

.modal-cont-title {
  background-color: rgba(0, 0, 0, 0.67);
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 300;
  padding: 26px 28px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .modal-cont-title {
    padding: 2.3vw 2.5vw;
    width: 63.7%;
    font-size: min(2vw, 40px);
  }
}
@media (min-width: 1920px) {
  .modal-cont-title {
    padding: 50px 70px;
    width: 60%;
  }
}

.modal-cont-title span {
  display: block;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.7;
  font-weight: 600;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro",
    "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}
@media screen and (min-width: 768px) {
  .modal-cont-title span {
    font-size: 1.875rem;
    line-height: 1.7;
  }
}

.modal-cont-text {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 300;
  padding: 23px;
  width: calc(100% - 36px);
  position: absolute;
  bottom: 13px;
  right: 0;
  left: 0;
  margin: auto;
  background-color: rgba(0, 0, 0, 0.56);
  color: #fff;
}
@media screen and (min-width: 768px) {
  .modal-cont-text {
    font-size: min(1.6vw, 30px);
    line-height: 1.3333333333;
    padding: 3.4vw 3.6vw;
    width: 50%;
    max-width: 866px;
    bottom: 1.7vw;
    right: 2.3vw;
    left: auto;
  }
}
@media (min-width: 1920px) {
  .modal-cont-text {
    padding: 85px;
  }
}

.modal-cont-button {
  position: fixed;
  top: 5vw;
  right: 6vw;
  z-index: 1000;
  display: none;
  width: 8vw;
  height: 8vw;
}
@media screen and (min-width: 768px) {
  .modal-cont-button {
    top: -1.5vw;
    right: 4vw;
    width: 5vw;
    height: 5vw;
  }
}
@media (min-width: 1920px) {
  .modal-cont-button {
    top: 26px;
  }
}

.modal-cont-button a {
  display: inline-block;
  width: 100%;
  height: 100%;
  top: 4vw;
  position: relative;
}

.modal-cont-button a::before,
.modal-cont-button a::after {
  display: block;
  content: "";
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  z-index: 1000;
}

.modal-cont-button a::before {
  -webkit-transform: rotate(20deg);
  transform: rotate(20deg);
}
@media screen and (min-width: 768px) {
  .modal-cont-button a::before {
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
  }
}

.modal-cont-button a::after {
  -webkit-transform: rotate(-20deg);
  transform: rotate(-20deg);
}
@media screen and (min-width: 768px) {
  .modal-cont-button a::after {
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }
}

.modal-cont-background {
  position: fixed;
  top: 7vw;
  left: 0;
  width: 100%;
  height: 90vh;
  background: black;
  z-index: 100;
  display: none;
  opacity: 75%;
}
@media screen and (min-width: 768px) {
  .modal-cont-background {
    height: 100vh;
    top: 0;
  }
}
/*
-----------------------------------
フォームのモーダル
-----------------------------------
*/
.modal-cont.modal_form {
  background: #2e2e2e;
  color: #fff;
  padding: 70px 10vw 40px;
  overflow-y: scroll;
  top: 27vw;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .modal-cont.modal_form {
    padding: 2.6vw 13vw;
    top: 52%;
    width: calc(100% - 12vw);
  }
}
.modal-cont-button.modal_form a::before,
.modal-cont-button.modal_form a::after {
  top: 4px;
}
.modal-cont.modal_form .modal-cont-content {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
}

.modal-cont.modal_form form {
  height: auto;
}



@media screen and (min-width: 768px) {
  .formTitle {
    font-size: min(7.3vw, 140px);
  }
}
.modal-cont.modal_form .item {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto 12px;
  height: calc(60 * 100vw / 393);
  max-height: 60px;
}
@media screen and (min-width: 768px) {
  .modal-cont.modal_form .item {
    margin: 0 auto calc(20 * 100vw / 1920);
    height: calc(90 * 100vw / 1920);
    max-height: 90px;
  }
}

.modal-cont.modal_form .item input,
.modal-cont.modal_form .item button,
.modal-cont.modal_form .item textarea {
  display: inline-block;
  background-color: #fff;
  width: 100%;
  height: 100%;
  padding: 19px 17px;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .modal-cont.modal_form .item input,
  .modal-cont.modal_form .item button,
  .modal-cont.modal_form .item textarea {
    padding: 1.3vw 2.1vw;
    font-size: min(2.1vw, 40px);
  }
}
@media (min-width: 1920px) {
  .modal-cont.modal_form .item input,
  .modal-cont.modal_form .item button,
  .modal-cont.modal_form .item textarea {
    padding: 25px 40px;
  }
}

.modal-cont.modal_form .item.message {
  min-height: calc(180 * 100vw / 393);
}
@media screen and (min-width: 768px) {
  .modal-cont.modal_form .item.message {
    min-height: calc(200 * 100vw / 1920);
  }
}

.modal-cont.modal_form .item input::-webkit-input-placeholder,
.modal-cont.modal_form .item textarea::-webkit-input-placeholder {
  color: #afafaf;
}

.modal-cont.modal_form .item input::-moz-placeholder,
.modal-cont.modal_form .item textarea::-moz-placeholder {
  color: #afafaf;
}

.modal-cont.modal_form .item input::-ms-input-placeholder,
.modal-cont.modal_form .item textarea::-ms-input-placeholder {
  color: #afafaf;
}

.modal-cont.modal_form .item input::placeholder,
.modal-cont.modal_form .item textarea::placeholder {
  color: #afafaf;
}

.modal-cont.modal_form .item input.valid::-webkit-input-placeholder,
.modal-cont.modal_form .item textarea.valid::-webkit-input-placeholder {
  color: #F11F66;
}

.modal-cont.modal_form .item input.valid::-moz-placeholder,
.modal-cont.modal_form .item textarea.valid::-moz-placeholder {
  color: #F11F66;
}

.modal-cont.modal_form .item input.valid::-ms-input-placeholder,
.modal-cont.modal_form .item textarea.valid::-ms-input-placeholder {
  color: #F11F66;
}

.modal-cont.modal_form .item input.valid::placeholder,
.modal-cont.modal_form .item textarea.valid::placeholder {
  color: #F11F66;
}

.modal-cont.modal_form .item.submit {
  width: 200px;
  height: 55px;
  position: relative;
  margin: 30px auto 0;
}
@media screen and (min-width: 768px) {
  .modal-cont.modal_form .item.submit {
    width: 217px;
    height: 4vw;
    margin: 0 0 0 auto;
  }
}

.modal-cont.modal_form .item.submit button {
  background-color: #808080;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50px;
  padding: 0 0 0 25px;
  border: 1px solid #808080;
  pointer-events: none;
}

.modal-cont.modal_form .item.submit button:hover {
  background-color: #707070;
}

.modal-cont.modal_form .item.submit span {
  display: block;
  position: absolute;
  right: 17px;
  top: 50%;
  -webkit-transform: translateY(-50%) scale(0.8);
  transform: translateY(-50%) scale(0.8);
  width: 53px;
  height: 10px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .modal-cont.modal_form .item.submit span {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

.modal-cont.modal_form .item.submit span svg {
  width: 100%;
  height: 100%;
  display: block;
}

.modal-cont.modal_form .item.submit button:hover ~ span {
  right: 5px;
}

.modal-cont-button.modal_form {
  top: 33vw;
  right: 11vw;
}
@media screen and (min-width: 768px) {
  .modal-cont-button.modal_form {
    top: 4vw;
    right: 6vw;
  }
}
.modal-cont-button.modal_form a {
  top: 0;
}

/*
-----------------------------------
確認画面フォームのモーダル
-----------------------------------
*/
.modal-cont.modal_confirm {
	background: #2e2e2e;
	color: #fff;
	padding: 70px 10vw 40px;
	overflow-y: scroll;
	top: 27vw;
	width: 100%;
  }
  @media screen and (min-width: 768px) {
	.modal-cont.modal_confirm {
	  padding: 2.6vw 13vw;
	  top: 52%;
	  width: calc(100% - 12vw);
	}
  }
  .modal-cont-button.modal_confirm a::before,
  .modal-cont-button.modal_confirm a::after {
	top: 4px;
  }
  .modal-cont.modal_confirm .modal-cont-content {
	width: 100%;
	height: 100%;
	overflow-y: scroll;
  }
  
  .modal-cont.modal_confirm form {
	height: auto;
  }
  
  .formTitle {
	font-size: 13vw;
	line-height: 1;
	text-align: center;
	font-weight: 800;
	margin-bottom: 30px;
  }
  @media screen and (min-width: 768px) {
	.formTitle {
	  font-size: min(7.3vw, 140px);
	}
  }
  .modal-cont.modal_confirm .item {
	width: 100%;
	max-width: 1250px;
	margin: 0 auto 12px;
	height: calc(60 * 100vw / 393);
	max-height: 60px;
  }
  @media screen and (min-width: 768px) {
	.modal-cont.modal_confirm .item {
	  margin: 0 auto calc(20 * 100vw / 1920);
	  height: calc(90 * 100vw / 1920);
	  max-height: 90px;
	}
  }
  
  .modal-cont.modal_confirm .item label{
	font-size: 20px;
	font-size: 1.25rem;
    line-height: 1;
	pointer-events: none;
	display: block;
	margin-top: 2em;
  }
  @media screen and (min-width: 768px) {
	.modal-cont.modal_confirm .item label{
	font-size: min(2.1vw, 40px);
	}
  }
  .modal-cont.modal_confirm .item input,
  .modal-cont.modal_confirm .item textarea{
	pointer-events: none;
	user-select: none;
  }
  .modal-cont.modal_confirm .item input[type="submit"]{
	pointer-events: all;
	user-select: all;
  }
  .modal-cont.modal_confirm .item input,
  .modal-cont.modal_confirm .item a,
  .modal-cont.modal_confirm .item button,
  .modal-cont.modal_confirm .item textarea {
	display: inline-block;
	background-color: #fff;
	width: 100%;
	height: 100%;
	padding: 19px 17px 19px 23px;
	font-size: 20px;
	font-size: 1.25rem;
	color: #262626;
  }
  @media screen and (min-width: 768px) {
	.modal-cont.modal_confirm .item input,
	.modal-cont.modal_confirm .item a,
	.modal-cont.modal_confirm .item button,
	.modal-cont.modal_confirm .item textarea {
	  padding: 1.3vw 2.1vw 1.3vw 2.4vw;
	  font-size: min(2.1vw, 40px);
	}
  }
  @media (min-width: 1920px) {
	.modal-cont.modal_confirm .item input,
	.modal-cont.modal_confirm .item a,
	.modal-cont.modal_confirm .item button,
	.modal-cont.modal_confirm .item textarea {
	  padding: 25px 40px 25px 48px;
	}
  }
  .modal-cont.modal_confirm .item input,
  .modal-cont.modal_confirm .item textarea{
	background-color:transparent;
	color:#fff;
  }
  
  .modal-cont.modal_confirm .item.message {
	min-height: calc(180 * 100vw / 393);
  }
  @media screen and (min-width: 768px) {
	.modal-cont.modal_confirm .item.message {
	  min-height: calc(200 * 100vw / 1920);
	}
  }
  
  .modal-cont.modal_confirm .item input::-webkit-input-placeholder,
  .modal-cont.modal_confirm .item textarea::-webkit-input-placeholder {
	color: #262626;
  }
  
  .modal-cont.modal_confirm .item input::-moz-placeholder,
  .modal-cont.modal_confirm .item textarea::-moz-placeholder {
	color: #262626;
  }
  
  .modal-cont.modal_confirm .item input::-ms-input-placeholder,
  .modal-cont.modal_confirm .item textarea::-ms-input-placeholder {
	color: #262626;
  }
  
  .modal-cont.modal_confirm .item input::placeholder,
  .modal-cont.modal_confirm .item textarea::placeholder {
	color: #262626;
  }
  
  .modal-cont.modal_confirm .item.submit,
  .modal-cont.modal_confirm .item.prev {
	width: 188px;
	height: 55px;
	position: relative;
	margin: 30px auto 0;
  }
  @media screen and (min-width: 768px) {
	.modal-cont.modal_confirm .item.submit {
	  width: 217px;
	  height: 4vw;
	  margin: 0 0 0 auto;
	}
	.modal-cont.modal_confirm .item.prev {
	  width: 217px;
	  height: 4vw;
	  margin: -4vw auto 0 0;
	}
  }
  
  .modal-cont.modal_confirm .item.submit input ,
  .modal-cont.modal_confirm .item.prev button {
	background-color: #808080;
	color: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: 50px;
	padding: 0 0 0 40px;
	border: 1px solid #808080;
  }
  .modal-cont.modal_confirm .item.prev button {
	justify-content: flex-end;
	padding: 0 40px 0 0;
  }
  
  .modal-cont.modal_confirm .item.submit input:hover ,
  .modal-cont.modal_confirm .item.prev button:hover {
	background-color: #707070;
  }
  
  .modal-cont.modal_confirm .item.prev span ,
  .modal-cont.modal_confirm .item.submit span {
	display: block;
	position: absolute;
	right: 32px;
	top: 50%;
	-webkit-transform: translateY(-50%) scale(0.8);
	transform: translateY(-50%) scale(0.8);
	width: 53px;
	height: 10px;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
	pointer-events: none;
  }
  
  .modal-cont.modal_confirm .item.prev span {
	-webkit-transform: translateY(-50%) scale(-0.8, 0.8);
	transform: translateY(-50%) scale(-0.8, 0.8);
	right: unset;
	left: 32px;
  }
  @media screen and (min-width: 768px) {
	.modal-cont.modal_confirm .item.submit span {
	  -webkit-transform: translateY(-50%);
	  transform: translateY(-50%);
	}
  
	.modal-cont.modal_confirm .item.prev span {
		-webkit-transform: translateY(-50%) scaleX(-1);
		transform: translateY(-50%) scaleX(-1);
	}
  }
  
  .modal-cont.modal_confirm .item.prev span svg,
  .modal-cont.modal_confirm .item.submit span svg {
	width: 100%;
	height: 100%;
	display: block;
  }
  .modal-cont.modal_confirm .item.submit input:hover ~ span {
	right: 20px;
  }
  
  .modal-cont.modal_confirm .item.prev button:hover ~ span{
	left: 20px;
  }
  
  .modal-cont-button.modal_confirm {
	top: 33vw;
	right: 11vw;
  }
  @media screen and (min-width: 768px) {
	.modal-cont-button.modal_confirm {
	  top: 4vw;
	  right: 6vw;
	}
  }
  .modal-cont-button.modal_confirm a {
	top: 0;
  }

.more {
  width: 30vw;
  margin-left: auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .more {
    width: 13vw;
  }
}

.more::before {
  display: block;
  content: "";
  position: absolute;
  bottom: -14px;
  left: 0;
  width: 100%;
  height: 32px;
  background: no-repeat center / contain url(../images/more-arrow.png);
}

.more a {
  display: block;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  width: 100%;
  position: relative;
  z-index: 1;
  padding-right: 0.5vw;
}
@media screen and (min-width: 768px) {
  .more a {
    font-size: calc(30 * 100vw / 1920);
    padding-bottom: calc(5 * 100vw / 1920);
  }
}

.play-icon {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 93px;
  height: 93px;
  width: 56px;
  height: 56px;
  background: no-repeat center/contain url(../images/play-icon.png);
  opacity: 1;
  z-index: 10;
  cursor: pointer;
}
.play-icon.playActive {
  display: none;
}
@media screen and (min-width: 768px) {
  .play-icon {
    width: 7.5vw;
    max-width: 145px;
    height: 7.5vw;
    max-height: 145px;
  }
}

.serviceItems__item {
  width: 100%;
  height: 90px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .serviceItems__item {
    width: 14.2857142857%;
    padding-top: 54%;
    height: auto;
  }
}
.serviceItems__item a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .serviceItems__item a {
    padding: 76px 10px 70px;
    position: absolute;
    top: 0;
    left: 0;
  }
}

.serviceItems__item::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.23;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media screen and (min-width: 768px) {
  .serviceItems__item::after {
    opacity: 0.1;
  }
}

.serviceItems__item:hover:after {
  opacity: 0.72;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
@media screen and (min-width: 768px) {
  .serviceItems__item:hover:after {
    opacity: 0.41;
  }
}

.serviceItems__item:nth-child(1):after {
  background: no-repeat center/cover url(../images/web-marketing.jpg);
}

.serviceItems__item:nth-child(2):after {
  background: no-repeat center/cover url(../images/event.jpg);
}

.serviceItems__item:nth-child(3):after {
  background: no-repeat center/cover url(../images/sales.jpg);
}

.serviceItems__item:nth-child(4):after {
  background: no-repeat center/cover url(../images/creative.jpg);
}

.serviceItems__item:nth-child(5):after {
  background: no-repeat center/cover url(../images/sptools.jpg);
}

.serviceItems__item:nth-child(6):after {
  background: no-repeat center/cover url(../images/community.jpg);
}

.serviceItems__item:nth-child(7):after {
  background: no-repeat center/cover url(../images/agriculture.jpg);
}

.serviceItems__item:nth-child(8):after {
  background: no-repeat center/cover url(../images/food-truck.jpg);
}

.serviceItems__item span.arrow {
  display: block;
  position: absolute;
  top: 50%;
  right: 13px;
  width: 49px;
  height: 49px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 1px solid #fff;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media screen and (min-width: 768px) {
  .serviceItems__item span.arrow {
    top: auto;
    bottom: 0px;
    right: 0;
    left: 0;
    margin: auto;
    width: 6.9791666667vw;
    height: 6.9791666667vw;
  }
}

.serviceItems__item:hover span.arrow {
  opacity: 1;
}

.serviceItems__item span.arrow img {
  position: absolute;
  top: 18px;
  left: 0;
  right: 0;
  margin: auto;
  width: 29px;
  height: 8px;
}
@media screen and (min-width: 768px) {
  .serviceItems__item span.arrow img {
    top: 2.4479166667vw;
    width: 4.2708333333vw;
    height: 1.1458333333vw;
  }
}

.serviceItems__item button {
  text-align: left;
  padding: 0;
}

.serviceItems__text {
  position: absolute;
  top: 24px;
  left: 27px;
  z-index: 1;
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .serviceItems__text {
    top: 3.9583333333vw;
    left: 0;
    right: 0;
    margin: auto;
  }
}

.serviceItems__text .en {
  color: #fff;
  font-size: 0.875rem;
  line-height: 1.2142857143;
  font-weight: 500;
  font-family: "Playfair Display SC", serif;
  opacity: 1;
  margin-bottom: 6px;
}
@media screen and (min-width: 768px) {
  .serviceItems__text .en {
    text-align: center;
    font-size: 1.25vw;
    line-height: 1.1666666667;
    height: 7.8125vw;
  }
}

.serviceItems__text .jp {
  font-size: 1rem;
  line-height: 1.2142857143;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .serviceItems__text .jp {
    -webkit-writing-mode: vertical-lr;
    -ms-writing-mode: tb-lr;
    writing-mode: vertical-lr;
    text-orientation: upright;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 1.1458333333vw;
    line-height: 1.5454545455;
  }
}

#thanks {
  margin-top: 200px;
  text-align: center;
}

.thanks .back.more {
  margin: 50px auto;
}

/*
-----------------------------------
mv
-----------------------------------
*/
.mv {
  /* aspect-ratio: 334/334; */
  aspect-ratio: 375/210;
  position: relative;
  margin-bottom: 14.5038167939vw;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .mv {
    height: 54.54vw;
    aspect-ratio: initial;
    margin-bottom: 9.8958333333vw;
  }
}

.mv img {
  height: 100%;
  opacity: 0.8;
  -o-object-fit: cover;
  object-fit: cover;
}
.mv video {
  width: 100%;
  height: auto;
  opacity: 0.8;
  -o-object-fit: cover;
  object-fit: cover;
}

.mv__titleSet {
  padding: 0 10.4166666667vw;
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .mv__titleSet {
    bottom: auto;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

.mv__titleSet .h1-title {
  font-size: 50px;
  font-size: 12vw;
  line-height: 1.6;
  font-weight: 800;
}
@media screen and (min-width: 768px) {
  .mv__titleSet .h1-title {
    font-size: min(9.3vw, 180px);
    line-height: 1.7;
  }
}

.mv__titleSet .mv__sub {
  font-size: 20px;
  font-size: 5.2vw;
  line-height: 1;
  font-weight: 800;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 768px) {
  .mv__titleSet .mv__sub {
    font-size: min(3vw, 60px);
  }
}

/*
-----------------------------------
concept
-----------------------------------
*/
.concept .catch {
  margin: 5vw 0 2.7vw;
}

@media screen and (min-width: 768px) {
  .concept .catch {
    margin: 1vw 0 1.7vw;
  }
}
@media screen and (min-width: 768px) {
  .concept .h2-title {
    font-size: 9vw;
    margin-bottom: 2vw;
  }
}

@media screen and (min-width: 768px) {
  .concept__column {
    gap: 2.6041666667vw;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.concept__left {
}
@media screen and (min-width: 768px) {
  .concept__left {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}

.concept__right {
  width: 100%;
  position: relative;
  margin: 1.7vw 0;
}
@media screen and (min-width: 768px) {
  .concept__right {
    width: 40vw;
    margin-top: 2vw;
  }
}
.concept__right video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-color: rgba( 0,0,0, .8);
}
.concept__right .vsc-controller{
  display: none;
}
.conceptMovie video{
  width: 100%;
  height: calc(100% - 13vw);
  object-fit: cover;
  overflow: hidden;
}
@media ( max-width:768px ){
  .conceptMovie video{
    height: 100%;
    object-fit: cover;
aspect-ratio: 380/217;
    overflow: hidden;
  }
}
.conceptMovie.modal-cont{
  width: calc(100% - 34.8vw);
  height: calc(100% - 14vw);
background: transparent;
}
@media ( max-width:768px ){
  .conceptMovie.modal-cont{
    width: calc(100% - 9.8vw);
  }
}

@media screen and (min-width: 768px) {
  .concept__text {
    font-size: 1.9vw;
    line-height: 1.4705882353;
    text-align: center;
  }
}

/*
-----------------------------------
solution
-----------------------------------
*/
@media screen and (min-width: 768px) {
  .solution .h2-title {
    text-align: right;
    margin-bottom: 2vw;
  }
}

.solution__column {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .solution__column {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 5vw;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 4.135417vw;
  }
}

@media screen and (min-width: 768px) {
  .solution__left {
    width: 53%;
    margin-top: 1vw;
  }
}

@media screen and (min-width: 768px) {
  .solution__left p {
    margin-top: -1vw;
  }
}

.solution__right {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media screen and (min-width: 768px) {
  .solution__right p {
    font-size: 1.25vw;
    line-height: 2;
  }
}

@media screen and (min-width: 768px) {
  .solution__right .catch {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    font-size: 1.25vw;
    line-height: 2;
  }
}

.solution__service {
  margin: 0 calc(50% - 50vw + 10px);
}
@media screen and (min-width: 768px) {
  .solution__service {
  }
}

/*
-----------------------------------
works
-----------------------------------
*/
@media screen and (min-width: 768px) {
  .works .h2-title {
  }
}

.works__column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .works__column {
    gap: 2.6041666667vw;
    margin-bottom: 4.1666666667vw;
    flex-direction: inherit;
  }
}

@media screen and (min-width: 768px) {
  .works__left {
    width: 53%;
  }
}

.works__right {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .works__right {
    margin-top: 2vw;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}

/*
-----------------------------------
project
-----------------------------------
*/
.project__mv {
  position: relative;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .project__mv {
    margin-bottom: 170px;
  }
}

.project__mv img {
  opacity: 0.64;
}
.project__mv video {
  width: 100%;
  height: auto;
  opacity: 0.64;
}

.project__titleSet {
  position: absolute;
  top: 5vw;
  right: 6vw;
}
@media screen and (min-width: 768px) {
  .project__titleSet {
    width: 100%;
    margin: auto;
  }
}

.project__titleSet .h2-title {
  font-size: 13vw;
  margin-bottom: 10px;
  margin-bottom: 2.2vw;
}
@media screen and (min-width: 768px) {
  .project__titleSet .h2-title {
    text-align: right;
    font-size: 10vw;
    margin-bottom: 2vw;
  }
}

.project__titleSet .sub {
  font-size: 4.2vw;
  letter-spacing: normal;
}
@media screen and (min-width: 768px) {
  .project__titleSet .sub {
    text-align: right;
    font-size: 5vw;
  }
}

.project__titleSet .catch {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  font-size: 5vw;
}
@media screen and (min-width: 768px) {
  .project__titleSet .catch {
    font-size: 2.2vw;
  }
}

.project__mv .play-icon {
  width: 75px;
  height: 75px;
  top: 65%;
}
@media screen and (min-width: 768px) {
  .project__mv .play-icon {
    width: 7.5vw;
    height: 7.5vw;
    top: 50%;
  }
}

.project__lead {
  margin-bottom: 20px;
  font-size: calc(14 * 100vw / 393);
}
@media screen and (min-width: 768px) {
  .project__lead {
    max-width: 43vw;
    margin-left: auto;
    display: flex;
    justify-content: flex-end;
    font-size: calc(20 * 100vw / 1920);
  }
}

.project__column {
  padding: 0;
}
@media screen and (min-width: 768px) {
  .project__column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 4.2vw;
    padding: 0;
  }
}

.project__item {
  gap: 20px;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .project__item {
    gap: 3vw;
  }
}
.project__item.top {
  margin-bottom: calc(70 * 100vw / 393);
}
@media screen and (min-width: 768px) {
  .project__item.top {
    margin-bottom: calc(200 * 100vw / 1920);
  }
}

@media screen and (min-width: 768px) {
  .project__left {
    width: 50%;
  }
}

.project__right {
  padding: 0;
}
@media screen and (min-width: 768px) {
  .project__right {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 0;
  }
}
.project__item.top .project__right {
  padding: 0 6vw;
}
@media screen and (min-width: 768px) {
  .project__item.top .project__right {
    padding: 0;
  }
}
.project__right .more {
  width: 19vw;
}
@media screen and (min-width: 768px) {
  .project__right .more {
    width: 12vw;
  }
}
.project__tow__items {
  padding: 0 6vw;
}
@media screen and (min-width: 768px) {
  .project__tow__items {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 0;
  }
}

.project__title {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 3vw;
}
@media screen and (min-width: 768px) {
  .project__title {
    font-size: 1.25rem;
    line-height: 1.5;
    margin-bottom: 1.3vw;
  }
}

.project__item.top .project__title {
  font-size: 8vw;
}
@media screen and (min-width: 768px) {
  .project__item.top .project__title {
    font-size: 3vw;
    margin: 1.3vw 0;
  }
}

.project__text {
  font-size: calc(12 * 100vw / 393);
  line-height: 1.5;
  font-weight: 200;
  margin-bottom: 3vw;
}
@media screen and (min-width: 768px) {
  .project__text {
    font-size: 1.3vw;
    line-height: 2;
    margin: 0 auto calc(57 * 100vw / 1920);
  }
}

.project__column .project__left {
  width: 100%;
  margin-bottom: 4vw;
  padding-inline: 6vw;
}
@media screen and (min-width: 768px) {
  .project__column .project__left {
    padding: 0;
    margin-bottom: 0;
  }
}
.project__column .project__title {
  font-size: 4.8vw;
  line-height: 1.3;
  letter-spacing: normal;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .project__column .project__title {
    font-size: 2.3vw;
    line-height: 1.5;
    text-align: center;
    margin: 2vw 0 1.3vw;
  }
}

/*
-----------------------------------
zipup
-----------------------------------
*/
.zipup {
  position: relative;
  margin-bottom: 0 !important;
  /* padding-bottom: 38vw; */
}
@media screen and (min-width: 768px) {
  .zipup {
    padding-bottom: 0vw;
  }
}
.zipup__wrapper {
  position: relative;
}

.zipup__photo {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
.zipup__back {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
}

#zipup img {
  width: 115%;
  max-width: none;
  transform: translateX(-5vw);
}

/*
-----------------------------------
company
-----------------------------------
*/
.company {
  width: 100%;
  padding-top: 150vh;
}

@media screen and (min-width: 768px) {
  .company {
    width: auto;
  }
}
.company .inner {
  padding:10vh 0 0; 
}

.company .h2-title {
  margin-bottom: 4vw;
  text-align: center;
  font-size: 13vw;
}
@media screen and (min-width: 768px) {
  .company .h2-title {
    margin-bottom: 4vw;
    text-align: center;
    font-size: 9vw;
  }
}

.company dl {
  display: -webkit-box;
  display: -ms-flexbox;
  font-size: 3.3vw;
  line-height: 2;
  white-space: nowrap;
  display: flex;
  width: 100%;
  max-width: 89vw;
  margin: auto;
  font-weight: 300;
  line-height: 2.5;
  padding-left: 2vw;
}
@media screen and (min-width: 768px) {
  .company dl {
    font-size: 1.9vw;
    line-height: 2;
    max-width: 53vw;
  }
}

.company dt {
  width: 19vw;
}
@media screen and (min-width: 768px) {
  .company dt {
    width: 12vw;
  }
}

.company dd {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.company p {
  font-size: 2.5vw;
  margin: 7vw 0;
  white-space: nowrap;
}

/*
-----------------------------------
group
-----------------------------------
*/
.group {
  overflow: hidden;
  margin-top: 11vw;
}
@media screen and (min-width: 768px) {
  .group {
    /* margin-bottom: 11vw; */
    margin-top: 2vw;
  }
}

.group__top {
  text-align: center;
  position: relative;
  z-index: 1;
  margin-top: 7vw;
  font-size: 4vw;
}
@media screen and (min-width: 768px) {
  .group__top {
    font-size: calc(44 * 100vw / 1920);
    line-height: 1.2045454545;
  }
}
.group__logo {
  position: relative;
  z-index: -1;
  margin-top: 2vw;
}
@media screen and (min-width: 768px) {
  .group__logo {
    margin-top: -7vw;
  }
}
.group__bg{
  position: relative;
  z-index: 10;
}
.group__zipup {
  font-size: 60px;
  font-size: 3.75rem;
  line-height: 1.7;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  padding: 40px 0 85px;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .group__zipup {
    font-size: 11.25rem;
    line-height: 1.7;
    padding: 40px 0 12vw;
    margin-top: -40px;
  }
}

.group .inner {
  position: relative;
  z-index: 1;
}
.group .inner::after{
display: block;
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
margin: auto;
width: 1px;
background-color:#ededed;
z-index: -1;
height: 244vw;
}
@media ( max-width:410px ){
  .group .inner::after{
    height: 285vw;
  }
}
.group__item.fadein{
  opacity: 1;
}
.group__item.fadein.scrollin{
  -webkit-transform: unset;
  transform: unset;
  opacity: 1;
  transition: .5s;
}

@media screen and (min-width: 768px) {
  .group .inner::after {
    height: 92vw;
  }
} 


.group__zipup::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
margin: auto;
  width: 1px;
  height: 100%;
  background-color: #ededed;
  z-index: -1;
}

.group__zipup span {
  display: none;
}
@media screen and (min-width: 768px) {
  .group__zipup span {
    display: block;
    opacity: 0.06;
    width: 112%;
    position: absolute;
    top: -179px;
    left: 0;
  }
}

.group .h2-title {
  font-size: 28px;
  font-size: 6.8vw;
  line-height: 1.7142857143;
  padding: 0 25px 10px ;
  text-align: center;
  position: relative;
}
/* .group .h2-title::after {
  display: block;
  content: "";
  position: absolute;
  top: -100px;
  bottom: calc(100% + 100px );
  left: 0;
  right: 0;
  margin: auto;
  width: 1px;
  background-color:#ededed;
  transition-duration:  1s;
  transition-delay: 1s;
  z-index: -1;
} */
/* .group .h2-title.fadein.scrollin::after{
  bottom: 0;
  top: 0;
} */
.group .h2-title.alliance{
  padding-top: 3vw;
}
@media screen and (min-width: 768px) {
  .group .h2-title {
    font-size: 3.5vw;
    line-height: 1.7;
    padding: 0;
    text-align: left;
  }
}

.group__item {
  gap: 15px;
  padding-bottom: calc(30 * 100vw / 393);
  position: relative;
}
/* .group__item::after {
  display: block;
  content: "";
  position: absolute;
  top: -100px;
  bottom: calc(100% + 100px );
  left: 0;
  right: 0;
  margin: auto;
  width: 1px;
  background-color: #ededed;
  transition-duration:  1s;
  transition-delay: 1s;
  z-index: -1;
} */
/* .group__item.fadein.scrollin::after{
  bottom: 0;
  top: 0;
}
.group__item.fadein.scrollin:last-of-type:after{
bottom: 50%;
} */
@media screen and (min-width: 768px) {
  .group__item {
    gap: 4.4vw;
    padding-bottom: 4vw;
    /* margin-bottom: 4vw; */
  }
}

.group__item.okuta {
  margin-bottom: 11vw;
}
/* .group__item.scop {
  margin-bottom: 8vw;
}
@media screen and (min-width: 768px) {
  .group__item.scop {
    margin-bottom: 3vw;
  }
} */

@media screen and (min-width: 768px) {
  .group__left {
    width: 53.5%;
  }
}

.group__right {
  padding: 0 25px;
}
@media screen and (min-width: 768px) {
  .group__right {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 30px 27px 0 0;
  }
}

.group__title {
  font-size: 4vw;
  font-size: 1.25rem;
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .group__title {
    font-size: 2.5vw;
    line-height: 1.5;
    margin-bottom: 2vw;
  }
}

.group__text {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.5;
  font-weight: 200;
  margin-bottom: 4vw;
}
@media screen and (min-width: 768px) {
  .group__text {
    font-size: calc(20 * 100vw / 1920);
    line-height: 1.8;
    margin-bottom: calc(60 * 100vw / 1920);
  }
}

.group .map {
  margin: 0 calc(50% - 50vw);
  aspect-ratio: 393/215;
}
@media screen and (min-width: 768px) {
  .group .map {
    aspect-ratio: 1920/1053;
  }
}

.group .map iframe {
  width: 100%;
  height: 100%;
}

/*
-----------------------------------
contact
-----------------------------------
*/
.contact {
  margin-bottom: 30px;
}

.contact .h2-title {
  margin-bottom: 21vw;
}
@media screen and (min-width: 768px) {
  .contact .h2-title {
    padding: 0 50px;
    margin-bottom: calc(216 * 100vw / 1920);
  }
}

.contact .h2-title a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.contact .h2-title:hover a {
  gap: 60px;
  opacity: 0.8;
}

.contact .h2-title span {
  display: none;
}
@media screen and (min-width: 768px) {
  .contact .h2-title span {
    display: inline-block;
    width: 32%;
    max-width: 533px;
    -webkit-transform: translate(0, -10px);
    transform: translate(0, -10px);
  }
}

.contact-mail-wrapper {
  display: block;
}

.contact__mail {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro",
    "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  padding-left: 80px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .contact__mail {
    padding-left: 343px;
    margin-bottom: 223px;
  }
}

.contact__mail::before {
  display: block;
  content: "";
  position: absolute;
  top: 0px;
  left: 28px;
  width: 40px;
  height: 40px;
  background: no-repeat center/contain url(../images/mail-icon.png);
}
@media screen and (min-width: 768px) {
  .contact__mail::before {
    width: 83px;
    height: 83px;
    top: 6px;
    left: 233px;
  }
}

.contact__mail {
  font-size: 23px;
  font-size: 1.4375rem;
  line-height: 1.7391304348;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .contact__mail {
    font-size: 3.4375rem;
    line-height: 1.7090909091;
  }
}

.contact__privacy {
  font-weight: 500;
  padding-right: 40px;
  text-align: right;
  position: relative;
}
@media screen and (min-width: 768px) {
  .contact__privacy {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    font-size: calc(30 * 100vw / 1920);
  }
}

.contact__privacy:hover {
  opacity: 0.8;
}

.contact__privacy::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 3px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 20px;
  height: 6px;
  background: no-repeat center/contain url(../images/thin-arrow.png);
}
@media screen and (min-width: 768px) {
  .contact__privacy::after {
    left: -3vw;
    width: 2vw;
    height: 0.5vw;
  }
}

.worksItems {
  display: grid;
  gap: 30px 5px;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (min-width: 768px) {
  .worksItems {
    gap: 6.7vw 4.2vw;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1620px) {
  .worksItems {
    gap: 128px 82px;
  }
}

.worksItems__item {
  overflow: hidden;
}
.worksItems__item a {
  pointer-events: none;
  display: block;
}

.worksItems__img {
  aspect-ratio: 168/86;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .worksItems__img {
    margin-bottom: 1.8vw;
  }
}

.worksItems__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

/* .worksItems__item:hover .worksItems__img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
} */

.worksItems__title {
  font-size: 2.5vw;
  font-weight: 200;
  text-align: center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .worksItems__title {
    font-size: 1.3rem;
    line-height: 1.7826086957;
  }
}

/* .worksItems__title::after {
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #fff;
  -webkit-transition: width 0.4s ease;
  transition: width 0.4s ease;
}

.worksItems__item:hover .worksItems__title::after {
  width: 100%;
} */

/*
-----------------------------------
privacy
-----------------------------------
*/
.privacy {
  padding-top: 10vw;
}
@media (max-width: 768px) {
  .privacy {
    padding-top: 20vw;
  }
}
.privacy h2.h2-title {
  font-size: 5vw;
  margin-bottom: 5vw;
}

.privacy__wrapper {
  padding: 0 3vw;
}
.privacy__wrapper ul li {
  margin-bottom: 3vw;
}
.privacy__wrapper .title {
  font-size: 2rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .privacy__wrapper .title {
    font-size: 1.2rem;
  }
}
.privacy__wrapper .text {
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .privacy__wrapper .text {
    font-size: 1rem;
  }
}
.header__btn.privacy{
  display: none;
}

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