@charset "UTF-8";
/*reset*/
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

:where(html) {
  -webkit-text-size-adjust: none;
  color-scheme: dark light;
}

@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}
:where(body) {
  line-height: 7;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(button) {
  border-style: solid;
}

:where(a) {
  color: inherit;
  text-underline-offset: 0.2ex;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg) {
  max-inline-size: 100%;
  block-size: auto;
}

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

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem);
}

:where(hr) {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(:focus-visible) {
  outline: 3px solid Highlight;
  outline-offset: 2px;
  scroll-margin-block: 10vh;
}

:where(.visually-hidden:not(:focus-within, :active)) {
  clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/*
font-family: $en_font;
font-family: 'IBM Plex Sans JP', sans-serif;
 "source-han-sans-japanese"
*/
figure {
  margin: 0;
}

html {
  scroll-padding-top: 160px;
}

html, body {
  font-family: "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 20px;
  line-height: 2;
  font-weight: 400;
  letter-spacing: 0.05em;
  font-style: normal;
  color: #000;
  background: #f9f9f5;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  min-height: 100%;
}

.pc_only {
  display: block;
}

.sp_only {
  display: none;
}

@media only screen and (max-width: 896px) {
  .pc_only {
    display: none;
  }
  .sp_only {
    display: block;
  }
}
img {
  width: 100%;
  height: auto;
}

::-moz-selection {
  background: #333333;
  color: #fff;
}

::selection {
  background: #333333;
  color: #fff;
}

::-moz-selection {
  background: #ccc;
  color: #fff;
}

body.menu_open {
  overflow: hidden;
}

@media (max-width: 896px) {
  .cookie-notice-container #cn-notice-buttons,
  .cookie-notice-container #cn-notice-text {
    display: block;
    text-align: left;
  }
}
/*----------------------------------------------------
 link
--------------------------------------------------- */
a:link, a:visited, a:active {
  color: #000;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
a:hover {
  text-decoration: none;
}

@keyframes btn_arrow_hb {
  0% {
    transform: translate(0%, 0px);
  }
  50% {
    transform: translate(200%, 0px);
  }
  50.1% {
    transform: translate(-200%, 0px);
  }
  100% {
    transform: translate(0%, 0px);
  }
}
/*----------------------------------------------------
  .scrollview
--------------------------------------------------- */
.scrollview, .fade_up {
  opacity: 0;
  transform: scale(1, 1) translate(0%, 20px);
}

.scrollview.view, .fade_up.js-fade_up_view {
  opacity: 1;
  transition: all 0.6s 0.1s ease;
  transform: scale(1, 1) translate(0%, 0%);
}

/*----------------------------------------------------
  .lazyload
--------------------------------------------------- */
.lazyload_set span, .lazyload_set img {
  opacity: 0;
}
.lazyload_set span.lazyloaded, .lazyload_set img.lazyloaded {
  opacity: 1;
  transition: all 0.5s 0s ease;
}

/*----------------------------------------------------
  .block_header
--------------------------------------------------- */
.block_header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  transition: all 0.5s 0s ease;
  mix-blend-mode: difference;
}
.block_header .inner {
  position: relative;
  padding: 0 3vw;
  margin: 0 auto;
  max-width: 2400px;
}
.block_header .inner ul.menu {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: flex-start; /* flex-start  center  space-between */
  align-items: flex-start; /* flex-start  center  */
}
@media (max-width: 896px) {
  .block_header .inner ul.menu {
    display: none;
  }
}
.block_header .inner ul.menu > li {
  position: relative;
}
.block_header .inner ul.menu > li > a {
  display: block;
  color: #FFF;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-size: 12px;
  font-weight: 300;
  font-family: "Manrope", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  padding: 25px 20px 25px 0;
  white-space: nowrap;
  transition: all 0.5s 0s ease;
}
.block_header .inner ul.menu > li:hover a {
  opacity: 0.5;
}

/*----------------------------------------------------
  .sp_menu
--------------------------------------------------- */
.block_navi a {
  position: fixed;
  display: none;
  z-index: 12;
  top: 0%;
  right: 0px;
  border-radius: 0 0 0 0px;
  width: 60px;
  height: 60px;
  background: #f9f9f5;
  box-shadow: 0px 10px 30px 0px rgba(51, 51, 51, 0.1);
}
@media (max-width: 896px) {
  .block_navi a {
    display: block;
  }
}
.block_navi a .wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  margin-top: -15px;
  margin-left: -15px;
  overflow: hidden;
  transition: all 0.4s 0s ease;
}
.block_navi a span.l1 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 1px;
  margin-top: -6px;
  margin-left: -15px;
  background: #000;
  transform-origin: center center;
}
.block_navi a span.l2 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 1px;
  margin-top: 0px;
  margin-left: -15px;
  background: #000;
  transform-origin: center center;
}
.block_navi a span.l3 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 1px;
  margin-top: 6px;
  margin-left: -15px;
  background: #000;
  transform-origin: center center;
}

body.menu_open .block_navi a span.l1 {
  margin-top: 0px;
  transform: scale3d(1, 1, 1) translate(0px, 0px) rotate(45deg);
}
body.menu_open .block_navi a span.l2 {
  margin-top: 0px;
  transform: scale3d(0, 1, 1) translate(0px, 0px) rotate(0deg);
}
body.menu_open .block_navi a span.l3 {
  margin-top: 0px;
  transform: scale3d(1, 1, 1) translate(0px, 0px) rotate(-45deg);
}

/*----------------------------------------------------
  .block_sp_menu
--------------------------------------------------- */
.menu_bg {
  display: block;
  position: fixed;
  top: 0%;
  right: 0px;
  width: 100%;
  height: 100%;
  z-index: 8;
  background: rgba(255, 255, 255, 0.7);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s 0s ease;
  backdrop-filter: blur(3px);
}

body.menu_open .menu_bg {
  opacity: 1;
  visibility: visible;
  transform: translate(0%, 0%);
}

