@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: 1.5;
  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)) {
  -webkit-clip-path: inset(50%) !important;
          clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
}

figure {
  margin-bottom: 0;
}

/*
font-family: 'EB Garamond', serif;
font-family: 'Zen Old Mincho', serif;

*/
/*----------------------------------------------------
 mixin
--------------------------------------------------- */
html {
  scroll-padding-top: 160px;
}

html, body {
  font-family: "EB Garamond", "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: #FFF;
  background: #000;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  min-height: 100%;
}

body.lang-jp .lang_jp {
  display: block;
}
body.lang-jp .lang_en {
  display: none;
}
body.lang-en .lang_jp {
  display: none;
}
body.lang-en .lang_en {
  display: block;
}

.pc_only {
  display: block;
}

.sp_only {
  display: none;
}

@media only screen and (max-width: 896px) {
  html, body {
    cursor: auto;
  }
  .pc_only {
    display: none;
  }
  .sp_only {
    display: block;
  }
  body.page {
    padding-top: 0vw;
  }
}
img {
  width: 100%;
  height: auto;
}

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

::-moz-selection {
  background: #ccc;
  color: #fff;
} */
/*----------------------------------------------------
 swiper
--------------------------------------------------- */
.swiper-wrapper {
  transition-timing-function: ease;
}

/*----------------------------------------------------
 link
--------------------------------------------------- */
a:link, a:visited, a:active {
  color: #3c6482;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
a:hover {
  text-decoration: none;
}

/*----------------------------------------------------
  .scrollview
--------------------------------------------------- */
.scrollview, .fade_up {
  opacity: 0;
  transform: scale(1, 1) translate(0%, 10px);
}

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

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

/*----------------------------------------------------
  .wrapper
--------------------------------------------------- */
.wrapper {
  position: relative;
  transition: all 0.8s 0s ease;
  z-index: 3;
  min-height: 100vh;
  margin-bottom: 120vh;
}
@media (max-width: 896px) {
  .wrapper {
    margin-bottom: 70vh;
  }
}

/*----------------------------------------------------
 block_header
--------------------------------------------------- */
.block_loading {
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 90;
  background: #000 url(../img/common/logo_w.png) no-repeat center center;
  background-size: 220px auto;
}
@media (max-width: 896px) {
  .block_loading {
    background: #000 url(../img/common/logo_w.png) no-repeat center center;
    background-size: 120px auto;
  }
}
body.pageLoad .block_loading {
  opacity: 0;
  visibility: hidden;
  transition: all 1.5s 0.4s ease;
}

/*----------------------------------------------------
 block_header
--------------------------------------------------- */
.block_header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 10;
  transition: all 0.5s 0s ease;
}
body.page_scroll .block_header {
  transform: scale(1, 1) translate(0%, -40px);
}
@media (max-width: 896px) {
  body.page_scroll .block_header {
    transform: scale(1, 1) translate(0%, 0px);
  }
}

.block_header .logo {
  position: absolute;
  top: 60px;
  left: 60px;
  width: 130px;
}
@media (max-width: 896px) {
  .block_header .logo {
    top: 30px;
    left: 30px;
    width: 80px;
  }
}
.block_header ul.menu {
  position: absolute;
  top: 60px;
  right: 120px;
  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_header ul.menu {
    display: none;
  }
}
.block_header ul.menu > li {
  margin-left: 2vw;
  position: relative;
}
.block_header ul.menu > li > a {
  display: block;
  color: #FFF;
  font-size: clamp(0.75rem, 0.75rem + 0vw, 0.75rem);
  letter-spacing: 0.05em;
  font-family: "aktiv-grotesk", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  transition: all 0.5s 0s ease;
}
.block_header ul.menu > li > a:hover {
  opacity: 0.5;
}
.block_header ul.menu > li:hover ul.sub_menu {
  opacity: 1;
  visibility: visible;
  transform: translate(0px, 0px);
}
.block_header ul.menu > li ul.sub_menu {
  position: absolute;
  top: 22px;
  left: 0;
  white-space: nowrap;
  line-height: 1;
  padding-top: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s 0s ease;
  transform: translate(0px, 10px);
}
.block_header ul.menu > li ul.sub_menu li {
  margin-bottom: 10px;
}
.block_header ul.menu > li ul.sub_menu li a {
  display: block;
  color: #FFF;
  transition: all 0.5s 0s ease;
  padding: 5px 0;
  position: relative;
}
.block_header ul.menu > li ul.sub_menu li a:hover {
  opacity: 0.5;
}
.block_header ul.menu > li ul.sub_menu li a:hover span.jp {
  transform: translate(-16px, 0px);
}
.block_header ul.menu > li ul.sub_menu li a:hover span.en {
  transform: translate(-16px, 0px);
}
.block_header ul.menu > li ul.sub_menu li a:hover::before {
  width: 0;
}
.block_header ul.menu > li ul.sub_menu li a::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 1px;
  background: #FFF;
  transition: all 0.3s 0s ease;
}
.block_header ul.menu > li ul.sub_menu li a span.jp {
  display: block;
  font-size: clamp(0.6875rem, 0.6875rem + 0vw, 0.6875rem);
  letter-spacing: 0.05em;
  font-family: "aktiv-grotesk", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  position: relative;
  padding-left: 16px;
  transition: all 0.5s 0s ease;
}
.block_header ul.menu > li ul.sub_menu li a span.en {
  padding-top: 5px;
  display: block;
  font-size: clamp(0.5625rem, 0.5625rem + 0vw, 0.5625rem);
  letter-spacing: 0.05em;
  font-family: "aktiv-grotesk", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  padding-left: 16px;
  opacity: 0.5;
  transition: all 0.5s 0s ease;
}
.block_header .m_box {
  position: absolute;
  top: 0;
  right: 80px;
  display: block;
  width: 30px;
  height: 75px;
  border-bottom: 2px #aaa solid;
  border-right: 2px #aaa solid;
  border-bottom-right-radius: 20px;
}
@media (max-width: 896px) {
  .block_header .m_box {
    display: none;
  }
}

/*----------------------------------------------------
  .sp_menu
--------------------------------------------------- */
.block_navi a {
  position: fixed;
  z-index: 110;
  top: 0%;
  right: 0px;
  transition: all 0.4s 0s ease;
  display: none;
}
@media (max-width: 896px) {
  .block_navi a {
    width: 70px;
    height: 70px;
    display: block;
  }
}
.block_navi a i {
  display: none;
}
.block_navi a .wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  margin-left: -20px;
  overflow: hidden;
  transition: all 0.4s 0s ease;
}
@media (max-width: 896px) {
  .block_navi a .wrap {
    width: 28px;
    height: 28px;
    margin-top: -14px;
    margin-left: -14px;
  }
}
.block_navi a span.l1 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 1px;
  margin-top: -4px;
  margin-left: -25px;
  background: #FFF;
  transform-origin: center center;
  transition: all 0.5s 0s ease;
}
.block_navi a span.l2 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 1px;
  margin-top: 4px;
  margin-left: -25px;
  background: #FFF;
  transform-origin: center center;
  transition: all 0.5s 0s ease;
}

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

/*----------------------------------------------------
  .block_sp_menu
--------------------------------------------------- */
.menu_bg {
  display: block;
  position: fixed;
  top: 0%;
  right: 0px;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  opacity: 0;
  transition: all 0.5s 0s ease;
  z-index: 21;
  visibility: hidden;
}

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

