@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap');
.eng{
  font-family: "Montserrat", sans-serif;
}
.jp{
  font-family: "Zen Kaku Gothic New", sans-serif;
}
html{
    color: #353535;
    font-size: 16px;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

a{
    cursor: pointer;
}
.w-1120{
    max-width: 1120px;
    width: 100%;
    margin: auto;
}

.w-1240{
    max-width: 1240px;
    width: 100%;
    margin: auto;
}


.w-1140{
    max-width: 1140px;
    width: 100%;
    margin: auto;
}


.w-1000{
    max-width: 1000px;
    width: 100%;
    margin: auto;
}



.w-840{
    max-width: 840px;
    width: 100%;
    margin: auto;
}

.w-800{
    max-width: 800px;
    width: 100%;
    margin: auto;
}

.w-740{
    max-width: 740px;
    width: 100%;
    margin: auto;
}

header#header {
    padding: 16px 60px;
    background: #fff;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    border-bottom: 1px solid #353535;
    z-index: 99999;
}


nav.header__nav{
    width: 100%;
}

nav.header__nav ul{
    display: flex;
    justify-content: flex-end;
    gap: 48px;
}

nav.header__nav ul li a{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    transition: .25s;
}
nav.header__nav ul li a:hover{
    color: #1F41F8;
    transition: .25s;
}

nav.header__nav ul li a .eng{
    font-size: 12px;
    color: #1F41F8;
    line-height: 15px;
}

nav.header__nav ul li a .jp{
    font-size: 15px;
    line-height: 22px;
}

a.header__logo {
    display: block;
    width: 61px;
    height: 68px;
    position: relative;
    z-index: 2;
}

a.header__logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
section.section-main {
    position: relative;
    overflow: hidden; /* はみ出しカット用 */
}

/* 背景画像は::beforeで敷いて回転させる */
section.section-main::before {
    content: "";
    position: absolute;
    inset: 0; /* top:0; right:0; bottom:0; left:0; と同じ */
    background-image: url(../images/common/bg-net.png);
    background-position: left top;
    object-fit: contain;
    transform: translate(-50%,-50%); /* 45度回転＋少し拡大してスキマ防止 */
    transform-origin: center center;
    z-index: -1;
    width: 100vw;
    height:100vh;
    left: 50%;
    top: 50%;
}

.section-main__inner{
    position: relative;
}
.section-main__inner::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(../images/top/top-content-bg.png);
    transform:  translate(0%,0%);
    transform-origin: center center;
    z-index: -1;
    width: 1445px;
    height: 820px;
    left: -40px;
    top: 135px;
    background-position: left top;
    background-repeat: no-repeat;
    background-size: contain;
}

.section-main__inner h2 {
    font-size: 50px;
    line-height: 74px;
    letter-spacing: .04em;
    font-weight: 700;
    margin-bottom: 20px;
    color:#353535;
}

.section-main__inner h3 {
    font-size: 20px;
    line-height: 50px;
    font-weight: 400;
    color: #9D9D9D;
}

.section-main__inner {
    width: 100%;
    padding-left: 100px;
    padding-right: 100px;
    padding-top: 477px;
    padding-bottom: 265px;
}

section.section-about {
    background: #353535;
    color: #fff;
    padding-top: 150px;
    padding-bottom: 150px;
    border-radius: 50px;
    position: relative;
}


section.section-about > picture{
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
}


section.section-about >picture img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
}

.section-about__inner.w-1120 h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 80px;
    display: flex;
    flex-direction: column;
    letter-spacing: .06em;
    margin-bottom: 40px;
}
.section-about__inner.w-1120 h2 span.color {
    color: #E96B39;
}
.section-about__inner.w-1120 h2 span.eng{
    font-size: 14px;
    letter-spacing: .0em;
    line-height: 30px;
    color: #9D9D9D;
}

.section-about__inner.w-1120 p{
    line-height: 44px;
    font-size: 16px;
    letter-spacing: .05em;
    margin-bottom: 40px;
}

a.btn-style{
width: 200px;
display: flex;
text-align: center;
justify-content: center;
align-items: center;
padding: 10px;
line-height: 30px;
font-size: 16px;
border: 1px solid;
font-weight: 700;
border-radius: 8px;
    transition: .25s;
}
a.btn-style:hover{
    color: #fff;
    background-color: #1F41F8;
    transition: .25s;
}

.section-about__inner__content{
    width: 48%;
    margin-left: auto;
    margin-right: 0;
}


.section-service__inner{
    padding-top: 140px;
    padding-bottom: 150px;
}

h2.ttl-main {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1F41F8;
    display: flex;
    gap: 20px;
    align-items: baseline;
}

h2.ttl-main span.jp {
    font-size: 20px;
    color: #353535;
}
section.section-service-case {
    background: #EAEAEA;
    border-radius: 0 0 50px 50px;
    position: relative;
}
section.section-service-case::after{
position: absolute;
content: "";
width: 866px;
height: 744px;
object-fit: contain;
background-image: url(../images/common/case-img-bg.png);
right: 0;
bottom: 0;
}
.section-service__inner__content__li{
    background-color: #fff;
    padding: 32px;
    border-radius: 20px;
    width: 100%;
    height: auto !important;
}
.section-service__inner__content__li h3{
    font-size: 32px;
    margin-bottom: 32px;
    font-weight: 700;
    margin-top: 20px;
}

.section-service__inner.w-1120,
.section-case__inner.w-1120{
    position: relative;
    z-index: 3;
}

.section-service__inner__content__wrap div{
    width: 46%;
}


.section-service__inner__content__li .section-service__inner__content__img
{
    width: 42%;
    display: block;
    height: auto;
}
.section-service__inner__content__li .section-service__inner__content__img img{
    width: 100%;
    display: block;
    height: auto !important;
    object-fit: contain;
    object-position: center;
}

.section-service__inner__content__li div p{
    line-height: 2;
    letter-spacing: .05em;
}

.section-service__inner__content__li div .btn-style{
    margin-top: 32px;
}

.section-service__inner__content__wrap{
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 40px;
}


.section-case__inner.w-1120 p{
    line-height: 2;
    letter-spacing: .05em;

}


.section-case__inner.w-1120 a.btn-style{
    margin-top: 40px;
}

