@charset "UTF-8";
/* ====================================================================================================

    font

==================================================================================================== */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+JP:wght@100;300;500;700&display=swap');
/* ====================================================================================================

    mixin

==================================================================================================== */
/* ========== breakpoint ========== */
/* ====================================================================================================

    variable

==================================================================================================== */
/* ====================================================================================================

    reset

==================================================================================================== */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

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

img,
iframe {
  vertical-align: middle;
}

video::-webkit-media-controls {
  display: none !important;
}

/* ====================================================================================================

    base

==================================================================================================== */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  color: #1a1a1a;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: clamp(12px, 1.111vw, 16px);
  font-size: clamp(1.2rem, 1.111vw, 1.6rem);
  font-weight: 500;
  /*font-family: "Inter", "Zen Kaku Gothic New", sans-serif;*/
  font-family: 'IBM Plex Sans JP', sans-serif;
  font-smoothing: antialiased;
  line-height: 2;
  transition: background-color 0.5s ease, color 0.5s ease;
}

li {
  list-style: none;
}

a {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none;
}
/* ====================================================================================================

    device

==================================================================================================== */
.pc-only {
  display: block;
}

.sp-only {
  display: none;
}
/* ====================================================================================================

    l-layouts

==================================================================================================== */
/* ========== l-section ========== */
.l-section + .l-section {
  margin-top: 120px;
  margin-top: 12rem;
}

/* ========== l-main ========== */
.l-main {
  width: 80%;
  margin: 0 auto;
  display: block;
}

.l-mainPage {
  width: 60%;
  margin: 0 auto;
  display: block;
}

/* ========== l-header ========== */
.l-header {
  width: 100%;
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  z-index: 9999;
  padding-top: 30px;
  padding-top: 3rem;
}

/* ========== l-hero ========== */
.l-hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.l-hero__left {
  width: 10%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 30px 0;
  padding: 3rem 0;
}

.l-hero__right {
  width: 90%;
  height: 100vh;
}

/* ========== l-name ========== */
.l-name {
  width: 100%;
  margin: 0 auto;
  font-size: 12vw;
  text-align: center;
  color: #EFEFEF;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  line-height: 1;
  position: relative;
  padding-bottom: 120px;
  padding-bottom: 12rem;
  overflow-x: hidden;
  overflow-y: visible;
}

