@charset "UTF-8";
/************************************************************************** 変数 */
:root {
  --color-bk: #333;
  --color-wh: #fff;
  --color-gry: #b7b7b7;
  --color-gry2: #ccc;
  --color-gry3: #dbd6cc;
  --color-dgry: #989898;
  --color-dgry2: #727272;
  --color-dgry3: #707070;
  --color-gr: #beccb5;
  --color-bl: #7c96ab;
  --color-or: #edc6b1;
  --color-lor: #ede7dc;
  --color-lor2: #EAE4D9;
  --color-bg: #f2eee6;
  --color-border: #222;
  --height-header-pc: 100px;
  --height-header-sp: 70px;
}

/************************************************************************** fonts */
@font-face {
  font-family: "ClashGrotesk-Light";
  src: url("../fonts/ClashGrotesk-Light.woff2") format("woff2"), url("../fonts/ClashGrotesk-Light.woff") format("woff"), url("../fonts/ClashGrotesk-Light.ttf") format("truetype");
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "ClashGrotesk-Regular";
  src: url("../fonts/ClashGrotesk-Regular.woff2") format("woff2"), url("../fonts/ClashGrotesk-Regular.woff") format("woff"), url("../fonts/ClashGrotesk-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "ClashGrotesk-Medium";
  src: url("../fonts/ClashGrotesk-Medium.woff2") format("woff2"), url("../fonts/ClashGrotesk-Medium.woff") format("woff"), url("../fonts/ClashGrotesk-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
/************************************************************************** base */
body {
  width: 100%;
  min-height: 100%;
  padding: 0;
  margin: 0;
  word-wrap: break-word;
  overflow: auto;
  font-weight: 400;
  color: var(--color-bk);
  line-height: 1.875;
  font-family: "Noto Sans JP", 游ゴシック, "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W6", Meiryo, メイリオ, sans-serif;
  background: var(--color-bg);
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: var(--color-bk);
  overflow: hidden;
  outline: none;
  word-wrap: break-word;
  word-break: break-all;
  transition: all 0.3s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    opacity: 0.6;
  }
}

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

p {
  word-wrap: break-word;
}

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

/**************************************************** general */
.br:before {
  content: "\a";
  white-space: pre;
}

.small {
  font-size: 0.8em;
}

.ff-en-400 {
  font-family: "ClashGrotesk-Regular";
}

.fw-700 {
  font-weight: 700;
}

.center {
  text-align: center;
}

.no-wrap {
  white-space: nowrap;
}

.flex {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}

/********* header */
.menu__box li {
  display: flex;
  line-height: 1;
}
.menu__box li a {
  display: flex;
  align-items: center;
  font-weight: 500;
  line-height: 1;
  transition: 0.3s;
}
.menu__box .nav {
  position: relative;
}
.menu__box .nav.has-sub {
  padding-right: 23px;
}
.menu__box .nav.has-sub::after {
  content: "";
  position: absolute;
  top: calc(10px + 0.5em);
  right: 0;
  width: 13px;
  height: 8px;
  background-image: url(../img/arrow_bk.svg);
  background-size: contain;
  background-position: center;
  transform: translateY(-50%);
}
.menu__box .nav .sub-menu {
  display: none;
  width: max-content;
}
.menu__box .nav .sub-menu li a {
  position: relative;
  display: block;
  padding: 6px 0 6px 22px;
  font-weight: 500;
}
.menu__box .nav .sub-menu li a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 8px;
  width: 8px;
  height: 8px;
  background: var(--color-gr);
  border-radius: 50%;
  transform: translateY(-50%);
}
.menu__box .nav .sub-menu li:nth-of-type(2) a::before {
  background: var(--color-bl);
}
.menu__box .nav .sub-menu li:nth-of-type(3) a::before {
  background: var(--color-gry);
}
.menu__box .nav .sub-menu li:nth-of-type(4) a::before {
  background: var(--color-or);
}
.menu__box .nav .sub-menu li:last-of-type a {
  border-bottom: none;
}

.nav2 a {
  border: 2px solid var(--color-border);
  border-radius: 999px;
}
.nav2 span {
  display: block;
  width: 8px;
  height: 8px;
  background: var(--color-border);
  border-radius: 50%;
}

.nav2-bk a {
  color: var(--color-wh);
  background: var(--color-border);
}
.nav2-bk span {
  background: var(--color-wh);
}

/************************************************************************** structure */
#outer {
  min-height: 100vh;
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
}

/*************** (header) */
header {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  z-index: 99;
  background: var(--color-bg);
}

/* hamburger */
#menu__toggle {
  opacity: 0;
  display: none;
}
#menu__toggle:checked ~ .menu__btn > span {
  transform: rotate(14deg);
}
#menu__toggle:checked ~ .menu__btn > span::before {
  top: 0;
  transform: rotate(0);
}
#menu__toggle:checked ~ .menu__btn > span::after {
  top: 0;
  transform: rotate(152deg);
}
#menu__toggle:checked ~ .menu__box {
  visibility: visible;
  right: 0;
}

.menu__btn {
  display: flex;
  align-items: center;
  position: fixed;
  top: 28px;
  right: 20px;
  width: 28px;
  height: 16px;
  cursor: pointer;
  z-index: 200;
}
.menu__btn > span,
.menu__btn > span::before,
.menu__btn > span::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: var(--color-border);
  transition-duration: 0.25s;
}
.menu__btn > span::before {
  content: "";
  top: -8px;
}
.menu__btn > span::after {
  content: "";
  top: 8px;
}

.menu__box {
  display: flex;
  align-items: center;
}

/*info*/
.menu_info {
  font-size: 14px;
  line-height: 1.6em;
  margin: 0 0 0 30px;
  padding-top: 50px;
}

@media screen and (max-width: 1440px) {
  .nav_msk {
    display: none;
  }
  .menu__box {
    display: block;
    position: fixed;
    z-index: 100;
    visibility: hidden;
    top: 70px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    margin: 0;
    padding: 70px 0 45px;
    list-style: none;
    background-color: var(--color-bg);
    transition-duration: 0.25s;
    overflow-y: auto;
  }
  .menu__box > ul {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
  .nav > .menu__item {
    width: 100%;
    padding: 10px 0;
  }
  .nav2 {
    margin-top: 40px;
  }
  .nav2 a {
    width: 100%;
    position: relative;
    justify-content: center;
    padding: 16px 25px;
  }
  .nav2 span {
    position: absolute;
    top: 50%;
    left: 26px;
    transform: translateY(-50%);
  }
  .nav2-bk {
    margin-top: 30px;
  }
  .nav2-bk a {
    padding: 16px 75px;
  }
  .menu__box > .nav3__list {
    display: flex;
    align-items: center;
    margin-top: 50px;
  }
  .nav3__list li:nth-of-type(2) {
    margin: 0 60px;
  }
  /********* header */
  .menu__box li {
    flex-direction: column;
  }
  .menu__box .nav .sub-menu li a {
    font-size: 12px;
  }
  /*************** (header) */
  header {
    height: var(--height-header-sp);
    padding: 0 20px;
  }
  #logo img {
    width: 140px;
  }
}
@media screen and (min-width: 1441px) {
  /* cancel hamburger */
  .menu__btn,
  #menu__toggle,
  .menu_info {
    display: none;
  }
}
/*************** (main) */
.wrap {
  padding: 0 20px;
  margin: 0 auto;
}

