@charset "UTF-8";
/* ========================================
リセットCSS
======================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
div {
  overflow-wrap: break-word;
}

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

iframe {
  max-width: 100%;
  vertical-align: middle;
}

span {
  font: inherit;
  letter-spacing: inherit;
}

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

address {
  font: inherit;
}

input,
button,
textarea,
select {
  color: inherit;
  font: inherit;
  vertical-align: middle;
}

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}

/* ========================================
変数・関数
======================================== */
:root {
  --color-black: #000;
  --font-base: "IBM Plex Sans JP", sans-serif;
  --font-en: franklin-gothic-urw-cond, "IBM Plex Sans JP", sans-serif;
  --z-index-header: 10;
  --mg-pc: 6vw;
  --mg-sp: calc(12 / 375 * 100vw);
}

/* ========================================
mixin
======================================== */
/* ========================================
ベースCSS
======================================== */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  color: var(--color-black);
  font-family: var(--font-base);
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

/* CLEAR-FIX */
/* ========================================
モジュール・パーツ m-
======================================== */
@keyframes LoadFadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.m-inner {
  width: calc(100vw - var(--mg-pc) * 2);
  max-width: 1156px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .m-inner {
    width: calc(100% - var(--mg-sp) * 2);
  }
}

.m-font-en {
  font-family: var(--font-en);
}

.m-btn-fill {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 275px;
  height: 35px;
  padding-right: 5px;
  background: #000;
  color: #fff;
  font-family: var(--font-en);
  font-size: 30px;
  line-height: 1;
  text-align: right;
}
@media (hover: hover) {
  .m-btn-fill {
    transition: opacity 0.3s;
  }
  .m-btn-fill:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .m-btn-fill {
    width: 100%;
  }
}
.m-btn-fill.-right {
  margin-left: auto;
}

/* ========================================
補助的に使用 u-
======================================== */
@media screen and (min-width: 768px) {
  .u-sp {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pc {
    display: none !important;
  }
}

.u-ib {
  display: inline-block !important;
}

.wrap {
  position: relative;
  z-index: 1;
}

/* ========================================
header
======================================== */
.header {
  line-height: 1;
  position: absolute;
  top: -2px;
  right: 17px;
  z-index: var(--z-index-header);
}
@media screen and (max-width: 767px) {
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 60px;
    padding: 0 calc(var(--mg-sp) * 2) 0 var(--mg-sp);
    background-color: transparent;
    position: fixed;
    top: 0;
    right: 0;
    transition: background-color 0.3s;
  }
  .is-scroll .header {
    background-color: #fff;
  }
}
@media screen and (max-width: 767px) {
  .header_logo {
    width: 114px;
    opacity: 0;
    transition: opacity 0.3s;
  }
  .is-scroll .header_logo {
    opacity: 1;
  }
}
@media (hover: hover) {
  .header_logo a {
    transition: opacity 0.3s;
  }
  .header_logo a:hover {
    opacity: 0.7;
  }
}
.header_navBtn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px 0;
  width: 36px;
  padding: 10px 0;
  position: relative;
  z-index: 3;
}
.header_navBtn::before, .header_navBtn::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
  transition: transform 0.3s;
}
.is-navActive .header_navBtn::before, .is-scroll .header_navBtn::before, .is-navActive .header_navBtn::after, .is-scroll .header_navBtn::after {
  background: #000;
}
.is-navActive .header_navBtn::before {
  transform: translateY(6px) rotate(45deg);
}
.is-navActive .header_navBtn::after {
  transform: translateY(-6px) rotate(-45deg);
}
@media screen and (min-width: 768px) {
  .header_nav {
    opacity: 0;
    animation: LoadFadein 1.6s 0.6s forwards;
  }
}
@media screen and (max-width: 767px) {
  .header_nav {
    width: 100%;
    height: 100%;
    background-color: #fff;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    transition: visibility 0s 0.3s, opacity 0.3s 0s;
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .header_nav::-webkit-scrollbar {
    display: none;
  }
  .is-navActive .header_nav {
    opacity: 1;
    visibility: visible;
    transition: visibility 0s 0s, opacity 0.3s 0s;
  }
}
@media screen and (max-width: 767px) {
  .header_nav ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 34px 0;
    min-height: 100%;
    padding: 20px 0 28px;
  }

  .header_nav ._instagram {
    margin-top: 11px;
  }
  .header_nav ._instagram img {
    width: 36px;
  }
}
.header_nav a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  color: #fff;
  font-size: 36px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .header_nav a {
    color: #000;
    font-size: 48px;
  }
}