.service-snsmedia h2.ttl-main{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.section-service-snsmedia {
    padding-top: 120px;
    padding-bottom: 190px;
    position: relative;
}


.section-service-snsmedia::before {
    content: "";
    position: absolute;
    background-image: url(../images/common/bg-net.png);
    background-position: center;
    object-fit: contain;
    transform-origin: center center;
    z-index: -1;
    width: 100%;
    height: calc(100% + 100px);
    left: 0;
    top: -50px;
}

.section-service-snsmedia__inner h2.ttl-main {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: 700;
}


.section-service-snsmedia__wrap{
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 62px;
}

.section-service-snsmedia__text {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.section-service-snsmedia__text h3{
    margin-bottom: 12px;
    line-height: 30px;
    font-size: 20px;
    font-weight: 700;
    color: #1F41F8;
padding-left: 20px;
position: relative;
}
.section-service-snsmedia__text h3::before{
    position: absolute;
    left: 0;
    top: 17.5px;
    height: 3px;
    width: 11px;
    background-color: #1F41F8;
    content: "";
}
.section-service-snsmedia__text p {
    line-height: 24px;
    font-size: 14px;
    font-weight: 400;
    color: #424242;
}
.section-case__inner.w-1120 {
    padding-bottom: 120px;
}

a.btn-style.btn-style-out{
    gap: 10px;
    padding: 5px 18px;
    max-width: 100%;
    width: max-content;
    line-height: 30px;
}

a.btn-style img.arrows-out{
    width: 10px;
    height: 10px;
}

ul.section-service-snsmedia__list {
    display: flex;
    gap: 18px;
}

ul.section-service-snsmedia__list li {
    display: block;
    width: 100%;
}

ul.section-service-snsmedia__list li img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}


section.section-column {
    padding-top: 80px;
    padding-bottom: 120px;
    background: #353535;
    color: #fff;
    border-radius: 50px;
}

.section-column__inner h3{
    font-size: 40px;
    line-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-weight: 700;
    flex-direction: column;
    margin-bottom: 50px;
}

.section-column__inner h3 span.jp{
    font-size: 28px;
    line-height: 30px;
    letter-spacing: .04em;
}
.section-column__inner__slider {
  margin: 0 auto;
  padding: 0 0px;
}

.section-column__inner__slider .slick-slide {
  margin: 0 10px; /* ← 余白20px */
}

.section-column__inner__slider__item {
  width: 400px;
  background: #fff;
  color: #353535;
  border-radius: 10px;
  overflow: hidden;
  transition: transform .3s ease;
  height: auto !important;
}
.section-column__inner__slider__item__images {
    height: 230px;
}
.section-column__inner__slider__item__images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
ul.section-column__inner__slider .slick-track {
    display: flex;
}

.section-column__inner__slider__item__text {
    padding: 16px 20px;
}

.section-column__inner .btn-style{
    margin: auto;
    margin-top: 60px;
}

.section-column__inner .btn-style:hover{
    border: #1F41F8 1px solid;
    transition: .25s;
}

a.btn-style:hover img.arrows-out {
  filter: brightness(0) invert(1);
}



section.section-column{
    position: relative;
}

section.section-column::before {
    content: "";
    position: absolute;
    background-image: url(../images/common/bg-items.png);
    background-position: center;
    background-repeat: no-repeat;
    height: 590px;
    width: 690px;
    left: 0;
    bottom: 0;
}
section.section-column::after,
section.section-about::after{
    width: 100%;
    height: 50px;
    background-color: #EAEAEA;
    z-index: -1;
    content: "";
    display: block;
    left: 0;
    bottom: 0;
    position: absolute;
}
.section-column__inner__slider__item__tag__wrap {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 8px;
}

span.column__tag {
    background: #1F41F8;
    color: #fff;
    padding: 4px 12px;
    display: block;
    width: max-content;
    border-radius: 10000000px;
    font-size: 14px;
    letter-spacing: .04em;
    line-height: 1.5;
}

span.column__date {
    color: #A9A9A9;
    font-size: 14px;
}


.section-column__inner__slider__item__text p{
    line-height: 1.6;
    font-weight: 700;
}


section.section-recruit {
    padding-top: 120px;
    padding-bottom: 120px;
    background: #EAEAEA;
}

.section-recruit__inner{
    padding: 50px;
    border-radius: 20px;
    background-color: #fff;
    position: relative;
}

.section-recruit__inner.w-1140 h3 {
    font-size: 24px;
    font-weight: 700;

    margin-bottom: 16px;
}

.section-recruit__inner.w-1140 p {
    font-size: 16px;
    line-height: 32px;
    margin-bottom: 40px;
}


.section-recruit__inner::before {
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right top;
    background-image: url(../images/common/rec-bg-parts.png);
}



footer{
    background-color: #353535;
    color: #fff;
    padding-top: 120px;
    padding-bottom: 80px;
}


.section-recruit__inner__wrap{
    position: relative;
    z-index: 3;
}


.column-cat-wrap h3 {
font-size: 30px;
line-height: 1.3;
font-weight: 700;
display: flex;
gap: 3px;
flex-direction: column;
color: #1F41F8;
padding-bottom: 24px;
margin-bottom: 24px;
border-bottom: 1px solid #dedede;
}
.column-cat-wrap h3 span.jp {
    font-size: 14px;
    font-weight: 700;
    color: #353535;
}

ul.column-cat-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-weight: 700;
}

ul.column-cat-list li a{
    padding-left: 38px;
    position: relative;
}
ul.column-cat-list li a::before{
    left:16px;
    height:2px;
    position: absolute;
    content: "";
    top: 12px;
    background-color: #1F41F8;
    width: 12px;
    display: block;
}


/*-- スライダー ======================================*/
/* ドット全体の位置 */
.section-service__inner__content .slick-dots {
  display: flex;
  justify-content: flex-start;
  gap: 7px;          /* バー間の距離 */
  margin-top: 48px;
  margin-left: 0;
  margin-right: auto;
}

/* 1本1本のバーの土台 */
.section-service__inner__content .slick-dots li {
  list-style: none;
  width: 28px;        /* バーの長さ（お好みで） */
  height: 3px;        /* バーの太さ */
  border-radius: 999px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

/* ボタンはクリック領域だけ残して中身は消す */
.section-service__inner__content .slick-dots li button {
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  background: transparent;
  font-size: 0;
  cursor: pointer;
}

/* 青いバー（初期状態：幅0） */
.section-service__inner__content .slick-dots li::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #007bff, #0061ff);
  transition: width .2s ease;
}

/* 通過済みステップ：常に100%だけど少し薄く */
.section-service__inner__content .slick-dots li.is-passed::before {

}

/* 今のスライド：2秒かけて 0 → 100% に伸びる */
.section-service__inner__content .slick-dots li.slick-active::before {
  opacity: 1;
  animation: dotProgress 4s linear forwards;
}

/* 進捗アニメーション */
@keyframes dotProgress {
  from { width: 0; }
  to   { width: 100%; }
}


/* ドット全体の位置 */
.section-column__inner__slider .slick-dots {
  display: flex;
  justify-content: center;
  gap: 7px;             /* バー間の距離 */
  margin-top: 48px;
  margin-left: 0;
  margin-right: auto;
}

/* バーの土台（#C1C1C1 指定） */
.section-column__inner__slider .slick-dots li {
  list-style: none;
  width: 28px;          /* 長さ（Figma通り） */
  height: 3px;          /* 太さ */
  border-radius: 999px;
  background: #fff;  /* ← 白から変更 */
  position: relative;
  overflow: hidden;
}

/* ボタンクリック領域だけ保持、見た目は消す */
.section-column__inner__slider .slick-dots li button {
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  background: transparent;
  font-size: 0;
  cursor: pointer;
}

/* 青い進捗バー（初期 width=0） */
.section-column__inner__slider .slick-dots li::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #C1C1C1, #C1C1C1);
}

/* アクティブ時だけアニメ開始（4秒） */
.section-column__inner__slider .slick-dots li.slick-active::before {
  animation: dotProgress 4s linear forwards;
}

/* 進捗アニメーション */
@keyframes dotProgress {
  from { width: 0; }
  to   { width: 100%; }
}



/*-- 下層共通 ======================================*/

section.parts-head {
    padding-top: 290px;
    padding-bottom: 50px;
    background: #EAEAEA;
    position: relative;
}

section.parts-head::before{
    width: 740px;
    height: 560px;
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right top;
    background-image: url(../images/common/bg-head.png);
}


.parts-head__inner h1{
    display: flex;
    flex-direction: column;
    font-size: 80px;
    line-height: 50px;
    color: #1F41F8;
    position: relative;
    z-index: 2;
    font-weight: 700;
    gap: 28px;
}

.parts-head__inner h1 span{
    font-size: 20px;
    line-height: 29px;
    letter-spacing: .04em;
    color: #353535;
}


/*-- ABOUT ======================================*/

.page-about-intro{
    padding-top: 80px;
    padding-bottom: 120px;
}
.page-about-intro p{
    font-size: 20px;
    line-height: 44px;
    font-weight: 700;
    letter-spacing: .05em;
}


section.page-about-content {
    padding-top: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid #DADADA;
}

section.page-about-content-01{
    border-top: 1px solid #DADADA;
}
.page-about-content__inner.w-1120 {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}
.page-about-content__inner__left {
    width: calc(100% - 387px - 50px);
}
.page-about-content__inner__right{
    width: 387px;
    height: auto;
    object-fit: contain;
    display: block;
}

.page-about-content__inner__right img{
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.page-about-content__inner__text h3{
    font-size: 40px;
    font-weight: 700;
    line-height: 65px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 28px;
}

.page-about-content__inner__text h3 span.eng {
    font-size: 14px;
    font-weight: 700;
    line-height: 30px;
    display: block;
    color: #9D9D9D;
}


.page-about-content__inner__text p{
    line-height: 29px;
    font-size: 14px;
    font-weight: 400;
}


section.page-about-content-last{
    padding-bottom: 150px;
    border-bottom: 0;
}
section.page-about-content-last .page-about-content__inner.w-1120 {
    flex-direction: column;
    gap: 0px;
}

.page-about-content__inner__value__cont ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.page-about-content__inner__value__cont ul li {
    display: flex;
    flex-wrap: wrap;
    width: calc(50% - 10px);
    border: 1px solid #D4D4D4;
    border-radius: 10px;
    padding: 38px 32px;
}

.page-about-content__inner__value__cont ul li a{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 32px;
    pointer-events: none;
}

.page-about-content__inner__value__cont ul li a img{
    width: 48px;
    height: 48px;
    object-fit: contain;
    object-position: center;
}

.page-about-content__inner__value__text-wrap{
    width: calc(100% - 48px - 32px);
    flex-direction: column;
    display: flex;
    gap: 4px;
}


.page-about-content__inner__value__text-wrap .value-ttl{
    font-size: 24px;
    line-height: 32px;
    letter-spacing: .08em;
    font-weight: 700;
    display: block;
}


.page-about-content__inner__value__text-wrap .value-text{
      font-size: 14px;
    line-height: 20px;
    font-weight: 400;
}


.page-about-greeting__inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 64px;
}

