@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto Serif JP:wght@400;500;600;700&family=Lato&family=Lora:wght@400;500;700&family=Noto+Sans+JP:wght@400;500;700&family=Noto+Serif+JP:wght@400;500;600;700&family=Open+Sans:wght@400;500;600;700&display=swap");
/*
font-family: 'Noto Serif JP', sans-serif;
font-family: 'Lato', sans-serif;
font-family: 'Lora', serif;
font-family: 'Noto Sans JP', sans-serif;
font-family: 'Noto Serif JP', serif;
font-family: 'Open Sans', sans-serif;
*/
/*----------------------------------------------------------------*/
/*----------------------------------------------------------------*/
/* 要素 フォントサイズ・マージン・パディングをリセット */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent;
}
table, tr, th, td {
  font: 500 1.5rem/2.2 "Noto Serif JP";
  line-height: 1.6;
}
/* 新規追加要素をブロック要素化 */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
/* ulのマーカー非表示 */
ol, ul {
  list-style: none;
}
/* 引用符の非表示 */
blockquote, q {
  quotes: none;
}
/* blockquote要素、q要素の前後にコンテンツ非表示 */
blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}
/* フォントサイズ　リセット フォントの縦方向 ベースライン揃え 点線削除 */
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  outline: none;
  transition: all 0.15s;
}
a:hover, a:active {
  text-decoration: none;
  /* opacity: 0.75; */
  /* filter: alpha(opacity=75); */
  filter: brightness(115%);
}
a:hover .thumb img, a:active .thumb img {
  transition: all 0.3s;
  transform: scale(1.1);
}
a, a * {
  transition: opacity 0.6s ease;
  text-decoration: none;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  font-family: inherit;
  backface-visibility: hidden; /* 追加 */
}
/* ins要素 デフォルトセット 色を変える場合はここで変更 */
ins {
  background: #ff9;
  color: #000;
  text-decoration: none;
}
/* mark要素 デフォルトセット 色やフォントスタイルを変える場合はここで変更 */
mark {
  background: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}