.block_sp_menu {
  display: block;
  position: fixed;
  top: 0%;
  right: 0px;
  width: 300px;
  height: 100%;
  z-index: 22;
  transition: all 0.8s 0s cubic-bezier(0.875, 0.005, 0.09, 0.99);
  background: rgb(0, 0, 0);
  transform: translate(100%, 0%);
  visibility: hidden;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

body.menu_open .block_sp_menu {
  opacity: 1;
  visibility: visible;
  transform: translate(0%, 0px);
}
body.menu_open .block_sp_menu .menu_image figure {
  transform: scale3d(1, 1, 1) translate(0px, 0px) rotate(0deg);
}

.block_sp_menu .inner {
  padding: 80px 20px;
}
.block_sp_menu .inner ul.menu > li {
  margin-bottom: 2vw;
  position: relative;
  border-top: 1px #333 solid;
  padding-top: 2vw;
}
.block_sp_menu .inner ul.menu > li > a {
  display: block;
  color: #FFF;
  padding: 3vw 0;
  font-size: clamp(0.75rem, 0.75rem + 0vw, 0.75rem);
  letter-spacing: 0.05em;
  font-family: "aktiv-grotesk", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  transition: all 0.5s 0s ease;
}
.block_sp_menu .inner ul.menu > li:hover ul.sub_menu {
  opacity: 1;
  visibility: visible;
  transform: translate(0px, 0px);
}
.block_sp_menu .inner ul.menu > li ul.sub_menu {
  white-space: nowrap;
  line-height: 1;
  padding-top: 10px;
  margin-left: 20px;
}
.block_sp_menu .inner ul.menu > li ul.sub_menu li {
  margin-bottom: 10px;
  border-top: 1px #333 solid;
  padding-top: 2vw;
}
.block_sp_menu .inner ul.menu > li ul.sub_menu li a {
  display: block;
  color: #FFF;
  transition: all 0.5s 0s ease;
  padding: 2vw 0;
  position: relative;
}
.block_sp_menu .inner ul.menu > li ul.sub_menu li a:hover {
  opacity: 0.5;
}
.block_sp_menu .inner ul.menu > li ul.sub_menu li a:hover span.jp {
  transform: translate(-16px, 0px);
}
.block_sp_menu .inner ul.menu > li ul.sub_menu li a:hover span.en {
  transform: translate(-16px, 0px);
}
.block_sp_menu .inner ul.menu > li ul.sub_menu li a:hover::before {
  width: 0;
}
.block_sp_menu .inner ul.menu > li ul.sub_menu li a::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 1px;
  background: #FFF;
  transition: all 0.3s 0s ease;
}
.block_sp_menu .inner ul.menu > li ul.sub_menu li a span.jp {
  display: block;
  font-size: clamp(0.6875rem, 0.6875rem + 0vw, 0.6875rem);
  letter-spacing: 0.05em;
  font-family: "aktiv-grotesk", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  position: relative;
  padding-left: 16px;
  transition: all 0.5s 0s ease;
}
.block_sp_menu .inner ul.menu > li ul.sub_menu li a span.en {
  padding-top: 5px;
  display: block;
  font-size: clamp(0.5625rem, 0.5625rem + 0vw, 0.5625rem);
  letter-spacing: 0.05em;
  font-family: "aktiv-grotesk", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  padding-left: 16px;
  opacity: 0.5;
  transition: all 0.5s 0s ease;
}

/*----------------------------------------------------
 link_btn
--------------------------------------------------- */
.link_btn a {
  display: inline-block;
  border: 2px #aaa solid;
  position: relative;
  line-height: 1.5;
  padding: 20px 80px 20px 40px;
  border-radius: 50px;
  color: #aaa;
  transition: all 0.5s 0s ease;
}
.link_btn a:hover {
  background: #FFF;
  color: #000;
  border: 2px #FFF solid;
}
.link_btn a:hover svg {
  fill: #000;
  transform: translate(10px, 0px) rotate(0deg);
}
.link_btn a span {
  display: block;
  font-family: "aktiv-grotesk", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 16px;
  letter-spacing: 0.1em;
}
.link_btn a svg {
  position: absolute;
  top: 50%;
  margin-top: -12px;
  right: 20px;
  fill: #aaa;
  width: 24px;
  height: 24px;
  transition: all 0.5s 0s ease;
}

.return_link_btn a {
  display: inline-block;
  border: 2px #aaa solid;
  position: relative;
  line-height: 1.5;
  padding: 20px 40px 20px 80px;
  border-radius: 50px;
  color: #aaa;
  transition: all 0.5s 0s ease;
}
.return_link_btn a:hover {
  background: #FFF;
  color: #000;
  border: 2px #FFF solid;
}
.return_link_btn a:hover svg {
  fill: #000;
  transform: translate(-10px, 0px) rotate(180deg);
}
.return_link_btn a span {
  display: block;
  font-family: "aktiv-grotesk", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 16px;
  letter-spacing: 0.1em;
}
.return_link_btn a svg {
  position: absolute;
  top: 50%;
  margin-top: -12px;
  left: 20px;
  fill: #aaa;
  width: 24px;
  height: 24px;
  transition: all 0.5s 0s ease;
  transform: translate(0px, 0px) rotate(180deg);
}