section.page-about-greeting{
    padding-top: 120px;
    padding-bottom: 120px;
    background-color: #353535;
    border-radius: 50px;
    color: #fff;
}
.page-about-greeting-youtube.w-1120 iframe{
    width: 100%;
    height: 480px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    border-radius: 30px;
    margin-top: 40px;
}
.section-service-snsmedia__wrap iframe{
    width: 100%;
    height: 400px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    border-radius: 0px;
    margin-top: 40px;
}

.greeting-face{
    border-radius: 40px;
    width: 420px;
    height: auto;
    object-fit: contain;
}

.page-about-greeting__text{
    width: calc(100% - 420px - 64px);
    padding-top: 32px;
    padding-bottom: 40px;
}

.page-about-greeting__text h2.greeting-ttl{
   font-size: 32px;
   line-height: 32px;
   margin-bottom: 36px;

}

.page-about-greeting__text p{
   font-size: 16px;
   line-height: 36px;
   font-weight: 400;
   margin-bottom: 36px;
   
}

section.page-about-company {
    padding-top: 120px;
    padding-bottom: 120px;
}

table.page-about-company__table{
    width: 100%;
}

table.page-about-company__table tbody{
    width: 100%;
}


table.page-about-company__table tr{
    width: 100%;
    display: flex;
    border-bottom: 1px solid #D4D4D4;
    padding-top: 24px;
    padding-bottom: 24px;
    justify-content: space-between;
}
table.page-about-company__table tr th{
    width: 25%;
    max-width: 220px;
    line-height: 24px;
    font-weight: 700;
}
table.page-about-company__table tr td{
    width: 70%;
    max-width: 560px;
    line-height: 24px;
    font-weight: 400;
}

/*-- SERVICE ======================================*/



section.page-service-intro {
    padding-top: 80px;
    padding-bottom: 180px;
}

.page-service-intro__inner.w-1240 {
    display: flex;
    justify-content: space-between;
    gap: 64px;
    align-items: flex-end;
}

.page-service-intro__inner.w-1240 p{
    font-size: 20px;
    line-height: 44px;
    letter-spacing: 0.05em;
    font-weight: 700;
}

.page-service-intro__inner.w-1240 img{
    width: 50%;
    max-width: 525px;
    display: block;
    object-fit: contain;
    object-position: center;
}

h2.page-service-sub-ttl.eng {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1F41F8;
    display: flex;
    gap: 20px;
    align-items: baseline;
}


h2.page-service-sub-ttl span.jp {
    font-size: 20px;
    color: #353535;
}

h1.page-service-main-ttl.eng span.jp{
    font-size: 44px;
    line-height: 64px;
    letter-spacing: .12em;
}

.page-service-strengs__inner.w-1120 h2.ttl-main.eng {
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
section.page-service-strengs{
    position: relative;
}
section.page-service-strengs:before{
    position: absolute;
    background-image: url(../images/service/service-bg-strength.png);
    width: 640px;
    height: 1015px;
    display: block;
    content: "";
    top: -530px;
    left: 0;
    z-index: -1;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center left;
}

.page-service-strengs__inner__wrap {
    display: flex;
    gap: 36px;
    padding: 24px;
    border-radius: 20px;
    border: 1px solid #EAEAEA;
    background: #fff;
}

.page-service-strengs__inner__img{
    width: 360px;
    height: auto;
}

.page-service-strengs__inner__img img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 16px;
}

span.strengs__inner__text__number {
    display: block;
    margin-bottom: 40px;
    font-size: 20px;
    line-height: 20px;
    font-weight: 700;
    color: #1F41F8;
}


.page-service-strengs__inner__text h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 45px;
}


.page-service-strengs__inner__text p {
    font-size: 16px;
    font-weight: 400;
    line-height: 36px;
}


.page-service-strengs__inner__text p span{
    font-weight: 700;
}


/* ▼ スクロールでカードが重なっていく用の追加CSS */

/* セクション全体を sticky の“枠”にする */
.page-service-strengs {
    position: relative;
}

/* 中身全体の下に余白を持たせて、stickyが効く距離を確保 */
.page-service-strengs__inner {
    position: relative;
    padding-bottom: 150px; /* カード枚数・高さによって調整。今は3枚想定でざっくり */
}


/* カード本体。これを“重なりながら”上に揃える */
.page-service-strengs__inner__wrap {
    position: sticky;
    top: 120px;          /* 見出しの少し下で止まる位置。デザインに合わせて微調整 */
    margin-top: 20px;    /* ← カード同士の余白（被る前の間隔） */
    z-index: 1;          /* 後ろに行くほど低くするならここはそのまま */
}

/* 後から出てくるカードほど上に重なる（z-index を少しずつ上げる） */
.page-service-strengs__inner__wrap:nth-of-type(2) {
    z-index: 2;
}
.page-service-strengs__inner__wrap:nth-of-type(3) {
    z-index: 3;
}

/* 後から出てくるカードほど上に重なる（z-index を少しずつ上げる） */
.page-service-strengs__inner__wrap:nth-of-type(3) {
    z-index: 3;
}
.page-service-strengs__inner__wrap:nth-of-type(4) {
    z-index: 4;
}
/* 4枚以上になる場合は同じ要領で足していく */



section.page-service-process {
    background: #353535;
    padding-top: 120px;
    color: #fff;
    border-radius: 50px;
    padding-bottom: 200px;
}


h2.ttl-process.eng {
    font-size: 40px;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 84px;
}

h2.ttl-process.eng span.jp{
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    display: block;
}

.page-service-process__inner__wrap {
    display: flex;
    justify-content: flex-start;
    gap: 50px;
    align-items: center;
}

.page-service-process__inner__img {
    width: 200px;
    height: auto;
    border: 1px solid #737373;
    border-radius: 10px;
    position: relative;
    z-index: 2;
    background-color: #353535;
}



.page-service-process__inner__img img{
    width: 200px;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
}


.service-process__wrap__wrap{
    display: flex;
    flex-direction: column;
    gap: 60px;
    position: relative;
}

.service-process__wrap__wrap::before{
    display: block;
    position: absolute;
    left: 97px;
    width: 1px;
    height: 100%;
    top: 0;
    background-color: #737373;
    content: "";
    z-index: 0;
}


.page-service-process__inner__text h2 {
    font-size: 24px;
    line-height: 45px;
    display: flex;
    gap: 12px;
    align-items: baseline;
    font-weight: 700;
    margin-bottom: 12px;
}

.page-service-process__inner__text h2 span.number{
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
}

.page-service-process__inner__text p{
      font-size: 16px;
    line-height: 36px;
    font-weight: 400;
}
section.page-service__contact{
    position: relative;
    padding-top: 140px;
    padding-bottom: 140px;
    color: #fff;
}
section.page-service__contact:before {
    position: absolute;
    background-image: url(../images/service/service-contact-bg.png);
    width: 100%;
    height: calc(100% + 50px);
    display: block;
    content: "";
    top: -50px;
    left: 0;
    z-index: -1;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center left;
}

section.page-service__contact p{
    line-height: 45px;
    font-size: 24px;
    letter-spacing: .08em;
    font-weight: 700;
    text-align: center;
}


section.page-service__contact a{
    margin-left: auto;
    margin-right: auto;
    line-height: 23px;
    font-size: 30px;
    background-color: #fff;
    border-radius: 8px;
    width: 100%;
    max-width: 300px;
    padding: 25px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 32px;
    color: #1F41F8;
}


.page-service-strengs__inner__text{

    width: calc(100% - 360px - 36px);
}


.page-service-media__tab {
    display: flex;
    gap: 8px;
    margin-top: 60PX;
    margin-bottom: 80px;
    max-width: 528px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 3;
}
.page-service-media__tab a {
  text-decoration: none;
  padding: 16px 16px;
  line-height: 28px;
  text-align: center;
  font-size: 16px;
  border-bottom: 2px solid transparent;
  width: calc(50% - 4px);
  color: #1F41F8;
  border-radius: 10px;
  border: 1px solid;
}

.page-service-media__tab a.is-active {
  border-color: #1F41F8;
  font-weight: 700;
  color: #fff;
  background-color: #1F41F8;
  border-radius: 10px;
  border: 1px solid;
}

.page-service-media__content {
  display: none;
}

.page-service-media__content.is-active {
  display: block;
}


.page-service-media__intro__inner__text{
font-size: 16px;
line-height: 32px;
text-align: center;

}

section.page-service-media__intro{
    padding-top: 80px;
    padding-bottom: 150px;
}

ul.page-service-media__content__list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}
ul.page-service-media__content__list li{
    width: calc(50% - 20px);
}
ul.page-service-media__content__list li a img{
    width: 100%;
    height: 225px;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}