/* テキスト 打ち消し線 */
del {
  text-decoration: line-through;
}
/* IE　デフォルトで点線を下線表示設定　下線設定 マウスオーバー時 ヘルプカーソル表示可 */
abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}
/*　隣接するセルのボーダーを重ねて表示　*/
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/*240917*/
.tablelay01 table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 30px 0;
}
.tablelay01 table th:first-child {
  border-radius: 5px 0 0 0;
}
.tablelay01 table th:last-child {
  border-radius: 0 5px 0 0;
  border-right: 1px solid #3c6690;
}
.tablelay01 table th {
  text-align: center;
  color: white;
  background: linear-gradient(#829ebc, #225588);
  border-left: 1px solid #3c6690;
  border-top: 1px solid #3c6690;
  border-bottom: 1px solid #3c6690;
  box-shadow: 0px 1px 1px rgba(255, 255, 255, 0.3) inset;
  /*width: 25%;*/
  padding: 10px 0;
}
.tablelay01 table td {
  text-align: left;
  border-left: 1px solid #a8b7c5;
  border-bottom: 1px solid #a8b7c5;
  border-top: none;
  box-shadow: 0px -3px 5px 1px #eee inset;
  /*width: 25%;*/
  padding: 10px;
}
.tablelay01 table td.--bb {
  border-bottom-width: 3px;
}
@media screen and (max-width: 768px) {
  .tablelay01 table th, .tablelay01 table td {
    font: 500 10px "Noto Serif JP";
    line-height: 1.25;
  }
}
.tablelay01 table td:last-child {
  border-right: 1px solid #a8b7c5;
}
.tablelay01 table td.--nbr {
  border-right: none;
}
.tablelay01 table tr:last-child td:first-child {
  border-radius: 0 0 0 5px;
}
.tablelay01 table tr:last-child td:last-child {
  border-radius: 0 0 5px 0;
}
.tablelay01 td a {
    text-decoration: underline;
    text-decoration-color: color-mix(in srgb, currentColor, transparent 0%);
    transition: text-decoration-color 0.35s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
  }
  
  @media (hover: hover) and (pointer: fine) {
    .tablelay01 td a:hover {
      filter: none;
      text-decoration-color: color-mix(in srgb, currentColor, transparent 100%);
    }
}

/* 水平罫線デフォルトリセット */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}
/* 縦方向の揃え 中央揃え */
input, select {
  vertical-align: middle;
}
/* 画像を縦に並べた時に余白0 */
img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
  /* width: 100%; */
  max-width: 100%;
  height: auto;
}
/*box-sizingを全ブラウザに対応*/
*, *:before, *:after {
  box-sizing: border-box;
}
.clearfix:after {
  overflow: hidden;
  visibility: hidden;
  height: 0;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
}
br {
  line-height: inherit;
}
/*----------------------------------------------------------------*/
/*----------------------------------------------------------------*/
.xl_contain {
  position: relative;
  width: 100%;
  padding: 0 0;
  margin: 0 auto;
  max-width: 1720px;
}
@media screen and (max-width: 1720px) {
  .xl_contain {
    padding: 0 3rem;
  }
}
.xls_contain {
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0 auto;
  max-width: 1620px;
}
@media screen and (max-width: 1620px) {
  .xls_contain {
    padding: 0 3rem;
  }
}
.xlm_contain {
  position: relative;
  width: 100%;
  padding: 0 0;
  margin: 0 auto;
  max-width: 1400px;
}
@media screen and (max-width: 1400px) {
  .xlm_contain {
    padding: 0 3rem;
  }
}
.lg_contain {
  position: relative;
  width: 100%;
  padding: 0 0;
  margin: 0 auto;
  max-width: 1200px;
}
@media screen and (max-width: 1200px) {
  .lg_contain {
    padding: 0 3rem;
  }
}
.lgm_contain {
  position: relative;
  width: 100%;
  padding: 0 0;
  margin: 0 auto;
  max-width: 1100px;
}
@media screen and (max-width: 1100px) {
  .lgm_contain {
    padding: 0 3rem;
  }
}
section.contact_contact .lgm_contain {
  max-width: 700px !important;
}
.md_contain {
  position: relative;
  width: 100%;
  padding: 0 0;
  margin: 0 auto;
  max-width: 768px;
}
@media screen and (max-width: 768px) {
  .md_contain {
    padding: 0 3rem;
  }
}
/*----------------------------------------------------------------*/
/*----------------------------------------------------------------*/
/* 表示切り替え */
.sp_on, .tb_on {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .pc_on {
    display: none !important;
  }
  .sp_on {
    display: block !important;
  }
}
@media screen and (max-width: 1100px) {
  .tb_on {
    display: block !important;
  }
}
/* LAZYLOAD SETTINGS */
.blurUp {
  filter: blur(20px);
  transition: filter 400ms;
}
.blurUp.lazyloaded {
  filter: blur(0);
}
/*----------------------------------------------------------------*/
/*----------------------------------------------------------------*/
/*--------------------------------------------------------------
    # メインコンテンツ
--------------------------------------------------------------*/
html {
  font-size: 62.5%;
  line-height: 1.625;
  color: #333333;
  overflow: hidden;
  scroll-behavior: smooth;
  overflow-y: scroll;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  scroll-padding-top: 10rem;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 2.3vw;
    scroll-padding-top: 5.8rem;
  }
}
body {
  width: 100%;
  font-family: "Noto Serif JP", メイリオ, Meiryo, serif; /* Sans JP sans-serif */
  font-weight: 400;
  --global--color-primary: #333333;
  --heading--font-family: "Noto Serif JP"; /* Sans JP */
  --list--font-family: "Noto Serif JP"; /* Sans JP */
  --form--font-family: "Noto Serif JP"; /* Sans JP */
  --button--font-family: "Noto Serif JP"; /* Sans JP */
  --entry-content--font-family: "Noto Serif JP"; /* Sans JP */
  --entry-author-bio--font-family: "Noto Serif JP"; /* Sans JP */
  --branding--title--font-family: "Noto Serif JP"; /* Sans JP */
  --branding--description--font-family: "Noto Serif JP"; /* Sans JP */
  --primary-nav--font-family: "Noto Serif JP"; /* Sans JP */
  --pagination--font-family: "Noto Serif JP"; /* Sans JP */
  --footer--font-family: "Noto Serif JP"; /* Sans JP */
  --pullquote--font-family: "Noto Serif JP"; /* Sans JP */
  --quote--font-family: "Noto Serif JP"; /* Sans JP */
  color: #333333;
}
body #wrapper {
  position: relative;
  overflow: hidden;
}
/* body #wrapper main.sub {
  padding-top: 10rem;
}
@media screen and (max-width: 768px) {
  body #wrapper main.sub {
    padding-top: 5.8rem;
  }
} */
.link_grid {
  width: 100%;
}
.link_grid .link_btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10rem;
  width: 100%;
  cursor: pointer;
  outline: 0;
  border: 0;
}
.link_grid .link_btn:hover {
  filter: brightness(110%);
}
.link_grid .link_btn.h50 {
  height: 5rem;
}
@media screen and (max-width: 768px) {
  .link_grid .link_btn.h50 {
    height: 5.3rem;
  }
}
.link_grid .link_btn.ft16 {
  font-weight: 700;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .link_grid .link_btn.ft16 {
    font-size: 1.8rem;
  }
}
.link_grid .link_btn.w27 {
  max-width: 27rem;
}
@media screen and (max-width: 768px) {
  .link_grid .link_btn.w27 {
    max-width: 26rem;
  }
}
.link_grid .link_btn.bg_blue {
  background: url(../image/btn_arr02.png) 95% center/1.4rem no-repeat, #24316a;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .link_grid .link_btn.bg_blue {
    background: url(../image/btn_arr02.png) 92% center/1rem no-repeat, #24316a;
  }
}
.link_grid .link_btn.bg_blue_home {
  background: url(../image/btn_arr06.png) 5% center/1.4rem no-repeat, #24316a;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .link_grid .link_btn.bg_blue_home {
    background: url(../image/btn_arr06.png) 5% center/1rem no-repeat, #24316a;
  }
}
.link_grid .link_btn.bg_grey {
  background: url(../image/btn_arr06.png) 5% center/1.4rem no-repeat, #acacac;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .link_grid .link_btn.bg_grey {
    background: url(../image/btn_arr06.png) 5% center/1rem no-repeat, #acacac;
  }
}
.link_grid .link_btn#back-btn {
  margin-right: 4rem;
}
@media screen and (max-width: 768px) {
  .link_grid .link_btn#back-btn {
    margin-right: 0;
    margin-bottom: 2.7rem;
  }
}
@media screen and (max-width: 768px) {
  .link_grid.step2 {
    flex-wrap: wrap;
  }
}
.link_grid.step2 .link_btn {
  margin: 0 5rem;
}
@media screen and (max-width: 768px) {
  .link_grid.step2 .link_btn {
    margin: 0 auto 1rem;
  }
}
.thumb {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.thumb img {
  transition: all 0.3s;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  font-family: "object-fit: cover; object-position: center";
}
.inview {
  opacity: 0;
  transform: translate(0, 10%);
}
.inview.is-show {
  transition: 1s;
  transform: translate(0, 0);
  opacity: 1;
}
.inview.btn_anitmation {
  opacity: 1;
  filter: blur(1rem);
  transform: translate(0, 0);
}
.inview.btn_anitmation.is-animated {
  transition: all 300ms linear 100ms;
  opacity: 1;
  filter: blur(0);
}
.news_ttl {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
h3.section_ttl01 {
  color: #0e0e0e;
  font: 6rem "Cormorant Garamond";
  font-weight: 500;
  text-align: center;
  letter-spacing: 1.9rem;
  line-height: 1;
}
h3.section_ttl01 span {
  display: block;
  font: 2.5rem "Noto Serif JP"; /* Sans JP */
  font-weight: 400;
  letter-spacing: 0.1rem;
  padding-top: 1rem;
}
@media screen and (max-width: 768px) {
  h3.section_ttl01 {
    font-size: 3rem;
    letter-spacing: 1rem;
  }
}
h3.section_ttl02 {
  color: white;
  font: 6rem "Cormorant Garamond";
  letter-spacing: 0.6rem;
  line-height: 1.5;
  text-align: center;
}
h3.section_ttl02 span {
  display: block;
  font: 2.2rem "Noto Serif JP";
  font-weight: 400;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 768px) {
  h3.section_ttl02 {
    font-size: 2.4rem;
  }
  h3.section_ttl02 span {
    font-size: 1.6rem;
  }
}
h3.section_ttl03 {
  text-align: center;
  line-height: 1.3;
}
h3.section_ttl03 p:last-child {
  font-size: 3.8rem;
  line-height: 2.1;
  color: #0e0e0e;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 768px) {
  h3.section_ttl03 p:last-child {
    font-size: 2rem;
  }
}
h3.section_ttl03 p:first-child {
  font-family: "Noto Serif JP";
  font-weight: 600;
  font-size: 4rem;
  line-height: 1;
  color: #0e0e0e;
  letter-spacing: 0.45rem;
}
@media screen and (max-width: 768px) {
  h3.section_ttl03 p:first-child {
    font-size: 3rem;
  }
}
h3.section_ttl03 p:first-child.profile_page {
  letter-spacing: 0.43rem;
}
@media screen and (max-width: 768px) {
  h3.section_ttl03 p:first-child.profile_page {
    font-size: 3.5rem;
  }
}
h3.section_ttl03 .e_t {
  font-size: 8rem;
  font-family: "Noto Serif JP";
  font-weight: 700;
  letter-spacing: 0.53rem;
}
@media screen and (max-width: 768px) {
  h3.section_ttl03 .e_t {
    font-size: 2.4rem;
  }
}
h3.section_ttl03 .j_t {
  font-size: 3.8rem;
  letter-spacing: 0.28rem;
}
@media screen and (max-width: 768px) {
  h3.section_ttl03 .j_t {
    font-size: 1.6rem;
  }
}
h2.section_ttl04, h3.section_ttl04 {
  font: 500 6rem "Noto Serif JP";
  letter-spacing: 0.2rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  h2.section_ttl04, h3.section_ttl04 {
    font-size: 3rem;
    letter-spacing: 0.3rem;
  }
}
h2.section_ttl04 p, h3.section_ttl04 p {
  font-family: "Noto Serif JP";
  font-weight: 800;
  font-size: 2rem;
  line-height: 1.3;
  color: #0e0e0e;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 768px) {
  h2.section_ttl04 p, h3.section_ttl04 p {
    font-size: 1.5rem;
  }
}
h2.section_ttl04 p.profile_page, h3.section_ttl04 p.profile_page {
  letter-spacing: 0.3rem;
  padding-bottom: 3.5rem;
}
@media screen and (max-width: 768px) {
  h2.section_ttl04 p.profile_page, h3.section_ttl04 p.profile_page {
    padding-bottom: 0;
  }
}
/* 230918 service 見出しh2 */
h2.section_ttl_service {
  display: block;
  overflow: hidden;
  margin-top: -930px;
  margin-left: -70px;
  color: #fff;
  margin-bottom: 700px;
}
@media screen and (max-width: 768px) {
  h2.section_ttl_service {
    display: inline;
    margin-top: 0;
    margin-bottom: -30px;
    color: #000;
  }
}
h2.section_ttl_service p {
  font: 700 2rem "Noto Serif JP";
  line-height: 1.6;
  letter-spacing: 0.25rem;
}
@media screen and (max-width: 768px) {
  h2.section_ttl_service p {
    text-align: center;
    font-size: 1.6rem;
    letter-spacing: 0.25rem;
  }
}
h2.section_ttl_service p:last-child {
  font: 500 1.25rem "Noto Serif JP"; /* Sans JP */
  line-height: 1.6;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 768px) {
  h2.section_ttl_service p:last-child {
    font-size: 1.25rem;
  }
}
/* ↑230918 serviceh2 END */
h3.section_ttl05 p {
  font: 700 6.9rem "Noto Serif JP";
  line-height: 0.6;
  letter-spacing: 0.5rem;
}
@media screen and (max-width: 768px) {
  h3.section_ttl05 p {
    text-align: center;
    font-size: 3.3rem;
    letter-spacing: 0.25rem;
  }
}
h3.section_ttl05 p:last-child {
  font: 500 2.6rem "Noto Serif JP"; /* Sans JP */
  line-height: 1.615;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 768px) {
  h3.section_ttl05 p:last-child {
    font-size: 1.3rem;
  }
}
/* ↑230918 old */
h2.section_ttl11, h3.section_ttl11 {
  font: 400 3.3rem "Noto Serif JP";
  letter-spacing: 0.2rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  h2.section_ttl11, h3.section_ttl11 {
    font-size: 2rem;
  }
}
h2.section_ttl12, h3.section_ttl12 {
  text-align: center;
  font: 400 6rem "Noto Serif JP";
  line-height: 1;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 768px) {
  h2.section_ttl12, h3.section_ttl12 {
    font-size: 3rem;
    letter-spacing: 0.07rem;
  }
}
h2.section_ttl12 p:last-child, h3.section_ttl12 p:last-child {
  font: bolder 2rem "Noto Serif JP"; /* Sans JP */
  letter-spacing: 0.25rem;
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  h2.section_ttl12 p:last-child, h3.section_ttl12 p:last-child {
    font-size: 1.6rem;
  }
}
h3.section_sttl04 {
  text-align: center;
  line-height: 2.8;
}
h3.section_sttl04 .e_t {
  font-size: 5.6rem;
  font-family: "Noto Serif JP";
  font-weight: 600;
  letter-spacing: 0.35rem;
}
@media screen and (max-width: 768px) {
  h3.section_sttl04 .e_t {
    font-size: 4.5rem;
  }
}
h3.section_ttl06 {
  font-size: 8.6rem;
  line-height: 1.2;
  margin: 0 auto;
  text-align: center;
  letter-spacing: 2.3rem;
}
h3.section_ttl06 .t1 {
  font-family: "Noto Serif JP";
  font-weight: 400;
}
h3.section_ttl06 .t2 {
  font-family: "Noto Serif JP";
  font-weight: 500;
}
@media screen and (max-width: 1200px) {
  h3.section_ttl06 {
    font-size: 5rem;
  }
}
@media screen and (max-width: 768px) {
  h3.section_ttl06 {
    font-size: 3rem;
  }
}
h3.section_ttl07 {
  text-align: center;
}
h3.section_ttl07 .t1 {
  font-family: "Noto Serif JP";
  font-weight: 400;
  font-size: 6rem;
  letter-spacing: 1.5rem;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  h3.section_ttl07 .t1 {
    font-size: 3rem;
  }
}
h3.section_ttl07 .t2 {
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 2.5;
  letter-spacing: 0.5rem;
}
@media screen and (max-width: 768px) {
  h3.section_ttl07 .t2 {
    font-size: 1.5rem;
  }
}
h3.section_ttl09 {
  text-align: center;
}
h3.section_ttl09 .t1 {
  font-family: "Noto Serif JP";
  font-weight: 400;
  font-size: 1.8rem;
  letter-spacing: 0.2rem;
  line-height: 2.3;
}
@media screen and (max-width: 768px) {
  h3.section_ttl09 .t1 {
    font-size: 2.5rem;
  }
}
h3.section_ttl09 .serv01 {
  font-family: "Noto Serif JP";
  font-weight: bolder;
  font-size: 2.5rem;
  line-height: 2.0;
}
h3.section_ttl09 .t2 {
  font-family: "Noto Serif JP";
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.4rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  h3.section_ttl09 .t2 {
    font-size: 1.5rem;
  }
}
h3.section_ttl09::after {
  content: "";
  position: absolute;
  width: 6.8rem;
  height: 0.4rem;
  bottom: -25px;
  left: 50%;
  transform: translate(-50%);
  background: #000;
}
@media screen and (max-width: 768px) {
  h3.section_ttl09::after {
    width: 3.7rem;
    height: 0.05rem;
  }
}
h3.section_ttl10 {
  font-family: "Noto Serif JP";
  font-weight: 400;
  font-size: 9rem;
  letter-spacing: 1.1rem;
  position: relative;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  h3.section_ttl10 {
    font-size: 6rem;
    text-align: center;
  }
}
h3.section_ttl10::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.2rem;
  bottom: 0px;
  left: 50%;
  transform: translate(-50%);
  background: #000;
}
@media screen and (max-width: 768px) {
  h3.section_ttl10::after {
    width: 100%;
    height: 0.05rem;
  }
}
a.line_link {
  position: relative;
  min-width: 28rem;
  width: -moz-fit-content;
  width: fit-content;
  height: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #0e0e0e;
  border: solid #0e0e0e 2px;
  overflow: hidden;
  transition: 0.15s;
  font: 400 1.6rem "Noto Serif JP"; /* Sans JP */
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  a.line_link {
    font-size: 1.6rem;
  }
}
a.line_link:hover {
  color: #000;
}
a.line_link:hover span {
  width: 100%;
  height: 2000%;
  opacity: 1;
  background: #fff;
  transform: translate(-50%, -50%) rotate(80deg);
}
a.line_link p {
  position: relative;
  z-index: 10;
}
a.line_link span {
  position: absolute;
  z-index: 0;
  width: 0;
  height: 0;
  opacity: 0;
  left: 50%;
  top: 50%;
  transform: translate(0, -50%) rotate(0deg);
  background: none;
  transition: all 0.45s ease-Out;
}
a.line_link.back_btn {
  color: #000;
  border: solid #000 2px;
  background: transparent;
}
a.line_link.back_btn:hover {
  color: #fff;
}
a.line_link.back_btn:hover span {
  background: #000;
}
a.border_btn {
  position: relative;
  overflow: hidden;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 4px;
  text-decoration: none;
  font-size: 2.4rem;
  transition: 0.15s;
  border: solid #fff 2px;
  width: 54.2rem;
  height: 11.7rem;
}
@media screen and (max-width: 768px) {
  a.border_btn {
    width: 100%;
    height: 9rem;
  }
}
a.border_btn span {
  position: absolute;
  z-index: 0;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
  transform: translate(-50%, -50%);
  z-index: -1;
}
a.border_btn p {
  position: relative;
  font-size: 2rem;
  z-index: 20;
  color: white;
  font: 400 3.6rem "Noto Serif JP";
  letter-spacing: 0.8rem;
}
a.border_btn:hover p {
  color: #000;
}
a.border_btn:hover span {
  width: 250%;
  height: 250%;
  background: #fff;
}
.text_content {
  margin-top: 7.8rem;
}
@media screen and (max-width: 768px) {
  .text_content {
    margin-top: 2rem;
  }
}
.text_content p {
  padding-bottom: 5rem;
  text-align: center;
  font-size: 1.6rem; /* 2.1rem */
  font-weight: 500;
  line-height: 1.67;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 768px) {
  .text_content p {
    font-size: 1.4rem;
    padding-bottom: 3rem;
  }
}
.flow {
  position: absolute;
  right: 0rem;
  top: 19.9%;
}
@media screen and (max-width: 1200px) {
  .flow {
    top: 24%;
  }
}
@media screen and (max-width: 768px) {
  .flow {
    display: none;
  }
}
.flow p {
  position: relative;
  font-size: 1.6rem; /* 2.1rem */
  font-family: "NotoSansJPM";
  letter-spacing: 0.16rem;
  color: #939393;
  padding-bottom: 5.7rem;
  padding-right: 3rem;
}
.flow p::after {
  position: absolute;
  content: "";
  left: 50%;
  top: 4rem;
  width: 0.1rem;
  height: 4rem;
  background: #939393;
}
@media screen and (max-width: 768px) {
  .flow p::after {
    top: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .flow p {
    font-size: 1.2rem;
  }
}
div.link {
  display: flex;
  justify-content: center;
}
.index_list a {
  display: flex;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px #ececec solid;
  position: relative;
  font-family: "Noto Serif JP";
  font-weight: 400;
}
.index_list a::after {
  content: "";
  position: absolute;
  right: 0;
  height: 3.5rem;
  aspect-ratio: 1/1;
  transform: translate(0, -50%);
  top: 50%;
  background: url(../image/arrow.png) center center/contain no-repeat;
}
@media screen and (max-width: 768px) {
  .index_list a::after {
    width: 3rem;
  }
}
.index_list a:hover {
  filter: none;
}
.index_list a:hover::after {
  transform: translate(-0.5rem, -50%);
  transition: all 0.15s;
}
/* ul.breadcrumb {
  padding: 30px 30px;
}
@media screen and (max-width: 768px) {
  ul.breadcrumb {
    padding: 20px;
  }
}
ul.breadcrumb .breadcrumb-item {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: .1em;
  color: #505050;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  ul.breadcrumb .breadcrumb-item {
    font-size: 12px;
  }
}
ul.breadcrumb .breadcrumb-item.active_link a {
  text-decoration: none;
  color: #505050;
}
ul.breadcrumb .breadcrumb-item a:hover {
  color: #505050;
}
ul.breadcrumb .breadcrumb-item + .breadcrumb-item {
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  ul.breadcrumb .breadcrumb-item + .breadcrumb-item {
    margin-left: 8px;
  }
}
ul.breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: 20px;
  font-size: 25px;
  line-height: 1.4;
  content: ">";
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  ul.breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    padding-right: 8px;
    font-size: 15px;
  }
} */
input[type="checkbox"] {
  opacity: 0;
  position: absolute;
  left: -999rem;
}
label {
  cursor: pointer;
}
.tick-icon {
  position: absolute;
  width: 0;
  height: 0;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.check_box:checked + .checkbox-label span:first-child {
  animation: checkbox_ani 0.4s ease;
}
.check_box:checked + .checkbox-label span:first-child svg {
  stroke-dashoffset: 0;
  stroke-width: 2;
}
label.checkbox-label {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  overflow: hidden;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
}
label.checkbox-label span {
  font-weight: 500;
}
label.checkbox-label span:first-child {
  position: relative;
  display: block;
  width: 3.1rem;
  aspect-ratio: 1/1;
  border-radius: 0.3rem;
  transform: scale(1);
  border: 2px solid rgba(55, 57, 65, 0.6235294118);
  transition: all 0.2s ease;
  flex-shrink: 0;
  background: #fff;
}
@media screen and (max-width: 768px) {
  label.checkbox-label span:first-child {
    width: 1.6rem;
  }
}
label.checkbox-label span:first-child svg {
  position: absolute;
  display: block;
  width: 2rem;
  transform: translate(-50%, -50%);
  left: 55%;
  top: 50%;
  fill: none;
  stroke: #000;
  stroke-width: 0;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1.3rem;
  stroke-dashoffset: 1rem;
  transition: all 0.3s ease;
  transition-delay: 0.1s;
}
@media screen and (max-width: 768px) {
  label.checkbox-label span:first-child svg {
    width: 1.2rem;
  }
}
label.checkbox-label span:last-child {
  padding-left: 1.6rem;
  font-size: 1.6rem; /* 2.1rem */
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 1px;
}
@media screen and (max-width: 768px) {
  label.checkbox-label span:last-child {
    font-size: 1.4rem;
  }
}
.check_box {
  position: relative;
}
.set_ttl {
  position: relative;
  margin-top: 2rem;
  padding-right: 5rem;
  font: 400 2.4rem "Noto Serif JP"; /*3.4rem*/
  line-height: 1.47;
  letter-spacing: 0.35rem;
  width: 44%;
}
@media screen and (max-width: 768px) {
  .set_ttl {
    font-size: 1.6rem; /*2rem*/
    margin-top: 2rem;
    line-height: 1.4;
    letter-spacing: 0.15rem;
    width: auto;
  }
}
.set_ttl::before {
  position: absolute;
  content: "";
  height: 0.3rem;
  width: 7rem;
  left: 0;
  top: -2.5rem;
  background: #0e0e0e;
}
@media screen and (max-width: 768px) {
  .set_ttl::before {
    height: 0.2rem;
    width: 4rem;
    top: -1.5rem;
  }
}
.ttl_content {
  width: 68%;
}
@media screen and (max-width: 768px) {
  .ttl_content {
    width: 100%;
  }
}
.ttl_content p.ttl1, .ttl_content h3.ttl1 {
  font: 500 3rem "Noto Serif JP"; /* Sans JP */
  line-height: 1.6;
  letter-spacing: 0.1rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .ttl_content p.ttl1, .ttl_content h3.ttl1 {
    margin-top: 0.4rem;
    font-size: 2rem;
    letter-spacing: 0;
  }
}
.ttl_content p.txt1 {
  font: 400 1.75rem "Noto Serif JP"; /* 1.875rem Sans JP */
  line-height: 2.0;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 768px) {
  .ttl_content p.txt1 {
    margin-top: 1rem;
    font-size: 1.4rem;
    letter-spacing: 0;
    line-height: 2;
  }
}
.high_tech {
  padding: 10rem 15rem 5rem;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .high_tech {
    flex-direction: column;
    padding: 6rem 1.6rem 5rem;
  }
}
.high_tech .content .txt1 {
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .high_tech .content .txt1 {
    margin-top: 0.3rem;
  }
}
.feature {
  padding: 12rem 15rem 6rem;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .feature {
    padding: 6rem 1.6rem 5rem;
    flex-direction: column;
  }
  .feature .ttl_content {
    margin-top: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .feature .content {
    margin-top: 0.5rem;
  }
}
.feature .content .txt1 {
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .feature .content .txt1 {
    margin-top: 1rem;
  }
}
ul.dt_tbl {
  margin: 5rem auto;
  width: 100%;
}
ul.dt_tbl li {
  display: flex;
  -moz-column-gap: 3rem;
  column-gap: 3rem;
  border-bottom: 1px solid #cdcdcd;
  padding: 1.95rem 0;
}
ul.dt_tbl li p {
  font-weight: 500;
  font-size: 1.6rem; /* 2.1rem */
  line-height: 1.9;
  color: #0e0e0e;
}
@media screen and (max-width: 768px) {
  ul.dt_tbl li p {
    font-size: 1.25rem;
  }
}
ul.dt_tbl li .ps {
  padding: 0 12.8rem;
  width: 31%;
}
@media screen and (max-width: 1400px) {
  ul.dt_tbl li .ps {
    padding: 0 6rem;
  }
}
@media screen and (max-width: 768px) {
  ul.dt_tbl li .ps {
    padding: 0 1rem;
    width: 20%;
  }
}
ul.dt_tbl li .ds {
  letter-spacing: 0.1rem;
  max-width: calc(69% - 3rem);
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  ul.dt_tbl li .ds {
    max-width: calc(80% - 3rem);
  }
}
ul.dt_tbl li .ds span {
  color: #707070;
}
ul.dt_tbl li .ds a {
  margin-top: 1.4rem;
  float: right;
  border-bottom: 1px solid #4a4a4a;
  margin-bottom: 2.7rem;
}
ul.dt_tbl.history_tbl li {
  padding: 5rem 0;
}
@media screen and (max-width: 1100px) {
  ul.dt_tbl.history_tbl li {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  ul.dt_tbl.history_tbl li {
    padding: 2rem 0;
  }
}
ul.dt_tbl.history_tbl li .ps {
  font-family: "Noto Serif JP";
  font-weight: 600;
  font-size: 3.8rem;
  line-height: 1.57;
  letter-spacing: 0.3rem;
  padding: 0 10.6rem;
  color: #aeaeae;
  width: 21.5%;
}
@media screen and (max-width: 1100px) {
  ul.dt_tbl.history_tbl li .ps {
    width: 100%;
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  ul.dt_tbl.history_tbl li .ps {
    font-size: 2.6rem;
  }
}
ul.dt_tbl.history_tbl li .ds {
  line-height: 1.66;
  padding-top: 0.6rem;
  max-width: calc(79% - 3rem);
}
@media screen and (max-width: 1100px) {
  ul.dt_tbl.history_tbl li .ds {
    margin-top: 2rem;
    max-width: 100%;
    padding: 0 5rem;
  }
}
@media screen and (max-width: 768px) {
  ul.dt_tbl.history_tbl li .ds {
    padding: 0rem;
  }
}
.service_items {
  margin-top: 12rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  -moz-column-gap: 10rem;
  column-gap: 10rem;
  row-gap: 7rem;
}
@media screen and (max-width: 1200px) {
  .service_items {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media screen and (max-width: 768px) {
  .service_items {
    margin-top: 3.7rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    -moz-column-gap: 2rem;
    column-gap: 2rem;
    row-gap: 6rem;
    padding: 0;
  }
}
.service_items a .thumb {
  margin: 0 auto;
  width: 60%;
}
.service_items a p.txt {
  position: relative;
  font: 400 1.3rem "Noto Sans JP";
  line-height: 1.6;
  letter-spacing: 0.1rem;
  text-align: center;
  padding-top: 2rem;
  padding-bottom: 4.8rem;
}
@media screen and (max-width: 1400px) {
  .service_items a p.txt {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 1100px) {
  .service_items a p.txt {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 768px) {
  .service_items a p.txt {
    font-size: 1rem;
    padding: 1.4rem 0rem 3rem;
    line-height: 1.7;
  }
}
.service_items a p.txt span {
  font: 700 1.5rem "Noto Sans JP";
  line-height: 1.6;
  padding-bottom: 1rem;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .service_items a p.txt span {
    font-size: 1.25rem;
  }
}
.service_items a p.txt::after {
  position: absolute;
  content: "";
  width: 4.6rem;
  height: 1.2rem;
  background: url(../image/arw.png) center center/contain no-repeat;
  left: 40%;
  bottom: 0rem;
}
@media screen and (max-width: 768px) {
  .service_items a p.txt::after {
    width: 3rem;
    height: 0.7rem;
  }
}
.t_ltxt0e {
  color: #0e0e0e;
}
.media_block {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .media_block {
    flex-wrap: wrap;
    padding-bottom: 3rem;
  }
}
.media_block::after {
  position: absolute;
  content: "";
  border: solid #000 1px;
  width: 100%;
  height: calc(100% - 5.4rem);
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
}
.media_block .fig {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .media_block .fig {
    order: 1;
    width: 100%;
  }
}
.media_block .fig .thumb {
  width: calc(100% + 3.6rem - 6.6rem);
  aspect-ratio: 67/78;
  transform: translate(-3.6rem, 0);
}
@media screen and (max-width: 1100px) {
  .media_block .fig .thumb {
    transform: translate(-1.6rem, 0);
  }
}
@media screen and (max-width: 960px) {
  .media_block .fig .thumb {
    aspect-ratio: 67/85;
  }
}
@media screen and (max-width: 768px) {
  .media_block .fig .thumb {
    width: 100vw;
    aspect-ratio: 2/1.6;
  }
}
.media_block .fig .thumb img {
  height: 100%;
}
.media_block .cts {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .media_block .cts {
    order: 2;
    width: 100%;
  }
}
.media_block .cts .incts {
  margin: auto;
  width: 86%;
  max-width: 52rem;
}
@media screen and (max-width: 768px) {
  .media_block .cts .incts {
    width: 100%;
  }
}
.media_block .cts .label p {
  line-height: 1.2;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 768px) {
  .media_block .cts .label p {
    text-align: center;
  }
}
.media_block .cts .label p .et1 {
  font-family: "Noto Serif JP";
  font-weight: 400;
  font-size: 5rem;
  letter-spacing: 1.1rem;
}
@media screen and (max-width: 1100px) {
  .media_block .cts .label p .et1 {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 768px) {
  .media_block .cts .label p .et1 {
    font-size: 3rem;
  }
}
.media_block .cts .label p .et2 {
  font-family: "Noto Serif JP";
  font-weight: 500;
  font-size: 5rem;
  letter-spacing: 1.2rem;
}
@media screen and (max-width: 1100px) {
  .media_block .cts .label p .et2 {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 768px) {
  .media_block .cts .label p .et2 {
    font-size: 3rem;
  }
}
.media_block .cts .label p.jt {
  font-weight: 500;
  font-size: 2.2rem;
  letter-spacing: 0.4rem;
}
@media screen and (max-width: 768px) {
  .media_block .cts .label p.jt {
    font-size: 1.5rem;
  }
}
.media_block .cts .ds {
  margin-top: 6rem;
  letter-spacing: 0.15rem;
  font-size: 1.9rem;
  line-height: 1.875;
}
@media screen and (max-width: 1100px) {
  .media_block .cts .ds {
    margin-top: 4rem;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .media_block .cts .ds {
    margin-top: 2rem;
    font-size: 1.4rem;
    line-height: 2;
  }
}
.media_block .cts .arrow_box {
  display: table;
  margin-top: 5rem;
  margin-right: 0;
  margin-left: auto;
  width: 7.2rem;
  aspect-ratio: 72/18;
  background: url(../image/arw_bg.png) center center/contain no-repeat;
}
@media screen and (max-width: 768px) {
  .media_block .cts .arrow_box {
    margin-top: 4rem;
    margin-right: 2rem;
    margin-left: auto;
    width: 5rem;
  }
}
.bloglist {
  width: 100%;
  background: #efefef;
  padding: 10.5rem 0rem 10rem;
}
@media screen and (max-width: 768px) {
  .bloglist {
    padding: 4rem 0rem 3.5rem;
  }
}
.bloglist .xls_contain .category {
  padding: 0 5rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  -moz-column-gap: 2.7rem;
  column-gap: 2.7rem;
  row-gap: 6.5rem;
}
@media screen and (max-width: 1400px) {
  .bloglist .xls_contain .category {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media screen and (max-width: 1200px) {
  .bloglist .xls_contain .category {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 768px) {
  .bloglist .xls_contain .category {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    padding: 0rem;
    -moz-column-gap: 1.6rem;
    column-gap: 1.6rem;
    row-gap: 2.8rem;
  }
}
@media screen and (max-width: 768px) {
  .bloglist .xls_contain .category a .thumb {
    aspect-ratio: 32/18;
  }
}
.bloglist .xls_contain .category a .thumb img {
  height: 100%;
}
.bloglist .xls_contain .category a .img_part {
  overflow: hidden;
}
.bloglist .xls_contain .category a .inf_ln {
  background: #fff;
  padding: 3rem 2rem 3.5rem;
}
@media screen and (max-width: 768px) {
  .bloglist .xls_contain .category a .inf_ln {
    padding: 1.6rem 1.1rem 1.8rem;
  }
}
.bloglist .xls_contain .category a .inf_ln .date {
  font: 500 1.6rem "Noto Sans JP"; /* Noto Serif JP */
}
@media screen and (max-width: 768px) {
  .bloglist .xls_contain .category a .inf_ln .date {
    font-size: 1.4rem;
  }
}
.bloglist .xls_contain .category a .inf_ln .txt_title {
  font: 1.6rem "Noto Sans JP"; /* Noto Serif JP */
  line-height: 1.6;
}
.bloglist .xls_contain .category a .inf_ln .txt {
  display: none;
  /*font: 500 1.8rem "Noto Serif JP";
  margin-top: 2rem;
  letter-spacing: 0.13rem;*/
}
@media screen and (max-width: 768px) {
  .bloglist .xls_contain .category a .inf_ln .txt {
    display: none;
    /*    font-size: 1.4rem;
    margin-top: 0.6rem;
    letter-spacing: 0.07rem;*/
  }
}
.bloglist .xls_contain .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 8.7rem;
}
@media screen and (max-width: 768px) {
  .bloglist .xls_contain .pagination {
    margin-top: 4.8rem;
  }
}
.bloglist .xls_contain .pagination li {
  background: #fff;
  color: #000;
  width: 5.5rem;
  height: 5.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 1.25rem;
  border: 1px solid #000;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .bloglist .xls_contain .pagination li {
    width: 2.9rem;
    height: 2.9rem;
    margin: 0 0.8rem;
  }
}
.bloglist .xls_contain .pagination li a {
  font: 1.6rem "Noto Serif JP";
  line-height: 1.63;
}
@media screen and (max-width: 768px) {
  .bloglist .xls_contain .pagination li a {
    font-size: 1.2rem;
  }
}
.bloglist .xls_contain .pagination li:hover, .bloglist .xls_contain .pagination .active {
  background: #000;
  color: #fff;
}
@keyframes circle_rotate {
  from {
    transform: translate(-50%, -50%) rotate(0);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes shiny-btn1 {
  0% {
    transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
/*--------------------------------------------------------------
    # ヘッダー - top - logo & header & mega menu
--------------------------------------------------------------*/
/* ------------------------------------------------------------------------------
	ドロップダウンメニューの実装 2024/08
------------------------------------------------------------------------------ */
#service-menu, #works-menu {
  position: relative;
}
#service-menu .sub-menu, #works-menu .sub-menu {
  display: none;
  position: absolute;
  background: #000;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  width: 30rem;
  display: none;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  p {
    line-height: 1.3;
    width: 100%;
    a {
      color: #fff;
      display: block;
      text-align: left;
      font-size: 1.25rem;
      font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
      padding: 8px 15px 8px 15px;
      border-bottom: solid 1px #4b4b4b;
      text-indent: -0.7em;
      padding-left: 2em;
      &::before {
        content: "> ";
        font-size: 0.8em;
      }
    }
  }
}
#works-menu:hover .sub-menu, #service-menu:hover .sub-menu {
  display: flex;
}
/*-------------------------------------------------------------*/
footer {
  position: relative;
  background: #0e0e0e;
  color: #fff;
}
footer .xlm_contain {
  padding-top: 6rem;
  padding-bottom: 1.6rem;
}
@media screen and (max-width: 768px) {
  footer .xlm_contain {
    padding-top: 3rem;
    padding-bottom: 2.3rem;
  }
}
footer .xlm_contain ul {
  display: flex;
  justify-content: center;
}
footer .xlm_contain ul.relation {
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  footer .xlm_contain ul.relation {
    display: block;
  }
}
footer .xlm_contain ul.relation li {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 25%;
}
@media screen and (max-width: 768px) {
  footer .xlm_contain ul.relation li {
    padding-top: 4.9rem;
    width: 100%;
  }
}
footer .xlm_contain ul.relation li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.7rem 1rem 0;
}
footer .xlm_contain ul.relation li a p.txt {
  font: 300 1.6rem/1.4 "Noto Serif JP";
  text-align: center;
  padding-top: 1.4rem;
}
@media screen and (max-width: 768px) {
  footer .xlm_contain ul.relation li a p.txt {
    font-size: 1.5rem;
    line-height: 1.5;
    padding-top: 2.4rem;
  }
}
footer .xlm_contain ul.relation li::after {
  position: absolute;
  content: "";
  background: white;
  right: 0;
  top: 0rem;
  height: 15rem;
  width: 0.1rem;
}
@media screen and (max-width: 768px) {
  footer .xlm_contain ul.relation li::after {
    height: 0.1rem;
    top: 14.6rem;
    right: 0rem;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  footer .xlm_contain ul.relation li:first-child {
    padding-top: 0;
  }
}
footer .xlm_contain ul.relation li:first-child a {
  padding-top: 2.7rem;
}
@media screen and (max-width: 768px) {
  footer .xlm_contain ul.relation li:first-child a p img {
    aspect-ratio: 185/21;
    width: 19.1rem;
  }
}
@media screen and (max-width: 768px) {
  footer .xlm_contain ul.relation li:nth-child(2) img {
    width: 13.3rem;
  }
  footer .xlm_contain ul.relation li:nth-child(2)::after {
    top: 18.1rem;
  }
}
@media screen and (max-width: 768px) {
  footer .xlm_contain ul.relation li:nth-child(3) img {
    width: 10.3rem;
  }
  footer .xlm_contain ul.relation li:nth-child(3)::after {
    top: 18.1rem;
  }
  footer .xlm_contain ul.relation li:nth-child(3) a p.txt {
    padding-top: 1.7rem;
  }
}
footer .xlm_contain ul.relation li:last-child::after {
  width: 0;
}
@media screen and (max-width: 768px) {
  footer .xlm_contain ul.relation li:last-child img {
    width: 13.8rem;
  }
  footer .xlm_contain ul.relation li:last-child::after {
    top: 18.1rem;
    width: 100%;
  }
  footer .xlm_contain ul.relation li:last-child a p.txt {
    padding-top: 2.6rem;
  }
}
footer .xlm_contain ul.sns li {
  margin: 0 1.5rem;
  padding: 7.7rem 0 4.3rem;
}
@media screen and (max-width: 768px) {
  footer .xlm_contain ul.sns li {
    margin: 0 1.6rem;
    padding: 8.7rem 0 2.9rem;
  }
  footer .xlm_contain ul.sns li p img {
    width: 4.3rem;
  }
}
footer .xlm_contain ul.page_link li a {
  font: 500 1.6rem "Noto Sans JP";
  letter-spacing: 0.1rem;
  margin: 0px 1.8rem;
}
@media screen and (max-width: 768px) {
  footer .xlm_contain ul.page_link {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    -moz-column-gap: 2.9rem;
    column-gap: 2.9rem;
    row-gap: 2rem;
    padding: 0 6rem;
  }
  footer .xlm_contain ul.page_link li {
    display: flex;
    justify-content: center;
  }
  footer .xlm_contain ul.page_link li a {
    font-size: 1.3rem;
    margin: 0;
  }
}
footer .xlm_contain ul.site_map {
  position: absolute;
  bottom: 4.1rem;
  right: 0rem;
}
footer .xlm_contain ul.site_map li a {
  font: 500 1.4rem "Noto Sans JP";
  letter-spacing: 0.1rem;
  margin-left: 4.6rem;
}
@media screen and (max-width: 768px) {
  footer .xlm_contain ul.site_map {
    display: none;
  }
}
footer .xlm_contain p {
  display: flex;
  justify-content: center;
  text-align: center;
}
footer .xlm_contain p.ft_logo {
  padding-top: 5.3rem;
}
@media screen and (max-width: 768px) {
  footer .xlm_contain p.ft_logo {
    padding-top: 4rem;
  }
  footer .xlm_contain p.ft_logo img {
    width: 15.4rem;
  }
}
footer .xlm_contain p.ft-copyright {
  letter-spacing: 0.08rem;
  padding-top: 1.0rem;
  padding-bottom: 2.0rem;
  color: #999;
  font-size: 10px;
  line-height: 1;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  footer .xlm_contain p.ft-copyright {
    font-size: 10px;
    letter-spacing: 0.03rem;
    padding-top: 0.9rem;
      display: flow-root;
  }
}
footer #pagetop {
  background: #2b2b2b;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 7.9rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  footer #pagetop {
    background: white;
    position: absolute;
    right: 0;
    bottom: 0;
    height: 4.5rem;
    width: 4.5rem;
  }
  footer #pagetop img {
    height: 3rem;
  }
}
/*--------------------------------------------------------------
    # メインコンテンツ - main contents
--------------------------------------------------------------*/
main {
  position: relative;
}
main section {
  position: relative;
  margin: 0 auto;
  width: 100%;
  /*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
  common style
  ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
}
main section.index_mainvisual {
  background: url(../image/mainvisual_bg.png) center center/cover no-repeat;
  height: 100vh;
  width: 100%;
}
main section.index_mainvisual .xl_contain {
  color: white;
  height: 100%;
  position: relative;
  padding: 0 15px;
}
main section.index_mainvisual .xl_contain h3 {
  font: 500 3.2rem "Noto Serif JP";
  letter-spacing: 0.2rem;
  padding-top: 47.2vh;
}
main section.index_mainvisual .xl_contain h3 span {
  display: block;
  font: 400 2rem "Cormorant Garamond";
}
@media screen and (max-width: 768px) {
  main section.index_mainvisual .xl_contain h3 {
    font-size: 2.5rem;
  }
  main section.index_mainvisual .xl_contain h3 span {
    font-size: 1.6rem;
  }
}
/*250108 TOP専用*/
main section.index_mainvisual .xl_contain h2 {
  font: 300 3.2rem "Noto Serif JP";
  letter-spacing: 0.3rem;
  line-height: 1.9;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  position: absolute;
  top: 13rem;
  left: 0;
  padding-top: 0;
}
main section.index_mainvisual .xl_contain h2 span {
  display: block;
  writing-mode: vertical-rl;
  font: italic 400 1.3rem "Cormorant Garamond";
  letter-spacing: 0.25rem;
  margin-left: 0.6rem;
  opacity: 0.85;
}
@media screen and (max-width: 768px) {
  main section.index_mainvisual .xl_contain h2 {
    font-size: 2.4rem;
    top: 8rem;
    letter-spacing: 0.2rem;
  }
  main section.index_mainvisual .xl_contain h2 span {
    font-size: 1.1rem;
  }
}
main section.index_mainvisual .xl_contain p {
  font: 400 1.2rem/2 "Cormorant Garamond";
  letter-spacing: 0.12rem;
  text-align: end;
  position: absolute;
  bottom: 5.3rem;
  right: 3.5rem;
}
@media screen and (max-width: 768px) {
  main section.index_mainvisual .xl_contain p {
    font-size: 1rem;
    line-height: 1.4;
    bottom: 2.3rem;
    right: 1.6rem;
  }
}
main section.index_business .lg_contain {
  color: #1b1b1b;
  padding-top: 8.8rem;
}
@media screen and (max-width: 768px) {
  main section.index_business .lg_contain {
    padding-top: 4rem;
  }
}
main section.index_business .lg_contain .intro h4.intro_en {
  font: 400 1.8rem/2 "Cormorant Garamond";
  letter-spacing: 0.27rem;
}
@media screen and (max-width: 768px) {
  main section.index_business .lg_contain .intro h4.intro_en {
    font-size: 1.6rem;
    line-height: 1.6;
  }
}
main section.index_business .lg_contain .intro p.intro_ja {
  font: 400 1.6rem/2 "Noto Serif JP"; /* Sans JP */
  letter-spacing: 0.2rem;
  margin-top: 2.3rem;
}
@media screen and (max-width: 768px) {
  main section.index_business .lg_contain .intro p.intro_ja {
    font-size: 1.2rem;
    margin-top: 1.3rem;
  }
}
main section.index_business .lg_contain p.tp_e {
  font: 400 1.4rem/1.5 "Cormorant Garamond";
  letter-spacing: 0.22rem;
}
@media screen and (max-width: 768px) {
  main section.index_business .lg_contain p.tp_e {
    font-size: 1.2rem;
  }
}
main section.index_business .lg_contain p.tp_ja {
  font: 500 2rem/1.75 "Noto Serif JP";
  letter-spacing: 0.18rem;
  margin-top: 0.6rem;
}
@media screen and (max-width: 768px) {
  main section.index_business .lg_contain p.tp_ja {
    font-size: 1.4rem;
  }
}
main section.index_business .lg_contain p.tc_ja {
  font: 400 1.5rem/2 "Noto Serif JP"; /* Sans JP */
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 768px) {
  main section.index_business .lg_contain p.tc_ja {
    font-size: 1.2rem;
  }
}
main section.index_business .lg_contain .architect {
  margin-top: 5.4rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
}
@media screen and (max-width: 768px) {
  main section.index_business .lg_contain .architect {
    margin-top: 3rem;
    flex-wrap: wrap;
  }
}
main section.index_business .lg_contain .architect p.l_fig {
  aspect-ratio: 72/65;
  width: 60%;
}
main section.index_business .lg_contain .architect p.l_fig img {
  height: 100%;
}
@media screen and (max-width: 768px) {
  main section.index_business .lg_contain .architect p.l_fig {
    width: 100%;
    aspect-ratio: 70/40;
  }
}
main section.index_business .lg_contain .architect div.txt {
  width: 37%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  main section.index_business .lg_contain .architect div.txt {
    margin-top: 3rem;
    width: 100%;
    align-items: flex-start;
  }
}
main section.index_business .lg_contain .architect div.txt p.tc_ja {
  text-align: left;
  margin-top: 2.4rem;
  max-width: 30rem;
}
@media screen and (max-width: 768px) {
  main section.index_business .lg_contain .architect div.txt p.tc_ja {
    width: 100%;
    max-width: 100%;
  }
}
main section.index_business .lg_contain .architect div.txt .architect_img2 {
  margin-top: 10rem;
  width: 100%;
  aspect-ratio: 44/35;
}
main section.index_business .lg_contain .architect div.txt .architect_img2 img {
  height: 100%;
}
@media screen and (max-width: 768px) {
  main section.index_business .lg_contain .architect div.txt .architect_img2 {
    margin-top: 2rem;
    width: 100%;
    aspect-ratio: 40/25;
  }
}
main section.index_business .lg_contain ul {
  margin-top: 3.9rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  main section.index_business .lg_contain ul {
    margin-top: 3rem;
    flex-wrap: wrap;
  }
}
main section.index_business .lg_contain ul li.design {
  width: 59.5%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 768px) {
  main section.index_business .lg_contain ul li.design {
    width: 100%;
    flex-wrap: wrap;
  }
}
main section.index_business .lg_contain ul li.design .txt {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  margin-top: 10rem;
  padding-right: 4.8rem;
  width: 47%;
}
@media screen and (max-width: 768px) {
  main section.index_business .lg_contain ul li.design .txt {
    width: 100%;
    padding: 0;
    margin: 0;
    align-items: flex-start;
  }
}
main section.index_business .lg_contain ul li.design .txt .tp_ja {
  margin-top: 0.8rem;
}
main section.index_business .lg_contain ul li.design .txt .tc_ja {
  float: right;
  padding-right: 1.1rem;
  margin-top: 2.5rem;
  text-align: left;
  width: 87.5%;
}
@media screen and (max-width: 768px) {
  main section.index_business .lg_contain ul li.design .txt .tc_ja {
    float: none;
    width: 100%;
    margin-top: 2rem;
    padding-right: 0;
  }
}
main section.index_business .lg_contain ul li.design .thumb {
  width: 53%;
  aspect-ratio: 38/56;
}
main section.index_business .lg_contain ul li.design .thumb img {
  height: 100%;
}
@media screen and (max-width: 768px) {
  main section.index_business .lg_contain ul li.design .thumb {
    margin-top: 2rem;
    aspect-ratio: 40/25;
    width: 100%;
  }
}
main section.index_business .lg_contain ul li.corporate {
  width: 37%;
}
@media screen and (max-width: 768px) {
  main section.index_business .lg_contain ul li.corporate {
    width: 100%;
  }
  main section.index_business .lg_contain ul li.corporate .txt {
    text-align: left;
    padding-left: 0rem;
    padding-top: 3rem;
  }
}
main section.index_business .lg_contain ul li.corporate .txt {
  padding-left: 1rem;
  padding-top: 5.5rem;
  max-width: 36rem;
}
@media screen and (max-width: 768px) {
  main section.index_business .lg_contain ul li.corporate .txt {
    margin-top: 5rem;
    padding: 0;
    max-width: 100%;
  }
}
main section.index_business .lg_contain ul li.corporate .txt .tp_ja {
  margin-top: 0.9rem;
}
main section.index_business .lg_contain ul li.corporate .txt .tc_ja {
  padding-top: 2.4rem;
  width: 90%;
}
@media screen and (max-width: 768px) {
  main section.index_business .lg_contain ul li.corporate .txt .tc_ja {
    width: 100%;
  }
}
main section.index_service .xlm_contain, main section.index_service .xl_contain {
  padding-top: 16.6rem;
}
@media screen and (max-width: 768px) {
  main section.index_service .xlm_contain, main section.index_service .xl_contain {
    padding-top: 7rem;
  }
}
main section.index_service .xlm_contain div.content, main section.index_service .xl_contain div.content {
  margin-top: 6.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media screen and (max-width: 768px) {
  main section.index_service .xlm_contain div.content, main section.index_service .xl_contain div.content {
    margin-top: 3rem;
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
main section.index_service .xlm_contain div.content div.img, main section.index_service .xl_contain div.content div.img {
  position: relative;
  padding-top: 2.7rem;
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  main section.index_service .xlm_contain div.content div.img, main section.index_service .xl_contain div.content div.img {
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  main section.index_service .xlm_contain div.content div.img, main section.index_service .xl_contain div.content div.img {
    padding-top: 2rem;
  }
}
main section.index_service .xlm_contain div.content div.img p.img1, main section.index_service .xl_contain div.content div.img p.img1 {
  width: 72.8%;
  aspect-ratio: 50/57;
}
@media screen and (max-width: 1720px) {
  main section.index_service .xlm_contain div.content div.img p.img1, main section.index_service .xl_contain div.content div.img p.img1 {
    width: 60%;
    margin-left: 12%;
  }
}
main section.index_service .xlm_contain div.content div.img p.img1 img, main section.index_service .xl_contain div.content div.img p.img1 img {
  height: 100%;
}
main section.index_service .xlm_contain div.content div.img p.img2, main section.index_service .xl_contain div.content div.img p.img2 {
  top: 49rem;
  left: -15rem;
  width: 40%;
  position: absolute;
  aspect-ratio: 4/5;
}
@media screen and (max-width: 1720px) {
  main section.index_service .xlm_contain div.content div.img p.img2, main section.index_service .xl_contain div.content div.img p.img2 {
    width: 30%;
    left: 0;
    top: 50%;
  }
}
@media screen and (max-width: 768px) {
  main section.index_service .xlm_contain div.content div.img p.img2, main section.index_service .xl_contain div.content div.img p.img2 {
    top: 26rem;
    left: 0;
  }
}
main section.index_service .xlm_contain div.content div.img p.txt, main section.index_service .xl_contain div.content div.img p.txt {
  color: black;
  font: 400 1.6rem/2.5 "Noto Serif JP";
  letter-spacing: 0.2rem;
  margin-left: 3.8rem;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 768px) {
  main section.index_service .xlm_contain div.content div.img p.txt, main section.index_service .xl_contain div.content div.img p.txt {
    margin-left: 2rem;
    font-size: 1.4rem;
    line-height: 2;
  }
}
main section.index_service .xlm_contain div.content div.img p.txt span, main section.index_service .xl_contain div.content div.img p.txt span {
  transform: rotate(90deg);
  position: absolute;
}
main section.index_service .xlm_contain div.content div.img p.txt span:last-child, main section.index_service .xl_contain div.content div.img p.txt span:last-child {
  transform: rotate(180deg);
  top: 46rem;
}
@media screen and (max-width: 768px) {
  main section.index_service .xlm_contain div.content div.img p.txt span:last-child, main section.index_service .xl_contain div.content div.img p.txt span:last-child {
    top: 22.8rem;
  }
}
main section.index_service .xlm_contain div.content div.service_list, main section.index_service .xl_contain div.content div.service_list {
  display: flex;
  justify-content: center;
}
main section.index_service .xlm_contain div.content div.service_list .index_list, main section.index_service .xl_contain div.content div.service_list .index_list {
  width: 71.4%;
}
@media screen and (max-width: 1100px) {
  main section.index_service .xlm_contain div.content div.service_list .index_list, main section.index_service .xl_contain div.content div.service_list .index_list {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  main section.index_service .xlm_contain div.content div.service_list .index_list, main section.index_service .xl_contain div.content div.service_list .index_list {
    width: 100%;
    padding-top: 0rem; /* 11.5rem */
  }
}
main section.index_service .xlm_contain div.content div.service_list .index_list a, main section.index_service .xl_contain div.content div.service_list .index_list a {
  position: relative;
  padding: 2.7rem 0;
  border-bottom: solid #d9d9d9 1px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  main section.index_service .xlm_contain div.content div.service_list .index_list a, main section.index_service .xl_contain div.content div.service_list .index_list a {
    padding: 2rem 0;
  }
}
main section.index_service .xlm_contain div.content div.service_list .index_list a p, main section.index_service .xl_contain div.content div.service_list .index_list a p {
  font: 2.2rem/1 "Noto Serif JP";
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 1100px) {
  main section.index_service .xlm_contain div.content div.service_list .index_list a p, main section.index_service .xl_contain div.content div.service_list .index_list a p {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  main section.index_service .xlm_contain div.content div.service_list .index_list a p, main section.index_service .xl_contain div.content div.service_list .index_list a p {
    font-size: 1.8rem;
  }
}
main section.index_service .xlm_contain div.content div.service_list .index_list a span, main section.index_service .xl_contain div.content div.service_list .index_list a span {
  margin-right: 1.7rem;
  font: 400 1.7rem "Cormorant Garamond";
  color: #4a4a4a;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 768px) {
  main section.index_service .xlm_contain div.content div.service_list .index_list a span, main section.index_service .xl_contain div.content div.service_list .index_list a span {
    margin-right: 0.5rem;
  }
}
main section.index_service .xlm_contain div.content div.service_list .index_list a::after, main section.index_service .xl_contain div.content div.service_list .index_list a::after {
  position: absolute;
  right: 0rem;
}
main section.index_service .xlm_contain div.link, main section.index_service .xl_contain div.link {
  padding-top: 8.9rem;
}
main section.index_service .xlm_contain div.link a.line_link, main section.index_service .xl_contain div.link a.line_link {
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  main section.index_service .xlm_contain div.link, main section.index_service .xl_contain div.link {
    padding-top: 4rem;
  }
}
main section.index_service .xlm_contain p.circle_img, main section.index_service .xl_contain p.circle_img {
  margin-top: 15rem;
  position: relative;
  width: 40.3rem;
  aspect-ratio: 1/1;
  margin: 15rem auto 0;
}
@media screen and (max-width: 768px) {
  main section.index_service .xlm_contain p.circle_img, main section.index_service .xl_contain p.circle_img {
    width: 60%;
    margin-top: 4rem;
  }
}
main section.index_service .xlm_contain p.circle_img img, main section.index_service .xl_contain p.circle_img img {
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  aspect-ratio: 1/1;
}
main section.index_service .xlm_contain p.circle_img img:nth-of-type(1), main section.index_service .xl_contain p.circle_img img:nth-of-type(1) {
  animation: circle_rotate 10s linear infinite;
  animation-direction: reverse;
}
@media screen and (max-width: 768px) {
  main section.index_service .xlm_contain p.circle_img img:nth-of-type(1), main section.index_service .xl_contain p.circle_img img:nth-of-type(1) {
    width: 50%;
  }
}
main section.index_service .xlm_contain p.circle_img img:nth-of-type(2), main section.index_service .xl_contain p.circle_img img:nth-of-type(2) {
  animation: circle_rotate 10s linear infinite;
}
@media screen and (max-width: 768px) {
  main section.index_service .xlm_contain p.circle_img img:nth-of-type(2), main section.index_service .xl_contain p.circle_img img:nth-of-type(2) {
    width: 75%;
  }
}
main section.index_service .xlm_contain p.circle_img img:nth-of-type(3), main section.index_service .xl_contain p.circle_img img:nth-of-type(3) {
  animation: circle_rotate 10s linear infinite;
  animation-direction: reverse;
}
@media screen and (max-width: 768px) {
  main section.index_service .xlm_contain p.circle_img img:nth-of-type(3), main section.index_service .xl_contain p.circle_img img:nth-of-type(3) {
    width: 100%;
  }
}
main section.index_space_lab div {
  background: url(../image/space_lab_bg.jpg) center center/cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 23.4rem 0 25.8rem;
  width: 100%;
}
main section.index_space_lab div p {
  color: white;
  font: 400 1.6rem "Noto Serif JP";
  letter-spacing: 0.3rem;
  padding-top: 6rem;
}
@media screen and (max-width: 768px) {
  main section.index_space_lab div {
    padding: 3rem 0 3rem;
  }
  main section.index_space_lab div p {
    font-size: 1.2rem;
    padding-top: 4rem;
  }
}
main section.index_com_link ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
main section.index_com_link ul li {
  height: 47.9rem;
  display: flex;
  justify-content: center;
}
main section.index_com_link ul li a {
  width: 100%;
}
main section.index_com_link ul li a div {
  text-align: center;
  padding-top: 12.2rem;
  transition: all 0.3s;
}
main section.index_com_link ul li a div p.label {
  color: white;
  font: 500 4rem/1.5 "Cormorant Garamond";
  letter-spacing: 0.4rem;
}
main section.index_com_link ul li a div p.label span {
  display: block;
  font: 400 1.8rem "Noto Serif JP";
  letter-spacing: 0.1rem;
}
main section.index_com_link ul li a div p.arrow {
  content: url(../image/company_arrow.png);
  margin: 0 auto;
  padding-top: 7.5rem;
}
main section.index_com_link ul li.company {
  background: url(../image/company_bg.png) center center/cover no-repeat;
}
main section.index_com_link ul li.recruiting {
  background: url(../image/recruiting_bg.jpg) center center/cover no-repeat;
}
main section.index_com_link ul li:hover {
  transition: all 0.3s;
  transform: scale(1.01);
  filter: brightness(1.3);
}
@media screen and (max-width: 768px) {
  main section.index_com_link ul {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  main section.index_com_link ul li {
    height: 23rem;
  }
  main section.index_com_link ul li a div {
    padding-top: 3.2rem;
  }
  main section.index_com_link ul li a div p {
    font-size: 2rem;
  }
  main section.index_com_link ul li a div p span {
    font-size: 1.4rem;
  }
  main section.index_com_link ul li a div p.arrow {
    padding-top: 2.5rem;
    width: 4.5rem;
  }
}
main section.contact_contact .xl_contain {
  padding-top: 0rem; /* 10rem */
}
@media screen and (max-width: 768px) {
  main section.contact_contact .xl_contain {
    padding-top: 2rem; /* 6rem */
  }
}
main section.contact_contact .xl_contain .text_content .tel_box {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  border: 1px solid #0e0e0e;
  width: 85.0%; /* 240220 85.2 */
  padding-right: 5%; /* 240220 6.2 */
  padding-left: 6%; /* 240220 0 */
  text-align: center; /* 240220 */
}
@media screen and (max-width: 1200px) {
  main section.contact_contact .xl_contain .text_content .tel_box {
    display: block;
    padding-right: 0rem;
  }
}
@media screen and (max-width: 768px) {
  main section.contact_contact .xl_contain .text_content .tel_box {
    display: block;
    width: 36rem;
  }
}
@media screen and (max-width: 1200px) {
  main section.contact_contact .xl_contain .text_content .tel_box .tel {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
main section.contact_contact .xl_contain .text_content .tel_box .tel p {
  padding: 3.6rem 0rem 1.5rem 6.9rem;
  text-align: left;
}
@media screen and (max-width: 1200px) {
  main section.contact_contact .xl_contain .text_content .tel_box .tel p {
    padding: 1rem 0rem;
    text-align: center;
  }
}
main section.contact_contact .xl_contain .text_content .tel_box .tel .tel_link {
  padding-left: 11.2rem;
  position: relative;
  letter-spacing: 0.35rem;
  font: 500 4.5rem/0.83 "Noto Serif JP";
}
@media screen and (max-width: 1200px) {
  main section.contact_contact .xl_contain .text_content .tel_box .tel .tel_link {
    padding-left: 0rem;
  }
}
@media screen and (max-width: 768px) {
  main section.contact_contact .xl_contain .text_content .tel_box .tel .tel_link {
    font-size: 2.2rem;
  }
}
main section.contact_contact .xl_contain .text_content .tel_box .tel .tel_link p {
  padding-top: 0.3rem;
  text-align: end;
  padding-bottom: 4.1rem;
  font-size: 1.5rem;
}
main section.contact_contact .xl_contain .text_content .tel_box .tel .tel_link p span {
  font-weight: 500;
}
@media screen and (max-width: 1200px) {
  main section.contact_contact .xl_contain .text_content .tel_box .tel .tel_link p {
    text-align: center;
    padding: 1rem 0rem;
  }
}
main section.contact_contact .xl_contain .text_content .tel_box .tel .tel_link::before {
  position: absolute;
  content: "";
  width: 3rem;
  height: 3.8rem;
  background: url(../image/tel_ico.png) center center/cover no-repeat;
  left: 17%;
  top: 12%;
}
@media screen and (max-width: 1200px) {
  main section.contact_contact .xl_contain .text_content .tel_box .tel .tel_link::before {
    left: -11%;
    top: 0%;
  }
}
@media screen and (max-width: 768px) {
  main section.contact_contact .xl_contain .text_content .tel_box .tel .tel_link::before {
    width: 1.5rem;
    height: 1.9rem;
    left: -11%;
  }
}
main section.contact_contact .xl_contain .text_content .tel_box .tel:last-child p {
  padding-left: 6.6rem;
}
@media screen and (max-width: 1200px) {
  main section.contact_contact .xl_contain .text_content .tel_box .tel:last-child p {
    padding-left: 0rem;
  }
}
main section.contact_contact .xl_contain .text_content .tel_box .tel:last-child .tel_link {
  padding-left: 10.5rem;
}
@media screen and (max-width: 1200px) {
  main section.contact_contact .xl_contain .text_content .tel_box .tel:last-child .tel_link {
    padding-left: 0rem;
  }
}
@media screen and (max-width: 1200px) {
  main section.contact_contact .xl_contain .text_content .tel_box .tel:last-child .tel_link p {
    text-align: center;
    padding: 1rem 0rem;
  }
}
main section.contact_contact .xl_contain .xls_contain {
  position: relative;
}
main section.contact_contact .xl_contain .xls_contain .lg_contain p {
  display: flex;
  justify-content: end;
  padding-top: 5.5rem;
  padding-right: 0.8rem;
  padding-bottom: 2.2rem;
  font-size: 1.8rem;
  letter-spacing: 0.1rem;
  line-height: 1.94;
}
@media screen and (max-width: 768px) {
  main section.contact_contact .xl_contain .xls_contain .lg_contain p {
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: 1.4rem;
  }
}
main section.contact_contact .xl_contain .xls_contain .checkBox {
  margin: 0rem 5rem;
  display: flex;
  width: 87.7%;
  background: #efefef;
}
@media screen and (max-width: 768px) {
  main section.contact_contact .xl_contain .xls_contain .checkBox {
    display: block;
    margin: 0 auto;
    width: 100%;
  }
}
main section.contact_contact .xl_contain .xls_contain .checkBox .txt {
  padding-left: 3rem;
  padding-top: 8.3rem;
  font-size: 1.4rem; /* 2.1rem */
  font-weight: 700;
  letter-spacing: 0.1rem;
  width: 40%;
}
@media screen and (max-width: 1300px) {
  main section.contact_contact .xl_contain .xls_contain .checkBox .txt {
    width: 100%;
    padding-left: 3rem;
  }
}
@media screen and (max-width: 768px) {
  main section.contact_contact .xl_contain .xls_contain .checkBox .txt {
    padding: 1rem 0;
    font-size: 1.4rem;
    text-align: center;
  }
}
main section.contact_contact .xl_contain .xls_contain .checkBox .check_Box {
  padding: 8.2rem 3rem 7.4rem 6.2rem;
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 6rem;
  column-gap: 6rem;
  row-gap: 4.6rem;
}
@media screen and (max-width: 1620px) {
  main section.contact_contact .xl_contain .xls_contain .checkBox .check_Box {
    padding: 8rem 4rem;
    row-gap: 3rem;
  }
}
@media screen and (max-width: 768px) {
  main section.contact_contact .xl_contain .xls_contain .checkBox .check_Box {
    padding: 0rem 1rem 1rem 1rem;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    row-gap: 1rem;
  }
}
@media screen and (max-width: 768px) {
  main section.contact_contact .xl_contain .xls_contain .checkBox .check_Box p {
    padding-left: 2rem;
  }
}
main section.contact_contact .xl_contain .xls_contain .checkBox .check_Box p:nth-child(7) {
  margin-left: 11rem;
}
@media screen and (max-width: 1620px) {
  main section.contact_contact .xl_contain .xls_contain .checkBox .check_Box p:nth-child(7) {
    margin-left: 0rem;
  }
}
main section.contact_contact .xl_contain .xls_contain .checkBox .check_Box p:nth-child(7) .checkbox-label span:last-child {
  letter-spacing: 0.4rem;
}
main section.contact_contact .xl_contain .xls_contain .inputGroup {
  padding: 8.7rem 0rem 12rem 0rem;
}
@media screen and (max-width: 768px) {
  main section.contact_contact .xl_contain .xls_contain .inputGroup {
    padding: 2rem 1rem;
  }
}
main section.contact_contact .xl_contain .xls_contain .inputGroup li {
  padding: 0rem 10.9rem 5.5rem 10.9rem;
}
@media screen and (max-width: 768px) {
  main section.contact_contact .xl_contain .xls_contain .inputGroup li {
    padding: 1rem 1rem;
  }
}
main section.contact_contact .xl_contain .xls_contain .inputGroup li .label {
  display: inline;
  position: relative;
  font-size: 1.6rem; /* 2.1rem */
  font-weight: 700;
  letter-spacing: 0.1rem;
}
/*main section.contact_contact .xl_contain .xls_contain .inputGroup li .label::after {
  position: absolute;
  content: "*";
  top: -1.3rem;
  right: -2rem;
  color: #888888;
}*/
@media screen and (max-width: 768px) {
  main section.contact_contact .xl_contain .xls_contain .inputGroup li .label {
    font-size: 1.4rem;
  }
  main section.contact_contact .xl_contain .xls_contain .inputGroup li .label::after {
    top: -0.5rem;
    right: -1rem;
  }
}
main section.contact_contact .xl_contain .xls_contain .inputGroup li input, main section.contact_contact .xl_contain .xls_contain .inputGroup li textarea {
  margin-top: 1.4rem;
  display: block;
  width: 92.7%;
  height: 6.2rem;
  border: 1px solid #171717;
  border-radius: 3px;
  padding: 0 1.5rem;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  main section.contact_contact .xl_contain .xls_contain .inputGroup li input, main section.contact_contact .xl_contain .xls_contain .inputGroup li textarea {
    height: 3rem;
  }
}
main section.contact_contact .xl_contain .xls_contain .inputGroup li textarea {
  height: 46.8rem;
  padding: 0.5rem 1.5rem;
}
@media screen and (max-width: 768px) {
  main section.contact_contact .xl_contain .xls_contain .inputGroup li textarea {
    height: 15rem;
  }
}
main section.contact_contact .xl_contain .xls_contain .inputGroup li:nth-child(6) p::after, main section.contact_contact .xl_contain .xls_contain .inputGroup li:nth-child(7) p::after {
  display: none;
}
main section.contact_contact .xl_contain .xls_contain .inputGroup li:nth-child(9) .uploadFile {
  display: flex;
  align-items: center;
  text-align: center;
}
main section.contact_contact .xl_contain .xls_contain .inputGroup li:nth-child(9) .uploadFile input {
  display: none;
  height: 0;
  overflow: hidden;
  width: 0;
}
@media screen and (max-width: 768px) {
  main section.contact_contact .xl_contain .xls_contain .inputGroup li:nth-child(9) .uploadFile input {
    margin-top: 1.5rem;
    width: 16rem;
    height: 3rem;
  }
}
main section.contact_contact .xl_contain .xls_contain .inputGroup li:nth-child(9) .uploadFile label {
  position: relative;
  display: inline-block;
  padding: 0 3rem;
  margin-top: 2.2rem;
  background: #efefef;
  border: solid #000 1px;
  border-radius: 3px;
  cursor: pointer;
  outline: none;
  transition: all 0.3s;
  font-weight: 500;
  font-size: 1.6rem; /* 2.1rem */
  line-height: 2.5;
}
@media screen and (max-width: 768px) {
  main section.contact_contact .xl_contain .xls_contain .inputGroup li:nth-child(9) .uploadFile label {
    margin-top: 1.5rem;
    padding: 0 2rem;
    font-size: 1.6rem;
    line-height: 2;
  }
}
main section.contact_contact .xl_contain .xls_contain .inputGroup li:nth-child(9) .uploadFile p {
  padding-top: 2.1rem;
  padding-left: 2.9rem;
  font-size: 1.6rem; /* 2.1rem */
  font-weight: 500;
  letter-spacing: 0.1rem;
}
main section.contact_contact .xl_contain .xls_contain .inputGroup li:nth-child(9) .uploadFile p::after {
  display: none;
}
@media screen and (max-width: 768px) {
  main section.contact_contact .xl_contain .xls_contain .inputGroup li:nth-child(9) .uploadFile p {
    padding-left: 1.5rem;
    font-size: 1.4rem;
  }
}
main section.contact_contact .xl_contain .xls_contain .inputGroup li:nth-child(9) .des_t {
  display: block;
  margin-top: 1.8rem;
  font-size: 1.6rem; /* 2.1rem */
  font-weight: 500;
  letter-spacing: 0.124rem;
  position: relative;
}
main section.contact_contact .xl_contain .xls_contain .inputGroup li:nth-child(9) .des_t::after {
  display: none;
}
main section.contact_contact .xl_contain .xls_contain .inputGroup li:nth-child(9) .des_t span {
  white-space: nowrap;
}
main section.contact_contact .xl_contain .xls_contain .inputGroup li:nth-child(9) .des_t span::after {
  position: absolute;
  content: "";
  background: #0e0e0e;
  width: 18.3rem;
  height: 0.1rem;
  top: 3.8rem;
  left: 48.2rem;
}
@media screen and (max-width: 945px) {
  main section.contact_contact .xl_contain .xls_contain .inputGroup li:nth-child(9) .des_t span::after {
    top: 7rem;
    width: 17.5rem;
    left: 0rem;
  }
}
@media screen and (max-width: 768px) {
  main section.contact_contact .xl_contain .xls_contain .inputGroup li:nth-child(9) .des_t span::after {
    width: 12.4rem;
    left: 4.2rem;
    top: 4.5rem;
  }
}
@media screen and (max-width: 768px) {
  main section.contact_contact .xl_contain .xls_contain .inputGroup li:nth-child(9) .des_t {
    font-size: 1.4rem;
    text-align: center;
  }
}
main section.contact_contact .xl_contain .xls_contain .inputGroup li:nth-child(10) {
  margin: 1.6rem 5rem;
  padding: 3.8rem 0rem 4.2rem 0rem;
  display: flex;
  justify-content: center;
  background: #efefef;
  width: 87.7%;
}
main section.contact_contact .xl_contain .xls_contain .inputGroup li:nth-child(10) p::after {
  display: none;
}
main section.contact_contact .xl_contain .xls_contain .inputGroup li:nth-child(10) label span:last-child {
  padding-left: 1.2rem;
}
main section.contact_contact .xl_contain .xls_contain .inputGroup li:nth-child(10) label::after {
  position: absolute;
  content: "";
  background: #0e0e0e;
  width: 19.8rem;
  height: 0.1rem;
  top: 3.5rem;
  left: 4.5rem;
}
@media screen and (max-width: 768px) {
  main section.contact_contact .xl_contain .xls_contain .inputGroup li:nth-child(10) {
    margin-top: 2rem;
    margin-left: -1rem;
    padding: 2rem 0rem;
    width: 100%;
  }
  main section.contact_contact .xl_contain .xls_contain .inputGroup li:nth-child(10) label::after {
    top: 2rem;
    width: 13rem;
    left: 2.8rem;
  }
}
main section.contact_contact .xl_contain .xls_contain .inputGroup li:nth-child(11) {
  padding: 8.1rem 0rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1200px) {
  main section.contact_contact .xl_contain .xls_contain .inputGroup li:nth-child(11) {
    padding: 4rem 0rem;
  }
}
main section.contact_contact .xl_contain .xls_contain .inputGroup li:nth-child(11) a.line_link {
  margin-right: 15rem;
  padding: 2rem 9.6rem;
  font-size: 2rem;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 1620px) {
  main section.contact_contact .xl_contain .xls_contain .inputGroup li:nth-child(11) a.line_link {
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  main section.contact_contact .xl_contain .xls_contain .inputGroup li:nth-child(11) a.line_link {
    padding: 1rem 5rem;
    font-size: 1.4rem;
  }
}
main section.contact_contact .xl_contain .xls_contain .flow {
  display: block;
}
main section.contact_contact .xl_contain .xls_contain .flow a:first-child p {
  color: #0e0e0e;
}
main section.contact_contact .xl_contain .xls_contain .flow a:last-child p::after {
  display: none;
}
main section.contact_confirm .xl_contain {
  padding-top: 10.7rem;
  padding-bottom: 20.2rem;
}
@media screen and (max-width: 1200px) {
  main section.contact_confirm .xl_contain {
    padding-top: 6rem;
    padding-bottom: 5rem;
  }
}
main section.contact_confirm .xl_contain .text_content {
  padding-left: 1.5rem;
}
@media screen and (max-width: 1200px) {
  main section.contact_confirm .xl_contain .text_content {
    margin-top: 3rem;
  }
}
@media screen and (max-width: 768px) {
  main section.contact_confirm .xl_contain .text_content {
    padding: 0rem 0rem;
  }
}
main section.contact_confirm .xl_contain .text_content p {
  padding-bottom: 3rem;
}
main section.contact_confirm .xl_contain .xls_contain {
  position: relative;
}
main section.contact_confirm .xl_contain .xls_contain ul {
  margin-top: 5.5rem;
}
@media screen and (max-width: 1200px) {
  main section.contact_confirm .xl_contain .xls_contain ul {
    margin: 0 auto;
  }
}
main section.contact_confirm .xl_contain .xls_contain ul li {
  position: relative;
  padding: 6rem 0rem 5.6rem 11rem;
}
@media screen and (max-width: 1200px) {
  main section.contact_confirm .xl_contain .xls_contain ul li {
    padding: 3rem 0rem 3rem 4rem;
  }
}
@media screen and (max-width: 768px) {
  main section.contact_confirm .xl_contain .xls_contain ul li {
    padding: 2rem 1.5rem;
  }
}
main section.contact_confirm .xl_contain .xls_contain ul li p {
  position: relative;
  display: inline;
  text-align: left;
  font-size: 1.6rem; /* 2.1rem */
  font-weight: 700;
  line-height: 1.67;
  letter-spacing: 0.1rem;
}
/*main section.contact_confirm .xl_contain .xls_contain ul li p::after {
  position: absolute;
  content: "*";
  top: -1.4rem;
  right: -1.8rem;
  color: #888888;
}*/
@media screen and (max-width: 768px) {
  main section.contact_confirm .xl_contain .xls_contain ul li p::after {
    top: -0.6rem;
    right: -1rem;
  }
}
main section.contact_confirm .xl_contain .xls_contain ul li p:nth-child(2) {
  display: block;
  padding-top: 2.1rem;
  margin-left: -0.2rem;
}
main section.contact_confirm .xl_contain .xls_contain ul li p:nth-child(2)::after {
  display: none;
}
@media screen and (max-width: 768px) {
  main section.contact_confirm .xl_contain .xls_contain ul li p {
    font-size: 1.4rem;
  }
  main section.contact_confirm .xl_contain .xls_contain ul li p:nth-child(2) {
    padding-top: 1rem;
  }
}
main section.contact_confirm .xl_contain .xls_contain ul li::after {
  position: absolute;
  content: "";
  left: 3%;
  top: 100%;
  width: 81%;
  height: 0.1rem;
  background: #939393;
}
main section.contact_confirm .xl_contain .xls_contain ul li:nth-child(7) {
  padding: 3.5rem 0rem 11.7rem 11rem;
}
@media screen and (max-width: 1200px) {
  main section.contact_confirm .xl_contain .xls_contain ul li:nth-child(7) {
    padding: 3rem 0rem 7rem 4rem;
  }
}
@media screen and (max-width: 768px) {
  main section.contact_confirm .xl_contain .xls_contain ul li:nth-child(7) {
    padding: 2rem 1.5rem;
  }
}
main section.contact_confirm .xl_contain .xls_contain ul li:nth-child(7) p::after {
  display: none;
}
main section.contact_confirm .xl_contain .xls_contain ul li:nth-child(8) {
  padding: 5.7rem 0rem 11rem 11rem;
}
@media screen and (max-width: 1200px) {
  main section.contact_confirm .xl_contain .xls_contain ul li:nth-child(8) {
    padding: 3rem 0rem 7rem 4rem;
  }
}
@media screen and (max-width: 768px) {
  main section.contact_confirm .xl_contain .xls_contain ul li:nth-child(8) {
    padding: 2rem 1.5rem;
  }
}
main section.contact_confirm .xl_contain .xls_contain ul li:nth-child(8) p::after {
  display: none;
}
main section.contact_confirm .xl_contain .xls_contain ul li:nth-child(9) {
  padding: 6.4rem 0rem 5.6rem 11rem;
}
@media screen and (max-width: 1200px) {
  main section.contact_confirm .xl_contain .xls_contain ul li:nth-child(9) {
    padding: 3rem 0rem 3rem 4rem;
  }
}
@media screen and (max-width: 768px) {
  main section.contact_confirm .xl_contain .xls_contain ul li:nth-child(9) {
    padding: 2rem 1.5rem;
  }
}
main section.contact_confirm .xl_contain .xls_contain ul li:nth-child(10) {
  padding: 5.6rem 0rem 5.6rem 11rem;
}
@media screen and (max-width: 1200px) {
  main section.contact_confirm .xl_contain .xls_contain ul li:nth-child(10) {
    padding: 3rem 0rem 2rem 4rem;
  }
}
@media screen and (max-width: 768px) {
  main section.contact_confirm .xl_contain .xls_contain ul li:nth-child(10) {
    padding: 2rem 1.5rem 1rem 1.5rem;
  }
}
main section.contact_confirm .xl_contain .xls_contain ul li:nth-child(10)::after {
  display: none;
}
main section.contact_confirm .xl_contain .xls_contain ul li:nth-child(11) {
  padding: 1rem 0rem 5rem 11rem;
}
@media screen and (max-width: 1200px) {
  main section.contact_confirm .xl_contain .xls_contain ul li:nth-child(11) {
    padding: 2rem 0rem 3rem 4rem;
  }
}
@media screen and (max-width: 768px) {
  main section.contact_confirm .xl_contain .xls_contain ul li:nth-child(11) {
    padding: 1rem 1.5rem 2rem 1.5rem;
  }
}
main section.contact_confirm .xl_contain .xls_contain .btngroup {
  margin-top: 7rem;
  width: 84%;
  display: flex;
  align-items: center;
  justify-content: center;
}
main section.contact_confirm .xl_contain .xls_contain .btngroup a.line_link {
  font-size: 2rem;
}
main section.contact_confirm .xl_contain .xls_contain .btngroup a.back_btn {
  margin-right: 3.7rem;
}
@media screen and (max-width: 768px) {
  main section.contact_confirm .xl_contain .xls_contain .btngroup {
    margin: 3rem auto 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  main section.contact_confirm .xl_contain .xls_contain .btngroup a {
    height: 5rem;
  }
  main section.contact_confirm .xl_contain .xls_contain .btngroup a.back_btn {
    margin-right: 0;
  }
  main section.contact_confirm .xl_contain .xls_contain .btngroup a.line_link {
    margin-top: 1rem;
    margin-left: 0;
    font-size: 1.6rem;
  }
}
main section.contact_confirm .xl_contain .xls_contain .flow {
  top: 4.5%;
}
main section.contact_confirm .xl_contain .xls_contain .flow a:nth-child(2) p {
  color: #0e0e0e;
}
main section.contact_confirm .xl_contain .xls_contain .flow a:last-child p::after {
  display: none;
}
@media screen and (max-width: 768px) {
  main section.contact_confirm .xl_contain .xls_contain .flow {
    display: block;
  }
  main section.contact_confirm .xl_contain .xls_contain .flow a {
    font-size: 1.4rem;
  }
}
main section.contact_complete .xl_contain {
  padding-top: 10.7rem;
  padding-bottom: 13.1rem;
}
@media screen and (max-width: 768px) {
  main section.contact_complete .xl_contain {
    padding-top: 6rem;
    padding-bottom: 5rem;
  }
}
main section.contact_complete .xl_contain .text_content {
  margin-top: 8.3rem;
}
main section.contact_complete .xl_contain .text_content p {
  font-size: 2rem;
  line-height: 2.13;
}
@media screen and (max-width: 1100px) {
  main section.contact_complete .xl_contain .text_content {
    margin-top: 4rem;
  }
  main section.contact_complete .xl_contain .text_content p {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  main section.contact_complete .xl_contain .text_content {
    margin-top: 2rem;
  }
  main section.contact_complete .xl_contain .text_content p {
    font-size: 1.4rem;
    padding-bottom: 3rem;
    line-height: 1.67;
  }
}
main section.contact_complete .xl_contain .xls_contain {
  position: relative;
}
main section.contact_complete .xl_contain .xls_contain .flow {
  top: -3%;
}
main section.contact_complete .xl_contain .xls_contain .flow a p {
  padding-bottom: 4.6rem;
  font-size: 1.6rem; /* 2.1rem */
}
main section.contact_complete .xl_contain .xls_contain .flow a:last-child p {
  color: #0e0e0e;
}
main section.contact_complete .xl_contain .xls_contain .flow a:last-child p::after {
  display: none;
}
main section.company2_profile {
  padding-top: 10rem;
}
@media screen and (max-width: 768px) {
  main section.company2_profile {
    padding-top: 6rem;
  }
}
main section.company2_profile .sect_kv {
  margin-top: 5rem;
  height: 73rem;
}
main section.company2_profile .sect_kv img {
  height: 100%;
}
@media screen and (max-width: 768px) {
  main section.company2_profile .sect_kv {
    margin-top: 2rem;
    height: 25rem;
  }
}
main section.company2_profile ul.xls_contain {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  -moz-column-gap: 3.5rem;
  column-gap: 3.5rem;
  row-gap: 3rem;
  padding-top: 11rem;
  padding-bottom: 11rem;
}
@media screen and (max-width: 1500px) {
  main section.company2_profile ul.xls_contain {
    -moz-column-gap: 1.5rem;
    column-gap: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  main section.company2_profile ul.xls_contain {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 3rem 0 0;
    gap: 0.5rem;
  }
}
main section.company2_profile ul.xls_contain li .thumb {
  aspect-ratio: 35/23;
}
main section.company2_profile ul.xls_contain li .thumb img {
  height: 100%;
}
@media screen and (max-width: 768px) {
  main section.company2_profile ul.xls_contain li .thumb {
    aspect-ratio: 35/17;
  }
}
main section.company2_profile ul.xls_contain li div {
  width: 100%;
  background: black;
}
main section.company2_profile ul.xls_contain li div p {
  font-size: 2rem;
  font-weight: 500;
  color: white;
  text-align: center;
  padding: 1rem;
}
@media screen and (max-width: 1100px) {
  main section.company2_profile ul.xls_contain li div p {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  main section.company2_profile ul.xls_contain li div p {
    padding: 0.5rem;
    font-size: 1.5rem;
  }
}
main section.service .xls_contain {
  padding-top: 2rem;
  padding-bottom: 18.4rem;
}
@media screen and (max-width: 768px) {
  main section.service .xls_contain {
    padding-bottom: 10rem;
  }
}
main section.service .xls_contain.profile_page {
  padding-bottom: 19.7rem;
}
@media screen and (max-width: 768px) {
  main section.service .xls_contain.profile_page {
    padding-bottom: 8rem;
  }
}
main section.service .xls_contain .lg_contain {
  margin-top: 3rem;
}
main section.interior .interior_ttl {
  display: flex;
  justify-content: space-between;
  padding: 10rem 6rem 1.7rem;
}
@media screen and (max-width: 1620px) {
  main section.interior .interior_ttl {
    padding-left: 1.6rem;
    padding-right: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  main section.interior .interior_ttl {
    padding-top: 6rem;
  }
}
@media screen and (max-width: 768px) {
  main section.interior .interior_ttl {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  main section.interior .interior_ttl h3 {
    text-align: center;
  }
}
main section.interior .interior_ttl h3 p:first-child {
  font: 600 7rem "Noto Serif JP";
  letter-spacing: 0.9rem;
}
@media screen and (max-width: 768px) {
  main section.interior .interior_ttl h3 p:first-child {
    font-size: 4rem;
  }
}
main section.interior .interior_ttl h3 p:last-child {
  margin-top: -0.3rem;
  font: 500 2.6rem "Noto Serif JP"; /* Sans JP */
}
@media screen and (max-width: 768px) {
  main section.interior .interior_ttl h3 p:last-child {
    font-size: 2rem;
  }
}
main section.interior .interior_ttl .breadcrumb {
  margin-top: 19rem;
}
@media screen and (max-width: 768px) {
  main section.interior .interior_ttl .breadcrumb {
    margin-top: 2rem;
  }
}
main section.interior .interior_content {
  padding: 13rem 6rem 7rem;
}
@media screen and (max-width: 768px) {
  main section.interior .interior_content {
    padding: 6rem 1.6rem 3rem;
  }
}
main section.interior .interior_content h4 {
  font: 700 5rem/1.5 "Noto Serif JP"; /* Sans JP */
}
@media screen and (max-width: 890px) {
  main section.interior .interior_content h4 {
    font-size: 4.3rem;
  }
}
@media screen and (max-width: 768px) {
  main section.interior .interior_content h4 {
    text-align: center;
    font-size: 2.5rem;
  }
}
main section.interior .interior_content div {
  margin-top: 9.7rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  main section.interior .interior_content div {
    margin-top: 5rem;
  }
}
main section.interior .interior_content div .desc {
  width: 68%;
  font: 400 1.8rem/2.5 "Noto Serif JP"; /* Sans JP */
  letter-spacing: 0.07rem;
}
@media screen and (max-width: 768px) {
  main section.interior .interior_content div .desc {
    width: 100%;
    font-size: 1.4rem;
    letter-spacing: 0;
  }
}
main section.interior .interior_content div a.line_link {
  margin: 6rem 0 0 0;
}
@media screen and (max-width: 768px) {
  main section.interior .interior_content div a.line_link {
    margin: 3rem auto 0;
  }
}
main section.interior .high_tech {
  padding-bottom: 8rem;
}
@media screen and (max-width: 768px) {
  main section.interior .high_tech {
    padding-top: 5rem;
  }
}
main section.interior .high_tech .ttl_content {
  margin-top: 1rem;
  width: 68%;
}
@media screen and (max-width: 768px) {
  main section.interior .high_tech .ttl_content {
    width: 100%;
  }
}
main section.interior .high_tech .ttl_content .ttl1 {
  line-height: 1.5;
  letter-spacing: 0;
}
main section.interior .interior_ways {
  padding: 12rem 6rem;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  main section.interior .interior_ways {
    padding: 6rem 1.6rem;
    flex-direction: column;
  }
}
main section.interior .interior_ways li {
  width: 45.8%;
}
@media screen and (max-width: 768px) {
  main section.interior .interior_ways li {
    margin-bottom: 5rem;
    width: 100%;
  }
  main section.interior .interior_ways li:last-of-type {
    margin-bottom: 0;
  }
}
main section.interior .interior_ways li .content_ttl {
  display: flex;
}
@media screen and (max-width: 768px) {
  main section.interior .interior_ways li .content_ttl {
    display: block;
  }
}
main section.interior .interior_ways li .content_ttl div {
  width: 0.4rem;
  background: #0e0e0e;
}
@media screen and (max-width: 768px) {
  main section.interior .interior_ways li .content_ttl div {
    height: 0.2rem;
    width: 4rem;
  }
}
main section.interior .interior_ways li .content_ttl p {
  margin-left: 1.5rem;
  font: 400 3.5rem/1.1 "Noto Serif JP";
  letter-spacing: 0.25rem;
}
@media screen and (max-width: 768px) {
  main section.interior .interior_ways li .content_ttl p {
    margin-left: 0;
    margin-top: 1rem;
    font-size: 2.2rem;
  }
}
main section.interior .interior_ways li .ttl2 {
  margin-top: 4.5rem;
  font: 500 3rem/1.8 "Noto Serif JP"; /* Sans JP */
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 768px) {
  main section.interior .interior_ways li .ttl2 {
    margin-top: 1.5rem;
    font-size: 2rem;
    letter-spacing: 0.25rem;
  }
}
main section.interior .interior_ways li .txt2 {
  margin-top: 1rem;
  font: 400 1.8rem/2.3 "Noto Serif JP"; /* Sans JP */
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 768px) {
  main section.interior .interior_ways li .txt2 {
    margin-top: 1.5rem;
    font-size: 1.5rem;
    letter-spacing: 0.07rem;
    line-height: 1.7;
  }
}
main section.interior .interior_ways li .thumb {
  margin-top: 5rem;
}
main section.interior .interior_ways li .thumb img {
  height: 100%;
}
@media screen and (max-width: 768px) {
  main section.interior .interior_ways li .thumb {
    margin-top: 3.5rem;
    aspect-ratio: 5/3;
  }
}
main section.interior .staff {
  background: #f6f6f6;
}
main section.interior .staff .xls_contain {
  padding: 19rem 6rem 18rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1620px) {
  main section.interior .staff .xls_contain {
    padding-left: 1.6rem;
    padding-right: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  main section.interior .staff .xls_contain {
    flex-direction: column;
    padding: 6rem 1.6rem;
  }
}
main section.interior .staff .xls_contain .thumb {
  width: 27.2rem;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 1200px) {
  main section.interior .staff .xls_contain .thumb {
    width: 20rem;
  }
}
@media screen and (max-width: 768px) {
  main section.interior .staff .xls_contain .thumb {
    width: 15rem;
    margin: auto;
  }
}
main section.interior .staff .xls_contain .thumb img {
  height: 100%;
}
main section.interior .staff .xls_contain .staff_content {
  width: calc(100% - 30rem);
}
@media screen and (max-width: 1200px) {
  main section.interior .staff .xls_contain .staff_content {
    width: calc(100% - 22rem);
  }
}
@media screen and (max-width: 768px) {
  main section.interior .staff .xls_contain .staff_content {
    width: 100%;
  }
}
main section.interior .staff .xls_contain .staff_content span {
  display: block;
}
main section.interior .staff .xls_contain .staff_content span:first-child {
  font: 500 3.4rem/1.5 "Noto Serif JP"; /* Sans JP */
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 768px) {
  main section.interior .staff .xls_contain .staff_content span:first-child {
    font-size: 2.5rem;
  }
}
main section.interior .staff .xls_contain .staff_content span:last-child {
  margin-top: 2rem;
  font: 400 1.8rem/2.3 "Noto Serif JP"; /* Sans JP */
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 768px) {
  main section.interior .staff .xls_contain .staff_content span:last-child {
    font-size: 1.4rem;
  }
}
main section.interior .interior_field {
  padding: 16.5rem 6rem 15rem;
}
@media screen and (max-width: 768px) {
  main section.interior .interior_field {
    padding: 6rem 1.6rem 5rem;
  }
}
main section.interior .interior_field .field_content {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  main section.interior .interior_field .field_content {
    flex-direction: column;
  }
}
main section.interior .interior_field .field_content .ttl_content {
  width: 68.5%;
}
@media screen and (max-width: 768px) {
  main section.interior .interior_field .field_content .ttl_content {
    width: 100%;
  }
}
main section.interior .interior_field .interior_field_item {
  margin-top: 14rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  main section.interior .interior_field .interior_field_item {
    margin-top: 2rem;
  }
}
main section.interior .interior_field .interior_field_item > div {
  width: 17%;
}
@media screen and (max-width: 1200px) {
  main section.interior .interior_field .interior_field_item > div {
    width: 22.5rem;
    margin-bottom: 2rem;
  }
}
main section.interior .interior_field .interior_field_item > div .thumb {
  margin: auto;
  width: 100%;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 768px) {
  main section.interior .interior_field .interior_field_item > div .thumb {
    width: 15rem;
  }
}
main section.interior .interior_field .interior_field_item > div .ds {
  margin-top: 2rem;
  font: 500 1.9rem "Noto Serif JP"; /* Sans JP */
  letter-spacing: 0.1rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  main section.interior .interior_field .interior_field_item > div .ds {
    font-size: 1.4rem;
  }
}
main section.works .xls_contain, main section.works .xlm_contain {
  padding-top: 13.5rem;
  padding-bottom: 13rem;
}
@media screen and (max-width: 768px) {
  main section.works .xls_contain, main section.works .xlm_contain {
    padding-top: 6rem;
    padding-bottom: 10rem;
  }
}
main section.works .xls_contain .section_ttl04 p:last-child, main section.works .xlm_contain .section_ttl04 p:last-child {
  margin-top: -1rem;
  font: 400 2.4rem "Noto Serif JP"; /* Sans JP */
}
@media screen and (max-width: 768px) {
  main section.works .xls_contain .section_ttl04 p:last-child, main section.works .xlm_contain .section_ttl04 p:last-child {
    margin-top: 0rem;
    font-size: 1.2rem;
  }
}
main section.works .xls_contain .works_content, main section.works .xlm_contain .works_content {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  -moz-column-gap: 2rem;
  column-gap: 2rem;
  row-gap: 2rem;
}
@media screen and (max-width: 1200px) {
  main section.works .xls_contain .works_content, main section.works .xlm_contain .works_content {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media screen and (max-width: 768px) {
  main section.works .xls_contain .works_content, main section.works .xlm_contain .works_content {
    margin-top: 3rem;
    padding: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    -moz-column-gap: 0.7em;
    column-gap: 0.7em;
    row-gap: 0.6rem;
  }
}
main section.works .xls_contain .works_content .thumb, main section.works .xlm_contain .works_content .thumb {
  border-radius: 0.5rem;
}
main section.works .xls_contain a.line_link, main section.works .xlm_contain a.line_link {
  min-width: 25rem;
  margin: 7.2rem auto 0;
}
@media screen and (max-width: 768px) {
  main section.works .xls_contain a.line_link, main section.works .xlm_contain a.line_link {
    margin-top: 3.2rem;
    padding: 1.8rem 11rem;
  }
}
main section.works .xls_contain div.news, main section.works .xlm_contain div.news {
  color: #0e0e0e;
  display: flex;
  justify-content: space-between;
  padding-top: 17rem;
}
@media screen and (max-width: 768px) {
  main section.works .xls_contain div.news, main section.works .xlm_contain div.news {
    flex-wrap: wrap;
    padding: 7rem 0 0;
  }
}
main section.works .xls_contain div.news .ttl_block, main section.works .xlm_contain div.news .ttl_block {
  width: 18rem;
}
@media screen and (max-width: 768px) {
  main section.works .xls_contain div.news .ttl_block, main section.works .xlm_contain div.news .ttl_block {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
  }
}
main section.works .xls_contain div.news .ttl_block h4, main section.works .xlm_contain div.news .ttl_block h4 {
  position: relative;
  font: 500 1.6rem/1.5 "Open Sans";
  letter-spacing: 0.3rem;
  margin-top: 3.4rem;
  padding-left: 3.3rem;
}
@media screen and (max-width: 768px) {
  main section.works .xls_contain div.news .ttl_block h4, main section.works .xlm_contain div.news .ttl_block h4 {
    padding-left: 2rem;
    font-size: 1.4rem;
  }
}
main section.works .xls_contain div.news .ttl_block h4 span, main section.works .xlm_contain div.news .ttl_block h4 span {
  display: block;
  font: 400 2.8rem "Noto Serif JP";
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 768px) {
  main section.works .xls_contain div.news .ttl_block h4 span, main section.works .xlm_contain div.news .ttl_block h4 span {
    font-size: 2rem;
  }
}
main section.works .xls_contain div.news .ttl_block h4::after, main section.works .xlm_contain div.news .ttl_block h4::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  background: #4a4a4a;
  height: 5rem;
  width: 0.1rem;
}
@media screen and (max-width: 768px) {
  main section.works .xls_contain div.news .ttl_block h4::after, main section.works .xlm_contain div.news .ttl_block h4::after {
    top: 0;
  }
}
main section.works .xls_contain div.news .ttl_block a, main section.works .xlm_contain div.news .ttl_block a {
  display: inline-block;
  margin-top: 11rem;
  margin-left: 4.7rem;
  padding-bottom: 0.9rem;
  border-bottom: 0.1rem #0e0e0e solid;
  font: 400 1.6rem "Open Sans";
  letter-spacing: 0.13rem;
}
@media screen and (max-width: 768px) {
  main section.works .xls_contain div.news .ttl_block a, main section.works .xlm_contain div.news .ttl_block a {
    font-size: 1.4rem;
    margin-top: 0;
  }
}
main section.works .xls_contain div.news .index_list, main section.works .xlm_contain div.news .index_list {
  width: 75.2%;
}
@media screen and (max-width: 768px) {
  main section.works .xls_contain div.news .index_list, main section.works .xlm_contain div.news .index_list {
    margin-top: 2rem;
    width: 100%;
  }
}
main section.works .xls_contain div.news .index_list a, main section.works .xlm_contain div.news .index_list a {
  display: flex;
  align-items: center;
  padding: 3.4rem 0;
  padding-right: 4rem;
}
@media screen and (max-width: 768px) {
  main section.works .xls_contain div.news .index_list a, main section.works .xlm_contain div.news .index_list a {
    flex-wrap: wrap;
    padding: 2rem 0;
    padding-right: 3rem;
  }
}
main section.works .xls_contain div.news .index_list p, main section.works .xlm_contain div.news .index_list p {
  letter-spacing: 0.3rem;
  font: 1.6rem/1.7 "Noto Serif JP";
}
@media screen and (max-width: 768px) {
  main section.works .xls_contain div.news .index_list p, main section.works .xlm_contain div.news .index_list p {
    font-size: 1.4rem;
    line-height: 2;
  }
}
main section.works .xls_contain div.news .index_list span, main section.works .xlm_contain div.news .index_list span {
  letter-spacing: 0.28rem;
  font: 500 1.6rem "Open Sans";
  margin-right: 8.5rem;
}
@media screen and (max-width: 1100px) {
  main section.works .xls_contain div.news .index_list span, main section.works .xlm_contain div.news .index_list span {
    margin-right: 3rem;
  }
}
@media screen and (max-width: 768px) {
  main section.works .xls_contain div.news .index_list span, main section.works .xlm_contain div.news .index_list span {
    width: 100%;
    font-size: 1.4rem;
  }
}
main section.service_3d_make_3dcg {
  position: relative;
  margin-top: 12.5rem;
}
@media screen and (max-width: 768px) {
  main section.service_3d_make_3dcg {
    margin-top: 0;
  }
}
main section.service_3d_make_3dcg .dcg {
  padding: 2rem 15rem; /* 6rem 5rem */
}
@media screen and (max-width: 768px) {
  main section.service_3d_make_3dcg .dcg {
    padding: 2rem 1.8rem; /* 5.5rem 1.8rem */
    padding-bottom: 1rem;
  }
}
main section.service_3d_make_3dcg .dcg .section_ttl05 p:last-child {
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  main section.service_3d_make_3dcg .dcg .section_ttl05 p:last-child {
    margin-top: 1.6rem;
  }
}
main section.service_3d_make_3dcg .dcg .make_content {
  position: relative;
  margin-top: 0rem; /* 15rem */
}
@media screen and (max-width: 768px) {
  main section.service_3d_make_3dcg .dcg .make_content {
    margin-top: 5rem;
  }
}
main section.service_3d_make_3dcg .dcg .make_content::after {
  position: absolute;
  z-index: -10;
  content: "";
  min-width: 114rem;
  aspect-ratio: 114/69;
  background: #efefef;
  left: -20rem;
  top: -8.4rem;
}
@media screen and (max-width: 768px) {
  main section.service_3d_make_3dcg .dcg .make_content::after {
    min-width: 85.4rem;
  }
}
main section.service_3d_make_3dcg .dcg .make_content .ttl {
  padding-top: 10rem;
}
@media screen and (max-width: 768px) {
  main section.service_3d_make_3dcg .dcg .make_content .ttl {
    padding-top: 0;
  }
}
main section.service_3d_make_3dcg .dcg .make_content .ttl span {
  display: block;
  font: 700 3.6rem "Noto Serif JP"; /* Sans JP */
  letter-spacing: 0.4rem;
  line-height: 1.6;
  text-align: center;
  /*color: white;*/
  /*padding: 0.3rem 2rem 0.3rem 1rem;*/
  /*background: black;*/
  /*width: -moz-fit-content;*/
  /*width: fit-content;*/
}
@media screen and (max-width: 1100px) {
  main section.service_3d_make_3dcg .dcg .make_content .ttl span {
    font-size: 3rem;
  }
}
@media screen and (max-width: 980px) {
  main section.service_3d_make_3dcg .dcg .make_content .ttl span {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 890px) {
  main section.service_3d_make_3dcg .dcg .make_content .ttl span {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  main section.service_3d_make_3dcg .dcg .make_content .ttl span {
    width: auto;
    font-size: 2rem;
    padding: 0.3rem 0 0.5rem 2rem;
  }
}
main section.service_3d_make_3dcg .dcg .make_content .ttl p span, main section.service_3d_make_3dcg .dcg .make_content .ttl h2 span {
  letter-spacing: 0.3rem;
  margin-top: -2.2rem;
}
@media screen and (max-width: 768px) {
  /*main section.service_3d_make_3dcg .dcg .make_content .ttl p span {
    margin-top: -2.2rem;
  }*/
  main section.service_3d_make_3dcg .dcg .make_content .ttl p span:last-child, main section.service_3d_make_3dcg .dcg .make_content .ttl h2 span:last-child {
    width: -moz-fit-content;
    width: fit-content;
  }
}
main section.service_3d_make_3dcg .dcg .make_content p.txt {
  margin-top: 3rem;
  font: 400 1.75rem/2.0 "Noto Serif JP"; /* 1.875rem/2.0 "Sans JP" */
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 768px) {
  main section.service_3d_make_3dcg .dcg .make_content p.txt {
    /*padding: 0 1rem;*/
    margin-top: 2rem;
    font-size: 1.4rem;
    letter-spacing: 0.05rem;
    line-height: 2.0;
  }
}
main section.service_3d_make_3dcg .dcg .bg_make {
  position: absolute;
  z-index: -8;
  aspect-ratio: 768/527;
  min-width: calc(50vw + 10.4rem);
  right: -15rem;
  top: 1rem;
}
@media screen and (max-width: 1200px) {
  main section.service_3d_make_3dcg .dcg .bg_make {
    position: relative;
    margin-top: 4rem;
    min-width: 50%;
    width: 60%;
    right: unset;
    top: unset;
  }
}
@media screen and (max-width: 768px) {
  main section.service_3d_make_3dcg .dcg .bg_make {
    min-width: 100%;
  }
}
main section.service_3d_make_3dcg .perspectives {
  padding: 5rem 15rem 3rem; /*12rem 15rem 10rem;*/
  row-gap: 8rem; /*12rem;*/
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
main section.service_3d_make_3dcg .perspectives::after {
  content: "";
  display: block;
  width: 30%;
}
@media screen and (max-width: 768px) {
  main section.service_3d_make_3dcg .perspectives {
    padding: 5rem 2rem 3rem; /*7rem 1.6rem 10rem*/
    row-gap: 5rem;
  }
}
main section.service_3d_make_3dcg .perspectives li {
  width: 30%; /*45%*/
}
@media screen and (max-width: 768px) {
  main section.service_3d_make_3dcg .perspectives li {
    width: 100%;
  }
}
main section.service_3d_make_3dcg .perspectives li .content_ttl {
  display: flex;
}
@media screen and (max-width: 768px) {
  main section.service_3d_make_3dcg .perspectives li .content_ttl {
    display: block;
  }
}
main section.service_3d_make_3dcg .perspectives li .content_ttl div {
  width: 0.4rem;
  background: #0e0e0e;
}
@media screen and (max-width: 768px) {
  main section.service_3d_make_3dcg .perspectives li .content_ttl div {
    height: 0.2rem;
    width: 4rem;
  }
}
main section.service_3d_make_3dcg .perspectives li .content_ttl p {
  margin-left: 1.25rem; /*2.5rem*/
  font: 400 1.25rem/1.25 "Noto Serif JP"; /*1.625rem*/
  letter-spacing: 0.25rem;
}
@media screen and (max-width: 768px) {
  main section.service_3d_make_3dcg .perspectives li .content_ttl p {
    margin-left: 0;
    margin-top: 0.5rem;
    font-size: 1.25rem; /*1.8rem*/
  }
}
main section.service_3d_make_3dcg .perspectives li p.btnnext a {
    margin: 1rem auto;
    height: 3.5rem;
}
main section.service_3d_make_3dcg .perspectives li p.btnnext a:hover {
    background: #fff;
}
main section.service_3d_make_3dcg .perspectives li .ttl2, main section.service_3d_make_3dcg .perspectives li h2.ttl2 {
  margin-top: 1rem;
  font: 500 2rem "Noto Serif JP"; /* 500 3rem "Noto Serif JP" */
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 1200px) {
  main section.service_3d_make_3dcg .perspectives li .ttl2, main section.service_3d_make_3dcg .perspectives li h2.ttl2 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  main section.service_3d_make_3dcg .perspectives li .ttl2, main section.service_3d_make_3dcg .perspectives li h2.ttl2 {
    margin-top: 1rem;
    font-size: 2rem;
    letter-spacing: 0.25rem;
  }
}
main section.service_3d_make_3dcg .perspectives li .txt2 {
  margin-top: 3rem;
  font: 400 1.5rem/2.0 "Noto Serif JP"; /* 1.875rem/2.0 "Noto Serif JP" */
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 768px) {
  main section.service_3d_make_3dcg .perspectives li .txt2 {
    margin-top: 1.5rem;
    font-size: 1.5rem;
    letter-spacing: 0.07rem;
    line-height: 1.7;
  }
}
main section.service_3d_make_3dcg .perspectives li .thumb {
  margin-top: 2rem; /*5.4rem*/
}
@media screen and (max-width: 768px) {
  main section.service_3d_make_3dcg .perspectives li .thumb {
    margin-top: 2.5rem;
  }
}
/*240414*/
section.service_3d_make_3dcg ul.clms2 {
  padding: 2rem auto; /* 2rem 15rem; */
  row-gap: 3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
section.service_3d_make_3dcg ul.clms2::after {
  content: "";
  display: block;
  width: 45%;
}
@media screen and (max-width: 768px) {
  section.service_3d_make_3dcg ul.clms2 {
    padding: 3rem 0 3rem; /*7rem 1.6rem 10rem*/
    row-gap: 5rem;
  }
}
section.service_3d_make_3dcg ul.clms2 li {
  width: 45%;
}
@media screen and (max-width: 768px) {
  section.service_3d_make_3dcg ul.clms2 li {
    width: 100%;
  }
}
section.service_3d_make_3dcg ul.clms2 li .content_ttl {
  display: flex;
}
@media screen and (max-width: 768px) {
  section.service_3d_make_3dcg ul.clms2 li .content_ttl {
    display: block;
  }
}
section.service_3d_make_3dcg ul.clms2 li .content_ttl div {
  width: 0.4rem;
  background: #0e0e0e;
}
@media screen and (max-width: 768px) {
  section.service_3d_make_3dcg ul.clms2 li .content_ttl div {
    height: 0.2rem;
    width: 4rem;
  }
}
section.service_3d_make_3dcg ul.clms2 li .content_ttl p {
  margin-left: 1.25rem; /*2.5rem*/
  font: 400 1.5rem/1.25 "Noto Serif JP"; /*2.2rem*/
  letter-spacing: 0.25rem;
}
@media screen and (max-width: 768px) {
  section.service_3d_make_3dcg ul.clms2 li .content_ttl p {
    margin-left: 0;
    margin-top: 0.5rem;
    font-size: 1.5rem;
  }
}
section.service_3d_make_3dcg ul.clms2 li .ttl2, section.service_3d_make_3dcg ul.clms2 li h2.ttl2 {
  margin-top: 2rem;
  font: 500 2rem "Noto Serif JP"; /* 500 3rem "Noto Serif JP" */
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 1200px) {
  section.service_3d_make_3dcg ul.clms2 li .ttl2, section.service_3d_make_3dcg ul.clms2 li h2.ttl2 {
    font-size: 3rem;
  }
}
@media screen and (max-width: 768px) {
  section.service_3d_make_3dcg ul.clms2 li .ttl2, section.service_3d_make_3dcg ul.clms2 li h2.ttl2 {
    margin-top: 1.5rem;
    font-size: 1.625rem;
    letter-spacing: 0.25rem;
  }
}
section.service_3d_make_3dcg ul.clms2 li .txt2 {
  margin-top: 3rem;
  font: 400 1.5rem/2.0 "Noto Serif JP"; /* 1.875rem/2.0 "Noto Serif JP" */
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 768px) {
  section.service_3d_make_3dcg ul.clms2 li .txt2 {
    margin-top: 1.5rem;
    font-size: 1.25rem;
    letter-spacing: 0.07rem;
    line-height: 1.6;
  }
}
section.service_3d_make_3dcg ul.clms2 li .thumb {
  margin-top: 3rem; /*5.4rem*/
}
@media screen and (max-width: 768px) {
  section.service_3d_make_3dcg ul.clms2 li .thumb {
    margin-top: 3.5rem;
  }
}
main section.service_3d_work_flow {
  background: url(../image/work_flow_bg.jpg) center center/cover no-repeat;
}
@media screen and (max-width: 768px) {
  main section.service_3d_work_flow {
    background: url(../image/work_flow_bg_sp.jpg) center center/cover no-repeat;
  }
}
main section.service_3d_work_flow .xls_contain {
  padding: 28rem 5rem 9rem;
}
@media screen and (max-width: 1200px) {
  main section.service_3d_work_flow .xls_contain {
    padding-top: 15rem;
  }
}
@media screen and (max-width: 768px) {
  main section.service_3d_work_flow .xls_contain {
    padding: 5.2rem 5rem 7.6rem;
  }
}
main section.service_3d_work_flow .xls_contain ul {
  margin: 4.5rem 0 0 5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  -moz-column-gap: 2rem;
  column-gap: 2rem;
  row-gap: 6.5rem;
}
@media screen and (max-width: 1200px) {
  main section.service_3d_work_flow .xls_contain ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 768px) {
  main section.service_3d_work_flow .xls_contain ul {
    margin: 2rem 0 0 0;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    row-gap: 7rem;
  }
}
main section.service_3d_work_flow .xls_contain ul li {
  position: relative;
  padding: 0 5rem 0 2rem;
}
@media screen and (max-width: 768px) {
  main section.service_3d_work_flow .xls_contain ul li {
    padding: 0 3rem 0 1.3rem;
  }
}
main section.service_3d_work_flow .xls_contain ul li::after {
  position: absolute;
  content: "";
  width: 2rem;
  height: 44rem;
  background: url(../image/work_flow_arr.png) center center/cover no-repeat;
  right: 0.7rem;
  top: 1.2rem;
}
@media screen and (max-width: 768px) {
  main section.service_3d_work_flow .xls_contain ul li::after {
    height: 1.2rem;
    width: 30rem;
    background: url(../image/work_flow_arr_sp.png) center center/cover no-repeat;
    right: 1.9rem;
    bottom: -5rem;
    top: auto;
  }
}
main section.service_3d_work_flow .xls_contain ul li:last-child::after {
  width: 0;
  height: 0;
}
main section.service_3d_work_flow .xls_contain ul li .num {
  position: absolute;
  font: 600 5rem "Noto Serif JP";
  width: 8rem;
  padding-top: 1.5rem;
  text-align: center;
  border-top: 1px solid #333333;
  left: 1rem;
  top: 1rem;
}
@media screen and (max-width: 768px) {
  main section.service_3d_work_flow .xls_contain ul li .num {
    width: 7rem;
    font-size: 4.5rem;
    left: 1.6rem;
    padding-top: 0.5rem;
  }
}
main section.service_3d_work_flow .xls_contain ul li .thumb {
  margin: 6rem auto 0;
  width: 46%;
}
@media screen and (max-width: 768px) {
  main section.service_3d_work_flow .xls_contain ul li .thumb {
    margin-top: 7rem;
    height: 40%;
  }
}
main section.service_3d_work_flow .xls_contain ul li .ttl {
  margin-top: 4rem;
  font: 500 2.4rem "Noto Serif JP"; /* Sans JP */
}
@media screen and (max-width: 768px) {
  main section.service_3d_work_flow .xls_contain ul li .ttl {
    margin-top: 1.2rem;
  }
}
main section.service_3d_work_flow .xls_contain ul li .txt {
  margin-top: 1.3rem;
  font: 400 1.6rem/1.75 "Noto Serif JP"; /* Sans JP */
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 768px) {
  main section.service_3d_work_flow .xls_contain ul li .txt {
    font-size: 1.3rem;
    line-height: 1.8;
    letter-spacing: 0.2rem;
  }
}
main section.service_3d_list .xls_contain {
  padding: 8rem 5rem 5rem; /*19rem 5rem 5rem*/
}
@media screen and (max-width: 768px) {
  main section.service_3d_list .xls_contain {
    padding: 6.2rem 5rem 5rem;
  }
}
main section.service_3d_list .xls_contain .thumb {
  margin: 6rem auto 0;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  main section.service_3d_list .xls_contain .thumb {
    margin-top: 1rem;
  }
}
main section.service_3d_list .xls_contain .ttl_content {
  margin: 7.5rem auto 0;
  font: 400 2.1rem/2.52 "Noto Serif JP"; /* Sans JP */
  letter-spacing: 0.2rem;
  text-align: center;
  width: 100%;
  max-width: 80rem;
  margin-top: 3rem;
  font-size: 1.5rem;
  line-height: 3;
  word-break: keep-all;
  white-space: pre-line;
}
@media screen and (max-width: 768px) {
  main section.service_3d_list .xls_contain .ttl_content {
    margin-top: 1.2rem;
    font-size: 1.2rem;
    letter-spacing: 0.1rem;
    line-height: 2;
  }
}
main section.service_3d_contact_us .lgm_contain {
  padding-top: 10rem; /*16rem*/
  padding-bottom: 5rem; /*17rem*/
}
@media screen and (max-width: 768px) {
  main section.service_3d_contact_us .lgm_contain {
    padding-top: 8rem;
    padding-bottom: 4rem;
  }
}
main section.service_3d_contact_us .lgm_contain h3 p:last-child {
  margin-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  main section.service_3d_contact_us .lgm_contain h3 p:last-child {
    margin-top: 0.7rem;
  }
}
main section.service_3d_contact_us .lgm_contain .thumb {
  width: -moz-fit-content;
  width: fit-content;
  margin: 8rem auto 0;
}
@media screen and (max-width: 768px) {
  main section.service_3d_contact_us .lgm_contain .thumb {
    margin-top: 3.4rem;
  }
}
main section.service_3d_contact_us .lgm_contain .construct {
  margin: 3rem auto; /*13rem auto 0*/
}
@media screen and (max-width: 768px) {
  main section.service_3d_contact_us .lgm_contain .construct {
    padding: 0 1.2rem;
    margin-top: 5.5rem;
  }
}
main section.service_3d_contact_us .lgm_contain .ttl, main section.service_3d_contact_us .lgm_contain h3.ttl {
  margin-top: 3rem;
  font: 500 2rem "Noto Serif JP"; /* Sans JP */
  letter-spacing: 0.1rem;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  main section.service_3d_contact_us .lgm_contain .ttl, main section.service_3d_contact_us .lgm_contain h3.ttl {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  main section.service_3d_contact_us .lgm_contain .ttl, main section.service_3d_contact_us .lgm_contain h3.ttl {
    margin-top: 1rem;
    font-size: 1.25rem; /* 2.1rem */
    line-height: 2;
  }
}
main section.service_3d_contact_us .lgm_contain .txt {
  margin-top: 2.5rem;
  padding: 0 5rem;
  font: 400 1.875rem/2.0 "Noto Serif JP"; /* Sans JP */
  letter-spacing: 0.1rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  main section.service_3d_contact_us .lgm_contain .txt {
    text-align: start;
    margin-top: 1.5rem;
    padding: 0 1rem;
    font-size: 1.25rem;
    line-height: 1.6;
    letter-spacing: -0.03rem;
  }
}
main section.service_3d_contact {
  background: url(../image/contact_bg.jpg) center center/cover no-repeat;
}
main section.service_3d_contact.works_page_contact .lgm_contain {
  padding: 10.1rem 11.5rem;
}
@media screen and (max-width: 768px) {
  main section.service_3d_contact.works_page_contact .lgm_contain {
    padding: 5.2rem 3rem 9.4rem 3rem;
  }
}
main section.service_3d_contact .lgm_contain {
  padding-top: 9.5rem;
  padding-bottom: 11.5rem;
}
@media screen and (max-width: 768px) {
  main section.service_3d_contact .lgm_contain {
    padding-top: 6rem;
    padding-bottom: 9.5rem;
  }
}
main section.service_3d_contact .lgm_contain .contact_block {
  max-width: 86rem;
  margin: auto;
}
main section.service_3d_contact .lgm_contain p {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  main section.service_3d_contact .lgm_contain p {
    text-align: center;
    flex-direction: column;
  }
}
main section.service_3d_contact .lgm_contain p span {
  font: 500 5rem/1 "Noto Serif JP";
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 768px) {
  main section.service_3d_contact .lgm_contain p span {
    font-size: 3rem;
    letter-spacing: 0.1rem;
  }
}
main section.service_3d_contact .lgm_contain p span:last-child {
  margin-top: -1rem;
  font: 500 1.8rem/2 "Noto Serif JP"; /* Sans JP */
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 768px) {
  main section.service_3d_contact .lgm_contain p span:last-child {
    margin-top: 2.9rem;
    font-size: 1.4rem;
    line-height: 1.7;
  }
}
main section.service_3d_contact .lgm_contain .phone_link {
  margin: 6rem 20rem 0; /* margin: 6rem 0 0;*/
  display: grid;
  grid-template-columns: repeat(minmax(0, 1fr)); /* 240220 repeat(2, minmax(0, 1fr));*/
  -moz-column-gap: 6rem;
  column-gap: 6rem;
}
@media screen and (max-width: 768px) {
  main section.service_3d_contact .lgm_contain .phone_link {
    margin: 5rem 0 0;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    row-gap: 4rem;
    padding: 0 2rem;
  }
}
main section.service_3d_contact .lgm_contain .phone_link a {
  position: relative;
  border: 1px solid #0e0e0e;
  padding: 2rem 0rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  main section.service_3d_contact .lgm_contain .phone_link a {
    padding: 1.3rem 0;
  }
}
main section.service_3d_contact .lgm_contain .phone_link a div {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
main section.service_3d_contact .lgm_contain .phone_link a div .num {
  position: relative;
  display: flex;
  align-items: center;
}
main section.service_3d_contact .lgm_contain .phone_link a div .num::before {
  position: absolute;
  content: "";
  width: 2.6rem;
  height: 2.9rem;
  background: url(../image/contact_tel_ico.png) center center/cover no-repeat;
  left: -1rem;
  top: 15%;
}
@media screen and (max-width: 768px) {
  main section.service_3d_contact .lgm_contain .phone_link a div .num::before {
    width: 2rem;
    height: 2.2rem;
    left: 1rem;
    top: 26%;
  }
}
main section.service_3d_contact .lgm_contain .phone_link a div .num span {
  margin-left: 2.5rem;
  font: 500 4rem/1.5 "Noto Serif JP";
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 990px) {
  main section.service_3d_contact .lgm_contain .phone_link a div .num span {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 900px) {
  main section.service_3d_contact .lgm_contain .phone_link a div .num span {
    font-size: 3rem;
  }
}
@media screen and (max-width: 820px) {
  main section.service_3d_contact .lgm_contain .phone_link a div .num span {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  main section.service_3d_contact .lgm_contain .phone_link a div .num span {
    margin: 0 0 0 4rem;
    font-size: 3.1rem;
    letter-spacing: 0.3rem;
  }
}
main section.service_3d_contact .lgm_contain .phone_link a div .date {
  margin-top: -1rem;
  font: 400 1.3rem "Noto Serif JP"; /* Sans JP */
}
@media screen and (max-width: 768px) {
  main section.service_3d_contact .lgm_contain .phone_link a div .date {
    margin-top: -0.8rem;
    font-size: 1.2rem;
  }
}
main section.service_3d_contact .lgm_contain .phone_link a::after {
  position: absolute;
  content: "";
  font: 400 1.6rem/0.5 "Noto Serif JP"; /* Sans JP */
  letter-spacing: 0.1rem;
  color: #0e0e0e;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 0.5rem;
  background: #ebf0f8;
  left: 4.5rem;
  top: -0.5rem;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  main section.service_3d_contact .lgm_contain .phone_link a::after {
    background: #fdfdff;
    left: 3.5rem;
    top: -0.2rem;
  }
}
main section.service_3d_contact .lgm_contain .phone_link .tokyo::after {
  content: "東京本社";
}
main section.service_3d_contact .lgm_contain .phone_link .nagoya::after {
  content: "名古屋駅前支店";
  background: #fdfdff;
  left: 4rem;
}
main section.service_3d_contact .lgm_contain a.line_link {
  position: relative;
  margin: 4.7rem auto 0;
  padding: 2.3rem;
  width: 99%;
  /*letter-spacing: 0.5rem;*/
  text-align: center;
}
@media screen and (max-width: 768px) {
  main section.service_3d_contact .lgm_contain a.line_link {
    margin: 5.5rem auto 0;
    padding: 0;
    padding-left: 4rem;
    width: 100%;
  }
}
main section.service_3d_contact .lgm_contain a.line_link:hover {
  background: transparent;
}
main section.service_3d_contact .lgm_contain a.line_link:hover::before {
  transition-delay: 0.25s;
  background: url(../image/contact_mail_ico_black.png) center center/contain no-repeat;
}
main section.service_3d_contact .lgm_contain a.line_link::before {
  position: absolute;
  z-index: 20;
  content: "";
  width: 2.2rem;
  aspect-ratio: 22/18;
  background: url(../image/contact_mail_ico.png) center center/contain no-repeat;
  transform: translate(0, -50%);
  left: 30rem;
  top: 50%;
}
@media screen and (max-width: 1100px) {
  main section.service_3d_contact .lgm_contain a.line_link::before {
    left: calc(50vw - 25rem);
  }
}
@media screen and (max-width: 768px) {
  main section.service_3d_contact .lgm_contain a.line_link::before {
    width: 2rem;
    left: calc(50vw - 13rem);
  }
}

/*250109*/
section.service_3d_contactfoot {
  background: url(../image/contact_bg.jpg) center center/cover no-repeat;
}
section.service_3d_contactfoot.works_page_contact .lgm_contain {
  padding: 10.1rem 11.5rem;
}
@media screen and (max-width: 768px) {
  section.service_3d_contactfoot.works_page_contact .lgm_contain {
    padding: 5.2rem 3rem 9.4rem 3rem;
  }
}
section.service_3d_contactfoot .lgm_contain {
  padding-top: 9.5rem;
  padding-bottom: 11.5rem;
}
@media screen and (max-width: 768px) {
  section.service_3d_contactfoot .lgm_contain {
    padding-top: 6rem;
    padding-bottom: 9.5rem;
  }
}
section.service_3d_contactfoot .lgm_contain .contact_block {
  max-width: 86rem;
  margin: auto;
}
section.service_3d_contactfoot .lgm_contain p {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  section.service_3d_contactfoot .lgm_contain p {
    text-align: center;
    flex-direction: column;
  }
}
section.service_3d_contactfoot .lgm_contain p span {
  font: 500 5rem/1 "Noto Serif JP";
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 768px) {
  section.service_3d_contactfoot .lgm_contain p span {
    font-size: 3rem;
    letter-spacing: 0.1rem;
  }
}
section.service_3d_contactfoot .lgm_contain p span:last-child {
  margin-top: -1rem;
  font: 500 1.8rem/2 "Noto Serif JP"; /* Sans JP */
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 768px) {
  section.service_3d_contactfoot .lgm_contain p span:last-child {
    margin-top: 2.9rem;
    font-size: 1.4rem;
    line-height: 1.7;
  }
}
section.service_3d_contactfoot .lgm_contain .phone_link {
  margin: 6rem 20rem 0; /* margin: 6rem 0 0;*/
  display: grid;
  grid-template-columns: repeat(minmax(0, 1fr)); /* 240220 repeat(2, minmax(0, 1fr));*/
  -moz-column-gap: 6rem;
  column-gap: 6rem;
}
@media screen and (max-width: 768px) {
  section.service_3d_contactfoot .lgm_contain .phone_link {
    margin: 5rem 0 0;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    row-gap: 4rem;
    padding: 0 2rem;
  }
}
section.service_3d_contactfoot .lgm_contain .phone_link a {
  position: relative;
  border: 1px solid #0e0e0e;
  padding: 2rem 0rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  section.service_3d_contactfoot .lgm_contain .phone_link a {
    padding: 1.3rem 0;
  }
}
section.service_3d_contactfoot .lgm_contain .phone_link a div {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
section.service_3d_contactfoot .lgm_contain .phone_link a div .num {
  position: relative;
  display: flex;
  align-items: center;
}
section.service_3d_contactfoot .lgm_contain .phone_link a div .num::before {
  position: absolute;
  content: "";
  width: 2.6rem;
  height: 2.9rem;
  background: url(../image/contact_tel_ico.png) center center/cover no-repeat;
  left: -1rem;
  top: 15%;
}
@media screen and (max-width: 768px) {
  section.service_3d_contactfoot .lgm_contain .phone_link a div .num::before {
    width: 2rem;
    height: 2.2rem;
    left: 1rem;
    top: 26%;
  }
}
section.service_3d_contactfoot .lgm_contain .phone_link a div .num span {
  margin-left: 2.5rem;
  font: 500 4rem/1.5 "Noto Serif JP";
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 990px) {
  section.service_3d_contactfoot .lgm_contain .phone_link a div .num span {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 900px) {
  section.service_3d_contactfoot .lgm_contain .phone_link a div .num span {
    font-size: 3rem;
  }
}
@media screen and (max-width: 820px) {
  section.service_3d_contactfoot .lgm_contain .phone_link a div .num span {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  section.service_3d_contactfoot .lgm_contain .phone_link a div .num span {
    margin: 0 0 0 4rem;
    font-size: 3.1rem;
    letter-spacing: 0.3rem;
  }
}
section.service_3d_contactfoot .lgm_contain .phone_link a div .date {
  margin-top: -1rem;
  font: 400 1.3rem "Noto Serif JP"; /* Sans JP */
}
@media screen and (max-width: 768px) {
  section.service_3d_contactfoot .lgm_contain .phone_link a div .date {
    margin-top: -0.8rem;
    font-size: 1.2rem;
  }
}
section.service_3d_contactfoot .lgm_contain .phone_link a::after {
  position: absolute;
  content: "";
  font: 400 1.6rem/0.5 "Noto Serif JP"; /* Sans JP */
  letter-spacing: 0.1rem;
  color: #0e0e0e;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 0.5rem;
  background: #ebf0f8;
  left: 4.5rem;
  top: -0.5rem;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  section.service_3d_contactfoot .lgm_contain .phone_link a::after {
    background: #fdfdff;
    left: 3.5rem;
    top: -0.2rem;
  }
}
section.service_3d_contactfoot .lgm_contain .phone_link .tokyo::after {
  content: "東京本社";
}
section.service_3d_contactfoot .lgm_contain .phone_link .nagoya::after {
  content: "名古屋駅前支店";
  background: #fdfdff;
  left: 4rem;
}
section.service_3d_contactfoot .lgm_contain a.line_link {
  position: relative;
  margin: 4.7rem auto 0;
  padding: 2.3rem;
  width: 99%;
  /*letter-spacing: 0.5rem;*/
  text-align: center;
}
@media screen and (max-width: 768px) {
  section.service_3d_contactfoot .lgm_contain a.line_link {
    margin: 5.5rem auto 0;
    padding: 0;
    padding-left: 4rem;
    width: 100%;
  }
}
section.service_3d_contactfoot .lgm_contain a.line_link:hover {
  background: transparent;
}
section.service_3d_contactfoot .lgm_contain a.line_link:hover::before {
  transition-delay: 0.25s;
  background: url(../image/contact_mail_ico_black.png) center center/contain no-repeat;
}
section.service_3d_contactfoot .lgm_contain a.line_link::before {
  position: absolute;
  z-index: 20;
  content: "";
  width: 2.2rem;
  aspect-ratio: 22/18;
  background: url(../image/contact_mail_ico.png) center center/contain no-repeat;
  transform: translate(0, -50%);
  left: 30rem;
  top: 50%;
}
@media screen and (max-width: 1100px) {
  section.service_3d_contactfoot .lgm_contain a.line_link::before {
    left: calc(50vw - 25rem);
  }
}
@media screen and (max-width: 768px) {
  section.service_3d_contactfoot .lgm_contain a.line_link::before {
    width: 2rem;
    left: calc(50vw - 13rem);
  }
} /* /250109 */


main section.service_3d_field.works_page_field .xls_contain {
  padding: 0.9rem 5rem 14.2rem;
}
@media screen and (max-width: 768px) {
  main section.service_3d_field.works_page_field .xls_contain {
    padding: 3.75rem 2.7rem 7.5rem;
  }
}
main section.service_3d_field .xls_contain {
  padding: 21rem 5rem 15rem;
}
@media screen and (max-width: 768px) {
  main section.service_3d_field .xls_contain {
    padding: 6.1rem 2.7rem 5rem;
  }
}
main section.service_3d_field .xls_contain .field_ttl {
  display: flex;
  justify-content: space-between;
  padding-right: 5rem;
}
@media screen and (max-width: 768px) {
  main section.service_3d_field .xls_contain .field_ttl {
    padding-right: 0;
    flex-direction: column;
  }
}
main section.service_3d_field .xls_contain .field_ttl .ttl_content {
  width: 68%;
}
@media screen and (max-width: 768px) {
  main section.service_3d_field .xls_contain .field_ttl .ttl_content {
    width: 100%;
  }
}
main section.service_3d_field .xls_contain .field_ttl .ttl_content .txt1 {
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  main section.service_3d_field .xls_contain .field_ttl .ttl_content .txt1 {
    line-height: 2;
  }
}
main section.company_profile .xls_contain {
  padding-top: 0;
}
@media screen and (max-width: 768px) {
  main section.company_profile .xls_contain {
    padding-top: 6rem;
  }
}
main section.company_profile .xls_contain .dt_tbl {
  margin-top: 10.8rem;
}
@media screen and (max-width: 768px) {
  main section.company_profile .xls_contain .dt_tbl {
    margin-top: 3rem;
  }
}
main section.company_access {
  padding-top: 14rem;
  padding-bottom: 18.4rem;
}
@media screen and (max-width: 768px) {
  main section.company_access {
    padding-top: 6rem;
    padding-bottom: 5rem;
  }
}
main section.company_access .xls_contain {
  padding: 0 5rem;
}
@media screen and (max-width: 768px) {
  main section.company_access .xls_contain {
    padding: 0 3rem;
  }
}
main section.company_access .xls_contain .main_content {
  display: flex;
  justify-content: space-between;
  margin-top: 7.3rem;
}
@media screen and (max-width: 1400px) {
  main section.company_access .xls_contain .main_content {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  main section.company_access .xls_contain .main_content {
    margin-top: 2rem;
  }
}
main section.company_access .xls_contain .main_content .access_item {
  width: 44%;
  margin: 0 auto; /*240220 施設1拠点化により */
  text-align: center;
}
@media screen and (max-width: 1400px) {
  main section.company_access .xls_contain .main_content .access_item {
    width: 100%;
    margin-top: 4rem;
  }
}
main section.company_access .xls_contain .main_content .access_item .sub_ttl p {
  font-weight: 500;
  font-size: 2.6rem;
  line-height: 1;
  color: #0e0e0e;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 1400px) {
  main section.company_access .xls_contain .main_content .access_item .sub_ttl p {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  main section.company_access .xls_contain .main_content .access_item .sub_ttl p {
    font-size: 1.8rem;
  }
}
main section.company_access .xls_contain .main_content .access_item .map_img {
  margin-top: 2rem;
}
main section.company_access .xls_contain .main_content .access_item .map_img iframe {
  width: 100%;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 1400px) {
  main section.company_access .xls_contain .main_content .access_item .map_img {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 768px) {
  main section.company_access .xls_contain .main_content .access_item .map_img {
    margin-top: 2rem;
  }
}
main section.company_access .xls_contain .main_content .access_item .descs {
  margin-top: 3.5rem;
}
main section.company_access .xls_contain .main_content .access_item .descs p {
  margin-top: 3.6rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  font-size: 2rem;
  line-height: 1.53;
}
main section.company_access .xls_contain .main_content .access_item .descs p span {
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  main section.company_access .xls_contain .main_content .access_item .descs p {
    font-size: 1.4rem;
  }
}
main section.greeting {
  padding-top: 0;
  padding-bottom: 20rem;
}
@media screen and (max-width: 768px) {
  main section.greeting {
    padding-top: 6rem;
    padding-bottom: 5rem;
  }
}
main section.greeting .greeting_map {
  margin-top: 3.1rem;
}
main section.greeting .main_content {
  padding: 0 4.3rem;
}
@media screen and (max-width: 768px) {
  main section.greeting .main_content {
    padding: 0 3rem;
  }
}
main section.greeting .main_content .desc_block1 {
  padding-top: 6.8rem;
  padding-bottom: 9rem;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1400px) {
  main section.greeting .main_content .desc_block1 {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  main section.greeting .main_content .desc_block1 {
    padding-top: 3.4rem;
    padding-bottom: 2rem;
  }
}
main section.greeting .main_content .desc_block1 .l_content {
  padding: 0 0.6rem;
}
@media screen and (max-width: 1400px) {
  main section.greeting .main_content .desc_block1 .l_content {
    text-align: center;
  }
}
main section.greeting .main_content .desc_block1 .l_content .desc1 {
  font-weight: 500;
  font-size: 2.3rem;
  line-height: 2.6;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 768px) {
  main section.greeting .main_content .desc_block1 .l_content .desc1 {
    font-size: 1.4rem;
  }
}
main section.greeting .main_content .desc_block1 .l_content .desc2 {
  font-weight: 700;
  font-size: 3.3rem;
  line-height: 1.8;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 768px) {
  main section.greeting .main_content .desc_block1 .l_content .desc2 {
    font-size: 2.4rem;
  }
}
main section.greeting .main_content .desc_block1 .r_content {
  margin-top: 0.7rem;
  width: 64%;
}
@media screen and (max-width: 1400px) {
  main section.greeting .main_content .desc_block1 .r_content {
    width: 100%;
    margin-top: 3rem;
  }
}
main section.greeting .main_content .desc_block1 .r_content p {
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 2.1;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 768px) {
  main section.greeting .main_content .desc_block1 .r_content p {
    font-size: 1.4rem;
    line-height: 2;
  }
}
main section.greeting .main_content .desc_blocks {
  padding: 0 1rem;
  padding-top: 2rem;
}
@media screen and (max-width: 768px) {
  main section.greeting .main_content .desc_blocks {
    padding: 0;
  }
}
@media screen and (max-width: 1400px) {
  main section.greeting .main_content .desc_blocks {
    padding-top: 2rem;
  }
}
main section.greeting .main_content .desc_blocks .desc_block {
  display: flex;
  justify-content: space-between;
  -moz-column-gap: 4rem;
  column-gap: 4rem;
}
@media screen and (max-width: 1400px) {
  main section.greeting .main_content .desc_blocks .desc_block {
    flex-wrap: wrap;
  }
}
main section.greeting .main_content .desc_blocks .desc_block .l_content {
  width: 49.1%;
}
@media screen and (max-width: 1400px) {
  main section.greeting .main_content .desc_blocks .desc_block .l_content {
    margin-top: 2rem;
    width: 100%;
    order: 2;
  }
}
main section.greeting .main_content .desc_blocks .desc_block .l_content p {
  font-size: 2rem;
  line-height: 2.15;
  font-weight: 500;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 768px) {
  main section.greeting .main_content .desc_blocks .desc_block .l_content p {
    font-size: 1.4rem;
    line-height: 2;
  }
}
main section.greeting .main_content .desc_blocks .desc_block .r_content {
  width: 46.5%;
}
@media screen and (max-width: 1400px) {
  main section.greeting .main_content .desc_blocks .desc_block .r_content {
    width: 100%;
    order: 1;
  }
}
main section.greeting .main_content .desc_blocks .desc_block.block1 {
  margin-top: 13.3rem;
}
@media screen and (max-width: 768px) {
  main section.greeting .main_content .desc_blocks .desc_block.block1 {
    margin-top: 4rem;
  }
}
main section.greeting .main_content .desc_blocks .desc_block.block1 .r_content {
  order: 1;
}
main section.greeting .main_content .desc_blocks .desc_block.block1 .l_content {
  order: 2;
  width: 46.4%;
}
@media screen and (max-width: 1400px) {
  main section.greeting .main_content .desc_blocks .desc_block.block1 .l_content {
    width: 100%;
  }
}
main section.history .xls_contain {
  padding-top: 12.3rem;
  padding-bottom: 16rem;
}
@media screen and (max-width: 768px) {
  main section.history .xls_contain {
    padding-top: 6rem;
    padding-bottom: 5rem;
  }
}
main section.history .xls_contain .dt_tbl {
  margin-top: 7.6rem;
}
@media screen and (max-width: 1100px) {
  main section.history .xls_contain .dt_tbl {
    margin-top: 0rem;
  }
}
main section.learn .xls_contain {
  padding-top: 10.2rem;
  padding-bottom: 17.5rem;
}
@media screen and (max-width: 768px) {
  main section.learn .xls_contain {
    padding-top: 6rem;
    padding-bottom: 5rem;
  }
}
main section.learn .xls_contain h3.section_ttl06 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 768px) {
  main section.learn .xls_contain h3.section_ttl06 {
    font-size: 1.7rem;
  }
}
main section.learn .xls_contain h3.section_ttl06 span {
  font-size: 6rem;
  font-weight: 700;
  letter-spacing: 1.3rem;
}
@media screen and (max-width: 768px) {
  main section.learn .xls_contain h3.section_ttl06 span {
    font-size: 3.3rem;
  }
}
main section.learn .xls_contain .section_descr {
  /*margin-top: 3.5rem;*/
  text-align: center;
  font-size: 1.6rem;
  /*font-weight: 700;*/
  letter-spacing: 0.21rem;
  line-height: 2.1;
}
@media screen and (max-width: 1100px) {
  main section.learn .xls_contain .section_descr {
    font-size: 1.35rem;
  }
}
@media screen and (max-width: 768px) {
  main section.learn .xls_contain .section_descr {
    text-align: left;
    font-size: 1.4rem;
  }
}
main section.learn .xls_contain .grid-container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-row-gap: 8rem;
  -moz-column-gap: 11rem;
  column-gap: 11rem;
  justify-content: space-between;
  margin: auto;
  max-width: 152rem;
  margin-top: 7.5rem;
}
@media screen and (max-width: 768px) {
  main section.learn .xls_contain .grid-container {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    grid-row-gap: 1rem;
    margin-top: 3rem;
  }
}
main section.learn .xls_contain .grid-container .grid-item {
  overflow: hidden;
  aspect-ratio: 2.05;
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
  font: 400 5rem "Noto Serif JP";
  letter-spacing: 0.8rem;
}
@media screen and (max-width: 1200px) {
  main section.learn .xls_contain .grid-container .grid-item {
    font-size: 4rem;
    justify-content: space-around;
    letter-spacing: 0.5rem;
  }
}
@media screen and (max-width: 768px) {
  main section.learn .xls_contain .grid-container .grid-item {
    font-size: 3rem;
    justify-content: space-around;
    letter-spacing: 0.5rem;
  }
}
main section.learn .xls_contain .grid-container .grid-item div {
  align-items: center;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-size: cover;
}
main section.learn .xls_contain .grid-container .grid-item div:hover {
  transform: scale(1.1);
  transition: all 0.3s;
}
main section.learn .xls_contain .grid-container .grid-item .learn_unity {
  background-image: url(../image/unity.png);
}
main section.learn .xls_contain .grid-container .grid-item .learn_ue {
  background-image: url(../image/unreal_engine.png);
}
main section.learn .xls_contain .grid-container .grid-item .learn_blender {
  background-image: url(../image/blender.png);
}
main section.learn .xls_contain .grid-container .grid-item .learn_sw {
  background-image: url(../image/solidworks.png);
}
main section.learn .xls_contain .grid-container .grid-item .learn_fusion {
  background-image: url(../image/fusion.png);
}
main section.recruit_mv .xl_contain {
  padding-top: 9rem;
  padding-bottom: 9rem;
}
@media screen and (max-width: 768px) {
  main section.recruit_mv .xl_contain {
    padding-top: 6rem;
    padding-bottom: 3rem;
  }
}
main section.recruit_mv .xl_contain h3 {
  position: relative;
  z-index: 10;
  line-height: 1.1;
}
@media screen and (max-width: 768px) {
  main section.recruit_mv .xl_contain h3 {
    letter-spacing: 1.2rem;
  }
}
main section.recruit_mv .xl_contain .kv_fig {
  position: relative;
  z-index: 0;
  margin: 0 auto;
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  main section.recruit_mv .xl_contain .kv_fig {
    margin-top: 3rem;
  }
}
main section.recruit_txt .lgm_contain {
  padding-top: 10.5rem;
}
@media screen and (max-width: 768px) {
  main section.recruit_txt .lgm_contain {
    padding-top: 5rem;
  }
}
main section.recruit_txt .lgm_contain h4 {
  font: 400 5rem/1.2 "Noto Serif JP";
  margin: 0 auto;
  text-align: center;
  letter-spacing: 1.3rem;
  padding-left: 1.8rem;
}
@media screen and (max-width: 768px) {
  main section.recruit_txt .lgm_contain h4 {
    font-size: 3rem;
    padding-left: 0rem;
  }
}
main section.recruit_txt .lgm_contain p {
  width: 80rem;
  margin: 0 auto;
  margin-top: 3rem;
  font: 400 1.9rem/2.3 "Noto Serif JP"; /* Sans JP */
  text-align: center;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 1100px) {
  main section.recruit_txt .lgm_contain p {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  main section.recruit_txt .lgm_contain p {
    font-size: 1.4rem;
  }
}
main section.recruit_01 .xlm_contain {
  padding-top: 10rem;
}
@media screen and (max-width: 768px) {
  main section.recruit_01 .xlm_contain {
    padding-top: 5rem;
  }
}
@media screen and (max-width: 1100px) {
  main section.recruit_01 .xlm_contain .media_block .cts {
    padding: 3rem 2rem;
  }
}
main section.recruit_02 .xlm_contain {
  padding-top: 10rem;
  padding-bottom: 15rem;
}
@media screen and (max-width: 768px) {
  main section.recruit_02 .xlm_contain {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
main section.recruit_02 .xlm_contain .media_block {
  flex-direction: row-reverse;
}
main section.recruit_02 .xlm_contain .media_block .fig .thumb {
  transform: translate(6.6rem, 0);
}
@media screen and (max-width: 1100px) {
  main section.recruit_02 .xlm_contain .media_block .fig .thumb {
    transform: translate(4.6rem, 0);
  }
}
@media screen and (max-width: 768px) {
  main section.recruit_02 .xlm_contain .media_block .fig .thumb {
    transform: translate(-1.6rem);
  }
}
main section.recruit_02 .xlm_contain .media_block .cts {
  padding-top: 1.5rem;
  padding-left: 12rem;
  padding-right: 6rem;
}
@media screen and (max-width: 1100px) {
  main section.recruit_02 .xlm_contain .media_block .cts {
    padding: 3rem 2rem;
  }
}
main section.recruit_member_ttl .xls_contain {
  padding-top: 0rem; /* 11.5rem */
  padding-bottom: 19rem;
}
@media screen and (max-width: 1200px) {
  main section.recruit_member_ttl .xls_contain {
    padding-bottom: 8rem;
  }
}
@media screen and (max-width: 768px) {
  main section.recruit_member_ttl .xls_contain {
    padding-top: 6rem;
    padding-bottom: 5rem;
  }
}
main section.recruit_member_pic .xls_contain {
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 7.5rem;
  margin-bottom: 20rem;
}
@media screen and (max-width: 1620px) {
  main section.recruit_member_pic .xls_contain {
    padding: 0 3rem;
    margin-bottom: 15rem;
  }
}
@media screen and (max-width: 1400px) {
  main section.recruit_member_pic .xls_contain {
    margin-bottom: 10rem;
  }
}
@media screen and (max-width: 768px) {
  main section.recruit_member_pic .xls_contain {
    flex-wrap: wrap;
    margin-bottom: 3rem;
  }
}
main section.recruit_member_pic .xls_contain .fig {
  position: relative;
  z-index: 5;
  width: 43.5%;
  aspect-ratio: 64/75;
}
main section.recruit_member_pic .xls_contain .fig img {
  height: 100%;
}
@media screen and (max-width: 768px) {
  main section.recruit_member_pic .xls_contain .fig {
    order: 1;
    width: 100%;
    aspect-ratio: 40/45;
  }
}
main section.recruit_member_pic .xls_contain .cts {
  position: relative;
  z-index: 10;
  margin-top: 24rem;
  width: 61%;
  margin-left: -10%;
  border-radius: 0.6rem;
  border: 1px solid #c4c4c4;
  padding: 7rem 2rem;
  padding: 12rem 3rem 10rem;
}
main section.recruit_member_pic .xls_contain .cts .incts {
  display: table;
  max-width: 58rem;
  margin: auto;
}
@media screen and (max-width: 1620px) {
  main section.recruit_member_pic .xls_contain .cts {
    margin-top: 20rem;
  }
}
@media screen and (max-width: 1400px) {
  main section.recruit_member_pic .xls_contain .cts {
    margin-top: 18rem;
  }
}
@media screen and (max-width: 1200px) {
  main section.recruit_member_pic .xls_contain .cts {
    margin-top: 16rem;
  }
}
@media screen and (max-width: 900px) {
  main section.recruit_member_pic .xls_contain .cts {
    margin-top: 14rem;
  }
}
@media screen and (max-width: 768px) {
  main section.recruit_member_pic .xls_contain .cts {
    order: 3; /* 2 */
    width: 100%;
    position: relative;
    left: unset;
    right: unset;
    transform: unset;
    padding-top: 5rem;
    border: none;
    padding: 3rem 0;
    margin: 0;
  }
}
main section.recruit_member_pic .xls_contain .cts .label p {
  line-height: 1.9;
}
main section.recruit_member_pic .xls_contain .cts .label p .t1 {
  font-weight: 500;
  font-size: 2.2rem;
  color: #5d5d5d;
  letter-spacing: 0.4rem;
}
@media screen and (max-width: 1400px) {
  main section.recruit_member_pic .xls_contain .cts .label p .t1 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 1200px) {
  main section.recruit_member_pic .xls_contain .cts .label p .t1 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  main section.recruit_member_pic .xls_contain .cts .label p .t1 {
    font-size: 1.6rem;
  }
}
main section.recruit_member_pic .xls_contain .cts .label p .t2 {
  font-weight: 700;
  font-size: 2.8rem;
  letter-spacing: 0.45rem;
}
@media screen and (max-width: 1400px) {
  main section.recruit_member_pic .xls_contain .cts .label p .t2 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 1200px) {
  main section.recruit_member_pic .xls_contain .cts .label p .t2 {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 768px) {
  main section.recruit_member_pic .xls_contain .cts .label p .t2 {
    font-size: 1.7rem;
  }
}
main section.recruit_member_pic .xls_contain .cts .exp {
  margin-top: 3.9rem;
  font: 400 1.9rem/2.3 "Noto Serif JP"; /* Sans JP */
  letter-spacing: 0.15rem;
}
@media screen and (max-width: 1400px) {
  main section.recruit_member_pic .xls_contain .cts .exp {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1200px) {
  main section.recruit_member_pic .xls_contain .cts .exp {
    margin-top: 2rem;
    line-height: 1.8;
  }
}
@media screen and (max-width: 768px) {
  main section.recruit_member_pic .xls_contain .cts .exp {
    margin-top: 2rem;
    font-size: 1.4rem;
    line-height: 2;
  }
}
main section.recruit_member_pic.pic_right .xls_contain .cts {
  margin-left: 0;
  margin-right: -10%;
}
@media screen and (max-width: 768px) {
  main section.recruit_member_pic.pic_right .xls_contain .cts {
    margin: 0;
  }
}
main section.service_02_ttl .tt {
  padding-top: 10rem;
}
@media screen and (max-width: 768px) {
  main section.service_02_ttl .tt {
    padding-top: 6rem;
  }
}
main section.service_02_ttl .thumb {
  margin-top: 5rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  main section.service_02_ttl .thumb {
    margin-top: 3rem;
  }
}
main section.service_02_ttl .txt {
  padding-left: 5.8rem;
  padding-right: 5.8rem;
  padding-top: 11rem;
}
@media screen and (max-width: 1100px) {
  main section.service_02_ttl .txt {
    padding: 6rem 1.6rem 5rem;
  }
}
main section.service_02_ttl .txt .label {
  font: 700 4.2rem/1.8 "Noto Serif JP";
  letter-spacing: 0.5rem;
  width: 70rem;
}
@media screen and (max-width: 1100px) {
  main section.service_02_ttl .txt .label {
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  main section.service_02_ttl .txt .label {
    font-size: 2.2rem;
  }
}
main section.service_02_ttl .txt .content {
  margin-top: 3rem;
  font: 400 1.8rem/2.4 "Noto Serif JP"; /* Sans JP */
  letter-spacing: 0.1rem;
  width: 104rem;
}
@media screen and (max-width: 1100px) {
  main section.service_02_ttl .txt .content {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  main section.service_02_ttl .txt .content {
    font-size: 1.4rem;
    line-height: 2;
  }
}
main section.service_02_mission .xl_contain {
  padding-top: 0; /* 23.5rem */
  padding-bottom: 23rem;
}
@media screen and (max-width: 768px) {
  main section.service_02_mission .xl_contain {
    padding: 3rem 0 5rem;
  }
}
main section.service_02_mission .xl_contain .xls_contain.pic {
  margin-top: 12.5rem;
  margin-bottom: 21rem;
  padding: 0 6rem;
}
@media screen and (max-width: 768px) {
  main section.service_02_mission .xl_contain .xls_contain.pic {
    margin: 5rem 0;
    padding: 0 3rem;
  }
}
main section.service_02_mission .xl_contain .xls_contain.bl_row {
  margin-top: 6rem !important; /* service TOPページ 見出し余白設定 */
  margin-bottom: 2.5rem;
  display: flex;
  justify-content: space-around;
}
@media screen and (max-width: 830px) {
  main section.service_02_mission .xl_contain .xls_contain.bl_row {
    justify-content: space-between;
  }
}
@media screen and (max-width: 768px) {
  main section.service_02_mission .xl_contain .xls_contain.bl_row {
    flex-direction: column;
  }
}
main section.service_02_mission .xl_contain .xls_contain.bl_row .block {
  width: 32%; /* 48% */
  max-width: 30rem; /* 53.5rem */
}
@media screen and (max-width: 1200px) {
  main section.service_02_mission .xl_contain .xls_contain.bl_row .block {
    width: 30%; /* 46% */
  }
}
@media screen and (max-width: 768px) {
  main section.service_02_mission .xl_contain .xls_contain.bl_row .block {
    width: 100%;
  }
}
main section.service_02_mission .xl_contain .xls_contain.bl_row .block .thumb {
  width: 100%;
  aspect-ratio: 1/1;
}
main section.service_02_mission .xl_contain .xls_contain.bl_row .block .cts {
  padding: 3rem 0 0;
}
@media screen and (max-width: 768px) {
  main section.service_02_mission .xl_contain .xls_contain.bl_row .block .cts {
    padding: 2rem 0 0;
  }
}
main section.service_02_mission .xl_contain .xls_contain.bl_row .block .cts .label p.et {
  font: 400 1rem "Noto Serif JP";
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 768px) {
  main section.service_02_mission .xl_contain .xls_contain.bl_row .block .cts .label p.et {
    font-size: 1rem;
  }
}
main section.service_02_mission .xl_contain .xls_contain.bl_row .block .cts .label p.jt {
  font: 700 2rem "Noto Serif JP";
  letter-spacing: 0.3rem;
  margin: 1rem 0 2rem;
}
@media screen and (max-width: 1100px) {
  main section.service_02_mission .xl_contain .xls_contain.bl_row .block .cts .label p.jt {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  main section.service_02_mission .xl_contain .xls_contain.bl_row .block .cts .label p.jt {
    font-size: 1.6rem;
  }
}
main section.service_02_mission .xl_contain .xls_contain.bl_row .block .cts p.ds {
  margin-top: 1.5rem; /* 4.5rem */
  font: 400 1.6rem/2.2 "Noto Serif JP"; /* Sans JP */
  letter-spacing: 0.1rem;
    line-height: 1.6;
}
@media screen and (max-width: 1400px) {
  main section.service_02_mission .xl_contain .xls_contain.bl_row .block .cts p.ds {
    margin-top: 2rem;
  }
}
@media screen and (max-width: 1100px) {
  main section.service_02_mission .xl_contain .xls_contain.bl_row .block .cts p.ds {
    font-size: 1.4rem;
  }
}
main section.service_02_mission .xl_contain .xls_contain.bl_row .block:nth-of-type(2) {
  /* margin-top: 16.3rem; */
}
@media screen and (max-width: 1400px) {
  main section.service_02_mission .xl_contain .xls_contain.bl_row .block:nth-of-type(2) {
    margin-top: 7rem;
  }
}
@media screen and (max-width: 768px) {
  main section.service_02_mission .xl_contain .xls_contain.bl_row .block:nth-of-type(2) {
    margin-top: 3rem;
  }
}
main section.service_02_business .xl_contain {
  padding-bottom: 19rem;
}
@media screen and (max-width: 768px) {
  main section.service_02_business .xl_contain {
    padding-bottom: 5rem;
  }
}
main section.service_02_business .xl_contain .xls_contain.pic {
  margin-top: 14.5rem;
  padding: 0 11.5rem;
}
@media screen and (max-width: 768px) {
  main section.service_02_business .xl_contain .xls_contain.pic {
    margin-top: 5rem;
    padding: 0 0;
  }
}
main section.service_02_business .xl_contain .xls_contain.pic .thumb {
  width: 100%;
}
main section.service_02_service {
  padding-top: 0rem;
}
main section.service_02_service .xl_contain {
  padding-top: 2.4rem;
  padding-bottom: 10rem;
}
@media screen and (max-width: 768px) {
  main section.service_02_service .xl_contain {
    padding-top: 5rem;
    padding-bottom: 10rem;
  }
}
main section.service_02_service .xl_contain h3 {
  padding-left: 1rem;
}
@media screen and (max-width: 768px) {
  main section.service_02_service .xl_contain h3 {
    padding-left: 2rem;
    padding-right: 2rem;
    letter-spacing: 0.5rem;
  }
}
main section.service_02_service .xl_contain div.content {
  margin-top: 10rem;
}
@media screen and (max-width: 768px) {
  main section.service_02_service .xl_contain div.content {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 768px) {
  main section.service_02_service .xl_contain div.content div.img {
    padding-top: 0;
  }
}
main section.service_02_service .xl_contain div.content div.img p.img1 {
  padding-top: 0.5rem;
  width: 80.8%;
}
@media screen and (max-width: 1720px) {
  main section.service_02_service .xl_contain div.content div.img p.img1 {
    width: 65%;
    aspect-ratio: 50/65;
    margin-left: 10%;
  }
}
@media screen and (max-width: 1200px) {
  main section.service_02_service .xl_contain div.content div.img p.img1 {
    margin-left: 5%;
    aspect-ratio: 5/9;
  }
}
@media screen and (max-width: 768px) {
  main section.service_02_service .xl_contain div.content div.img p.img1 {
    width: 70%;
    aspect-ratio: unset;
  }
}
main section.service_02_service .xl_contain div.content div.img p.img2 {
  top: 63.5%;
  left: -11.7%;
  width: 43.7%;
}
@media screen and (max-width: 1720px) {
  main section.service_02_service .xl_contain div.content div.img p.img2 {
    left: 0;
    width: 30%;
  }
}
@media screen and (max-width: 768px) {
  main section.service_02_service .xl_contain div.content div.img p.img2 {
    top: 80%;
  }
}
main section.service_02_service .xl_contain div.content div.img p.txt {
  color: black;
  font: 400 2.2rem/2 "Noto Serif JP";
  margin-left: 71.5rem;
  letter-spacing: 0.3rem;
  position: absolute;
}
@media screen and (max-width: 1620px) {
  main section.service_02_service .xl_contain div.content div.img p.txt {
    margin-left: 80%;
  }
}
@media screen and (max-width: 1200px) {
  main section.service_02_service .xl_contain div.content div.img p.txt {
    margin-left: 75%;
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  main section.service_02_service .xl_contain div.content div.img p.txt {
    margin-left: 80%;
    white-space: nowrap;
    font-size: 1.6rem;
    line-height: 1.8;
  }
}
main section.service_02_service .xl_contain div.content div.service_list {
  margin-left: -3.5rem;
  margin-top: -1rem;
}
@media screen and (max-width: 1100px) {
  main section.service_02_service .xl_contain div.content div.service_list {
    margin-left: 0rem;
  }
}
@media screen and (max-width: 768px) {
  main section.service_02_service .xl_contain div.content div.service_list {
    padding-top: 3rem;
  }
}
main section.service_02_service .xl_contain div.content div.service_list ul {
  width: 77.5%;
}
@media screen and (max-width: 768px) {
  main section.service_02_service .xl_contain div.content div.service_list ul {
    width: 100%;
  }
}
main section.service_02_service .xl_contain div.content div.service_list ul li {
  padding-left: 1.4rem;
  position: relative;
  border-bottom: 1px solid #4a4a4a;
  padding-bottom: 3.4rem;
  padding-top: 3.9rem;
}
main section.service_02_service .xl_contain div.content div.service_list ul li a p {
  color: black;
  font: 400 3rem "Noto Serif JP"; /* Sans JP */
}
main section.service_02_service .xl_contain div.content div.service_list ul li a p span {
  margin-right: 3rem;
}
@media screen and (max-width: 1400px) {
  main section.service_02_service .xl_contain div.content div.service_list ul li a p {
    font-size: 2rem;
  }
}
@media screen and (max-width: 1100px) {
  main section.service_02_service .xl_contain div.content div.service_list ul li a p {
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  main section.service_02_service .xl_contain div.content div.service_list ul li a p {
    font-size: 1rem;
  }
}
main section.service_02_service .xl_contain div.content div.service_list ul li::after {
  right: 1.4rem;
  top: 4.5rem;
}
@media screen and (max-width: 1100px) {
  main section.service_02_service .xl_contain div.content div.service_list ul li::after {
    top: 1.5rem;
  }
}
main section.service_02_service .xl_contain p.circle_img {
  margin-top: 20rem;
  width: 52.5rem;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 768px) {
  main section.service_02_service .xl_contain p.circle_img {
    width: 60%;
    margin-top: 4rem;
    padding-top: 0;
  }
}
main section.recruit_member_menu {
  background: url(../image/recruit_menu_bg.jpg) center center/cover no-repeat;
}
@media screen and (max-width: 768px) {
  main section.recruit_member_menu {
    background-position: left center;
  }
}
main section.recruit_member_menu .xlm_contain {
  padding-top: 9.5rem;
  padding-bottom: 10.5rem;
}
@media screen and (max-width: 768px) {
  main section.recruit_member_menu .xlm_contain {
    flex-wrap: wrap;
    padding-top: 5rem;
    padding-bottom: 5rem;
    row-gap: 2rem;
  }
}
main section.recruit_member_menu .xlm_contain .mitem {
  width: 29%;
  border: 1px solid black;
  line-height: 1.7;
  padding: 7.8rem 3.5rem 0;
}
@media screen and (max-width: 1400px) {
  main section.recruit_member_menu .xlm_contain .mitem {
    width: 31%;
    text-align: center;
    padding: 2rem 1rem 3rem;
  }
}
@media screen and (max-width: 1200px) {
  main section.recruit_member_menu .xlm_contain .mitem {
    padding: 2rem 0.5rem 3rem;
  }
}
@media screen and (max-width: 768px) {
  main section.recruit_member_menu .xlm_contain .mitem {
    padding: 2rem 0;
    width: 100%;
  }
  main section.recruit_member_menu .xlm_contain .mitem:last-of-type {
    margin: 0;
  }
}
main section.recruit_member_menu .xlm_contain .mitem .t1 {
  font: 400 3.6rem "Noto Serif JP";
  letter-spacing: 0.8rem;
}
@media screen and (max-width: 1400px) {
  main section.recruit_member_menu .xlm_contain .mitem .t1 {
    font-size: 3rem;
  }
}
@media screen and (max-width: 1200px) {
  main section.recruit_member_menu .xlm_contain .mitem .t1 {
    font-size: 2.3rem;
    letter-spacing: 0.1rem;
  }
}
@media screen and (max-width: 768px) {
  main section.recruit_member_menu .xlm_contain .mitem .t1 {
    font-size: 2.5rem;
  }
}
main section.recruit_member_menu .xlm_contain .mitem .t2 {
  font: 500 3.6rem "Noto Serif JP";
  letter-spacing: 0.8rem;
}
@media screen and (max-width: 1400px) {
  main section.recruit_member_menu .xlm_contain .mitem .t2 {
    font-size: 3rem;
  }
}
@media screen and (max-width: 1200px) {
  main section.recruit_member_menu .xlm_contain .mitem .t2 {
    letter-spacing: 0.2rem;
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 768px) {
  main section.recruit_member_menu .xlm_contain .mitem .t2 {
    font-size: 2.5rem;
  }
}
main section.recruit_member_menu .xlm_contain .mitem .t3 {
  font-weight: 700;
  font-size: 2.2rem;
  letter-spacing: 0.5rem;
}
@media screen and (max-width: 1400px) {
  main section.recruit_member_menu .xlm_contain .mitem .t3 {
    margin-bottom: 3rem;
    font-size: 2rem;
  }
}
@media screen and (max-width: 1200px) {
  main section.recruit_member_menu .xlm_contain .mitem .t3 {
    font-size: 1.6rem;
  }
}
main section.recruit_member_menu .xlm_contain .mitem div.arw::before {
  content: url("../image/arw_bg.png");
  float: right;
  margin-top: 9rem;
  margin-bottom: 5rem;
  margin-right: 4.5rem;
}
@media screen and (max-width: 1400px) {
  main section.recruit_member_menu .xlm_contain .mitem div.arw::before {
    margin: 0 auto;
    float: none;
    width: 2rem;
  }
}
@media screen and (max-width: 1200px) {
  main section.recruit_member_menu .xlm_contain .mitem div.arw::before {
    font-size: 1.6rem;
  }
}
main section.recruit_member_btn {
  background: url(../image/recruit_bg.jpg) center center/cover no-repeat;
}
main section.recruit_member_btn .xlm_contain {
  display: flex;
  padding-top: 25rem;
  padding-bottom: 18.4rem;
}
@media screen and (max-width: 768px) {
  main section.recruit_member_btn .xlm_contain {
    padding-top: 13rem;
    padding-bottom: 8rem;
  }
}
main section.recruit_member_btn .xlm_contain a.border_btn {
  margin: 0 auto;
}
main section.rmm .xlm_contain {
  padding-top: 10.5rem;
  padding-bottom: 10.5rem;
}
@media screen and (max-width: 768px) {
  main section.rmm .xlm_contain {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
main section.staff_blog {
  padding: 12.4rem 0 9rem;
}
@media screen and (max-width: 768px) {
  main section.staff_blog {
    padding: 6.4rem 0 4.5rem;
  }
}
main section.staff_blog.pt_5 {
  padding-top: 11.3rem;
}
@media screen and (max-width: 768px) {
  main section.staff_blog.pt_5 {
    padding-top: 5.9rem;
  }
}
main section.staff_blog .main_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
main section.staff_blog .main_content .title {
  line-height: 2.1;
  text-align: center;
  padding-bottom: 7.7rem;
}
@media screen and (max-width: 768px) {
  main section.staff_blog .main_content .title {
    text-align: center;
    padding-bottom: 4.2rem;
  }
}
main section.staff_blog .main_content .title.t_unit {
  padding-bottom: 5.6rem;
}
@media screen and (max-width: 768px) {
  main section.staff_blog .main_content .title.t_unit {
    padding-bottom: 3.6rem;
  }
}
main section.staff_blog .main_content .title.t_unit h3 {
  line-height: 2.1;
}
main section.staff_blog .main_content .title.t_unit h3 p:nth-of-type(1) {
  letter-spacing: 0.4rem;
  margin-left: 0;
}
main section.staff_blog .main_content .title h3 {
  line-height: 2.1;
}
main section.staff_blog .main_content .title h3 p:nth-of-type(1) {
  letter-spacing: 0.5rem;
  margin-left: 1rem;
}
@media screen and (max-width: 768px) {
  main section.staff_blog .main_content .title h3 p:nth-of-type(1) {
    letter-spacing: 0rem;
    margin-left: 0;
  }
}
main section.staff_blog .main_content .title h3 p:nth-of-type(2) {
  font: 500 2.8rem "Noto Serif JP"; /* Sans JP */
  margin-top: 1.3rem;
}
@media screen and (max-width: 768px) {
  main section.staff_blog .main_content .title h3 p:nth-of-type(2) {
    font-size: 1.5rem;
    margin-top: 1.3rem;
  }
}
main section.staff_blog .main_content .unit {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 10.3rem;
}
@media screen and (max-width: 768px) {
  main section.staff_blog .main_content .unit {
    padding-bottom: 5.7rem;
  }
}
main section.staff_blog .main_content .unit .xls_contain {
  padding: 0 5rem;
}
@media screen and (max-width: 768px) {
  main section.staff_blog .main_content .unit .xls_contain {
    padding: 0;
  }
}
main section.staff_blog .main_content .unit .xls_contain .thumb {
  width: 100%;
  aspect-ratio: 2/1.116;
}
main section.staff_blog .main_content .unit .xls_contain .txt_content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
}
main section.staff_blog .main_content .unit .xls_contain .txt_content p {
  max-width: 125rem;
  width: 100%;
  font: 500 2rem/2.4 "Noto Serif JP"; /* Sans JP */
  color: #fff;
  letter-spacing: 0.1rem;
  padding: 2.3rem 6rem 3.3rem;
}
@media screen and (max-width: 1100px) {
  main section.staff_blog .main_content .unit .xls_contain .txt_content p {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  main section.staff_blog .main_content .unit .xls_contain .txt_content p {
    font-size: 1.1rem;
    letter-spacing: 0.05rem;
    line-height: 1.8;
    padding: 1.2rem 1.7rem 1.4rem;
  }
}
main section.detail_blog .inview {
  background: #efefef;
  padding-top: 5.3rem;
  padding-bottom: 22.8rem;
}
@media screen and (max-width: 768px) {
  main section.detail_blog .inview {
    padding-top: 3.3rem;
    padding-bottom: 4.8rem;
  }
}
main section.detail_blog .inview .xl_contain {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  main section.detail_blog .inview .xl_contain {
    flex-direction: column;
  }
}
main section.detail_blog .inview .xl_contain .description {
  background: #fff;
  width: 74%;
  padding: 8rem 9rem 12rem;
}
@media screen and (max-width: 1200px) {
  main section.detail_blog .inview .xl_contain .description {
    padding: 4.2rem 4.9rem 6.5rem 5.5rem;
  }
}
@media screen and (max-width: 768px) {
  main section.detail_blog .inview .xl_contain .description {
    width: 100%;
    padding: 3.2rem 1.7rem 5.5rem 1.7rem;
  }
}
main section.detail_blog .inview .xl_contain .description .blog_ttl {
  font: 700 3.4rem/1.1 "Noto Sans JP"; /* Sans JP */
  white-space: nowrap;
  letter-spacing: 0.17rem;
}
@media screen and (max-width: 1400px) {
  main section.detail_blog .inview .xl_contain .description .blog_ttl {
    font-size: 3.1rem;
  }
}
@media screen and (max-width: 1200px) {
  main section.detail_blog .inview .xl_contain .description .blog_ttl {
    font-size: 3rem;
  }
}
@media screen and (max-width: 1100px) {
  main section.detail_blog .inview .xl_contain .description .blog_ttl {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  main section.detail_blog .inview .xl_contain .description .blog_ttl {
    font-size: 1.8rem;
    letter-spacing: 0.01rem;
  }
}
main section.detail_blog .inview .xl_contain .description .blog_txt {
  display: flex;
  align-items: center;
  font: 500 1.6rem/2.25 "Noto Sans JP" !important;
}
main section.detail_blog .inview .xl_contain .description .blog_txt p {
  font: 500 1.6rem/2.25 "Noto Sans JP" !important;
  letter-spacing: 0.09rem;
  margin: 1.5rem 0 3.5rem;
  color: #9e9e9e;
}
main section.detail_blog .inview .xl_contain .description .blog_txt p:first-child {
  position: relative;
  margin-right: 1.1rem;
  padding-right: 0.6rem;
}
@media screen and (max-width: 768px) {
  main section.detail_blog .inview .xl_contain .description .blog_txt p:first-child {
    margin-right: 0.3rem;
    padding-right: 0.5rem;
  }
}
main section.detail_blog .inview .xl_contain .description .blog_txt p:first-child::after {
  position: absolute;
  width: 0.1rem;
  height: 1.5rem;
  content: "";
  background: #9e9e9e;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  main section.detail_blog .inview .xl_contain .description .blog_txt p:first-child::after {
    height: 1rem;
  }
}
@media screen and (max-width: 1400px) {
  main section.detail_blog .inview .xl_contain .description .blog_txt p {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 1200px) {
  main section.detail_blog .inview .xl_contain .description .blog_txt p {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 1100px) {
  main section.detail_blog .inview .xl_contain .description .blog_txt p {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  main section.detail_blog .inview .xl_contain .description .blog_txt p {
    font-size: 1rem;
    letter-spacing: 0;
    margin: 0.8rem 0 1.9rem;
  }
}
main section.detail_blog .inview .xl_contain .description .blog_feature {
  overflow: hidden;
  margin: 0;
}
main section.detail_blog .inview .xl_contain .description .blog_feature img {
  width: 100%;
  aspect-ratio: 2/1.334;
  border-radius: 0.5rem;
  margin: 0;
}
@media screen and (max-width: 768px) {
  main section.detail_blog .inview .xl_contain .description .blog_feature img {
    border-radius: 0.2rem;
  }
}
main section.detail_blog .inview .xl_contain .description .building {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  main section.detail_blog .inview .xl_contain .description .building {
    margin-top: 2.7rem;
    flex-direction: column;
  }
}
main section.detail_blog .inview .xl_contain .description .building div:first-child {
  width: 98%;
  margin-right: 1rem;
}
@media screen and (max-width: 768px) {
  main section.detail_blog .inview .xl_contain .description .building div:first-child {
    margin-right: 0rem;
    margin-bottom: 0.5rem;
  }
}
main section.detail_blog .inview .xl_contain .description .building div:last-child {
  width: 98%;
  margin-left: 1rem;
}
@media screen and (max-width: 768px) {
  main section.detail_blog .inview .xl_contain .description .building div:last-child {
    margin-left: 0rem;
  }
}
main section.detail_blog .inview .xl_contain .description .building div img {
  width: 100%;
  border-radius: 0.5rem;
  aspect-ratio: 2/1.344;
}
@media screen and (max-width: 768px) {
  main section.detail_blog .inview .xl_contain .description .building div img {
    border-radius: 0.2rem;
    aspect-ratio: 2/1;
  }
}
main section.detail_blog .inview .xl_contain .description p {
  font: 500 1.9rem/2.2 "Noto Sans JP"; /* Sans JP */
  letter-spacing: 0.1rem;
  margin-top: 5.3rem;
}
@media screen and (max-width: 768px) {
  main section.detail_blog .inview .xl_contain .description p {
    font-size: 1.2rem;
    letter-spacing: 0.02rem;
    margin-top: 3rem;
  }
}
main section.detail_blog .inview .xl_contain .latest_article {
  position: relative;
  align-items: center;
  background: #fff;
  width: 22%;
  display: flex;
  height: -moz-max-content;
  height: max-content;
  flex-direction: column;
  padding: 3.9rem 2.8rem;
}
@media screen and (max-width: 1720px) {
  main section.detail_blog .inview .xl_contain .latest_article {
    width: 23%;
  }
}
@media screen and (max-width: 768px) {
  main section.detail_blog .inview .xl_contain .latest_article {
    position: relative;
    overflow-y: unset;
    right: 0;
    width: 100%;
    margin-top: 1.5rem;
    padding: 2rem 1.7rem;
    height: 100%;
  }
}
main section.detail_blog .inview .xl_contain .latest_article .title p {
  position: relative;
  font: 700 2.1.875rem/2.0 "Noto Sans JP"; /* Sans JP */
  padding-bottom: 2rem;
  margin-bottom: 4.8rem;
}
@media screen and (max-width: 768px) {
  main section.detail_blog .inview .xl_contain .latest_article .title p {
    font-size: 1.6rem;
    margin-bottom: 2.4rem;
    padding-bottom: 1.1rem;
  }
}
main section.detail_blog .inview .xl_contain .latest_article .title p::after {
  content: "";
  position: absolute;
  width: 6.8rem;
  height: 0.1rem;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
  background: #000;
}
@media screen and (max-width: 768px) {
  main section.detail_blog .inview .xl_contain .latest_article .title p::after {
    width: 3.7rem;
    height: 0.05rem;
  }
}
main section.detail_blog .inview .xl_contain .latest_article ul {
  width: 100%;
}
main section.detail_blog .inview .xl_contain .latest_article ul li {
  padding-bottom: 3rem;
  margin-bottom: 3.7rem;
  border-bottom: 1px solid #c4c4c4;
}
@media screen and (max-width: 768px) {
  main section.detail_blog .inview .xl_contain .latest_article ul li {
    padding-bottom: 1.6rem;
    margin-bottom: 1.9rem;
  }
}
main section.detail_blog .inview .xl_contain .latest_article ul li:last-child {
  border-bottom: none;
  margin-bottom: 0.9rem;
}
@media screen and (max-width: 768px) {
  main section.detail_blog .inview .xl_contain .latest_article ul li:last-child {
    margin-bottom: 0.45rem;
  }
}
main section.detail_blog .inview .xl_contain .latest_article ul li a {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1720px) {
  main section.detail_blog .inview .xl_contain .latest_article ul li a {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  main section.detail_blog .inview .xl_contain .latest_article ul li a {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
  }
}
main section.detail_blog .inview .xl_contain .latest_article ul li a .thumb {
  overflow: hidden;
  transition: all 0.3s;
  width: 68.5%;
}
@media screen and (max-width: 1720px) {
  main section.detail_blog .inview .xl_contain .latest_article ul li a .thumb {
    width: 100%;
    aspect-ratio: 2/1;
  }
}
@media screen and (max-width: 768px) {
  main section.detail_blog .inview .xl_contain .latest_article ul li a .thumb {
    width: 35%;
    aspect-ratio: 2/1.1;
    margin-right: 1rem;
  }
}
main section.detail_blog .inview .xl_contain .latest_article ul li a .text {
  margin-top: -1rem;
  margin-left: 2rem;
}
@media screen and (max-width: 1720px) {
  main section.detail_blog .inview .xl_contain .latest_article ul li a .text {
    margin-top: 1rem;
    margin-left: 0rem;
  }
}
@media screen and (max-width: 768px) {
  main section.detail_blog .inview .xl_contain .latest_article ul li a .text {
    margin-top: -0.2rem;
    margin-left: 0rem;
  }
}
main section.detail_blog .inview .xl_contain .latest_article ul li a .text p {
  letter-spacing: 0.08rem;
}
@media screen and (max-width: 1100px) {
  main section.detail_blog .inview .xl_contain .latest_article ul li a .text p {
    letter-spacing: -0.12rem;
  }
}
@media screen and (max-width: 768px) {
  main section.detail_blog .inview .xl_contain .latest_article ul li a .text p {
    letter-spacing: 0.1rem;
  }
}
main section.detail_blog .inview .xl_contain .latest_article ul li a .text p:first-child {
  font: 500 1.3rem/2.7 "Noto Sans JP"; /* Sans JP */
  color: #9e9e9e;
}
@media screen and (max-width: 1100px) {
  main section.detail_blog .inview .xl_contain .latest_article ul li a .text p:first-child {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 768px) {
  main section.detail_blog .inview .xl_contain .latest_article ul li a .text p:first-child {
    font-size: 1.2rem;
    line-height: 1.3;
  }
}
main section.detail_blog .inview .xl_contain .latest_article ul li a .text p:last-child {
  font: 700 1.5rem/1.6 "Noto Sans JP"; /* Sans JP */
  color: #0e0e0e;
}
@media screen and (max-width: 1100px) {
  main section.detail_blog .inview .xl_contain .latest_article ul li a .text p:last-child {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  main section.detail_blog .inview .xl_contain .latest_article ul li a .text p:last-child {
    font-size: 1.2rem;
  }
}
/* main section.supermarket, main section.servicetop {
  padding-top: 3.5rem;
}
@media screen and (max-width: 768px) {
  main section.supermarket, main section.servicetop {
    padding-top: 0rem;
  }
} */
main section.supermarket .title_bg {
  /*background: url() center/cover no-repeat;*/
  height: 84rem;
  width: 100vw;
  display: flex;
  align-items: end;
  padding: 9.8rem 15rem;
}
main section.servicetop .title_bg {
  /*background: url("../image/supermarket_bg.png") center/cover no-repeat;*/
  height: 84rem;
  width: 100vw;
  display: flex;
  align-items: end;
  padding: 9.8rem 15rem;
}
main section.workstop .title_bg {
  background: url("https://spc-lab.jp/wp2023/wp-content/uploads/2023/09/s018_H-scaled.jpg") center/cover no-repeat;
  height: 84rem;
  width: 100vw;
  display: flex;
  align-items: end;
  padding: 9.8rem 15rem;
}
@media screen and (max-width: 1100px) {
  main section.supermarket .title_bg {
    padding: 6.5rem 10rem;
  }
}
@media screen and (max-width: 768px) {
  main section.supermarket .title_bg {
    padding: 3.5rem 0rem;
    /*background: url("../image/supermarket_bg_sp.png") center/cover no-repeat;*/
    height: 34.77rem;
  }
}
main section.supermarket .title_bg h2, main section.supermarket .title_bg h3 {
  font: 600 7rem/1.6 "Noto Serif JP";
  color: #fff;
}
@media screen and (max-width: 1200px) {
  main section.supermarket .title_bg h2, main section.supermarket .title_bg h3 {
    font-size: 5rem;
  }
}
@media screen and (max-width: 1024px) {
  main section.supermarket .title_bg h2, main section.supermarket .title_bg h3 {
    font-size: 4rem;
  }
}
@media screen and (max-width: 768px) {
  main section.supermarket .title_bg h2, main section.supermarket .title_bg h3 {
    font-size: 2.5rem;
  }
}
main section.supermarket .title_bg h2 p, main section.supermarket .title_bg h3 p {
  font-family: "Noto Serif JP";
  font-size: 2.25rem; /*4.6rem*/
  font-weight: 600;
  letter-spacing: 0.74rem;
}
@media screen and (max-width: 768px) {
  main section.supermarket .title_bg h2 p, main section.supermarket .title_bg h3 p {
    letter-spacing: 0.32rem;
  }
}
main section.supermarket .title_bg h2 p span, main section.supermarket .title_bg h3 p span {
  font-family: "Noto Serif JP"; /* Sans JP */
  font-weight: 400;
  letter-spacing: 0rem;
  margin-right: 2.25rem;
}
@media screen and (max-width: 768px) {
  main section.supermarket .title_bg h2 p span, main section.supermarket .title_bg h3 p span {
    margin-right: 1.45rem;
  }
}
main section.supermarket .title_bg h2 p:nth-of-type(2), main section.supermarket .title_bg h3 p:nth-of-type(2) {
  text-align: center;
  font: 400 2.3rem "Noto Serif JP";
  letter-spacing: 0.32rem;
}
@media screen and (max-width: 1200px) {
  main section.supermarket .title_bg h2 p:nth-of-type(2), main section.supermarket .title_bg h3 p:nth-of-type(2) {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 1024px) {
  main section.supermarket .title_bg h2 p:nth-of-type(2), main section.supermarket .title_bg h3 p:nth-of-type(2) {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  main section.supermarket .title_bg h2 p:nth-of-type(2), main section.supermarket .title_bg h3 p:nth-of-type(2) {
    font-size: 1.2rem;
    letter-spacing: 0.13rem;
  }
}
main section.supermarket .xls_contain .super {
  padding: 2rem 0 4rem; /*7.5rem 0 5rem */
}
@media screen and (max-width: 768px) {
  main section.supermarket .xls_contain .super {
    padding: 4.9rem 0 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  main section.supermarket .xls_contain .super .lgm_contain {
    padding: 0;
  }
}
main section.supermarket .xls_contain .super .lgm_contain p {
  line-height: 2.2 !important;
}
main section.supermarket .xls_contain .super .lgm_contain p:first-child {
  text-align: center;
  font: 400 4.6rem "Noto Serif JP"; /* Sans JP */
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 768px) {
  main section.supermarket .xls_contain .super .lgm_contain p:first-child {
    font-size: 2.6rem;
    letter-spacing: 0.1rem;
    text-align: left;
  }
}
main section.supermarket .xls_contain .super .lgm_contain p:last-child {
  width: 91%;
  font: 400 1.9rem "Noto Serif JP"; /* Sans JP */
  letter-spacing: 0.1rem;
  margin: 1.8rem auto;
}
main section.supermarket .xls_contain .super .lgm_contain p:last-child .sp_span {
  display: none;
}
@media screen and (max-width: 768px) {
  main section.supermarket .xls_contain .super .lgm_contain p:last-child .sp_span {
    display: inline;
  }
}
@media screen and (max-width: 768px) {
  main section.supermarket .xls_contain .super .lgm_contain p:last-child {
    line-height: 2.1;
    margin: 0;
    width: 100%;
    font-size: 1.4rem;
    letter-spacing: 0.16rem;
  }
}
main section.supermarket .xls_contain .super .intro {
  padding: 10.3rem 0 12.8rem;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  main section.supermarket .xls_contain .super .intro {
    padding: 6.1rem 0 4.5rem;
    flex-direction: column;
  }
}
main section.supermarket .xls_contain .super .intro .img_part {
  width: 50%;
}
@media screen and (max-width: 768px) {
  main section.supermarket .xls_contain .super .intro .img_part {
    width: 100%;
  }
  main section.supermarket .xls_contain .super .intro .img_part img {
    margin: auto;
  }
}
main section.supermarket .xls_contain .super .intro .fishmarket_desc {
  border-top: 0.1rem solid #505050;
  width: 44.5%;
  padding: 7.1rem 3.6rem;
}
@media screen and (max-width: 768px) {
  main section.supermarket .xls_contain .super .intro .fishmarket_desc {
    width: 100%;
    margin: 2.7rem auto 0;
    padding: 3.9rem 0 0 0;
  }
}
main section.supermarket .xls_contain .super .intro .fishmarket_desc div p:first-child {
  font: 600 2.2rem/1.63 "Noto Serif JP";
  letter-spacing: 0.44rem;
}
@media screen and (max-width: 768px) {
  main section.supermarket .xls_contain .super .intro .fishmarket_desc div p:first-child {
    font-size: 1.4rem;
  }
}
main section.supermarket .xls_contain .super .intro .fishmarket_desc div p:last-child {
  width: 73%;
  font: 400 1.9rem/1.89 "Noto Serif JP"; /* Sans JP */
  letter-spacing: 0.1rem;
  margin-bottom: 2.6rem;
}
@media screen and (max-width: 768px) {
  main section.supermarket .xls_contain .super .intro .fishmarket_desc div p:last-child {
    width: 100%;
    font-size: 1.5rem;
    letter-spacing: 0.05rem;
    margin-bottom: 1.19rem;
  }
}
main section.supermarket .xls_contain .super .img_gallery .thumb {
  width: 100%;
}
main section.supermarket .xls_contain .super .img_gallery .imgs {
  margin-top: 7rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  -moz-column-gap: 6rem;
  column-gap: 6rem;
}
@media screen and (max-width: 768px) {
  main section.supermarket .xls_contain .super .img_gallery .imgs {
    margin-top: 3.2rem;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    -moz-column-gap: 0;
    column-gap: 0;
    row-gap: 3.2rem;
  }
}
main section.supermarket .xls_contain .super .img_gallery .link_btn {
  padding: 5rem 0 0;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  main section.supermarket .xls_contain .super .img_gallery .link_btn {
    padding: 3rem 0;
  }
}
main section.supermarket .xls_contain .super .img_gallery .link_btn a {
  position: relative;
}
main section.supermarket .xls_contain .super .img_gallery .link_btn a p {
  font: 500 2.1rem/1.71 "Noto Serif JP"; /* Sans JP */
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 768px) {
  main section.supermarket .xls_contain .super .img_gallery .link_btn a p {
    font-size: 1.2rem;
    letter-spacing: 0.11rem;
  }
}
main section.supermarket .xls_contain .super .img_gallery .link_btn a p:first-child {
  padding-left: 5.6rem;
}
@media screen and (max-width: 768px) {
  main section.supermarket .xls_contain .super .img_gallery .link_btn a p:first-child {
    padding-left: 2.5rem;
  }
}
main section.supermarket .xls_contain .super .img_gallery .link_btn a p:last-child {
  padding-right: 5.6rem;
}
@media screen and (max-width: 768px) {
  main section.supermarket .xls_contain .super .img_gallery .link_btn a p:last-child {
    padding-right: 2.5rem;
  }
}
main section.supermarket .xls_contain .super .img_gallery .link_btn a:first-child::before {
  content: "";
  transform: translate(0, -50%);
  background: url("../image/arrow_left_icon.png") center/cover no-repeat;
  position: absolute;
  top: 50%;
  left: 0;
  width: 2.3rem;
  aspect-ratio: 23/39;
}
@media screen and (max-width: 768px) {
  main section.supermarket .xls_contain .super .img_gallery .link_btn a:first-child::before {
    left: 0;
    width: 1.2rem;
  }
}
main section.supermarket .xls_contain .super .img_gallery .link_btn a:last-child::after {
  content: "";
  transform: translate(0, -50%);
  background: url("../image/arrow_right_icon.png") center/cover no-repeat;
  position: absolute;
  top: 50%;
  right: 0;
  width: 2.3rem;
  aspect-ratio: 23/39;
}
@media screen and (max-width: 768px) {
  main section.supermarket .xls_contain .super .img_gallery .link_btn a:last-child::after {
    right: 0;
    width: 1.2rem;
  }
}
main section.relation_example {
  padding: 8.9rem 0 20rem;
}
@media screen and (max-width: 768px) {
  main section.relation_example {
    padding: 1.5rem 0 8rem;
  }
}
main section.relation_example .xls_contain {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  main section.relation_example .xls_contain {
    padding: 0 2.7rem;
  }
}
main section.relation_example .xls_contain h2 {
  font: 500 4rem "Noto Serif JP"; /* Sans JP */
  padding-bottom: 5.1rem;
  letter-spacing: 0.4rem;
}
@media screen and (max-width: 768px) {
  main section.relation_example .xls_contain h2 {
    font-size: 2rem;
    padding-bottom: 2.3rem;
    letter-spacing: 0.1rem;
  }
}
main section.relation_example .xls_contain .products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  -moz-column-gap: 2.2rem;
  column-gap: 2.2rem;
}
@media screen and (max-width: 768px) {
  main section.relation_example .xls_contain .products {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    -moz-row-gap: 3.6rem;
    row-gap: 3.6rem;
    width: 100%;
  }
}
main section.relation_example .xls_contain .products li a {
  position: relative;
}
main section.relation_example .xls_contain .products li a:hover .figs::after {
  opacity: 0.4;
}
main section.relation_example .xls_contain .products li a .figs {
  position: relative;
}
main section.relation_example .xls_contain .products li a .figs::after {
  position: absolute;
  content: "";
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transition: all 0.15s;
  z-index: 20;
}
main section.relation_example .xls_contain .products li a .figs .thumb {
  position: relative;
  overflow: hidden;
  z-index: 10;
  width: 100%;
  /* aspect-ratio: 1/0.932; 240517 */
}
main section.relation_example .xls_contain .products li a .figs .content {
  align-items: center;
  bottom: 0;
  color: #fff;
  display: flex;
  flex-flow: column nowrap;
  font-weight: 700;
  justify-content: center;
  left: 0;
  line-height: 1;
  max-width: 100%;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  z-index: 50;
}
main section.relation_example .xls_contain .products li a .figs .content p:nth-of-type(1) {
  font: 700 2.4rem "Noto Serif JP"; /* Sans JP */
}
@media screen and (max-width: 768px) {
  main section.relation_example .xls_contain .products li a .figs .content p:nth-of-type(1) {
    font-size: 1.7rem;
    letter-spacing: 0.36rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  main section.relation_example .xls_contain .products li a .figs .content p:nth-of-type(1) {
    font-size: 1.6rem;
    letter-spacing: 0.26rem;
  }
}
main section.relation_example .xls_contain .products li a .figs .content p:nth-of-type(2) {
  font: 400 1.8rem/2.5 "Noto Serif JP"; /* Sans JP */
}
@media screen and (max-width: 768px) {
  main section.relation_example .xls_contain .products li a .figs .content p:nth-of-type(2) {
    font-size: 1.2rem;
    line-height: 2.7;
  }
}
main section.relation_example .xls_contain .products li a .figs .content p:nth-of-type(3) {
  font: 400 1.9rem "Noto Serif JP"; /* Sans JP */
}
@media screen and (max-width: 768px) {
  main section.relation_example .xls_contain .products li a .figs .content p:nth-of-type(3) {
    font-size: 1.3rem;
  }
} /*# sourceMappingURL=style.css.map */
/* 230930 グローバルナビ拡張 */
.sp_nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-top: 85px;
  background-color: var(--bodyColor);
  transition: background-color 200ms;
  z-index: 90
}
.sp_nav.is-open .sp_nav__house__container {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 1500ms, transform 1500ms cubic-bezier(0.165, 0.84, 0.44, 1)
}
.sp_nav__wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  height: 100%
}
.sp_nav__container {
  display: flex;
  width: 100%
}
.sp_nav__links {
  position: relative;
  width: 30.625%;
  max-width: 392px;
  min-width: 236px;
  padding-left: max(6.25%, 73.5px);
  margin-right: 3.125%;
  background-color: var(--bodyColor);
  z-index: 2
}
.sp_nav__links .block {
  width: 100%
}
.sp_nav__links .block .anchor {
  display: inline-block;
  width: auto;
  padding: 8px
}
.sp_nav__links .block__main .text {
  font-size: 2.4rem
}
.sp_nav__links .block__main .text:after {
  bottom: 0
}
.sp_nav__links .block__sub {
  margin-top: 8px
}
.sp_nav__links .block__sub__item:nth-of-type(n+2) {
  margin-top: 5px
}
.sp_nav__links .block__sub__item .text {
  font-size: 1.1rem
}
.sp_nav__house {
  width: 100%
}
.sp_nav__house__title {
  font-size: 2.4rem
}
.sp_nav__house__title .anchor {
  display: inline-block;
  width: auto;
  padding: 8px;
  margin-left: -8px
}
.sp_nav__house__title .text {
  display: inline-block
}
.sp_nav__house__title .text:after {
  bottom: 0
}
.sp_nav__house__container {
  margin-top: 36px;
  overflow: visible;
  opacity: 0;
  transform: translate3d(120px, 0, 0)
}
.sp_nav__house__container .swiper-prev {
  left: -4.3907793633%;
  width: 9.5499451153%
}
.sp_nav__house__container .swiper-next {
  right: 0;
  width: 8.6717892426%
}
.sp_nav__house .labelList {
  display: flex
}
.sp_nav__house .labelList__item {
  position: relative;
  width: 28.1009879254%;
  padding-right: 3.5126234907%;
  box-sizing: content-box
}
.sp_nav__house .labelList__item .anchor {
  position: relative;
  height: 100%;
  padding-top: 15px;
  padding-bottom: 45px
}
.sp_nav__house .labelList__item .anchor.mHover .slide {
  transform: scale(1.06)
}
.sp_nav__house .labelList__item .c-fadeSlide {
  margin-top: 7px;
  overflow: hidden
}
.sp_nav__house .labelList__item .c-fadeSlide.is-comingSoon:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #061826;
  opacity: .4;
  z-index: 5
}
.sp_nav__house .labelList__item .c-fadeSlide.is-comingSoon:after {
  content: "Coming soon";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: .08em;
  z-index: 5
}
.sp_nav__house .labelList__item .slide {
  height: 0;
  padding-bottom: 66.875%;
  transition: transform 900ms cubic-bezier(0.215, 0.61, 0.355, 1)
}
.sp_nav__house .labelList__item .slide .image {
  height: 100%
}
.sp_nav__house .labelList__item .slide img, .sp_nav__house .labelList__item .slide video {
  width: 100%;
  height: 100%;
  object-fit: cover
}
.sp_nav__house .labelList__item .heading {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1rem;
  letter-spacing: .04em
}
.sp_nav__house .labelList__item .title {
  margin-top: 1.25em;
  font-size: 1.6rem;
  letter-spacing: .02em
}
.sp_nav__house .labelList__item .c-view {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%
}
.sp_nav__house .labelList__item .c-view__inner {
  width: 100%
}
.sp_nav .Footer__bottom {
  margin-top: 30px;
  border-top: 1px solid #e3e5e4
}
@media screen and (max-width: 980px) {
  .sp_nav {
    padding-top: 25.3333333333vw
  }
  .sp_nav__wrapper {
    display: block;
    width: 84vw;
    height: initial;
    margin: auto
  }
  .sp_nav__container {
    display: block
  }
  .sp_nav__links {
    width: 100%;
    max-width: initial;
    min-width: initial;
    min-height: 37.3333333333vw;
    padding-left: 0;
    margin-right: 0;
    background-color: rgba(0, 0, 0, 0)
  }
  .sp_nav__links:after {
    content: "";
    display: block;
    height: 0;
    font-size: 0;
    clear: both;
    visibility: hidden
  }
  .sp_nav__links .block {
    float: left;
    width: 50%
  }
  .sp_nav__links .block:nth-of-type(3) {
    margin-top: 6.9333333333vw
  }
  .sp_nav__links .block--sns {
    position: absolute;
    bottom: 0;
    left: 50%
  }
  .sp_nav__links .block--sns .sns__item {
    font-size: 2.9333333333vw
  }
  .sp_nav__links .block--sns .sns__item:nth-of-type(n+2) {
    margin-top: 4.8vw
  }
  .sp_nav__links .block--sns .sns__item .anchor {
    display: flex;
    align-items: center
  }
  .sp_nav__links .block--sns .sns__item .ico {
    width: 2.6666666667vw;
    margin-right: .6363636364em
  }
  .sp_nav__links .block .anchor {
    padding: 0
  }
  .sp_nav__links .block__main .text {
    font-size: 5.3333333333vw
  }
  .sp_nav__links .block__sub {
    margin-top: 6.9333333333vw
  }
  .sp_nav__links .block__sub__item:nth-of-type(n+2) {
    margin-top: 4.8vw
  }
  .sp_nav__links .block__sub__item .text {
    font-size: 2.9333333333vw
  }
  .sp_nav__house {
    margin-top: 13.8666666667vw;
    overflow: visible
  }
  .sp_nav__house__title {
    font-size: 5.3333333333vw
  }
  .sp_nav__house__title .anchor {
    padding: 0;
    margin-left: 0
  }
  .sp_nav__house__container {
    margin-top: 6.1333333333vw;
    transform: translate3d(0, 120px, 0)
  }
  .sp_nav__house .labelList {
    display: block
  }
  .sp_nav__house .labelList__item {
    width: 100%;
    padding-right: 0
  }
  .sp_nav__house .labelList__item:nth-of-type(n+2) {
    margin-top: 8vw
  }
  .sp_nav__house .labelList__item .anchor {
    display: flex;
    justify-content: space-between;
    padding-top: 0;
    padding-bottom: 0
  }
  .sp_nav__house .labelList__item .c-fadeSlideWrapper {
    width: 41.2698412698%
  }
  .sp_nav__house .labelList__item .c-fadeSlide {
    margin-top: 0
  }
  .sp_nav__house .labelList__item .c-fadeSlide.is-comingSoon:after {
    font-size: 2.6666666667vw
  }
  .sp_nav__house .labelList__item .info {
    position: relative;
    width: 52.380952381%
  }
  .sp_nav__house .labelList__item .heading {
    position: static;
    font-size: 2.6666666667vw
  }
  .sp_nav__house .labelList__item .title {
    margin-top: .3529411765em;
    font-size: 4.5333333333vw
  }
  .sp_nav__house .labelList__item .c-view {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%
  }
  .sp_nav__house .labelList__item .c-view__inner {
    width: 100%
  }
  .sp_nav .Footer__bottom {
    margin-top: 16vw
  }
  .sp_nav .Footer__bottom__sns .item:last-of-type {
    margin-left: 0
  }
  .Contents[data-barba-namespace=top] .Main__sp_nav {
    top: 6.6666666667vw;
    right: 5.6vw;
    width: 13.3333333333vw;
    height: 13.3333333333vw
  }
}
@media screen and (min-width: 981px) {
  .sp_nav__links .block:nth-of-type(n+2) {
    margin-top: 35px
  }
}
.des_t {
  font-size: 1.6rem;
}
.wpcf7-list-item-label a {
  border-bottom: solid 1px #111;
  display: inline-block;
  padding-bottom: 3px;
}
@media screen and (max-width: 981px) {
  .des_t {
    font-size: 1.4rem;
  }
}
/* 240516 */
.desbtn {
  letter-spacing: 0.1rem;
  max-width: calc(69% - 3rem);
  margin: 2rem auto;
  text-align: center;
  font: bold 1.75rem "Noto Serif JP";
  line-height: 2.0;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 768px) {
  .desbtn {
    max-width: calc(80% - 3rem);
  }
}
.desbtn span {
  color: #707070;
}
.desbtn a {
  margin: 1.4rem auto;
  text-align: center;
  color: #707070;
  border-bottom: 1px solid #4a4a4a;
  margin-bottom: 2.7rem;
}
.desbtn2 a.line_link {
  position: relative;
  margin: 1rem auto 0;
  padding: 2.3rem;
  width: 25%;
  letter-spacing: 0.5rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .desbtn2 a.line_link {
    margin: 1rem auto 0;
    padding: 0;
    padding-left: 4rem;
    width: 100%;
  }
}
.desbtn2 a.line_link:hover {
  background: transparent;
}
.desbtn2 a.line_link:hover::before {
  transition-delay: 0.25s;
  background: url(../image/contact_mail_ico_black.png) center center/contain no-repeat;
}
.desbtn2 a.line_link::before {
  position: absolute;
  z-index: 20;
  content: "";
  width: 2.2rem;
  aspect-ratio: 22/18;
  background: url(../image/contact_mail_ico.png) center center/contain no-repeat;
  transform: translate(0, -50%);
  right: 25rem;
  top: 50%;
}
@media screen and (max-width: 1100px) {
  .desbtn2 a.line_link::before {
    left: calc(50vw - 25rem);
  }
}
@media screen and (max-width: 768px) {
  .desbtn2 a.line_link::before {
    width: 2rem;
    left: calc(50vw - 13rem);
  }
}
.accordion_indextab {
  margin: 0 auto 50px;
}
.accordion-check {
  display: none;
}
.accordion-label {
  background: #999;
  color: #fff;
  display: block;
  margin-bottom: 1px;
  padding: 10px;
  position: relative;
  font-size: 14px;
  text-align: center;
}
.accordion-label h2{
  font-size: 14px;
  text-align: center;
}
.accordion-label:after {
  background: #999;
  box-sizing: border-box;
  content: '\f067';
  display: block;
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  height: 42px; /*50*/
  padding: 10px 20px; /*10 20 */
  position: absolute;
  right: 0;
  top: 0;
}
.accordion-content {
  border: 1px solid #cecece;
  display: block;
  height: 0;
  opacity: 0;
  padding: 0 5rem;
  transition: .5s;
  visibility: hidden;
  font-size: 11px;
  font-weight: normal;
  color: #111;
}
.accordion-content img{
    width: 300px;
    text-align: center;
}
.accordion-check:checked + .accordion-label:after {
  content: '\f068';
}
.accordion-check:checked + .accordion-label + .accordion-content {
  height: 100%; /*50px*/
  opacity: 1;
  padding: 10px;
  visibility: visible;
}
/* ===== VE-style NEWS (260528 REWEB) ===== */
.ve-news{padding:8rem 2.4rem 6rem;background:#fff}
.ve-news .news-grid{max-width:100rem;margin:0 auto;display:grid;grid-template-columns:2fr 10fr;gap:4.8rem;align-items:start}
.ve-news .news-head h4{font:400 2.8rem "Cormorant Garamond";letter-spacing:.28em;line-height:1.1;color:#1d1d1b}
.ve-news .news-head h4::after{content:none}
.ve-news .news-head .news-ja{display:block;font-family:"Noto Serif JP";font-size:1rem;letter-spacing:.4em;margin-top:1rem;color:#727272}
.ve-news .news-list{border:0;margin:0;padding:0;list-style:none}
.ve-news .news-list li{border-bottom:1px solid #e5e5e3}
.ve-news .news-list li:first-child{border-top:1px solid #e5e5e3}
.ve-news .news-list a{padding:2rem 0;display:flex;flex-wrap:wrap;align-items:center;gap:2.4rem;width:100%;transition:opacity .2s}
.ve-news .news-list a:hover{opacity:.55}
.ve-news .news-list time{font-family:"Cormorant Garamond";font-size:1.3rem;letter-spacing:.12em;color:#727272;min-width:9.6rem}
.ve-news .news-cat{font-family:"Cormorant Garamond";font-size:1.1rem;letter-spacing:.2em;border:1px solid rgba(0,0,0,.25);padding:.3rem 1.2rem;min-width:7.2rem;text-align:center;color:#1d1d1b}
.ve-news .news-list .news_ttl{font-size:1.4rem;flex:1;min-width:24rem;line-height:1.7;color:#1d1d1b;white-space:normal;overflow:visible;text-overflow:clip;margin:0}
.ve-news .text-right{text-align:right;margin-top:2rem}
.ve-news .view-all{display:inline-block;font:400 1.2rem "Cormorant Garamond";letter-spacing:.32em;border-bottom:1px solid rgba(0,0,0,.4);padding-bottom:.3rem;transition:letter-spacing .25s,opacity .2s;color:#1d1d1b}
.ve-news .view-all:hover{letter-spacing:.4em;opacity:.7}
@media screen and (max-width:768px){
  .ve-news{padding:5rem 2rem 4rem}
  .ve-news .news-grid{grid-template-columns:1fr;gap:2.4rem}
  .ve-news .news-list a{gap:1.2rem 1.6rem;padding:1.6rem 0}
  .ve-news .news-list time{min-width:auto}
  .ve-news .news-list .news_ttl{min-width:100%;font-size:1.3rem}
}

/* ===== VE寄せ: Partners / About stats / Feature / Works / FAQ (260528 REWEB) ===== */

/* (3) パートナーロゴ帯 */
.jisseki .clients-label{margin:0;background:#1a1a1a;color:#9a9a98;text-align:center;font:400 1rem "Cormorant Garamond";letter-spacing:.45em;padding:2.6rem 0 .4rem}
.jisseki__slider{background:#1a1a1a;padding:1rem 0 3rem;margin:0}
.jisseki__slider .splide__slide{display:flex;align-items:center;justify-content:center;padding:0 1.4rem}
.jisseki__slider .splide__slide img{filter:brightness(0) invert(1);opacity:.6;transition:opacity .3s;max-height:4rem;width:auto;object-fit:contain}
.jisseki__slider .splide__slide img:hover{opacity:1}

/* (4) ABOUT 統計 */
main section.index_business .lg_contain .intro .about-stats{display:flex;flex-wrap:wrap;gap:3.2rem 5rem;margin-top:4rem;padding-top:3rem;border-top:1px solid #e5e5e3}
main section.index_business .lg_contain .intro .about-stats .stat{text-align:left}
main section.index_business .lg_contain .intro .about-stats .num{display:block;font:400 3.4rem "Cormorant Garamond";letter-spacing:.04em;line-height:1;color:#1d1d1b}
main section.index_business .lg_contain .intro .about-stats .num small{font-size:1.4rem;letter-spacing:.05em;margin-left:.3rem;color:#727272}
main section.index_business .lg_contain .intro .about-stats .lbl{display:block;font:400 1rem "Cormorant Garamond";letter-spacing:.32em;color:#727272;margin-top:.9rem}
@media screen and (max-width:768px){
  main section.index_business .lg_contain .intro .about-stats{gap:2rem 2.6rem}
  main section.index_business .lg_contain .intro .about-stats .num{font-size:2.6rem}
}

/* (5) FEATURE 画像レイアウト微調整(ホバーズーム/トリミング) */
main section.index_business .lg_contain .architect .l_fig,
main section.index_business .lg_contain .architect .txt .architect_img2,
main section.index_business .lg_contain ul li.design .thumb{overflow:hidden}
main section.index_business .lg_contain .architect .l_fig img,
main section.index_business .lg_contain .architect .txt .architect_img2 img,
main section.index_business .lg_contain ul li.design .thumb img{transition:transform 1.2s cubic-bezier(.2,.7,.2,1);width:100%;height:100%;object-fit:cover}
main section.index_business .lg_contain .architect .l_fig:hover img,
main section.index_business .lg_contain .architect .txt .architect_img2:hover img,
main section.index_business .lg_contain ul li.design .thumb:hover img{transform:scale(1.04)}

/* (6) WORKS グリッド + ホバーオーバーレイ */
main section.works .works_content{display:grid;grid-template-columns:repeat(4,1fr);gap:1.4rem;counter-reset:work}
main section.works .works_content a{position:relative;display:block;overflow:hidden;aspect-ratio:1/1;background:#eee;counter-increment:work;margin:0}
main section.works .works_content a .thumb{margin:0;height:100%;padding:0}
main section.works .works_content a .thumb picture{display:block;height:100%}
main section.works .works_content a .thumb img{width:100%;height:100%;object-fit:cover;display:block;transition:transform 1s var(--ease,ease),filter .6s}
main section.works .works_content a:hover .thumb img{transform:scale(1.06);filter:brightness(.55)}
main section.works .works_content a .work-overlay{position:absolute;inset:0;display:flex;flex-direction:column;justify-content:flex-end;padding:1.8rem;color:#fff;opacity:0;transition:opacity .35s;pointer-events:none}
main section.works .works_content a:hover .work-overlay{opacity:1}
main section.works .works_content a .work-overlay::before{content:counter(work,decimal-leading-zero);position:absolute;top:1.4rem;left:1.8rem;font:400 1.1rem "Cormorant Garamond";letter-spacing:.25em}
main section.works .works_content a .work-cat{font:400 1rem "Cormorant Garamond";letter-spacing:.28em;margin-bottom:.6rem}
main section.works .works_content a .work-title{font:400 1.3rem "Noto Serif JP";letter-spacing:.06em;line-height:1.5}
@media screen and (max-width:768px){
  main section.works .works_content{grid-template-columns:repeat(2,1fr);gap:1rem}
  main section.works .works_content a .work-overlay{opacity:1;background:linear-gradient(to top,rgba(0,0,0,.55),rgba(0,0,0,0) 55%)}
}

/* WORKS一覧(archive/taxonomy)もTOPと同じオーバーレイ体裁に (260530 REWEB) */
.works_arc .container-breakinside{counter-reset:work}
.works_arc .item{counter-increment:work}
.works_arc .item .thumb{position:relative;overflow:hidden}
.works_arc .item .thumb img{transition:transform 1s var(--ease,ease),filter .6s}
.works_arc .item a:hover .thumb img{transform:scale(1.06);filter:brightness(.55)}
.works_arc .item .work-overlay{position:absolute;inset:0;display:flex;flex-direction:column;justify-content:flex-end;padding:1.8rem;color:#fff;opacity:0;transition:opacity .35s;pointer-events:none;z-index:3}
.works_arc .item a:hover .work-overlay{opacity:1}
.works_arc .item .work-overlay::before{content:counter(work,decimal-leading-zero);position:absolute;top:1.4rem;left:1.8rem;font:400 1.1rem "Cormorant Garamond";letter-spacing:.25em}
.works_arc .item .work-cat{font:400 1rem "Cormorant Garamond";letter-spacing:.28em;margin-bottom:.6rem}
.works_arc .item .work-title{font:400 1.3rem "Noto Serif JP";letter-spacing:.06em;line-height:1.5}
@media screen and (max-width:768px){
  .works_arc .item .work-overlay{opacity:1;background:linear-gradient(to top,rgba(0,0,0,.55),rgba(0,0,0,0) 55%);padding:1.2rem}
  .works_arc .item .work-overlay::before{top:1rem;left:1.2rem}
}

/* (7) FAQ */
.ve-faq{background:#fafaf8;padding:10rem 2.4rem}
.ve-faq .section_ttl01{margin-bottom:5rem}
.ve-faq .faq-list{max-width:88rem;margin:0 auto}
.ve-faq .faq-item{border-bottom:1px solid #e5e5e3}
.ve-faq .faq-item:first-child{border-top:1px solid #e5e5e3}
.ve-faq .faq-item summary{list-style:none;cursor:pointer;display:flex;align-items:flex-start;gap:2.4rem;padding:2.8rem .8rem;transition:padding .3s}
.ve-faq .faq-item summary::-webkit-details-marker{display:none}
.ve-faq .faq-item summary:hover{padding-left:1.4rem}
.ve-faq .faq-item .qnum{font:400 1.3rem "Cormorant Garamond";color:#727272;letter-spacing:.2em;min-width:4.8rem;padding-top:.2rem}
.ve-faq .faq-item .qtext{flex:1;font:400 1.6rem "Noto Serif JP";letter-spacing:.06em;line-height:1.7;color:#1d1d1b}
.ve-faq .faq-item .faq-plus{position:relative;width:1.8rem;height:1.8rem;flex-shrink:0;margin-top:.8rem}
.ve-faq .faq-item .faq-plus::before,.ve-faq .faq-item .faq-plus::after{content:"";position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);background:#1d1d1b}
.ve-faq .faq-item .faq-plus::before{width:1.8rem;height:1px}
.ve-faq .faq-item .faq-plus::after{width:1px;height:1.8rem;transition:transform .35s}
.ve-faq .faq-item[open] .faq-plus::after{transform:translate(-50%,-50%) scaleY(0)}
.ve-faq .faq-item .faq-a{padding:0 .8rem 0 8rem}
.ve-faq .faq-item[open] .faq-a{padding-bottom:3.2rem}
.ve-faq .faq-item .faq-a p{font:300 1.4rem/2.1 "Noto Serif JP";color:#727272;letter-spacing:.05em}
@media screen and (max-width:768px){
  .ve-faq{padding:6rem 2rem}
  .ve-faq .faq-item .faq-a{padding-left:6.4rem}
  .ve-faq .faq-item .qtext{font-size:1.4rem}
}

/* ===== VE寄せ: 回転テキストサークル (260528 REWEB) ===== */
.ve-circle-sec{background:#fafaf8;padding:9rem 2.4rem;display:flex;align-items:center;justify-content:center}
.ve-circle{position:relative;width:46rem;height:46rem;max-width:90vw}
.ve-ring{position:absolute;inset:0;margin:auto}
.ve-ring span{position:absolute;left:50%;top:50%;font-size:1rem;letter-spacing:.18em;color:rgba(29,29,27,.55);font-family:"Cormorant Garamond"}
@keyframes ve-spinA{from{transform:rotate(0)}to{transform:rotate(360deg)}}
@keyframes ve-spinB{from{transform:rotate(360deg)}to{transform:rotate(0)}}
.ve-r1{animation:ve-spinA 80s linear infinite;width:46rem;height:46rem}
.ve-r2{animation:ve-spinB 64s linear infinite;width:38rem;height:38rem}
.ve-r3{animation:ve-spinA 50s linear infinite;width:30rem;height:30rem}
.ve-circle-center{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;text-align:center;font-family:"Cormorant Garamond";font-size:1.3rem;letter-spacing:.4em;color:rgba(29,29,27,.78);line-height:1.7;font-weight:500}
.ve-circle-center small{display:block;font-size:.9rem;letter-spacing:.35em;font-weight:400;color:#727272;margin-top:.8rem}
@media (prefers-reduced-motion:reduce){.ve-r1,.ve-r2,.ve-r3{animation:none}}
@media screen and (max-width:768px){.ve-circle{width:32rem;height:32rem}.ve-r1{width:34rem;height:34rem}.ve-r2{width:28rem;height:28rem}.ve-r3{width:22rem;height:22rem}.ve-ring span{font-size:.9rem;letter-spacing:.12em}}

/* VIEW MOREボタンとサークルの間に40px (260528 REWEB) */
.index_service .ve-circle-sec{margin-top:13.5rem}

/* ABOUT VE体裁化: 中央寄せ + ABOUTラベル + 大リード (260528 REWEB) */
main section.index_business .lg_contain .intro{text-align:center}
main section.index_business .lg_contain .intro h4.intro_en{display:block;font:400 1.1rem "Cormorant Garamond";letter-spacing:.45em;color:#9a9a98;margin-bottom:2.2rem;line-height:1}
main section.index_business .lg_contain .intro p.intro_ja.intro-lead{font:400 clamp(2.6rem,3vw,3.6rem)/1.5 "Noto Serif JP";letter-spacing:.12em;margin:0 auto 4.8rem;color:#1d1d1b}
main section.index_business .lg_contain .intro p.intro_ja{font:300 1.6rem/2.15 "Noto Serif JP";letter-spacing:.12em;max-width:80rem;margin:0 auto;color:rgba(29,29,27,.88)}
main section.index_business .lg_contain .intro .about-stats{justify-content:center;max-width:80rem;margin-left:auto;margin-right:auto}
main section.index_business .lg_contain .intro .about-stats .stat{text-align:center}
@media screen and (max-width:768px){
  main section.index_business .lg_contain .intro p.intro_ja.intro-lead{font-size:2.2rem;margin-bottom:3rem}
  main section.index_business .lg_contain .intro p.intro_ja{font-size:1.3rem;line-height:2.05}
}

/* ===== VE FEATURES 非対称グリッド (260528 REWEB) ===== */
main section.index_business .lg_contain .ve-features{max-width:100rem;margin:7rem auto 0;display:flex;flex-direction:column;gap:8rem;padding-bottom:2rem;text-align:left}
.ve-features figure{overflow:hidden;margin:0}
.ve-features figure img{width:100%;height:100%;object-fit:cover;display:block;transition:transform 1.2s cubic-bezier(.2,.7,.2,1)}
.ve-features figure:hover img{transform:scale(1.03)}
.ve-features .aspect-32{aspect-ratio:3/2}
.ve-features .aspect-43{aspect-ratio:4/3}
.ve-features .aspect-34{aspect-ratio:3/4}
.ve-features .feat,.ve-features .feat-2,.ve-features .feat-3{display:grid;grid-template-columns:repeat(12,1fr);gap:2.8rem;align-items:end}
.ve-features .feat .col-7{grid-column:span 7}
.ve-features .feat .col-5{grid-column:span 5;padding-left:2rem}
.ve-features .feat .col-5-start6{grid-column:6 / span 7;margin-top:-7.2rem;padding-left:4.8rem}
.ve-features .feat-2 .col-5{grid-column:span 5;padding-right:.8rem}
.ve-features .feat-2 .col-4{grid-column:7 / span 4}
.ve-features .feat-3 .col-5{grid-column:1 / span 5;padding-right:2rem}
.ve-features .feat-3 .col-7{grid-column:6 / span 7}
.ve-features .feat-3 .col-5-end{grid-column:1 / span 7;margin-top:-7.2rem;padding-right:4.8rem}
.ve-features .col-5 .tp_e{display:inline-block;margin:0 0 1rem}
.ve-features .col-5 .tp_ja{margin:0 0 1.4rem}
.ve-features .col-5 .tc_ja{max-width:none;width:auto;float:none;margin:0}
.ve-features .col-5 .tc_ja + .tc_ja{margin-top:1.8rem}
@media screen and (max-width:768px){
  main section.index_business .lg_contain .ve-features{gap:4rem;margin-top:4rem}
  .ve-features .feat,.ve-features .feat-2,.ve-features .feat-3{grid-template-columns:1fr;gap:2rem}
  .ve-features .feat .col-7,.ve-features .feat .col-5,.ve-features .feat .col-5-start6,.ve-features .feat-2 .col-5,.ve-features .feat-2 .col-4,.ve-features .feat-3 .col-5,.ve-features .feat-3 .col-7,.ve-features .feat-3 .col-5-end{grid-column:1/-1;margin:0;padding:0}
}

/* FEATURE 重なり解消: 上詰め + オフセット画像の負マージン撤廃 (260528 REWEB) */
.ve-features .feat,.ve-features .feat-2,.ve-features .feat-3{align-items:start}
.ve-features .feat .col-5-start6{margin-top:4rem;padding-left:4.8rem}
.ve-features .feat-3 .col-5-end{margin-top:4rem;padding-right:4.8rem}
.ve-features .col-5{align-self:start}

/* FEATURE サービス詳細リンクを下線リンク化 + VEホバーモーション (260528 REWEB) */
.ve-features .col-5 p.tc_ja[style*="border-radius:99px"]{background:none !important;border-radius:0 !important;padding:0 !important;margin-top:2rem !important}
.ve-features .col-5 p.tc_ja[style*="border-radius:99px"] span{color:inherit !important}
.ve-features .col-5 p.tc_ja[style*="border-radius:99px"] a{display:inline-block !important;width:auto !important;padding:0 0 .4rem !important;font:500 1.2rem "Noto Sans JP" !important;letter-spacing:.12em !important;color:#1d1d1b !important;border-bottom:1px solid rgba(29,29,27,.5) !important;text-decoration:none !important;transition:letter-spacing .25s cubic-bezier(.2,.7,.2,1),opacity .2s,border-color .25s !important}
.ve-features .col-5 p.tc_ja[style*="border-radius:99px"] a:hover{letter-spacing:.2em !important;opacity:.7 !important;border-bottom-color:rgba(29,29,27,.9) !important}

/* Hero: 縦中央寄せ + SCROLLインジケーター + 動的右下メタ (260528 REWEB) */
main section.index_mainvisual .xl_contain h2{top:50% !important;transform:translateY(-50%) !important}
/* PCのみ右寄せ（端から離す）。モバイルはleft:0のまま */
@media screen and (min-width:769px){ main section.index_mainvisual .xl_contain h2{left:4rem !important} }
@media screen and (max-width:768px){ main section.index_mainvisual .xl_contain h2{top:50% !important} }
.kv__ps-a .kv-alt{display:block;font-family:"Noto Sans JP";font-size:1.1rem;letter-spacing:.08em;opacity:.85;margin-bottom:.7rem;font-weight:300}
.kv__ps-a .ve-scroll{position:absolute;left:50%;bottom:3.2rem;transform:translateX(-50%);z-index:11;display:flex;flex-direction:column;align-items:center;gap:1.2rem;color:#fff}
.kv__ps-a .ve-scroll-label{font:400 1rem "Cormorant Garamond";letter-spacing:.35em;opacity:.85}
.kv__ps-a .ve-scroll-line{display:block;width:1px;height:5.6rem;background:rgba(255,255,255,.25);position:relative;overflow:hidden}
.kv__ps-a .ve-scroll-line::after{content:"";position:absolute;inset:0;background:#fff;animation:ve-scrolldown 2.6s ease-in-out infinite;transform-origin:top}
@keyframes ve-scrolldown{0%{transform:scaleY(0);transform-origin:top}50%{transform:scaleY(1);transform-origin:top}51%{transform-origin:bottom}100%{transform:scaleY(0);transform-origin:bottom}}
@media (prefers-reduced-motion:reduce){.kv__ps-a .ve-scroll-line::after{animation:none}}
@media screen and (max-width:768px){.kv__ps-a .ve-scroll{bottom:2rem}.kv__ps-a .ve-scroll-line{height:4rem}}