.block_sp_menu {
  display: block;
  position: fixed;
  top: 0px;
  right: 0px;
  width: 100vw;
  height: 100vh;
  z-index: 10;
  opacity: 0;
  background: #f9f9f5;
  visibility: hidden;
  transition: all 0.4s 0s ease;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
body.menu_open .block_sp_menu {
  opacity: 1;
  visibility: visible;
  transform: translate(0%, 0px);
}

.block_sp_menu .inner {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 90%;
  transform: translate(0%, -50%);
}
.block_sp_menu .inner .logo {
  width: 100px;
  margin-bottom: 20px;
}
.block_sp_menu .inner ul.menu > li {
  display: inline-block;
  width: 45%;
  position: relative;
}
.block_sp_menu .inner ul.menu > li > a {
  display: block;
  padding: 8px 0;
  line-height: 1.5;
  transition: all 0.4s 0s ease;
  text-align: left;
  font-family: "Manrope", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 13px;
  color: #000;
  letter-spacing: 0.02em;
}
.block_sp_menu .inner .txt_btn {
  margin-top: 10vw;
}
.block_sp_menu .inner .txt_btn a {
  font-size: 12px;
  text-decoration: underline;
  font-family: "Manrope", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  letter-spacing: 0.02em;
  color: #000;
}
.block_sp_menu .inner .copyright {
  margin-top: 2vw;
  font-family: "Manrope", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 10px;
  letter-spacing: 0.02em;
}

/*----------------------------------------------------
  .wrapper
--------------------------------------------------- */
.wrapper {
  position: relative;
}
/*----------------------------------------------------
  .block_mainvisual
--------------------------------------------------- */
.block_mainvisual {
  padding: 0 0 0 3vw;
  margin: 0 auto;
  max-width: 2400px;
  position: relative;
}
@media (max-width: 896px) {
  .block_mainvisual {
    padding: 0 0 0 5vw;
    overflow: hidden;
  }
}
.block_mainvisual .textarea {
  position: absolute;
  top: 0px;
  left: 3vw;
  z-index: 1;
  overflow: hidden;
  width: 220px;
}
@media (max-width: 896px) {
  .block_mainvisual .textarea {
    width: auto;
    position: relative;
    top: 0vw;
    left: 0vw;
    margin-top: -40vw;
  }
}
.block_mainvisual .textarea .title {
  width: 140px;
  opacity: 0;
  transform: scale(1, 1) translate(0%, 10px);
}
body.pageLoad .block_mainvisual .textarea .title {
  transition: all 0.8s 0.5s ease;
  transform: scale(1, 1) translate(0%, 0px);
  opacity: 1;
}

@media (max-width: 896px) {
  .block_mainvisual .textarea .title {
    width: 100px;
  }
}
.block_mainvisual .textarea .title::after {
  content: "";
  display: block;
  width: 0px;
  height: 1px;
  background: #000;
  margin-top: 40px;
  margin-bottom: 80px;
}
@media (max-width: 896px) {
  .block_mainvisual .textarea .title::after {
    margin-top: 50px;
    margin-bottom: 65vw;
  }
}
body.pageLoad .block_mainvisual .textarea .title::after {
  transition: all 0.8s 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  width: 190px;
}
@media (max-width: 896px) {
  body.pageLoad .block_mainvisual .textarea .title::after {
    width: 14vw;
  }
}

.block_mainvisual .textarea .copy {
  width: 50vw;
  font-family: "Manrope", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 19px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: scale(1, 1) translate(0%, 10px);
}
@media (max-width: 896px) {
  .block_mainvisual .textarea .copy {
    width: auto;
    font-size: 5vw;
    margin-bottom: 10px;
  }
}
body.pageLoad .block_mainvisual .textarea .copy {
  transition: all 0.8s 0.55s ease;
  transform: scale(1, 1) translate(0%, 0px);
  opacity: 1;
}

.block_mainvisual .textarea .jp {
  width: 50vw;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 40px;
  opacity: 0;
  transform: scale(1, 1) translate(0%, 10px);
}
@media (max-width: 896px) {
  .block_mainvisual .textarea .jp {
    width: auto;
    font-size: 5vw;
    line-height: 1.7;
  }
}
body.pageLoad .block_mainvisual .textarea .jp {
  transition: all 0.8s 0.6s ease;
  transform: scale(1, 1) translate(0%, 0px);
  opacity: 1;
}

.block_mainvisual .textarea p {
  width: 50vw;
  line-height: 2.5;
  font-size: 14px;
  margin-bottom: 40px;
  opacity: 0;
  transform: scale(1, 1) translate(0%, 10px);
}
@media (max-width: 896px) {
  .block_mainvisual .textarea p {
    width: auto;
    font-size: 12px;
  }
}
body.pageLoad .block_mainvisual .textarea p {
  transition: all 0.8s 0.65s ease;
  transform: scale(1, 1) translate(0%, 0px);
  opacity: 1;
}

.block_mainvisual .textarea .link {
  opacity: 0;
  transform: scale(1, 1) translate(0%, 10px);
}
body.pageLoad .block_mainvisual .textarea .link {
  transition: all 0.8s 0.7s ease;
  transform: scale(1, 1) translate(0%, 0px);
  opacity: 1;
}

.block_mainvisual .textarea .link a {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: flex-start; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  transition: all 0.5s 0s ease;
}
.block_mainvisual .textarea .link a:hover {
  opacity: 0.5;
}
.block_mainvisual .textarea .link a:hover .icon svg {
  animation: btn_arrow_hb 0.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}
.block_mainvisual .textarea .link a .icon {
  width: 10px;
  height: 8px;
  overflow: hidden;
  margin-right: 5px;
}
.block_mainvisual .textarea .link a .icon svg {
  width: 8px;
  height: auto;
  vertical-align: middle;
}
.block_mainvisual .textarea .link a .t {
  font-size: 13px;
  font-family: "Manrope", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  letter-spacing: 0.02em;
}
@media (max-width: 896px) {
  .block_mainvisual .textarea .link a .t {
    font-size: 12px;
  }
}
.block_mainvisual .textarea.white {
  width: auto;
  margin-left: 220px;
  overflow: hidden;
}
@media (max-width: 896px) {
  .block_mainvisual .textarea.white {
    display: none;
  }
}
.block_mainvisual .textarea.white .title {
  opacity: 0 !important;
  margin-left: -220px;
}
.block_mainvisual .textarea.white .title {
  color: #FFF;
  margin-left: -220px;
}
.block_mainvisual .textarea.white .copy {
  color: #FFF;
  margin-left: -220px;
}
.block_mainvisual .textarea.white .jp {
  color: #FFF;
  margin-left: -220px;
}
.block_mainvisual .textarea.white p {
  color: #FFF;
  margin-left: -220px;
}
.block_mainvisual figure {
  margin-top: 130px;
  margin-left: 220px;
  opacity: 0;
}
@media (max-width: 896px) {
  .block_mainvisual figure {
    position: relative;
    top: 35vw;
    margin-top: 0px;
    margin-left: 10vw;
  }
}
body.pageLoad .block_mainvisual figure {
  transition: all 0.8s 0s ease;
  opacity: 1;
}

.block_mainvisual figure .img_wrap {
  position: relative;
  padding-top: 75%;
  padding-top: 100vh;
}
@media (max-width: 896px) {
  .block_mainvisual figure .img_wrap {
    padding-top: 75%;
  }
}
.block_mainvisual figure .img_wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*----------------------------------------------------
  .block_contents
--------------------------------------------------- */
.block_contents {
  margin-top: 10%;
}
body.page .block_contents {
  margin-top: 5%;
}
@media (max-width: 896px) {
  body.page .block_contents {
    margin-top: 20%;
  }
}

@media (max-width: 896px) {
  .block_contents {
    margin-top: 20%;
  }
}
.block_contents .inner {
  position: relative;
  padding: 0 3vw;
  margin: 0 auto;
  max-width: 2400px;
}
@media (max-width: 896px) {
  .block_contents .inner {
    padding: 0 5vw;
    flex-direction: column; /* row row-reverse column */
  }
}
.block_contents .inner .main_title_area {
  position: absolute;
  top: 0;
  left: 3vw;
  width: 220px;
  height: 100%;
}
body.works .block_contents .inner .main_title_area {
  top: 100px;
}
@media (max-width: 896px) {
  body.works .block_contents .inner .main_title_area {
    top: 0;
  }
}

@media (max-width: 896px) {
  .block_contents .inner .main_title_area {
    position: relative;
    left: 0;
    width: 100%;
    margin-bottom: 20px;
  }
}
.block_contents .inner .main_title_area .link {
  margin-top: 20px;
}
.block_contents .inner .main_title_area .link a {
  display: block;
  border: 1px #333 solid;
  padding: 10px 10px;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-decoration: none;
  width: calc(100% - 30px);
  transition: all 0.5s 0s ease;
  position: relative;
}
@media (max-width: 896px) {
  .block_contents .inner .main_title_area .link a {
    width: 100%;
  }
}
.block_contents .inner .main_title_area .link a:hover {
  background: #333;
  color: #FFF;
}
.block_contents .inner .main_title_area .link a::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  background: url(../img/common/page.svg) no-repeat center center;
  background-size: cover;
}
.block_contents .inner .title {
  position: sticky;
  top: 100px;
  left: 0;
  font-family: "Manrope", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.05em;
}
@media (max-width: 896px) {
  .block_contents .inner .title {
    position: relative;
    width: 100%;
    top: 0;
    font-size: 4vw;
  }
}
.block_contents .inner main {
  margin-left: 220px;
  margin-top: 5px;
}
@media (max-width: 896px) {
  .block_contents .inner main {
    margin-left: 0;
    width: 100%;
  }
}
.block_contents .inner main .list_thum {
  width: 90%;
}
@media (max-width: 896px) {
  .block_contents .inner main .list_thum {
    width: 100%;
  }
}
.block_contents .inner main .list_thum .column {
  margin-bottom: 5%;
}
@media (max-width: 896px) {
  .block_contents .inner main .list_thum .column {
    margin-bottom: 15%;
  }
}
.block_contents .inner main .list_thum .column a {
  display: block;
}
.block_contents .inner main .list_thum .column a:hover .image_area figure {
  opacity: 0.5;
}
.block_contents .inner main .list_thum .column a .image_area {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: space-between; /* flex-start  center  space-between */
  align-items: flex-start; /* flex-start  center  */
}
@media (max-width: 896px) {
  .block_contents .inner main .list_thum .column a .image_area {
    flex-direction: column; /* row row-reverse column */
  }
}
.block_contents .inner main .list_thum .column a .image_area figure {
  transition: all 0.8s 0s ease;
  width: 30%;
}
@media (max-width: 896px) {
  .block_contents .inner main .list_thum .column a .image_area figure {
    width: 100%;
    margin-bottom: 10px;
  }
}
.block_contents .inner main .list_thum .column a .image_area figure .img_wrap {
  background: #000;
  position: relative;
  padding-top: 75%;
  overflow: hidden;
}
.block_contents .inner main .list_thum .column a .image_area figure .img_wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
}
.block_contents .inner main .list_thum .column a .image_area figure .img_wrap img.lazyloaded {
  opacity: 1;
  transition: all 0.5s 0s ease;
}
.block_contents .inner main .list_thum .column a .image_area .exp {
  width: 67%;
  font-size: 14px;
  line-height: 2;
}
.block_contents .inner main .list_thum .column a .image_area .exp .title_area {
  margin-bottom: 20px;
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: space-between; /* flex-start  center  space-between */
  align-items: flex-start; /* flex-start  center  */
}
@media (max-width: 896px) {
  .block_contents .inner main .list_thum .column a .image_area .exp .title_area {
    margin-bottom: 0px;
    flex-direction: column; /* row row-reverse column */
  }
}
.block_contents .inner main .list_thum .column a .image_area .exp .title_area .title_set .c_title {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 5px;
}
@media (max-width: 896px) {
  .block_contents .inner main .list_thum .column a .image_area .exp .title_area .title_set .c_title {
    margin-bottom: 2px;
    font-size: 18px;
    margin-bottom: 5px;
  }
}
.block_contents .inner main .list_thum .column a .image_area .exp .title_area .title_set .project_name {
  font-size: 16px;
  line-height: 1.7;
  font-weight: 500;
}
@media (max-width: 896px) {
  .block_contents .inner main .list_thum .column a .image_area .exp .title_area .title_set .project_name {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
.block_contents .inner main .list_thum .column a .image_area .exp .title_area .meta {
  font-size: 14px;
  line-height: 1.7;
}
@media (max-width: 896px) {
  .block_contents .inner main .list_thum .column a .image_area .exp .title_area .meta {
    font-size: 12px;
    margin-bottom: 10px;
  }
}
@media (max-width: 896px) {
  .block_contents .inner main .list_thum .column a .image_area .exp {
    width: 100%;
    font-size: 12px;
  }
}
.block_contents .inner main .list_grid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.block_contents .inner main .list_grid .column {
  width: 30%;
  margin-right: 3%;
  margin-bottom: 3%;
}
.block_contents .inner main .list_grid .column:nth-child(3n) {
  margin-right: 0;
}
@media (max-width: 896px) {
  .block_contents .inner main .list_grid .column {
    width: 47.5%;
    margin-right: 5%;
    margin-bottom: 3%;
  }
  .block_contents .inner main .list_grid .column:nth-child(3n) {
    margin-right: 5%;
  }
  .block_contents .inner main .list_grid .column:nth-child(2n) {
    margin-right: 0;
  }
  .block_contents .inner main .list_grid .column {
    margin-bottom: 5%;
  }
}
.block_contents .inner main .list_grid .column a {
  display: block;
}
.block_contents .inner main .list_grid .column a:hover .image_area figure {
  opacity: 0.5;
}
.block_contents .inner main .list_grid .column a .image_area figure {
  transition: all 0.8s 0s ease;
}
@media (max-width: 896px) {
  .block_contents .inner main .list_grid .column a .image_area figure {
    width: 100%;
    margin-bottom: 10px;
  }
}
.block_contents .inner main .list_grid .column a .image_area figure .img_wrap {
  position: relative;
  padding-top: 75%;
  overflow: hidden;
  background: #333;
}
.block_contents .inner main .list_grid .column a .image_area figure .img_wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
}
.block_contents .inner main .list_grid .column a .image_area figure .img_wrap img.lazyloaded {
  opacity: 1;
  transition: all 0.5s 0s ease;
}
.block_contents .inner main .list_grid .column a .title_area {
  margin-top: 20px;
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: space-between; /* flex-start  center  space-between */
  align-items: flex-start; /* flex-start  center  */
}
@media (max-width: 896px) {
  .block_contents .inner main .list_grid .column a .title_area {
    margin-top: 10px;
    flex-direction: column; /* row row-reverse column */
  }
}
.block_contents .inner main .list_grid .column a .title_area .title_set .c_title {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 5px;
}
@media (max-width: 896px) {
  .block_contents .inner main .list_grid .column a .title_area .title_set .c_title {
    margin-bottom: 0px;
    font-size: 14px;
  }
}
.block_contents .inner main .list_grid .column a .title_area .title_set .project_name {
  font-size: 12px;
  line-height: 1.5;
  font-weight: 500;
}
@media (max-width: 896px) {
  .block_contents .inner main .list_grid .column a .title_area .title_set .project_name {
    font-size: 11px;
  }
}
.block_contents .inner main .list_grid .column a .title_area .meta {
  font-size: 12px;
  line-height: 1.5;
  padding-left: 10px;
}
@media (max-width: 896px) {
  .block_contents .inner main .list_grid .column a .title_area .meta {
    padding-left: 0px;
    margin-top: 5px;
    font-size: 10px;
  }
}
.block_contents .inner main .link_btn a {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: flex-start; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  transition: all 0.5s 0s ease;
}
.block_contents .inner main .link_btn a:hover {
  opacity: 0.5;
}
.block_contents .inner main .link_btn a:hover .icon svg {
  animation: btn_arrow_hb 0.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}
.block_contents .inner main .link_btn a .icon {
  width: 10px;
  height: 8px;
  overflow: hidden;
  margin-right: 5px;
}
.block_contents .inner main .link_btn a .icon svg {
  width: 8px;
  height: auto;
  vertical-align: middle;
}
.block_contents .inner main .link_btn a .t {
  font-size: 13px;
  font-family: "Manrope", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  letter-spacing: 0.02em;
}
@media (max-width: 896px) {
  .block_contents .inner main .link_btn a .t {
    font-size: 12px;
  }
}
.block_contents .inner main .box_text {
  font-size: 14px;
  line-height: 2;
  margin-bottom: 20px;
}
.block_contents .inner main .works_detail .mainvisual {
  margin-top: calc(-5% - 80px);
  width: calc(100% + 3vw);
  margin-bottom: 5%;
}
@media (max-width: 896px) {
  .block_contents .inner main .works_detail .mainvisual {
    margin-top: 0;
    width: calc(100% + 5vw);
    margin-bottom: 10%;
  }
}
.block_contents .inner main .works_detail .mainvisual .img_wrap {
  position: relative;
}
.block_contents .inner main .works_detail .mainvisual .img_wrap img {
  opacity: 0;
}
.block_contents .inner main .works_detail .mainvisual .img_wrap img.lazyloaded {
  opacity: 1;
  transition: all 0.5s 0s ease;
}
.block_contents .inner main .works_detail .title_area {
  width: 80%;
  margin-bottom: 1em;
}
@media (max-width: 896px) {
  .block_contents .inner main .works_detail .title_area {
    width: 100%;
  }
}
.block_contents .inner main .works_detail .title_area .c_title {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 500;
}
@media (max-width: 896px) {
  .block_contents .inner main .works_detail .title_area .c_title {
    font-size: 18px;
    margin-bottom: 5px;
  }
}
.block_contents .inner main .works_detail .title_area .project_name {
  font-size: 16px;
  line-height: 1.7;
  font-weight: 500;
  margin-bottom: 5px;
}
@media (max-width: 896px) {
  .block_contents .inner main .works_detail .title_area .project_name {
    font-size: 14px;
    margin-bottom: 5px;
  }
}
.block_contents .inner main .works_detail .title_area .meta {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 10px;
}
@media (max-width: 896px) {
  .block_contents .inner main .works_detail .title_area .meta {
    font-size: 12px;
    margin-bottom: 10px;
  }
}
.block_contents .inner main .works_detail .title_area .exp {
  font-size: 14px;
  line-height: 1.7;
}
.block_contents .inner main .works_detail .link_btn {
  margin-top: 5%;
}
.block_contents .inner main .box_about .column {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: space-between; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  margin-bottom: 10%;
}
@media (max-width: 896px) {
  .block_contents .inner main .box_about .column {
    margin-bottom: 20%;
    flex-direction: column; /* row row-reverse column */
  }
}
.block_contents .inner main .box_about .column:nth-child(even) {
  flex-direction: row-reverse; /* row row-reverse column */
}
@media (max-width: 896px) {
  .block_contents .inner main .box_about .column:nth-child(even) {
    flex-direction: column; /* row row-reverse column */
  }
}
.block_contents .inner main .box_about .column figure {
  width: 48%;
}
@media (max-width: 896px) {
  .block_contents .inner main .box_about .column figure {
    width: 100%;
    margin-bottom: 10px;
  }
}
.block_contents .inner main .box_about .column figure .img_wrap {
  position: relative;
  padding-top: 75%;
  overflow: hidden;
}
@media (max-width: 896px) {
  .block_contents .inner main .box_about .column figure .img_wrap {
    margin-bottom: 10px;
  }
}
.block_contents .inner main .box_about .column figure .img_wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
}
.block_contents .inner main .box_about .column figure .img_wrap img.lazyloaded {
  opacity: 1;
  transition: all 0.5s 0s ease;
}
.block_contents .inner main .box_about .column .textarea {
  width: 48%;
}
@media (max-width: 896px) {
  .block_contents .inner main .box_about .column .textarea {
    width: 100%;
  }
}
.block_contents .inner main .box_about .column .textarea .title_box {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: space-between; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  margin-bottom: 20px;
}
@media (max-width: 896px) {
  .block_contents .inner main .box_about .column .textarea .title_box {
    margin-bottom: 10px;
  }
}
.block_contents .inner main .box_about .column .textarea .title_box .number {
  width: 50px;
  font-family: "Manrope", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
}
.block_contents .inner main .box_about .column .textarea .title_box .c_title {
  width: calc(100% - 50px);
  font-size: 20px;
  line-height: 1.5;
  font-weight: 500;
}
@media (max-width: 896px) {
  .block_contents .inner main .box_about .column .textarea .title_box .c_title {
    font-size: 18px;
  }
}
.block_contents .inner main .box_about .column .textarea p {
  font-size: 14px;
  line-height: 2;
}
@media (max-width: 896px) {
  .block_contents .inner main .box_about .column .textarea p {
    font-size: 12px;
  }
}
.block_contents .inner main .entry_area .sub_title01 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 5%;
}
@media (max-width: 896px) {
  .block_contents .inner main .entry_area .sub_title01 {
    margin-bottom: 5%;
    font-size: 16px;
  }
}
.block_contents .inner main .entry_area .sub_title02 {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 5%;
}
@media (max-width: 896px) {
  .block_contents .inner main .entry_area .sub_title02 {
    margin-bottom: 5%;
    font-size: 14px;
  }
}
.block_contents .inner main .entry_area .section_dl_list {
  margin-bottom: 5%;
}
.block_contents .inner main .entry_area .section_dl_list dl {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: space-between; /* flex-start  center  space-between */
  align-items: flex-start; /* flex-start  center  */
  border-top: 1px solid #333;
  margin-top: 20px;
  padding-top: 20px;
  font-size: 14px;
  line-height: 2;
}
@media (max-width: 896px) {
  .block_contents .inner main .entry_area .section_dl_list dl {
    font-size: 12px;
    flex-direction: column; /* row row-reverse column */
  }
}
.block_contents .inner main .entry_area .section_dl_list dl dt {
  width: 30%;
  font-weight: 700;
}
@media (max-width: 896px) {
  .block_contents .inner main .entry_area .section_dl_list dl dt {
    width: 100%;
    margin-bottom: 5px;
  }
}
.block_contents .inner main .entry_area .section_dl_list dl dd {
  width: 65%;
}
@media (max-width: 896px) {
  .block_contents .inner main .entry_area .section_dl_list dl dd {
    width: 100%;
  }
}
.block_contents .inner main .entry_area .box_img_text {
  width: 80%;
  margin-bottom: 5%;
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: space-between; /* flex-start  center  space-between */
  align-items: flex-start; /* flex-start  center  */
}
@media (max-width: 896px) {
  .block_contents .inner main .entry_area .box_img_text {
    width: 100%;
    margin-bottom: 5%;
    flex-direction: column; /* row row-reverse column */
  }
}
.block_contents .inner main .entry_area .box_img_text figure {
  width: 55%;
}
@media (max-width: 896px) {
  .block_contents .inner main .entry_area .box_img_text figure {
    width: 100%;
    margin-bottom: 5%;
  }
}
.block_contents .inner main .entry_area .box_img_text figure img {
  opacity: 0;
}
.block_contents .inner main .entry_area .box_img_text figure img.lazyloaded {
  opacity: 1;
  transition: all 0.5s 0s ease;
}
.block_contents .inner main .entry_area .box_img_text .textarea {
  width: 43%;
  font-size: 14px;
  line-height: 2;
}
@media (max-width: 896px) {
  .block_contents .inner main .entry_area .box_img_text .textarea {
    width: 100%;
    font-size: 12px;
  }
}
.block_contents .inner main .entry_area .box_text {
  width: 80%;
  margin-bottom: 5%;
}
@media (max-width: 896px) {
  .block_contents .inner main .entry_area .box_text {
    margin-bottom: 5%;
    width: 100%;
  }
}
.block_contents .inner main .entry_area .box_img {
  width: 80%;
  margin-bottom: 5%;
}
@media (max-width: 896px) {
  .block_contents .inner main .entry_area .box_img {
    width: 100%;
    margin-bottom: 5%;
  }
}
.block_contents .inner main .entry_area .box_img figure img {
  opacity: 0;
}
.block_contents .inner main .entry_area .box_img figure img.lazyloaded {
  opacity: 1;
  transition: all 0.5s 0s ease;
}
.block_contents .inner main .entry_area .box_img figure figcaption {
  margin-top: 5px;
  font-size: 12px;
  line-height: 2;
}
@media (max-width: 896px) {
  .block_contents .inner main .entry_area .box_img figure figcaption {
    font-size: 10px;
  }
}
.block_contents .inner main .entry_area .section_image_slide {
  overflow: hidden;
  margin-bottom: 5%;
  width: calc(100% + 3vw);
}
@media (max-width: 896px) {
  .block_contents .inner main .entry_area .section_image_slide {
    position: relative;
    left: -5vw;
    width: calc(100% + 10vw);
  }
}
.block_contents .inner main .entry_area .section_image_slide .swiper-wrapper {
  transition-timing-function: ease-in-out;
}
.block_contents .inner main .entry_area .section_image_slide .swiper-button-next, .block_contents .inner main .entry_area .section_image_slide .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9f9f5;
}
.block_contents .inner main .entry_area .section_image_slide .swiper-button-next::after, .block_contents .inner main .entry_area .section_image_slide .swiper-button-prev::after {
  display: none;
}
.block_contents .inner main .entry_area .section_image_slide .swiper-button-next, .block_contents .inner main .entry_area .section_image_slide .swiper-button-prev {
  transition: all 0.5s 0s ease;
}
.block_contents .inner main .entry_area .section_image_slide .swiper-button-next:hover, .block_contents .inner main .entry_area .section_image_slide .swiper-button-prev:hover {
  opacity: 0.5;
}
.block_contents .inner main .entry_area .section_image_slide .swiper-button-next {
  right: 10px;
  left: auto;
  background: #000 url(../img/common/arrow_next2_w.svg) no-repeat center center;
  background-size: 10px;
}
@media (max-width: 896px) {
  .block_contents .inner main .entry_area .section_image_slide .swiper-button-next {
    right: 2vw;
  }
}
.block_contents .inner main .entry_area .section_image_slide .swiper-button-prev {
  left: -220px;
  right: auto;
  background: #000 url(../img/common/arrow_prev2_w.svg) no-repeat center center;
  background-size: 10px;
}
@media (max-width: 896px) {
  .block_contents .inner main .entry_area .section_image_slide .swiper-button-prev {
    left: 2vw;
  }
}
.block_contents .inner main .entry_area .section_image_slide .swiper-button-next.swiper-button-disabled, .block_contents .inner main .entry_area .section_image_slide .swiper-button-prev.swiper-button-disabled {
  opacity: 0.1;
}
.block_contents .inner main .entry_area .section_image_slide .column {
  width: auto !important;
  flex: 0 0 auto !important;
  max-width: none !important;
}
.block_contents .inner main .entry_area .section_image_slide .column a {
  display: block;
  transition: all 0.5s 0s ease;
}
.block_contents .inner main .entry_area .section_image_slide .column a:hover {
  opacity: 0.8;
}
.block_contents .inner main .entry_area .section_image_slide .column figure {
  padding-right: 20px;
}
.block_contents .inner main .entry_area .section_image_slide .column figure .img_wrap {
  position: relative;
}
.block_contents .inner main .entry_area .section_image_slide .column figure .img_wrap img {
  width: auto;
  height: 450px;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0;
}
@media (max-width: 896px) {
  .block_contents .inner main .entry_area .section_image_slide .column figure .img_wrap img {
    height: 50vw;
  }
}
.block_contents .inner main .entry_area .section_image_slide .column figure .img_wrap img.lazyloaded {
  opacity: 1;
  transition: all 0.5s 0s ease;
}