ul.page-service-media__content__list li a{
    display: flex;
    flex-direction: column;
}
span.media__tag {
    display: block;
    width: max-content;
    padding: 4px 16px;
    color: #fff;
    background: #1F41F8;
    border-radius: 10px;
    margin-top: 16px;
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 20px;
}
ul.page-service-media__content__list li h3 {
   font-size: 20px;
   line-height: 29px;
   letter-spacing: .04em;
   font-weight: 700;
}
a.btn-style.btn-style__z-sedai{
    margin-left: auto;
    margin-right: auto;
    margin-top: 80px;
    background-color: #353535;
    color: #fff;
    font-size: 14px;
    line-height: 30px;
}
/*-- PROJECT ======================================*/





/*-- COLUMN ======================================*/
section.archive-column {
    padding-top: 140px;
    padding-bottom: 140px;
}
.archive-column__inner.w-1240{
    display: flex;
    gap: 70px;
}
ul.archive-column__inner__slider {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}.column-cat-wrap{
    width: 240px;
}.column-wrap{
    width: calc(100% - 240px - 70px);
}

ul.archive-column__inner__slider li {
    display: flex;
    flex-direction: column;
    width: calc((100% - 20px) / 2);
}

ul.archive-column__inner__slider li a{
    display: flex;
    flex-direction: column;
}
ul.archive-column__inner__slider li a img{
    width: 100%;
    height: auto;
    object-fit: contain;
}
.archive-column__inner__slider__item__tag__wrap {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 8px;
}

.archive-column__inner__slider__item__text p{
    line-height: 1.65;
    font-size: 16px;
    font-weight: 700;
}
.archive-column__inner__slider__item__text {
    padding: 10px 20px;
}
/*-- RECRUIT ======================================*/
.page-recruit-infomation{
    padding-top: 150px;
    padding-bottom: 150px;
}

section.page-recruit-infomation {
    padding-top: 120px;
    padding-bottom: 120px;
}

table.page-recruit-infomation__table{
    width: 100%;
}

table.page-recruit-infomation__table tbody{
    width: 100%;
}


table.page-recruit-infomation__table tr{
    width: 100%;
    display: flex;
    border-bottom: 1px solid #D4D4D4;
    padding-top: 24px;
    padding-bottom: 24px;
    justify-content: space-between;
}
table.page-recruit-infomation__table tr th{
    width: 25%;
    max-width: 220px;
    line-height: 24px;
    font-weight: 700;
}
table.page-recruit-infomation__table tr td{
    width: 70%;
    max-width: 560px;
    line-height: 24px;
    font-weight: 400;
}

/* ★ display ではなく max-height でアニメーションさせる */
.js-rec-accordion .page-recruit-infomation__block__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

/* ★ 開いた状態（JSが max-height を自動でセットするので空でOK） */
.js-rec-accordion.is-open .page-recruit-infomation__block__body {
  overflow: hidden;
}

.page-recruit-infomation__block__title {
    cursor: pointer;
    position: relative;
    padding-right: 32px;
    font-size: 24px;
    font-weight: 700;
    padding-bottom: 14px;
    border-bottom: 1px solid;
    color: #1F41F8;
}

.page-recruit-infomation__block__title .acc-icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 700;
  transition: transform .3s ease;
}

.js-rec-accordion.is-open .acc-icon {
  transform: translateY(-50%) rotate(45deg);
}

a.page-recruit-infomation__entry-btn {
    display: block;
    margin-top: 80px;
    border-radius: 8px;
    width: 200px;
    color: #fff;
    background-color: #1F41F8;
    text-align: center;
    line-height: 30px;
    font-size: 16px;
    padding: 10px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 700;
}


/*-- CONTACT ======================================*/
.page-contact__tab {
    display: flex;
    gap: 8px;
    margin-top: 60px;
    margin-bottom: 80px;
    max-width: 528px;
    margin-left: auto;
    position: relative;
    z-index: 3;
    margin-right: auto;
}
.page-contact__tab a {
  text-decoration: none;
  padding: 16px 16px;
  line-height: 28px;
  text-align: center;
  font-size: 16px;
  border-bottom: 2px solid transparent;
  width: calc(50% - 4px);
  color: #1F41F8;
  border-radius: 10px;
  border: 1px solid;
}
.page-contact__tab a.is-active {
  border-color: #1F41F8;
  font-weight: 700;
  color: #fff;
  background-color: #1F41F8;
  border-radius: 10px;
  border: 1px solid;
}
.page-contact__content { display: none; }
.page-contact__content.is-active { display: block; }

.page-contact__intro__inner__text {
  font-size: 16px;
  line-height: 32px;
  text-align: center;
}
section.page-contact__intro {
  padding-top: 80px;
  padding-bottom: 150px;
}

table.contact-table {
    width: 100%;
    margin-bottom: 40px;
}

