@charset "UTF-8";
/* -------------------------------------
    Foundation
------------------------------------- */
/* -------------------------------------
    Font Install
------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
/* -------------------------------------
    Reset
------------------------------------- */
* {
  min-height: 0;
}

body {
  margin: 0;
  overflow-x: hidden;
}

main {
  overflow-x: hidden;
}

ul,
ol,
li,
dl,
dt,
dd {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a {
  font-size: inherit;
  font-weight: normal;
  margin: 0;
}

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

button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* -------------------------------------
    Basic Style
------------------------------------- */
* {
  box-sizing: border-box;
}

body {
  font-size: var(--font-size_base);
  font-family: var(--font-family_jp);
  letter-spacing: 0.05em;
  color: var(--color_white);
  background-color: var(--color_black);
  height: -webkit-fill-available;
  min-height: 100svh;
}

main {
  min-height: calc(100svh - 470px);
}

a,
button {
  cursor: pointer;
  transition: var(--transition_300);
}
a:hover,
button:hover {
  opacity: 0.7;
}

fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

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

/* -------------------------------------
    Custom Properties
------------------------------------- */
:root {
  /* Color -------------------- */
  --color_theme: linear-gradient(
      90deg,
      #315CD2 0%,
      #ED7EB9 100%
  );
  --color_theme_vartical: linear-gradient(
      180deg,
      #315CD2 0%,
      #ED7EB9 100%
  );
  --color_white: #FFFFFF;
  --color_black: #000000;
  --color_gray: #D9D9D9;
  --color_gray-dark: #303030;
  --color_alert: #D24017;
  /* Font --------------------- */
  --font-size_base: clamp(14px,1.83vw,16px);
  --font-size_lv1: clamp(24px, 3.13vw, 30px);
  --font-size_lv2: clamp(18px, 2.35vw, 24px);
  --font-size_lv3: clamp(16px, 2.09vw, 18px);
  --font-size_lv4: 14px;
  --font-size_lv5: 12px;
  --font-size_en-lv1: clamp(40px, 5.22vw, 46px);
  --font-size_en-lv2: clamp(24px, 3.13vw, 30px);
  --font-size_en-lv3: clamp(20px, 2.61vw, 24px);
  --font-size_header-nav_PC: 16px;
  --font-size_header-nav_SP: 20px;
  --font-size_footer-nav: 16px;
  --font-family_jp: "Noto Sans JP", sans-serif;
  --font-family_en: "Inter", sans-serif;
  /* Spacer --------------------- */
  --spacer_lv1: clamp(75px, 9.78vw, 90px);
  --spacer_lv2: clamp(40px, 5.22vw, 60px);
  --spacer_lv3: clamp(30px, 3.91vw, 40px);
  --spacer_lv4: 15px;
  /* Aspect -------------------- */
  --aspect_base: 4 / 3;
  --aspect_vartical: 3 / 4;
  /* Animation   -------------- */
  --transition_300: 0.3s ease-in-out;
  --transition_1000: 1s ease-in-out;
}

/* -------------------------------------
    Object
------------------------------------- */
.u-mt_lv1 {
  margin-top: var(--spacer_lv1);
}

.u-mt_lv2 {
  margin-top: var(--spacer_lv2);
}

.u-mt_lv3 {
  margin-top: var(--spacer_lv3);
}

.u-mt_lv4 {
  margin-top: var(--spacer_lv4);
}

.u-sp {
  display: none;
}
@media (max-width: 767px) {
  .u-sp {
    display: block;
  }
}

.fadein {
  opacity: 0;
}
.fadein.is-show {
  animation: 1s fadeIn ease forwards;
}

@keyframes fadeIn {
  0% {
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 順番表示 (例 "u-fade order") */
.order {
  opacity: 0;
}

.order.is-show:nth-child(1) {
  animation: 1s fadeIn 0.1s ease forwards;
}

.order.is-show:nth-child(2) {
  animation: 1s fadeIn 0.2s ease forwards;
}

.order.is-show:nth-child(3) {
  animation: 1s fadeIn 0.3s ease forwards;
}

.order.is-show:nth-child(4) {
  animation: 1s fadeIn 0.4s ease forwards;
}

.order.is-show:nth-child(5) {
  animation: 1s fadeIn 0.5s ease forwards;
}

.order.is-show:nth-child(6) {
  animation: 1s fadeIn 0.6s ease forwards;
}

.order.is-show:nth-child(7) {
  animation: 1s fadeIn 0.7s ease forwards;
}

.order.is-show:nth-child(8) {
  animation: 1s fadeIn 0.8s ease forwards;
}

.order.is-show:nth-child(9) {
  animation: 1s fadeIn 0.9s ease forwards;
}

.order.is-show:nth-child(10) {
  animation: 1s fadeIn 1s ease forwards;
}

.order.is-show:nth-child(11) {
  animation: 1s fadeIn 1.1s ease forwards;
}

.order.is-show:nth-child(12) {
  animation: 1s fadeIn 1.2s ease forwards;
}

.order.is-show:nth-child(13) {
  animation: 1s fadeIn 1.3s ease forwards;
}

.order.is-show:nth-child(14) {
  animation: 1s fadeIn 1.4s ease forwards;
}

.order.is-show:nth-child(15) {
  animation: 1s fadeIn 1.5s ease forwards;
}

.order.is-show:nth-child(16) {
  animation: 1s fadeIn 1.6s ease forwards;
}

.order.is-show:nth-child(17) {
  animation: 1s fadeIn 1.7s ease forwards;
}

.order.is-show:nth-child(18) {
  animation: 1s fadeIn 1.8s ease forwards;
}

.order.is-show:nth-child(19) {
  animation: 1s fadeIn 1.9s ease forwards;
}

/* -------------------------------------
    Component
------------------------------------- */
/* -------------------------------------
    Atoms
------------------------------------- */
.a-nav_header {
  font-family: var(--font-family_en);
  font-size: var(--font-size_header-nav_PC);
  font-weight: 600;
}

.a-hamburger {
  display: none;
  width: 40px;
  height: 16px;
  position: relative;
  z-index: 50;
}
@media (max-width: 960px) {
  .a-hamburger {
    display: block;
  }
}
.a-hamburger span {
  display: block;
  height: 2px;
  background: var(--color_white);
  position: absolute;
  right: 0;
  transition: var(--transition_300);
}
.a-hamburger span:nth-child(1) {
  top: 0;
  width: 100%;
}
.a-hamburger span:nth-child(2) {
  top: 100%;
  width: 60%;
}
.a-hamburger.active span:nth-child(1) {
  top: 50%;
  transform: rotate(45deg);
}
.a-hamburger.active span:nth-child(2) {
  top: 50%;
  width: 100%;
  transform: rotate(-45deg);
}

/* -------------------------------------
    Molecules
------------------------------------- */
@media (max-width: 960px) {
  .m-nav_header {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color_black);
  }
  .m-nav_header.active {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.m-nav_header ul {
  display: flex;
  gap: 40px;
}
@media (max-width: 960px) {
  .m-nav_header ul {
    flex-direction: column;
    font-size: var(--font-size_header-nav_SP);
  }
}

/* -------------------------------------
    Organisms
------------------------------------- */
.o-header {
  width: 100%;
  height: 70px;
  padding: 20px;
  background-color: var(--color_black);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* -------------------------------------
    Atoms
------------------------------------- */
.a-nav_footer {
  font-family: var(--font-family_en);
  font-size: var(--font-size_footer-nav);
  font-weight: 600;
}

.a-copylight {
  font-family: var(--font-family_en);
  font-size: 10px;
  text-align: center;
}

/* -------------------------------------
    Molecules
------------------------------------- */
.m-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--spacer_lv2);
  margin-bottom: 120px;
}
@media (max-width: 960px) {
  .m-footer {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 80px;
  }
}
.m-footer ul {
  display: flex;
  gap: var(--spacer_lv3);
}
@media (max-width: 960px) {
  .m-footer ul {
    flex-direction: column;
    gap: 20px;
  }
}

/* -------------------------------------
    Organisms
------------------------------------- */
.o-footer {
  padding: 220px 24px 10px;
  position: relative;
}
@media (max-width: 960px) {
  .o-footer {
    padding: 180px 50px 10px;
  }
}

/* -------------------------------------
    Atoms
------------------------------------- */
img {
  width: 100%;
}

.a-logo_main {
  z-index: 50;
  width: 120px;
  display: block;
}

.a-thumbnail {
  aspect-ratio: var(--aspect_base);
  -o-object-fit: cover;
     object-fit: cover;
}

/* -------------------------------------
    Atoms
------------------------------------- */
.a-text_lv1 {
  font-size: var(--font-size_lv1);
  font-weight: 600;
}

.a-text_lv2 {
  font-size: var(--font-size_lv2);
  font-weight: 600;
}

.a-description {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: var(--color_gray);
  font-size: var(--font-size_lv5);
  font-weight: 500;
}

.a-text_center {
  text-align: center;
}
@media (max-width: 767px) {
  .a-text_center {
    text-align: left;
  }
}

.a-text_right {
  text-align: right;
}

.a-link {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* -------------------------------------
    Atoms
------------------------------------- */
.a-title_lv1 {
  font-size: var(--font-size_lv1);
  font-weight: 700;
}
.a-title_lv1.sideline {
  position: relative;
  padding-left: 20px;
}
.a-title_lv1.sideline:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 100%;
  background: var(--color_white);
}

.a-title_lv2 {
  font-size: var(--font-size_lv2);
  font-weight: 700;
}
.a-title_lv2.en {
  font-size: var(--font-size_en-lv2);
  font-family: var(--font-family_en);
}
.a-title_lv2.underline {
  border-bottom: solid 2px;
  -o-border-image: var(--color_theme) 1;
     border-image: var(--color_theme) 1;
  padding-bottom: var(--spacer_lv4);
}
.a-title_lv2.underline.white {
  -o-border-image: var(--color_white) 1;
     border-image: var(--color_white) 1;
}
.a-title_lv2.center {
  text-align: center;
}

.a-title_lv3 {
  font-size: var(--font-size_lv3);
  font-weight: 700;
}
.a-title_lv3.en {
  font-size: var(--font-size_en-lv3);
  font-family: var(--font-family_en);
}
.a-title_lv3.center {
  text-align: center;
}

.a-title_long {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-weight: 500;
}
.a-title_long.row1 {
  -webkit-line-clamp: 1;
  font-weight: 400;
}
@media (max-width: 767px) {
  .a-title_long.row1 {
    -webkit-line-clamp: 2;
  }
}

/* -------------------------------------
    Molecules
------------------------------------- */
.m-title .en {
  font-size: var(--font-size_en-lv1);
  font-family: var(--font-family_en);
  font-weight: 800;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: var(--spacer_lv4);
}
.m-title .jp {
  font-size: var(--font-size_lv4);
  display: flex;
  align-items: center;
  gap: 20px;
}
.m-title .jp:after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: var(--color_theme);
}
.m-title.center {
  text-align: center;
}
.m-title.center .jp {
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}

.m-title_lv2 .en {
  font-size: var(--font-size_en-lv2);
  font-family: var(--font-family_en);
  font-weight: 700;
  display: block;
  margin-bottom: var(--spacer_lv4);
}
.m-title_lv2 .jp {
  font-size: var(--font-size_lv4);
}

/* -------------------------------------
    Atoms
------------------------------------- */
.a-button {
  width: -moz-fit-content;
  width: fit-content;
  min-width: 200px;
  height: 50px;
  color: var(--color_white);
  background: var(--color_theme);
  font-family: var(--font-family_en);
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
}
.a-button:hover {
  opacity: 0.5;
  letter-spacing: 0.1em;
}
.a-button.secondary {
  background: var(--color_black);
  border: 2px solid;
  -o-border-image: var(--color_theme) 1;
     border-image: var(--color_theme) 1;
}
.a-button.disabled {
  opacity: 70;
  pointer-events: none;
}

/* -------------------------------------
    Atoms
------------------------------------- */
.a-category {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 6px 15px;
  border-radius: 30px;
  color: var(--color_black);
  background: var(--color_white);
  font-size: var(--font-size_lv5);
  font-weight: 500;
}
.a-category.opossite {
  color: var(--color_white);
  background: var(--color_black);
}
.a-category.square {
  border-radius: 0;
  padding: 4px 15px;
}

.a-tag {
  padding: 4px 8px;
  border: 1px solid var(--color_gray);
  border-radius: 2px;
  font-size: var(--font-size_lv5);
  font-weight: 500;
  color: var(--color_gray);
}

/* -------------------------------------
    Molecules
------------------------------------- */
.m-tag {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* -------------------------------------
    Atoms
------------------------------------- */
/* -------------------------------------
    Molecules
------------------------------------- */
.m-card .category,
.m-card .title,
.m-card .tag {
  margin-top: var(--spacer_lv4);
}
.m-card .description {
  margin-top: 10px;
}
.m-card_client .thumbnail {
  position: relative;
}
.m-card_client .category {
  position: absolute;
  top: 4px;
  right: 4px;
}

/* -------------------------------------
    Organisms
------------------------------------- */
/* -------------------------------------
    Atoms
------------------------------------- */
.a-required {
  padding: 2px 4px;
  background: var(--color_alert);
  font-size: var(--font-size_lv5);
}

.a-support-text {
  color: #a1a1a1;
}

.a-input,
.a-textarea {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid var(--color_gray);
  border-radius: 4px;
}

.a-textarea {
  height: 200px;
}

.required {
  display: flex;
  align-items: center;
  gap: 10px;
}
.required::after {
  display: block;
  content: "必須";
  line-height: 1;
  padding: 2px 4px;
  background: var(--color_alert);
  font-size: var(--font-size_lv5);
  width: -moz-fit-content;
  width: fit-content;
}

/* -------------------------------------
    Molecules
------------------------------------- */
.m-form .a-input,
.m-form .a-textarea {
  margin-top: 10px;
}
.m-form .a-input.error,
.m-form .a-textarea.error {
  border: 2px solid var(--color_alert);
}
.m-form .error-message {
  margin-top: 5px;
  color: var(--color_alert);
  font-size: var(--font-size_lv5);
}
.m-form dt {
  margin-top: var(--spacer_lv3);
  display: flex;
  align-items: center;
  gap: 10px;
}
.m-form div:first-child dt {
  margin-top: 60px;
}
.m-form dd > span {
  margin-top: 10px;
  display: block;
}
.m-form .recaptcha {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}
.m-form .a-button {
  margin: var(--spacer_lv2) auto 0;
  margin-top: 80px;
}
@media (max-width: 767px) {
  .m-form .a-button {
    margin-top: 40px;
  }
}

/* -------------------------------------
    Organisms
------------------------------------- */
.o-form .m-form {
  margin-top: var(--spacer_lv3);
}
.o-form .button {
  margin-top: var(--spacer_lv2);
}

/* -------------------------------------
    Atoms
------------------------------------- */
.a-dt {
  width: 25%;
  border-right: 1px solid var(--color_white);
}
@media (max-width: 767px) {
  .a-dt {
    width: -moz-fit-content;
    width: fit-content;
    padding-right: 20px;
  }
}

.a-dd {
  width: 75%;
}
@media (max-width: 767px) {
  .a-dd {
    width: 100%;
  }
}

/* -------------------------------------
    Molecules
------------------------------------- */
.m-dl_item {
  display: flex;
  gap: 30px;
  border-bottom: 1px solid var(--color_white);
  padding: 20px;
}
.m-dl_item:first-child {
  border-top: 1px solid var(--color_white);
}
@media (max-width: 767px) {
  .m-dl_item {
    flex-direction: column;
    gap: 15px;
    padding: 15px 8px;
  }
}

.m-list_disc li {
  list-style: disc;
  list-style-position: outside;
  margin-left: 20px;
}

/* -------------------------------------
    Atoms
------------------------------------- */
.time {
  position: relative;
  padding-right: var(--spacer_lv4);
  line-height: 1;
}
.time:after {
  content: "";
  width: 1px;
  height: 20px;
  background: var(--color_white);
  position: absolute;
  top: 0;
  right: 0;
}

/* -------------------------------------
    Molecules
------------------------------------- */
.m-news {
  border-bottom: 1px solid var(--color_white);
  padding: 24px 0;
}
.m-news:first-child {
  border-top: 1px solid var(--color_white);
}
@media (max-width: 767px) {
  .m-news {
    padding: 16px 0;
  }
  .m-news article {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* -------------------------------------
    Atoms
------------------------------------- */
.a-breadcrumb {
  font-family: var(--font-family_en);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* -------------------------------------
    Molecules
------------------------------------- */
.m-breadcrumb {
  display: flex;
  gap: 5px;
  font-size: var(--font-size_lv5);
}
.m-breadcrumb li {
  display: flex;
  align-items: center;
  gap: 5px;
}
.m-breadcrumb li::after {
  content: ">";
  font-size: inherit;
}
.m-breadcrumb li:last-child::after {
  display: none;
}
.m-breadcrumb li:last-child .a-breadcrumb {
  text-decoration: none;
}

/* -------------------------------------
    Atoms
------------------------------------- */
.a-pager {
  font-family: var(--font-family_en);
}
.a-pager.current {
  display: inline-block;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  text-align: center;
  line-height: 36px;
  background: var(--color_theme);
}
.a-pager.prev::before, .a-pager.next::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-bottom: 2px solid var(--color_white);
}
.a-pager.prev::before {
  border-left: 2px solid var(--color_white);
  transform: rotate(45deg);
}
.a-pager.next::after {
  border-right: 2px solid var(--color_white);
  transform: rotate(-45deg);
}

/* -------------------------------------
    Molecules
------------------------------------- */
.m-pager {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* -------------------------------------
    Atoms
------------------------------------- */
.a-logo_loading {
  width: 320px;
}
@media (max-width: 767px) {
  .a-logo_loading {
    width: 160px;
  }
}

/* -------------------------------------
    Molecules
------------------------------------- */
.m-loading {
  width: 100%;
  height: 100svh;
  background: var(--color_black);
  z-index: 1000;
  position: fixed;
  transition: var(--transition_1000);
  display: flex;
  align-items: center;
  justify-content: center;
}

.loaded {
  opacity: 0;
  visibility: hidden;
}

/* -------------------------------------
    Atoms
------------------------------------- */
.a-scroll-line {
  height: 150px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .a-scroll-line {
    height: 120px;
  }
}
.a-scroll-line .line-flex {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.a-scroll-line .line-flex span {
  height: 100%;
  width: 1px;
  flex-shrink: 0;
  background-color: white;
}
.a-scroll-line .line-flex span:nth-child(even) {
  background-color: transparent;
}

.animation-bottom-to,
.animation-top-to {
  animation-duration: 6s;
  animation-timing-function: linear;
  animation-direction: normal;
  animation-iteration-count: infinite;
}

.animation-bottom-to {
  animation-name: bottom-to;
}

@keyframes bottom-to {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-400%);
  }
}
.animation-top-to {
  animation-name: top-to;
}

@keyframes top-to {
  0% {
    transform: translateY(-400%);
  }
  100% {
    transform: translateY(0%);
  }
}
.a-scroll-text {
  font-family: var(--font-family_en);
  font-size: var(--font-size_lv5);
  animation: pulse 2s infinite;
  writing-mode: vertical-rl;
  margin-top: 10px;
}
.a-scroll-text.top {
  transform: rotate(180deg);
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
/* -------------------------------------
    Molecules
------------------------------------- */
.m-scroll-effect {
  position: absolute;
  z-index: 30;
}
.m-scroll-effect.top {
  left: 30px;
  bottom: 30px;
}
@media (max-width: 767px) {
  .m-scroll-effect.top {
    left: 20px;
  }
}
.m-scroll-effect.bottom {
  right: 30px;
  top: 0;
}
@media (max-width: 767px) {
  .m-scroll-effect.bottom {
    right: 20px;
  }
}

/* -------------------------------------
    Page
------------------------------------- */
/* -------------------------------------
    KV
------------------------------------- */
.p-section_kv {
  width: 100%;
  height: 100svh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.p-section_kv .p-container_kv {
  width: 85%;
  margin: auto;
  padding: 0 20px;
}
@media (max-width: 960px) {
  .p-section_kv .p-container_kv {
    width: 100%;
  }
}
.p-section_kv .p-container_kv img {
  width: 65%;
  min-width: 250px;
}

/* -------------------------------------
    SERVICE
------------------------------------- */
.p-list_service {
  position: relative;
  padding: 0 0 20px 40px;
}
@media (max-width: 960px) {
  .p-list_service {
    padding: 0 0 20px 30px;
  }
}
.p-list_service:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 100%;
  background: var(--color_theme_vartical);
}
.p-list_service p {
  margin-top: var(--spacer_lv4);
}

/* -------------------------------------
    MESSAGE
------------------------------------- */
.p-flex_message {
  margin-top: var(--spacer_lv3);
  display: flex;
  gap: var(--spacer_lv3);
}
@media (max-width: 767px) {
  .p-flex_message {
    flex-direction: column;
    align-items: center;
  }
}
.p-flex_message .image {
  width: 225px;
}
.p-flex_message .text {
  width: calc(100% - 225px - var(--spacer_lv3));
}
@media (max-width: 767px) {
  .p-flex_message .text {
    width: 100%;
  }
}

/* -------------------------------------
    CORE VALUE - 6MIND
------------------------------------- */
.p-flex_6mind {
  display: flex;
  align-items: center;
  gap: var(--spacer_lv3);
}
@media (max-width: 767px) {
  .p-flex_6mind {
    flex-direction: column;
  }
}
.p-flex_6mind li {
  width: 290px;
  margin-top: var(--spacer_lv1);
}
.p-flex_6mind li:first-child {
  margin-top: 0;
}
@media (max-width: 767px) {
  .p-flex_6mind li {
    width: 100%;
    margin-top: var(--spacer_lv2);
  }
}
.p-flex_6mind li .text {
  margin-top: var(--spacer_lv4);
}
.p-flex_6mind .image {
  width: calc(100% - 580px - var(--spacer_lv3) * 2);
}
@media (max-width: 767px) {
  .p-flex_6mind .image {
    width: 100%;
  }
}

/* -------------------------------------
    BUSINESS PRODUCE
------------------------------------- */
.p-image_business {
  width: 500px;
  margin: auto;
}
@media (max-width: 767px) {
  .p-image_business {
    width: 100%;
  }
}

.p-title_business {
  display: flex;
  gap: 20px;
  align-items: center;
}
.p-title_business img {
  width: 80px;
}
.p-title_business p {
  margin-top: var(--spacer_lv4);
}

.p-list_business {
  margin-top: var(--spacer_lv3);
}
.p-list_business li {
  border: solid 1px var(--color_white);
  padding: 10px;
  text-align: center;
}
.p-list_business p {
  margin-top: var(--spacer_lv4);
}

/* -------------------------------------
    CONTEXT DESIGN
------------------------------------- */
.p-list_context {
  margin-top: var(--spacer_lv2);
}
.p-list_context li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacer_lv4);
}
.p-list_context li img {
  width: 120px;
}
.p-list_context li span {
  width: 100%;
  height: 2px;
  background: var(--color_white);
}

/* -------------------------------------
    CONTACT US
------------------------------------- */
.p-bg_contact {
  background: linear-gradient(90deg, rgba(49, 92, 210, 0.5) 0%, rgba(237, 126, 185, 0.5) 100%);
  margin-top: var(--spacer_lv1);
}
.p-bg_contact .text,
.p-bg_contact .button {
  margin-top: var(--spacer_lv2);
}

.crf-ckeditor_inner h1,
.crf-ckeditor_inner h2,
.crf-ckeditor_inner h3,
.crf-ckeditor_inner h4,
.crf-ckeditor_inner h5,
.crf-ckeditor_inner p,
.crf-ckeditor_inner a,
.crf-ckeditor_inner ul,
.crf-ckeditor_inner ol,
.crf-ckeditor_inner dl,
.crf-ckeditor_inner li {
  color: inherit;
}
.crf-ckeditor_inner table {
  border-collapse: collapse;
  border-spacing: 0;
  border: 1px solid white;
}
.crf-ckeditor_inner td,
.crf-ckeditor_inner th {
  border: 1px solid white;
  padding: 0.5em 1em;
}

.p-body_article h2 {
  font-size: var(--font-size_lv1);
  font-weight: 700;
  position: relative;
  padding: 0 0 5px 30px;
  margin-top: var(--spacer_lv2);
}
.p-body_article h2:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 100%;
  background: var(--color_white);
}
.p-body_article h3 {
  font-size: var(--font-size_lv2);
  font-weight: 700;
  border-bottom: solid 2px;
  -o-border-image: var(--color_theme) 1;
     border-image: var(--color_theme) 1;
  padding-bottom: var(--spacer_lv4);
  -o-border-image: var(--color_white) 1;
     border-image: var(--color_white) 1;
  margin-top: var(--spacer_lv2);
}
.p-body_article h4 {
  font-size: var(--font-size_lv3);
  font-weight: 700;
  margin-top: var(--spacer_lv2);
}
.p-body_article p {
  margin-top: 20px;
}
.p-body_article a {
  text-decoration: underline;
}
.p-body_article a:hover {
  text-decoration: none;
}
.p-body_article ul,
.p-body_article ol {
  margin-top: 20px;
}
.p-body_article ul li,
.p-body_article ol li {
  list-style-position: inside;
}
.p-body_article ul li {
  list-style-type: disc;
}
.p-body_article ol li {
  list-style-type: decimal;
}
.p-body_article table {
  margin-top: 20px;
}
.p-body_article table caption {
  margin-bottom: 7px;
}

.p-bg_description {
  background: var(--color_gray-dark);
  padding: 20px;
}

.p-box_border {
  border: solid 1px var(--color_white);
  padding: 20px;
}

/* -------------------------------------
    Layout
------------------------------------- */
.l-section {
  padding: var(--spacer_lv1) 0;
}

.l-container {
  width: 100%;
  max-width: 1120px;
  margin: auto;
  padding: 0 20px;
}
.l-container.smaller {
  max-width: 880px;
}
.l-container.smallest {
  max-width: 600px;
}
.l-container.smaller, .l-container.smallest {
  padding: 0;
}
@media (max-width: 767px) {
  .l-container.smaller, .l-container.smallest {
    max-width: 100%;
  }
}

/* -------------------------------------
    Flex box
------------------------------------- */
.l-flex {
  display: flex;
  align-items: center;
  /* button layout -------------------- */
  /* wrap -------------------- */
  /* gap -------------------- */
  /* item width (PC) -------------------- */
}
.l-flex.center {
  justify-content: center;
}
.l-flex.right {
  justify-content: end;
}
.l-flex.column2, .l-flex.column3, .l-flex.column4 {
  flex-wrap: wrap;
}
.l-flex.gap_lv1 {
  gap: var(--spacer_lv2) var(--spacer_lv1);
}
.l-flex.gap_lv2 {
  gap: var(--spacer_lv2);
}
.l-flex.gap_lv3 {
  gap: var(--spacer_lv3);
}
.l-flex.gap_lv4 {
  gap: var(--spacer_lv4);
}
.l-flex.gap_lv1 .l-item_col2 {
  width: calc((100% - var(--spacer_lv1)) / 2);
}
@media (max-width: 767px) {
  .l-flex.gap_lv1 .l-item_col2 {
    width: 100%;
  }
}
.l-flex.gap_lv2 .l-item_col3 {
  width: calc((100% - var(--spacer_lv2) * 2) / 3);
}
@media (max-width: 767px) {
  .l-flex.gap_lv2 .l-item_col3 {
    width: 100%;
  }
}
.l-flex.gap_lv3 .l-item_col3 {
  width: calc((100% - var(--spacer_lv3) * 2) / 3);
}
@media (max-width: 767px) {
  .l-flex.gap_lv3 .l-item_col3 {
    width: 100%;
  }
}
.l-flex.gap_lv3 .l-item_col2 {
  width: calc((100% - var(--spacer_lv3)) / 2);
}
@media (max-width: 767px) {
  .l-flex.gap_lv3 .l-item_col2 {
    width: 100%;
  }
}
.l-flex.gap_lv4 .l-item_col2 {
  width: calc((100% - var(--spacer_lv4)) / 2);
}
.l-flex.gap_lv4 .l-item_col4 {
  width: calc((100% - var(--spacer_lv4) * 3) / 4);
}
@media (max-width: 767px) {
  .l-flex.gap_lv4 .l-item_col4 {
    width: calc((100% - var(--spacer_lv4)) / 2);
  }
}

.l-index .l-contents {
  margin-top: var(--spacer_lv2);
}
.l-index .l-button {
  margin-top: var(--spacer_lv2);
}
.l-index #about .text {
  margin-top: var(--spacer_lv3);
}
.l-index #service .list {
  margin-top: var(--spacer_lv2);
}
.l-index #partner .list {
  margin-top: var(--spacer_lv2);
}
.l-index #partner .images {
  margin-top: var(--spacer_lv3);
}