/*----------------------------------------------------
  .block_footer
--------------------------------------------------- */
.block_footer {
  padding: 10% 0 40px;
}
.block_footer .inner {
  padding: 0 3vw;
  margin: 0 auto;
  max-width: 2400px;
}
@media (max-width: 896px) {
  .block_footer .inner {
    padding: 0 5vw;
  }
}
.block_footer .inner .page_top {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: flex-end; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
}
.block_footer .inner .page_top a {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: flex-start; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  transition: all 0.5s 0s ease;
}
.block_footer .inner .page_top a:hover {
  opacity: 0.5;
}
.block_footer .inner .page_top a:hover .icon svg {
  animation: btn_arrow_hb 0.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}
.block_footer .inner .page_top a .icon {
  width: 10px;
  height: 8px;
  overflow: hidden;
  margin-right: 5px;
  transform: rotate(-90deg);
}
.block_footer .inner .page_top a .icon svg {
  width: 8px;
  height: auto;
  vertical-align: middle;
}
.block_footer .inner .page_top a .t {
  font-size: 13px;
  font-family: "Manrope", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  letter-spacing: 0.02em;
}
@media (max-width: 896px) {
  .block_footer .inner .page_top a .t {
    font-size: 12px;
  }
}
.block_footer .inner .f_wrap {
  display: flex;
  flex-direction: row-reverse; /* row row-reverse column */
  justify-content: space-between; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
}
.block_footer .inner .copyright {
  font-size: 10px;
  font-family: "Manrope", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  letter-spacing: 0.02em;
}
.block_footer .inner .txt_btn a {
  font-size: 12px;
  text-decoration: underline;
  font-family: "Manrope", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  letter-spacing: 0.02em;
  color: #000;
  transition: all 0.5s 0s ease;
}
.block_footer .inner .txt_btn a:hover {
  opacity: 0.5;
  text-decoration: none;
}

