@charset "utf-8";

:root {
  --black: #181818;
  --dark: #222222;
  --white: #ffffff;
  --gray-bg: #f7f7f7;
  --text: #222222;
  --text-muted: #666666;
  --text-light: #999999;
  --line: #dddddd;
  --card-dark: #2b2b2b;
  --container-max: 1140px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: zen-kaku-gothic-new, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: 0.04em;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.25s ease;
}

a:hover {
  opacity: 0.7;
}

p {
  margin-bottom: 0;
}

.container {
  max-width: var(--container-max);
}

.fixed-contact {
  position: fixed;
  right: 15px;
  bottom: 4vh;
  z-index: 999;

  width: 110px;
  height: 110px;
  border-radius: 50%;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  background: #000;
  color: #fff;

  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  padding: 18px 0 0;
  box-shadow: 0 0px 8px rgba(0,0,0,.4);
  border:solid 1px #fff;
}

.fixed-contact .arrow {
  margin-top: 0;
  font-size: 18px;
  line-height: 1;
}

.fixed-contact:hover {
  color: #fff;
  opacity: .8;
}

/* Hero (main visual) */
.mv {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  min-height: 100svh;
  padding: 65vh 0 0;
  overflow: hidden;
  text-align: center;
  background: var(--white);
  background-image: url("img/bg_dotted.svg");
  background-size: 240px auto;
  background-repeat: no-repeat;
  background-position: bottom 150px right -200px;
}

.mv-visual {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 0;
  width: min(140vw, 1280px);
  height: 75vh;
  transform: translateX(-50%);
  pointer-events: none;
}

.mv-visual-mask {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
}

.mv-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* =====================================
MV
===================================== */

.mv-inner{
  display:grid;
  grid-template-columns:auto 1fr auto;
  grid-template-areas:
    "lead lead scroll"
    "label copy scroll";
  column-gap:25px;
  row-gap:30px;
  align-items:end;
  max-width:1180px;
  position:relative;
}

.mv-title{
  grid-area:lead;
  margin:0;
}

.mv-title-line {
  position: relative;
  z-index: 0;
  display: block;
  width: fit-content;
  margin: 0;
  padding: 0 6px;
  color: #ffffff;
  font-size: 16px;
  line-height: 32px;
}

.mv-title-line::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 4px;
  left: 0;
  width: 100%;
  height: 24px;
  border-radius: 2px;
  background: #000000;
}

.mv-label{
  grid-area:label;
  display:flex;
  gap:40px;
  margin:0;
  font-size:clamp(60px,8vw,96px);
  font-weight:700;
  line-height:1;
  white-space:nowrap;
}

.mv-label span{
  display:block;
}

.mv-copy{
  grid-area:copy;
  align-self:end;
  text-align:left;
  padding-bottom:4px;
}

.mv-sub{
  margin:0 0 0;
  font-size:18px;
  font-weight:700;
  text-align:left;
}

.mv-section-title{
  margin:0;
  font-size:clamp(24px,2.5vw,40px);
  font-weight:700;
  line-height:1.4;
}

.mv-scroll{
  grid-area:scroll;
  writing-mode:vertical-rl;
  text-orientation:mixed;
  justify-self:end;
  align-self:start;
  margin-top:-80px;
  display:flex;
  align-items:center;
  gap:20px;
  font-size:14px;
  font-weight:700;
  letter-spacing:.15em;
  color:#222;
}

.mv-scroll::after{
  content:"";
  display:block;
  width:1px;
  height:80px;
  background:#222;
}

.btn-main{
  display:none;
}

/* SP */
@media (max-width:991px){
  .mv-inner{
    display:block;
  }

  .mv-label{
    flex-wrap:wrap;
    gap:16px 24px;
    margin:30px 0 20px;
    font-size:48px;
    white-space:normal;
  }

  .mv-scroll{
    display:none;
  }
}

/* =====================================
SP
===================================== */

@media (max-width:991px){

  .mv-inner{
      display:block;
  }

  .mv-scroll{
      display:none;
  }

  .mv-label{
      flex-wrap:wrap;
      gap:16px;
      margin-bottom:20px;
      font-size:48px;
  }

  .mv-title{
      margin-bottom:25px;
  }

}

@keyframes mv-scroll-line {
  0% {
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
  }
  40% {
    transform: scaleY(1);
    transform-origin: top;
    opacity: 1;
  }
  100% {
    transform: scaleY(1);
    transform-origin: bottom;
    opacity: 0;
  }
}

.btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  padding: 16px 40px;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-main:hover {
  background: #444444;
  color: var(--white);
  opacity: 1;
  transform: translateY(-2px);
}

/* Sections */
.service-intro,
.section {
  padding: 120px 0;
}

.section-title {
  margin-bottom: 0;
  font-size: clamp(26px, 5vw, 26px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.06em;
  text-align: :left;
}

.section-en {
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: 700;
  color: var(--white) !important;
  letter-spacing: 0.2em;
  text-transform: capitalize;
  display:flex;
  align-items:center;
  gap:8px;
}

.section-en::before{
    content:"";
    width:6px;
    height:6px;

    border-radius:50%;
    background:var(--white);

    flex-shrink:0;
}

.section-en-black {
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--black) !important;
  letter-spacing: 0.2em;
  text-transform: capitalize;
  display:flex;
  align-items:center;
  gap:8px;
}

.section-en-black::before{
    content:"";
    width:6px;
    height:6px;

    border-radius:50%;
    background:var(--black);

    flex-shrink:0;
}

/* Service intro */
.service-intro {
  position: relative;
  padding: 100px 0;
  text-align: center;
}

.service-intro-title {  
  background-image: url("img/bg_dotted_s_top.jpg"), url("img/bg_dotted_s.png");
  background-position: right center, center;
  background-size: 45px auto, 8px auto;
  background-repeat: no-repeat, repeat;
  padding: 60px 0;
}

.service-intro-title p {
  color: var(--black);
  font-weight: 700;
  font-size: 32px;
}

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 300px;
  padding: 48px 28px;
  background: var(--white);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(5px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
}

.service-card-icon {
  display: block;
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
  object-fit: contain;
}

.card-en {
  margin-bottom: 5px;
font-size: 14px;
line-height: 100%;
letter-spacing: 0%;
text-transform: capitalize;

  color: rgba(0, 0, 0, .5);
  letter-spacing: 0.18em;
  text-transform: capitalize;
}

.service-card h3 {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 900;
}

.service-card p:last-child {
  font-size: clamp(21px, 2.5vw, 24px);
  line-height: 1.55;
}

.service-card{
  position: relative;
  text-align: center;
  padding-bottom: 50px;
}

.service-card-wrap{
  max-width:960px;
  margin:0 auto;
}

.service-card::after{
  content: "▼";

  position:absolute;
  left:50%;
  bottom:15px;

  transform:translateX(-50%);

  font-size:24px;
  line-height:1;
  color:#000;

  transition:transform .35s ease;
}

.service-card:hover::after{
  transform:translateX(-50%) translateY(5px);
}

.service-card-link{
  display:block;
  text-decoration:none;
  color:inherit;
}


/* Content sections */
.section p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 2;
}

.section .col-lg-7 p + p {
  margin-top: 1.2em;
}

.section-dark {
  background: var(--black);
  color: var(--white);
}

.section-dark p {
  color: rgba(255, 255, 255, 0.78);
}

.section-dark .section-en {
  color: #aaaaaa;
}

/* Video section */
.section-video {
  background: var(--dark);
  background-image: url(img/video_bg.svg);
  background-size: 100% auto;
  background-repeat:no-repeat;
  background-position: top left;
}

.video-head{
  display:grid;
  grid-template-columns: 38% 62%;
  align-items:start;
  gap:45px;
  position:relative;
}

.video-head-main{
  color:#fff;
}

#video .video-head-title{
  margin-bottom:36px;
  font-size:clamp(36px,5vw,40px);
  line-height:1.25;
  font-weight:700;
}


.video-head-text p{
  color:var(--white);
  font-size:16px;
  line-height:2;
  font-weight: 500;
}

.video-head-text p + p{
  margin-top:18px;
}

.video-head-side{
  background:#2b2b2b;
  padding:40px;
  border:1px solid rgba(255,255,255,.08);
  border-radius: 8px;
}

.video-service-list{
  display:flex;
  flex-direction:column;
}

.video-service-item{
  display:grid;
  grid-template-columns:64px 1fr;
  gap:50px;
  padding:0 0 30px;
  color:#fff;
}

.video-service-item + .video-service-item{
  padding-top:30px;
  border-top:1px solid rgba(255,255,255,.18);
}

.video-service-item:last-child{
  padding-bottom:0;
}

.video-service-icon{
  width:90px;
  height:90px;
  border-radius:4px;
  background:#f5f5f5;
  color:#111;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
}