table.contact-table tbody {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

table.contact-table tbody tr{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

table.contact-table tbody tr th{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
}
p.contact-privacy-text {
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}
p.contact-privacy-check {
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
p.contact-privacy-check span.wpcf7-list-item{
    margin-left: 0;
}

p.contact-submit .contact-submit__btn {
    width: 300px;
    height: 70px;
    display: block;
    font-size: 18px;
    line-height: 1.65;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #1F41F8;
    color: #fff;
    border-radius: 10px;
    margin-top: 20px;
}

table.contact-table td span,
table.contact-table td span input[type="text"],
table.contact-table td span input[type="tel"],
table.contact-table td span input[type="email"],
table.contact-table td span input[type="date"],
table.contact-table td span textarea {
  width: 100%;
  display: block;
}


table.contact-table td span input[type="text"],
table.contact-table td span input[type="tel"],
table.contact-table td span input[type="email"],
table.contact-table td span input[type="date"],
table.contact-table td span textarea {
font-size: 18px;
padding: 12px 20px;
border-radius: 4px;
border: 1px solid #CACACA;
}

span.req{
    padding: 2px 10px;
    background-color: #1F41F8;
    border-radius: 10000px;
    display: block;
    width: max-content;
    font-size: 14px;
    color:#fff;
    line-height: 20px;
}


span.un-req{
    display: block;
    width: max-content;
    font-size: 14px;
    color:#9D9D9D;
    line-height: 20px;
}



/* 確認画面用の値表示 */
.contact-confirm-value {
  display: none;
  font-size: 16px;
  line-height: 32px;
}

/* 確認モードの時：入力欄を隠して値だけ出す */
.wpcf7 form.is-confirm .contact-input,
.wpcf7 form.is-confirm .contact-textarea {
  display: none;
}

.wpcf7 form.is-confirm .contact-confirm-value {
  display: block;
}

/* ▼ 確認画面（is-confirm 時）の表示制御 */

/* 個人情報テキスト＆同意チェックを隠す */
.wpcf7 form.is-confirm .contact-privacy-text,
.wpcf7 form.is-confirm .contact-privacy-check {
  display: none;
}

/* 必須 / 任意 ラベルも隠す */
.wpcf7 form.is-confirm .req,
.wpcf7 form.is-confirm .un-req {
  display: none;
}


.wpcf7-response-output {
    display: none !important;
}




.page-thanks__intro a {
    width: 300px;
    height: 70px;
    display: block;
    font-size: 18px;
    line-height: 1.65;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #1F41F8;
    color: #fff;
    border-radius: 10px;
    margin-top: 40px;
}

section.parts-head.parts-head--thanks {
    background: transparent;
}

p.page-thanks__intro__inner__text {
    line-height: 32px;
    font-weight: 500;
}


.page-pricvacy{
    padding-top: 120px;
    padding-bottom: 120px;
}


.page-pricvacy p{
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 16px;
}


.page-pricvacy h2{
    font-size: 20px;
    line-height: 40px;
    margin-bottom: 20px;
    margin-top: calc(44px - 16px);
    font-weight: 700;
    color: #1F41F8;
}

.privacy-btn{
    margin-top: 30px;
}
/* 必要なら：確認モードでは同意チェックを隠す、なども可 */


/*-- THANKS ======================================*/

section.page-thanks__intro{
    padding-bottom: 120px;
}

/*-- PRIVACY ======================================*/


section.archive-projects{
    padding-top: 140px;
    padding-bottom: 140px;
    position: relative;
    z-index: 2;
}

ul.archive-projects__inner__tab.js-projects-tab {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    max-width: 910px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
}

ul.archive-projects__inner__tab.js-projects-tab li {
    display: block;
    width: calc((100% - 12px - 12px - 12px) / 4);
}


ul.archive-projects__inner__tab.js-projects-tab li button{
    width: 100%;
    height: auto;
    padding: 14px;    
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #1F41F8;
    color: #1F41F8;
    border-radius: 8px;
    transition: .25s;
}
ul.archive-projects__inner__tab.js-projects-tab li button:hover{
        background-color: #1F41F8;
    color: #fff;
    transition: .25s;
}

ul.archive-projects__inner__tab.js-projects-tab li button.is-active{
    background-color: #1F41F8;
    color: #fff;
}


ul.archive-projects__inner__content.js-projects-list {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

ul.archive-projects__inner__content.js-projects-list li {
    width: calc((100% - 30px - 30px) / 3);
}
ul.archive-projects__inner__content.js-projects-list li a {
    display: flex;
    flex-direction: column;
}
ul.archive-projects__inner__content.js-projects-list li a h2{
    line-height: 1.5;
    font-size: 20px;
    font-weight: 700;
    transition: .25s;
}

ul.archive-projects__inner__content.js-projects-list li:hover a h2{
    color: #1F41F8;
    transition: .25s;
}

ul.archive-projects__inner__content.js-projects-list li a p{
    margin-top: 8px;
    line-height: 1.6;
    font-size: 14px;
    color: #B5B5B5;
}

span.archive-projects__inner__tag {
    margin-top: 20px;
    margin-bottom: 8px;
    line-height: 1.65;
    display: block;
    font-size: 14px;
    width: max-content;
    max-width: 100%;
    padding: 4px 12px;
    background-color: #4083E0;
    color: #fff;
    border-radius: 4px;
}

span.archive-projects__inner__tag.archive-projects__inner__tag__media{
    background-color: #E977A1;
}


span.archive-projects__inner__tag.archive-projects__inner__tag__movie{
    background-color: #F59516;
}
span.archive-projects__inner__tag.archive-projects__inner__tag__sns{
    background-color: #4083E0;
}



@media screen and (max-width:1240px) {
    h2.ttl-main {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #1F41F8;
    display: flex;
    gap: 20px;
    align-items: baseline;
}
.w-1120,
.w-1240,
.w-1140,
.w-1000,
.w-840,
.w-800,
.w-740{
    width: 100%;
    height: auto;
    padding-left: 20px;
    padding-right: 20px;
}

header#header {
    padding: 16px 20px;
}

.section-main__inner {
    padding-top: 34vw;
    padding-bottom: 16vw;
}
.section-main__inner::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(../images/top/top-content-bg.png);
    background-position: left top;
    transform: translate(0%,0%);
    transform-origin: center center;
    z-index: -1;
    width: calc(100% + 60px);
    height: 100%;
    left: 20px;
    top: 100px;
    background-size: contain;
}
.section-about__inner.w-1120 h2 {
    font-size: 28px;
    line-height: 2.5;
}
.section-about__inner.w-1120 p {
    line-height: 2.5;
    font-size: 14px;
    letter-spacing: .05em;
    margin-bottom: 32px;
}
a.btn-style {
    width: 200px;
    padding: 8px;
    line-height: 2;
    font-size: 14px;
}
section.section-about {
    padding-top: 120px;
    padding-bottom: 120px;
}
.section-service__inner {
    padding-top: 120px;
    padding-bottom: 120px;
}
section.section-service-case::after {
    width: 60%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom right;
}.section-service__inner__content__li div p {
    font-size: 14px;
}

section.section-recruit{
    padding-left: 20px;
    padding-right: 20px;
}

section.section-column::before {
    content: "";
    position: absolute;
    background-image: url(../images/common/bg-items.png);
    background-position: left bottom;
    background-repeat: no-repeat;
    background-size: contain;
    height: 50%;
    width: 100%;
    left: 0;
    bottom: 0;
}
.section-service-snsmedia {
    padding-top: 80px;
    padding-bottom: 120px;
    position: relative;
}
.parts-head__inner h1 {
    font-size: 64px;
    line-height: 1.5;
    gap: 8px;
}
.parts-head__inner h1 span {
    font-size: 18px;
    line-height: 1;
}
section.parts-head::before {
    width: 50%;
    height: 100vh;
    content: "";
    position: absolute;
    right: 0;
    top: 0;
}

section.parts-head {
    padding-top: 180px;
    padding-bottom: 50px;
    background: #EAEAEA;
    position: relative;
}
.page-about-intro {
    padding-top: 80px;
    padding-bottom: 80px;
}
.page-about-intro p {
    font-size: 18px;
    line-height: 2;
    font-weight: 700;
    letter-spacing: .05em;
}
.page-about-content__inner__text h3 {
    font-size: 28px;
    font-weight: 700;
    line-height: 2;
    gap: 8px;
    margin-bottom: 24px;
}
.page-about-content__inner__left h2.ttl-main {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}
.page-about-content__inner__value__cont ul li {
    padding: 20px 24px;
}
.page-about-content__inner__value__text-wrap .value-ttl {
    font-size: 20px;
    line-height: 1;
}
.page-about-content__inner__value__text-wrap .value-text {
    font-size: 14px;
    line-height: 1.65;
    font-weight: 400;
}
section.page-about-content-last {
    padding-bottom: 100px;
    border-bottom: 0;
}
section.page-about-greeting {
    padding-top: 100px;
    padding-bottom: 100px;
}
.page-about-greeting__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.page-about-greeting__text {
    width: calc(100% - 420px - 24px);
    padding-top: 24px;
    padding-bottom: 32px;
}
.page-about-greeting__text h2.greeting-ttl {
    font-size: 24px;
    line-height: 2;
    margin-bottom: 18px;
}
.page-about-greeting__text p {
    font-size: 14px;
    line-height: 2.5;
    font-weight: 400;
    margin-bottom: 24px;
}
section.page-about-company {
    padding-top: 100px;
    padding-bottom: 100px;
}
table.page-about-company__table tr {
    padding-top: 18px;
    padding-bottom: 18px;
}
table.page-about-company__table tr th {
    width: 15%;
    max-width: 220px;
    line-height: 24px;
    font-weight: 700;
}
table.page-about-company__table tr td {
    width: 85%;
    max-width: 580px;
    line-height: 24px;
    font-weight: 400;
}
.section-recruit__inner.w-1140 h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}
.section-recruit__inner::before {
    width: 100%;
    height: 90%;
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    top: auto;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right top;
    background-image: url(../images/common/rec-bg-parts.png);
}
section.section-recruit {
    padding-top: 80px;
    padding-bottom: 80px;
    background: #EAEAEA;
}
.page-service-intro__inner.w-1240 p {
    font-size: 16px;
    line-height: 2;
}
section.page-service-strengs:before {
    position: absolute;
    background-image: url(../images/service/service-bg-strength.png);
    width: 50%;
    height: 100vh;
    display: block;
    content: "";
    top: -20vw;
    left: 0;
    z-index: -1;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center left;
}
.page-service-process__inner__text p br{
    display: none;
}
.page-service-process__inner__text {
    width: calc(100% - 250px);
}
h1.page-service-main-ttl.eng span.jp {
    font-size: 32px;
    line-height: 1.5;
    letter-spacing: .12em;
}
h2.page-service-sub-ttl.eng {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1F41F8;
    display: flex;
    gap: 20px;
    align-items: baseline;
}
h2.page-service-sub-ttl span.jp {
    font-size: 16px;
    color: #353535;
}
.page-service-media__tab {
    display: flex;
    gap: 8px;
    margin-top: 40PX;
    margin-bottom: 80px;
    max-width: 528px;
    margin-left: auto;
    margin-right: auto;
}
ul.page-service-media__content__list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}ul.page-service-media__content__list li {
    width: calc(50% - 10px);
}
ul.page-service-media__content__list li h3 {
    font-size: 18px;
    line-height: 1.65;
    letter-spacing: .04em;
    font-weight: 700;
}
ul.page-service-media__content__list li a img {
    width: 100%;
    height: 25vw !important;
}
.page-service-media__intro__inner__text,
.page-contact__intro__inner__text {
    font-size: 14px;
    line-height: 2;
    text-align: center;
}
.section-recruit__inner.w-1140{
    padding: 50px;
}
}


.sp-img{
    display: none;
}

br.sp{
    display: none;
}

br.pc{
    display: block;
}

@media screen and (max-width:1100px) {
    nav.header__nav ul {
    display: flex;
    justify-content: flex-end;
    gap: 48px;
    flex-direction: column;
    position: fixed;
    left: 50%;
    top: 50%;
    width: 100vw;
    height: 100vh;
    background: #fff;
    z-index: 99999;
    transform: translate(-50%, -50%);
    display: none;
}

}