.l-subpage {
  margin-top: 100px;
}
.l-subpage .l-title {
  margin-top: var(--spacer_lv2);
}
.l-subpage .l-contents {
  margin-top: var(--spacer_lv2);
}
.l-subpage .l-pager {
  margin-top: var(--spacer_lv1);
  margin-bottom: var(--spacer_lv4);
}
.l-subpage .l-button {
  margin-top: var(--spacer_lv1);
}
.l-subpage .l-text {
  margin-top: var(--spacer_lv4);
}

/* -------------------------------------
    SERVICE
------------------------------------- */
.l-block_service .text {
  margin-top: var(--spacer_lv3);
}
.l-block_service .image {
  margin-top: var(--spacer_lv2);
}

.l-article {
  /* -------------------------------------
      NEWS
  ------------------------------------- */
  /* -------------------------------------
      MODEL CASE
  ------------------------------------- */
}
.l-article .sub-title {
  margin-top: var(--spacer_lv2);
}
.l-article .text {
  margin-top: 20px;
}
.l-article .images {
  margin-top: var(--spacer_lv3);
}
.l-article .link {
  margin-top: var(--spacer_lv3);
}
.l-article.news .title {
  margin-top: var(--spacer_lv4);
}
.l-article.news .thumbnail {
  margin-top: var(--spacer_lv3);
}
.l-article.modelcase {
  border-bottom: solid 1px var(--color_white);
  padding-bottom: var(--spacer_lv3);
}
.l-article.modelcase .title {
  margin-top: var(--spacer_lv3);
}
.l-article.modelcase .category {
  margin-top: 20px;
}
.l-article.modelcase .tag {
  margin-top: 24px;
}
.l-article.modelcase .description {
  margin-top: var(--spacer_lv3);
}/*# sourceMappingURL=style.css.map */