.video-service-item h3{
  margin:0 0 10px;
  color:#fff;
  font-size:16px;
  line-height:1.5;
}

.video-service-item p{
  color:rgba(255,255,255,.78);
  font-size:15px;
  font-weight: 500;
  line-height:1.9;
}

.video-points-image img {
  border-radius: 8px;
}

.video-head-title {
  margin-bottom: 0;
}

.video-head-side {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.video-lead p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 2;
}

.video-lead p + p {
  margin-top: 1.2em;
}

.video-figure {
  margin: 0;
  max-width: 350px;
}

.video-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.video-points{
  display:grid;
  grid-template-columns:420px 1fr;
  gap:56px;
  margin-top:80px;
  align-items:start;
}

.video-points-image img{
  width:100%;
  display:block;
}

.video-points-list{
  display:flex;
  flex-direction:column;
  gap:42px;
}

.video-point{
  display:grid;
  grid-template-columns:60px 1fr;
  gap:24px;
  align-items:center;
}

.video-point-num{
  font-size:42px;
  line-height:1;
  font-weight:700;
  color:rgba(255,255,255,.35);
}

.video-point-content h3{
  margin:0 0 12px;
  color:#fff;
  font-size:20px;
  line-height:1.4;
}

.video-point-content p{
  margin:0;
  color:rgba(255,255,255,.8);
  font-size:16px;
  font-weight: 500;
  line-height:2;
}

/* sns */
.section-sns{
  background:#fff;
  color:#111;
}

.sns-head{
  display:grid;
  grid-template-columns:58% 42%;
  gap:48px;
  align-items:center;
}

.sns-menu-card{
  padding:44px 42px;
  border:1px solid #dcdcdc;
  border-radius:8px;
  background:#fff;
}

.sns-menu-item{
  display:grid;
  grid-template-columns:64px 1fr;
  gap:28px;
  align-items:start;
  padding:0 0 32px;
}

.sns-menu-item + .sns-menu-item{
  padding-top:32px;
  border-top:1px solid #dcdcdc;
}

.sns-menu-item:last-child{
  padding-bottom:0;
}

.sns-icon{
  width:38px;
  height:38px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:30px;
  font-weight:900;
  line-height:1;
}

.sns-icon.instagram{
  color:#ff0069;
}

.sns-icon.tiktok{
  color:#000;
}

.sns-icon.youtube{
  color:#ff0000;
}

.sns-menu-item h3{
  margin:0 0 12px;
  font-size:16px;
  line-height:1.5;
}

.sns-menu-item p{
  margin:0;
  font-size:16px;
  font-weight: 500;
  line-height:1.8;
  color: var(--black);
}

.sns-text{
  padding-left:10px;
}

.sns-text .section-title{
  margin-bottom:28px;
  font-size:clamp(34px,4vw,40px);
  line-height:1.35;
}

.sns-text p{
  font-size:16px;
  font-weight: 500;
  line-height:2.1;
  color: var(--black);
}

.sns-platform{
  margin-top:90px;
  text-align:center;
}

.sns-platform .section-en-black{
  justify-content:center;
}

.sns-platform .section-en-black{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:8px;
  width:100%;
}

.platform-logo{
  text-align:center;
  margin-bottom:20px;
}

.platform-logo img{
  max-width:140px;
  height:auto;
}

#sns .platform-card p {
  color: var(--black);
  letter-spacing: 0.04em;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}

#sns .platform-card{
  display:flex;
  flex-direction:column;
  height:100%;
  padding:30px 20px;
}

#sns .col-md-4{
  display:flex;
}

#sns .tag-list{
  margin-top:auto;
}

.platform-title{
  font-size:clamp(28px,3vw,32px);
  font-weight:700;
  line-height:1.4;
}

.platform-card{
  height:100%;
  padding:34px 28px;
  border:1px solid #dcdcdc;
  border-radius:4px;
  background:#fff;
  text-align:left;
}

.platform-card h3{
  margin:0 0 20px;
  font-size:20px;
  font-weight:900;
}

.platform-card p{
  margin:0;
  font-size:14px;
  line-height:2;
}

.tag-list{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:24px;
}

.tag-list span{
  display:inline-block;
  padding:2px 5px;
  border-radius:2px;
  font-size:12px;
  font-weight: 500;
  line-height:1.5;
  background-color: #5C5C5C;
  color: #fff;
}

.sns-points{
  display:grid;
  grid-template-columns:38% 1fr;
  gap:52px;
  align-items:center;
  margin-top:80px;
}