/*----------------------------------------------------
  .block_title
--------------------------------------------------- */
.block_title {
  padding: 0 0 0 3vw;
  margin: 0 auto;
  max-width: 2400px;
  position: relative;
}
@media (max-width: 896px) {
  .block_title {
    padding: 0 0 0 5vw;
    overflow: hidden;
  }
}
.block_title .textarea {
  position: relative;
  top: 0px;
  left: 0;
  z-index: 1;
  margin-top: 130px;
}
@media (max-width: 896px) {
  .block_title .textarea {
    position: relative;
    top: 0vw;
    left: 0vw;
    margin-top: 30px;
  }
}
.block_title .textarea .title {
  width: 140px;
  opacity: 0;
  transform: scale(1, 1) translate(0%, 10px);
}
body.pageLoad .block_title .textarea .title {
  transition: all 0.5s 0s ease;
  transform: scale(1, 1) translate(0%, 0px);
  opacity: 1;
}

@media (max-width: 896px) {
  .block_title .textarea .title {
    width: 80px;
  }
}
.block_title .textarea .title::after {
  content: "";
  display: block;
  width: 0px;
  height: 1px;
  background: #000;
  margin-top: 40px;
}
@media (max-width: 896px) {
  .block_title .textarea .title::after {
    display: none;
  }
}
body.pageLoad .block_title .textarea .title::after {
  transition: all 0.8s 0s cubic-bezier(0.77, 0, 0.175, 1);
  width: 190px;
}
@media (max-width: 896px) {
  body.pageLoad .block_title .textarea .title::after {
    width: 14vw;
  }
}