@media screen and (max-width:640px) {

.section-main__inner h2 {
    font-size: 32px;
    line-height: 1.5;
    letter-spacing: .04em;
    font-weight: 700;
    margin-bottom: 8px;
    color: #353535;
    text-align: center;
}
.section-main__inner h3 {
    font-size: 14px;
    line-height: 1;
    font-weight: 400;
    color: #9D9D9D;
    text-align: center;
}
.section-main__inner::after{
    display: none !important;
}
.sp-img {
    display: block;
    position: relative;
    left: -20px;
    width: calc(100% + 40px);
    height: auto;
    margin-top: 22px;
}
section.section-about {
    border-radius: 25px;
    position: relative;
    padding-top: 14px;
    padding-bottom: 80px;
}
section.section-about > picture {
    position: relative;
    left: 0;
    top: 0;
    transform: none;
    width: 100%;
    height: auto !important;
    object-fit: contain;
    object-position: left center;
}

section.section-about > picture img{
    width: 100%;
    height: auto !important;
    object-fit: contain;
    object-position: left center;
}
.section-about__inner__content {
    width: 100%;
    margin-left: auto;
    margin-right: 0;
}
.section-about__inner.w-1120 h2 {
    font-size: 20px;
    margin-top: 40px;
    line-height: 2.5;
    margin-bottom: 24px;
}
.section-about__inner.w-1120 h2 span.eng {
    font-size: 10px;
    letter-spacing: .0em;
    line-height: 1;
    color: #9D9D9D;
}
.section-about__inner.w-1120 p {
    line-height: 2.5;
    font-size: 14px;
    letter-spacing: .05em;
    margin-bottom: 24px;
}
.section-service__inner__content__wrap div{
    height: auto !important;
}
.section-service__inner__content__wrap div img{
    height: auto !important;
}
.section-service__inner__content__li .section-service__inner__content__img {
    width: 100%;
    display: block;
    height: auto !important;
    order: 1;
}
.section-service__inner__content__wrap div {
    width: 100%;
    order: 2;
}
.section-service__inner__content__wrap {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 16px;
    flex-direction: column;
}
.section-service__inner__content__li {
    background-color: #fff;
    padding: 16px;
    padding-bottom: 44px;
    border-radius: 20px;
    width: 100%;
    height: auto !important;
}
.section-service__inner__content__li h3 {
    font-size: 20px;
    line-height: 1.5;
    margin-top: 0;
    margin-bottom: 12px;
}
h2.ttl-main span.jp {
    font-size: 14px;
    color: #353535;
}
h2.ttl-main.eng img {
    width: 20px;
    height: 20px;
}
.section-service__inner {
    padding-top: 80px;
    padding-bottom: 64px;
}

h2.ttl-main {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #1F41F8;
    display: flex;
    gap: 14px;
    align-items: baseline;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

section.section-service-case::after {
display: none !important;
}
.section-case__inner .btn-style{
    margin: auto;
    margin-bottom: 32px;
}
.section-case__inner.w-1120 {
    padding-bottom: 0;
}
section.section-service-case {
    background: #EAEAEA;
    border-radius: 0 0 25px 25px;
    position: relative;
}
.section-case__inner.w-1120 p {
    line-height: 2;
    letter-spacing: .05em;
    font-size: 14px;
    text-align: center !important;
}

br.sp{
    display: block;
}

.section-service-snsmedia__text {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
    gap: 12px;
}
.section-service-snsmedia__text p {
    line-height: 2;
    font-size: 12px;
    font-weight: 400;
    color: #424242;
}
a.btn-style.btn-style-out {
    gap: 10px;
    padding: 5px 18px;
    max-width: 100%;
    width: max-content;
    line-height: 2;
    font-size: 12px;
}
section.section-column {
    padding-top: 80px;
    padding-bottom: 80px;
    background: #353535;
    color: #fff;
    border-radius: 25px;
}
.section-column__inner h3 {
    font-size: 24px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    font-weight: 700;
    flex-direction: column;
    margin-bottom: 40px;
}
.section-column__inner h3 span.jp {
    font-size: 14px;
    line-height: 1;
    letter-spacing: .04em;
}
.section-recruit__inner.w-1140 p {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 40px;
    text-align: center;
}
.section-recruit__inner.w-1140 h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
    line-height: 1.65;
}
.section-recruit__inner::before {
    display: none !important;
}
a.btn-style {
    width: 200px;
    padding: 8px;
    line-height: 2;
    font-size: 14px;
    margin: auto;
    margin-bottom: 32px;
}
.section-recruit__inner.w-1140 {
    padding: 40px 20px 0;
}
.section-main__inner {
    padding-top: 120px;
    padding-bottom: 48px;
}

.parts-head__inner h1 {
    font-size: 40px;
    line-height: 1.5;
    gap: 8px;
}
.page-about-intro p {
    font-size: 14px;
    line-height: 2;
    font-weight: 700;
    letter-spacing: .05em;
}
.page-about-content__inner.w-1120 {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-direction: column;
}
.page-about-content__inner__text h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 2;
    gap: 8px;
    margin-bottom: 24px;
}
.page-about-content__inner__left {
    width: 100%;
}
.page-about-content__inner__right {
    width: 80%;
    height: auto;
    object-fit: contain;
    display: block;
    margin: auto;
}
.page-about-content__inner__value__cont ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
    flex-direction: column;
}.page-about-content__inner__value__cont ul li {
    padding: 20px 24px;
    width: 100%;
}
.page-about-content__inner__value__cont ul li a img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    object-position: center;
}
.page-about-content__inner__value__text-wrap {
    width: calc(100% - 28px - 16px);
    flex-direction: column;
    display: flex;
    gap: 4px;
    line-height: 1.5;
}
.page-about-content__inner__value__text-wrap .value-ttl {
    font-size: 18px;
    line-height: 1;
}
.page-about-greeting__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-direction: column;
}
.page-about-greeting__text {
    width: 100%;
    padding-top: 24px;
    padding-bottom: 32px;
    order: 1;
}
.greeting-face {
    border-radius: 40px;
    width: 100%;
    height: auto;
    object-fit: contain;
    max-width: 360px;
    margin: auto;
    order: 2;
}
section.page-about-greeting {
    padding-top: 80px;
    padding-bottom: 80px;
    border-radius: 25px;
}
.page-about-greeting__text {
    width: 100%;
    padding-top: 0;
    padding-bottom: 16px;
    order: 1;
}
.page-about-greeting__text p {
    font-size: 14px;
    line-height: 2;
    font-weight: 400;
    margin-bottom: 20px;
}
table.page-about-company__table tr {
    padding-top: 18px;
    padding-bottom: 18px;
    flex-direction: column;
    gap: 12px;
}
table.page-about-company__table tr th,
table.page-about-company__table tr td {
    width: 100%;
    max-width: 100%;
    line-height: 1.65;
}
.page-service-intro__inner.w-1240 {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.page-service-intro__inner.w-1240 p {
    font-size: 14px;
    line-height: 2;
    width: 100%;
}.page-service-intro__inner.w-1240 img {
    width: 100%;
    max-width: 525px;
    display: block;
    object-fit: contain;
    object-position: center;
    margin: auto;
    margin-top: 24px;
}
.page-service-strengs__inner__wrap {
    display: flex;
    gap: 20px;
    padding: 16px;
    padding-bottom: 32px;
    border-radius: 20px;
    border: 1px solid #EAEAEA;
    background: #fff;
    flex-direction: column;
}.page-service-strengs__inner__text {
    width: 100%;
}
.page-service-strengs__inner__img {
    width: 100%;
    height: auto;
}span.strengs__inner__text__number {
    display: block;
    margin-bottom: 12px;
    font-size: 12px;
    line-height: 1.65;
    font-weight: 700;
    color: #1F41F8;
}
.page-service-strengs__inner__text p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.65;
}
.page-service-strengs__inner__text h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.65;
}
.page-service-strengs__inner__img img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 16px;
    height: 50vw;
    max-height: 300px;
    width: 100%;
    object-fit: cover;
}
.page-service-strengs__inner__text p br{
    display: none;
}
.page-service-strengs__inner {
    position: relative;
    padding-bottom: 80px;
}
section.page-service-process {
    background: #353535;
    padding-top: 80px;
    color: #fff;
    border-radius: 25px;
    padding-bottom: 80px;
}
h2.ttl-process.eng {
    font-size: 32px;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 24px;
}.page-service-process__inner__img{
    width: 100%;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
}
.page-service-process__inner__img img {
    width: 80%;
    margin: auto;
    display: block;
}.page-service-process__inner__wrap {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    align-items: center;
}
.page-service-process__inner__text {
    width: calc(100% - 170px);
}
.page-service-process__inner__wrap {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    align-items: center;
    flex-direction: column;
    width: 100%;
}
.page-service-process__inner__text {
    width: 100%;
}
section.page-service__contact p {
    line-height: 2.5;
    font-size: 20px;
    letter-spacing: .08em;
    font-weight: 700;
    text-align: center;
}
.page-service-process__inner__wrap {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    align-items: center;
    flex-direction: column;
    width: 100%;
}
.service-process__wrap__wrap::before {
    display: block;
    position: absolute;
    left: 97px;
    width: 1px;
    height: 100%;
    top: 0;
    background-color: #737373;
    content: "";
    z-index: 0;
    display: none !important;
}
.page-service-process__inner__text p {
    font-size: 14px;
    line-height: 2;
    font-weight: 400;
}
.page-service-process__inner__text h2 {
    font-size: 20px;
    line-height: 2;
    display: flex;
    gap: 12px;
    align-items: baseline;
    font-weight: 700;
    margin-bottom: 12px;
}