/*** content */
.content p {
  margin-bottom: 1em;
}
.content p:last-of-type {
  margin-bottom: 0;
}

/*** column */
.col2 {
  display: flex;
}
.col2_item {
  width: 50%;
}
.col2_content {
  border-left: 1px solid var(--color-dgry);
}
.col2_box {
  margin-left: 10px;
  padding: 15px 0;
  border-bottom: 1px solid var(--color-dgry);
}

.col3 {
  display: flex;
}
.col3_item {
  position: relative;
  width: 33.33%;
}
.col3_item::before, .col3_item::after {
  content: "";
  position: absolute;
  background: var(--color-dgry);
}
.col3_item::before {
  top: 0;
  left: 50%;
  width: calc(100% - 20px);
  height: 1px;
  transform: translateX(-50%);
}
.col3_item::after {
  top: 50%;
  right: 0;
  width: 1px;
  height: calc(100% - 20px);
  transform: translateY(-50%);
}
.col3_item h3 {
  font-size: clamp(1rem, 0.863rem + 0.58vw, 1.5625rem);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.col3_item p {
  font-weight: 500;
}
.col3_item p span {
  font-family: "ClashGrotesk-Light";
  font-size: clamp(5rem, 3.938rem + 4.53vw, 9.375rem);
  font-weight: 300;
  line-height: 1;
}

/*** title */
.title1 {
  margin-right: 15px;
  margin-bottom: 45px;
  font-size: clamp(0.875rem, 0.784rem + 0.39vw, 1.25rem);
  font-weight: 500;
  line-height: 1;
}
.title1 span:first-of-type {
  display: block;
  margin-bottom: 20px;
  font-family: "ClashGrotesk-Regular";
  font-weight: 400;
  font-size: clamp(0.875rem, 0.784rem + 0.39vw, 1.25rem);
}

.title2 {
  margin: 230px 0 100px;
  font-size: clamp(1rem, 0.939rem + 0.26vw, 1.25rem);
  font-weight: 500;
  line-height: 1;
}
.title2 span:first-of-type {
  display: block;
  margin-bottom: 5px;
  font-family: "ClashGrotesk-Light";
  font-weight: 300;
  font-size: clamp(5rem, 3.483rem + 6.47vw, 11.25rem);
}
.title2 span:last-of-type {
  font-weight: 500;
}

.title3 {
  font-size: clamp(1.5rem, 1.181rem + 1.36vw, 2.8125rem);
  font-weight: 500;
  line-height: 1.56;
  margin-bottom: 80px;
}

/*** text */
.text1 {
  font-size: clamp(1.5625rem, 1.259rem + 1.29vw, 2.8125rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.56;
}

/*** highlight */
.highlight {
  margin-bottom: 15px;
  display: inline-block;
}
.highlight span {
  font-weight: 600;
  background: linear-gradient(transparent 60%, #eeece4 0%);
  display: inline;
}

.highlight2 {
  text-align: center;
}
.highlight2 span {
  font-weight: 600;
  background: linear-gradient(transparent 60%, var(--color-wh) 0%);
  display: inline;
}

.highlight3 {
  font-size: 1em;
  background: linear-gradient(transparent 60%, #eeece4 0%);
  padding: 0 !important;
  margin: 0 auto 10px;
  font-weight: 600;
  display: table;
}

h1.highlight {
  font-weight: 600;
  font-size: 1.4em;
  margin-bottom: 30px;
  display: block;
}

/*** goto btn */
.goto_btn {
  position: relative;
  display: block;
  width: 300px;
  max-width: 100%;
  padding: 19px 30px;
  font-family: "ClashGrotesk-Regular";
  font-size: 25px;
  text-align: center;
  border: 1px solid var(--color-bk);
  border-radius: 999px;
}
.goto_btn span {
  display: block;
  transition: 0.4s;
}
.goto_btn_text, .goto_btn_arrow {
  overflow: hidden;
}
.goto_btn_text {
  height: 1em;
  line-height: 1;
}
.goto_btn_arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: var(--color-bk);
  border-radius: 50%;
}
.goto_btn_arrow span {
  display: flex;
  width: 38%;
  height: 34%;
}
.goto_btn_arrow span:first-of-type {
  transform: translateX(-130%);
}
.goto_btn_arrow span:last-of-type {
  transform: translateX(-50%);
}
@media (hover: hover) and (pointer: fine) {
  .goto_btn:hover {
    opacity: 1;
  }
  .goto_btn:hover .goto_btn_text span {
    transform: translateY(-1em);
  }
  .goto_btn:hover .goto_btn_arrow span:first-of-type {
    transform: translateX(50%);
  }
  .goto_btn:hover .goto_btn_arrow span:last-of-type {
    transform: translateX(130%);
  }
}

/*** faq */
.faq .title1 {
  margin-right: 0;
  border-bottom: 1px solid var(--color-dgry);
}
.faq .col2 {
  border-bottom: 1px solid var(--color-dgry);
}
.faq_box {
  padding-top: 0;
  padding-bottom: 0;
}
.faq_title, .faq_cont {
  position: relative;
}
.faq_title {
  cursor: pointer;
  transition: 0.3s;
}
.faq_title::after {
  content: "";
  position: absolute;
  top: 50%;
  background-image: url(../img/plus.svg);
  background-size: contain;
  background-position: center;
  transform: translateY(-50%) rotate(0);
  transition: 0.3s;
}
.faq_title.is-open::after {
  transform: translateY(-50%) rotate(315deg);
}
.faq_title::after {
  left: 40px;
  width: 18px;
  height: 18px;
}
.faq_cont {
  display: none;
}
.faq_title h3, .faq_cont p {
  padding-left: 45px;
}
.faq_title h3 {
  font-size: clamp(1rem, 0.939rem + 0.26vw, 1.25rem);
}
.faq_cont p {
  font-size: clamp(0.875rem, 0.845rem + 0.13vw, 1rem);
  font-weight: 500;
  line-height: 1.88;
}

/*** foot */
#foot {
  color: var(--color-wh);
  background: var(--color-border);
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.text-anim_wrap {
  display: flex;
}
.text-anim_list {
  display: flex;
  list-style: none;
  padding: 0;
  animation: scroll-left 240s infinite linear 0.5s both;
}
.text-anim_item {
  font-family: "ClashGrotesk-Light";
  font-weight: 300;
  font-size: clamp(6.25rem, 5.643rem + 2.59vw, 8.75rem);
  white-space: nowrap;
  line-height: 0.86;
}

.foot-contact .title1 span:first-of-type {
  font-family: "ClashGrotesk-Light";
  font-weight: 300;
}
.foot-contact .text1 {
  font-size: clamp(1.25rem, 0.871rem + 1.62vw, 2.8125rem);
}
.foot-contact .text1 .fw-700 span {
  position: relative;
  z-index: 1;
}
.foot-contact .text1 .fw-700 span:first-of-type::after {
  content: "“";
  left: -0.1em;
  position: absolute;
  top: -0.1em;
  font-family: "ClashGrotesk-Light";
  font-size: clamp(4.375rem, 3.313rem + 4.53vw, 8.75rem);
  font-weight: 300;
  line-height: 1;
  color: var(--color-bg);
  z-index: -1;
  opacity: 0.1;
}
.foot-contact .text1 .fw-700 span:last-of-type::after {
  content: "”";
  right: -0.1em;
  position: absolute;
  top: -0.1em;
  font-family: "ClashGrotesk-Light";
  font-size: clamp(4.375rem, 3.313rem + 4.53vw, 8.75rem);
  font-weight: 300;
  line-height: 1;
  color: var(--color-bg);
  z-index: -1;
  opacity: 0.1;
}
.foot-contact_title {
  font-size: clamp(0.96875rem, 0.749rem + 0.94vw, 1.875rem);
  font-weight: 500;
  line-height: 1.67;
}
.foot-contact_text {
  font-size: clamp(0.75rem, 0.689rem + 0.26vw, 1rem);
  font-weight: 500;
  line-height: 1.88;
}
.foot-contact ul li {
  position: relative;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--color-dgry);
  border-bottom: 1px solid var(--color-dgry);
}
.foot-contact ul li:first-of-type::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  background: var(--color-dgry);
}
.foot-contact ul li:first-of-type .foot-contact_title {
  font-size: clamp(1.125rem, 0.943rem + 0.78vw, 1.875rem);
}
.foot-contact ul li:first-of-type .foot-contact_title::after {
  background-image: url("../img/download.svg");
}
.foot-contact ul li:first-of-type .foot-contact_text {
  font-size: clamp(0.875rem, 0.845rem + 0.13vw, 1rem);
}
.foot-contact ul li .foot-contact_title {
  position: relative;
}
.foot-contact ul li .foot-contact_title::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background-image: url("../img/contact.svg");
  background-position: center;
  background-size: contain;
}
.foot-contact ul li .goto_btn {
  margin-top: auto;
  border-color: var(--color-bg);
}
.foot-contact ul li .goto_btn span {
  color: var(--color-bg);
}
.foot-contact ul li .goto_btn_arrow {
  background: var(--color-bg);
}