.sns-points-image img{
  width:100%;
  display:block;
  border-radius:8px;
}

.sns-points-list{
  display:flex;
  flex-direction:column;
  gap:38px;
}

.sns-point{
  display:flex;
  align-items:center;
  gap:30px;
}
.sns-point-num{
  width:50px;
  flex-shrink:0;

  font-size:48px;
  font-weight:700;
  line-height:1;
  color:#9a9a9a;

  display:flex;
  align-items:center;
  justify-content:center;
}

.sns-point-num{
  color:rgba(0,0,0,.4);
  font-size:34px;
  font-weight:700;
  line-height:1;
}

.sns-point-body h3{
  margin:0 0 10px;
  font-size:20px;
  font-weight:700;
  line-height:1.5;
}

.sns-point-body p{
  margin:0;
  font-size:16px;
  line-height:1.8;
  color: var(--black);
  font-weight: 500;
}

/* recruit */
.section-recruit {
  background: var(--dark);
  background-image: url(img/recruit_bg.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: top left;
}

.recruit-head{
  display:grid;
  grid-template-columns:38% 62%;
  gap:48px;
  align-items:center;
}

.recruit-main{
  color:#fff;
}

.recruit-main .section-title{
  margin-bottom:28px;
  font-size:clamp(36px,4vw,40px);
  line-height:1.35;
}

.recruit-text{
  color:#fff !important;
  font-weight: 500 !important;
}

.recruit-text + .recruit-text{
  margin-top:18px;
}

.recruit-service{
  background: #2b2b2b;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 8px;
}

.recruit-service-item{
  display:grid;
  grid-template-columns:64px 1fr;
  gap:50px;
  padding:0 0 30px;
}

.recruit-service-item + .recruit-service-item{
  padding-top:30px;
  border-top:1px solid rgba(255,255,255,.15);
}

.recruit-service-item:last-child{
  padding-bottom:0;
}

.recruit-icon{
  width:90px;
  height:90px;
  border-radius:4px;
  background:#f5f5f5;

  display:flex;
  align-items:center;
  justify-content:center;
  color:#111;
  font-size:22px;
}

.recruit-service-item h3{
  margin: 0 0 10px;
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
}

.recruit-service-item p{
  color: rgba(255, 255, 255, .78);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.9;
}

.recruit-change{
  margin-top:90px;
  text-align:center;
  color:#fff;
}

.recruit-change .section-en,
.recruit-cost .section-en {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.recruit-change-title{
  margin:0 0 48px;
  font-size: clamp(28px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.4;
}

.recruit-change-list{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:48px;
  text-align:center;
}

.recruit-change-label{
  margin-bottom:18px;
  color:rgba(255,255,255,.45);
  font-size:13px;
  font-weight:700;
}

.recruit-change-item h3{
  margin:0 0 15px;
  color:#fff;
  font-size:20px;
  font-weight:700;
  line-height:1.5;
  min-height: 70px; /* 調整 */
  display:flex;
  align-items:center;
  justify-content:center;
}

.recruit-change-item .recruit-change-label{
  color:rgba(255,255,255,.5);
  font-size:12px;
  line-height:1;
  font-weight: 500;
  margin-bottom: 10px;
}

.recruit-change-item .recruit-change-text {
  text-align: justify;
  color:#fff;
  font-size:16px;
  line-height:1.8;
  font-weight: 500;
}

.recruit-cost{
  margin-top:120px;
  color:#fff;
  text-align:center;
}

.recruit-cost-title{
  margin:0 0 48px;
  font-size: clamp(28px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.4;
}

.recruit-cost-list{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:60px;
}

.recruit-cost-item h3{
  margin-bottom:10px;
  font-size:20px;
  line-height:1.4;
  min-height: 65px; /* 調整 */
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.recruit-cost-number{
  margin-bottom:18px;
  font-size:40px;
  font-weight:700;
  letter-spacing: 2px;
}

.recruit-cost-number span{
  font-size:20px;
  padding: 0 3px;
}

.recruit-cost-item p{
  color:#fff;
  font-size:16px;
  line-height:1.8;
  text-align: justify;
  font-weight:500;
}

.recruit-arrow{
  width:0;
  height:0;
  margin:70px auto 0;
  border-left:18px solid transparent;
  border-right:18px solid transparent;
  border-top:24px solid #fff;
}

/* =====================================
INSPIREのご提案
===================================== */

.recruit-proposal{
  margin-top:20px;
  text-align:center;
}

.recruit-proposal-title{
  margin:0 0 15px;
  color:#fff;
  font-size:40px;
  font-weight:700;
  line-height:1.4;
}

.recruit-proposal-text{
  margin:0 0 50px;
  color:#fff !important;
  font-size:24px !important;
  line-height:1.8 !important;
  font-weight:700;
}

/* =====================================
フロー
===================================== */

.recruit-flow{
  position:relative;

  display:flex;
  justify-content:center;
  gap:18px;

  max-width:879px;
  margin:0 auto;
}


.recruit-flow-item{
  position:relative;
}

.flow-num{
  position:absolute;

  top:-25px;
  left:50%;

  transform:translateX(-50%);

  width:50px;
  height:50px;

  border-radius:50%;

  background:#fff;
  color:#575757;

  font-size:24px;
  font-weight:500;

  display:flex;
  align-items:center;
  justify-content:center;

  z-index:2;
  line-height: 2;
}

.recruit-flow-item .flow-card{
  width:281px;
  min-height:156px;

  padding:42px 18px 18px;

  background:#606060;
  border:1px solid rgba(255,255,255,.35);
  border-radius:4px;
}

.flow-icon{
  width:90px;
  height:90px;

  margin:0 auto 16px;

  display:flex;
  align-items:center;
  justify-content:center;

  background:#fff;
  border-radius:8px;
}

.flow-icon img{
  max-width:90px;
  max-height:90px;
}

.recruit-flow-item .flow-card h3{
  margin:0 0 10px;

  color:#fff;
  font-size:18px;
  font-weight:700;
  text-align:center;
}

.recruit-flow-item .flow-card p{
  margin:0;

  color:#fff;
  font-size:16px;
  line-height:1.4;
  font-weight:500;
  text-align:justify;
}

/* =====================================
SP
===================================== */

@media (max-width:991px){

  .recruit-flow{
    flex-direction:column;
    align-items:center;
    gap:24px;
  }

  .recruit-flow::before{
    display:none;
  }

  .recruit-proposal-title{
    font-size:32px;
  }

  .recruit-proposal-text{
    font-size:14px;
  }

}

.recruit-case{
  margin-top:90px;
  text-align:center;
  color:#fff;
}

.recruit-case-title{
  margin: 0 0 48px;
  font-size: clamp(28px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.4;
}

.recruit-case-list{
  position:relative;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:100px;
  max-width:1080px;
  margin:0 auto;
  text-align:left;
}

.recruit-case-list::before{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  left:50%;
  width:1px;
  background:rgba(255,255,255,.35);
  transform:translateX(-50%);
}

.recruit-case-item + .recruit-case-item{
  padding-left:0;
  border-left:none;
}

.recruit-case-item .case-label{
  margin-bottom:10px;
  text-align:center;
  font-size:18px;
  font-weight:700;
  color: #fff;
}

.recruit-case-item h3{
  margin:0 0 28px;
  color:#fff;
  font-size:16px;
  font-weight:500;
  line-height:1.4;
  text-align:center;
}

.recruit-case-item h3 strong{
  font-size:28px;
  font-weight:700;
  padding: 0 3px;
}

.recruit-case-item ul{
  padding:0;
  margin:0;
  list-style:none;
}

.recruit-case-item li{
  position:relative;
  padding-left:1.4em;
  color:rgba(255,255,255,.85);
  font-size:14px;
  line-height:2;
}

.recruit-case-item li::before{
  content:"☑";
  position:absolute;
  left:0;
  top:0;
  color:#fff;
  font-size:14px;
  line-height:2;
}

@media (max-width:991px){
  .recruit-case-list{
    grid-template-columns:1fr;
    gap:40px;
  }

  .recruit-case-item + .recruit-case-item{
    padding-left:0;
    padding-top:40px;
    border-left:none;
    border-top:1px solid rgba(255,255,255,.35);
  }
}

/* =====================================
料金
===================================== */

.price-section{
  position:relative;
  text-align:center;
}

.price-title{
  margin-bottom:40px;
}

.price-box{
  width:100%;
  max-width:560px;

  margin:0 auto;

  padding:48px 40px;

  background:#f5f5f5;
  border-radius:6px;
}

.price-main{
  margin:0 0 24px;

  color:#222;
  font-size:24px;
  font-weight:700;
}

.price-main span{
  font-size:58px;
  font-weight:900;
  line-height:1;
}

.price-text{
  margin:0 0 30px;

  color:#444;
  font-size:14px;
  line-height:2;
}

.price-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  min-width:220px;
  height:52px;

  padding:0 30px;

  background:#000;
  color:#fff;

  font-size:14px;
  font-weight:700;

  text-decoration:none;
  transition:.3s;
}

.price-btn:hover{
  color:#fff;
  opacity:.8;
}

/* =====================================
採用メリット
===================================== */

.recruit-reason{
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 56px;
  margin-top: 80px;
  align-items: start;
}

.recruit-reason-image img{
  width:100%;
  display:block;
  border-radius:4px;
}

.recruit-reason-list{
  display:flex;
  flex-direction:column;
  gap:36px;
}

.recruit-reason-item{
  display:flex;
  align-items:center; /* ←縦中央 */
  gap:24px;
}

.recruit-reason-num{
  font-size: 42px;
  line-height: 1;
  font-weight: 700;
  color: rgba(255, 255, 255, .35);
}

.recruit-reason-content{
  flex:1;
  text-align: left;
}

.recruit-reason-content h3{
  margin: 0 0 12px;
  color: #fff;
  font-size: 20px;
  line-height: 1.4;
}

.recruit-reason-content p{
  margin: 0;
  color: rgba(255, 255, 255, .8);
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
}

/* =====================================
ご利用の流れ
===================================== */

.flow-section{
  background:#f7f7f7;
}

.flow-title{
  margin-bottom:50px;
}

.flow-timeline_title,
.flow-timeline{
  position:relative;
  width:650px;
  max-width:100%;
  margin:0 auto;
}

.flow-timeline::before{
  content:"";
  position:absolute;

  left:6px;
  top:10px;
  bottom:10px;

  width:1px;
  background:#9e9e9e;
}

.flow-step{
  position:relative;

  display:flex;
  gap:28px;

  padding-bottom:36px;
}

.flow-step:last-child{
  padding-bottom:0;
}

.flow-dot{
  position:relative;
  z-index:2;

  width:12px;
  height:12px;

  margin-top:8px;

  background:#9e9e9e;
  border-radius:50%;
}

.flow-content{
  flex:1;
}

.flow-step-label{
  display:block;

  margin-bottom:4px;

  color:#878787;
  font-size:14px;
  font-weight:700;
  letter-spacing:.08em;
}

.flow-content h3{
  margin:0 0 10px;

  color:#000;
  font-size:18px;
  font-weight:700;
}

.flow-content p{
  margin:0;
  font-weight:500;
  color:#000;
  font-size:15px;
  line-height:1.9;
}

/* =====================================
CONTACT
===================================== */

.contact-section{
  background:#222;
  padding:120px 0 50px;
}

.contact-inner{
  text-align:center;
}

.contact-label{
  display:inline-block;

  margin-bottom:24px;
  padding:5px 15px;

  border:1px solid rgba(255,255,255,1);

  color:#fff;
}

.contact-title{
  margin:0 0 20px;

  color:#fff;
  font-size:58px;
  font-weight:900;
  line-height:1.4;
}

.contact-text{
  margin:0 0 40px;

  color:rgba(255,255,255,.85);
  font-size:18px !important;
  line-height:2;
  font-weight: 700 !important;
}

.contact-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  min-width:400px;
  height:65px;

  padding:0 20px;

  background:#fff;
  color:#222;

  font-size:24px;
  font-weight:700;

  text-decoration:none;
  transition:.3s;
}

.contact-btn:hover{
  color:#222;
  opacity:.8;
}

.contact-copy{
  margin-top:80px;

  color:rgba(255,255,255,.7);
  font-size:12px;
  letter-spacing:.08em;
}

/* Cards */
.point-card,
.platform-card,
.flow-card {
  height: 100%;
  padding: 36px 32px;
  border: 1px solid var(--line);
  background: var(--white);
}

.section-dark .platform-card {
  border-color: #444444;
  background: var(--card-dark);
}

.point-card span,
.flow-card span {
  display: block;
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 900;
  color: var(--text-light);
  letter-spacing: 0.16em;
}

.point-card h3,
.platform-card h3,
.flow-card h3 {
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.6;
}

.point-card p,
.platform-card p,
.flow-card p {
  font-size: 14px;
  line-height: 1.85;
}

.platform-card p {
  color: var(--text-light);
  letter-spacing: 0.04em;
}

.section-dark .platform-card p {
  color: rgba(255, 255, 255, 0.55);
}

/* Price */
.price-section {
  background: var(--dark);
  color: var(--white);
  padding: 0 0 120px;
  background-image: url(img/recruit_markt_bg.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: top left;
}

.price-section .section-en {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.price-section > .container > p:last-of-type {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
}

.price-section .price-box {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: 30px 30px 35px;
  background: #f5f5f5;
  border-radius: 6px;
}

.price-box .price-main {
  color: var(--dark);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.price-box .price-text {
  margin: 0 0 30px;
  color: #444;
  font-size: 14px;
  line-height: 2;
}

.price-box .price-main strong {
  font-size: 54px;
}
.price-box .price-main span{
  font-size: 32px;
}

.price {
  display: inline-block;
  margin: 28px 0;
  padding: 28px 72px;
  background: var(--white);
  color: var(--black);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.04em;
}

/* Flow */
.flow-section {
  background: var(--white);
}

.flow-card {
  background: var(--white);
}

.flow-section .section-en-black  {
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--black) !important;
  letter-spacing: 0.2em;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  gap: 8px;
}

.flow-section .section-title {
  margin-bottom: 30px;
  font-size: clamp(36px, 5vw, 40px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.06em;
  text-align: :left;
}

/* Contact */
.contact-section {
  padding: 120px 0;
  background: var(--dark);
  color: var(--white);
  text-align: center;
}

.contact-section h2 {
  margin-bottom: 10px;
  font-size: clamp(34px, 5vw, 72px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

.contact-section p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  font-weight: 500;
}

.contact-section .btn-main {
  background: var(--white);
  color: var(--black);
}

.contact-section .btn-main:hover {
  background: #eeeeee;
  color: var(--black);
}

/* Footer */
.footer {
  padding: 0 0 20px 0;
  background: var(--dark);
  color: var(--white);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-align: center;
}

.br-sp {
  display: none;
}

/* タブレット */
@media (max-width: 991px) {

  
  .br-pc {
    display: none;
  }
  .br-tab {
    display: inline-block;
  }
  
  .service-intro, .section {
    padding: 100px 0;
}
  .mv-visual {
    width: min(140vw, 1280px);
    height: 35vh;
}
.mv {
        min-height: auto;
        padding: 290px 0 0;
        background-position: bottom 50px right -190px;
    }
.mv-title {
        width: 100%;
        max-width: 100%;
}
.mv-title-line {
    font-size: 14px;        
        line-height: 35px;
}
.mv-label {
  margin-bottom: 10px;
}
.service-card-wrap{
  max-width:100%;
}

.service-row{
  display:flex;
  flex-wrap:nowrap;
  justify-content:center;
}

.service-row > .col-md-4{
  width:33.333%;
  flex:0 0 33.333%;
  max-width:33.333%;
}
.service-intro-title p {
  line-height: 1.5;
}
.service-intro-title {
  padding: 40px 0 50px;
}
.service-card {
  padding: 30px 20px 30px 20px;
        min-height: 200px;
}
.service-card::after {
  bottom: 0;
}
.video-head,
.video-points,
.sns-head,
.sns-points,
.recruit-head,
.recruit-reason {
  grid-template-columns: 40% 1fr;
    gap: 35px;
}
.recruit-change-list,
.recruit-cost-list {
  grid-template-columns:1fr;
  gap:50px;
}
.recruit-cost-item p {
  text-align: center;
}
.video-head-side,
.sns-menu-card,
.recruit-service {
  padding: 30px 20px;
}
.video-point,
.sns-menu-item,
.sns-point,
.recruit-reason-item {
  gap: 15px;
}
.sns-text{
  order:1;
}
.sns-menu-card{
  order:2;
}
.sns-icon {
  width: 50px;
  height: 50px;
}
.sns-platform {
  margin-top: 60px;
}
.sns-platform .row.g-4.mt-4{
  margin-top:0 !important;
}
#sns .col-md-4 {
  display: block;
}
.col-md-4 {
  flex: 0 0 auto;
  width: 100%;
}
.sns-point-body p {
  text-align: justify;
}
#sns .col-md-4 {
  display: block;
}
.recruit-case-list {
  max-width: 70%;
}
.recruit-change-item h3 {
  min-height: auto;
}
.recruit-cost-item h3 {
  min-height: auto;
  margin-bottom: 0;
}
.recruit-cost {
  margin-top: 100px;
}
.recruit-cost-number {
  margin-bottom: 0;
}
.recruit-arrow {
  margin: 60px auto 0;
}
.recruit-flow {
  flex-direction: row;
}
.recruit-flow-item .flow-card {
    width: 100% !important;
}
.recruit-flow{
  display:flex;
  align-items:stretch;
}
.recruit-flow-item{
  width:33.3333%;
}
.recruit-case-list::before {
  background: rgba(0, 0, 0, .0);
}
.price-section .price-box {
  padding: 20px 20px 25px;
}
.price-box .price-text {
  margin: 0 0 20px;
}
.contact-section {
  padding: 100px 0;
}
.contact-section h2 {
  font-size: clamp(32px, 5vw, 72px);
}
.footer {
  padding: 0 0 45px 0;
}
.fixed-contact {
    right: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    border-radius: 0;
    padding: 16px 0 30px;
    box-shadow: 0 0px 0px #000;
    border-top: solid 1px #fff;
    border-left: none;
    border-right: none;
    border-bottom: none;
    font-size: 16px;
}

}

/* スマホ */
@media (max-width: 767px) {
  .br-pc {
    display: none;
  }
  .br-sp {
    display: inline-block;
  }
.service-intro, .section {
    padding: 100px 0 30px;
}
  .mv-visual {
    width: min(140vw, 1280px);
    height: 35vh;
}
.mv {
        min-height: auto;
        padding: 290px 0 0;
        background-position: bottom 50px right -190px;
    }
.mv-title {
        width: 100%;
        max-width: 100%;
}
.mv-title-line {
    font-size: 14px;        
        line-height: 35px;
}
.mv-label {
  margin-bottom: 10px;
}
.service-intro-title p {
  line-height: 1.5;
}
.service-intro-title {
  padding: 40px 0 50px;
}
.service-card {
  padding: 30px 20px 30px 20px;
        min-height: 200px;
}
.service-card::after {
  bottom: 0;
}
  .service-intro .row.g-4.mt-4{
    display:block;
  }

  .service-intro .row.g-4.mt-4 > .col-md-4{
    width:100%;
    max-width:100%;
    margin-bottom:30px;
  }
.video-head,
.video-points,
.sns-head,
.sns-points,
.recruit-head,
.recruit-reason {
  grid-template-columns:1fr;
  gap:30px;
}
.recruit-change-list,
.recruit-cost-list {
  grid-template-columns:1fr;
  gap:50px;
}
.recruit-flow {
  display:flex;
  flex-direction:column;
  gap:20px;
  align-items:center;
}
.recruit-cost-item p {
  text-align: justify;
}
.video-head-side,
.sns-menu-card,
.recruit-service {
  padding: 30px 20px;
}
.video-point,
.sns-menu-item,
.sns-point,
.recruit-reason-item {
  gap: 15px;
}
.sns-text{
  order:1;
}
.sns-menu-card{
  order:2;
}
.sns-icon {
  width: 50px;
  height: 50px;
}
.sns-platform {
  margin-top: 60px;
}
.sns-platform .row.g-4.mt-4{
  margin-top:0 !important;
}
.sns-point-body p {
  text-align: justify;
}
.recruit-change-item h3 {
  min-height: auto;
}
.recruit-cost-item h3 {
  min-height: auto;
  margin-bottom: 0;
}
.recruit-cost {
  margin-top: 100px;
}
.recruit-cost-number {
  margin-bottom: 0;
}
.recruit-arrow {
  margin: 60px auto 0;
}
.recruit-flow,
.recruit-flow-item .flow-card {
    width: 100% !important;
}

.recruit-flow-item{
  width:100%;
  margin-bottom: 20px;
}

.recruit-flow-item .flow-card{
  width:100%;
}
.recruit-case-list::before {
  background: rgba(0, 0, 0, .0);
}
.price-section .price-box {
  padding: 20px 20px 25px;
}
.price-box .price-text {
  margin: 0 0 20px;
}
.contact-section {
  padding: 100px 0;
}
.contact-section h2 {
  font-size: clamp(32px, 5vw, 72px);
}
.footer {
  padding: 0 0 45px 0;
}
.fixed-contact {
    right: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    border-radius: 0;
    padding: 16px 0 30px;
    box-shadow: 0 0px 0px #000;
    border-top: solid 1px #fff;
    border-left: none;
    border-right: none;
    border-bottom: none;
    font-size: 16px;
}

}

@media (min-width: 1355px) {
  .mv-visual {
    width: 90vw;
}
.fixed-contact {
  right: 2%;
  bottom: 1vh;
}
}