section.page-service__contact a {
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    font-size: 18px;
    background-color: #fff;
    border-radius: 8px;
    width: 100%;
    max-width: 300px;
    padding: 16px 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 22px;
    color: #1F41F8;
}
section.page-service__contact {
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
    color: #fff;
}
section.parts-head {
    padding-top: 290px;
    padding-bottom: 50px;
    background: #EAEAEA;
    position: relative;
}
section.parts-head::before {
    width: 310px;
    height: 280px;
    content: "";
    position: absolute;
    right: 0;
    top: 0;
}
br.pc{
    display: none;
}

.page-service-media__tab a,
.page-contact__tab a {
    text-decoration: none;
    padding: 10px 11px;
    line-height: 28px;
    text-align: center;
    font-size: 12px;
    border-bottom: 2px solid transparent;
    width: calc(50% - 4px);
    color: #1F41F8;
    border-radius: 10px;
    border: 1px solid;
}
ul.page-service-media__content__list li {
    width: 100%;
}
ul.page-service-media__content__list li a img {
    width: 100%;
    height: 55vw !important;
}
.page-service-media__intro__inner__text, .page-contact__intro__inner__text {
    font-size: 14px;
    line-height: 2;
    text-align: left;
}
.page-service-media__intro__inner__text br, 
.page-contact__intro__inner__text br{
    display: none;
}
.page-service-media__tab,
.page-contact__tab {
    display: flex;
    gap: 8px;
    margin-top: 40PX;
    margin-bottom: 32px;
    max-width: 528px;
    margin-left: auto;
    margin-right: auto;
}
a.btn-style.btn-style__z-sedai {
    margin-left: auto;
    margin-right: auto;
    margin-top: 32px;
    background-color: #353535;
    color: #fff;
    font-size: 14px;
    line-height: 30px;
}
section.page-service-media__intro {
    padding-top: 80px;
    padding-bottom: 80px;
}
.page-recruit-infomation__block__title {
    cursor: pointer;
    position: relative;
    padding-right: 32px;
    font-size: 18px;
    font-weight: 700;
    padding-bottom: 14px;
    border-bottom: 1px solid;
    color: #1F41F8;
}
table.page-recruit-infomation__table tr {
    flex-direction: column;
    gap: 8px;
    padding-top: 14px;
    padding-bottom: 14px;
}table.page-recruit-infomation__table tr td,
table.page-recruit-infomation__table tr th{
    width: 100%;
}
table.contact-table td span input[type="text"], table.contact-table td span input[type="tel"], table.contact-table td span input[type="email"], table.contact-table td span input[type="date"], table.contact-table td span textarea {
    font-size: 16px;
    padding: 12px 20px;
    border-radius: 4px;
    border: 1px solid #CACACA;
}
p.contact-privacy-text {
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 2;
    text-align: left;
}
p.page-thanks__intro__inner__text {
    line-height: 2;
    font-weight: 500;
    font-size: 14px;
}
.page-pricvacy {
    padding-top: 80px;
    padding-bottom: 80px;
}
}
.logo-footer {
    position: relative;
    display: block;
    width: max-content;
    padding: 60px;
    background-color: #fff;
    border-radius: 0 20px 20px 0;
    margin-right: 260px;
}.footer__inner {
    display: flex;
    align-items: flex-start;
}
.logo-footer img{
    position: relative;
    display: block;
    width: 160px;
    height: auto;
    object-fit: contain;
}

.logo-footer__pc__navigation__wrap{
    padding-top: 40px;
    display: flex;
    gap: 100px;
}