/*----------------------------------------------------
 block_mainvisual
--------------------------------------------------- */
.block_mainvisual {
  position: relative;
  height: 100vh;
}
.block_mainvisual .slide {
  position: absolute;
  top: 0%;
  left: 0%;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.block_mainvisual .slide .column {
  position: relative;
  top: 0%;
  left: 0%;
  height: 100%;
  width: 100%;
}
.block_mainvisual .slide .column span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.block_mainvisual .textarea {
  position: absolute;
  bottom: 100px;
  left: 0vw;
  z-index: 2;
  width: 100%;
}
.block_mainvisual .textarea .inner {
  padding: 0 80px;
  margin: 0 auto;
  max-width: 1600px;
}
@media (max-width: 896px) {
  .block_mainvisual .textarea .inner {
    padding: 0 20px;
  }
}
.block_mainvisual .textarea .copy {
  font-family: "aktiv-grotesk", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 2vw;
  font-weight: 500;
}
@media (max-width: 896px) {
  .block_mainvisual .textarea .copy {
    font-size: 4vw;
  }
}
.block_mainvisual .textarea .title {
  font-family: "aktiv-grotesk", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 1.2vw;
  font-weight: 500;
}
@media (max-width: 896px) {
  .block_mainvisual .textarea .title {
    font-size: 3vw;
  }
}
.block_mainvisual .scroll {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30px;
  height: 170px;
  z-index: 2;
}
.block_mainvisual .scroll .line {
  display: block;
  width: 30px;
  height: 100px;
  border-top: 2px #aaa solid;
  border-left: 2px #aaa solid;
  border-top-left-radius: 20px;
}
.block_mainvisual .scroll .t {
  line-height: 1;
  position: absolute;
  top: 110px;
  left: 6px;
  font-family: "aktiv-grotesk", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 10px;
  transform: scale3d(1, 1, 1) translate(0px, 0px) rotate(90deg);
  transform-origin: left top;
  color: #aaa;
}

/*----------------------------------------------------
 block_about
--------------------------------------------------- */
.block_about {
  background: #000;
  padding: 100px 0;
  position: relative;
  z-index: 2;
}
.block_about .inner {
  padding: 0 80px;
  margin: 0 auto;
  max-width: 1600px;
}
@media (max-width: 896px) {
  .block_about .inner {
    padding: 0 20px;
  }
}
.block_about .inner .title {
  font-family: "aktiv-grotesk", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: clamp(0.875rem, 0.8072033898rem + 0.3389830508vw, 1.125rem);
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.05em;
  position: relative;
  padding-left: 40px;
  color: #aaa;
}
.block_about .inner .title::before {
  content: "";
  position: absolute;
  top: -185px;
  left: 0;
  width: 30px;
  height: 200px;
  display: block;
  border-left: 2px #aaa solid;
  border-bottom: 2px #aaa solid;
  border-bottom-left-radius: 10px;
  opacity: 0.7;
}
.block_about .inner .copy {
  padding-left: 40px;
  margin-top: 5%;
  font-family: "aktiv-grotesk", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: clamp(1rem, 0.8644067797rem + 0.6779661017vw, 1.5rem);
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.05em;
  font-weight: 300;
  letter-spacing: 0.1em;
}
@media (max-width: 896px) {
  .block_about .inner .copy {
    margin-top: 10%;
  }
}
.block_about .inner figure {
  margin-top: 10%;
  position: relative;
  left: -80px;
  width: 70%;
}
@media (max-width: 896px) {
  .block_about .inner figure {
    left: -20px;
    width: 100%;
  }
}
.block_about .inner .textarea {
  margin-top: 5%;
  margin-left: 10%;
  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_about .inner .textarea {
    flex-direction: column;
    margin-top: 10%;
  }
}
.block_about .inner .textarea p {
  width: 48%;
  font-family: "aktiv-grotesk", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: clamp(0.75rem, 0.7161016949rem + 0.1694915254vw, 0.875rem);
  line-height: 2;
  font-weight: 300;
  letter-spacing: 0.1em;
}
@media (max-width: 896px) {
  .block_about .inner .textarea p {
    width: 100%;
    margin-bottom: 20px;
  }
}
.block_about .inner .textarea p.en {
  font-family: "aktiv-grotesk", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: clamp(0.625rem, 0.5911016949rem + 0.1694915254vw, 0.75rem);
  line-height: 2;
  font-weight: 300;
  letter-spacing: 0.1em;
  opacity: 0.5;
}
.block_about .inner .link_btn {
  text-align: right;
  margin-top: 16%;
  margin-bottom: -20%;
}
@media (max-width: 896px) {
  .block_about .inner .link_btn {
    margin-top: 5%;
    margin-bottom: 10%;
  }
}

/*----------------------------------------------------
 block_service
--------------------------------------------------- */
.block_service {
  background: #000;
  padding: 100px 0 10% 0;
  position: relative;
  z-index: 2;
  position: relative;
}
@media (max-width: 896px) {
  .block_service {
    padding-bottom: 100px;
  }
}
.block_service::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 2px;
  height: 10%;
  background: #aaa;
}
@media (max-width: 896px) {
  .block_service::after {
    height: 120px;
  }
}
.block_service .inner {
  padding: 0 80px;
  margin: 0 auto;
  max-width: 1600px;
}
@media (max-width: 896px) {
  .block_service .inner {
    padding: 0 20px;
  }
}
.block_service .inner .title {
  font-family: "aktiv-grotesk", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: clamp(0.875rem, 0.8072033898rem + 0.3389830508vw, 1.125rem);
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.05em;
  position: relative;
  padding-right: 40px;
  text-align: right;
  color: #FFF;
}
.block_service .inner .title::before {
  content: "";
  position: absolute;
  top: -385px;
  right: 0;
  width: 30px;
  height: 400px;
  display: block;
  border-right: 2px #FFF solid;
  border-bottom: 2px #FFF solid;
  border-bottom-right-radius: 10px;
  opacity: 0.7;
}
.block_service .inner .copy {
  margin-top: -20px;
  margin-left: 10%;
  font-family: "aktiv-grotesk", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: clamp(1rem, 0.8644067797rem + 0.6779661017vw, 1.5rem);
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.05em;
  font-weight: 300;
  letter-spacing: 0.1em;
}
@media (max-width: 896px) {
  .block_service .inner .copy {
    margin-top: 5%;
    margin-left: 0%;
  }
}
.block_service .inner .exp {
  margin-left: 10%;
  margin-top: 5%;
}
@media (max-width: 896px) {
  .block_service .inner .exp {
    margin-top: 5%;
    margin-left: 0%;
  }
}
.block_service .inner .exp p {
  width: calc(100% - 300px);
  font-family: "aktiv-grotesk", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: clamp(0.75rem, 0.7161016949rem + 0.1694915254vw, 0.875rem);
  line-height: 2;
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
@media (max-width: 896px) {
  .block_service .inner .exp p {
    width: 100%;
  }
}
.block_service .inner .exp p.en {
  font-family: "aktiv-grotesk", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: clamp(0.625rem, 0.5911016949rem + 0.1694915254vw, 0.75rem);
  line-height: 2;
  font-weight: 300;
  letter-spacing: 0.1em;
  opacity: 0.5;
}
.block_service .list {
  margin-top: 10%;
}
.block_service .list .column {
  margin-top: 10%;
}
@media (max-width: 896px) {
  .block_service .list .column {
    margin-top: 15%;
    overflow: hidden;
  }
}
.block_service .list .column:first-child {
  margin-top: 0;
}
.block_service .list .column a {
  display: block;
  position: relative;
}
.block_service .list .column a:hover figure {
  opacity: 0.75;
}
.block_service .list .column a:hover .textarea .more svg {
  transform: scale(1.3) translate(5px, 0px) rotate(0deg);
}
@media (max-width: 896px) {
  .block_service .list .column a:hover .textarea .more svg {
    transform: scale(0.8) translate(5px, 0px) rotate(0deg);
  }
}
.block_service .list .column a figure {
  margin-left: 10%;
  transition: all 0.6s 0s ease;
  position: relative;
}
@media (max-width: 896px) {
  .block_service .list .column a figure {
    margin-left: 0;
  }
}
.block_service .list .column a figure:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
}
.block_service .list .column a figure .img_wrap {
  position: relative;
  padding-top: 30%;
}
@media (max-width: 896px) {
  .block_service .list .column a figure .img_wrap {
    padding-top: 70%;
  }
}
.block_service .list .column a figure .img_wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0b317a;
  mix-blend-mode: soft-light;
  opacity: 0;
  transition: all 0.6s 0s ease;
}
.block_service .list .column a figure img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  opacity: 0;
}
.block_service .list .column a figure img.lazyloaded {
  opacity: 1;
  transition: all 0.6s 0.1s ease;
}
.block_service .list .column a .textarea {
  position: relative;
  padding: 0 80px;
  margin: 0 auto;
  max-width: 1600px;
  color: #FFF;
  margin-top: -10%;
}
@media (max-width: 896px) {
  .block_service .list .column a .textarea {
    padding: 0 20px;
  }
}
.block_service .list .column a .textarea .c_title {
  font-family: "aktiv-grotesk", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: clamp(1rem, 0.8644067797rem + 0.6779661017vw, 1.5rem);
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.05em;
  position: relative;
  text-shadow: 1px 1px 5px #000;
}
.block_service .list .column a .textarea .c_title::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -110px;
  width: 100px;
  height: 2px;
  background: #aaa;
}
.block_service .list .column a .textarea .en {
  font-family: "aktiv-grotesk", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: clamp(0.625rem, 0.5911016949rem + 0.1694915254vw, 0.75rem);
  line-height: 2;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: #aaa;
}
.block_service .list .column a .textarea p {
  font-family: "aktiv-grotesk", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: clamp(0.75rem, 0.7161016949rem + 0.1694915254vw, 0.875rem);
  line-height: 2;
  font-weight: 300;
  letter-spacing: 0.1em;
  width: 50%;
  margin-top: 2%;
}
@media (max-width: 896px) {
  .block_service .list .column a .textarea p {
    width: 100%;
  }
}
.block_service .list .column a .textarea .more {
  position: absolute;
  top: 0%;
  right: 100px;
  width: 100px;
  height: 100px;
  border: 2px #aaa solid;
  border-radius: 100px;
  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_service .list .column a .textarea .more {
    top: -10%;
    right: 20px;
    width: 60px;
    height: 60px;
  }
}
.block_service .list .column a .textarea .more::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -100px;
  width: 100px;
  height: 2px;
  background: #aaa;
}
.block_service .list .column a .textarea .more svg {
  fill: #aaa;
  transform: scale(1.3);
  transition: all 0.6s 0s ease;
}
@media (max-width: 896px) {
  .block_service .list .column a .textarea .more svg {
    transform: scale(0.8);
  }
}
.block_service .tech {
  padding: 0 80px;
  margin-top: 10%;
  position: relative;
  overflow: hidden;
}
@media (max-width: 896px) {
  .block_service .tech {
    padding: 0 40px;
    margin-top: 20%;
  }
}
.block_service .tech a {
  margin: 0 auto;
  max-width: 900px;
  display: block;
}
.block_service .tech a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -50vw;
  width: 200vw;
  height: 2px;
  background: #aaa;
}
.block_service .tech a:hover figure .img_wrap::after {
  opacity: 0.75;
}
.block_service .tech a figure .img_wrap {
  position: relative;
  padding-top: 70%;
}
.block_service .tech a figure .img_wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  transition: all 0.6s 0s ease;
}
.block_service .tech a figure img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  opacity: 0;
}
.block_service .tech a figure img.lazyloaded {
  opacity: 1;
  transition: all 0.6s 0.1s ease;
}
.block_service .tech a .textarea {
  position: absolute;
  top: 10%;
  left: 10%;
  width: 80%;
  height: 80%;
  border-radius: 20px;
  border: 2px #aaa solid;
  display: flex;
  flex-direction: column; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  color: #FFF;
}
.block_service .tech a .textarea .en {
  font-family: "aktiv-grotesk", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: clamp(2rem, 2rem + 0vw, 2rem);
  line-height: 2;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-shadow: 1px 1px 5px #000;
}
@media (max-width: 896px) {
  .block_service .tech a .textarea .en {
    font-size: 7vw;
  }
}
.block_service .tech a .textarea .c_title {
  font-family: "aktiv-grotesk", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: clamp(0.75rem, 0.7161016949rem + 0.1694915254vw, 0.875rem);
  line-height: 2;
  font-weight: 300;
  letter-spacing: 0.1em;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-shadow: 1px 1px 5px #000;
}
@media (max-width: 896px) {
  .block_service .tech a .textarea .c_title {
    font-size: 4vw;
  }
}

/*----------------------------------------------------
 block_point
--------------------------------------------------- */
.block_point {
  background: url(../img/top/ATL_-382-NR.jpg) no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  padding: 10% 0;
  position: relative;
  z-index: 2;
  text-align: center;
}
@media (max-width: 896px) {
  .block_point {
    padding: 100px 0;
    background-attachment: scroll;
  }
}
.block_point::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 20%;
  background: #aaa;
  z-index: 2;
}
@media (max-width: 896px) {
  .block_point::before {
    height: 15%;
  }
}
.block_point::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
@media (max-width: 896px) {
  .block_point::after {
    height: 80%;
  }
}
.block_point .message {
  position: relative;
  padding: 0 80px;
  margin: 0 auto;
  max-width: 1600px;
  z-index: 2;
  font-family: "aktiv-grotesk", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: clamp(1rem, 0.7288135593rem + 1.3559322034vw, 2rem);
  line-height: 2;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-shadow: 1px 1px 5px #000;
}
@media (max-width: 896px) {
  .block_point .message {
    padding: 0 20px;
    font-size: 5vw;
  }
}
.block_point .link_btn {
  position: relative;
  z-index: 2;
  margin-top: 2%;
}