/*** footer */
footer a {
  color: var(--color-wh);
}
footer p {
  font-family: "ClashGrotesk-Regular";
  font-size: clamp(0.75rem, 0.689rem + 0.26vw, 1rem);
  line-height: 1.25;
}
footer ul li {
  margin-bottom: 10px;
  font-size: clamp(0.75rem, 0.689rem + 0.26vw, 1rem);
  font-weight: 500;
  line-height: 1.25;
  text-align: right;
}
footer ul li:last-of-type {
  margin-bottom: 0;
}

.footer_inner {
  display: flex;
  justify-content: space-between;
}

/****** wp-navi */
div.wp-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
}
div.wp-pagenavi a,
div.wp-pagenavi span {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "ClashGrotesk-Light";
  font-size: clamp(1.25rem, 1.098rem + 0.65vw, 1.875rem);
  background-color: transparent;
  white-space: nowrap;
  border-radius: 50%;
  transition: 0.2s ease-in-out;
  text-align: center;
  text-decoration: none;
  border: none;
}
div.wp-pagenavi a:hover {
  color: var(--color-wh);
  background-color: var(--color-bk);
  border: none;
  opacity: 1;
}
div.wp-pagenavi span.current {
  font-weight: 300;
  color: var(--color-wh);
  background-color: var(--color-bk);
  border: none;
}
div.wp-pagenavi .nextpostslink,
div.wp-pagenavi .previouspostslink {
  position: relative;
  color: transparent !important;
}
div.wp-pagenavi .nextpostslink::before,
div.wp-pagenavi .previouspostslink::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url("../img/arrow_bk_2.svg");
  background-position: center;
  background-size: contain;
}
div.wp-pagenavi .nextpostslink:hover::before,
div.wp-pagenavi .previouspostslink:hover::before {
  background-image: url("../img/arrow_wh_2.svg");
}
div.wp-pagenavi .previouspostslink {
  transform: scale(-1, 1);
}

/****** TOC */
#toc_container {
  border: 1px solid #707070 !important;
}
#toc_container p.toc_title {
  font-size: clamp(1.125rem, 0.943rem + 0.78vw, 1.875rem);
  line-height: 1.6;
  text-align: left !important;
}
#toc_container a {
  text-decoration: underline !important;
}
#toc_container > ul > li,
#toc_container > ul > li > ul li {
  width: -moz-fit-content;
  width: fit-content;
}
#toc_container > ul > li:last-of-type,
#toc_container > ul > li > ul li:last-of-type {
  margin-bottom: 0;
}
#toc_container > ul > li > a {
  position: relative;
  font-size: clamp(1.125rem, 1.019rem + 0.45vw, 1.5625rem);
  font-weight: 700;
  line-height: 1.44;
  padding-left: 1em;
}
#toc_container > ul > li > a::before {
  content: "・";
  position: absolute;
  top: 1px;
  left: 0;
}
#toc_container > ul > li > ul li a {
  position: relative;
  padding-left: 2em;
  font-weight: 500;
  line-height: 1.5;
}
#toc_container > ul > li > ul li a::before {
  content: "01　";
  position: absolute;
  top: 0;
  left: 0;
}
#toc_container > ul > li > ul li:nth-of-type(2) a::before {
  content: "02　";
}
#toc_container > ul > li > ul li:nth-of-type(3) a::before {
  content: "03　";
}
#toc_container > ul > li > ul li:nth-of-type(4) a::before {
  content: "04　";
}
#toc_container > ul > li > ul li:nth-of-type(5) a::before {
  content: "05　";
}
#toc_container > ul > li > ul li:nth-of-type(6) a::before {
  content: "06　";
}
#toc_container > ul > li > ul li:nth-of-type(7) a::before {
  content: "07　";
}
#toc_container > ul > li > ul li:nth-of-type(8) a::before {
  content: "08　";
}
#toc_container > ul > li > ul li:nth-of-type(9) a::before {
  content: "09　";
}
#toc_container > ul > li > ul li:nth-of-type(10) a::before {
  content: "10　";
}
#toc_container > ul > li > ul li:nth-of-type(11) a::before {
  content: "11　";
}
#toc_container > ul > li > ul li:nth-of-type(12) a::before {
  content: "12　";
}
#toc_container > ul > li > ul li:nth-of-type(13) a::before {
  content: "13　";
}
#toc_container > ul > li > ul li:nth-of-type(14) a::before {
  content: "14　";
}
#toc_container > ul > li > ul li:nth-of-type(15) a::before {
  content: "15　";
}