.logo-footer__pc__navigation__wrap ul.footer-nav-pc {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.logo-footer__pc__navigation__wrap ul.footer-nav-pc > li{
font-size: 20px;
font-weight: 700;
letter-spacing: .03em;
}
.logo-footer__pc__navigation__wrap ul.footer-nav-pc > li > ul{
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.logo-footer__pc__navigation__wrap ul.footer-nav-pc > li > ul li{
   font-size: 14px;
   padding-left: 25px;
   position: relative;
   line-height: 1.5;
   font-weight: 400;
}

.logo-footer__pc__navigation__wrap ul.footer-nav-pc > li > ul li::before{
   position: absolute;
   left: 0;
   content: "";
   top: 10px;
   width: 15px;
   height: 1px;
   background-color: #fff;
}

.copy-right{
    padding-top: 19px;
    padding-bottom: 50px;
    border-top: 1px solid #7C7C7C;
    font-size: 14px;
    text-align: center;
    background-color: #353535;
    color: #fff;
}


@media screen and (max-width:640px) {
    .logo-footer {
    position: relative;
    display: block;
    width: max-content;
    padding: 26px;
    background-color: #fff;
    border-radius: 0 20px 20px 0;
    margin-right: 0;
}
.footer__inner {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}.logo-footer img{
    width: 72px;
    height: auto;
}
.logo-footer {
    position: relative;
    display: block;
    width: max-content;
    padding: 26px;
    background-color: #fff;
    border-radius: 0 10px 10px 0;
    margin-right: 0;
}
footer {
    background-color: #353535;
    color: #fff;
    padding-top: 80px;
    padding-bottom: 80px;
}
.logo-footer__pc__navigation__wrap {
    padding-top: 40px;
    display: flex;
    gap: 20px;
    flex-direction: column;
    padding-left: 20px;
    padding-right: 20px;
}
.logo-footer__pc__navigation__wrap ul.footer-nav-pc {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.logo-footer__pc__navigation__wrap {
    padding-top: 50px;
    display: flex;
    gap: 20px;
    flex-direction: column;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
}
ul.archive-projects__inner__tab.js-projects-tab li {
    display: block;
    width: calc((100% - 12px - 0px - 0px) / 2);
}
ul.archive-projects__inner__content.js-projects-list li {
    width: calc((100% - 0px - 0px) / 1);
}
.column-wrap {
    width: 100%;
    order: 2;
}
.archive-column__inner.w-1240 {
    display: flex;
    gap: 70px;
    flex-wrap: wrap;
}
.column-cat-wrap {
    width: 100%;
    order: 1;
}
ul.archive-column__inner__slider li {
    display: flex;
    flex-direction: column;
    width: 100%;
}
section.archive-column {
    padding-top: 80px;
    padding-bottom: 140px;
}
.archive-column__inner__slider__item__text {
    padding: 20px 0px;
}
a.header__logo {
    display: block;
    width: 40px;
    height: 50px;
    position: relative;
    z-index: 2;
}
section.page-service-intro {
    padding-bottom: 80px;
}
}

nav.sp-nav{
    display: none;
}

/* ========== SP NAV (1100px以下のみ) ========== */
@media screen and (max-width:1100px){

    .header__nav { display:none; }

.sp-nav-btn {
    position: absolute;
    top: 50%;
    right: 20px;
    width: 36px;
    height: 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2001;
    cursor: pointer;
    transform: translateY(-50%);
}
    .sp-nav-btn span {
        display:block;
        width:100%; height:3px;
        background:#1F41F8; border-radius:3px;
        transition:.3s;
    }
    .sp-nav-btn.active span:nth-child(1){ 
        background:#fff;transform: translateY(11px) rotate(45deg);}
    .sp-nav-btn.active span:nth-child(2){ 
        background:#fff;opacity:0;}
    .sp-nav-btn.active span:nth-child(3){ 
        background:#fff;transform: translateY(-11px) rotate(-45deg);}

    .sp-nav {
        position: fixed;
        inset: 0;
        background: #0057FF; /* あなたの青色 */
        z-index: 2000;
        display:none;
        overflow-y:auto;
        padding: 90px 30px 50px;
    }

    .sp-nav__menu > li{
        margin-bottom: 16px;
        line-height: 1.5;
    }

    .sp-nav__menu a{
        display:block;
        font-size:20px;
        font-weight:700;
        color:#fff;
    }

    .sp-nav__menu .has-child > ul{
        margin-top:10px;
    }
    .sp-nav__menu .has-child > ul li{
        margin-bottom:8px;
        padding-left:25px;
        position: relative;
        line-height: 1.5;
    }

    .sp-nav__menu .has-child > ul li::before{
    position: absolute;
    left: 0;
    content: "";
    top: 10.5px;
    width: 15px;
    height: 1.5px;
    background-color: #fff;
    }
    .sp-nav__menu .has-child > ul a{
        font-size:15px;
        font-weight:400;
    }
}


.single-column__title{
    font-size: 32px;
    line-height: 1.5;
    margin-bottom: 20px;
    font-weight: 700;
}
.single-column__header {
    margin-bottom: 40px;
}

.single-column__toc {
    padding: 20px 24px;
    margin-bottom: 40px;
    background: #f9f9f9;
    border-radius: 10px;
}
.single-column__toc h2{
    font-size: 20px;
    line-height: 2;
    font-weight: 700;
    color: #1F41F8;
    margin-bottom: 14px;
}


.toc-item a:hover {
    text-decoration: underline;
}


li.toc-item.toc-h2 a {
    font-size: 18px;
    line-height: 2;
    margin-bottom: 4px;
    font-weight: 700;
    position: relative;
}

li.toc-item.toc-h2 a::before {
    width: 4px;
    height: 4px;
    content: "";
    display: inline-block;
    background-color: #1F41F8;
    border-radius: 100000px;
    margin-right: 15px;
    top: -4px;
    position: relative;
}

li.toc-item.toc-h3{
    padding-left: 20px;
    font-size: 16px;
    line-height: 2;
    margin-bottom: 2px;
    position: relative;
    font-weight: 500;
}

.single-column__content > p {
    line-height: 2;
    margin-top: 40px;
    letter-spacing: .04em;
}

.single-column__content h2 {
    font-size: 24px;
    margin-top: 40px;
    line-height: 2;
    font-weight: 700;
    color: #1F41F8;
}

.single-column__content h3 {
    font-size: 20px;
    margin-top: 40px;
    line-height: 2;
    font-weight: 700;
    padding-bottom: 8px;
    border-bottom: 2px solid #1F41F8;
    width: 100%;

}

blockquote.wp-block-quote {
    padding: 24px;
    line-height: 2;
    font-weight: 700;
    border: 3px solid #1F41F8;
    margin-top: 40px;
    border-radius: 10px;
}

ul.wp-block-list {
    margin-top: 40px;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

ul.wp-block-list li{
    margin-bottom: 8px;
    line-height: 2;
    font-size: 16px;
    letter-spacing: .05em;
    color: #1F41F8;
    font-weight: 700;
    position: relative;
}

ul.wp-block-list li::before {
    width: 4px;
    height: 4px;
    content: "";
    display: inline-block;
    background-color: #1F41F8;
    border-radius: 100000px;
    margin-right: 15px;
    top: -4px;
    position: relative;
}

figure.wp-block-table {
    margin-top: 40px;
}
.single-column__eyecatch {
    margin-bottom: 40px;
    text-align: center;
}

.single-column__eyecatch img {
max-width: 100%;
height: auto;
object-fit: contain;
}

.archive-column__inner__slider__item__images {
    height: 250px;
    overflow: hidden;
    border-radius: 10px;
}

ul.archive-projects__inner__content.js-projects-list li a img{
        height: 250px;
    overflow: hidden;
    border-radius: 10px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.archive-column__inner__slider__item__images img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
ul.archive-column__inner__slider {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.archive-column__inner.w-1240 {
    display: flex;
    gap: 70px;
    position: relative;
    z-index: 2;
}

ul.page-numbers {
    display: flex;
    gap: 24px;
    font-weight: 700;
    justify-content: center;
    margin-top: 94px;
    align-items: center;
    font-size: 20px;
}

ul.page-numbers li span{
    color: #1F41F8;
}
a.next.page-numbers {
    width: 52px;
    height: 52px;
    display: flex;
    font-size: 16px;
    justify-content: center;
    align-items: center;
    border-radius: 100000000px;
    background: #1F41F8;
    color: #fff;
    margin-left: 20px;
}

a.prev.page-numbers {
    width: 52px;
    height: 52px;
    display: flex;
    font-size: 16px;
    justify-content: center;
    align-items: center;
    border-radius: 100000000px;
    background: #1F41F8;
    color: #fff;
    margin-right: 20px;
}


@media screen and (max-width:640px){
    section.archive-column.single-column .column-cat-wrap {
    width: 100%;
    order: 2;
}
.single-column__title {
    font-size: 22px;
    line-height: 1.5;
    margin-bottom: 20px;
    font-weight: 700;
}
li.toc-item.toc-h3 {
    padding-left: 14px;
    font-size: 14px;
    line-height: 2;
    margin-bottom: 2px;
    position: relative;
    font-weight: 500;
}
.single-column__content > p {
    line-height: 2;
    margin-top: 32px;
    letter-spacing: .04em;
    font-size: 14px;
}
ul.wp-block-list li {
    margin-bottom: 8px;
    line-height: 2;
    font-size: 14px;
    letter-spacing: .05em;
    color: #1F41F8;
    font-weight: 700;
    position: relative;
}
ul.wp-block-list {
    margin-top: 24px;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}
.single-column__content h3 {
    font-size: 16px;
    margin-top: 32px;
    line-height: 2;
    font-weight: 700;
    padding-bottom: 8px;
    border-bottom: 2px solid #1F41F8;
    width: 100%;
}
.wp-block-buttons.is-layout-flex.wp-block-buttons-is-layout-flex {
    text-align: center;
    justify-content: center;
}
li.toc-item.toc-h2 a {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 4px;
    font-weight: 700;
    position: relative;
}
}

section.single-projects {
    padding-top: 140px;
    padding-bottom: 140px;
}

h1.single-projects__title {
    font-size: 32px;
    line-height: 1.5;
    font-weight: 700;
    margin-bottom: 20px;
}

section.single-projects__block.single-projects__block--q,
section.single-projects__block.single-projects__block--approach,
section.single-projects__block.single-projects__block--a{
    margin-top: 40px;
}

section.single-projects__block.single-projects__block--q h2,
section.single-projects__block.single-projects__block--approach h2,
section.single-projects__block.single-projects__block--a h2{
    font-size: 20px;
    font-weight: 700;
    color: #1F41F8;
    padding-left: 32px;
    margin-bottom: 20px;
    position: relative;
}



section.single-projects__block.single-projects__block--q h2::before,
section.single-projects__block.single-projects__block--approach h2::before,
section.single-projects__block.single-projects__block--a h2::before{
    left: 0;
    top: 10px;
    width: 20px;
    content: "";
    height: 3px;
    display: block;
    position: absolute;
    background-color: #1F41F8;
}



section.single-projects__block.single-projects__block--q p,
section.single-projects__block.single-projects__block--approach p,
section.single-projects__block.single-projects__block--a p{
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6;
}
section.single-projects__block.single-projects__block--a p span{
    color: #E96B39;
    font-size: 24px;
}

section.single-projects__block.single-projects__block--other {
    margin-top: 20px;
}
.single-projects__other-item h3{
    font-weight: 700;
    margin-bottom: 8px;

}
.single-projects__other-item {
    margin-top: 20px;
}
.single-projects__other-item p{
    line-height: 1.6;
}

@media screen and (max-width:640px) {
    section.single-projects {
    padding-top: 80px;
    padding-bottom: 80px;
}
h1.single-projects__title {
    font-size: 24px;
    line-height: 1.5;
    font-weight: 700;
    margin-bottom: 20px;
}
section.single-projects__block.single-projects__block--q, section.single-projects__block.single-projects__block--approach, section.single-projects__block.single-projects__block--a {
    margin-top: 32px;
}
section.single-projects__block.single-projects__block--q h2, section.single-projects__block.single-projects__block--approach h2, section.single-projects__block.single-projects__block--a h2 {
    font-size: 18px;
    font-weight: 700;
    color: #1F41F8;
    padding-left: 32px;
    margin-bottom: 20px;
    position: relative;
}
section.single-projects__block.single-projects__block--q p, section.single-projects__block.single-projects__block--approach p, section.single-projects__block.single-projects__block--a p {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
}
.single-projects__other-item p{
    line-height: 1.6;
    font-size: 14px;
}
.page-about-greeting-youtube.w-1120 iframe {
    width: 100%;
    height: 50vw;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    border-radius: 0px;
    margin-top: 40px;
}
.section-service-snsmedia__wrap iframe {
    width: 100%;
    height: 50vw;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    border-radius: 0px;
    margin-top: 0px;
}
.section-service-snsmedia__text a.btn-style.btn-style-out{
margin-bottom:0;
}
}
.out-site-link {
    color: #979797;
    font-size: 14px;
    margin-top: 14px;
    display: flex;
    width: max-content;
    max-width: 100%;
    align-items: center;
    gap: 10px;
}

.out-site-link img {
    display:block;
    width:24px;
    height:24px;
}