/*----------------------------------------------------
 block_products
--------------------------------------------------- */
.block_products {
  background: #333;
  padding: 100px 0 10% 0;
  position: relative;
  z-index: 2;
  position: relative;
}
.block_products::after {
  content: "";
  position: absolute;
  top: -120px;
  left: 50%;
  width: 2px;
  height: 200px;
  background: #aaa;
}
body.page .block_products {
  padding: 10px 0 10% 0;
}
body.page .block_products::after {
  display: none;
}

.block_products .inner {
  padding: 0 80px;
  margin: 0 auto;
  max-width: 1200px;
}
@media (max-width: 896px) {
  .block_products .inner {
    padding: 0 40px;
  }
}
.block_products .inner .title {
  font-family: "aktiv-grotesk", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: clamp(0.875rem, 0.8072033898rem + 0.3389830508vw, 1.125rem);
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.05em;
  position: relative;
  text-align: center;
  color: #FFF;
}
.block_products .inner .list {
  margin-top: 10%;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.block_products .inner .list .column {
  width: 45%;
  margin-right: 10%;
}
.block_products .inner .list .column:nth-child(2n) {
  margin-right: 0;
  margin-top: 10%;
}
@media (max-width: 896px) {
  .block_products .inner .list .column {
    width: 100%;
    margin-right: 0;
    margin-top: 10%;
  }
}
.block_products .inner .list .column a {
  display: block;
  transition: all 0.6s 0s ease;
}
.block_products .inner .list .column a:hover {
  opacity: 1;
}
.block_products .inner .list .column a .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.block_products .inner .list .column a figure {
  position: relative;
  margin-bottom: 5%;
}
.block_products .inner .list .column a figure::before {
  content: "";
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  background: #d7d7d7;
  border-top-left-radius: 40px;
  border-bottom-right-radius: 40px;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.2);
}
.block_products .inner .list .column a figure .img_wrap {
  position: relative;
  padding-top: 100%;
}
.block_products .inner .list .column a figure .img_wrap img {
  display: block;
  position: absolute;
  top: 15%;
  left: 15%;
  width: 70%;
  height: 70%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  opacity: 0;
}
.block_products .inner .list .column a figure .img_wrap img.lazyloaded {
  opacity: 1;
  transition: all 0.6s 0.1s ease;
}
.block_products .inner .list .column a .textarea {
  color: #FFF;
  position: relative;
  padding-right: 80px;
}
.block_products .inner .list .column a .textarea .c_title {
  font-family: "aktiv-grotesk", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: clamp(1rem, 0.8644067797rem + 0.6779661017vw, 1.5rem);
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.block_products .inner .list .column a .textarea .sub {
  font-family: "aktiv-grotesk", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: clamp(0.5625rem, 0.5116525424rem + 0.2542372881vw, 0.75rem);
  line-height: 2;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.block_products .inner .list .column a .textarea .more {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  border-radius: 60px;
  border: 2px #aaa solid;
  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_products .inner .list .column a .textarea .more {
    width: 50px;
    height: 50px;
  }
}
.block_products .inner .list .column a .textarea .more svg {
  fill: #aaa;
  transform: scale(1);
  transition: all 0.6s 0s ease;
}
@media (max-width: 896px) {
  .block_products .inner .list .column a .textarea .more svg {
    transform: scale(0.8);
  }
}
@media (max-width: 896px) {
  .block_products .inner .link_btn {
    margin-top: 10%;
  }
}

/*----------------------------------------------------
 block_news
--------------------------------------------------- */
.block_news {
  background: #000;
  padding: 100px 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
body.page .block_news {
  padding: 10px 0 10% 0;
}

.block_news .inner {
  padding: 0 0 0 80px;
  margin: 0 auto;
}
@media (max-width: 896px) {
  .block_news .inner {
    padding-left: 20px;
  }
}
.block_news .inner .title {
  font-family: "aktiv-grotesk", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: clamp(0.875rem, 0.8072033898rem + 0.3389830508vw, 1.125rem);
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.05em;
  position: relative;
  padding-left: 40px;
  color: #aaa;
}
.block_news .inner .title::before {
  content: "";
  position: absolute;
  top: -185px;
  left: 0;
  width: 30px;
  height: 200px;
  display: block;
  border-left: 2px #aaa solid;
  border-bottom: 2px #aaa solid;
  border-bottom-left-radius: 10px;
  opacity: 0.7;
}
.block_news .inner .list {
  margin-left: 20%;
}
@media (max-width: 896px) {
  .block_news .inner .list {
    margin: 0;
  }
}
.block_news .inner .list .column {
  border-top: 1px #333 solid;
  padding: 5% 10% 5% 0;
}
.block_news .inner .list .column:first-child {
  border: none;
}
.block_news .inner .list .column .in {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: space-between; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
}
@media (max-width: 896px) {
  .block_news .inner .list .column .in {
    flex-wrap: wrap;
    flex-direction: initial;
    align-items: flex-start; /* flex-start  center  */
  }
}
.block_news .inner .list .column .in time {
  width: 100px;
  font-size: 12px;
}
@media (max-width: 896px) {
  .block_news .inner .list .column .in time {
    margin-bottom: 10px;
  }
}
.block_news .inner .list .column .in ul.category {
  line-height: 1;
  width: 140px;
}
@media (max-width: 896px) {
  .block_news .inner .list .column .in ul.category {
    width: calc(100% - 100px);
    margin-bottom: 10px;
  }
}
.block_news .inner .list .column .in ul.category li a {
  border: 1px #aaa solid;
  padding: 14px 20px;
  border-radius: 20px;
  display: inline-block;
  font-size: 10px;
  color: #FFF;
  transition: all 0.6s 0s ease;
  margin-top: -10px;
}
@media (max-width: 896px) {
  .block_news .inner .list .column .in ul.category li a {
    padding: 8px 10px;
  }
}
.block_news .inner .list .column .in ul.category li a:hover {
  opacity: 0.5;
}
.block_news .inner .list .column .in .c_title {
  width: calc(100% - 280px);
}
@media (max-width: 896px) {
  .block_news .inner .list .column .in .c_title {
    width: 100%;
  }
}
.block_news .inner .list .column .in .c_title a {
  display: block;
  font-family: "aktiv-grotesk", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: clamp(0.75rem, 0.7161016949rem + 0.1694915254vw, 0.875rem);
  line-height: 2;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: #FFF;
  transition: all 0.6s 0s ease;
}
.block_news .inner .list .column .in .c_title a:hover {
  opacity: 0.5;
}
.block_news .inner .link_btn {
  text-align: right;
  margin-top: 5%;
  margin-right: 60px;
  position: relative;
}
@media (max-width: 896px) {
  .block_news .inner .link_btn {
    margin-right: 20px;
  }
}
.block_news .inner .link_btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  margin-right: -100vw;
  margin-top: -1px;
  width: 100vw;
  height: 2px;
  background: #aaa;
}

/*----------------------------------------------------
 block_recruit
--------------------------------------------------- */
.block_recruit {
  background: #000;
  padding: 10% 0;
  position: relative;
  z-index: 2;
}
.block_recruit a {
  margin: 0 auto;
  max-width: 1600px;
  display: block;
}
.block_recruit a:hover figure .img_wrap::after {
  opacity: 0.8;
}
.block_recruit a figure .img_wrap {
  position: relative;
  padding-top: 40%;
}
.block_recruit a figure .img_wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.5;
  transition: all 0.6s 0s ease;
}
.block_recruit a figure img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 100%;
     object-position: 50% 100%;
  opacity: 0;
}
.block_recruit a figure img.lazyloaded {
  opacity: 1;
  transition: all 0.6s 0.1s ease;
}
.block_recruit a .textarea {
  position: absolute;
  top: 10%;
  left: 10%;
  width: 80%;
  height: 80%;
  display: flex;
  flex-direction: column; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  color: #FFF;
}
.block_recruit a .textarea .en {
  font-family: "aktiv-grotesk", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: clamp(2rem, 2rem + 0vw, 2rem);
  line-height: 2;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-shadow: 1px 1px 5px #000;
}
.block_recruit a .textarea p {
  font-family: "aktiv-grotesk", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: clamp(0.75rem, 0.7161016949rem + 0.1694915254vw, 0.875rem);
  line-height: 2;
  font-weight: 300;
  letter-spacing: 0.1em;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-shadow: 1px 1px 5px #000;
}