/**************************************************** Testimonial / Column */
.cat {
  border-top: 1px solid var(--color-dgry);
  overflow-x: auto;
  overflow-y: hidden;
}
.cat ul {
  width: max-content;
  display: flex;
  align-items: center;
}
.cat li {
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1;
}
.cat li:first-of-type {
  font-family: "ClashGrotesk-Regular";
}
.cat li.current a {
  text-decoration: underline;
}

/************* archive */
.cards:after {
  content: "";
  display: block;
  height: 0;
}

.card {
  position: relative;
  box-sizing: border-box;
}
.card a {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card.-guideline {
  background: var(--color-gr);
}
.card.-project {
  background: var(--color-bl);
}
.card.-spot {
  background: var(--color-gry);
}
.card.-retainer {
  background: var(--color-or);
}
.card_img {
  padding-top: 55.2%;
}
.card_cont {
  flex: 1;
  background: var(--color-lor);
}
.card_cont > span {
  display: block;
  font-family: "ClashGrotesk-Regular";
  font-size: clamp(0.875rem, 0.845rem + 0.13vw, 1rem);
  letter-spacing: 0.04em;
  line-height: 1;
}
.card_cont p {
  font-size: clamp(0.875rem, 0.845rem + 0.13vw, 1rem);
  font-weight: 500;
  line-height: 1.88;
}
.card_img {
  position: relative;
  padding-top: 57.2%;
  background: var(--color-lor);
}
.card_img img {
  position: absolute;
  top: 0;
  left: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card_cat {
  font-size: clamp(0.75rem, 0.689rem + 0.26vw, 1rem);
  font-weight: 500;
  border-top: 1px solid var(--color-dgry);
}

/************* archive column */
.card_column_inner {
  flex: 1;
  background: var(--color-lor);
}

/************* archive testimonial */
.testimonial_list {
  border-top: 1px solid var(--color-dgry);
}

.card_testimonial.-guideline .testimonial_company {
  background: var(--color-gr);
}
.card_testimonial.-project .testimonial_company {
  background: var(--color-bl);
}
.card_testimonial.-spot .testimonial_company {
  background: var(--color-gry);
}
.card_testimonial.-retainer .testimonial_company {
  background: var(--color-or);
}
.card_testimonial .card_cont {
  background: transparent;
}
.card_testimonial .card_cont h2 {
  font-size: clamp(1rem, 0.939rem + 0.26vw, 1.25rem);
  font-weight: 600;
  line-height: 1.75;
}
.card_testimonial_btm {
  margin-top: auto;
}

.testimonial_company {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  font-size: clamp(1rem, 0.939rem + 0.26vw, 1.25rem);
  font-weight: 500;
  line-height: 1.45;
  z-index: 2;
}

.card_testimonial_btm {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--color-dgry3);
}
.card_testimonial_btm > span {
  display: flex;
}

.testimonial_cat {
  display: flex;
}
.testimonial_cat li {
  font-size: clamp(0.75rem, 0.689rem + 0.26vw, 1rem);
  font-weight: 500;
  line-height: 1;
}

/************* archive jisseki */
.jisseki_cat {
  position: relative;
  z-index: 2;
}
.jisseki_cat_all, .jisseki_cat_list {
  background: var(--color-wh);
}
.jisseki_cat_all li.ff-en-400, .jisseki_cat_list li.ff-en-400 {
  font-size: clamp(1.25rem, 1.174rem + 0.32vw, 1.5625rem);
  line-height: 1.4;
}
.jisseki_cat_all {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "ClashGrotesk-Regular";
  font-weight: 400;
  font-size: clamp(1.25rem, 1.174rem + 0.32vw, 1.5625rem);
  border-radius: 999px;
  cursor: pointer;
}
.jisseki_cat_all.has-cat {
  font-family: "Noto Sans JP", 游ゴシック, "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W6", Meiryo, メイリオ, sans-serif;
  font-size: clamp(1rem, 0.939rem + 0.26vw, 1.25rem);
  font-weight: 500;
}
.jisseki_cat_all.active span {
  transform: rotate(-90deg);
}
.jisseki_cat > span span {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color-bk);
  border-radius: 50%;
  transform: rotate(90deg);
  transition: all 0.2s ease-in-out;
}
.jisseki_cat_list {
  display: none;
  position: absolute;
  left: 0;
  width: 100%;
}
.jisseki_cat_list li {
  font-size: clamp(1rem, 0.939rem + 0.26vw, 1.25rem);
  font-weight: 500;
}
.jisseki_cat_list li:last-of-type {
  margin-bottom: 0;
}
.jisseki_cat_list li span {
  color: var(--color-dgry);
}

.jisseki_card h2 {
  font-size: clamp(1rem, 0.863rem + 0.58vw, 1.5625rem);
  line-height: 1.6;
}
.jisseki_card .card_img {
  padding-top: 62.5%;
}
.jisseki_card_desc p {
  font-size: clamp(0.875rem, 0.845rem + 0.13vw, 1rem);
  line-height: 1.5;
}
.jisseki_card_desc p span:first-of-type {
  font-weight: 700;
}

/************* single */
#single {
  margin-bottom: 0;
}
#single time {
  display: block;
  font-family: "ClashGrotesk-Regular";
  font-weight: 400;
  font-size: clamp(1rem, 0.788rem + 0.91vw, 1.875rem);
  line-height: 1;
  letter-spacing: 0.04em;
}
#single h1 {
  font-weight: 500;
  font-size: clamp(1.5625rem, 1.259rem + 1.29vw, 2.8125rem);
  line-height: 1.56;
}
#single h2 {
  position: relative;
  padding-left: 1.5em;
  font-size: clamp(1.25rem, 1.007rem + 1.04vw, 2.25rem);
  line-height: 1.55;
}
#single h2::before {
  content: "◼︎";
  position: absolute;
  top: 0;
  left: 0;
}
#single h3 {
  font-size: clamp(1.125rem, 1.034rem + 0.39vw, 1.5rem);
  line-height: 1.55;
  text-decoration: underline;
}
#single p {
  margin: 1em 0;
  font-weight: 500;
  line-height: 1.88;
}
#single em {
  font-style: italic;
}
#single strong {
  font-weight: 600;
}
#single li {
  list-style: initial;
}
#single ol li {
  list-style: none;
  counter-increment: cnt;
  text-indent: -1.8em;
}
#single ol li::before {
  content: "(" counter(cnt) ") ";
}
#single .goto_btn {
  margin: 0 auto;
  font-size: clamp(1.25rem, 1.098rem + 0.65vw, 1.875rem);
}
#single .goto_btn span {
  white-space: nowrap;
}
#single .goto_btn_arrow img {
  transform: scale(-1, 1);
}
#single .goto_btn_arrow span:first-of-type {
  transform: translateX(50%);
}
#single .goto_btn_arrow span:last-of-type {
  transform: translateX(130%);
}
@media (hover: hover) and (pointer: fine) {
  #single .goto_btn:hover .goto_btn_arrow span:first-of-type {
    transform: translateX(-130%);
  }
  #single .goto_btn:hover .goto_btn_arrow span:last-of-type {
    transform: translateX(-50%);
  }
}