/* ========================================
footer
======================================== */
.footer {
  margin-top: 179px;
  padding-bottom: 15px;
  position: relative;
}
.footer_address {
  margin-top: 42px;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .footer {
    margin-top: 62px;
  }
  .footer_logo {
    text-align: center;
  }
  .footer_address {
    margin-top: 26px;
  }
}
.footer_address dl {
  display: flex;
}
.footer_address dt {
  width: 68px;
  font-family: var(--font-en);
  font-size: 20px;
  line-height: 1.2;
}
.footer_address dd {
  flex: 1;
  font-size: 16px;
}
.footer_nav {
  font-size: 36px;
  position: absolute;
  top: -8px;
  right: 0;
}
.footer_nav a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  line-height: 1;
}
.footer_copyright {
  display: block;
  margin-top: 69px;
  font-family: var(--font-en);
  font-size: 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .footer_copyright {
    margin-top: 46px;
    font-size: 16px;
  }
}

/* ========================================
メニュー
======================================== */
/* ========================================
共通で使うレイアウト l-
======================================== */
@media screen and (max-width: 767px) {
  .l-form_cont {
    display: block;
  }
}
.l-form_cont + .l-form_cont {
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .l-form_cont + .l-form_cont {
    margin-top: 11px;
  }
}
.l-form_cont dt {
  margin-top: 5px;
  font-family: var(--font-en);
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .l-form_cont dt {
    margin-top: 0;
  }
}
.l-form_cont dd {
  flex: 1;
}
.l-form input,
.l-form textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 15px;
  background: none;
  box-shadow: 0;
  border: 1px solid #707070;
  border-radius: 0;
  color: #000;
  font-family: var(--font-base);
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  outline: none;
}
.l-form input::-moz-placeholder, .l-form textarea::-moz-placeholder {
  color: #C9CACA;
}
.l-form input::placeholder,
.l-form textarea::placeholder {
  color: #C9CACA;
}
.l-form input {
  height: 60px;
}
@media screen and (max-width: 767px) {
  .l-form input {
    height: 45px;
  }
}
.l-form textarea {
  resize: vertical;
  form-sizing: content;
  height: 266px;
  line-height: 1.7;
}
.l-form_appBox {
  margin-top: 25px;
}
@media screen and (max-width: 767px) {
  .l-form_appBox {
    margin-top: 12px;
  }
}
.l-form_appBox button {
  padding-bottom: 6px;
}
.l-form_recapture {
  margin-top: 25px;
  font-size: 10px;
  line-height: 1.2;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .l-form_recapture {
    text-align: left;
  }
}
.l-form_recapture a {
  text-decoration: underline;
}

.grecaptcha-badge {
  visibility: hidden;
  opacity: 0;
}

