@charset "UTF-8";
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
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;
  vertical-align: baseline;
  background: transparent;
}

html {
  font-size: 10px;
}

body {
  /* プロジェクトによって変動 */
  background: linear-gradient(153deg, rgb(0, 0, 0) 0%, rgb(47, 47, 47) 100%);
  color: #FFF;
  line-height: 1.8;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  font-variant-numeric: tabular-nums;
  /* safari hover対策 */
  -webkit-font-smoothing: antialiased;
  font-size: 1.6rem;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

h1 {
  font-size: 6.4rem;
}

h2 {
  font-size: 3.2rem;
}

h3 {
  font-size: 2.4rem;
}

h4 {
  font-size: 2.4rem;
}

h5 {
  font-size: 2rem;
}

ul, ol {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  text-decoration: none;
  color: inherit;
  letter-spacing: 0.05em;
}

p {
  letter-spacing: 0.05em;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

img {
  vertical-align: bottom;
  line-height: 1;
}

button {
  line-height: 1;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

select {
  color: #333;
}

@media screen and (max-width: 650px) {
  html {
    /* 1rem = 50pxと再定義 */
    font-size: 5px;
  }
  body {
    font-size: 2.8rem;
  }
  h1 {
    font-size: 8rem;
  }
  h2 {
    font-size: 4rem;
  }
  h3 {
    font-size: 3.6rem;
  }
  h4 {
    font-size: 3.6rem;
  }
}
/* ///////////////////////////////////////




アニメーション




/////////////////////////////////////// */
.blur {
  -webkit-animation-name: blurAnime;
          animation-name: blurAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes blurAnime {
  from {
    filter: blur(30px);
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes blurAnime {
  from {
    filter: blur(30px);
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}
.blurTrigger,
.fadeUpTrigger,
.fadeRightTrigger,
.fadeLeftTrigger {
  opacity: 0;
}

.fadeLeft {
  -webkit-animation-name: fadeLeftAnime;
          animation-name: fadeLeftAnime;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeRight {
  -webkit-animation-name: fadeRightAnime;
          animation-name: fadeRightAnime;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.slideIn {
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  display: inline-block;
  -webkit-animation: textanimation 2s 0.5s forwards;
          animation: textanimation 2s 0.5s forwards;
}

@-webkit-keyframes textanimation {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  100% {
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
  }
}

@keyframes textanimation {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  100% {
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
  }
}
.fadeIn {
  opacity: 0; /* 最初は非表示 */
  -webkit-animation: fade-in 1.5s ease-in-out forwards;
          animation: fade-in 1.5s ease-in-out forwards;
  -webkit-animation-delay: 2s;
          animation-delay: 2s; /* 3秒遅らせて開始 */
}

@-webkit-keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.eachTextAnime span {
  opacity: 0;
}

.eachTextAnime.appeartext span {
  -webkit-animation: text_anime_on 0.2s ease-out forwards;
          animation: text_anime_on 0.2s ease-out forwards;
}

@-webkit-keyframes text_anime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes text_anime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* ///////////////////////////////////////

背景色・テキストカラー

/////////////////////////////////////// */
/* ///////////////////////////////////////

フォント

/////////////////////////////////////// */
/* ///////////////////////////////////////

ボーダー

/////////////////////////////////////// */
/* ///////////////////////////////////////

ボックスシャドウ

/////////////////////////////////////// */
/* ///////////////////////////////////////




共通




/////////////////////////////////////// */
body, html {
  background: linear-gradient(153deg, rgb(0, 0, 0) 0%, rgb(47, 47, 47) 100%) !important;
  width: 100%;
  min-height: 100vh; /* 100vh にすることで画面全体を覆う */
  background-repeat: no-repeat !important; /* 繰り返しを防ぐ */
  background-attachment: fixed !important; /* 背景を固定（スクロールしても動かない） */
  background-size: 100% 100% !important; /* 横幅・高さを100%に調整 */
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
body a {
  text-decoration: none;
  cursor: pointer;
}

/* ///////////////////////////////////////




画面幅




/////////////////////////////////////// */
.large_container {
  max-width: 1280px;
  width: 90%;
  margin: auto;
}

.large_container02 {
  max-width: 1320px;
  width: 90%;
  margin: auto;
}

.container {
  max-width: 1040px;
  width: 90%;
  margin: 0 auto;
}

.mid_container {
  max-width: 900px;
  width: 90%;
  margin: 0 auto;
}

.sm_container {
  max-width: 600px;
  width: 90%;
  margin: auto;
}

/* ///////////////////////////////////////




フレックス




/////////////////////////////////////// */
.fl {
  display: flex;
}

.gap_4 {
  gap: 4rem;
}

.gap_6 {
  gap: 6rem;
}

.al_center {
  align-items: center;
}

.js_sb {
  justify-content: space-between;
}

@media screen and (max-width: 980px) {
  .fl {
    flex-direction: column;
  }
  .fd_row {
    flex-direction: row !important;
  }
}
/* ///////////////////////////////////////




余白・改行




/////////////////////////////////////// */
.mt_100 {
  margin-top: 10rem;
}

.mt_60 {
  margin-top: 6rem;
}

.mt_40 {
  margin-top: 4rem;
}

.mt_24 {
  margin-top: 2.4rem;
}

.mt_16 {
  margin-top: 1.6rem;
}

.ptb_100 {
  padding: 10rem 0 10rem 0;
}

.ptb_120 {
  padding: 12rem 0 12rem 0;
}

.pb_100 {
  padding-bottom: 10rem;
}

.indent {
  text-indent: -1em !important;
  padding-left: 1em !important;
}

.center {
  text-align: center;
}

@media screen and (max-width: 650px) {
  .pc_none {
    display: inline-block;
  }
}
/* ///////////////////////////////////////

グラデーション

/////////////////////////////////////// */
.grad {
  background: linear-gradient(90deg, rgb(196, 21, 30) 0%, rgb(255, 255, 255) 48%, rgb(255, 255, 255) 48%, rgb(232, 216, 124) 100%);
  padding: 1px;
}

/* ///////////////////////////////////////




ボタン



/////////////////////////////////////// */
.btn {
  width: 200px;
  height: 45px;
  line-height: 1.7;
  border-radius: 999px;
  text-align: center;
  display: inline-block;
  font-weight: 700;
}
.btn a {
  background-color: #1B1B1B;
  display: inline-block;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  line-height: 2.6;
  position: relative;
  overflow: hidden;
  z-index: 2;
  transition-duration: 0.2s;
}
.btn a::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 10px;
  background-image: url(../images/btn_arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 10px;
}
.btn a::before {
  background: #fff;
  border-radius: 999px;
  content: "";
  display: block;
  margin: auto;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  padding-top: 100%;
  height: 0;
  z-index: -1;
  transform: translateY(-50%) scale(0.1);
  transition: opacity 0.5s, transform 0s;
  transition-delay: 0s, 0.2s;
}
.btn:hover a {
  color: #1B1B1B;
}
.btn:hover a::before {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
  transition-delay: 0s;
  transition: opacity 0.8s, transform 0.5s ease-in-out;
}
.btn:hover a::after {
  background-image: url(../images/btn_arrow_bl.png);
}

.btn_circle {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  transition: 0.2s;
}
.btn_circle a {
  display: inline-block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #1B1B1B;
  position: relative;
  overflow: hidden;
  z-index: 2;
  transition-duration: 0.2s;
}
.btn_circle a::before {
  background: #fff;
  border-radius: 999px;
  content: "";
  display: block;
  margin: auto;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  padding-top: 100%;
  height: 0;
  z-index: -1;
  transform: translateY(-50%) scale(0.1);
  transition: opacity 0.5s, transform 0s;
  transition-delay: 0s, 0.2s;
}
.btn_circle a::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 10px;
  background-image: url(../images/btn_arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.btn_circle:hover {
  transform: scale(0.9);
}
.btn_circle:hover a {
  color: #1B1B1B;
}
.btn_circle:hover a::before {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
  transition-delay: 0s;
  transition: opacity 0.8s, transform 0.5s ease-in-out;
}
.btn_circle:hover a::after {
  background-image: url(../images/btn_arrow_bl.png);
}

/* ///////////////////////////////////////

記事ページ戻るボタン

/////////////////////////////////////// */
.return {
  display: block;
  margin: 8rem auto 0 auto;
}
.return .btn {
  color: #fff;
}

@media screen and (max-width: 650px) {
  .btn {
    width: 150px;
    height: 35px;
    line-height: 2;
  }
  .btn::after {
    width: 11px;
    height: 9px;
  }
  .btn_circle {
    width: 40px;
    height: 40px;
  }
  .btn_circle::after {
    width: 10px;
    height: 4px;
  }
}
/* ///////////////////////////////////////




コンテンツのタイトル




/////////////////////////////////////// */
.con_ttl {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: nowrap;
}
.con_ttl h2 {
  font-size: 10rem;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  line-height: 1;
  position: relative;
  left: -2rem;
}
.con_ttl h2::before {
  content: "";
  display: inline-block;
  height: 13px;
  width: 13px;
  background-image: url(../images/star.png);
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 5px;
  vertical-align: middle;
}
.con_ttl p {
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
  font-weight: 700;
  line-height: 1;
  font-size: 1.8rem;
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
}
.con_ttl > div {
  width: 1px;
  height: 85px;
  background-color: #FFFFFF;
}

.con_ttl02 {
  text-align: center;
}
.con_ttl02 h2 {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  line-height: 1;
  font-size: 10rem;
}
.con_ttl02 p {
  font-size: 2.4rem;
  font-weight: 700;
  border-top: 1px solid #fff;
  display: inline-block;
  margin-top: 10px;
  padding-top: 10px;
}

@media screen and (max-width: 650px) {
  .con_ttl {
    gap: 2rem;
  }
  .con_ttl h2 {
    font-size: clamp(8rem, 14.87vw, 11.6rem);
    left: -20px;
  }
  .con_ttl p {
    font-size: 12px;
  }
  .con_ttl span {
    height: 50px;
  }
  .con_ttl > div {
    height: 50px;
  }
  .con_ttl02 h2 {
    font-size: 11.2rem;
  }
  .con_ttl02 p {
    font-size: 3.2rem;
    margin-top: 10px;
  }
  .con_ttl_mid h2 {
    font-size: clamp(6rem, 12vw, 11.2em);
  }
} /* ///////////////////////////////////////




コンタクトエリア




/////////////////////////////////////// */
.cta {
  background-color: #1B1B1B;
  padding-bottom: 0;
}
.cta a {
  width: 100px;
  height: 100px;
  transition: 0.5s;
}
.cta a img {
  width: 100%;
  height: 100%;
}
.cta a:hover {
  transform: scale(0.9);
}

.cta_bg {
  background-image: url(../images/cta_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  max-width: 1320px;
  width: 90%;
  margin: auto;
}
.cta_bg .container {
  max-width: 1100px;
}

.cta_wrap {
  justify-content: space-between;
  display: flex;
  align-items: center;
}
.cta_wrap > div {
  width: 60%;
}

@media screen and (max-width: 980px) {
  .cta_wrap {
    flex-direction: column;
    gap: 4rem;
  }
  .cta_wrap > div {
    width: 100%;
  }
  .cta a {
    width: 100px;
    height: 100px;
    align-self: flex-end;
  }
}
@media screen and (max-width: 650px) {
  .cta a {
    width: 50px;
    height: 50px;
  }
} /* ///////////////////////////////////////




フッター




/////////////////////////////////////// */
footer {
  background-color: #1B1B1B;
}

.footer_wrap {
  padding: 10rem 0 6rem 0;
  justify-content: space-between;
}
.footer_wrap dl dt,
.footer_wrap dl dd {
  font-size: 1.4rem;
}
.footer_wrap dl dt {
  font-weight: 700;
}
.footer_wrap .footer_info {
  width: 40%;
}

.footer_wrap .logo {
  width: 210px;
  display: inline-block;
}
.footer_wrap .logo img {
  width: 100%;
}

.footer_menu {
  width: 50%;
}

.footer_menu ul.menu {
  display: flex;
  flex-wrap: wrap;
  gap: 2.4rem;
  flex: 1;
}
.footer_menu ul.menu li {
  font-size: 14px;
  font-weight: 500;
  transition: 0.5s;
}

.footer_menu .menu li *:not(.sub-menu):not(.sub-menu *):hover {
  text-decoration: underline;
}

.footer_menu ul.sub-menu {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.footer_menu ul.sub-menu li {
  font-size: 12px;
  font-weight: 400;
}
.footer_menu ul.sub-menu li::before {
  content: "-";
}
.footer_menu ul.sub-menu li:hover {
  opacity: 0.6;
}

.copy {
  font-size: 12px;
  text-align: center;
  padding: 2rem 0 2rem 0;
  border-top: 1px solid #fff;
}

@media screen and (max-width: 1200px) {
  .footer_wrap {
    flex-direction: column;
    gap: 4rem;
  }
  .footer_wrap .footer_info {
    width: 100%;
  }
  .footer_menu {
    width: 100%;
  }
  .footer_menu li:last-child {
    width: 100%;
  }
  .footer_menu .sub-menu li {
    width: auto;
  }
  .footer_menu ul.sub-menu {
    margin-top: 10px;
  }
}
@media screen and (max-width: 650px) {
  .footer_wrap dl dt, .footer_wrap dl dd {
    font-size: 12px;
  }
  .footer_wrap {
    gap: 6rem;
  }
  .footer_wrap dl {
    margin-top: 24px;
  }
  .footer_menu ul.menu {
    gap: 4rem;
    row-gap: 4.4rem;
  }
  .copy {
    font-size: 2rem;
  }
}
/* ///////////////////////////////////////




メインビジュアル




/////////////////////////////////////// */
.mv_wrap {
  position: relative;
  height: 750px;
  overflow: hidden;
}

.video {
  position: relative;
  width: 100%;
  height: 100%;
}
.video::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(70, 70, 70, 0.5);
  background-image: radial-gradient(rgba(255, 255, 255, 0.1) 20%, transparent 20%), radial-gradient(rgba(255, 255, 255, 0.1) 20%, transparent 20%);
  background-size: 12px 12px;
  background-position: 0 0, 6px 6px;
}

video {
  position: absolute;
  width: 100vw; /* 画面の横幅いっぱいに広げる */
  height: 100%; /* 画面の高さいっぱいに広げる */
  -o-object-fit: cover;
     object-fit: cover; /* 縦横比を維持しつつ、はみ出てもカバー */
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.lead_wrap {
  position: absolute;
  width: 100%;
  bottom: 11rem;
  left: 10rem;
  z-index: 0;
}
.lead_wrap br.pc_none {
  display: none;
}

.lead_wrap h1 {
  font-family: "Barlow", sans-serif;
  font-size: clamp(5rem, 4.44vw, 6.4rem);
  line-height: 1.2;
}

.lead_wrap p {
  font-size: clamp(3.2rem, 2.77vw, 4rem);
  font-weight: 700;
  line-height: 1.4;
  margin-top: 2.4rem;
}

/* ///////////////////////////////////////




企業紹介




/////////////////////////////////////// */
.ourBusiness {
  padding-top: 15rem;
  position: relative;
  z-index: 0;
}
.ourBusiness::before {
  content: "OUR BUSINESS";
  background: linear-gradient(180deg, #121212 0%, #414141 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(8rem, 11.5vw, 22rem);
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0;
  position: absolute;
  top: 0;
  line-height: 1;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index: -1;
}

.ourBusiness .fl {
  align-items: center;
}
.ourBusiness .fl p {
  line-height: 2.4;
}
.ourBusiness .fl .txt_wrap {
  flex: 1;
}

.hexagon_container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 520px;
  height: 540px;
  overflow: hidden;
}

/* 六角形の基本スタイル */
.hexagon {
  position: absolute;
  width: 200px;
  height: auto;
  opacity: 0; /* 初期状態で非表示 */
  transform: scale(0.5); /* 小さくしておく */
  transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

.hexagon img {
  width: 100%;
  height: auto;
}

/* 中央の六角形（最初から表示） */
.center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
  z-index: 2;
}

/* 初期状態: `center` の位置に配置 */
#hex1, #hex2, #hex3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
}

/* ///////////////////////////////////////




事業紹介 Service




/////////////////////////////////////// */
.top_service {
  background-color: #1B1B1B;
}

.top_service .fl .wrap_sp {
  display: contents;
}

.top_service .fl .wrap_pc {
  margin-left: 4rem;
  margin-right: 6rem;
}

.top_service .fl {
  align-items: center;
}
.top_service .fl img {
  width: 20%;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.top_service .fl .txt {
  margin-top: 3rem;
}
.top_service .fl .service_name p {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 2rem;
}
.top_service .fl .service_name h3 {
  font-size: 2.4rem;
  line-height: 1.2;
  margin-top: 5px;
}

.top_service_item {
  padding-bottom: 6rem;
  border-bottom: 1px solid #fff;
}

.top_service_item .cat {
  gap: 2.2rem;
  flex-wrap: wrap;
}
.top_service_item .cat li {
  width: calc((100% - 8.8rem) / 5);
  background-color: #050505;
  font-weight: 700;
  height: 50px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ///////////////////////////////////////




News




/////////////////////////////////////// */
.news .fl {
  justify-content: space-between;
  align-items: center;
}

.news .sp {
  display: none;
}

.news_list .date {
  text-align: center;
}
.news_list .date p {
  font-family: "Barlow", sans-serif;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.2;
}
.news_list .date .fl p {
  font-size: 12px;
}
.news_list .date .day {
  margin: auto;
}

.news_list {
  flex: 1;
  gap: 2rem;
  background-color: #050505;
  padding: 2.5rem 2rem 2.5rem 2rem;
  box-sizing: border-box;
  position: relative;
  transition: 0.5s;
  overflow: hidden;
  z-index: 0;
}
.news_list::before {
  display: block;
  content: "";
  position: absolute;
  inset: 0;
  background-color: #2B2B2B;
  transition: transform 0.6s ease;
  transform: scaleX(0);
  transform-origin: right;
  z-index: -1;
}
.news_list:not(:first-of-type) {
  margin-top: 2.4rem;
}
.news_list a {
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  z-index: 1;
}
.news_list:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.news_list .sp {
  display: contents;
}

.news_list h3 {
  font-size: 1.6rem;
  flex: 1;
  font-weight: 700;
  margin-top: 10px;
}

.news_list .cat {
  font-size: 12px;
  background-color: #1F1F1F;
  border-radius: 999px;
  font-weight: 500;
  padding: 0 10px 0 10px;
}

@media screen and (max-width: 980px) {
  /* ///////////////////////////////////////




  メインビジュアル




  /////////////////////////////////////// */
  .lead_wrap h1 {
    font-size: clamp(4rem, 5.1vw, 5rem);
  }
  .lead_wrap p {
    font-size: clamp(2.4rem, 3.26vw, 3.2rem);
  }
  .lead_wrap {
    left: 5rem;
  }
  .ourBusiness .fl {
    flex-direction: column-reverse;
  }
  .ourBusiness .fl .txt_wrap {
    width: 100%;
  }
  /* ///////////////////////////////////////




  企業紹介




  /////////////////////////////////////// */
  .ourBusiness .fl {
    flex-direction: column-reverse;
  }
  /* ///////////////////////////////////////




  事業紹介 Service




  /////////////////////////////////////// */
  .top_service .fl .wrap_sp {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: center;
  }
  .top_service .fl .wrap_pc {
    display: contents;
  }
  .top_service .fl .service_name {
    flex: 1;
  }
  .top_service .fl .txt {
    margin-top: 0;
  }
  .top_service .btn_circle {
    margin: 2rem 0 0 auto;
  }
  .top_service_item .cat {
    gap: 2rem;
    flex-direction: row;
  }
  .top_service_item .cat li {
    width: calc((100% - 4rem) / 3);
  }
  /* ///////////////////////////////////////




  News




  /////////////////////////////////////// */
  .news .fl {
    width: 100%;
    align-items: flex-start;
  }
  .news .fl .btn {
    display: none;
  }
  .news .btn.sp {
    display: block;
  }
  .news_listWrap {
    width: 100%;
  }
  .news_list {
    width: 100%;
    flex-direction: row;
    justify-content: flex-start;
    gap: 20px;
  }
  .news_list .cat {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0 10px 0 10px;
  }
  .news_list .date .fl {
    flex-direction: row;
  }
  .news_list .sp {
    display: block;
    flex: 1;
  }
}
@media screen and (max-width: 650px) {
  /* ///////////////////////////////////////




  メインビジュアル




  /////////////////////////////////////// */
  .mv_wrap {
    height: 640px;
  }
  .lead_wrap {
    left: 4rem;
    bottom: 10rem;
  }
  .lead_wrap br.pc_none {
    display: block;
  }
  .lead_wrap h1 {
    font-size: clamp(6rem, 10.25vw, 8rem);
  }
  .lead_wrap p {
    font-size: clamp(4rem, 6.15vw, 4.8rem);
    margin-top: 4rem;
  }
  /* ///////////////////////////////////////




  企業紹介




  /////////////////////////////////////// */
  .ourBusiness::before {
    font-size: clamp(6rem, 14.3vw, 17rem);
  }
  .ourBusiness .fl h2 {
    font-size: 4.8rem;
  }
  .hexagon_container {
    width: 100%;
    min-height: 350px;
    height: auto;
    max-width: 400px;
    overflow: visible;
  }
  .hexagon {
    width: clamp(115px, 36.9vw, 160px);
  }
  /* ///////////////////////////////////////




  事業紹介 Service




  /////////////////////////////////////// */
  .top_service .fl img {
    width: 100px;
    height: auto;
  }
  .top_service .fl .txt {
    margin-top: 0;
  }
  .top_service .btn_circle {
    margin: 2rem 0 0 auto;
  }
  .top_service .fl .service_name p {
    font-size: 2.8rem;
  }
  .top_service .fl .service_name h3 {
    font-size: 3.6rem;
  }
  .top_service_item .cat {
    flex-direction: row;
  }
  .top_service_item .cat li {
    width: calc((100% - 2rem) / 2);
  }
  /* ///////////////////////////////////////




  News




  /////////////////////////////////////// */
  .news_list {
    padding: 3rem;
  }
  .news_list h3 {
    font-size: 2.8rem;
  }
  .news_list .date .fl p {
    font-size: 10px;
  }
  .news_list .date .day {
    font-size: 4rem;
  }
}
/* ///////////////////////////////////////




ヘッダー




/////////////////////////////////////// */
.global_nav {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index: 999;
  box-sizing: border-box;
  position: fixed;
  box-shadow: 10px 10px 20px 0px rgba(51, 51, 51, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  width: 95%;
  border-bottom: 1px solid #FFF;
  padding: 15px 0 15px 0;
}
.global_nav .logo {
  width: 230px;
  display: inline-block;
}
.global_nav .logo img {
  width: 100%;
  height: auto;
}

.pc_menu .menu {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  justify-content: flex-end;
}
.pc_menu .menu > li {
  transition: 0.5s;
  font-weight: 500;
}
.pc_menu .menu > li:not(:last-child):hover {
  opacity: 0.6;
}

.pc_menu .drop {
  position: relative;
}
.pc_menu .drop::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  width: 8px;
  height: 8px;
  border: 1px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
  margin-left: 5px;
}
.pc_menu .drop:hover {
  opacity: 1 !important;
}

.pc_menu .sub-menu {
  background-color: #292929;
  background-color: rgba(27, 27, 27, 0.8);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 250px;
  box-sizing: border-box;
  gap: 0;
  padding: 2.5rem;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
.pc_menu .sub-menu li {
  font-size: 1.4rem;
  transition: 0.5s;
  padding: 2.4rem 0 1rem 0;
  border-bottom: 1px solid #fff;
  line-height: 1.4;
}
.pc_menu .sub-menu li:first-child {
  padding-top: 0;
}
.pc_menu .sub-menu li span {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  font-family: "Barlow", sans-serif;
  margin-bottom: 5px;
}
.pc_menu .sub-menu li:hover {
  opacity: 0.6;
}

.pc_menu .sub-menu.js_active {
  visibility: visible;
  opacity: 1;
}

.menu .cta_btn {
  background: linear-gradient(90deg, rgb(196, 21, 30) 0%, rgb(255, 255, 255) 48%, rgb(255, 255, 255) 48%, rgb(232, 216, 124) 100%);
  padding: 1px;
  width: 180px;
  height: 40px;
  border-radius: 999px;
  text-align: center;
}
.menu .cta_btn a {
  background-color: #1B1B1B;
  border-radius: 999px;
  display: inline-block;
  width: 100%;
  height: 100%;
  line-height: 2.4;
  position: relative;
  overflow: hidden;
  z-index: 2;
  transition-duration: 0.2s;
}
.menu .cta_btn a::after {
  background: #fff;
  border-radius: 50%;
  content: "";
  display: block;
  margin: auto;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  padding-top: 100%;
  height: 0;
  z-index: -1;
  transform: translateY(-50%) scale(0.1);
  transition: opacity 0.5s, transform 0s;
  transition-delay: 0s, 0.2s;
}
.menu .cta_btn:hover a {
  color: #1B1B1B;
}
.menu .cta_btn:hover a::after {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
  transition-delay: 0s;
  transition: opacity 0.8s, transform 0.5s ease-in-out;
}

.sp_menu {
  display: none;
}

.nav_toggle_wrap {
  display: none;
}

@media screen and (max-width: 980px) {
  /* ///////////////////////////////////////




  ヘッダー




  /////////////////////////////////////// */
  .pc_menu {
    display: none;
  }
  .logo {
    width: 150px;
  }
  .global_nav.show {
    border: none;
  }
  .sp_menu {
    position: fixed;
    z-index: 997;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1B1B1B;
    background-size: cover;
    background-repeat: no-repeat;
    box-sizing: border-box;
    padding: 15rem 6rem 0 6rem;
    border-radius: 0 0 5px 5px;
  }
  .sp_menu.show {
    display: block;
    -webkit-animation: fade-in 0.5s;
            animation: fade-in 0.5s;
  }
  @-webkit-keyframes fade-in {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 0.8;
    }
  }
  @keyframes fade-in {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 0.8;
    }
  }
  .global_nav {
    padding: 2rem 0 2rem 0;
  }
  /* ハンバーガーメニュー３本線 */
  .nav_toggle_wrap {
    display: block;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    top: 20px;
    right: 0;
    z-index: 999;
  }
  .nav_toggle {
    width: 100%;
    height: 100%;
    background-color: #292929;
    border-radius: 50%;
  }
  .nav_toggle i {
    display: block;
    width: 15px;
    height: 1px;
    background-color: #FFFFFF;
    position: absolute;
    transition: transform 0.5s, opacity 0.5s;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
  .nav_toggle i:nth-child(1) {
    top: 16px;
  }
  .nav_toggle i:nth-child(2) {
    top: 50%;
  }
  .nav_toggle i:nth-child(3) {
    bottom: 16px;
  }
  /* .showクラスがついた時の挙動 */
  .nav_toggle.show i:nth-child(1) {
    transform: translateY(6px) rotate(-45deg);
    top: 16px;
    left: 16px;
  }
  .nav_toggle.show i:nth-child(2) {
    display: none;
  }
  .nav_toggle.show i:nth-child(3) {
    transform: translateY(-5px) rotate(45deg);
    bottom: 19px;
    left: 16px;
  }
  .sp_menu .menu li {
    transition: 0.5s;
  }
  .sp_menu .menu li:hover {
    text-decoration: underline;
  }
  .sp_menu .menu > li {
    font-weight: 500;
  }
  .sp_menu .menu > li:not(:first-child) {
    margin-top: 32px;
  }
  .sp_menu .sub-menu {
    margin-top: 16px;
  }
  .sp_menu .sub-menu li {
    font-size: 14px;
  }
  .sp_menu .sub-menu li::before {
    content: "";
    display: inline-block;
    background-color: #FFFFFF;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    margin-right: 5px;
    vertical-align: middle;
  }
  .sp_menu .sub-menu li:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
  .sp_menu .sub-menu li:not(:first-child) {
    margin-top: 10px;
  }
}
@media screen and (max-width: 650px) {
  /* ///////////////////////////////////////




  ヘッダー




  /////////////////////////////////////// */
  .sp_menu.show {
    padding: 20rem 8rem 0 8rem;
  }
  .global_nav .logo {
    width: 150px;
  }
  .nav_toggle_wrap {
    width: 30px;
    height: 30px;
    top: 7px;
  }
  .nav_toggle i {
    width: 12px;
  }
  .nav_toggle i:nth-child(1) {
    top: 11px;
  }
  .nav_toggle i:nth-child(3) {
    bottom: 10px;
  }
  .nav_toggle.show i:nth-child(1) {
    transform: translateY(6px) rotate(-45deg);
    top: 9px;
    left: 10px;
  }
  .nav_toggle.show i:nth-child(3) {
    transform: translateY(-5px) rotate(45deg);
    bottom: 11px;
    left: 10px;
  }
  .sp_menu .sub-menu li {
    font-size: 12px;
  }
}
/* ///////////////////////////////////////


下層ページタイトル


/////////////////////////////////////// */
.page_mv {
  position: relative;
  padding-top: 10rem;
  background-color: #1B1B1B;
}

.page_mv h1 {
  font-size: clamp(20rem, 18vw, 30rem);
  font-weight: 700;
  line-height: 1.2;
  background: linear-gradient(180deg, #414141 0%, #414141 30%, #121212 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page_mv .catch p {
  font-family: "Barlow", sans-serif;
  position: absolute;
  bottom: 0;
  left: 10rem;
  font-weight: 700;
  font-size: 3.2rem;
  z-index: 1;
}

.page_mv .catch .container {
  max-width: 1100px;
  width: 90%;
  position: absolute;
  left: 10rem;
  bottom: 0;
}
.page_mv .catch .container p {
  position: static;
}
.page_mv .catch .container .page_lead {
  font-size: 1.6rem;
  font-weight: 400;
}

.page_child {
  padding-bottom: 10rem;
}
.page_child h1 {
  position: relative;
}
.page_child .catch .container {
  left: 5%;
  top: 50%;
}

/* ///////////////////////////////////////


記事ページ MV


/////////////////////////////////////// */
.post_wrap > .page_mv {
  padding-bottom: 6rem;
}
.post_wrap > .page_mv .catch p {
  bottom: 10%;
}

@media screen and (max-width: 980px) {
  .page_mv h1 {
    font-size: clamp(13rem, 14vw, 20rem);
  }
}
@media screen and (max-width: 650px) {
  .page_mv {
    padding-top: 14rem;
  }
  .page_mv h1 {
    font-size: clamp(13rem, 20vw, 9rem);
  }
  .page_mv .catch p {
    font-size: 3.6rem;
    left: 4rem;
  }
  .page_mv .catch .container .page_lead {
    font-size: 2.8rem;
  }
  .page_child {
    padding-bottom: 20rem;
  }
}
/* ///////////////////////////////////////




一覧ページ




/////////////////////////////////////// */
.nav-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

a.page-numbers {
  box-sizing: border-box;
  border: 1px solid #fff;
  border-radius: 50%;
  font-weight: 700;
  font-family: "Barlow", sans-serif;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 2.3;
  transition: 0.5s;
}
a.page-numbers:hover {
  transform: scale(0.9);
}

span.page-numbers.current {
  background-color: #fff;
  border-radius: 50%;
  font-weight: 700;
  font-family: "Barlow", sans-serif;
  color: #151515;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 2.3;
}

.prev,
.next {
  width: 78px !important;
  border-radius: 999px !important;
  font-size: 1.4rem;
  line-height: 2.7 !important;
}

/* ///////////////////////////////////////




記事ページ




/////////////////////////////////////// */
.news_post {
  padding-bottom: 10rem;
  background-color: #fff;
  color: #151515;
}
.news_post .center {
  margin-top: 10rem;
}
.news_post .post_title {
  font-size: 2.4rem;
  margin-top: 1.6rem;
}
.news_post .news_head {
  gap: 10px;
}
.news_post .news_head .date {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
}
.news_post .news_head .cat {
  background-color: #151515;
  color: white;
  border-radius: 999px;
  height: 25px;
  padding: 0 10px;
  font-size: 1.4rem;
}

.news_content h2 {
  font-size: 2.4rem;
  padding-bottom: 1.6rem;
  margin-bottom: 2.4rem;
  border-bottom: 1px solid;
  -o-border-image: linear-gradient(to right, #C4151E 0%, #FFFFFF 51%, #E8D87C 100%);
     border-image: linear-gradient(to right, #C4151E 0%, #FFFFFF 51%, #E8D87C 100%);
  border-image-slice: 1;
}
.news_content p:not(:last-child) {
  margin-bottom: 2.4rem;
}
.news_content h3 {
  border-bottom: 3px solid #D9D9D9;
  margin-bottom: 2.4rem;
  padding-bottom: 1.2rem;
  font-size: 1.8rem;
}
.news_content h4, .news_content h5, .news_content h6 {
  margin-bottom: 2.4rem;
  font-size: 1.6rem;
  text-indent: -1em;
  padding-left: 1em;
}
.news_content h4::before, .news_content h5::before, .news_content h6::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  vertical-align: middle;
  margin-right: 5px;
  background: linear-gradient(120deg, rgb(196, 21, 30) 10%, rgb(232, 216, 124) 90%);
  border-radius: 50%;
  position: relative;
}
.news_content img {
  width: 100%;
  height: auto;
  margin-bottom: 4rem;
}

@media screen and (max-width: 650px) {
  /* ///////////////////////////////////////




  一覧ページ




  /////////////////////////////////////// */
  .nav-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
  }
  a.page-numbers {
    width: 30px;
    height: 30px;
    line-height: 1.9;
  }
  span.page-numbers.current {
    width: 30px;
    height: 30px;
    line-height: 1.9;
  }
  .prev,
.next {
    width: 60px !important;
    font-size: 2.4rem;
    line-height: 2.3 !important;
  }
  /* ///////////////////////////////////////




  記事ページ




  /////////////////////////////////////// */
  .news_post .post_title {
    font-size: 4rem;
  }
  .news_post .news_head .cat {
    height: 20px;
    font-size: 2.4rem;
    line-height: 1.6;
  }
  .news_post .news_head .date {
    font-size: 2.4rem;
  }
  .news_content h2 {
    font-size: 3.6rem;
    padding-bottom: 2rem;
  }
  .news_content h3 {
    font-size: 3.2rem;
    padding-bottom: 2rem;
  }
  .news_content h4, .news_content h5, .news_content h6 {
    font-size: 3.2rem;
    padding-bottom: 2rem;
  }
}
/* ///////////////////////////////////////




Value




/////////////////////////////////////// */
.value_list {
  gap: 2.5rem;
}

.value_list .item {
  width: calc((100% - 5rem) / 3);
  background: linear-gradient(90deg, rgba(196, 21, 30, 0.1) 0%, rgba(255, 255, 255, 0.1) 59%, rgba(232, 216, 124, 0.1) 100%);
  box-sizing: border-box;
  padding: 4rem 2rem 4rem 2rem;
  text-align: center;
  border: 1px solid;
  -o-border-image: linear-gradient(to right, #C4151E, #FFFFFF, #E8D87C) 1;
     border-image: linear-gradient(to right, #C4151E, #FFFFFF, #E8D87C) 1;
}
.value_list .item h3 {
  font-size: 2.4rem;
}

/* ///////////////////////////////////////




Message




/////////////////////////////////////// */
/* ///////////////////////////////////////




Message




/////////////////////////////////////// */
.message {
  overflow: hidden;
}
.message img {
  height: auto;
  width: 70vw;
  margin-left: calc(50% - 50vw);
}

.message_wrap {
  gap: 4rem;
  align-items: center;
}
.message_wrap h3 {
  font-size: 3.2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.message_wrap .txt_wrap {
  flex: 1;
}
.message_wrap .txt_wrap .txt {
  line-height: 2;
}
.message_wrap .name {
  text-align: right;
  margin-top: 2.4rem;
}
.message_wrap .name span {
  font-size: 2.4rem;
}

/* ///////////////////////////////////////




Company Info




/////////////////////////////////////// */
.company_info {
  background-color: #1B1B1B;
}

.company_info .child {
  width: 85%;
}

.company_info dl dt {
  width: 15%;
  font-weight: 700;
}

.company_info dl dd {
  width: 100%;
}

.company_info dl > div {
  padding: 4rem 0 2.4rem 0;
  gap: 0;
}
.company_info dl > div:first-of-type {
  padding-top: 0;
}
.company_info dl > div:last-of-type {
  padding-bottom: 0;
}
.company_info dl > div:not(:last-of-type) {
  border-bottom: 1px solid;
  -o-border-image: linear-gradient(to right, #C4151E 0%, #FFFFFF 51%, #E8D87C 100%);
     border-image: linear-gradient(to right, #C4151E 0%, #FFFFFF 51%, #E8D87C 100%);
  border-image-slice: 1;
}

.map iframe {
  width: 100%;
  height: 400px;
}

@media screen and (max-width: 980px) {
  /* ///////////////////////////////////////




  Value




  /////////////////////////////////////// */
  .value_list .item {
    width: 100%;
  }
  /* ///////////////////////////////////////




  Message




  /////////////////////////////////////// */
  .message img {
    width: 95vw;
  }
  .message_wrap {
    align-items: flex-start;
  }
  /* ///////////////////////////////////////




  Company Info




  /////////////////////////////////////// */
  .company_info dl > div {
    gap: 2rem;
    padding: 2.4rem 0;
  }
  .company_info .child {
    width: 100%;
  }
  .company_info dl dt {
    width: 100%;
  }
}
@media screen and (max-width: 650px) {
  /* ///////////////////////////////////////




  Value




  /////////////////////////////////////// */
  .value_list {
    gap: 4rem;
  }
  .value_list .item h3 {
    font-size: 3.6rem;
  }
  /* ///////////////////////////////////////




  Message




  /////////////////////////////////////// */
  .message_wrap h3 {
    font-size: 4rem;
  }
  .message_wrap .name span {
    font-size: 3.6rem;
  }
  /* ///////////////////////////////////////




  Company Info




  /////////////////////////////////////// */
  .map iframe {
    height: 240px;
  }
}
/* ///////////////////////////////////////




コンタクトフォーム




/////////////////////////////////////// */
.contact_form {
  padding-top: 10rem;
}

.contact_form .lead span {
  color: #C4151E;
}

.select {
  width: 100%;
  max-width: 280px;
  position: relative;
  overflow: hidden;
}
.select p {
  background-color: transparent;
}

.select::before {
  content: "";
  width: 10px;
  height: 5px;
  background-image: url(../images/arrow03.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
}

.box {
  width: 100%;
  height: 50px;
  padding: 1.5rem;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  border-color: #A5A5A5;
  background-color: #151515;
  color: #fff;
  line-height: 1;
}

.box::-ms-expand {
  display: none;
}

.contact_form {
  padding-bottom: 18rem;
}

.contact_form .must {
  color: #FF0000;
  margin-left: 2px;
  font-weight: 500;
  font-size: 10px;
  font-family: "Noto Sans JP", sans-serif;
}

.contact_form dl {
  display: flex;
}
.contact_form dl dt {
  width: 30%;
  font-weight: 500;
  font-weight: 700;
  font-family: "Barlow", sans-serif;
}
.contact_form dl dd {
  width: 70%;
  font-family: "Barlow", sans-serif;
  font-weight: 500;
}

.contact_form dl:not(:first-of-type) {
  margin-top: 4rem;
}

span.wpcf7-list-item {
  display: block;
  margin: 0;
}

input.wpcf7-form-control.wpcf7-text {
  width: 100%;
  height: 50px;
  font-size: 14px;
  box-sizing: border-box;
  padding: 1.5rem;
  background-color: #151515;
  border: 1px solid #A5A5A5;
  color: #fff;
}

textarea.wpcf7-form-control.wpcf7-textarea {
  width: 100%;
  height: 300px;
  border: 1px solid #fff;
  padding: 1.5rem;
  box-sizing: border-box;
  font-size: 1.4rem;
  font-family: "Barlow", sans-serif;
  background-color: #151515;
  color: #fff;
  border: 1px solid #A5A5A5;
}

::-moz-placeholder {
  color: #fff;
}

:-ms-input-placeholder {
  color: #fff;
}

::placeholder {
  color: #fff;
}

/* 旧Edge対応 */
::-ms-input-placeholder {
  color: #fff;
}

/* IE対応 */
:-ms-input-placeholder {
  color: #fff;
}

input:focus {
  outline: 1px solid #D2D2D2;
}

textarea:focus {
  outline: 1px solid #D2D2D2;
}

input.wpcf7-form-control.wpcf7-submit {
  height: 100%;
  width: 100%;
  font-weight: 700;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", sans-serif;
  transition: 0.5s;
  text-align: center;
  background-color: transparent;
  color: #fff;
}

.submit_btn {
  width: 280px;
  height: 50px;
  margin: 6rem auto 0 auto;
  display: block;
  overflow: hidden;
}
.submit_btn p {
  background: #1B1B1B;
  width: 100%;
  height: 100%;
  z-index: 2;
  transition-duration: 0.2s;
  position: relative;
  border-radius: 999px;
}
.submit_btn p::before {
  background: #fff;
  border-radius: 999px;
  content: "";
  display: block;
  margin: auto;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  padding-top: 100%;
  height: 0;
  z-index: -1;
  transform: translateY(-50%) scale(0.1);
  transition: opacity 0.5s, transform 0s;
  transition-delay: 0s, 0.2s;
}
.submit_btn p:hover {
  color: #1B1B1B;
}
.submit_btn p:hover::before {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
  transition-delay: 0s;
  transition: opacity 0.8s, transform 0.5s ease-in-out;
}
.submit_btn p:hover input {
  color: #1B1B1B;
}

.wpcf7-spinner {
  display: none !important;
}

.privacy_policy_box {
  height: 188px;
  width: 100%;
  padding: 2.5rem;
  box-sizing: border-box;
  overflow-y: scroll;
  margin-top: 1.6rem;
  background-color: #151515;
  border: 1px solid #A5A5A5;
}
.privacy_policy_box p {
  font-size: 1.6rem;
}
.privacy_policy_box .bold {
  font-weight: 700;
}

.margin_top {
  margin-top: 2.4rem;
}

.checkbox_wrap {
  margin-top: 2.4rem;
  display: flex;
  align-items: center;
}
.checkbox_wrap p {
  font-weight: 700;
}

.privacy_policy_box::-webkit-scrollbar {
  width: 12px;
}

.privacy_policy_box::-webkit-scrollbar-thumb {
  background: #fff;
  border-right: 3px solid transparent;
  border-left: 3px solid transparent;
  background-clip: padding-box;
  border-radius: 999px;
}

.privacy_policy_box::-webkit-scrollbar-track {
  background: transparent;
  margin-top: 10px;
  margin-bottom: 10px;
}

.privacy_policy_box ul li {
  list-style: disc;
  margin-left: 1em;
}

.checkbox_wrap span.wpcf7-list-item {
  margin: 0 0 0 0; /* 項目右側の余白設定と、デフォルトの左側の余白を打ち消す */
  position: relative;
  text-align: center;
}

.wpcf7-list-item-label {
  cursor: pointer; /* labelにhoverした時にカーソルを表示させる */
  position: relative;
  font-weight: 700;
}

.wpcf7-list-item-label {
  cursor: pointer; /* labelにhoverした時にカーソルを表示させる */
}

input[type=checkbox] {
  opacity: 0; /* デフォルトのチェックボックスを見えなくする */
  position: absolute;
}

.wpcf7-list-item-label::before {
  /* チェックボックスのデザイン */
  border: 1px solid #fff;
  content: "";
  display: inline-block;
  height: 20px;
  width: 20px;
  margin-right: 10px;
  position: relative;
  top: -9px;
  vertical-align: middle;
}

.first {
  margin-top: 0 !important;
}

input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  /* チェックアイコン */
  background: url("../images/check_box.png") no-repeat center;
  background-size: contain;
  content: "";
  height: 14px;
  left: 5px;
  position: absolute;
  top: -2px;
  width: 13px;
}

.checkbox_wrap .wpcf7-form-control-wrap {
  top: 7px;
}

@media screen and (max-width: 980px) {
  .contact_form dl {
    flex-direction: column;
    gap: 12px;
  }
  .contact_form dl dt {
    width: 100%;
  }
  .contact_form dl dd {
    width: 100%;
  }
}
@media screen and (max-width: 650px) {
  .box {
    font-size: 2.4rem;
    height: 40px;
    padding: 2rem;
  }
  .select {
    width: 240px;
  }
  .select::before {
    width: 10px;
    height: 5px;
    right: 2rem;
  }
  ::-moz-placeholder {
    font-size: 12px;
  }
  :-ms-input-placeholder {
    font-size: 12px;
  }
  ::placeholder {
    font-size: 12px;
  }
  /* 旧Edge対応 */
  ::-ms-input-placeholder {
    font-size: 12px;
  }
  /* IE対応 */
  :-ms-input-placeholder {
    font-size: 12px;
  }
  .contact_form dl:not(:first-of-type) {
    margin-top: 4rem;
  }
  .contact_form dl:last-of-type {
    margin-bottom: 4.8rem;
  }
  input.wpcf7-form-control.wpcf7-text {
    height: 40px;
    font-size: 2.8rem;
    padding: 2rem 2.6rem;
  }
  textarea.wpcf7-form-control.wpcf7-textarea {
    height: 150px;
    padding: 2rem 2.6rem;
    font-size: 2.8rem;
  }
  .privacy_policy_box {
    height: 150px;
    padding: 2rem 2.6rem;
    margin-top: 4rem;
  }
  .privacy_policy_box p {
    font-size: 2.8rem;
  }
  .checkbox_wrap {
    margin-top: 2rem;
    align-items: flex-start;
  }
  input.wpcf7-form-control.wpcf7-submit {
    font-size: 3.2rem;
    line-height: 1.9;
  }
  .submit_btn {
    width: 160px;
    height: 40px;
  }
  .checkbox_wrap .wpcf7-list-item-label::before {
    width: 15px;
    height: 15px;
  }
  input[type=checkbox]:checked + .wpcf7-list-item-label::after {
    width: 11px;
    height: 11px;
    left: 3px;
    top: -3px;
  }
}
/* ///////////////////////////////////////




SERVICE TOP




/////////////////////////////////////// */
.service_top img {
  width: 100%;
  height: auto;
}

/* ///////////////////////////////////////




Issue




/////////////////////////////////////// */
.issue {
  background-color: #1B1B1B;
}

.issue_list {
  margin-top: 8rem;
  gap: 2.5rem;
  row-gap: 4.5rem;
  flex-wrap: wrap;
}
.issue_list li {
  width: calc((100% - 5rem) / 3);
  background: linear-gradient(90deg, rgba(196, 21, 30, 0.1) 10%, rgba(255, 255, 255, 0.1) 50%, rgba(232, 216, 124, 0.1) 90%);
  box-sizing: border-box;
  padding: 3rem 0 2.5rem 0;
  text-align: center;
  font-weight: 700;
  font-size: clamp(1.8rem, 1.39vw, 2rem);
  position: relative;
}
.issue_list li::before {
  content: "";
  display: inline-block;
  background-image: url(../images/check.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.issue_list li .pc_none {
  display: none;
}

.issue .img_wrap {
  text-align: center;
}
.issue .img_wrap img {
  width: 80px;
  height: auto;
  margin: auto;
}

.issue .txt_wrap {
  text-align: center;
}
.issue .txt_wrap p {
  font-size: 2.4rem;
  font-weight: 700;
  display: inline-block;
  padding: 4rem;
  border: 1px solid;
  -o-border-image: linear-gradient(to right, #C4151E, #FFFFFF, #E8D87C) 1;
     border-image: linear-gradient(to right, #C4151E, #FFFFFF, #E8D87C) 1;
}
.issue .txt_wrap p span {
  text-decoration: underline;
}
.issue .txt_wrap p .pc_none {
  display: none;
}

@media screen and (max-width: 400px) {
  .issue {
    padding-top: 20rem;
  }
}
/* ///////////////////////////////////////




Reason




/////////////////////////////////////// */
.reason_list .reason_item {
  gap: 4rem;
  align-items: center;
}
.reason_list .reason_item img {
  width: 40%;
  height: auto;
}
.reason_list .reason_item > div {
  flex: 1;
}
.reason_list .reason_item:not(:last-of-type) {
  padding-bottom: 4rem;
  border-bottom: 1px solid #fff;
}

.reason_item h3 {
  font-size: 3.2rem;
  line-height: 1.4;
  position: relative;
}
.reason_item h3::before {
  content: "Reason01";
  background: -webkit-linear-gradient(-45deg, rgba(196, 21, 30, 0.2) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(232, 216, 124, 0.2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 5.6rem;
  font-weight: 700;
  font-family: "Barlow", sans-serif;
  position: absolute;
  top: -50%;
  left: 0;
}

.reason_list .reason_item:nth-child(2) {
  flex-direction: row-reverse;
}
.reason_list .reason_item:nth-child(2) h3::before {
  content: "Reason02";
}
.reason_list .reason_item:last-child h3::before {
  content: "Reason03";
}

/* ///////////////////////////////////////




Flow




/////////////////////////////////////// */
.flow {
  background-color: #151515;
}

.step_num {
  margin: auto;
  font-weight: 700;
  width: 60px;
  height: 60px;
  padding: 1px;
  box-sizing: border-box;
  border-radius: 50%;
  background: linear-gradient(90deg, rgb(196, 21, 30) 0%, rgb(255, 255, 255) 48%, rgb(232, 216, 124) 100%);
}
.step_num p {
  font-size: 20px;
  font-family: "Barlow", sans-serif;
  border-radius: 50%;
  background-color: #151515;
  width: 100%;
  height: 100%;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.step_num span {
  font-size: 10px;
  display: block;
}

.step_list {
  gap: 4rem;
  position: relative;
  z-index: 0;
}
.step_list::before {
  content: "";
  display: inline-block;
  height: 1px;
  width: 80%;
  background: linear-gradient(-90deg, #C4151E 0%, #FFFFFF 48%, #E8D87C 100%);
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index: -1;
}

.step_list .item {
  width: calc((100% - 12rem) / 4);
}
.step_list .item img {
  width: 60px;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 2.4rem auto 0 auto;
}
.step_list .item h3 {
  margin-top: 1.6rem;
  text-align: center;
  font-size: 2rem;
}

.voice {
  background-color: #1B1B1B;
}

/* ///////////////////////////////////////




Voice




/////////////////////////////////////// */
.voice_list {
  gap: 4rem;
}

.voice_list .item {
  width: calc((100% - 4rem) / 2);
  box-sizing: border-box;
  padding: 4rem;
  border: 1px solid;
  -o-border-image: linear-gradient(to right, #C4151E, #FFFFFF, #E8D87C) 1;
     border-image: linear-gradient(to right, #C4151E, #FFFFFF, #E8D87C) 1;
}

.voice_list .head {
  border-bottom: 1px solid #fff;
  padding-bottom: 2.4rem;
}
.voice_list .head p {
  font-weight: 700;
}
.voice_list .head .lead {
  font-size: 1.8rem;
}
.voice_list .head .name {
  text-align: right;
  font-size: 1.4rem;
  margin-top: 10px;
}
.voice_list .head > div {
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 980px) {
  /* ///////////////////////////////////////




  Issue




  /////////////////////////////////////// */
  .issue_list {
    flex-direction: row;
    gap: 2rem;
    row-gap: 4rem;
  }
  .issue_list li {
    width: calc((100% - 2rem) / 2);
  }
  /* ///////////////////////////////////////




  Reason




  /////////////////////////////////////// */
  .reason_list .reason_item {
    gap: 8rem;
  }
  .reason_list .reason_item:nth-child(2) {
    flex-direction: column;
  }
  .reason_list .reason_item img {
    width: 100%;
    aspect-ratio: 5/3;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .reason_list .reason_item:not(:first-child) {
    margin-top: 4rem;
  }
  /* ///////////////////////////////////////




  Flow




  /////////////////////////////////////// */
  .step_list .item {
    display: flex;
    gap: 4rem;
    width: auto;
  }
  .step_list .item img {
    margin-top: 0;
  }
  .step_list .item .item_wrap {
    width: 100%;
  }
  .step_num {
    flex-shrink: 0;
    margin: 0;
  }
  .step_list::before {
    height: 77%;
    width: 1px;
    background: linear-gradient(180deg, #C4151E 0%, #FFFFFF 48%, #E8D87C 100%);
    left: 30px;
    top: 45%;
    transform: translateY(-50%);
  }
  /* ///////////////////////////////////////




  Voice




  /////////////////////////////////////// */
  .voice_list .item {
    width: 100%;
  }
  .voice_list .head {
    flex-direction: row;
  }
}
@media screen and (max-width: 650px) {
  /* ///////////////////////////////////////




  Issue




  /////////////////////////////////////// */
  .issue_list li {
    padding: 4rem 4rem 3rem 4rem;
    font-size: clamp(2.4rem, 3.5vw, 2.8rem);
  }
  .issue_list li::before {
    width: 25px;
    height: 25px;
    top: -13px;
  }
  .issue_list li .pc_none {
    display: block;
  }
  .issue .txt_wrap .pc_none {
    display: block;
  }
  .issue .txt_wrap p {
    font-size: 3.6rem;
  }
  /* ///////////////////////////////////////




  Reason




  /////////////////////////////////////// */
  .reason_item h3 {
    font-size: 4rem;
  }
  .reason_item h3::before {
    font-size: 8rem;
    top: -65%;
  }
  /* ///////////////////////////////////////




  Flow




  /////////////////////////////////////// */
  .step_list .item h3 {
    font-size: 3.2rem;
    margin-top: 10px;
  }
  /* ///////////////////////////////////////




  Voice




  /////////////////////////////////////// */
  .voice_list .head .lead {
    font-size: clamp(2.8rem, 4.1vw, 3.2rem);
  }
  .voice_list .head .name {
    font-size: 2.4rem;
  }
}/*# sourceMappingURL=style.css.map */