.blocks-gallery-item {
  margin-left: 0 !important;
  list-style: none !important;
} /* thumbnail用解除 */
.wp-block-table table {
  border-collapse: collapse;
}
.wp-block-table th,
.wp-block-table td {
  border: 1px solid var(--color-bk) !important;
}

.is-style-stripes th,
.is-style-stripes td {
  border: 0 !important;
}
.is-style-stripes tr:nth-of-type(odd) {
  background: #d3d3d3 !important;
}

.wp-block-gallery li {
  list-style: none !important;
}
.wp-block-gallery a img {
  -o-object-fit: cover !important;
     object-fit: cover !important;
}

.wp-block-image img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover !important;
     object-fit: cover !important;
}

.wp-block-separator {
  border: none;
}

/************* single writer */
.single_writer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--color-lor);
}
.single_writer_cont {
  flex: 1;
}
.single_writer_cont p {
  margin-top: 0 !important;
}
.single_writer_cont p:nth-of-type(1) {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 12px;
  font-weight: 400 !important;
  border: 1px solid var(--color-dgry);
}
.single_writer_cont p:nth-of-type(1) span {
  display: inline-block;
  font-family: "ClashGrotesk-Regular";
}
.single_writer_cont p:nth-of-type(2) {
  font-size: 12px;
  font-weight: 700;
}
.single_writer_cont p:nth-of-type(3) {
  font-size: 14px;
}
.single_writer_cont p:nth-of-type(3) span {
  font-family: "ClashGrotesk-Light";
  font-size: 10px;
  font-weight: 300;
}
.single_writer_cont p:nth-of-type(4) {
  margin-bottom: 0 !important;
  font-weight: 400 !important;
  line-height: 1.43 !important;
}

/************* single jisseki */
#single.single-jisseki h2 {
  padding: 0;
}
#single.single-jisseki h2::before {
  content: none;
}
#single.single-jisseki .jisseki_card_desc {
  background: var(--color-lor);
}
#single.single-jisseki .jisseki_card_desc h2 {
  font-size: clamp(1.125rem, 1.019rem + 0.45vw, 1.5625rem);
}
#single.single-jisseki .jisseki_card_desc p {
  font-weight: 400;
}
#single.single-jisseki .jisseki_card_desc p:last-of-type {
  margin-bottom: 0;
}

/********************* slider */
.slider_title .title1 {
  margin-bottom: 0;
}

.slider_inner {
  position: relative;
}

.slick-list {
  overflow: visible;
}

.slick-track {
  display: flex !important;
}

.slick-slide {
  height: auto !important;
}

.slick__prev,
.slick__next {
  position: absolute;
  bottom: 0;
  z-index: 1;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-border);
}
.slick__prev::before,
.slick__next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 33px;
  height: 24px;
  opacity: 1;
  background-image: url("../img/arrow_wh_3.svg");
  background-position: center;
  background-size: contain;
}
.slick__prev.slick-disabled,
.slick__next.slick-disabled {
  background: transparent;
}
.slick__prev.slick-disabled::before,
.slick__next.slick-disabled::before {
  background-image: url("../img/arrow_bk_4.svg");
}

.slick__prev:before {
  transform: translate(-50%, -50%) scale(-1, 1);
}

.slick__next {
  right: calc(100vw - 100%);
}
.slick__next:before {
  transform: translate(-50%, -50%);
}

/**************************************************** Top */
/********************* Top1 */
.content_top1 {
  position: relative;
}
.content_top1 img {
  width: 100%;
}
.content_top1_inner {
  position: absolute;
  width: 100%;
}

.highlight_top1 {
  color: var(--color-wh);
}
.highlight_top1 p {
  font-size: clamp(1rem, 0.863rem + 0.58vw, 1.5625rem);
  font-weight: 500;
  line-height: 1.28;
}
.highlight_top1 p.-md {
  margin-bottom: 10px;
  font-size: clamp(1.5625rem, 1.259rem + 1.29vw, 2.8125rem);
  letter-spacing: 0.01em;
}
.highlight_top1 p.-lg {
  font-family: "ClashGrotesk-Light";
  font-size: clamp(8.125rem, 7.367rem + 3.24vw, 11.25rem);
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 0.77;
  white-space: nowrap;
}

.content_top1 .goto_btn {
  width: 400px;
  padding: 34px 55px;
  font-family: "Noto Sans JP", 游ゴシック, "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W6", Meiryo, メイリオ, sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-align: left;
  background: rgba(255, 255, 255, 0.85);
}
.content_top1 .goto_btn_arrow {
  left: auto;
  right: 15px;
  width: 49px;
  height: 49px;
}

/********************* Top about */
.top-about_img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-about_client {
  border-top: 1px solid var(--color-dgry);
  border-bottom: 1px solid var(--color-dgry);
}
.top-about_client h3 {
  min-width: -moz-fit-content;
  min-width: fit-content;
  font-family: "ClashGrotesk-Regular";
  font-weight: 400;
  font-size: clamp(0.875rem, 0.708rem + 0.71vw, 1.5625rem);
}
.top-about_client ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9%;
  flex: 1;
  padding: 40px 0;
  overflow-x: auto;
}
.top-about_client ul li:nth-of-type(1) {
  width: 10.97%;
  min-width: 93px;
}
.top-about_client ul li:nth-of-type(2) {
  width: 11.8%;
  min-width: 119px;
}
.top-about_client ul li:nth-of-type(3) {
  width: 5.5%;
  min-width: 58px;
}
.top-about_client ul li:nth-of-type(4) {
  width: 9.13%;
  min-width: 96px;
}
.top-about_client ul li:nth-of-type(5) {
  width: 5.5%;
  min-width: 58px;
}

/********************* Top experts */
.experts li {
  position: relative;
  font-size: clamp(0.875rem, 0.784rem + 0.39vw, 1.25rem);
  font-weight: 500;
  line-height: 1;
}
.experts li::before, .experts li::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.experts li::before {
  left: -10px;
  width: 1px;
  height: calc(100% - 20px);
  background: var(--color-dgry);
}
.experts li::after {
  background-image: url("../img/top/experts_icon.png");
  background-size: contain;
  background-position: center;
}
.experts li span {
  display: block;
  margin-top: 15px;
  font-size: 12px;
  color: var(--color-dgry2);
}