@-webkit-keyframes animate-banner {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@keyframes animate-banner {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
/* ========== l-product ========== */
.l-product {
  width: 90%;
  margin: 0 auto 0 0;
  background: #FDE482;
  border-radius: 0 8rem 8rem 0;
  overflow: hidden;
}

a.sample {
  display: block;
  margin-top: 0;
  padding-top: 0;
}

/* ========== l-service ========== */
.l-service {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 0 40px;
  gap: 0 4rem;
  grid-auto-flow: row;
  width: 80%;
  margin: 0 auto -30px auto;
  margin: 0 auto -3rem auto;
}

.l-service__head {
  grid-area: 1/1/2/4;
  margin-bottom: 60px;
  margin-bottom: 6rem;
}

.l-service__body01 {
  grid-area: 2/1/3/2;
}

.l-service__body02 {
  grid-area: 2/3/3/4;
}

.l-service__body03 {
  grid-area: 3/1/4/2;
}

.l-service__body04 {
  grid-area: 3/3/4/4;
}

.l-service__body05 {
  grid-area: 2/2/4/3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* ========== l-works ========== */
.l-works {
  background: #F2EDE6;
  border-radius: 8rem 0 8rem 0;
  padding: 120px 10%;
  padding: 12rem 10%;
}

/* ========== l-blog ========== */
.l-blog {
  width: 80%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.l-blog__left {
  width: 30%;
  padding-right: 40px;
  padding-right: 4rem;
}

.l-blog__right {
  width: 70%;
}

/* ========== l-overview ========== */
.l-overview {
  width: 80%;
  margin: 0 auto;
}

.l-overview__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 60px;
  margin-top: 6rem;
}

.l-overview__left {
  width: calc(50% - 2rem);
}

.l-overview__right {
  width: calc(50% - 2rem);
}

/* ========== l-footer ========== */
.l-footer {
  text-align: center;
  padding: 60px 0;
  padding: 6rem 0;
}

/* ========== l-pageheader ========== */
.l-pageheader {
  width: 80%;
  height: 50vh;
  margin: 0 auto;
  position: relative;
}

.l-pageheader__title {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 16vw;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  line-height: 1;
  color: #f6f6f6;
  overflow: hidden;
  z-index: -1;
}

/* ========== l-bread ========== */
.l-bread {
  position: absolute;
  bottom: 60px;
  bottom: 6rem;
  left: 0;
  font-size: clamp(12px, 0.972vw, 14px);
  font-size: clamp(1.2rem, 0.972vw, 1.4rem);
}
.l-bread a {
  text-decoration: none;
  color: #222;
  position: relative;
  display: inline-block;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.l-bread a:before {
  content: "";
  background: #222;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  height: 0.1rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.l-bread a:hover {
  background-position: 0;
}
.l-bread a:hover::before {
  width: 100%;
}

/* ========== l-blogSingle ========== */
.l-blogSingle {
  width: 60%;
  margin: 0 auto;
}

/* ========== l-cta ========== */
.l-cta {
  z-index: 0;
  position: relative;
  background: #222;
  margin-top: 120px;
  margin-top: 12rem;
}

.l-cta .l-cta__contact--link {
  display: block;
  z-index: 1;
  position: relative;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
}

.l-cta .l-cta__contact--link:active .l-cta__contact .l-cta__contact--link-en:before,
.l-cta .l-cta__contact--link:focus .l-cta__contact .l-cta__contact--link-en:before,
.l-cta .l-cta__contact--link:hover .l-cta__contact .l-cta__contact--link-en:before {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.l-cta .l-cta__contact--link:active .l-cta__contact .l-cta__contact--link-en > span,
.l-cta .l-cta__contact--link:focus .l-cta__contact .l-cta__contact--link-en > span,
.l-cta .l-cta__contact--link:hover .l-cta__contact .l-cta__contact--link-en > span {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  opacity: 0;
}

.l-cta .l-cta__contact--link:active .l-cta__contact .l-cta__contact--icon,
.l-cta .l-cta__contact--link:focus .l-cta__contact .l-cta__contact--icon,
.l-cta .l-cta__contact--link:hover .l-cta__contact .l-cta__contact--icon {
  right: -30px;
  right: -3rem;
  opacity: 0;
}

.l-cta .l-cta__contact--link:active .l-cta__contact .l-cta__contact--icon-hover,
.l-cta .l-cta__contact--link:focus .l-cta__contact .l-cta__contact--icon-hover,
.l-cta .l-cta__contact--link:hover .l-cta__contact .l-cta__contact--icon-hover {
  right: 0;
  opacity: 1;
}

.l-cta .l-cta__contact--link .l-cta__contact {
  z-index: 2;
  position: relative;
  height: 400px;
  height: 40rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.l-cta .l-cta__contact--link .l-cta__contact p {
  position: relative;
  top: -40px;
  top: -4rem;
}

.l-cta .l-cta__contact--link .l-cta__contact .l-cta__contact--link-en {
  position: relative;
  margin-bottom: -5px;
  margin-bottom: -0.5rem;
  overflow: hidden;
  font-size: clamp(80px, 6.944vw, 100px);
  font-size: clamp(8rem, 6.944vw, 10rem);
  letter-spacing: -0.03em;
  line-height: 1;
  font-family: "Inter", sans-serif;
}

.l-cta .l-cta__contact--link .l-cta__contact .l-cta__contact--link-en:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  text-align: center;
  content: "CONTACT";
  opacity: 0;
  -webkit-transition: all 0.3s cubic-bezier(1, 0, 0, 1);
  transition: all 0.3s cubic-bezier(1, 0, 0, 1);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-transition-timing-function: cubic-bezier(1, 0, 0, 1);
          transition-timing-function: cubic-bezier(1, 0, 0, 1);
  font-family: "Inter", sans-serif;
}

.l-cta .l-cta__contact--link .l-cta__contact .l-cta__contact--link-en > span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-transition: all 0.3s cubic-bezier(1, 0, 0, 1);
  transition: all 0.3s cubic-bezier(1, 0, 0, 1);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-transition-timing-function: cubic-bezier(1, 0, 0, 1);
          transition-timing-function: cubic-bezier(1, 0, 0, 1);
}

.l-cta .l-cta__contact--link .l-cta__contact--link-wrap {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-right: 70px;
  padding-right: 7rem;
  line-height: 1;
}

.l-cta .l-cta__contact--link .l-cta__contact--icon {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-40%);
          transform: translateY(-40%);
  -webkit-transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition-property: right, opacity;
  transition-property: right, opacity;
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
          transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.l-cta .l-cta__contact--link .l-cta__contact--icon-hover {
  position: absolute;
  top: 50%;
  right: 30px;
  right: 3rem;
  -webkit-transform: translateY(-40%);
          transform: translateY(-40%);
  opacity: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition-property: right, opacity;
  transition-property: right, opacity;
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
          transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

/* ====================================================================================================

    c-blockHeader

==================================================================================================== */
.c-blockHeader {
  margin-bottom: 40px;
  margin-bottom: 4rem;
  text-align: center;
}
.c-blockHeader h3 {
  position: relative;
  padding-bottom: 30px;
  padding-bottom: 3rem;
  font-weight: 500;
  color: #222;
  display: inline-block;
  position: relative;
  font-size: clamp(20px, 2.4vw, 30px);
  font-size: clamp(2rem, 2.4vw, 3rem);
  text-align: center;
}
.c-blockHeader h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%) rotate(45deg);
          transform: translate(-50%) rotate(45deg);
  width: 3px;
  width: 0.3rem;
  height: 30px;
  height: 3rem;
  background-color: #ddd;
}

/* ====================================================================================================

    c-link

==================================================================================================== */
.c-link {
  color: #1a1a1a;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-underline-offset: 0.5rem;
}
.c-link:hover {
  text-decoration: none;
}

/* ====================================================================================================

    c-pagenavi

==================================================================================================== */
/* ========== .c-pagenavi ========== */
.c-pagenavi {
  text-align: center;
  margin-top: 60px;
  margin-top: 6rem;
}

/* ========== .wp-pagenavi ========== */
.wp-pagenavi {
  font-size: 16px !important;
  font-size: 1.6rem !important;
  font-weight: 500 !important;
}
.wp-pagenavi .pages {
  border: none !important;
  background: #fff !important;
  color: #333 !important;
  padding: 0 10px !important;
  padding: 0 1rem !important;
  line-height: 40px !important;
  line-height: 4rem !important;
  margin: 0 5px !important;
  margin: 0 0.5rem !important;
  display: inline-block;
}
.wp-pagenavi a {
  border: none !important;
  line-height: 40px !important;
  line-height: 4rem !important;
  padding: 0 10px !important;
  padding: 0 1rem !important;
  display: inline-block !important;
  color: #333 !important;
  background: #fff !important;
  text-decoration: none !important;
  position: relative !important;
  margin: 0 5px !important;
  margin: 0 0.5rem !important;
  -webkit-transition: 0.3s !important;
  transition: 0.3s !important;
  min-width: 40px !important;
  min-width: 4rem !important;
}
.wp-pagenavi a:hover {
  text-decoration: none !important;
  position: relative !important;
  background: #E7E6DA !important;
}
.wp-pagenavi a.nextpostslink {
  border: none !important;
  line-height: 40px !important;
  line-height: 4rem !important;
  padding: 0 10px !important;
  padding: 0 1rem !important;
  display: inline-block !important;
  color: #333 !important;
  text-decoration: none !important;
  position: relative !important;
  margin: 0 5px !important;
  margin: 0 0.5rem !important;
  -webkit-transition: 0.3s !important;
  transition: 0.3s !important;
}
.wp-pagenavi a.nextpostslink:hover {
  background: #E7E6DA !important;
}
.wp-pagenavi a.previouspostslink {
  border: none !important;
  line-height: 40px !important;
  line-height: 4rem !important;
  padding: 0 10px !important;
  padding: 0 1rem !important;
  display: inline-block !important;
  color: #333 !important;
  text-decoration: none !important;
  position: relative !important;
  margin: 0 5px !important;
  margin: 0 0.5rem !important;
  -webkit-transition: 0.3s !important;
  transition: 0.3s !important;
  background: #fff;
}
.wp-pagenavi a.previouspostslink:hover {
  background: #E7E6DA !important;
}
.wp-pagenavi .current {
  border: none !important;
  line-height: 40px !important;
  line-height: 4rem !important;
  padding: 0 10px !important;
  padding: 0 1rem !important;
  display: inline-block !important;
  color: #fff !important;
  text-decoration: none !important;
  position: relative !important;
  margin: 0 5px !important;
  margin: 0 0.5rem !important;
  background: #222 !important;
  min-width: 40px !important;
  min-width: 4rem !important;
}
/* ====================================================================================================

    c-pen

==================================================================================================== */
.c-pen {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #fde482));
  background: linear-gradient(transparent 60%, #fde482 60%);
}

/* ====================================================================================================

    c-prevnext

==================================================================================================== */
.c-prevnext {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 60px;
  margin-top: 6rem;
}
.c-prevnext a {
  display: inline-block;
  padding: 0 1.25em;
  border-radius: 10rem;
  color: #fff;
  font-size: clamp(13px, 0.972vw, 14px);
  font-size: clamp(1.3rem, 0.972vw, 1.4rem);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin: 0 10px;
  margin: 0 1rem;
}
.c-prevnext a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #222;
  border-radius: 10rem;
  z-index: -2;
}
.c-prevnext a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #444;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 10rem;
  z-index: -1;
}
.c-prevnext a:hover {
  color: #fff;
}
.c-prevnext a:hover:before {
  width: 100%;
}
@-webkit-keyframes cinematic-camera {
  from {
    -webkit-perspective-origin: 60% 40%;
            perspective-origin: 60% 40%;
  }
  to {
    -webkit-perspective-origin: 40% 60%;
            perspective-origin: 40% 60%;
  }
  from, to {
    opacity: 0;
  }
  25%, 75% {
    opacity: 1;
  }
}
@keyframes cinematic-camera {
  from {
    -webkit-perspective-origin: 60% 40%;
            perspective-origin: 60% 40%;
  }
  to {
    -webkit-perspective-origin: 40% 60%;
            perspective-origin: 40% 60%;
  }
  from, to {
    opacity: 0;
  }
  25%, 75% {
    opacity: 1;
  }
}

/* ====================================================================================================

    c-sectionHeader

==================================================================================================== */
.c-sectionHeader {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: clamp(80px, 6.944vw, 100px);
  font-size: clamp(8rem, 6.944vw, 10rem);
  line-height: 0.8;
}

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

.c-sectionHeader.left {
  text-align: left;
}

.c-sectionHeader__ja {
  font-size: clamp(12px, 1.111vw, 16px);
  font-size: clamp(1.2rem, 1.111vw, 1.6rem);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  display: block;
  margin-top: 20px;
  margin-top: 2rem;
  letter-spacing: 0.2em;
  line-height: 1;
}

/* ====================================================================================================

    c-small

==================================================================================================== */
.c-small {
  font-size: 0.9em;
}

/* ====================================================================================================

    c-strong

==================================================================================================== */
.c-strong {
  text-decoration: underline;
  text-underline-offset: 5px;
  text-underline-offset: 0.5rem;
  font-weight: 600;
}

/* ====================================================================================================

    c-viewMore

==================================================================================================== */
.c-viewMore {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  line-height: 1;
  margin-top: 60px;
  margin-top: 6rem;
}

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

.c-viewMore.left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.c-viewMore.left li:first-child {
  margin-right: 40px;
  margin-right: 4rem;
}

.c-viewMore__a {
  display: inline-block;
  position: relative;
  padding-right: 80px;
  padding-right: 8rem;
  color: #222;
  line-height: 60px;
  line-height: 6rem;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.c-viewMore__a:after {
  content: "\f061";
  font-family: fontAwesome;
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  width: 6rem;
  height: 60px;
  height: 6rem;
  border: 1px solid #222;
  border: 0.1rem solid #222;
  background: #222;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.c-viewMore__a:hover:after {
  background: none;
  color: #222;
}

/* ====================================================================================================

    p-blog

==================================================================================================== */
.p-blogCards {
  border-top: 1px solid #ddd;
  border-top: 0.1rem solid #ddd;
}

.p-blogCard__a {
  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: 30px 0;
  padding: 3rem 0;
  position: relative;
  border-bottom: 1px solid #ddd;
  border-bottom: 0.1rem solid #ddd;
  background-image: -webkit-gradient(linear, left top, right top, from(#222), color-stop(50%, #222), color-stop(50%, #222));
  background-image: linear-gradient(to right, #222, #222 50%, #222 50%);
  -webkit-background-clip: text;
  -webkit-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
  z-index: 9;
}
.p-blogCard__a:before {
  content: "";
  background: #222;
  display: block;
  position: absolute;
  bottom: -1px;
  bottom: -0.1rem;
  left: 0;
  width: 0;
  height: 1px;
  height: 0.1rem;
  -webkit-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
}
.p-blogCard__a:hover {
  background-position: 0;
}
.p-blogCard__a:hover::before {
  width: 100%;
}
.p-blogCard__a::after {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "\f061";
  color: #999;
  font-size: 24px;
  font-size: 2.4rem;
  font-family: fontAwesome;
  font-weight: 100;
  -webkit-transition: 0.7s;
  transition: 0.7s;
  z-index: 10;
}
.p-blogCard__a:hover::after {
  color: #222;
}

.p-blogCard__left {
  width: 30%;
}

.p-blogCard__right {
  width: calc(70% - 4rem);
}

.p-blogCard__thumb img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/9;
}

.p-blogCard__ymd {
  color: #999;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(13px, 0.972vw, 15px);
  font-size: clamp(1.3rem, 0.972vw, 1.5rem);
  line-height: 1;
}

.p-blogCard__title {
  color: #222;
  font-weight: 500;
}

.p-blogCard__tax {
  color: #999;
  border: 1px solid #999;
  border: 0.1rem solid #999;
  display: inline-block;
  padding: 0 1em;
  line-height: 1.6;
  border-radius: 3rem;
  font-size: clamp(13px, 0.972vw, 15px);
  font-size: clamp(1.3rem, 0.972vw, 1.5rem);
  margin-top: 10px;
  margin-top: 1rem;
}

/* ====================================================================================================

    p-blogSingle

==================================================================================================== */
/* ========== .p-blogSingle__head ========== */
.p-blogSingle__head {
  margin-bottom: 60px;
  margin-bottom: 6rem;
}

.p-blogSingle__ymd {
  color: #999;
  margin-right: 10px;
  margin-right: 1rem;
}

.p-blogSingle__tax {
  color: #999;
  border: 1px solid #999;
  border: 0.1rem solid #999;
  display: inline-block;
  padding: 0 1em;
  line-height: 1.6;
  border-radius: 3rem;
  font-size: clamp(13px, 0.972vw, 15px);
  font-size: clamp(1.3rem, 0.972vw, 1.5rem);
}

.p-blogSingle__title {
  font-size: clamp(30px, 2.778vw, 50px);
  font-size: clamp(3rem, 2.778vw, 5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-top: 20px;
  margin-top: 2rem;
}

.p-blogSingle__thumb {
  margin-top: 20px;
  margin-top: 2rem;
}
.p-blogSingle__thumb img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/9;
}

/* ========== .p-blogSingle__body ========== */
.p-blogSingle__body {
  padding-bottom: 60px;
  padding-bottom: 6rem;
  border-bottom: 1px solid #ddd;
  border-bottom: 0.1rem solid #ddd;
}
.p-blogSingle__body > * + * {
  margin-top: 20px;
  margin-top: 2rem;
}
.p-blogSingle__body h3 {
  font-weight: 700;
  font-size: 2em;
}
.p-blogSingle__body h4 {
  font-weight: 700;
  font-size: 1.5em;
}
.p-blogSingle__body ol li {
  list-style-type: decimal;
  margin-left: 1.5em;
}
.p-blogSingle__body ul li {
  list-style: disc;
  margin-left: 1.5em;
}
.p-blogSingle__body img {
  width: 100%;
  height: auto;
}
.p-blogSingle__body a {
  text-decoration: underline;
  color: #222;
}
.p-blogSingle__body a:hover {
  text-decoration: none;
}
.p-blogSingle__body .wp-block-columns {
  margin-bottom: 0;
}

/* ====================================================================================================

    p-contact

==================================================================================================== */
.p-contact__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-contact__col1 {
  width: 100%;
}

.p-contact__col2 {
  width: calc(50% - 2rem);
}
.p-contact * {
  font-family: "Inter", "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
}
.p-contact .p-contact__row + .p-contact__row {
  margin-top: 40px;
  margin-top: 4rem;
}
.p-contact input[type=text],
.p-contact input[type=email],
.p-contact textarea {
  width: 100%;
  border: 1px solid #ddd;
  border: 0.1rem solid #ddd;
  border-radius: 0.6rem;
  background: #fff;
  padding: 10px;
  padding: 1rem;
  -webkit-transition: 0.7s;
  transition: 0.7s;
}
.p-contact select {
  width: 100%;
  border: 1px solid #ddd;
  border: 0.1rem solid #ddd;
  border-radius: 0.6rem;
  background: #fff;
  padding: 9px 10px;
  padding: 0.9rem 1rem;
  -webkit-transition: 0.7s;
  transition: 0.7s;
}
.p-contact textarea {
  height: 160px;
  height: 16rem;
}
.p-contact input[type=submit] {
  width: 100%;
  border: 1px solid #222;
  border: 0.1rem solid #222;
  border-radius: 10rem;
  background: #222;
  color: #fff;
  padding: 10px;
  padding: 1rem;
  font-size: clamp(20px, 1.667vw, 28px);
  font-size: clamp(2rem, 1.667vw, 2.8rem);
  position: relative;
  overflow: hidden;
  z-index: 1;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
.p-contact input[type=submit]:hover {
  cursor: pointer;
  background: #444;
}
.p-contact input[type=text]:focus,
.p-contact input[type=email]:focus,
.p-contact input[type=submit]:focus,
.p-contact select:focus,
.p-contact textarea:focus {
  outline: none;
  border: 1px solid #222;
  border: 0.1rem solid #222;
}
.p-contact .mwform-radio-field {
  margin-top: 10px;
  margin-top: 1rem;
}
.p-contact ::-webkit-input-placeholder {
  color: #ccc;
}
.p-contact ::-moz-placeholder {
  color: #ccc;
}
.p-contact ::-ms-input-placeholder {
  color: #ccc;
}
.p-contact ::placeholder {
  color: #ccc;
}
.p-contact .p-contact__p {
  margin-bottom: 10px;
  margin-bottom: 1rem;
}
.p-contact .must {
  color: #fff;
  background: #FF530D;
  display: inline-block;
  padding: 0 1em;
  line-height: 1.6;
  border-radius: 3rem;
  font-size: clamp(13px, 0.972vw, 15px);
  font-size: clamp(1.3rem, 0.972vw, 1.5rem);
  margin-right: 10px;
  margin-right: 1rem;
}
.p-contact .no-must {
  color: #fff;
  background: #999;
  display: inline-block;
  padding: 0 1em;
  line-height: 1.6;
  border-radius: 3rem;
  font-size: clamp(13px, 0.972vw, 15px);
  font-size: clamp(1.3rem, 0.972vw, 1.5rem);
  margin-right: 10px;
  margin-right: 1rem;
}
.p-contact .p-contact__privacy {
  text-align: center;
}
.p-contact .p-contact__privacy a {
  color: #222;
  text-decoration: underline;
}
.p-contact .p-contact__privacy a:hover {
  text-decoration: none;
}

/* ====================================================================================================

    p-drawer

==================================================================================================== */
.p-drawer {
  position: relative;
} /* ========== ナビゲーションのためのCSS ========== */
#g-nav {
  position: fixed;
  z-index: 999;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  background: #222;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

#g-nav.panelactive {
  right: 0;
}

#g-nav.panelactive #g-nav-list {
  position: fixed;
  z-index: 9000;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

#g-nav ul.list {
  z-index: 999;
  width: 100%;
  padding: 10%;
}

#g-nav li a {
  color: #fff;
  text-decoration: none;
  display: block;
  font-size: clamp(20px, 6vw, 40px);
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 1.8;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: relative;
}
#g-nav li a:hover {
  opacity: 0.5;
}

#g-nav li + li {
  margin-top: 15px;
  margin-top: 1.5rem;
}

/* ========== ボタンのためのCSS ========== */
.openbtn1 {
  position: absolute;
  z-index: 9999;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -5px;
  right: -0.5rem;
  cursor: pointer;
  width: 50px;
  width: 5rem;
  height: 50px;
  height: 5rem;
}
.openbtn1 span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: absolute;
  left: 5px;
  left: 0.5rem;
  height: 3px;
  height: 0.3rem;
  border-radius: 0;
  background-color: #222;
  width: 40px;
  width: 4rem;
}
.openbtn1 span:nth-of-type(1) {
  top: 10px;
  top: 1rem;
}
.openbtn1 span:nth-of-type(2) {
  top: 23px;
  top: 2.3rem;
}
.openbtn1 span:nth-of-type(3) {
  top: 36px;
  top: 3.6rem;
}