/*----------------------------------------------------
.block_pager
--------------------------------------------------- */
.block_pager {
  text-align: center;
  margin-top: 10%;
  padding-bottom: 40px;
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: flex-start; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
}
.block_pager .page-numbers {
  width: 50px;
  height: 50px;
  margin: 0 10px;
  font-family: "Manrope", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #333;
  border-radius: 50%;
  position: relative;
  transition: all 0.3s;
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
}
@media (max-width: 896px) {
  .block_pager .page-numbers {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }
}
.block_pager .page-numbers.current {
  background: #333;
  color: #f9f9f5;
}
.block_pager .page-numbers.dots {
  border: none;
  background: none;
  color: #333;
}
.block_pager .page-numbers:hover {
  background: #333;
  color: #f9f9f5;
}
.block_pager a.prev,
.block_pager .prev a {
  margin: 0 10px;
  width: 50px;
  height: 50px;
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  color: #333;
  border-radius: 50px;
  transition: all 0.5s 0s ease;
  text-indent: -9999px;
  background: #f9f9f5 url(../img/common/arrow_prev.svg) no-repeat center center;
  background-size: 20px;
}
@media (max-width: 896px) {
  .block_pager a.prev,
  .block_pager .prev a {
    width: 30px;
    height: 30px;
    background: #f9f9f5 url(../img/common/arrow_prev.svg) no-repeat center center;
    background-size: 10px;
  }
}
.block_pager a.prev:hover,
.block_pager .prev a:hover {
  background: #333 url(../img/common/arrow_prev_w.svg) no-repeat center center;
  background-size: 20px;
}
@media (max-width: 896px) {
  .block_pager a.prev:hover,
  .block_pager .prev a:hover {
    width: 30px;
    height: 30px;
    background: #f9f9f5 url(../img/common/arrow_prev_w.svg) no-repeat center center;
    background-size: 10px;
  }
}
.block_pager a.next,
.block_pager .next a {
  margin: 0 10px;
  width: 50px;
  height: 50px;
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  border-radius: 50px;
  color: #333;
  transition: all 0.5s 0s ease;
  text-indent: -9999px;
  background: #f9f9f5 url(../img/common/arrow_next.svg) no-repeat center center;
  background-size: 20px;
}
@media (max-width: 896px) {
  .block_pager a.next,
  .block_pager .next a {
    width: 30px;
    height: 30px;
    background: #f9f9f5 url(../img/common/arrow_next.svg) no-repeat center center;
    background-size: 10px;
  }
}
.block_pager a.next:hover,
.block_pager .next a:hover {
  background: #333 url(../img/common/arrow_next_w.svg) no-repeat center center;
  background-size: 20px;
}
@media (max-width: 896px) {
  .block_pager a.next:hover,
  .block_pager .next a:hover {
    width: 30px;
    height: 30px;
    background: #333 url(../img/common/arrow_next_w.svg) no-repeat center center;
    background-size: 10px;
  }
}
.block_pager a.list {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  background: #333;
  border-radius: 50px;
  margin: 0 10px;
  color: #333;
  padding: 0 20px;
  width: auto;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-style: normal;
  transition: all 0.5s 0s ease;
  background: #f9f9f5;
}
.block_pager a.list:hover {
  background: #333;
  color: #f9f9f5;
}