/********************* Top support */
.support .col2 {
  border-bottom: 1px solid var(--color-dgry);
}
.support ol > li {
  position: relative;
  border-bottom: none;
}
.support ol > li:last-of-type {
  margin-bottom: 0;
}
.support ol > li::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -10px;
  width: 1px;
  height: calc(100% - 20px);
  background: var(--color-dgry);
}
.support_title {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--color-dgry);
}
.support_title > span {
  font-family: "ClashGrotesk-Light";
  font-weight: 300;
  font-size: clamp(2.8125rem, 2.585rem + 0.97vw, 3.75rem);
  line-height: 1;
}
.support_title h3 {
  font-size: clamp(1.25rem, 1.174rem + 0.32vw, 1.5625rem);
}
.support_title h3 span {
  font-size: clamp(0.875rem, 0.845rem + 0.13vw, 1rem);
  font-weight: 500;
}
.support ul li {
  font-size: clamp(1rem, 0.939rem + 0.26vw, 1.25rem);
  font-weight: 600;
}
.support ul li span {
  font-size: clamp(0.75rem, 0.689rem + 0.26vw, 1rem);
  font-weight: 500;
}

/********************* Top service */
.top-service {
  line-height: 1.5;
}
.top-service .title1 .fw-700 {
  position: relative;
  z-index: 1;
}
.top-service .title1 .fw-700::before, .top-service .title1 .fw-700::after {
  position: absolute;
  top: -0.1em;
  font-family: "ClashGrotesk-Light";
  font-size: clamp(4.375rem, 3.313rem + 4.53vw, 8.75rem);
  font-weight: 300;
  line-height: 1;
  color: var(--color-gry3);
  z-index: -1;
}
.top-service .title1 .fw-700::before {
  content: "“";
  left: -0.1em;
}
.top-service .title1 .fw-700::after {
  content: "”";
  right: -0.1em;
}
.top-service_inner {
  border-bottom: 1px solid var(--color-dgry);
}
.top-service_card {
  max-width: 100%;
  background: var(--color-gr);
}
.top-service_card.-project {
  background: var(--color-bl);
}
.top-service_card.-spot {
  background: var(--color-gry);
}
.top-service_card.-retainer {
  background: var(--color-or);
}
.top-service_card > a {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.top-service_cont {
  position: relative;
  flex: 1;
}
.top-service_cont > span:last-of-type {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color-border);
  border-radius: 50%;
}
.top-service_cont > span:last-of-type span {
  display: flex;
  width: 38%;
}
.top-service_cont > span:last-of-type img {
  width: 100%;
}
.top-service_num {
  position: absolute;
  font-family: "ClashGrotesk-Regular";
  font-size: clamp(0.875rem, 0.784rem + 0.39vw, 1.25rem);
  line-height: 1;
}
.top-service h3 {
  margin-bottom: 10px;
  font-size: clamp(1.5625rem, 1.411rem + 0.65vw, 2.1875rem);
}
.top-service p {
  font-weight: 500;
}
.top-service p span {
  font-size: clamp(0.75rem, 0.72rem + 0.13vw, 0.875rem);
}
.top-service dt {
  width: -moz-fit-content;
  width: fit-content;
  background: var(--color-bg);
  font-size: clamp(0.75rem, 0.689rem + 0.26vw, 1rem);
  font-weight: 600;
}
.top-service dd {
  font-size: clamp(1rem, 0.939rem + 0.26vw, 1.25rem);
  font-weight: 700;
}
.top-service ul {
  margin-top: 10px;
}
.top-service ul li {
  font-size: clamp(0.875rem, 0.845rem + 0.13vw, 1rem);
  font-weight: 500;
  line-height: 1.88;
}

/********************* Top testimonial */
.top-testimonial .card a {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.top-testimonial .card_testimonial_btm {
  margin-top: auto;
}

/********************* Top column */
.top-column .slider_title {
  border-top: 1px solid var(--color-dgry);
}

/********************* Top faq */
.top-faq {
  margin-top: 0;
}

/**************************************************** service */
.page-service {
  position: relative;
}
.page-service::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
}
.page-service .title2 {
  font-weight: 700;
}
.page-service .goto_btn {
  font-family: "Noto Sans JP", 游ゴシック, "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W6", Meiryo, メイリオ, sans-serif;
  font-weight: 700;
}
.page-service .top-jisseki .goto_btn {
  font-family: "ClashGrotesk-Regular";
}

.page-service.guideline::before,
header:has(+ .guideline),
header:has(+ .guideline) .hamburger-menu,
header:has(+ .guideline) .menu__box,
header:has(+ .guideline) .menu__box .nav .sub-menu,
.guideline .service_top,
.guideline .investigation h3,
.guideline .flow {
  background: var(--color-gr);
}

.page-service.project::before,
header:has(+ .project),
header:has(+ .project) .hamburger-menu,
header:has(+ .project) .menu__box,
header:has(+ .project) .menu__box .nav .sub-menu,
.project .service_top,
.project .investigation h3,
.project .flow {
  background: var(--color-bl);
}

.page-service.spot::before,
header:has(+ .spot),
header:has(+ .spot) .hamburger-menu,
header:has(+ .spot) .menu__box,
header:has(+ .spot) .menu__box .nav .sub-menu,
.spot .service_top,
.spot .investigation h3,
.spot .flow {
  background: var(--color-gry);
}

.page-service.retainer::before,
header:has(+ .retainer),
header:has(+ .retainer) .hamburger-menu,
header:has(+ .retainer) .menu__box,
header:has(+ .retainer) .menu__box .nav .sub-menu,
.retainer .service_top,
.retainer .investigation h3,
.retainer .flow {
  background: var(--color-or);
}

.page-top_inner {
  display: flex;
  justify-content: space-between;
}
.page-top .service_inner {
  border-color: var(--color-border);
}
.page-top p {
  font-size: clamp(1rem, 0.863rem + 0.58vw, 1.5625rem);
  line-height: 2;
  font-weight: 500;
}
.page-top .title3 {
  width: 58%;
}
.page-top_cont {
  width: 42%;
}
.page-top .price {
  font-size: clamp(1.25rem, 1.174rem + 0.32vw, 1.5625rem);
  font-weight: 700;
  text-decoration: underline;
}

.service_inner {
  border-bottom: 1px solid var(--color-dgry);
}

.service-desc p {
  font-size: clamp(1rem, 0.939rem + 0.26vw, 1.25rem);
  line-height: 2;
  font-weight: 500;
}

.service_btn {
  color: var(--color-wh);
  background: var(--color-border);
}

/********************* Support */
.service-support {
  margin-bottom: 0;
}
.service-support .col2_box {
  background: var(--color-lor);
  border-bottom: none;
  font-size: clamp(1rem, 0.97rem + 0.13vw, 1.125rem);
  line-height: 1.94;
  font-weight: 500;
}
.service-support .col2_box:last-of-type {
  margin-bottom: 0;
}
.service-support li.col2_box span {
  position: relative;
  display: inline-block;
  margin-top: 5px;
  padding-left: 1.5em;
  font-weight: 700;
  line-height: 1.39;
}
.service-support li.col2_box span::before {
  content: "";
  position: absolute;
  top: 0.3em;
  left: 0;
  background-image: url(../img/arrow_gr.svg);
  background-size: contain;
  background-position: center;
}