/* ========================================
トップページ home
======================================== */
.p-homeMv {
  display: flex;
  height: 100vh;
  background: #000;
  position: relative;
}
@media (hover: hover) {
  .p-homeMv {
    height: 100vh !important;
  }
}
.p-homeMv_slide {
  opacity: 0;
  animation: LoadFadein 1.6s 0.6s forwards;
  pointer-events: none;
}
.p-homeMv .splide__track {
  height: 100%;
}
.p-homeMv_slideCont {
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-homeMv_slideCont {
    flex-direction: column-reverse;
  }
}
.p-homeMv_slideCont ._imgBox01,
.p-homeMv_slideCont ._imgBox02 {
  width: 50%;
  height: 100%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-homeMv_slideCont ._imgBox01,
  .p-homeMv_slideCont ._imgBox02 {
    width: 100%;
    height: 50%;
  }
}
.p-homeMv_slideCont ._imgBox01 img,
.p-homeMv_slideCont ._imgBox02 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.16);
  transition: 1.6s;
}
.p-homeMv_slideCont.is-active ._imgBox01 img,
.p-homeMv_slideCont.is-active ._imgBox02 img, .p-homeMv_slideCont.is-prev ._imgBox01 img,
.p-homeMv_slideCont.is-prev ._imgBox02 img {
  transform: scale(1);
}
.p-homeMv_logo {
  position: absolute;
  top: 20px;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-homeMv_logo {
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .p-homeMv_logo img {
    width: 57.7608142494vw;
    max-width: none;
  }
}

.p-homeContainer {
  margin-top: 131px;
  padding-top: 40px;
}
@media screen and (max-width: 767px) {
  .p-homeContainer {
    margin-top: 30px;
    padding-top: 0;
  }
}

.p-homeDescEn {
  font-size: 20px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-homeDescEn {
    font-size: 16px;
    line-height: 1.3125;
  }
}

.p-homeDescJp {
  margin-top: 83px;
  font-size: 15px;
}
@media screen and (max-width: 767px) {
  .p-homeDescJp {
    margin-top: 18px;
    font-size: 13px;
    line-height: 1.8;
  }
}

.p-homeImgCont {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 24px;
  margin-top: 82px;
}
.p-homeImgCont > * {
  width: calc((100% - 24px) / 2);
}
@media screen and (max-width: 767px) {
  .p-homeImgCont {
    gap: 12px 0;
    flex-direction: column;
    margin-top: 22px;
  }
  .p-homeImgCont > * {
    width: 100%;
  }
}


.p-homeWork {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 20px;
  margin-top: 139px;
  padding-top: 40px;
}
.p-homeWork > * {
  width: calc((100% - 60px) / 4);
}
.p-homeWorkLink {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .p-homeWork {
    justify-content: space-between;
    gap: 3.0534351145vw 0;
    margin-top: 16px;
    padding-top: 20px;
  }
  .p-homeWork > * {
    width: 49.0463215259%;
  }
  .p-homeWorkLink {
    margin-top: 3.0534351145vw;
  }
}


.p-homeContact {
  display: flex;
  align-items: flex-start;
  margin-top: 160px;
}
.p-homeContact_ttl {
  width: min(21.0483870968vw, 261px);
  font-family: var(--font-en);
  font-size: 30px;
}
.p-homeContact_form {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .p-homeContact {
    display: block;
    margin-top: 40px;
  }
  .p-homeContact_ttl {
    width: 100%;
  }
  .p-homeContact_form {
    margin-top: -13px;
  }
}

.p-error {
  padding: 40px 0;
  text-align: center;
}
.p-error_errorCont {
  color: red;
  margin: 40px 0;
}
.p-error_back .m-btn-fill {
  border: none;
  margin: 0 auto;
  padding-bottom: 4px;
  text-align: left;
}

.p-confirm {
  padding: 40px 0;
  text-align: center;
  font-size: 15px;
}
.p-confirm_ttl {
  margin-bottom: 20px;
  font-size: 20px;
}
.p-confirm_cont {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 590px;
  margin: 40px auto 0;
  text-align: left;
}
.p-confirm_cont dl {
  display: flex;
}
.p-confirm_cont dt {
  width: 120px;
}
.p-confirm_cont dd {
  flex: 1;
}
.p-confirm_sppBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px 30px;
  margin-top: 40px;
}
.p-confirm_sppBox .m-btn-fill {
  border: none;
  padding-bottom: 4px;
}
.p-confirm_sppBox .m-btn-fill.-back {
  text-align: left;
}

.p-complete {
  padding: 80px 0 100px;
  text-align: center;
}
@media (hover: hover) {
  .p-complete_logo a {
    transition: opacity 0.3s;
  }
  .p-complete_logo a:hover {
    opacity: 0.7;
  }
}

.p-complete_desc {
  margin-top: 120px;
}

.p-complete_back {
  margin-top: 60px;
}
.p-complete_back .m-btn-fill {
  margin: 0 auto;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .p-complete_logo img {
    width: 160px;
  }

  .p-complete_desc {
    margin-top: 80px;
  }
}