/*----------------------------------------------------
 block_form
--------------------------------------------------- */
.form_list {
  width: 70%;
  margin-top: 40px;
}
@media (max-width: 896px) {
  .form_list {
    width: 100%;
  }
}
.form_list .column {
  margin-bottom: 30px;
  font-size: 16px;
}
.form_list .column .column_title {
  margin-bottom: 10px;
  font-size: 14px;
}
.form_list .column .column_title .must {
  color: #ccc;
  border: 1px #ccc solid;
  display: inline-block;
  background: #FFF;
  line-height: 1;
  font-size: 12px;
  padding: 6px 20px;
  border-radius: 30px;
  margin-left: 10px;
}
.form_list .column .column_title small {
  margin-left: 5px;
}
.form_list .column a {
  color: #960f00;
  text-decoration: underline;
}
.form_list .column .column_form .error {
  background: #dc3232;
  color: #FFF;
  font-size: 14px;
  border-radius: 30px;
  padding: 5px 10px;
  margin-top: 10px;
  display: inline-block;
}
.form_list .column .column_form input[type=text], .form_list .column .column_form input[type=email], .form_list .column .column_form input[type=tel] {
  border: 1px #ccc solid;
  background: #FFF;
  color: #000;
  font-size: 14px;
  border-radius: 5px;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  padding: 9px 15px;
  width: 100%;
  box-shadow: none;
  margin-bottom: 5px;
  font-family: "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
.form_list .column .column_form input[type=file] {
  font-size: 14px;
}
.form_list .column .column_form textarea {
  border: 1px #ccc solid;
  background: #FFF;
  color: #000;
  font-size: 14px;
  border-radius: 5px;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  padding: 9px 15px;
  width: 100%;
  box-shadow: none;
  margin-bottom: 5px;
  font-family: "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
.form_list .column .column_form .mwform-checkbox-field {
  margin-right: 20px;
  font-weight: bold;
  font-size: 16px;
  font-family: "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
.form_list .column .column_form .mwform-tel-field {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: flex-start; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
}
.form_list .column .column_form .mwform-tel-field input {
  width: 25%;
  margin-right: 10px;
  margin-left: 10px;
}
.form_list .column .column_form .mwform-tel-field input:first-child {
  margin-left: 0;
}
.form_list .column .column_form .conf {
  border: none;
  background: #eee;
  font-weight: bold;
  font-size: 16px;
  border-radius: 5px;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  padding: 14px 15px;
  width: calc(100% - 30px);
  box-shadow: none;
  margin-top: 15px;
  margin-bottom: 5px;
  font-family: "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
.form_list .column .column_form select {
  width: 100%;
  padding-right: 1em;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  padding: 14px 15px;
  width: calc(100% - 30px);
  font-size: 16px;
  color: #000;
  font-family: "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
.form_list .column .column_form .select_box {
  position: relative;
  border: 1px solid #ccc;
  border-radius: 5px;
  background: #ffffff;
  margin-top: 15px;
  margin-bottom: 5px;
  width: calc(100% - 30px);
}
.form_list .column .column_form .select_box:hover {
  background: #eee;
}
.form_list .column .column_form .select_box:before {
  position: absolute;
  top: 50%;
  margin-top: -3px;
  right: 0.9em;
  width: 0;
  height: 0;
  padding: 0;
  content: "";
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #666666;
  pointer-events: none;
}
.mw_wp_form_confirm .select_box {
  background: none !important;
  border: none !important;
  margin-top: 0 !important;
  margin-bottom: 0px !important;
}
.mw_wp_form_confirm .select_box:hover {
  background: none !important;
}
.mw_wp_form_confirm .select_box::before {
  display: none !important;
}

.form_list .btn_area {
  padding-top: 0px;
  text-align: center;
}
.form_list .btn_area input[type=submit], .form_list .btn_area input[type=button] {
  border: none;
  border-radius: 100px;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  display: inline-block;
  margin-right: 10px;
  width: 295px;
  height: 60px;
  background: #333 no-repeat right 15px center;
  position: relative;
  color: #FFF;
  text-align: center;
  cursor: pointer;
  line-height: 60px;
  font-size: 14px;
  letter-spacing: 0.2em;
  border: 1px #FFF solid;
  transition: all 0.5s 0s ease;
}
.form_list .btn_area input[type=submit]:hover, .form_list .btn_area input[type=button]:hover {
  opacity: 0.5;
}
.form_list .column .attention {
  color: #dc3232;
  font-size: 12px;
  line-height: 1.6;
  padding-bottom: 10px;
}
.form_list .column .attention svg {
  fill: #dc3232;
  width: 15px;
  margin-right: 5px;
  vertical-align: middle;
}
.form_list .column ::-moz-placeholder {
  color: #ccc;
}
.form_list .column ::placeholder {
  color: #ccc;
}

.mw_wp_form_confirm .column_form {
  border: none;
  background: #eee;
  font-weight: bold;
  font-size: 16px;
  border-radius: 5px;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  padding: 14px 15px;
  width: calc(100% - 30px);
  box-shadow: none;
  margin-top: 15px;
  margin-bottom: 5px;
  font-family: "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

.mw_wp_form_complete {
  width: 70%;
}
@media (max-width: 896px) {
  .mw_wp_form_complete {
    width: 100%;
  }
}
.mw_wp_form_complete {
  margin-top: 40px;
  border: 1px #000 solid;
  padding: 40px;
  font-size: 14px;
}

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

/*----------------------------------------------------
  .stalker
--------------------------------------------------- */
#stalker {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
@media (max-width: 896px) {
  #stalker {
    display: none;
  }
}

#stalker span {
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 0px;
  height: 0px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  backdrop-filter: blur(3px);
  transition: all 0.3s 0s ease;
}

body.hide-cursor,
body.hide-cursor * {
  cursor: none !important;
}

#stalker.hov_ span {
  top: -40px;
  left: -40px;
  width: 80px;
  height: 80px;
  background: rgba(0, 0, 0, 0.8);
}

#stalker span:after {
  visibility: hidden;
  opacity: 0;
  transition: all 0s 0s ease;
}

#stalker.hov_ span:after {
  white-space: nowrap;
  content: "view";
  transition: all 0.2s 0.2s ease;
  visibility: visible;
  opacity: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: scale(1, 1) translate(-50%, -50%);
  font-size: 12px;
  line-height: 1;
  font-family: "Manrope", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 700;
  color: #f9f9f5;
}

.lb-data .lb-close {
  margin-top: 15px;
  background: url(../img/lightbox/close.png) top right no-repeat;
  background-size: 15px !important;
}/*# sourceMappingURL=common.css.map */