/*----------------------------------------------------
 block_contact
--------------------------------------------------- */
.block_contact {
  background: #000;
  position: relative;
  z-index: 2;
  padding-bottom: 10%;
}
.block_contact a {
  margin: 0 auto;
  max-width: 800px;
  display: block;
  padding: 2% 10%;
}
.block_contact a .textarea {
  display: flex;
  flex-direction: column; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  color: #FFF;
}
.block_contact a .textarea .en {
  font-family: "aktiv-grotesk", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: clamp(3.75rem, 3.75rem + 0vw, 3.75rem);
  line-height: 2;
  font-weight: 300;
  letter-spacing: 0em;
  text-shadow: 1px 1px 5px #000;
}
@media (max-width: 896px) {
  .block_contact a .textarea .en {
    font-size: 20px;
  }
}
.block_contact a .textarea .jp {
  font-family: "aktiv-grotesk", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: clamp(0.75rem, 0.7161016949rem + 0.1694915254vw, 0.875rem);
  line-height: 2;
  font-weight: 300;
  letter-spacing: 0.1em;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-shadow: 1px 1px 5px #000;
}
.block_contact a .textarea p {
  margin-top: 5%;
  font-family: "aktiv-grotesk", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: clamp(0.75rem, 0.7161016949rem + 0.1694915254vw, 0.875rem);
  line-height: 2;
  font-weight: 300;
  letter-spacing: 0.1em;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-shadow: 1px 1px 5px #000;
}

/*----------------------------------------------------
 block_footer
--------------------------------------------------- */
.block_footer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2;
  background: #333;
  background-size: cover;
  opacity: 0;
  visibility: hidden;
}
body.footer_view .block_footer {
  opacity: 1;
  visibility: visible;
}

.block_footer a {
  color: #FFF;
  text-decoration: none;
}
.block_footer .slide {
  position: absolute;
  top: 0%;
  left: 0%;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.block_footer .slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.5;
  transition: all 0.6s 0s ease;
  z-index: 10;
}
.block_footer .slide .column {
  position: relative;
  top: 0%;
  left: 0%;
  height: 100%;
  width: 100%;
}
.block_footer .slide .column span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.block_footer .textarea {
  position: absolute;
  bottom: 40px;
  left: 0vw;
  z-index: 20;
  width: 100%;
}
.block_footer .textarea .inner {
  padding: 0 80px;
  margin: 0 auto;
  max-width: 1600px;
}
@media (max-width: 896px) {
  .block_footer .textarea .inner {
    padding: 0 20px;
  }
}
.block_footer .textarea .wrap {
  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_footer .textarea .wrap {
    flex-direction: column;
  }
}
.block_footer .textarea .wrap .company {
  width: calc(100% - 820px);
}
@media (max-width: 896px) {
  .block_footer .textarea .wrap .company {
    width: 100%;
  }
}
.block_footer .textarea .wrap .menu_area {
  width: 800px;
  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_footer .textarea .wrap .menu_area {
    display: none;
  }
}
.block_footer .textarea .wrap .menu_area ul.menu {
  width: 30%;
  border-top: 2px #aaa solid;
  padding-top: 20px;
}
.block_footer .textarea .wrap .menu_area ul.menu > li {
  margin-bottom: 5px;
}
.block_footer .textarea .wrap .menu_area ul.menu > li > a {
  color: #FFF;
  display: block;
  color: #FFF;
  font-size: clamp(0.75rem, 0.75rem + 0vw, 0.75rem);
  letter-spacing: 0.05em;
  font-family: "aktiv-grotesk", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  transition: all 0.5s 0s ease;
}
.block_footer .textarea .wrap .menu_area ul.menu > li ul.sub_menu {
  white-space: nowrap;
  line-height: 1;
  padding-top: 20px;
  transition: all 0.5s 0s ease;
}
.block_footer .textarea .wrap .menu_area ul.menu > li ul.sub_menu li {
  margin-bottom: 10px;
}
.block_footer .textarea .wrap .menu_area ul.menu > li ul.sub_menu li a {
  display: block;
  color: #FFF;
  transition: all 0.5s 0s ease;
  padding: 5px 0;
  position: relative;
}
.block_footer .textarea .wrap .menu_area ul.menu > li ul.sub_menu li a:hover {
  opacity: 0.5;
}
.block_footer .textarea .wrap .menu_area ul.menu > li ul.sub_menu li a:hover span.jp {
  transform: translate(-16px, 0px);
}
.block_footer .textarea .wrap .menu_area ul.menu > li ul.sub_menu li a:hover span.en {
  transform: translate(-16px, 0px);
}
.block_footer .textarea .wrap .menu_area ul.menu > li ul.sub_menu li a:hover::before {
  width: 0;
}
.block_footer .textarea .wrap .menu_area ul.menu > li ul.sub_menu li a::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 1px;
  background: #FFF;
  transition: all 0.3s 0s ease;
}
.block_footer .textarea .wrap .menu_area ul.menu > li ul.sub_menu li a span.jp {
  display: block;
  font-size: clamp(0.6875rem, 0.6875rem + 0vw, 0.6875rem);
  letter-spacing: 0.05em;
  font-family: "aktiv-grotesk", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  position: relative;
  padding-left: 16px;
  transition: all 0.5s 0s ease;
}
.block_footer .textarea .wrap .menu_area ul.menu > li ul.sub_menu li a span.en {
  padding-top: 5px;
  display: block;
  font-size: clamp(0.5625rem, 0.5625rem + 0vw, 0.5625rem);
  letter-spacing: 0.05em;
  font-family: "aktiv-grotesk", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  padding-left: 16px;
  opacity: 0.5;
  transition: all 0.5s 0s ease;
}
.block_footer .textarea .c_name {
  font-family: "aktiv-grotesk", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: clamp(0.875rem, 0.8072033898rem + 0.3389830508vw, 1.125rem);
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.block_footer .textarea .address {
  font-family: "aktiv-grotesk", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: clamp(0.75rem, 0.7161016949rem + 0.1694915254vw, 0.875rem);
  line-height: 2;
  font-weight: 300;
  letter-spacing: 0.1em;
  position: relative;
  margin-top: 10px;
}
@media (max-width: 896px) {
  .block_footer .textarea .address {
    font-size: 10px;
  }
}
.block_footer .textarea .address::before {
  content: "Address";
  font-family: "aktiv-grotesk", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: clamp(0.5rem, 0.5rem + 0vw, 0.5rem);
  font-weight: 300;
  margin-right: 10px;
  display: block;
}
.block_footer .textarea .c {
  display: flex;
  flex-direction: column; /* row row-reverse column */
  justify-content: flex-start; /* flex-start  center  space-between */
  align-items: flex-start; /* flex-start  center  */
  line-height: 1;
  margin-top: 25px;
}
.block_footer .textarea .c .contact_t {
  font-family: "aktiv-grotesk", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: clamp(0.5rem, 0.5rem + 0vw, 0.5rem);
  font-weight: 300;
  margin-bottom: 15px;
}
.block_footer .textarea .c dl {
  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  */
  margin-bottom: 20px;
}
.block_footer .textarea .c dl dt {
  margin-right: 10px;
}
.block_footer .textarea .c dl dt svg {
  fill: #FFF;
}
.block_footer .textarea .c dl dd {
  font-family: "aktiv-grotesk", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 24px;
  font-weight: 700;
}
.block_footer .textarea .c dl dd img {
  width: 180px;
}
.block_footer .ft {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: flex-start; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  margin-top: 40px;
}
@media (max-width: 896px) {
  .block_footer .ft {
    flex-direction: column;
    align-items: flex-start; /* flex-start  center  */
  }
}
.block_footer .attention {
  font-size: 12px;
  letter-spacing: 0.1em;
  margin-right: 20px;
}
@media (max-width: 896px) {
  .block_footer .attention {
    font-size: 10px;
    margin-bottom: 10px;
  }
}
.block_footer .copyright {
  color: #FFF;
  font-family: "aktiv-grotesk", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 10px;
  letter-spacing: 0.1em;
}
@media (max-width: 896px) {
  .block_footer .copyright {
    bottom: 20px;
    font-size: 10px;
    text-align: left;
  }
}
.block_footer .page_scroll {
  display: block;
  position: absolute;
  bottom: 0;
  right: 10px;
  width: 30px;
  height: 200px;
  z-index: 100;
}
.block_footer .page_scroll .line {
  margin-top: 60px;
  display: block;
  width: 30px;
  height: 100px;
  border-bottom: 2px #aaa solid;
  border-left: 2px #aaa solid;
  border-bottom-left-radius: 20px;
}
.block_footer .page_scroll .t {
  line-height: 1;
  position: absolute;
  top: 0px;
  left: 6px;
  width: 80px;
  font-family: "aktiv-grotesk", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 10px;
  transform: scale3d(1, 1, 1) translate(0px, 0px) rotate(90deg);
  transform-origin: left top;
  color: #aaa;
}

/*----------------------------------------------------
 block_title
--------------------------------------------------- */
.block_title {
  background: #000;
  position: relative;
  z-index: 2;
}
.block_title figure {
  position: relative;
}
.block_title figure:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
}
.block_title figure .img_wrap {
  position: relative;
  padding-top: 30%;
}
@media (max-width: 896px) {
  .block_title figure .img_wrap {
    padding-top: 70%;
  }
}
.block_title figure .img_wrap img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  opacity: 0;
}
.block_title figure .img_wrap img.lazyloaded {
  opacity: 1;
  transition: all 0.6s 0.1s ease;
}
.block_title .textarea {
  position: absolute;
  bottom: 10%;
  left: 0;
  width: 100%;
}
.block_title .textarea .in {
  padding: 0 80px;
  margin: 0 auto;
  max-width: 1600px;
}
@media (max-width: 896px) {
  .block_title .textarea .in {
    padding: 0 20px;
  }
}
.block_title .textarea .in .title {
  font-family: "aktiv-grotesk", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: clamp(0.875rem, 0.8072033898rem + 0.3389830508vw, 1.125rem);
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.05em;
  position: relative;
  text-align: left;
  color: #FFF;
}
.block_title .textarea .in .title::before {
  content: "";
  position: absolute;
  top: -45px;
  left: -100px;
  width: 107px;
  height: 40px;
  display: block;
  border-right: 2px #FFF solid;
  border-top: 2px #FFF solid;
  border-top-right-radius: 10px;
  opacity: 0.7;
}
.block_title .textarea .in .jp {
  margin-top: 2%;
  font-family: "aktiv-grotesk", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: clamp(1rem, 0.8644067797rem + 0.6779661017vw, 1.5rem);
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.05em;
  letter-spacing: 0.1em;
  position: relative;
  text-shadow: 1px 1px 5px #000;
}