.openbtn1.active span:nth-of-type(1) {
  top: 18px;
  top: 1.8rem;
  left: 50%;
  -webkit-transform: translateY(0.6rem) translateX(-50%) rotate(-45deg);
          transform: translateY(0.6rem) translateX(-50%) rotate(-45deg);
  width: 50%;
  background-color: #fff;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn1.active span:nth-of-type(3) {
  top: 30px;
  top: 3rem;
  left: 50%;
  -webkit-transform: translateY(-0.6rem) translateX(-50%) rotate(45deg);
          transform: translateY(-0.6rem) translateX(-50%) rotate(45deg);
  width: 50%;
  background-color: #fff;
}

.navbar-menu .navbar-item.active {
  color: #fff;
}

/* ====================================================================================================

    p-footer

==================================================================================================== */
/* ========== .p-footerNav ========== */
.p-footerNav__ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-footerNav__li {
  margin: 0 10px;
  margin: 0 1rem;
}

.p-footerNav__a {
  font-family: "Inter", sans-serif;
  color: #222;
  background-image: -webkit-gradient(linear, left top, right top, from(#222), color-stop(50%, #222), color-stop(50%, #222));
  background-image: linear-gradient(to right, #222, #222 50%, #222 50%);
  background-size: 200% 100%;
  background-position: -100%;
  display: inline-block;
  padding: 5px 0;
  padding: 0.5rem 0;
  position: relative;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.p-footerNav__a:before {
  content: "";
  background: #222;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  height: 0.1rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.p-footerNav__a:hover {
  background-position: 0;
}
.p-footerNav__a:hover::before {
  width: 100%;
}

/* ========== .p-footerSns ========== */
.p-footerSns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
  margin-top: 3rem;
}

.p-footerSns__li {
  margin: 0 10px;
  margin: 0 1rem;
}

.p-footerSns__a {
  color: #222;
  font-size: clamp(28px, 2.222vw, 36px);
  font-size: clamp(2.8rem, 2.222vw, 3.6rem);
  line-height: 1;
}

/* ========== .p-footerCopy ========== */
.p-footerCopy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
  margin-top: 3rem;
}

/* ====================================================================================================

    p-header

==================================================================================================== */
.p-headerLogo {
  width: 10%;
  text-align: center;
}
.p-headerLogo img {
  width: 60px;
  width: 6rem;
  height: auto;
  -webkit-transition: 0.7s;
  transition: 0.7s;
}
.p-headerLogo img:hover {
  opacity: 0.8;
}

.p-headerNav {
  width: 90%;
  padding-right: 60px;
  padding-right: 6rem;
}

.p-headerNav__ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.p-headerNav__li {
  margin-left: 2em;
}

.p-headerNav__a {
  font-family: "Inter", sans-serif;
  color: #fff;
  font-weight: 600;
  background-image: -webkit-gradient(linear, left top, right top, from(#fff), color-stop(50%, #fff), color-stop(50%, #fff));
  background-image: linear-gradient(to right, #fff, #fff 50%, #fff 50%);
  background-size: 200% 100%;
  background-position: -100%;
  display: inline-block;
  padding: 5px 0;
  padding: 0.5rem 0;
  position: relative;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.p-headerNav__a:before {
  content: "";
  background: #fff;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  height: 0.1rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.p-headerNav__a:hover {
  background-position: 0;
}
.p-headerNav__a:hover::before {
  width: 100%;
}

.p-headerNav__a.black {
  font-family: "Inter", sans-serif;
  color: #222;
  font-weight: 600;
  background-image: -webkit-gradient(linear, left top, right top, from(#222), color-stop(50%, #222), color-stop(50%, #222));
  background-image: linear-gradient(to right, #222, #222 50%, #222 50%);
  background-size: 200% 100%;
  background-position: -100%;
  display: inline-block;
  padding: 5px 0;
  padding: 0.5rem 0;
  position: relative;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.p-headerNav__a.black:before {
  content: "";
  background: #222;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  height: 0.1rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.p-headerNav__a.black:hover {
  background-position: 0;
}
.p-headerNav__a.black:hover::before {
  width: 100%;
}

/* ====================================================================================================

    p-hero

==================================================================================================== */
/* ========== p_hero__blank ========== */
.p_hero__blank {
  width: 60px;
  width: 6rem;
  height: 180px;
  height: 18rem;
}

/* ========== p-hero__englishNotation ========== */
.p-hero__englishNotation {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 12px;
  font-size: 1.2rem;
  letter-spacing: 0.4em;
}

/* ========== p-hero__scroll ========== */

/* ========== p-hero__mv ========== */
.p-hero__mv {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 0 8rem;
}

.p-hero__wrap {
  position: relative;
  height: 100vh;
}

.p-hero__video {
  display: block;
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.p-hero__catch {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 60px;
  left: 6rem;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  z-index: 3;
  font-weight: 700;
  display: none;
}

.p-hero__tagline {
  font-size: clamp(40px, 3.472vw, 60px);
  font-size: clamp(4rem, 3.472vw, 6rem);
  line-height: 1.5;
  letter-spacing: 0;
}

.p-hero__h1 {
  font-size: clamp(16px, 1.389vw, 24px);
  font-size: clamp(1.6rem, 1.389vw, 2.4rem);
  margin-top: 30px;
  margin-top: 3rem;
}

/* ====================================================================================================

    p-overview

==================================================================================================== */
.p-overview__p + .p-overview__p {
  margin-top: 20px;
  margin-top: 2rem;
}

.p-overview__dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #ddd;
  border-bottom: 0.1rem solid #ddd;
  padding: 20px 0;
  padding: 2rem 0;
}

.p-overview__dl:first-child {
  border-top: 1px solid #ddd;
  border-top: 0.1rem solid #ddd;
}

.p-overview__dt {
  width: 30%;
  font-weight: 600;
}

.p-overview__dd {
  width: 70%;
}

/* ====================================================================================================

    p-pageheader

==================================================================================================== */
/* ========== p-pageheader ========== */
.p-pageheader {
  width: 100%;
  height: 100%;
  position: relative;
  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;
}

.p-pageheader__h1 {
  font-size: clamp(16px, 1.389vw, 24px);
  font-size: clamp(1.6rem, 1.389vw, 2.4rem);
  margin-top: 30px;
  margin-top: 3rem;
}

/* ====================================================================================================

    p-privacy

==================================================================================================== */
.p-privacy h2 {
  margin: 40px 0 20px 0;
  margin: 4rem 0 2rem 0;
  font-weight: 700;
  font-size: clamp(20px, 1.667vw, 28px);
  font-size: clamp(2rem, 1.667vw, 2.8rem);
}
.p-privacy ul {
  margin: 20px 0;
  margin: 2rem 0;
}
.p-privacy li {
  list-style: disc;
  margin-left: 1.5em;
}
.p-privacy a {
  text-decoration: underline;
  color: #222;
}
.p-privacy a:hover {
  text-decoration: none;
}

/* ====================================================================================================

    p-product

==================================================================================================== */
/* ========== p-productHero ========== */
.p-productHero {
  background: #FDE482;
  width: 100%;
  height: 50vh;
}

.p-productHero__inner {
  width: 90%;
  height: 100%;
  margin-left: 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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-productHero__left {
  width: calc(50% - 2rem);
}

.p-productHero__right {
  width: calc(50% - 2rem);
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.p-productHero__right img {
  height: 100%;
  width: auto;
}

.p-productHero__title {
  font-family: "Inter", "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(40px, 4.861vw, 60px);
  font-size: clamp(4rem, 4.861vw, 6rem);
  font-weight: 500;
  margin-bottom: 40px;
  margin-bottom: 4rem;
  line-height: 1;
}
.p-productHero__title span {
  font-size: clamp(24px, 2.778vw, 40px);
  font-size: clamp(2.4rem, 2.778vw, 4rem);
  margin-left: 0.5em;
}

/* ========== p-productPrice ========== */
.p-productPrice__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 40px;
  padding: 4rem;
  background: #f7f7f7;
  border-radius: 4rem;
}

.p-productPrice__btn {
  margin: 40px auto 0 auto;
  margin: 4rem auto 0 auto;
  width: 50%;
}
.p-productPrice__btn a {
  display: block;
  padding: 0.25em 1.25em;
  border-radius: 10rem;
  color: #fff;
  font-size: clamp(20px, 2.4vw, 30px);
  font-size: clamp(2rem, 2.4vw, 3rem);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-align: center;
}
.p-productPrice__btn a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #222;
  border-radius: 10rem;
  z-index: -2;
}
.p-productPrice__btn a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #444;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 10rem;
  z-index: -1;
}
.p-productPrice__btn a:hover {
  color: #fff;
}
.p-productPrice__btn a:hover:before {
  width: 100%;
}
.p-productPrice__btn a i {
  margin-left: 10px;
  margin-left: 1rem;
  font-size: 0.7em;
}
@keyframes cinematic-camera {
  from {
    -webkit-perspective-origin: 60% 40%;
            perspective-origin: 60% 40%;
  }
  to {
    -webkit-perspective-origin: 40% 60%;
            perspective-origin: 40% 60%;
  }
  from, to {
    opacity: 0;
  }
  25%, 75% {
    opacity: 1;
  }
}

.p-productPrice__block01 {
  padding: 20px 40px 20px 0;
  padding: 2rem 4rem 2rem 0;
  border-right: 1px solid #ddd;
  border-right: 0.1rem solid #ddd;
  text-align: center;
  width: 50%;
}

.p-productPrice__block02 {
  padding: 20px 0 20px 40px;
  padding: 2rem 0 2rem 4rem;
  text-align: center;
  width: 50%;
}

.p-productPrice__num {
  font-size: clamp(40px, 4.861vw, 60px);
  font-size: clamp(4rem, 4.861vw, 6rem);
  font-weight: 500;
  line-height: 1;
  margin: 20px 0;
  margin: 2rem 0;
  letter-spacing: -0.04em;
}
.p-productPrice__num span {
  font-size: clamp(20px, 2.778vw, 30px);
  font-size: clamp(2rem, 2.778vw, 3rem);
  margin-left: 0.2em;
}

.p-productPrice__supplement {
  font-size: clamp(12px, 0.972vw, 14px);
  font-size: clamp(1.2rem, 0.972vw, 1.4rem);
  line-height: 1.6;
  text-align: left;
}

.p-productPrice__label {
  color: #222;
  background: #fde482;
  display: inline-block;
  padding: 0 1em;
  line-height: 1.6;
  border-radius: 3rem;
  font-size: clamp(13px, 0.972vw, 15px);
  font-size: clamp(1.3rem, 0.972vw, 1.5rem);
  font-weight: 600;
}

/* ========== p-productFlex ========== */
.p-productFlex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-productFlex__left {
  width: calc(50% - 4rem);
  height: 100%;
}

.p-productFlex__right {
  width: calc(50% - 4rem);
  position: sticky;
  top: 120px;
  top: 12rem;
}

/* ========== timeline-001__section ========== */
.timeline-001__section {
  position: relative;
  padding: 0 0 40px 40px;
  padding: 0 0 4rem 4rem;
}

.timeline-001__section:not(:last-child)::before,
.timeline-001__section::after {
  position: absolute;
  content: "";
}

.timeline-001__section:not(:last-child)::before {
  bottom: 0;
  left: 11px;
  left: 1.1rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 3px;
  width: 0.3rem;
  height: 100%;
  background-color: #d6dde3;
}

.timeline-001__section::after {
  top: 0;
  left: 0;
  width: 14px;
  width: 1.4rem;
  height: 14px;
  height: 1.4rem;
  border: 4px solid #fff;
  border: 0.4rem solid #fff;
  border-radius: 50%;
  background-color: #fde482;
}

.timeline-001__label {
  color: #999;
  font-size: 12px;
  font-size: 1.2rem;
}

.timeline-001__title {
  font-weight: 600;
  margin: 0;
}

/* ========== .l-flex ========== */
.l-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.l-flexMain {
  width: calc(50% - 4rem);
  background: #999;
}

.l-flexAside {
  width: calc(50% - 4rem);
  position: sticky;
  top: 120px;
  top: 12rem;
  background: red;
}

/* ====================================================================================================

    p-service

==================================================================================================== */
.p-serviceCard {
  border-top: 1px solid #eee;
  border-top: 0.1rem solid #eee;
  position: relative;
  padding: 40px 0;
  padding: 4rem 0;
  height: 100%;
}
.p-serviceCard::after {
  content: "";
  position: absolute;
  top: -1px;
  top: -0.1rem;
  left: 0;
  width: 100%;
  height: 1px;
  height: 0.1rem;
  background: #222;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
.p-serviceCard:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.p-serviceCard:hover {
  cursor: pointer;
}

.p-serviceCard__num {
  font-family: "Inter", sans-serif;
  font-size: clamp(60px, 5.556vw, 100px);
  font-size: clamp(6rem, 5.556vw, 10rem);
  line-height: 0.8;
  margin: 0 0 20px 0;
  margin: 0 0 2rem 0;
}

.p-serviceCard__name {
  margin: 0 0 20px 0;
  margin: 0 0 2rem 0;
  font-weight: 500;
}

.p-serviceCard__nameEn {
  font-family: "Inter", sans-serif;
  display: block;
  font-size: clamp(30px, 2.778vw, 50px);
  font-size: clamp(3rem, 2.778vw, 5rem);
  line-height: 1;
}

.p-serviceCard__nameJa {
  font-family: "Zen Kaku Gothic New", sans-serif;
  display: block;
}

.p-serviceCard__img {
  width: 100%;
  aspect-ratio: 2/3;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 45vw 45vw 0 0;
}

.p-serviceCard__default.off,
.p-serviceCard__img01.off,
.p-serviceCard__img02.off,
.p-serviceCard__img03.off,
.p-serviceCard__img04.off {
  display: none;
}

.p-serviceCard__default.on,
.p-serviceCard__img01.on,
.p-serviceCard__img02.on,
.p-serviceCard__img03.on,
.p-serviceCard__img04.on {
  display: block;
}

/* ====================================================================================================

    p-works

==================================================================================================== */
.p-worksCards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 60px;
  margin-top: 6rem;
}
.p-worksCard {
  width: calc(33.33333% - 2.66667rem);
}

.p-worksCard__a {
  -webkit-transition: 0.7s;
  transition: 0.7s;
}
.p-worksCard__a:hover {
  opacity: 0.8;
}
.p-worksCard__a:hover .p-worksCard__thumb {
  opacity: 0.8;
  -webkit-transition: 0.7s;
  transition: 0.7s;
  -webkit-transform: translateY(-1rem);
          transform: translateY(-1rem);
}

.p-worksCard:nth-child(1) {
  margin: 0 40px 0 0;
  margin: 0 4rem 0 0;
}

.p-worksCard:nth-child(2) {
  margin: 60px 40px 0 0;
  margin: 6rem 4rem 0 0;
}

.p-worksCard:nth-child(3) {
  margin: 120px 0 0 0;
  margin: 12rem 0 0 0;
}

.p-worksCard:nth-child(4) {
  margin: 0 40px 0 0;
  margin: 0 4rem 0 0;
}

.p-worksCard:nth-child(5) {
  margin: 60px 40px 0 0;
  margin: 6rem 4rem 0 0;
}

.p-worksCard:nth-child(6) {
  margin: 120px 0 0 0;
  margin: 12rem 0 0 0;
}

.p-worksCard:nth-child(7) {
  margin: 0 40px 0 0;
  margin: 0 4rem 0 0;
}

.p-worksCard:nth-child(8) {
  margin: 60px 40px 0 0;
  margin: 6rem 4rem 0 0;
}

.p-worksCard:nth-child(9) {
  margin: 120px 0 0 0;
  margin: 12rem 0 0 0;
}

.p-worksCard:nth-child(10) {
  margin: 0 40px 0 0;
  margin: 0 4rem 0 0;
}

.p-worksCard:nth-child(11) {
  margin: 60px 40px 0 0;
  margin: 6rem 4rem 0 0;
}

.p-worksCard:nth-child(12) {
  margin: 120px 0 0 0;
  margin: 12rem 0 0 0;
}

.p-worksCard__thumb {
  width: 100%;
  height: auto;
}

.p-worksCard__body {
  padding-top: 30px;
  padding-top: 3rem;
}

.p-worksCard__ymd {
  color: #999;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(13px, 0.972vw, 15px);
  font-size: clamp(1.3rem, 0.972vw, 1.5rem);
  line-height: 1;
}

.p-worksCard__title {
  font-weight: 500;
  color: #222;
  font-size: clamp(16px, 1.389vw, 20px);
  font-size: clamp(1.6rem, 1.389vw, 2rem);
}

.p-worksCard__ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 20px;
  margin-top: 2rem;
}

.p-worksCard__li {
  color: #999;
  border: 1px solid #999;
  border: 0.1rem solid #999;
  display: inline-block;
  padding: 0 1em;
  line-height: 1.6;
  border-radius: 3rem;
  font-size: clamp(13px, 0.972vw, 15px);
  font-size: clamp(1.3rem, 0.972vw, 1.5rem);
  margin: 10px 10px 0 0;
  margin: 1rem 1rem 0 0;
}

/* ========== .p-worksTax ========== */
.p-worksTax {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: -10px;
  margin-top: -1rem;
}

.p-worksTax + .p-worksTax {
  margin-top: 0;
}

.p-worksTax__li {
  margin: 10px 5px 0 5px;
  margin: 1rem 0.5rem 0 0.5rem;
}
.p-worksTax__link {
  display: inline-block;
  padding: 0 1.25em;
  border-radius: 10rem;
  color: #fff;
  font-size: clamp(13px, 0.972vw, 14px);
  font-size: clamp(1.3rem, 0.972vw, 1.4rem);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.p-worksTax__link:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #222;
  border-radius: 10rem;
  z-index: -2;
}
.p-worksTax__link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #444;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 10rem;
  z-index: -1;
}
.p-worksTax__link:hover {
  color: #fff;
}
.p-worksTax__link:hover:before {
  width: 100%;
}

@keyframes cinematic-camera {
  from {
    -webkit-perspective-origin: 60% 40%;
            perspective-origin: 60% 40%;
  }
  to {
    -webkit-perspective-origin: 40% 60%;
            perspective-origin: 40% 60%;
  }
  from, to {
    opacity: 0;
  }
  25%, 75% {
    opacity: 1;
  }
}
/* ========== .p-worksRelated ========== */
.p-worksRelated {
  text-align: center;
}
.p-worksRelated h3 {
  font-weight: 500;
  color: #222;
  font-size: clamp(16px, 1.389vw, 20px);
  font-size: clamp(1.6rem, 1.389vw, 2rem);
  display: inline-block;
  position: relative;
}
.p-worksRelated h3::before {
  content: "";
  display: block;
  width: 60px;
  width: 6rem;
  height: 1px;
  height: 0.1rem;
  position: absolute;
  left: -80px;
  left: -8rem;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #222;
  z-index: 10;
}
.p-worksRelated h3::after {
  content: "";
  display: block;
  width: 60px;
  width: 6rem;
  height: 1px;
  height: 0.1rem;
  position: absolute;
  right: -80px;
  right: -8rem;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #222;
  z-index: 10;
}

/* ====================================================================================================

    p-worksHero

==================================================================================================== */
/* ========== p-worksMv ========== */
.p-worksMv {
  -webkit-perspective: 1000px;
          perspective: 1000px;
  background: #FDE482;
}

/* ========== p-worksHero ========== */
.p-worksHero {
  background: #FDE482;
  position: relative;
}

.p-worksAnimation {
  background: #FDE482;
  overflow: hidden;
  height: 50vh;
  position: relative;
  padding: 80px 0 0 0;
  padding: 8rem 0 0 0;
}
.p-worksAnimation .cl-site {
  position: absolute;
  bottom: 30px;
  bottom: 3rem;
  right: 30px;
  right: 3rem;
  z-index: 20;
}
.p-worksAnimation .cl-site__a {
  display: inline-block;
  padding: 0.5em 1.25em;
  border-radius: 10rem;
  color: #fff;
  font-size: clamp(13px, 0.972vw, 14px);
  font-size: clamp(1.3rem, 0.972vw, 1.4rem);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.p-worksAnimation .cl-site__a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #222;
  border-radius: 10rem;
  z-index: -2;
}
.p-worksAnimation .cl-site__a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #444;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 10rem;
  z-index: -1;
}
.p-worksAnimation .cl-site__a:hover {
  color: #fff;
}
.p-worksAnimation .cl-site__a:hover:before {
  width: 100%;
}

.p-worksAnimation__main {
  width: 100%;
  max-width: 800px;
  max-width: 80rem;
  margin: 0 auto;
  z-index: 10;
  -webkit-animation: anim 10s forwards cubic-bezier(0.65, 0, 0.35, 1);
          animation: anim 10s forwards cubic-bezier(0.65, 0, 0.35, 1);
  -webkit-transform: translateY(-60rem);
          transform: translateY(-60rem);
}
@-webkit-keyframes anim {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(-60rem);
            transform: translateY(-60rem);
  }
}
@keyframes anim {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(-60rem);
            transform: translateY(-60rem);
  }
}
.p-worksAnimation__main > img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ====================================================================================================

    p-worksSingle

==================================================================================================== */
.p-worksSingle__head {
  margin-bottom: 60px;
  margin-bottom: 6rem;
  text-align: center;
}
.p-worksSingle__head h2 {
  font-size: clamp(30px, 2.778vw, 40px);
  font-size: clamp(3rem, 2.778vw, 4rem);
  font-weight: 500;
  position: relative;
}
.p-worksSingle__head span {
  display: block;
  color: #999;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(13px, 0.972vw, 15px);
  font-size: clamp(1.3rem, 0.972vw, 1.5rem);
  line-height: 1;
}

.p-worksSingle__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-worksSingle__left {
  width: calc(50% - 2rem);
}

.p-worksSingle__right {
  width: calc(50% - 2rem);
}

.p-worksSingle__dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #ddd;
  border-bottom: 0.1rem solid #ddd;
  padding: 20px 0;
  padding: 2rem 0;
}

.p-worksSingle__dl:first-child {
  border-top: 1px solid #ddd;
  border-top: 0.1rem solid #ddd;
}

.p-worksSingle__dt {
  width: 30%;
  font-weight: 600;
}

.p-worksSingle__dd {
  width: 70%;
  font-family: "Inter", "Zen Kaku Gothic New", sans-serif;
}

.p-worksSingle__a {
  color: #222;
  text-decoration: none;
  -webkit-transition: 0.7s;
  transition: 0.7s;
}
.p-worksSingle__a:hover {
  opacity: 0.7;
}

/* ====================================================================================================

    animation

==================================================================================================== */
/* ========== .icon-3d ========== */
.icon-3d {
  -webkit-animation: icon3d 200ms 10;
  animation: icon3d 200ms 10;
  z-index: 9999;
}
.icon-3d:hover {
  -webkit-animation: icon3d 200ms infinite;
  animation: icon3d 200ms infinite;
}

@-webkit-keyframes icon3d {
  0% {
    text-shadow: 0.5rem 0.4rem rgb(244, 67, 54), -0.5rem -0.6rem rgb(33, 150, 243);
  }
  25% {
    text-shadow: -0.5rem -0.6rem rgb(244, 67, 54), 0.5rem 0.4rem rgb(33, 150, 243);
  }
  50% {
    text-shadow: 0.5rem -0.4rem rgb(244, 67, 54), -0.8rem 0.4rem rgb(33, 150, 243);
  }
  75% {
    text-shadow: -0.8rem -0.4rem rgb(244, 67, 54), -0.5rem -0.4rem rgb(33, 150, 243);
  }
  100% {
    text-shadow: -0.5rem 0 rgb(244, 67, 54), 0.5rem -0.4rem rgb(33, 150, 243);
  }
}

@keyframes icon3d {
  0% {
    text-shadow: 0.5rem 0.4rem rgb(244, 67, 54), -0.5rem -0.6rem rgb(33, 150, 243);
  }
  25% {
    text-shadow: -0.5rem -0.6rem rgb(244, 67, 54), 0.5rem 0.4rem rgb(33, 150, 243);
  }
  50% {
    text-shadow: 0.5rem -0.4rem rgb(244, 67, 54), -0.8rem 0.4rem rgb(33, 150, 243);
  }
  75% {
    text-shadow: -0.8rem -0.4rem rgb(244, 67, 54), -0.5rem -0.4rem rgb(33, 150, 243);
  }
  100% {
    text-shadow: -0.5rem 0 rgb(244, 67, 54), 0.5rem -0.4rem rgb(33, 150, 243);
  }
}
/* ========== .fade-in ========== */
.fade-in {
  -webkit-animation: fade-in 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* ========== .fade-in-bottom-txt ========== */
.fade-in-bottom-txt {
  -webkit-animation: fade-in-bottom-txt 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
          animation: fade-in-bottom-txt 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  display: inline-block;
}

@-webkit-keyframes fade-in-bottom-txt {
  0% {
    -webkit-transform: translateY(5rem);
            transform: translateY(5rem);
    opacity: 0;
    color: orangered;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade-in-bottom-txt {
  0% {
    -webkit-transform: translateY(5rem);
            transform: translateY(5rem);
    opacity: 0;
    color: orangered;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
/* ========== .fade-in-bottom ========== */
.fade-in-bottom {
  -webkit-animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

@-webkit-keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(5rem);
    transform: translateY(5rem);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(5rem);
    transform: translateY(5rem);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
/* ========== .fade-in-right ========== */
.fade-in-right {
  -webkit-animation: fade-in-right 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in-right 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

@-webkit-keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(5rem);
    transform: translateX(5rem);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(5rem);
    transform: translateX(5rem);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
/* ========== .fade-in-left  ========== */
.fade-in-left {
  -webkit-animation: fade-in-left 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in-left 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

@-webkit-keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-5rem);
    transform: translateX(-5rem);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-5rem);
    transform: translateX(-5rem);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
/* ========== passing-block ========== */
.passing-block {
  width: 100%;
}
.passing-block .passing-bar {
  position: relative;
  display: block;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.passing-block .passing-bar:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: #222;
}
.passing-block .passing-remain {
  opacity: 0;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.passing-block.move .passing-bar:before {
  -webkit-animation: passing-bar 1s ease 0s 1 normal forwards;
  animation: passing-bar 1s ease 0s 1 normal forwards;
}
.passing-block.move .passing-remain {
  -webkit-animation: passing-remain 0s ease 0.5s 1 normal forwards;
  -webkit-animation: passing-remain 0s ease 0.5s 1 normal forwards;
  animation: passing-remain 0s ease 0.5s 1 normal forwards;
  animation: passing-remain 0s ease 0.5s 1 normal forwards;
}

@-webkit-keyframes passing-bar {
  0% {
    left: 0;
    right: auto;
    width: 0;
  }
  50% {
    left: 0;
    right: auto;
    width: 100%;
  }
  51% {
    left: auto;
    right: 0;
    width: 100%;
  }
  100% {
    left: auto;
    right: 0;
    width: 0;
  }
}
@keyframes passing-bar {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  51% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100%;
    width: 0;
  }
}
@-webkit-keyframes passing-remain {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes passing-remain {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* ========== passing-block ========== */
.passing-inlineblock {
  width: 100%;
}
.passing-inlineblock .passing-bar {
  position: relative;
  display: inline-block;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.passing-inlineblock .passing-bar:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: #222;
}
.passing-inlineblock .passing-remain {
  opacity: 0;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.passing-inlineblock.move .passing-bar:before {
  -webkit-animation: passing-bar 1s ease 0s 1 normal forwards;
  animation: passing-bar 1s ease 0s 1 normal forwards;
}
.passing-inlineblock.move .passing-remain {
  -webkit-animation: passing-remain 0s ease 0.5s 1 normal forwards;
  -webkit-animation: passing-remain 0s ease 0.5s 1 normal forwards;
  animation: passing-remain 0s ease 0.5s 1 normal forwards;
  animation: passing-remain 0s ease 0.5s 1 normal forwards;
}

@-webkit-keyframes passing-bar {
  0% {
    left: 0;
    right: auto;
    width: 0;
  }
  50% {
    left: 0;
    right: auto;
    width: 100%;
  }
  51% {
    left: auto;
    right: 0;
    width: 100%;
  }
  100% {
    left: auto;
    right: 0;
    width: 0;
  }
}
@keyframes passing-bar {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  51% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100%;
    width: 0;
  }
}
@-webkit-keyframes passing-remain {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes passing-remain {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* ========== scroll-down-box ========== */
.scroll-down-box {
  display: block;
  position: relative;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.scroll-down-box svg {
  fill: #222;
  mix-blend-mode: difference;
}

.scroll-down-box.alt svg {
  fill: #222;
  mix-blend-mode: difference;
}

.scroll-down-box .scroll-text {
  width: 100px;
  width: 10rem;
  height: auto;
  -webkit-animation: rotation 10s infinite linear;
  animation: rotation 10s infinite linear;
}

.scroll-down-box.alt .scroll-text {
  -webkit-animation: none;
  animation: none;
}

.scroll-down-box.alt:hover .scroll-text {
  -webkit-animation: rotation 10s infinite linear;
  animation: rotation 10s infinite linear;
}

.scroll-down-box .scroll-icon {
  width: 25px;
  width: 2.5rem;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.scroll-down-box.alt .scroll-icon {
  width: 35px;
  width: 3.5rem;
}

.scroll-down-box:hover .scroll-icon {
  -webkit-animation: move 1s infinite linear;
  animation: move 1s infinite linear;
}

.scroll-down-box.alt:hover .scroll-icon {
  -webkit-animation: none;
  animation: none;
}

@keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes move {
  0% {
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  25% {
    -webkit-transform: translate(-50%, -35%);
    transform: translate(-50%, -35%);
  }
  50% {
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  75% {
    -webkit-transform: translate(-50%, -65%);
    transform: translate(-50%, -65%);
  }
  100% {
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}
@-webkit-keyframes move {
  0% {
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  25% {
    -webkit-transform: translate(-50%, -40%);
    transform: translate(-50%, -40%);
  }
  50% {
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  75% {
    -webkit-transform: translate(-50%, -60%);
    transform: translate(-50%, -60%);
  }
  100% {
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}
/* ========== #page-top ========== */
#page-top {
  position: fixed;
  right: 10px;
  right: 1rem;
  bottom: 30px;
  bottom: 3rem;
  z-index: 2;
  opacity: 0;
  -webkit-transform: translateY(15rem);
          transform: translateY(15rem);
}

#page-top.UpMove {
  -webkit-animation: UpAnime 0.5s forwards;
          animation: UpAnime 0.5s forwards;
}

@-webkit-keyframes UpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(15rem);
            transform: translateY(15rem);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes UpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(15rem);
            transform: translateY(15rem);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
#page-top.DownMove {
  -webkit-animation: DownAnime 0.5s forwards;
          animation: DownAnime 0.5s forwards;
}

@-webkit-keyframes DownAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(15rem);
            transform: translateY(15rem);
  }
}

@keyframes DownAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(15rem);
            transform: translateY(15rem);
  }
}
#page-top a {
  display: block;
  width: 100px;
  width: 10rem;
  height: 100px;
  height: 10rem;
  color: #111;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 6px;
  font-size: 0.6rem;
  background: url("../img/dist/pagetop_1.png") no-repeat center;
  background-size: contain;
}

#page-top.floatAnime a {
  width: 100px;
  width: 10rem;
  height: 130px;
  height: 13rem;
  background: url("../img/dist/pagetop_2.png") no-repeat center;
  background-size: contain;
  -webkit-animation: floatAnime 2s linear infinite;
          animation: floatAnime 2s linear infinite;
  opacity: 0;
}

@-webkit-keyframes floatAnime {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 0;
  }
  25% {
    -webkit-transform: translateX(-0.6rem);
            transform: translateX(-0.6rem);
    opacity: 1;
  }
  50% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(0.6rem);
            transform: translateX(0.6rem);
    opacity: 1;
  }
}

@keyframes floatAnime {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 0;
  }
  25% {
    -webkit-transform: translateX(-0.6rem);
            transform: translateX(-0.6rem);
    opacity: 1;
  }
  50% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(0.6rem);
            transform: translateX(0.6rem);
    opacity: 1;
  }
}
#page-top span {
  position: absolute;
  bottom: -20px;
  bottom: -2rem;
  right: 20px;
  right: 2rem;
  color: #666;
}

/* ========== #mouse-stalker ========== */
#mouse-stalker {
  pointer-events: none;
  position: fixed;
  top: -10px;
  top: -1rem;
  left: -10px;
  left: -1rem;
  width: 20px;
  width: 2rem;
  height: 20px;
  height: 2rem;
  background: rgba(0, 0, 0, .5);
  border-radius: 50%;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  z-index: 999;
}
#mouse-stalker.is_active {
  top: -60px;
  top: -6rem;
  left: -60px;
  left: -6rem;
  width: 120px;
  width: 12rem;
  height: 120px;
  height: 12rem;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  background: radial-gradient(rgba(255, 199, 2, .9), rgba(255, 255, 255, 0) 70%);
}

.link-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
.link-items .link-item {
  display: block;
  padding: 20px;
  color: #fff;
  text-decoration: none;
  background-color: #000;
  border-radius: 50px;
}

/* ====================================================================================================

    swiper

==================================================================================================== */
.swiper {
  width: 100%;
}

.swiper-slide {
  width: 100%;
  height: 100%;
}
.swiper-slide .swiper-container {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.swiper-slide .swiper-container__left {
  width: calc(50% - 2rem);
  padding: 80px 0 80px 40px;
  padding: 8rem 0 8rem 4rem;
}
.swiper-slide .swiper-container__right {
  width: calc(50% - 2rem);
  padding: 0;
  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: flex-end;
}
.swiper-slide .swiper-container__right img {
  width: 100%;
  max-width: 500px;
  max-width: 50rem;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.swiper-slide .swiper-container h2 {
  font-family: "Inter", "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(40px, 4.861vw, 60px);
  font-size: clamp(4rem, 4.861vw, 6rem);
  font-weight: 500;
  margin-bottom: 40px;
  margin-bottom: 4rem;
  line-height: 1;
}
.swiper-slide .swiper-container h2 span {
  font-size: clamp(24px, 2.778vw, 40px);
  font-size: clamp(2.4rem, 2.778vw, 4rem);
  margin-left: 0.5em;
}

.swiper-pagination-bullet-active {
  background: #222 !important;
}

.swiper__ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 40px;
  margin-top: 4rem;
}

.swiper__li + .swiper__li {
  margin-left: 20px;
  margin-left: 2rem;
}

.swiper__link {
  display: inline-block;
  padding: 0.5em 1.25em;
  border-radius: 10rem;
  color: #fff;
  font-size: clamp(13px, 0.972vw, 14px);
  font-size: clamp(1.3rem, 0.972vw, 1.4rem);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.swiper__link:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #222;
  border-radius: 10rem;
  z-index: -2;
}
.swiper__link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #444;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 10rem;
  z-index: -1;
}
.swiper__link:hover {
  color: #fff;
}
.swiper__link:hover:before {
  width: 100%;
}

@keyframes cinematic-camera {
  from {
    -webkit-perspective-origin: 60% 40%;
            perspective-origin: 60% 40%;
  }
  to {
    -webkit-perspective-origin: 40% 60%;
            perspective-origin: 40% 60%;
  }
  from, to {
    opacity: 0;
  }
  25%, 75% {
    opacity: 1;
  }
}
/* ====================================================================================================

    align

==================================================================================================== */
.u-align-left {
  text-align: left;
}

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

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

/* ====================================================================================================

    margin

==================================================================================================== */
/* ========== margin-top ========== */
.u-mt0 {
  margin-top: 0;
}

.u-mt10 {
  margin-top: 10px;
  margin-top: 1rem;
}

.u-mt20 {
  margin-top: 20px;
  margin-top: 2rem;
}

.u-mt30 {
  margin-top: 30px;
  margin-top: 3rem;
}

.u-mt40 {
  margin-top: 40px;
  margin-top: 4rem;
}

.u-mt50 {
  margin-top: 50px;
  margin-top: 5rem;
}

.u-mt60 {
  margin-top: 60px;
  margin-top: 6rem;
}

.u-mt70 {
  margin-top: 70px;
  margin-top: 7rem;
}

.u-mt80 {
  margin-top: 80px;
  margin-top: 8rem;
}

.u-mt90 {
  margin-top: 90px;
  margin-top: 9rem;
}

.u-mt100 {
  margin-top: 100px;
  margin-top: 10rem;
}

/* ========== margin-right ========== */
.u-mr0 {
  margin-right: 0;
}

.u-mr10 {
  margin-right: 10px;
  margin-right: 1rem;
}

.u-mr20 {
  margin-right: 20px;
  margin-right: 2rem;
}

.u-mr30 {
  margin-right: 30px;
  margin-right: 3rem;
}

.u-mr40 {
  margin-right: 40px;
  margin-right: 4rem;
}

.u-mr50 {
  margin-right: 50px;
  margin-right: 5rem;
}

.u-mr60 {
  margin-right: 60px;
  margin-right: 6rem;
}

.u-mr70 {
  margin-right: 70px;
  margin-right: 7rem;
}

.u-mr80 {
  margin-right: 80px;
  margin-right: 8rem;
}

.u-mr90 {
  margin-right: 90px;
  margin-right: 9rem;
}

.u-mr100 {
  margin-right: 100px;
  margin-right: 10rem;
}

/* ========== margin-bottom ========== */
.u-mb0 {
  margin-bottom: 0;
}

.u-mb10 {
  margin-bottom: 10px;
  margin-bottom: 1rem;
}

.u-mb20 {
  margin-bottom: 20px;
  margin-bottom: 2rem;
}

.u-mb30 {
  margin-bottom: 30px;
  margin-bottom: 3rem;
}

.u-mb40 {
  margin-bottom: 40px;
  margin-bottom: 4rem;
}

.u-mb50 {
  margin-bottom: 50px;
  margin-bottom: 5rem;
}

.u-mb60 {
  margin-bottom: 60px;
  margin-bottom: 6rem;
}

.u-mb70 {
  margin-bottom: 70px;
  margin-bottom: 7rem;
}

.u-mb80 {
  margin-bottom: 80px;
  margin-bottom: 8rem;
}

.u-mb90 {
  margin-bottom: 90px;
  margin-bottom: 9rem;
}

.u-mb100 {
  margin-bottom: 100px;
  margin-bottom: 10rem;
}

/* ========== margin-left ========== */
.u-ml0 {
  margin-left: 0;
}

.u-ml10 {
  margin-left: 10px;
  margin-left: 1rem;
}

.u-ml20 {
  margin-left: 20px;
  margin-left: 2rem;
}

.u-ml30 {
  margin-left: 30px;
  margin-left: 3rem;
}

.u-m40 {
  margin-left: 40px;
  margin-left: 4rem;
}

.u-ml50 {
  margin-left: 50px;
  margin-left: 5rem;
}

.u-ml60 {
  margin-left: 60px;
  margin-left: 6rem;
}

.u-ml70 {
  margin-left: 70px;
  margin-left: 7rem;
}

.u-ml80 {
  margin-left: 80px;
  margin-left: 8rem;
}

.u-ml90 {
  margin-left: 90px;
  margin-left: 9rem;
}

.u-ml100 {
  margin-left: 100px;
  margin-left: 10rem;
}

/* ====================================================================================================

    padding

==================================================================================================== */
/* ========== padding-top ========== */
.u-pt0 {
  padding-top: 0;
}

.u-pt10 {
  padding-top: 10px;
  padding-top: 1rem;
}

.u-pt20 {
  padding-top: 20px;
  padding-top: 2rem;
}

.u-pt30 {
  padding-top: 30px;
  padding-top: 3rem;
}

.u-pt40 {
  padding-top: 40px;
  padding-top: 4rem;
}

.u-pt50 {
  padding-top: 50px;
  padding-top: 5rem;
}

.u-pt60 {
  padding-top: 60px;
  padding-top: 6rem;
}

.u-pt70 {
  padding-top: 70px;
  padding-top: 7rem;
}

.u-pt80 {
  padding-top: 80px;
  padding-top: 8rem;
}

.u-pt90 {
  padding-top: 90px;
  padding-top: 9rem;
}

.u-pt100 {
  padding-top: 100px;
  padding-top: 10rem;
}

/* ========== padding-right ========== */
.u-pr0 {
  padding-right: 0;
}

.u-pr10 {
  padding-right: 10px;
  padding-right: 1rem;
}

.u-pr20 {
  padding-right: 20px;
  padding-right: 2rem;
}

.u-pr30 {
  padding-right: 30px;
  padding-right: 3rem;
}

.u-pr40 {
  padding-right: 40px;
  padding-right: 4rem;
}

.u-pr50 {
  padding-right: 50px;
  padding-right: 5rem;
}

.u-pr60 {
  padding-right: 60px;
  padding-right: 6rem;
}

.u-pr70 {
  padding-right: 70px;
  padding-right: 7rem;
}

.u-pr80 {
  padding-right: 80px;
  padding-right: 8rem;
}

.u-pr90 {
  padding-right: 90px;
  padding-right: 9rem;
}

.u-pr100 {
  padding-right: 100px;
  padding-right: 10rem;
}

/* ========== padding-bottom ========== */
.u-pb0 {
  padding-bottom: 0;
}

.u-pb10 {
  padding-bottom: 10px;
  padding-bottom: 1rem;
}

.u-pb20 {
  padding-bottom: 20px;
  padding-bottom: 2rem;
}

.u-pb30 {
  padding-bottom: 30px;
  padding-bottom: 3rem;
}

.u-pb40 {
  padding-bottom: 40px;
  padding-bottom: 4rem;
}

.u-pb50 {
  padding-bottom: 50px;
  padding-bottom: 5rem;
}

.u-pb60 {
  padding-bottom: 60px;
  padding-bottom: 6rem;
}

.u-pb70 {
  padding-bottom: 70px;
  padding-bottom: 7rem;
}

.u-pb80 {
  padding-bottom: 80px;
  padding-bottom: 8rem;
}

.u-pb90 {
  padding-bottom: 90px;
  padding-bottom: 9rem;
}

.u-pb100 {
  padding-bottom: 100px;
  padding-bottom: 10rem;
}

/* ========== padding-left ========== */
.u-pl0 {
  padding-left: 0;
}

.u-pl10 {
  padding-left: 10px;
  padding-left: 1rem;
}

.u-pl20 {
  padding-left: 20px;
  padding-left: 2rem;
}

.u-pl30 {
  padding-left: 30px;
  padding-left: 3rem;
}

.u-pl40 {
  padding-left: 40px;
  padding-left: 4rem;
}

.u-pl50 {
  padding-left: 50px;
  padding-left: 5rem;
}

.u-pl60 {
  padding-left: 60px;
  padding-left: 6rem;
}

.u-pl70 {
  padding-left: 70px;
  padding-left: 7rem;
}

.u-pl80 {
  padding-left: 80px;
  padding-left: 8rem;
}

.u-pl90 {
  padding-left: 90px;
  padding-left: 9rem;
}

.u-pl100 {
  padding-left: 100px;
  padding-left: 10rem;
}

@media screen and (max-width: 767px) {
  body {
    line-height: 1.8;
    overflow-x: hidden;
  }
  body {
    min-width: 0;
    min-width: initial;
  }
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
  .l-section + .l-section {
    margin-top: 8rem;
  }
  .l-main {
    width: 100%;
    padding: 0 2rem;
  }
  .l-mainPage {
    width: 100%;
    padding: 0 2rem;
  }
  .l-header {
    padding: 2rem 1.5rem 2rem 2rem;
    background: rgba(255, 255, 255, .8);
    -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
  }
  .l-hero__left {
    display: none;
  }
  .l-hero__right {
    width: 100%;
    height: calc(100vh - 8rem);
    margin-top: 8rem;
  }
  .l-name {
    width: 100%;
    padding: 0 2rem 8rem 2rem;
  }
  .l-product {
    width: 100%;
    margin: 0;
    border-radius: 0 6rem 6rem 0;
  }
  a.sample {
    margin-top: -80px;
    padding-top: 80px;
  }
  .l-service {
    width: 100%;
    padding: 0 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0;
  }
  .l-service__head {
    width: 100%;
    margin-bottom: 4rem;
  }
  .l-service__body01 {
    width: calc(50% - 1rem);
  }
  .l-service__body02 {
    width: calc(50% - 1rem);
  }
  .l-service__body03 {
    width: calc(50% - 1rem);
  }
  .l-service__body04 {
    width: calc(50% - 1rem);
  }
  .l-service__body05 {
    display: none;
  }
  .l-works {
    padding: 8rem 2rem;
  }
  .l-blog {
    width: 100%;
    padding: 0 2rem;
  }
  .l-blog__left {
    width: 100%;
    padding-right: 0;
  }
  .l-blog__right {
    width: 100%;
    margin-top: 4rem;
  }
  .l-overview {
    width: 100%;
    padding: 0 2rem;
  }
  .l-overview__container {
    margin-top: 4rem;
  }
  .l-overview__left {
    width: 100%;
  }
  .l-overview__right {
    width: 100%;
    margin-top: 4rem;
  }
  .l-footer {
    padding: 4rem 0;
  }
  .l-pageheader {
    width: 100%;
    padding: 0 2rem;
  }
  .l-pageheader__title {
    font-size: 20vw;
  }
  .l-bread {
    bottom: 4rem;
  }
  .l-blogSingle {
    width: 100%;
    padding: 0 2rem;
  }
  .l-cta {
    margin-top: 8rem;
  }
  .l-cta .l-cta__contact--link .l-cta__contact {
    height: 30rem;
  }
  .l-cta .l-cta__contact--link .l-cta__contact .l-cta__contact--link-en {
    font-size: clamp(6rem, 6.944vw, 8rem);
  }
  .c-pagenavi {
    margin-top: 4rem;
  }
  .c-pagenavi {
    text-align: center;
  }
  .c-pagenavi__inner {
    display: block;
    padding: 1rem 0.5rem;
  }
  .c-pagenavi__scroll {
    overflow-x: auto;
    white-space: nowrap;
    overflow-scrolling: touch;
    -webkit-overflow-scrolling: touch;
  }
  .c-prevnext {
    margin-top: 4rem;
  }
  .c-sectionHeader {
    font-size: clamp(6rem, 6.944vw, 8rem);
  }
  .c-viewMore {
    margin-top: 4rem;
  }
  .c-viewMore__a {
    padding-right: 6rem;
    line-height: 4rem;
  }
  .c-viewMore__a:after {
    width: 4rem;
    height: 4rem;
  }
  .p-blogCard__a {
    padding: 2rem 0;
  }
  .p-blogCard__left {
    width: calc(50% - 1rem);
  }
  .p-blogCard__right {
    width: calc(50% - 1rem);
    padding-right: 3rem;
  }
  .p-blogSingle__head {
    margin-bottom: 4rem;
  }
  .p-blogSingle__title {
    font-size: clamp(2rem, 2.778vw, 4rem);
  }
  .p-blogSingle__body {
    padding-bottom: 4rem;
  }
  .p-contact__col1 {
    margin-top: 4rem;
  }
  .p-contact__col2 {
    width: 100%;
    margin-top: 4rem;
  }
  .p-contact {
    margin-top: -4rem;
  }
  .p-contact .p-contact__row + .p-contact__row {
    margin-top: 0;
  }
  .p-contact input[type=text],
  .p-contact input[type=email],
  .p-contact textarea {
    font-size: 1.6rem;
  }
  .p-contact select {
    font-size: 1.6rem;
    -webkit-appearance: none;
    -moz-appearance: none;
         appearance: none;
    color: #1a1a1a;
  }
  .p-footerNav__li {
    margin: 0 0.8rem;
    font-size: clamp(1.2rem, 0.972vw, 1.4rem);
  }
  .p-headerLogo {
    width: auto;
  }
  .p-headerLogo img {
    width: auto;
    height: 4rem;
  }
  .p-headerNav {
    display: none;
  }
  .p-hero__mv {
    border-radius: 0 0 0 6rem;
  }
  .p-hero__wrap {
    height: calc(100vh - 8rem);
    border-radius: 0 0 0 6rem;
  }
  .p-hero__video {
    height: calc(100vh - 8rem);
    border-radius: 0 0 0 6rem;
  }
  .p-hero__catch {
    left: 0;
    padding: 0 2rem;
  }
  .p-hero__tagline {
    font-size: clamp(2.8rem, 3vw, 5rem);
    letter-spacing: -0.1em;
  }
  .p-hero__h1 {
    margin-top: 2rem;
  }
  .p-productHero {
    height: 100%;
  }
  .p-productHero__inner {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .p-productHero__left {
    width: 100%;
    padding: 0 2rem 4rem 2rem;
  }
  .p-productHero__right {
    width: 100%;
  }
  .p-productHero__right img {
    height: auto;
    width: 70%;
    max-width: 50rem;
  }
  .p-productHero__title {
    margin-bottom: 2rem;
  }
  .p-productPrice__btn {
    width: 100%;
  }
  .p-productPrice__block01 {
    border-right: none;
    border-bottom: 0.1rem solid #ddd;
    padding: 0 0 4rem 0;
    width: 100%;
  }
  .p-productPrice__block02 {
    padding: 4rem 0 0 0;
    width: 100%;
  }
  .p-productPrice__num span {
    display: block;
    margin-top: 1rem;
    margin-left: 0;
  }
  .p-productFlex__left {
    width: 100%;
  }
  .p-productFlex__right {
    width: 100%;
    margin-top: 8rem;
  }
  .timeline-001__section {
    padding: 0 0 2rem 4rem;
  }
  .p-worksCards {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 4rem;
  }
  .p-worksCards.change .p-worksCard:nth-child(3) {
    display: none;
  }
  .p-worksCard {
    width: calc(50% - 1rem);
  }
  .p-worksCard__a:hover .p-worksCard__thumb {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .p-worksCard:nth-child(1) {
    margin: 0 0 0 0;
  }
  .p-worksCard:nth-child(2) {
    margin: 0 0 0 0;
  }
  .p-worksCard:nth-child(3) {
    margin: 4rem 0 0 0;
  }
  .p-worksCard:nth-child(4) {
    margin: 4rem 0 0 0;
  }
  .p-worksCard:nth-child(5) {
    margin: 4rem 0 0 0;
  }
  .p-worksCard:nth-child(6) {
    margin: 4rem 0 0 0;
  }
  .p-worksCard:nth-child(7) {
    margin: 4rem 0 0 0;
  }
  .p-worksCard:nth-child(8) {
    margin: 4rem 0 0 0;
  }
  .p-worksCard:nth-child(9) {
    margin: 4rem 0 0 0;
  }
  .p-worksCard:nth-child(10) {
    margin: 4rem 0 0 0;
  }
  .p-worksCard:nth-child(11) {
    margin: 4rem 0 0 0;
  }
  .p-worksCard:nth-child(12) {
    margin: 4rem 0 0 0;
  }
  .p-worksCard__body {
    padding-top: 2rem;
  }
  .p-worksCard__ul {
    margin-top: 1rem;
  }
  .p-worksCard__li {
    margin: 1rem 1rem 0 0;
    font-size: clamp(1.2rem, 0.972vw, 1.4rem);
  }
  .p-worksTax__li:first-child {
    width: 100%;
    text-align: center;
  }
  .p-worksAnimation {
    padding: 4rem 0 0 0;
  }
  .p-worksAnimation .cl-site {
    bottom: 2rem;
    right: 2rem;
  }
  .p-worksAnimation__main {
    -webkit-animation: anim 5s forwards cubic-bezier(0.65, 0, 0.35, 1);
            animation: anim 5s forwards cubic-bezier(0.65, 0, 0.35, 1);
  }
  @-webkit-keyframes anim {
    0% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
    100% {
      -webkit-transform: translateY(-10rem);
              transform: translateY(-10rem);
    }
  }
  @keyframes anim {
    0% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
    100% {
      -webkit-transform: translateY(-10rem);
              transform: translateY(-10rem);
    }
  }
  .p-worksAnimation__main > img {
    width: 80%;
    margin: 0 auto;
  }
  .p-worksSingle__head {
    margin-bottom: 4rem;
  }
  .p-worksSingle__left {
    width: 100%;
  }
  .p-worksSingle__right {
    width: 100%;
    margin-top: 4rem;
  }
  #page-top a {
    width: 8rem;
  }
  #page-top.floatAnime a {
    width: 8rem;
  }
  #mouse-stalker {
    display: none;
  }
  .swiper-slide .swiper-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .swiper-slide .swiper-container__left {
    width: 100%;
    padding: 0 2rem 6rem 2rem;
  }
  .swiper-slide .swiper-container__right {
    width: 100%;
    padding: 1rem 0 0 0;
  }
  .swiper-slide .swiper-container__right img {
    width: 70%;
  }
  .swiper-slide .swiper-container h2 {
    margin-bottom: 2rem;
  }
  .swiper__ul {
    margin-top: 2rem;
  }
  .swiper__li + .swiper__li {
    margin-left: 1rem;
  }
}

@media screen and (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
  .p-drawer {
    display: none;
  }
}

@media screen and (min-width: 1101px) and (max-width: 1200px) {
  .p-hero__scroll {
    max-width: 9rem;
  }
}

@media screen and (min-width: 1001px) and (max-width: 1100px) {
  .p-hero__scroll {
    max-width: 8.5rem;
  }
}

@media screen and (min-width: 901px) and (max-width: 1000px) {
  .p-hero__scroll {
    max-width: 8rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 900px) {
  .p-hero__scroll {
    max-width: 7.5rem;
  }
}
/*# sourceMappingURL=style.css.map */