.project .service-support li.col2_box span::before {
  background-image: url(../img/arrow_bl.svg);
}

.spot .service-support li.col2_box span::before {
  background-image: url(../img/arrow_gry.svg);
}

.retainer .service-support li.col2_box span::before {
  background-image: url(../img/arrow_or.svg);
}

/********************* Investigation */
.investigation_card:last-of-type {
  margin-bottom: 0;
}
.investigation h3 {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 16px;
  font-weight: 600;
}
.investigation p.center {
  font-size: clamp(0.875rem, 0.845rem + 0.13vw, 1rem);
}
.investigation li {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.88;
}

/********************* Flow */
.flow_title {
  display: flex;
  align-items: center;
}
.flow_title span {
  display: inline-block;
  font-family: "ClashGrotesk-Light";
  font-weight: 300;
  font-size: clamp(2.3125rem, 1.964rem + 1.49vw, 3.75rem);
  line-height: 1.2;
}
.flow_title h3 {
  font-size: clamp(1rem, 0.879rem + 0.52vw, 1.5rem);
  line-height: 1.44;
}
.flow p {
  font-size: clamp(0.875rem, 0.845rem + 0.13vw, 1rem);
  font-weight: 500;
  line-height: 1.5;
}
.flow_list {
  display: flex;
  flex-wrap: wrap;
}
.flow_item {
  position: relative;
}
.flow_item::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 1px;
  height: calc(100% - 20px);
  background: var(--color-dgry);
  transform: translateY(-50%);
}
.flow_item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -20px;
  width: 42px;
  height: 30px;
  background-image: url(../img/arrow_bk_2.svg);
  background-size: contain;
  background-position: center;
  transform: translateY(-50%);
}
.flow_item:last-of-type::after {
  content: none;
}
.flow_box {
  height: 100%;
  margin: 0 10px;
  border-top: 1px solid var(--color-dgry);
}

.project .flow_item::before {
  background: var(--color-border);
}
.project .flow_box {
  border-color: var(--color-border);
}

/********************* Popup */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100vh;
  z-index: 9999;
}
.popup_inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: rgba(34, 34, 34, 0.7);
}
.popup_close {
  position: absolute;
  display: block;
  background-image: url(../img/close.svg);
  background-size: contain;
  background-position: center;
  cursor: pointer;
}
.popup_cont {
  position: relative;
  background: var(--color-wh);
  overflow-y: auto;
}
.popup_cont > ol {
  display: flex;
}
.popup_cont > ol > li {
  flex: 1;
  border-right: 1px solid var(--color-border);
}
.popup_cont > ol > li:last-of-type {
  border-right: none;
}
.popup_cont > ol > li h2 {
  font-size: clamp(1.125rem, 1.095rem + 0.13vw, 1.25rem);
  color: var(--color-wh);
  background: var(--color-border);
}
.popup_cont > ol > li h2 span {
  display: inline-block;
  font-size: clamp(0.75rem, 0.689rem + 0.26vw, 1rem);
}
.popup_cont > ol > li li {
  display: flex;
  margin-bottom: 10px;
}
.popup_cont > ol > li li > span,
.popup_cont > ol > li li dt,
.popup_cont > ol > li li dd {
  font-weight: 500;
}
.popup_cont > ol > li li > span {
  min-width: -moz-fit-content;
  min-width: fit-content;
  font-family: "ClashGrotesk-Medium";
  font-size: clamp(1rem, 0.939rem + 0.26vw, 1.25rem);
  line-height: 1.7;
}
.popup_cont > ol > li li dl {
  margin-left: 3px;
}
.popup_cont > ol > li li dt {
  font-size: clamp(0.875rem, 0.845rem + 0.13vw, 1rem);
}
.popup_cont > ol > li li dd {
  font-size: clamp(0.75rem, 0.72rem + 0.13vw, 0.875rem);
  color: var(--color-dgry);
}
.popup_num {
  font-family: "ClashGrotesk-Light";
  font-weight: 300;
  font-size: clamp(1.875rem, 1.799rem + 0.32vw, 2.1875rem);
  line-height: 1;
}
.popup_price, .popup_purpose {
  text-decoration: underline;
}
.popup_price {
  font-weight: 700;
  font-size: clamp(1.125rem, 1.095rem + 0.13vw, 1.25rem);
}
.popup_price span {
  font-size: clamp(0.75rem, 0.689rem + 0.26vw, 1rem);
}
.popup_purpose {
  font-size: clamp(0.875rem, 0.845rem + 0.13vw, 1rem);
  font-weight: 500;
}

/**************************************************** About */
.about_cont {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.about_cont p {
  font-weight: 500;
  line-height: 1.88;
}

.mission,
.message,
.company {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

/********************* Value */
.value h3 {
  font-size: clamp(1rem, 0.863rem + 0.58vw, 1.5625rem);
  line-height: 1.2;
}
.value p {
  font-size: clamp(0.875rem, 0.845rem + 0.13vw, 1rem);
  color: var(--color-dgry2);
  line-height: 1.88;
}

/********************* About works */
.about-works_title {
  min-width: -moz-fit-content;
  min-width: fit-content;
}
.about-works h2 {
  margin-right: 0;
  margin-bottom: 0;
}
.about-works h3 {
  margin-bottom: 20px;
  font-family: "ClashGrotesk-Light";
  font-weight: 300;
  font-size: clamp(1.875rem, 1.42rem + 1.94vw, 3.75rem);
  line-height: 1;
}
.about-works p {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 500;
}
.about-works dl {
  margin-bottom: 10px;
}
.about-works dl:last-of-type {
  margin-bottom: 0;
}
.about-works dl > div {
  display: flex;
}
.about-works dt,
.about-works dd {
  font-size: clamp(0.875rem, 0.845rem + 0.13vw, 1rem);
  line-height: 1.56;
  font-weight: 500;
}
.about-works dt {
  min-width: 3em;
}
.about-works .slick-slider {
  background: var(--color-lor);
}
.about-works .slider_inner {
  flex: 1;
}
.about-works .slider_inner .card {
  display: inline-block;
  margin: 0;
  border-right: 1px solid var(--color-dgry);
}
.about-works .slider_inner .card:last-of-type {
  border-right: none;
}
.about-works .slick__prev,
.about-works .slick__next {
  position: relative;
  bottom: auto;
  right: auto;
}

/********************* Company */
.company_row {
  display: flex;
}
.company dt,
.company dd {
  line-height: 2.5;
}
.company dt {
  min-width: 5em;
  font-weight: 700;
}
.company dd {
  font-weight: 500;
}

/**************************************************** Privacy */
.privacy .content {
  max-width: 1100px;
  margin: 0 auto;
}
.privacy h2,
.privacy p,
.privacy li {
  font-weight: 500;
}
.privacy h2 {
  font-size: clamp(1.125rem, 0.867rem + 1.1vw, 2.1875rem);
  line-height: 1.6;
}
.privacy p,
.privacy li {
  line-height: 2.19;
}
.privacy p {
  margin-bottom: 1.5em;
}
.privacy ul {
  padding-left: 1em;
}
.privacy li {
  position: relative;
  padding-left: 1em;
}
.privacy li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

/**************************************************** Contact  */
.contact_inner {
  margin: 0 auto;
  background: var(--color-lor);
}
.contact_inner h2 {
  text-decoration: underline;
  font-size: clamp(0.875rem, 0.845rem + 0.13vw, 1rem);
  font-weight: 500;
}
.contact_inner li {
  position: relative;
  padding-left: 1.5em;
  font-size: clamp(0.75rem, 0.689rem + 0.26vw, 1rem);
  font-weight: 500;
}
.contact_inner li::before {
  content: "● ";
  position: absolute;
  top: 0;
  left: 0;
}
.contact_inner li a {
  text-decoration: underline;
}

/************ Form ***/
#form dl {
  border-top: 1px solid var(--color-dgry);
}
#form dl > div {
  display: flex;
  border-bottom: 1px solid var(--color-dgry);
}
#form dl > div.x-center {
  align-items: center;
}
#form p {
  font-weight: 500;
}
#form dt p,
#form dd p {
  font-size: clamp(1rem, 0.833rem + 0.35vw, 1.25rem);
  line-height: 1.5;
}
#form dt.pt-0 {
  padding-top: 0;
}
#form dt p {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#form dd {
  flex: 1;
}