/*----------------------------------------------------
 block_article
--------------------------------------------------- */
.block_article {
  background: #000;
  padding: 0px 0 10% 0;
  position: relative;
  min-height: 100vh;
  z-index: 2;
  position: relative;
}
@media (max-width: 896px) {
  .block_article {
    padding-bottom: 100px;
  }
}
.block_article .inner {
  padding: 0 80px;
  margin: 0 auto;
  max-width: 1600px;
  position: relative;
}
@media (max-width: 896px) {
  .block_article .inner {
    padding: 0 20px;
  }
}
.block_article .inner .en_sub_title {
  margin-top: 10%;
  font-family: "aktiv-grotesk", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: clamp(0.875rem, 0.8072033898rem + 0.3389830508vw, 1.125rem);
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.05em;
  position: relative;
  color: #aaa;
}
@media (max-width: 896px) {
  .block_article .inner .en_sub_title {
    margin-top: 15%;
  }
}
.block_article .inner .en_sub_title::before {
  content: "";
  position: absolute;
  top: 13px;
  left: -100vw;
  width: 100vw;
  height: 2px;
  display: block;
  background: #aaa;
  margin-left: -5px;
  opacity: 0.7;
}
.block_article .inner .sub_title01 {
  margin-top: 10%;
  position: relative;
}
@media (max-width: 896px) {
  .block_article .inner .sub_title01 {
    margin-top: 15%;
  }
}
.block_article .inner .sub_title01 small {
  display: inline-block;
  margin-left: 10px;
}
@media (max-width: 896px) {
  .block_article .inner .sub_title01 small {
    display: block;
    margin-left: 0;
    padding-top: 10px;
  }
}
.block_article .inner .sub_title01 .jp {
  font-family: "aktiv-grotesk", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: clamp(1rem, 0.8644067797rem + 0.6779661017vw, 1.5rem);
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.block_article .inner .sub_title01 .en {
  display: block;
  font-family: "aktiv-grotesk", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: clamp(0.625rem, 0.5911016949rem + 0.1694915254vw, 0.75rem);
  line-height: 2;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: #aaa;
  padding-top: 0.5%;
}
.block_article .inner .sub_title02 {
  margin-top: 5%;
  margin-left: 20%;
  font-family: "aktiv-grotesk", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: clamp(0.875rem, 0.8072033898rem + 0.3389830508vw, 1.125rem);
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media (max-width: 896px) {
  .block_article .inner .sub_title02 {
    margin-left: 5%;
  }
}
.block_article .inner .sub_title02 small {
  display: inline-block;
  margin-left: 10px;
}
@media (max-width: 896px) {
  .block_article .inner .sub_title02 small {
    display: block;
    margin-left: 0;
    padding-top: 10px;
  }
}
.block_article .inner .textarea {
  margin-top: 5%;
  margin-left: 20%;
}
@media (max-width: 896px) {
  .block_article .inner .textarea {
    margin-left: 5%;
  }
}
.block_article .inner .textarea a {
  color: #FFF;
}
.block_article .inner .textarea.center {
  margin-left: 0;
  text-align: center;
}
.block_article .inner .textarea .jp {
  font-family: "aktiv-grotesk", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: clamp(0.75rem, 0.7161016949rem + 0.1694915254vw, 0.875rem);
  line-height: 2;
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-top: 2%;
}
.block_article .inner .textarea .en {
  font-family: "aktiv-grotesk", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: clamp(0.625rem, 0.5911016949rem + 0.1694915254vw, 0.75rem);
  line-height: 2;
  font-weight: 300;
  letter-spacing: 0.1em;
  opacity: 0.5;
  margin-top: 2%;
}
.block_article .inner .t_list {
  margin-top: 5%;
  margin-left: 20%;
}
@media (max-width: 896px) {
  .block_article .inner .t_list {
    margin-left: 5%;
  }
}
.block_article .inner .t_list ul li {
  position: relative;
  padding-left: 1.5em;
  font-family: "aktiv-grotesk", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: clamp(0.75rem, 0.7161016949rem + 0.1694915254vw, 0.875rem);
  line-height: 2;
  font-weight: 300;
  letter-spacing: 0.1em;
}
.block_article .inner .t_list ul li:before {
  content: "〇";
  position: absolute;
  top: 0;
  left: 0;
}
.block_article .inner .t_wrap {
  margin-top: 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_article .inner .t_wrap {
    margin-top: 10%;
    flex-direction: column;
  }
}
.block_article .inner .t_wrap .textarea {
  margin-top: 0;
  margin-left: 0%;
  width: 48%;
}
@media (max-width: 896px) {
  .block_article .inner .t_wrap .textarea {
    width: 100%;
  }
}
.block_article .inner .t_wrap figure {
  width: 48%;
}
@media (max-width: 896px) {
  .block_article .inner .t_wrap figure {
    width: 100%;
    margin-top: 10%;
  }
}
.block_article .inner .entry_list {
  margin-top: 5%;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
@media (max-width: 896px) {
  .block_article .inner .entry_list {
    margin-top: 10%;
  }
}
.block_article .inner .entry_list .column {
  width: 30%;
  margin-right: 5%;
  margin-bottom: 5%;
}
.block_article .inner .entry_list .column:nth-child(3n) {
  margin-right: 0;
}
@media (max-width: 896px) {
  .block_article .inner .entry_list .column {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10%;
  }
}
.block_article .inner .entry_list .column.products a figure {
  position: relative;
}
.block_article .inner .entry_list .column.products a figure::before {
  content: "";
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  background: #eee;
  border-top-left-radius: 40px;
  border-bottom-right-radius: 40px;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.2);
}
.block_article .inner .entry_list .column.products a figure .img_wrap {
  position: relative;
  padding-top: 100%;
}
.block_article .inner .entry_list .column.products a figure .img_wrap img {
  display: block;
  position: absolute;
  top: 15%;
  left: 15%;
  width: 70%;
  height: 70%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  opacity: 0;
}
.block_article .inner .entry_list .column.products a figure .img_wrap img.lazyloaded {
  opacity: 1;
  transition: all 0.6s 0.1s ease;
}
.block_article .inner .entry_list .column a {
  display: block;
  color: #FFF;
}
.block_article .inner .entry_list .column a:hover figure {
  opacity: 0.75;
}
.block_article .inner .entry_list .column a figure {
  transition: all 0.6s 0s ease;
}
.block_article .inner .entry_list .column a figure .img_wrap {
  position: relative;
  padding-top: 56.25%;
}
.block_article .inner .entry_list .column a figure .img_wrap img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  opacity: 0;
}
.block_article .inner .entry_list .column a figure .img_wrap img.lazyloaded {
  opacity: 1;
  transition: all 0.6s 0.1s ease;
}
.block_article .inner .entry_list .column a .textarea {
  color: #FFF;
  position: relative;
  margin: 0;
  margin-top: 5%;
  padding-right: 80px;
}
.block_article .inner .entry_list .column a .textarea .c_title {
  font-family: "aktiv-grotesk", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: clamp(0.875rem, 0.8411016949rem + 0.1694915254vw, 1rem);
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.block_article .inner .entry_list .column a .textarea .sub {
  font-family: "aktiv-grotesk", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: clamp(0.5625rem, 0.5116525424rem + 0.2542372881vw, 0.75rem);
  line-height: 2;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.block_article .inner .entry_list .column a .textarea .more {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  border: 2px #aaa solid;
  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_article .inner .entry_list .column a .textarea .more {
    width: 50px;
    height: 50px;
  }
}
.block_article .inner .entry_list .column a .textarea .more svg {
  fill: #aaa;
  transform: scale(0.8);
  transition: all 0.6s 0s ease;
}
@media (max-width: 896px) {
  .block_article .inner .entry_list .column a .textarea .more svg {
    transform: scale(0.8);
  }
}
.block_article .inner .definition {
  margin-top: 5%;
  padding-bottom: 2%;
  margin-left: 20%;
  border-bottom: 1px #333 solid;
}
@media (max-width: 896px) {
  .block_article .inner .definition {
    padding-bottom: 5%;
    margin-left: 0%;
    margin-top: 10%;
  }
}
.block_article .inner .definition 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  */
  padding-top: 2%;
  margin-top: 2%;
  border-top: 1px #333 solid;
}
@media (max-width: 896px) {
  .block_article .inner .definition dl {
    flex-direction: column; /* row row-reverse column */
    padding-top: 5%;
    margin-top: 5%;
  }
}
.block_article .inner .definition dl dt {
  width: 20%;
  font-family: "aktiv-grotesk", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: clamp(0.75rem, 0.7161016949rem + 0.1694915254vw, 0.875rem);
  line-height: 2;
  font-weight: 300;
  letter-spacing: 0.1em;
}
@media (max-width: 896px) {
  .block_article .inner .definition dl dt {
    width: 100%;
  }
}
.block_article .inner .definition dl dd {
  width: 80%;
  font-family: "aktiv-grotesk", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: clamp(0.75rem, 0.7161016949rem + 0.1694915254vw, 0.875rem);
  line-height: 2;
  font-weight: 300;
  letter-spacing: 0.1em;
}
@media (max-width: 896px) {
  .block_article .inner .definition dl dd {
    width: 100%;
  }
}
.block_article .inner .definition dl dd a {
  color: #FFF;
}
.block_article .inner .map {
  margin-top: 5%;
}
.block_article .inner .map .m_wrap {
  position: relative;
  padding-top: 56.25%;
}
.block_article .inner .map .m_wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.block_article .inner hr {
  margin-top: 10%;
  position: relative;
  border-top: 1px #ccc solid;
}
.block_article .inner .works {
  margin-top: 10%;
  margin-left: 20%;
}
@media (max-width: 896px) {
  .block_article .inner .works {
    margin-left: 0;
  }
}
.block_article .inner .works .column {
  margin-top: 5%;
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: space-between; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
}
@media (max-width: 896px) {
  .block_article .inner .works .column {
    align-items: flex-start; /* flex-start  center  */
    border-top: 1px #333 solid;
    padding-top: 5%;
    margin-top: 5%;
  }
  .block_article .inner .works .column:first-child {
    border: none;
    padding-top: 0;
    margin-top: 0;
  }
}
.block_article .inner .works .column:first-child {
  margin-top: 0;
}
.block_article .inner .works .column .image_area {
  width: 25%;
}
.block_article .inner .works .column .image_area figure .img_wrap {
  position: relative;
  padding-top: 100%;
}
.block_article .inner .works .column .image_area figure .img_wrap img {
  display: block;
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  opacity: 0;
}
.block_article .inner .works .column .image_area figure .img_wrap img.lazyloaded {
  opacity: 1;
  transition: all 0.6s 0.1s ease;
}
.block_article .inner .works .column .text_area {
  width: 70%;
}
.block_article .inner .works .column .text_area .w_title {
  font-family: "aktiv-grotesk", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: clamp(1rem, 0.8644067797rem + 0.6779661017vw, 1.5rem);
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.block_article .inner .works .column .text_area .time {
  font-family: "aktiv-grotesk", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: clamp(0.625rem, 0.5911016949rem + 0.1694915254vw, 0.75rem);
  line-height: 2;
  font-weight: 300;
  letter-spacing: 0.1em;
}
.block_article .inner .works .column .text_area .exp {
  font-family: "aktiv-grotesk", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: clamp(0.75rem, 0.7161016949rem + 0.1694915254vw, 0.875rem);
  line-height: 2;
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-top: 3%;
}
.block_article .inner .return_link_btn {
  margin-top: 10%;
}
.block_article .inner .sub_title02 + .t_list,
.block_article .inner .sub_title02 + .textarea {
  margin-top: 2%;
}
@media (max-width: 896px) {
  .block_article .inner .sub_title02 + .t_list,
  .block_article .inner .sub_title02 + .textarea {
    margin-top: 5%;
  }
}
.block_article .inner .sub_title01 + .works {
  margin-top: 2%;
}
@media (max-width: 896px) {
  .block_article .inner .sub_title01 + .works {
    margin-top: 5%;
  }
}

/*----------------------------------------------------
 block_products_detail
--------------------------------------------------- */
.block_products_detail {
  background: #333;
  padding: 160px 0 10% 0;
  position: relative;
  z-index: 2;
  position: relative;
}
@media (max-width: 896px) {
  .block_products_detail {
    padding: 100px 0 10% 0;
    padding-bottom: 100px;
  }
}
.block_products_detail .inner {
  padding: 0 80px;
  margin: 0 auto;
  max-width: 1280px;
}
@media (max-width: 896px) {
  .block_products_detail .inner {
    padding: 0 20px;
  }
}
.block_products_detail .inner .summary {
  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_products_detail .inner .summary {
    flex-direction: column;
  }
}
.block_products_detail .inner .summary .image_area {
  width: 48%;
  overflow: hidden;
  position: sticky;
  top: 40px;
}
@media (max-width: 896px) {
  .block_products_detail .inner .summary .image_area {
    position: relative;
    top: 0;
    width: 100%;
  }
}
.block_products_detail .inner .summary .image_area .slide {
  position: relative;
}
.block_products_detail .inner .summary .image_area .slide .column {
  position: relative;
  position: relative;
}
.block_products_detail .inner .summary .image_area .slide .column figure::before {
  content: "";
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  background: #d7d7d7;
  border-top-left-radius: 40px;
  border-bottom-right-radius: 40px;
}
.block_products_detail .inner .summary .image_area .slide .column figure .img_wrap {
  position: relative;
  padding-top: 100%;
}
.block_products_detail .inner .summary .image_area .slide .column figure .img_wrap span {
  display: block;
  position: absolute;
  top: 5%;
  left: 5%;
  width: 90%;
  height: 90%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.block_products_detail .inner .summary .image_area .slide .column a.zoom {
  position: absolute;
  bottom: 20px;
  right: 20px;
}
.block_products_detail .inner .summary .image_area .slide .column a.zoom svg {
  fill: #333;
  width: 30px;
  height: 30px;
}
.block_products_detail .inner .summary .image_area .slide .column a.zoom:hover {
  opacity: 0.5;
}
@media (max-width: 896px) {
  .block_products_detail .inner .summary .image_area .slide .swiper-button-next {
    right: 0;
  }
}
@media (max-width: 896px) {
  .block_products_detail .inner .summary .image_area .slide .swiper-button-prev {
    left: 0;
  }
}
.block_products_detail .inner .summary .image_area .slide .swiper-button-next, .block_products_detail .inner .summary .image_area .slide .swiper-button-prev {
  top: 50%;
  color: #333;
}
.block_products_detail .inner .summary .image_area .slide .swiper-button-next:after, .block_products_detail .inner .summary .image_area .slide .swiper-button-prev:after {
  font-size: 1em;
}
.block_products_detail .inner .summary .image_area .thumblist {
  position: relative;
  margin-top: 5%;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.block_products_detail .inner .summary .image_area .thumblist .thumblist-item {
  position: relative;
  width: 12%;
  margin-right: 2.6%;
  margin-bottom: 2.5%;
  cursor: pointer;
}
.block_products_detail .inner .summary .image_area .thumblist .thumblist-item a.zoom {
  display: none;
}
.block_products_detail .inner .summary .image_area .thumblist .thumblist-item:hover figure {
  opacity: 1;
}
.block_products_detail .inner .summary .image_area .thumblist .thumblist-item.current figure {
  opacity: 1;
}
.block_products_detail .inner .summary .image_area .thumblist .thumblist-item:nth-child(7n) {
  margin-right: 0;
}
.block_products_detail .inner .summary .image_area .thumblist .thumblist-item figure {
  opacity: 0.5;
  transition: all 0.5s 0s ease;
}
.block_products_detail .inner .summary .image_area .thumblist .thumblist-item figure::before {
  content: "";
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  background: #FFF;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  transition: all 0.5s 0s ease;
}
.block_products_detail .inner .summary .image_area .thumblist .thumblist-item figure .img_wrap {
  position: relative;
  padding-top: 100%;
}
.block_products_detail .inner .summary .image_area .thumblist .thumblist-item figure .img_wrap span {
  display: block;
  position: absolute;
  top: 5%;
  left: 5%;
  width: 90%;
  height: 90%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.block_products_detail .inner .summary .text_area {
  width: 48%;
}
@media (max-width: 896px) {
  .block_products_detail .inner .summary .text_area {
    width: 100%;
  }
}
.block_products_detail .inner .summary .text_area .c_title {
  font-family: "aktiv-grotesk", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: clamp(1rem, 0.8644067797rem + 0.6779661017vw, 1.5rem);
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.block_products_detail .inner .summary .text_area .sub {
  font-family: "aktiv-grotesk", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: clamp(0.5625rem, 0.5116525424rem + 0.2542372881vw, 0.75rem);
  line-height: 2;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.block_products_detail .inner .summary .text_area ul.point {
  margin-top: 10%;
}
.block_products_detail .inner .summary .text_area ul.point li {
  position: relative;
  padding-left: 1.5em;
  font-family: "aktiv-grotesk", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: clamp(0.75rem, 0.7161016949rem + 0.1694915254vw, 0.875rem);
  line-height: 2;
  font-weight: 300;
  letter-spacing: 0.1em;
}
.block_products_detail .inner .summary .text_area ul.point li:before {
  content: "〇";
  position: absolute;
  top: 0;
  left: 0;
}
.block_products_detail .inner .summary .text_area .spec_column {
  overflow: hidden;
  margin-top: 5%;
}
.block_products_detail .inner .summary .text_area .spec_column .s_title span {
  display: inline-block;
  font-family: "aktiv-grotesk", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: clamp(0.625rem, 0.5911016949rem + 0.1694915254vw, 0.75rem);
  line-height: 2;
  font-weight: 300;
  letter-spacing: 0.1em;
  position: relative;
}
.block_products_detail .inner .summary .text_area .spec_column .s_title span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -10px;
  margin-right: -100vw;
  width: 100vw;
  height: 2px;
  background: #aaa;
}
.block_products_detail .inner .summary .text_area .spec_column 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  */
  padding-top: 2%;
  margin-top: 2%;
  border-top: 1px #000 solid;
}
.block_products_detail .inner .summary .text_area .spec_column dl:first-child {
  border: none;
}
@media (max-width: 896px) {
  .block_products_detail .inner .summary .text_area .spec_column dl:first-child {
    padding-top: 0%;
    margin-top: 2%;
  }
}
@media (max-width: 896px) {
  .block_products_detail .inner .summary .text_area .spec_column dl {
    flex-direction: column; /* row row-reverse column */
    padding-top: 5%;
    margin-top: 5%;
  }
}
.block_products_detail .inner .summary .text_area .spec_column dl dt {
  opacity: 0.5;
  width: 40%;
  font-family: "aktiv-grotesk", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: clamp(0.5625rem, 0.5116525424rem + 0.2542372881vw, 0.75rem);
  line-height: 2;
  font-weight: 300;
  letter-spacing: 0.1em;
}
@media (max-width: 896px) {
  .block_products_detail .inner .summary .text_area .spec_column dl dt {
    width: 100%;
  }
}
.block_products_detail .inner .summary .text_area .spec_column dl dd {
  width: 60%;
  font-family: "aktiv-grotesk", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: clamp(0.5625rem, 0.5116525424rem + 0.2542372881vw, 0.75rem);
  line-height: 2;
  font-weight: 300;
  letter-spacing: 0.1em;
}
@media (max-width: 896px) {
  .block_products_detail .inner .summary .text_area .spec_column dl dd {
    width: 100%;
  }
}
.block_products_detail .inner .summary .text_area .textarea {
  margin-top: 5%;
  font-family: "aktiv-grotesk", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: clamp(0.75rem, 0.7161016949rem + 0.1694915254vw, 0.875rem);
  line-height: 2;
  font-weight: 300;
  letter-spacing: 0.1em;
}
.block_products_detail .inner .summary .text_area .download {
  margin-top: 5%;
  background: #000;
  padding: 4%;
}
@media (max-width: 896px) {
  .block_products_detail .inner .summary .text_area .download {
    margin-top: 10%;
  }
}
.block_products_detail .inner .summary .text_area .download .d_title {
  font-family: "aktiv-grotesk", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: clamp(0.5625rem, 0.5116525424rem + 0.2542372881vw, 0.75rem);
  line-height: 2;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.block_products_detail .inner .summary .text_area .download .d_btn {
  margin-top: 2%;
}
.block_products_detail .inner .summary .text_area .download .d_btn a {
  display: block;
  border: 1px #FFF solid;
  transition: all 0.5s 0s ease;
  font-family: "aktiv-grotesk", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: clamp(0.5625rem, 0.5116525424rem + 0.2542372881vw, 0.75rem);
  line-height: 2;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #FFF;
  padding: 10px;
  position: relative;
}
.block_products_detail .inner .summary .text_area .download .d_btn a svg {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 26px;
  height: 26px;
  fill: #FFF;
  margin-top: -13px;
  transition: all 0.5s 0s ease;
}
.block_products_detail .inner .summary .text_area .download .d_btn a:hover {
  background: #FFF;
  color: #000;
}
.block_products_detail .inner .summary .text_area .download .d_btn a:hover svg {
  fill: #000;
}
.block_products_detail .inner .return_link_btn {
  margin-top: 10%;
}

/*----------------------------------------------------
 block_breadcrumb
--------------------------------------------------- */
.block_breadcrumb {
  background: #000;
  color: #FFF;
  padding: 20px 0;
}
.block_breadcrumb ol {
  display: flex;
  padding: 0 80px;
  margin: 0 auto;
  max-width: 1600px;
  flex-direction: row; /* row row-reverse column */
  justify-content: flex-start; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  white-space: nowrap;
  list-style: none;
}
@media (max-width: 896px) {
  .block_breadcrumb ol {
    margin: 0 0px;
    padding: 0 20px;
    overflow-x: scroll;
  }
}
.block_breadcrumb ol li {
  font-family: "aktiv-grotesk", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: clamp(0.625rem, 0.5911016949rem + 0.1694915254vw, 0.75rem);
  line-height: 2;
  font-weight: 300;
  letter-spacing: 0.1em;
}
.block_breadcrumb ol li:not(:last-of-type)::after {
  content: "-";
  margin: 0 0.6em; /* 記号の左右の余白 */
  color: #ccc; /* 記号の色 */
  font-family: "aktiv-grotesk", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: clamp(0.625rem, 0.5911016949rem + 0.1694915254vw, 0.75rem);
  line-height: 2;
  font-weight: 300;
  letter-spacing: 0.1em;
}
.block_breadcrumb ol li a {
  display: inline-block;
  color: #888; /* 記号の色 */
  transition: all 0.4s 0s ease;
  letter-spacing: 0.1em;
  font-family: "aktiv-grotesk", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: clamp(0.625rem, 0.5911016949rem + 0.1694915254vw, 0.75rem);
  line-height: 2;
  font-weight: 300;
  letter-spacing: 0.1em;
}
.block_breadcrumb ol li a:hover {
  opacity: 0.5;
}

/*----------------------------------------------------
 block_form
--------------------------------------------------- */
.form_list {
  margin-top: 5%;
  margin-left: 20%;
  font-family: "aktiv-grotesk", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: clamp(0.75rem, 0.7161016949rem + 0.1694915254vw, 0.875rem);
  line-height: 2;
  font-weight: 300;
  letter-spacing: 0.1em;
}
@media (max-width: 896px) {
  .form_list {
    margin-left: 0%;
  }
}
.form_list .column {
  margin-bottom: 30px;
}
.form_list .column .column_title {
  font-family: "aktiv-grotesk", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: clamp(0.75rem, 0.7161016949rem + 0.1694915254vw, 0.875rem);
  line-height: 2;
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
  letter-spacing: 0.06em;
}
.form_list .column .column_title .must {
  color: #D15050;
}
.form_list .column .column_title small {
  margin-left: 5px;
  font-family: "aktiv-grotesk", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: clamp(0.625rem, 0.5911016949rem + 0.1694915254vw, 0.75rem);
  line-height: 2;
  font-weight: 300;
  letter-spacing: 0.1em;
}
.form_list .column .column_form .error {
  background: #dc3232;
  color: #FFF;
  font-size: 14px;
  border-radius: 30px;
  padding: 5px 10px;
  margin-top: 10px;
}
.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: #000 no-repeat right 15px center;
  position: relative;
  color: #FFF;
  text-align: center;
  cursor: pointer;
  line-height: 60px;
  font-size: 16px;
  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;
  color: #000;
  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 {
  border: 1px #000 solid;
  padding: 40px;
  font-size: 16px;
}/*# sourceMappingURL=common.css.map */