.must {
  font-size: clamp(0.75rem, 0.689rem + 0.26vw, 1rem);
  color: var(--color-lor2);
  background: var(--color-border);
}

.wpcf7-form .con,
.wpcf7-form .mes {
  width: 100%;
  border: 0;
  background: var(--color-bg);
  box-shadow: inset 0 0 13px rgba(0, 0, 13, 0.15), inset 0 0 13px rgba(0, 0, 13, 0.15);
}
.wpcf7-form .mes {
  height: 180px;
  overflow-y: auto;
  _overflow-y: hidden; /* IEでスクロールバーを消す為に記述 */
}

::placeholder {
  color: var(--color-dgry);
}

.boxcheck,
.circlecheck {
  display: flex;
  flex-wrap: wrap;
}

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

.wpcf7-list-item-label {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.wpcf7-radio .wpcf7-list-item-label::before,
.wpcf7-checkbox .wpcf7-list-item-label::before {
  content: "";
  display: block;
  background: var(--color-bg);
  box-shadow: inset 0 0 13px rgba(0, 0, 13, 0.15), inset 0 0 13px rgba(0, 0, 13, 0.15);
  position: absolute;
  left: 0;
  top: 0;
  box-sizing: border-box;
}

.wpcf7-radio.circlecheck .wpcf7-list-item-label::before,
.wpcf7-checkbox.circlecheck .wpcf7-list-item-label::before {
  border-radius: 50%;
}

input[type=checkbox]:checked + .wpcf7-list-item-label::after,
input[type=radio]:checked + .wpcf7-list-item-label::after {
  content: "";
  display: block;
  position: absolute;
}

.wpcf7-radio.circlecheck input[type=radio]:checked + .wpcf7-list-item-label::after,
.wpcf7-checkbox.circlecheck input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  background: var(--color-border);
  border-radius: 50%;
}

.wpcf7-radio.boxcheck input[type=radio]:checked + .wpcf7-list-item-label::after,
.wpcf7-checkbox.boxcheck input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  background-image: url("../img/check.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.contact_ac .faq_title {
  background: var(--color-wh);
}
.contact_ac .faq_title::after {
  left: auto;
}
.contact_ac .faq_title p {
  font-size: clamp(1rem, 0.863rem + 0.58vw, 1.5625rem);
  font-weight: 700 !important;
}
.contact_ac .faq_cont p {
  padding-left: 0;
}
.contact_ac .faq_cont dl {
  border-top: none !important;
}
.contact_ac .faq_cont dl > div:first-of-type {
  padding-top: 0 !important;
}

.gotoprivacy {
  text-align: center;
}
.gotoprivacy p {
  font-size: clamp(0.875rem, 0.845rem + 0.13vw, 1rem);
  font-weight: 500;
  line-height: 1.88;
}
.gotoprivacy a {
  color: var(--color-dgry);
  text-decoration: underline;
}
.gotoprivacy .wpcf7-form-control-wrap {
  display: inline-block;
}
.gotoprivacy .wpcf7-form-control .wpcf7-list-item {
  width: auto;
  margin: 0;
}
.gotoprivacy .wpcf7-list-item-label {
  height: auto;
  line-height: 1.88;
}
.gotoprivacy .wpcf7-list-item-label::before {
  content: "";
  display: block;
  background: var(--color-wh);
  position: absolute;
  left: 0;
  top: 0;
  box-sizing: border-box;
}
.gotoprivacy input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  background-image: url("../img/check.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.wpcf7-response-output {
  text-align: center;
}

.ajax-loader {
  display: none !important;
}

.form_btn {
  max-width: 100%;
  background: var(--color-wh);
  border-radius: 999px;
}
.form_btn .wpcf7-spinner {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%);
}
.form_btn .button {
  position: relative;
  width: 100%;
  text-align: center;
}
.form_btn .goto_btn_text span,
.form_btn .goto_btn_arrow span {
  display: block;
  transition: 0.4s;
}
.form_btn .goto_btn_arrow {
  left: auto;
}
.form_btn .goto_btn_arrow span {
  display: flex;
}
.form_btn .goto_btn_arrow p {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.form_btn .wpcf7-submit {
  position: relative;
  display: block;
  width: 100%;
  color: transparent;
}
.form_btn .goto_btn_text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.form_btn:has(.button p input:hover:not([disabled])) .goto_btn_text span {
  transform: translateY(-1em);
}
.form_btn:has(.button p input:hover:not([disabled])) .goto_btn_arrow span:first-of-type {
  transform: translateX(50%);
}
.form_btn:has(.button p input:hover:not([disabled])) .goto_btn_arrow span:last-of-type {
  transform: translateX(130%);
}

/**************************************************** Thankyou  */
.thanks p {
  margin-bottom: 50px;
  font-size: clamp(1rem, 0.863rem + 0.58vw, 1.5625rem);
  font-weight: 500;
  line-height: 1.8;
}
.thanks p.-sm {
  font-size: clamp(0.875rem, 0.784rem + 0.39vw, 1.25rem);
  line-height: 1.75;
}
.thanks p a {
  text-decoration: underline;
}