@charset "UTF-8";

/*!
Theme Name: feelsofree
Description: コーポレートサイト
Version:    1.1.3
*/

html {
    scroll-behavior: smooth;
}
body {
    font-family: "游ゴシック体", "Yu Gothic", "YuGothic", "Hiragino kaku Gothic ProN", "Noto Sans JP", "Meiryo", "Roboto Condensed", "Robot","Barlow Condensed", sans-serif;
    color: #FFFFFF;
}

section {
    overflow: hidden;
    max-width: 86.11%;
    margin: 0 auto;
}

a {
    text-decoration: none;
}

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

.section-title, .section-title_sp {
    color: transparent;
    -webkit-text-stroke: 1px #FFFFFF;
    font-family: "Barlow Condensed";
}

.sp-br {
    display: none;
}


@media screen and (max-width: 1024px) {
    section {
    max-width: 100%;
}
}

/* ヘッダー */
.header {
    position: fixed;
    padding: 20px 41px;
    width: 100%;
    overflow: hidden;
    z-index: 9998;
}

.header__bg {
    background: rgb(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    z-index: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

}

.header__inner {
    position: relative;
    display: flex;
    align-items: center;
    gap: 37px;
}

.header.sticky .header__bg {
    opacity: 1;
}

.site-title {
    width: 8.95%;
}

.site-title img {
    object-fit: cover;
}

.site-title a:hover, .navigation__item a:hover {
    opacity: 0.7;
    transition: .3s;
}

.global__navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 37px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}

.sp-nav__log {
    display: none;
}

.sp-nav__log img {
    object-fit: cover;
}

.navigation__item {
    font-size: 0.75rem;
    line-height: 1.33;
    letter-spacing: 0.1em;
    font-weight: 400;
    font-family: "Roboto";
}

.navigation__item a:hover {
    opacity: 0.7;
    transition: .3s;
}

.hamburger {
    width: 21px;
    height: 21px;
    overflow: hidden;
    cursor: pointer;
    z-index: 9999;
    margin: 0 10px 0 0;
    position: relative;
    display: none;
}

.hamburger__line  {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    background-color: #FFFFFF;
    height: 1px;
    width: 100%;
    transition: 0.3s;
}

.hamburger__line::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #FFFFFF;
    position: absolute;
    top: 5.5px;
    transition: 0.3s;
}

.hamburger__line::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #FFFFFF;
    position: absolute;
    top: 11px;
    transition: 0.3s;
}

.hamburger.open .hamburger__line {
    background-color: transparent;
    box-shadow: none;
}

.hamburger.open .hamburger__line::before {
    top: 6px;
    transform: translateY(6px) rotate(-45deg);
}

.hamburger.open .hamburger__line::after {
    top: 18px;
    transform: translateY(-6px) rotate(45deg);;
}

@media screen and (max-width: 1024px) {
.header {
    padding: 17px 20px;
    overflow: hidden;
}

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

.header__inner.show {
    top: 0;
    left: 0;
}

.site-title {
    width: 20%;
}

.navigation__item {
    font-size: 0.75rem;
    line-height: 1.33;
    letter-spacing: 0.1em;
    font-weight: 400;
    font-family: "Roboto";
}

.navigation__item a:hover {
    opacity: 0.7;
    transition: .3s;
}

nav {
    overflow: hidden;  
    position: fixed;
    top: -130%;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: #222020;
    transition: top 0.6s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 0 0 33% 0;
}

nav.show {
    top: 0;
}

.global__navigation {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
    top: 42.8%;
}

.global__navigation .navigation__item a {
    color: white;
    font-size: 1rem;
    text-decoration: none;
}

.sp-nav__log {
    display: block;
    margin-top: 2rem;
}

.hamburger {
    width: 21px;
    height: 21px;
    margin-top: 10px;
    overflow: hidden;
    cursor: pointer;
    z-index: 10001;
    position: relative;
    display: block;
}

.hamburger__line  {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    background-color: #FFFFFF;
    height: 1px;
    width: 100%;
    transition: 0.3s;
}

.hamburger__line::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #FFFFFF;
    position: absolute;
    top: 5.5px;
    transition: 0.3s;
}

.hamburger__line::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #FFFFFF;
    position: absolute;
    top: 11px;
    transition: 0.3s;
}

.hamburger.open .hamburger__line {
    background-color: transparent;
    box-shadow: none;
}

.hamburger.open .hamburger__line::before {
    top: 6px;
    transform: translateY(6px) rotate(-45deg);
}

.hamburger.open .hamburger__line::after {
    top: 18px;
    transform: translateY(-6px) rotate(45deg);;
}

.sp-br {
    display: block;
}
}

@media screen and (max-width: 768px) {
.header {
    padding: 13px 20px;
}

.site-title {
    width: 33%;
}

}

/* CONTACT */
#contact {
    max-width: 100%;
    background: #000000;
    padding: 135px 12.98% 114px 10.41%;
    display: flex;
    justify-content: center;
    gap: 10%;
	position: relative;
}

.contact-text_area {
    width: 33.54%;
}

#contact .section-title {
    font-size: 2.25rem;
    line-height: 1.39;
    letter-spacing: 0.1em;
    margin-bottom: 18px;
}

.contact__lead {
    font-size: 1.25rem;
    line-height: 1.03;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    font-weight: bold;
}

.contact__text {
    font-size: 0.875rem;
    line-height: 2.14;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.wpcf7 {
    width: 55%;
}

.wpcf7-form init {
    width: 50%;
}

.contact-form__wrapper {
    width: 100%;
	    margin-bottom: 32px;
}

.contact__group {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 53px;
    margin-bottom: 11px;
}


.wpcf7-form-control-wrap:first-child {
    margin-bottom: 10px;
}

.wpcf7-form-control-wrap {
    width: 70%;
}

.wpcf7-list-item-label {
    font-size:  0.875rem;
    line-height: 1.4;
    letter-spacing: 0.1em;
    padding-right: 22px;
    cursor: pointer;
    display: inline-block;
    margin-bottom: 9px;
}

.wpcf7-list-item {
    margin: 0;
    flex-wrap: nowrap;
}

.wpcf7-checkbox input[type="checkbox"] {
    display: inline-block;
    appearance: none;
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    border: 2px solid #FFFFFF;
    background-color: #B5B5B5;
    cursor: pointer;
    border-radius: 50%;
    position: relative;
    transition: background-color 0.2s ease;
    cursor: pointer;
    margin-right: 15px;
}

.wpcf7 input[type="checkbox"]:checked {
  background-color: #000000;
  border-color: #ffffff;
}

input[type="radio"]:checked + .wpcf7-list-item-label::after {
    display: block;
}

input[type="radio"] {
    position: relative;
}

.contact__label, .contact__label-required {
    font-size: 0.9375rem;
    letter-spacing: 0.1em;
    line-height: 1.5;
    width: 168px;
    text-align: right;
}

.contact__label-required {
    position: relative;
}

.contact__label-required::after {
    position: absolute;
    content: "＊";
    width: 6px;
    height: 6px;
    top: -4px;
    right: -4px;
}

.contact__input, .contact__text-input {
    width: 100%;
    border: 1px solid #FFFFFF;
    border-radius: 3px;
    padding: 10px;
}

.contact__text-input {
    height: 151px;
}

.privacy-area {
    overflow: scroll;
    background: #FFFFFF;
    height: 200px;
}

.privacy-btn {
	text-align: center;
	margin-bottom: 24px;
}

.privacy {
    display: block;
    text-align: center;
    margin: 59px 0 33px 0;
	padding-left: 2rem;
}

.privacy-btn .wpcf7-list-item-label {
    position: relative;
}

.acceptance-btn {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    top: 50%;
    left: 50%;
    transform: translateY(-50%);
    z-index: 1;
    width: 15px;
    height: 15px;
    cursor: pointer;
}

.privacy-btn .wpcf7-list-item-label::before {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    border: 1px solid #fff;
    position: absolute;
    left: -22px;
    top: 50%;
    transform: translateY(-50%);
}

.acceptance-btn:checked + .wpcf7-list-item-label::after {
    content: "";
    position: absolute;
    top: 4%;
    left: -20px;
    border-left: 3px solid #FFFFFF;
    border-bottom: 3px solid #FFFFFF;
    transform: rotate(-45deg);
    width: 15px;
    height: 12px;
    text-align: center;
    opacity: 1;
}

.wpcf7-list-item-label::after {
    content: "";
    opacity: 0;
    transition: opacity 0.3s;
}

[type="button"], [type="reset"], [type="submit"] {
    display: block;
    padding: 9px 48px;
    border: 1px solid #FFFFFF;
    border-radius: 20px;
    margin: 0 auto;
}

[type="button"], [type="reset"], [type="submit"]:hover {
    color: #000000;
    border: 1px solid #FFFFFF;
    background: #FFFFFF;
}

.privacy-area {
    background: #FFFFFF;
    overflow: scroll;
    height: 200px;
    margin-top: 40px;
    margin-left: auto;
    width: 90%;
}

.privacy-inner {
    padding: 16px;
}

.privacy-area .privacy__text, .privacy__item, .privacy__text_bottom {
    font-size: 0.875rem;
    color: #000000;
    line-height: 1.3;
}

.privacy__list {
    margin: 32px 0;
}

.privacy__item {
    margin-bottom: 24px;
}

.privacy-area .privacy__text {
margin-bottom: 16px;
}

.privacy__item-title {
    margin-bottom: 8px;
}

.privacy__text_bottom {
    margin-bottom: 8px;
}



@media screen and (max-width: 1024px) {
    #contact {
    background: #000000;
    padding: 117px 35px 100px 35px;
    flex-direction: column;
    justify-content: space-between;
}

.contact-text_area {
    width: 85%;
    margin-bottom: 89px;
}

.contact__text {
    font-size: 0.875rem;
    line-height: 2.14;
    letter-spacing: 0.03em;
    font-weight: 500;
}

.wpcf7 {
    width: 100%;
}

.contact-form__wrapper {
    width: 100%;
}

.contact__group {
    width: 100%;
    flex-direction: column;
    justify-content: start;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 30px;
}

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


.wpcf7-form-control-wrap {
    width: 100%;
}

.wpcf7-form-control.wpcf7-radio {
    display: flex;flex-wrap: wrap;
}

input[type="radio"]:checked + .wpcf7-list-item-label::after {
    display: block;
}

input[type="radio"] {
    position: relative;
}

.contact__label, .contact__label-required {
    font-size: 0.9375rem;
    letter-spacing: 0.1em;
    line-height: 1.5;
    width: auto;
    text-align: left;
}

.contact__label-required {
    position: relative;
}

.contact__label-required::after {
    width: 5px;
    height: 6px;
    top: 0;
    right: -7px;
}

.contact__input, .contact__text-input {
    width: 100%;
    padding: 10px;
}

.contact__text-input {
    height: 151px;
}

.acceptance {
    margin: 50px 0;
    text-align: center;
}

.acceptance .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-acceptance .wpcf7-list-item-label::before {
    display: inline-block;
    content: "";
    width: 12px;
    height: 12px;
    border: 2px solid #FFFFFF;
    margin-right: 10px;
}

.acceptance .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-acceptance .wpcf7-list-item-label::after {
    position: absolute;
    display: block;
    content: "";
    width: 8px;
    height: 8px;
    top: 50%;
    left: 2px;
    transform: translateY(-50%);
    background: #A7A7A7;
    display: none;
}

.privacy-area {
    background: #FFFFFF;
    overflow: scroll;
    height: 200px;
    margin-top: 40px;
    margin-left: auto;
    width: 100%;
}


}

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

#contact {
    background: #000000;
    padding: 117px 20px 100px 20px;
    flex-direction: column;
    justify-content: space-between;
}


.contact-text_area {
    width: 100%;
}

.check__area {
    width: 82%;
}

.privacy-inner {
    padding: 8px;
}

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


.wpcf7-list-item-label {
    font-size: 0.93rem;
    padding-right: 32px;

}

.contact__label-required::after {
    width: 5px;
    height: 6px;
    top: -5px;
    right: -3px;
}

.privacy__text_bottom {
    margin-bottom: 0;
}
}

@media screen and (max-width: 320px) {
.check__area {
    width: 101%;
}
}

/* フッター */
#footer {
    background: #000000;
    padding: 0 12.98% 0 10.41%;
	position: relative;
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 47px 0 27px 0;
    border-top: 1px solid #707070;
}

.footer__log {
    width: 23.47%;
}

.footer__log img {
    object-fit: cover;
}

.copy {
    font-size: 0.625rem;
    letter-spacing: 0.01em;
    font-family: "Robot", sans-serif;
}

@media screen and (max-width: 1024px) {
#footer {
    background: #000000;
    padding: 0 5.12%;
}

.footer__inner {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 36px;
    padding: 36px 0 23px 0;
    border-top: 1px solid #707070;
}

.footer__log {
    width: 46.15%;
}

}


/* topページ */
.mv {
    width: 100%;
    height: 100vh;
    position: relative;
}

.mv__wrapper {
  line-height: 0;
}

.mv__wrapper {
    position: sticky;
    top: 0;
    height: 100vh;
    z-index: -1;
}

.mv video {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%,-50%);
    width: auto;
    height: auto;
    z-index: 0;
    object-fit: cover;
}

.mv-sp {
    display: none;
}
.mv-pc {
    display:block;
}

.scroll {
    position: absolute;
    font-size: 1rem;
    letter-spacing: 0.1em;
    font-weight: 400;
    bottom: 92px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

.scroll::after {
    position: absolute;
    content: "";
    width: 27px;
    height: 27px;
    border-bottom: 1px solid #FFFFFF;
    border-right: 1px solid #FFFFFF;
    top: 30px;
    left: 50%;
    transform: rotate(45deg) translateX(-50%);
    margin: auto;
}

@media screen and (max-width: 1024px) {
.scroll {
    display: none;
}

.mv-pc {
    display: none;
}

.mv-sp {
    display: block;
}
}

.bg-img {
    position: relative;
    z-index: 10;
}

.bg-contents {
    position: sticky;
    z-index: -1;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;

}

.bg-contents img {
    object-fit: cover;
    height: 100%;
}

/* VISION */

#vision {
    margin-top: -100vh;
}
.vision-wrapper {
    position: relative;
    padding-bottom: 128px;
}

.vision__inner {
    padding: 178px 0 128px 0;
}

.vision__inner .section-title_sp {
    display: none;
}

#vision .vision__inner .h2 {
    font-size: clamp(2rem, 1.929rem + 0.36vw, 2.25rem);
    letter-spacing: 0.1em;
    line-height: 1.86;
    font-weight: bold;
    margin-bottom: 73px;
}

#vision .vision__inner .h2 span {
    color: #000000;
    padding: 12px 8px;
    margin-right: 12px;
    background: linear-gradient(transparent 0%, #FFF 0%);
}

.vision-text { 
    font-size: clamp(0.938rem, 0.848rem + 0.45vw, 1.25rem);
    line-height: 2.5;
    letter-spacing: 0.3em;
    margin-bottom: 50px;
}

.vision-text:last-child {
    margin-bottom: 70px;
}

.vision-text_vertical{
    font-size:   clamp(1.563rem, 1.366rem + 0.98vw, 2.25rem);
    line-height: 1.39;
    letter-spacing: 0.1em;
    writing-mode: vertical-rl;
    position: absolute;
}

#vision .vision-text_vertical {
    top: 194px;
    right: 0;
}

.vision-img {
    display: block;
    padding-left: 4%;
}

.vision-img img {
    object-fit: cover;
}

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

.vision__inner {
    padding: 136px 10%;
}
}

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

.vision-wrapper {
    position: relative;
    padding-bottom: 0;
}

.vision__inner {
    padding: 136px 18px 50px 18px;
}

.vision__inner .section-title_sp {
    display: block;
    font-size: clamp(1.563rem, 1.366rem + 0.98vw, 2.25rem);
    line-height: 1.39;
    letter-spacing: 0.08em;
}

.vision-text { 
    font-size:  0.875rem;
    margin-bottom: 25px;
    letter-spacing: 0.1em;
}


.vision-text:last-child {
    margin-bottom: 0;
}

#vision .section-title.vision-text_vertical {
    display: none;
}

.vision__inner.section-title_sp {
    display: block;
}

#vision .vision-text_vertical {
    right: 10%;
}

.vision-img {
    margin-bottom: 64px;
}
}

/* WORKS */
#works {
    max-width: 100%;
	padding: 0;
}

.works__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 12.98% 47.5px 10.41%;
}

.works__section-title {
    font-size:  clamp(2.5rem, 2.321rem + 0.89vw, 3.125rem);
    line-height: 1.4;
    letter-spacing: 0.1em;
}

.works__info {
    font-size: 0.75rem;
    line-height: 1.33;
    letter-spacing: 0.1em;
    font-weight: normal;
    position: relative;
}

.works__info::after {
    position: absolute;
    content: "";
    width: 99px;
    height: 1px;
    background: #FFFFFF;
    top: 20px;
    left: 0;
}

.works__info:hover {
    transform: translateX(8px);
    transition: .3s;
}

.works-arrow {
    display: inline-block;
    padding: 0.5em 1em;
    margin-left: 10px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
}

.works-arrow.disabled {
    pointer-events: none;
    opacity: 0.4;
    cursor: default;
}

.works__info::before {
    content: "";
    background: url(imgs/arrow.webp);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    width: 12px;
    height: 10px;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
}

.works__wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 85px;
}


.works__item  {
    width: 100%;
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.works__item img {
    display: block;
}

.overlay {
    position: absolute;
    width: 70%;
    height: 70%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: rgb(0, 0, 0, 0.4);
    opacity: 0;
    transition: all .4s ease;
}

.works__item:hover .overlay {
    width: 100%;
    height: 100%;
    opacity: 1;
}

.works__wrp_sp {
    display: none;
}

.works__item .works_date {
    position: absolute;
    bottom: 10%;
    left: 10%;
    opacity: 0;
    transition: 0.4s;
    font-family: "游ゴシック体", "Yu Gothic", "YuGothic", "Hiragino kaku Gothic ProN", "Noto Sans JP", "Meiryo";
    z-index: 200;
}

.img-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.img-wrapper img {
    object-fit: cover;
}

.img-f {
    aspect-ratio: 360/322;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(4px); 
    display: block;
}

.img-c {
    aspect-ratio: 360/214;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%; 
}

.works__item .works__title {
    font-size: 1rem;
    position: absolute;
    bottom: 15%;
    left: 10%;
    opacity: 0;
    transition: 0.4s;
    margin-bottom: 8px;
    z-index: 200;
}

.works__item:hover .works_date, .works__item:hover .works__title {
    opacity: 1;
}

.works__guide {
    font-size: clamp(1.938rem, 1.223rem + 3.57vw, 4.438rem);
    line-height: 1.39;
    letter-spacing: 0.1em;
    font-weight: 500;
    text-align: center;
    margin-bottom: 144px;
    font-family: "Barlow Condensed";
}

.works__wrp_sp .works_date, .works__wrp_sp .works_title{
    margin-bottom: 4px;;
}

.works__guide span {
    color: #000000;
    -webkit-text-stroke: 1px #FFFFFF;
}

.works__guide:hover {
    color: #000000;
    -webkit-text-stroke: 1px #FFFFFF;
}
.works__guide:hover.works__guide span {
    color: #FFFFFF;
    -webkit-text-stroke: 1px #000000;
}


@media screen and (max-width: 1024px) {
    .works__inner {
    background: url(imgs/black-bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    padding-bottom: 144.5px;
}

.works__nav {
    display: block;
}

.works__section-title {
    text-align: center;
    margin-bottom: 24px;
}

.works__info {
    display: none;
}

.works__wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 85px;
}

.works__item  {
    width: 50%;
}
.works__wrp_sp {
    display: block;
    margin-top: 16px;
}



.overlay {
    display: none;
}

.works__wrp {
    display: none;
}

.works__item .works_date {
    font-size: 0.75rem;
    left: 5%;
}

.works__item .works__title {
    font-size: 0.75rem;
    position: absolute;
    bottom: 10%;
    left: 5%;
    opacity: 0;
    transition: 0.4s;
    z-index: 200;
}
}

.gradient-blend {
    height: 5px;
    background: linear-gradient(
    rgb(22, 22, 22),
    rgb(18, 18, 18),
    rgb(21, 21, 21));
}

@media screen and (max-width: 768px) {
.works__wrapper {
    margin-bottom: 37px;
}

.works__section-title {
    margin-bottom: 0;
}

.works__nav {
    padding-bottom: 35px;
}

.works__item .works__title {
    font-size: 0.75rem;
    position: absolute;
    bottom: -3%;
    left: 5%;

}

}

/* SERVICE */
.service__bg {
    background: linear-gradient(180deg, rgb(0 0 0 / 0%) 0%, rgb(17 16 16 / 50%) 35%, rgb(90 85 85 / 50%) 50%, rgb(173 171 171) 75%, rgba(239, 239, 239, 1) 90%, rgba(255, 255, 255, 1) 100%);
}
#service {
	padding-bottom: 142px;

}

#service .service-wrapper .section-title {
    font-size: clamp(2rem, 1.929rem + 0.36vw, 2.25rem);
    line-height: 1.39;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.service-wrapper {
    display: flex;
    margin-bottom: 125px;
}

.works__lead {
    width: 46%;
}

#service .service-wrapper__title {
    font-size: clamp(2rem, 1.929rem + 0.36vw, 2.25rem);
    line-height: 1.86;
    letter-spacing: 0.1em;
    font-weight: bolder;
    display: inline-block;
}

#service .service-wrapper__title_bottom {
    margin-bottom: 66px;
}

#service .service-wrapper__title span {
    font-size: 2.25rem;
    color: #000000;
    padding: 0 16px;
    background: linear-gradient(transparent 0%, #FFF 0%);
    margin-bottom: 18px;
    display: block;
}

.service__inner {
    max-width: 510px;
    padding: 21px 28px;
    border: 1px solid #FFFFFF;
    border-radius: 3px;
}

.service__inner_pc {
    display: block;
}

.service__inner_sp {
    display: none;
}

.service-title {
    font-size:  1rem;
    line-height: 1.86;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.service__list {
    display: flex;
    flex-wrap: wrap;
    gap: 0 14px;
    justify-content: start;
}

.service__list-item {
    position: relative;
    font-size:  1rem;
    letter-spacing: 0.1em;
    line-height: 1.86;
}

.service__list-item:nth-child(1), .service__list-item:nth-child(2)  {
    order: 1;
}

.service__list-item:nth-child(3), .service__list-item:nth-child(4), .service__list-item:nth-child(5){
    order: 2;
}

.service__list::after {
    content: "";
    flex-basis: 100%;
    order: 1;
    }

.service__list-item::after {
    position: absolute;
    content: "・";
    width: 2px;
    height: 2px;
    border-radius: 50%;
    color: #FFFFFF;
    top: 0;
    
}

.service__list-item:last-child::after {
    content: "";
}

.service__text-area {
    width: 54%;
    padding: 50px 0 0 7%;
}

.service__text {
    font-size: clamp(0.938rem, 0.848rem + 0.45vw, 1.25rem);
    line-height: 3;
    letter-spacing: 0.08em;
}

@media screen and (max-width: 1024px) {
#service {
    padding: 0 5.12% 142px;
}

#service .service-wrapper .section-title {
    margin-bottom: 31px;
}

#service .service-wrapper__title span {
    font-size: 2rem;
    color: #000000;
    padding: 10px;
    background: linear-gradient(transparent 0%, #FFF 0%);
}

.service-wrapper {
    flex-direction: column;
    justify-content: center;
    gap: 12%;
    margin-bottom: 125px;
}

.works__lead {
    width: 100%;
}

#service .service-wrapper .h2 {
    margin-bottom: 53px;
}

#service .service-wrapper .h2 span {
    padding: 8px 12px 8px 8px;
}

.service__inner {
    max-width: 100%;
}

.service__inner_pc {
    display: none;
}

.service__inner_sp {
    display: block;
}

.service-title {
    font-size: 0.875rem;
}

.service__list-item {
    font-size: 0.875rem;
}

.service__list-item:nth-child(2)::after, .service__list-item:nth-child(4)::after  {
    position: absolute;
    content: "";
}


.service__text-area {
    width: 100%;
    margin-bottom: 31px;
    padding: 0;
}

.service__text {
    letter-spacing: 0.1em;
}
}

@media screen and (max-width: 768px) {
#service {
    padding: 0 5.12% 0;
}

	.service__bg {
    background: linear-gradient(180deg, rgb(0 0 0 / 0%) 0%, rgb(17 16 16 / 0%) 35%, rgb(90 85 85 / 0%) 50%, rgb(173 171 171 / 2%) 75%, rgb(239 239 239 / 43%) 90%, rgba(255, 255, 255, 1) 100%)
}
	
.service__text {
    letter-spacing: 0;
    line-height: 2;
}

#service .service-wrapper__title_bottom {
    margin-bottom: 33px;
}


#service .service-wrapper__title span {
    font-size: 1.9rem;
    color: #000000;
    padding: 10px;
}

#service .service-wrapper__title {
    font-size: 1.9rem;
}

}


/* COMPANY */
.company__bg {
    background-color: #FFFFFF;
}
#company {
	padding-bottom: 116px;
}

#company .section-title {
    color: transparent;
    -webkit-text-stroke: 1px #000000;
    font-size: clamp(1.875rem, 1.518rem + 1.79vw, 3.125rem);
    line-height: 1.4;
    margin-bottom: 48px;
}

.company__list-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-bottom: 1px solid #A7A7A7;
}

.list-item__text_left, .list-item__text_right {
    font-size:  0.97rem;
    line-height: 1.08;
    letter-spacing: 0.1em;
    color: #000000;
    padding: 23px 0 18px;
    font-weight: bold;
}

.list-item__text_left {
    width: 200px;
    text-align: left;
    padding-left: 51px;
}

.list-item__text_right-pc {
    display: block;
}

.list-item__text_right-sp {
    display: none;
}

@media screen and (max-width: 1024px) {
#company {
    padding: 0 8.4% 116px 4.8%;
}
}

@media screen and (max-width: 768px) {
    #company {
    padding: 0 5.12% 116px;
}

#company .section-title {
    margin-bottom: 37px;
    text-align: center;
}


.company__list-item {
    align-items: flex-start;
    gap: 0;
}

.list-item__text_left, .list-item__text_right {
    font-size:  0.875rem;
    line-height: 1.08;
    letter-spacing: 0.1em;
    color: #000000;
    padding: 23px 0 18px;
    line-height: 2;
    padding-left: 5%;
}

.list-item__text_left {
    width: 90px;
    text-align: left;
}

.list-item__text_right-pc {
    display: none;
}

.list-item__text_right-sp {
    display: block;
}
}

/* MEMBER */
.member__bg {
    background-color: #FFFFFF;

}

#member {
	padding-bottom: 178px;
}

#member .section-title {
    color: transparent;
    -webkit-text-stroke: 1px #000000;
    font-size: clamp(1.875rem, 1.518rem + 1.79vw, 3.125rem);
    line-height: 1.4;
    margin-bottom: 48px;
}

.member__list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 108px;
}

.member__list-item {
    width: 100%;
}

.list-item__wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-bottom: 27px;
    border-bottom: 1px solid #707070;
    transition: .2s;
}

.member__summary {
    width: 48%;
    padding-left: 20px;
    white-space: nowrap;
    overflow: visible;
}

.list-item__wrapper.is-hovered {
    border-color: transparent;
}


.member-img {
    width: 47.85%;
    overflow: hidden;
    border-radius: 50%;
}

.member-img img {
    display: block;
    transition-duration: .5s;

}

.list-item__wrapper:hover .member-img img {
    transform: scale(1.2);
}

.job-title, .name-en, .name-jp {
    color: #000000;
    font-family: "Roboto";
}

.job-title {
    font-size: 0.625rem;
    line-height: 1.7;
    font-weight: normal;
}

.name-en {
    font-size: 0.875rem;
    line-height: 1.86;
    font-weight: bold;
}

.name-jp {
    font-size: 0.75rem;
    line-height: 1.5;
    letter-spacing: 0.1em;
}

.sns {
    width: 12px;
    display: inline-block;
    padding-right: 2px;
}

.member__text {
    color: #000000;
    font-size:  0.875rem;
    line-height: 1.64;
    letter-spacing: 0.05em;
    display: none;
    padding: 16px 0;
    border-bottom: 1px solid #707070;
}


@media screen and (max-width: 1024px) {
#member {
    padding: 0 5.12% 178px;
}

.member__list-item {
    width: 90%;
}

.list-item__wrapper {
    justify-content: space-around;
}

.member__list {
    gap: 20px;
}

.member__summary {
    padding-left: 12px;
}

}

@media screen and (max-width: 768px) {
#member {
    padding: 0 5.12% 178px;
}

#member .section-title {
    text-align: center;
}

.member__list {
    grid-template-columns: 1fr;
    gap: 48px;
}

.member__list-item {
    width: 100%;
}

.hidden-member {
    display: none;
}

.member__more-btn {
    margin-top: 62px;
}

#toggle-members {
    display: block;
    color: #FFFFFF;
    -webkit-text-stroke: 1px #000000;
    font-size: 1.93rem;
    letter-spacing: 0.1em;
    line-height: 1.39;
    /* font-weight: bold; */
    font-family: "Barlow Condensed";
    margin: 0 auto;
}

#toggle-members span {
    color: #000000;
    -webkit-text-stroke: 1px #000000;
}

.member-img {
    width: 30.85%;
    overflow: hidden;
    border-radius: 50%;
}

.member-img img {
    display: block;
    transition-duration: .5s;
}

.list-item__wrapper:hover .member-img img {
    transform: scale(1.2);
}

.job-title, .name-en, .name-jp {
    color: #000000;
    font-family: "Roboto";
}

.job-title {
    font-size: 0.625rem;
    line-height: 1.7;
    font-weight: normal;
}

.name-en {
    font-size: 0.875rem;
    line-height: 1.86;
    font-weight: bold;
}

.name-jp {
    font-size: 0.75rem;
    line-height: 1.5;
    letter-spacing: 0.1em;
}

.sns {
    width: 12px;
    display: inline-block;
    padding-right: 2px;
}

.member__text {
    color: #000000;
    font-size:  0.875rem;
    line-height: 1.64;
    letter-spacing: 0.05em;
    display: none;
    padding: 16px 0;
    border-bottom: 1px solid #707070;
}
}

/* MESSAGE */

#message {
    height: auto;
    max-width: 100%;
	padding: 0;
}

.message-video__area {
    position: relative;
    width: 100vw;
    height: 1800px;
    overflow: hidden;
}

.message-video__area video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0 0 0 auto;
    position: fixed;
}

.message-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.message-overlay img {
    height: 100%;
}

.message__inner {
    display: flex;
    justify-content: flex-end;
    padding: 300px 0 140px 10.41%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#message .section-title {
    font-size:  2.1rem;
    writing-mode: vertical-lr;
    position: absolute;
    top: 300px;
    left: 25.41%;
}

.message__area {
    width: 75.06%;
    padding-left: 9%;
    padding-bottom: 100px;
}

.message__text {
    font-size: clamp(1.125rem, 0.911rem + 1.07vw, 1.875rem);
    line-height: 2;
    margin-bottom: 60px;
    letter-spacing: 0.1em;
    font-weight: bold;
}

.message-img {
    width: 83.35%;
    margin-top: 61px;
}

.message-img img {
    object-fit: cover;
}

@media screen and (max-width: 1024px) {
    .message__area {
    padding-left: 9%;
    padding-bottom: 0;
}

#message .section-title {
    left: 21.41%;
}

}

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

.message-video__area {
    height: 1150px;
}

.message__inner {
    flex-direction: column;
    justify-content: flex-start;
    padding: 200px 8.9% 127px;
}

#message .section-title {
    font-size:  2.1rem;
    writing-mode: inherit;
    position: absolute;
    top: 100px;
    left: 8.9%;
}

.message__area {
    width: 100%;
    padding-left: 0;
    padding-bottom: 0;
}

.message__text {
    letter-spacing: 0;
    margin-bottom: 36px;
}

.message-img {
    width: 100%;
}
}

/* 制作実績ページ */


.works-all {
    padding: 160px 0;
    position: relative;
    max-width: 100%;
}

.works-all__bg-img {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: url(imgs/black-bg.webp);
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.lower-works__nav {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 7.29%;
}

.cate__area {
    width: 170px;
    margin-left: auto;
    margin-right: 7.29%;
    margin-bottom: 75px;
}

.works-tab__area {
    width: 170px;
}
.works-tab__list {
    display: none;
    padding: 30px 0 0 0;
}

.cat-btn {
    display: block;
    margin-bottom: 8px;
    font-family: "Roboto Condensed";
}

.cat-btn:hover {
    opacity: 0.7;
    transition: .3s;
}

.works-tab {
    position: relative;
    font-size: 1.313rem;
    padding: 0 66px 0 6px;
    cursor: pointer;
}

.works-tab::after {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    border: 0;
    border-bottom: 1px solid #FFFFFF;
    border-right: 1px solid #FFFFFF;
    top: 4px;
    right: 8px;
    transform: rotate(45deg);
    margin: auto;
}

.works-tab::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: #FFFFFF;
    bottom: -8px;
    left: 0;
}


.works-all .lower-works__nav .section-title {
    font-size:  clamp(2.625rem, 2.482rem + 0.71vw, 3.125rem);
    line-height: 1.4;
    letter-spacing: 0.1em;
}

.works-all .lower-works__nav .section-title span {
    color: #FFFFFF;
}

.works__title-tab-list {
    margin-bottom: 37px;
}

.works__title {
    font-size: 1.25rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
}

.lower-works__wrapper {
    width: 80.72%;
    margin: 0 auto;
}

.works__item-group {
    width: 100%;
}

.item-group{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 61px 4.6%;
    margin-bottom: 58px;
}

.lower-works__wrapper .works__item-group .works__item {
    width: 100%;
    height: 100%;
}

.pagination {
    text-align: center;
}


.pagination li {
    display: inline-block;
    font-size: 1.125rem;
    line-height: 1.33;
    letter-spacing: 0.1em;
    cursor: pointer;
    padding: 5px 0;
    transition: all .2s;
	margin: 0 8px;
}

.pagination li.active {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #FFFFFF;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    padding: 0;
	margin-right: 8px;
}

.pagination li button{
  min-width: 2.2em;
  overflow: visible;
  text-overflow: clip;
  white-space: nowrap;
}

.works-arrow::before,.works-arrow::after { 
    content:none; 
}

@media screen and (max-width: 768px) {
    .works-all {
    padding: 160px 20px;
}

.lower-works__nav {
    padding: 0;
}

.cate__area {
    width: 140px;
    margin-right: 36px;
}

.works-tab__area {
    width: 140px;
}

.works-all .lower-works__nav .section-title {
    letter-spacing: 0.03em;
}

.works-tab {
    padding: 0 56px 0 6px;
}

.cate__area {
    margin-right: 0;
}

.cat-btn {
    font-size: 0.813rem;
}

.works__title-tab-list {
    margin-bottom: 25px;
    padding: 0;
}

.works__title {
    font-size: 1.25rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
}

.lower-works__wrapper {
    width: 100%;
}

.works__item-group {
    width: 100%;
}

.item-group{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 40px 17px;
    margin-bottom: 58px;
}

.works-all .works__item .works_date {
    position: static;
    opacity: 1;
}

.works-all .works__item .works__title {
    position: static;
    opacity: 1;
}

.pagination li.active {
    width: 25px;
    height: 25px;
}
}


/* 実績投稿ページ */

.l-mv__area {
    position: relative;
	padding-top: 80px;
	background: url(imgs/black-bg.webp);
	background-repeat: no-repeat;
	background-size: cover;
}

.l-mv__img {
    aspect-ratio: 100 / 40;
    width: 100%;
}

.l-mv__area  img {
    object-fit: cover;
}

.l-mv__area::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgb(0, 0, 0, 0.3);
}

.l-mv-text__area {
    width: 100%;
    position: absolute;
    top: 50%;
    text-align: center;
    z-index: 2;
}

.l-mv__title, .l-mv__date, .next__title, .next__date {
    font-family: "游ゴシック体", "Yu Gothic", "YuGothic", "Hiragino kaku Gothic ProN", "Noto Sans JP", "Meiryo";
}

.l-mv__title, .next__title {
    font-size: clamp(1.188rem, 0.813rem + 1.88vw, 2.5rem);
    line-height: 1.25;
    letter-spacing: 0.1em;
    font-weight: bold;
    margin-bottom: 9px;
}

.l-mv__data, .next__date {
    font-size: clamp(0.75rem, 0.679rem + 0.36vw, 1rem);
    line-height: 2.5;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.video__area {
    background: url(imgs/black-bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 185px;
}

.l-video {
    margin: 0 auto;
    height: 486px;
}

.l-video iframe {
    width: 100%;
    height: 100%;
}

.production {
    width: 100%;
    padding: 77px 5.12%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.production .section-title {
    color: transparent;
    -webkit-text-stroke: 1px #000000;
    font-size: 2.5rem;
    line-height: 1.4;
    font-weight: 500;
    margin-bottom: 15px;
    gap: 194px;
}

.crew__list .job-name {
    font-family: "Roboto";
    color: #A7A7A7;
    font-size: 0.875rem;
    line-height: 1.36;
    letter-spacing: 0.1em;
}

.crew__list .name {
    color: #000000;
    font-size: 1.25rem;
    font-family: "Roboto";
    font-weight: bold;
    margin-bottom: 20px;
}

.member__area {
    width: 50%;
}

.member__area .section-title {
    margin-bottom: 23px;
}

.lower-member__list {
    display: flex;
    gap: 40px;
}

.lower-member__list-item {
    width: 45%;
    cursor: pointer;
}

.lower-list-item__wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 27px;
    border-bottom: 1px solid #707070;
}

.lower-list-item__wrapper.is-hovered {
    border-color: transparent;
}

.lower-list-item__wrapper  .member-img {
    width: 47.85%;
}

.lower-member__text {
    color: #000000;
    font-size:  0.875rem;
    line-height: 1.64;
    letter-spacing: 0.05em;
    display: none;
    padding: 16px 0;
    border-bottom: 1px solid #707070;
}

.next__area {
    position: relative;
}

.next__area::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgb(0, 0, 0, 0.3);
}

.next_img img {
    object-fit: cover;
    height: 70vh;
}

.next__text-area {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    z-index: 2;
}

.next__date {
    margin-bottom: 149px;
}

.next__btn {
    display: inline-block;
    font-family: "Roboto";
    font-size: 1.43rem;
    line-height: 1.3;
    letter-spacing: 0.1em;
    padding: 0 25px 8px 0;
    position: relative;
}

.next__btn::after {
    position: absolute;
    content: "";
    width: 14px;
    height: 14px;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: url(imgs/arrow.webp);
    background-size: contain;
}

.next__btn::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: #FFFFFF;
    bottom: 0;
    left: 0;
}

.next__btn:hover {
    transform: translateX(8px);
    transition: .4s;
}

@media screen and (max-width: 1024px) {
.production {
    padding: 80px 5.12%;
}
}


@media screen and (max-width: 768px) {
.l-mv__area {
    position: relative;
    padding-top: 52px;
}
	
	.l-mv__img {
    aspect-ratio: 100 / 70;
    width: 100%;
}


.l-mv__area::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgb(0, 0, 0, 0.3);
}

.l-mv__date {
    font-size: 0.75rem;
}

.video__area {
    padding: 70px 40px;
}

.l-video {
    width: 100%;
    margin: 0 auto;
    height: 192px;
}

iframe {
    width: 100%;
}

.production {
    width: 100%;
    padding: 80px 18px;
    margin: 0 auto;
    flex-direction: column;
    justify-content: space-between;
    gap: 50px;
}

.production .section-title {
    font-size: 1.875rem;
    margin-bottom: 20px;
}

.crew__list .job-name {
    font-family: "Roboto";
    color: #A7A7A7;
    font-size: 0.875rem;
    line-height: 1.36;
    letter-spacing: 0.1em;
}

.crew__list .name {
    font-size:  1.125rem;
    margin-bottom: 15px;
}

.member__area {
    width: 100%;
}

.member__area .section-title {
    margin-bottom: 23px;
}

.lower-member__list {
    display: flex;
    gap: 36px;
}

.lower-member__list-item {
    width: 50%;
    cursor: pointer;
}

.lower-list-item__wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding-bottom: 15px;
}


.lower-list-item__wrapper  .member-img {
    width: 100%;
}

.lower-member__text {
    color: #000000;
    font-size:  0.875rem;
    line-height: 1.64;
    letter-spacing: 0.05em;
    display: none;
    padding: 16px 0;
    border-bottom: 1px solid #707070;
}

.lower-list-item__wrapper .member__summary {
    overflow: visible;
    padding-left: 15%;
}


.next__area {
    position: relative;

}
.next__area::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgb(0, 0, 0, 0.3);
}


.next_img img {
    object-fit: cover;
    height: 300px;
}

.next__text-area {
    width: 100%;
}

.next__date {
    margin-bottom: 45px;
}

.next__btn {
    font-size: 0.75rem;
}
}

/* recruit.html */
.recruit__job_category {
    max-width: 100%;
    padding: 0 6.9% 173px 6.9%;
}

.recruit__job-title-wrapper {
    display: flex;
    gap: 6%;
    position: relative;
}

.recruit__welcome-book {
    padding: 164px 0 186px 0;
    margin: 0 auto;
}

.recruit__welcome-book .section-title {
    font-size: clamp(1.875rem, 1.518rem + 1.79vw, 3.125rem);
    margin-bottom: 70px;
}

.recruit__welcome-book .vision-text_vertical {
    font-size:  clamp(1.563rem, 1.366rem + 0.98vw, 2.25rem);
    top: 310px;
    right: 6%;
}

.recruit__text-area .h2 {
    font-size: 1.87rem;
    letter-spacing: 0.1em;
    line-height: 1.86;
    font-weight: bold;
    margin-bottom: 73px;
}

.recruit__text-area .h2 span {
    color: #000000;
    background: #FFFFFF;
    padding: 8px;
    margin-right: 8px;
}

.recruit__text-wrapper {
    margin-bottom: 70px;
}

.recruit__text {
    font-size: 1.25rem;
    line-height: 2.5;
    letter-spacing: 0.3em;
}

.recruit__desc {
    max-width: 100%;
    padding: 0 6.9% 190px 6.9%;
}

.recruit__desc-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.recruit__desc-img {
    width: 43.26%;
}

.recruit__summary {
    width: 43.26%;
}

.recruit__summary-item {
    border-bottom: 1px solid #707070;
    padding-left: 79px;
    margin-bottom: 45px;
}

.summary-item__title {
    font-size: clamp(1.875rem, 1.643rem + 0.95vw, 2.5rem);
    line-height: 1.4;
    margin-bottom: 12px;
    position: relative;
    font-family: "Barlow Condensed";
}

.recruit__summary-item:nth-child(1) .summary-item__title::before {
    position: absolute;
    content: "";
    width: 43px;
    height: 42px;
    background: url(imgs/recruit-icon01.webp);
    background-repeat: no-repeat;
    background-size: cover;
    top: 0;
    left: -79px;
}

.recruit__summary-item:nth-child(2) .summary-item__title::before {
    position: absolute;
    content: "";
    width: 43px;
    height: 42px;
    background: url(imgs/recruit-icon02.webp);
    background-repeat: no-repeat;
    background-size: cover;
    top: 0;
    left: -79px;
}

.recruit__summary-item:nth-child(3) .summary-item__title::before {
    position: absolute;
    content: "";
    width: 43px;
    height: 42px;
    background: url(imgs/recruit-icon03.webp);
    background-repeat: no-repeat;
    background-size: cover;
    top: 0;
    left: -79px;
}

.recruit__summary-item:nth-child(4) .summary-item__title::before {
    position: absolute;
    content: "";
    width: 43px;
    height: 42px;
    background: url(imgs/recruit-icon04.webp);
    background-repeat: no-repeat;
    background-size: cover;
    top: 0;
    left: -79px;
}

.summary-item__text {
    font-size: clamp(0.813rem, 1.241rem + -0.48vw, 0.813rem);
    line-height: 1.56;
    font-weight: 500;
    margin-bottom: 38px;
}

.recruit-job__text-area {
    padding-right: 6.04%;
}

.recruit__job-inner {
    margin-left: auto;
    width: 70%;
}

.recruit__job-title-area {
    text-align: center;
    display: flex;
    align-items: center;
    padding: 40px 0 60px 0;
    transition: border-color 0.4s ease; 

}

.recruit__job.is-open .recruit__job-title-area  {
    border-color: transparent;
}


.recruit__job:not(.is-open) .recruit__job-title-area {
    border-color: #707070;
}

.arrow-bottom {
    position: relative;
    margin-left: auto;
    line-height: 1.5;
    cursor: pointer;
}

.recruit__job.is-open .arrow-bottom {
    display: none;
}

.arrow-bottom::after {
    position: absolute;
    content: "";
    width: 31px;
    height: 31px;
    background: url(imgs/arrow-bottom.png);
    background-size: cover;
    background-repeat: no-repeat;
    top: 0;
    right: 0;
}

.recruit__job-title_no {
    font-size: 71px;
    letter-spacing: 0.1em;
    line-height: 1.39;
    margin-right: 31px;
    color: transparent;
    -webkit-text-stroke: 1px rgb(45, 221, 219);
    font-family: "Barlow Condensed";
}

.recruit__job-title-inner {
    text-align: justify;
}

.recruit__job-title-area .recruit__job-title {
    font-size: clamp(1.688rem, 1.839rem + 1.43vw, 3.125rem);
    line-height: 1;
    letter-spacing: 0.1em;
    text-align: left;
    font-family: "Barlow Condensed";
    margin-bottom: 8px;
}

.recruit__job-title-lead {
    font-size: 0.875rem;
    line-height: 2;
    letter-spacing: 0.05em;
    position: relative;
    padding: 0 0 0 24px;
    text-align: left;
}

.recruit__job-title-lead::before, .recruit__job-title-lead::after {
    position: absolute;
    content: "";
    width: 16px;
    height: 1px;
    top: 50%;
    transform: translateY(-50%);
    background: #FFFFFF;
}

.recruit__job-title-lead::before {
    left: 0;
}

.recruit__job-title-lead::after {
    right: -24px;
}

.js-jobs {
    display: none;
    border-bottom: 1px solid #707070;
}

.recruit__job-introduction-area {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 56px;
    margin-bottom: 60px;
}

.recruit__job-introduction {
    font-size: clamp(1.438rem, 1.348rem + 0.45vw, 1.75rem);
    letter-spacing: 0.05em;
    line-height: 1.93;
    color: #2DDDDB;
    font-weight: bold;
}

.introduction-area-img {
    width: 50%;
}

.introduction-area-img img {
    object-fit: cover;
}

.recruit-job__inner {
    margin-bottom: 100px;
}

.text-area__title {
    font-size: 1.6rem;
    line-height: 1.38;
    letter-spacing: 0.15em;
    margin-bottom: 50px;
    font-weight: bold;
}

.recruit-job__text {
    font-size: 1.06rem;
    line-height: 1.83;
    letter-spacing: 0.2em;
    margin-bottom: 50px;
}

.recruit-target_bottom {
    border-bottom: 1px solid #2DDDDB;
    margin-bottom: 100px;
}

.recruit-target__title, .recruit-target__title_center, .culture__title {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 36px;
    margin-bottom: 27px;
    position: relative;
}

.recruit-target__title::before, .recruit-target__title::after, .recruit-target__title_center::before, .recruit-target__title_center::after {
    position: absolute;
    content: "";
    background: #2DDDDB;
    height: 0.7px;
    top: 50%;
    transform: translateY(-50%);
}

.recruit-target__title::before, .recruit-target__title_center::before {
    width: 43px;
    left: 0;
}

.recruit-target__title::after {
    width: 65%;
    right: 0;
}

.recruit-target__title_center::after {
    width: 57%;
    right: 0;
}

.target__title_en {
    font-size:  2.57rem;
    line-height: 1.4;
    color: transparent;
    -webkit-text-stroke: 1px #FFFFFF;
    font-family: "Barlow Condensed";
    padding-left: 56px;
}

.target__title_jp, .culture__title_jp {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    line-height: 1.857;
    position: relative;
    padding-right: 24px;
}

.target__title_jp::before, .target__title_jp::after, .culture__title_jp::before, .culture__title_jp::after {
    position: absolute;
    content: "";
    width: 14px;
    height: 2px;
    background: #FFFFFF;
    top: 50%;
    transform: translateY(-50%);
}

.target__title_jp::before, .culture__title_jp::before {
    left: -20px;
}

.target__title_jp::after, .culture__title_jp::after {
    right: 0;
}

.recruit-target__list {
    margin-bottom: 54px;
    padding-left: 56px;
}

.recruit-target__list-item {
    font-size: 0.93rem;
    letter-spacing: 0.25em;
    line-height: 1.73;
    font-weight: 500;
    margin-bottom: 22px;
    position: relative;
}

.recruit-target__list-item::before {
    position: absolute;
    content: "";
    width: 19px;
    height: 19px;
    background: url(imgs/icon_01.webp);
    background-size: cover;
    background-repeat: no-repeat;
    top: 50%;
    left: -45px;
    transform: translateY(-50%);
}

.sale__list-item::before {
    background: url(imgs/icon_check05.webp);
    background-size: cover;
    background-repeat: no-repeat;
}

.sns-target__list-item::before {
    background: url(imgs/icon_check04.webp);
    background-size: cover;
    background-repeat: no-repeat;
}

.photo__list-item::before {
    background: url(imgs/icon_check03.webp);
    background-size: cover;
    background-repeat: no-repeat;    
}

.video__list-item::before {
    background: url(imgs/icon_check02.webp);
    background-size: cover;
    background-repeat: no-repeat;    
}

.job__inner {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 103px;
}

.recruit__list {
    position: absolute;
    top: 100px;
    width: 25%;
}

.recruit__list.fixed {
    position: fixed;
}

.recruit-no {
    font-size:  1.8rem;
    line-height: 1.41;
    letter-spacing: 0.1em;
    font-weight: bold;
    color: transparent;
    font-family: "Barlow Condensed";
    -webkit-text-stroke: 1px #FFFFFF;
    margin-right: 12px;
}

.recruit-cd.active .recruit-no, .recruit-web.active .recruit-no {
    color: transparent;
    -webkit-text-stroke: 1px #2DDDDB;
}

.recruit-coder.active .recruit-no {
    color: transparent;
    -webkit-text-stroke: 1px #1BB7C7;
}

.recruit-video.active .recruit-no {
    color: transparent;
    -webkit-text-stroke: 1px #16AAC1;
}

.recruit-photo.active .recruit-no {
    color: transparent;
    -webkit-text-stroke: 1px #119AB9;
}

.recruit-sns.active .recruit-no {
    color: transparent;
    -webkit-text-stroke: 1px #24ADD6;
}

.recruit-sales.active .recruit-no {
    color: transparent;
    -webkit-text-stroke: 1px #0098D3;
}

.recruit-coo.active .recruit-no {
    color: transparent;
    -webkit-text-stroke: 1px #008AD9;
}

.recruit__list li {
    font-size: 1rem;
    line-height: 2.14;
    letter-spacing: 0.05em;
}

.recruit__job {
    width: 100%;
    border-bottom: 1px solid #707070;
}

.wap {
    flex-direction: row-reverse;
}

.job__inner-img {
    width: 35%;
}

.job__inner-img img {
    object-fit: cover;
}

.job__desc {
    width: 65%;
    padding-left: 6%;
}

.job__inner.wap .job__desc {
    padding: 0 5% 0 0;
}

.jobs-title {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 26px;
}

.jobs, .culture__title_en {
    color: transparent;
    -webkit-text-stroke: 1px #FFFFFF;
    font-size: 2.5rem;
    line-height: 1.4;
    font-family: "Barlow Condensed";
}

.jobs-lead {
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    line-height: 1.86;
    position: relative;
    padding-left: 20px;
}

.jobs-lead::before, .jobs-lead::after {
    position: absolute;
    content: "";
    width: 14px;
    height: 2px;
    background: #FFFFFF;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
}

.jobs-lead::before {
    left: 0;
}

.jobs__list {
    padding-left: 24px;
}

.jobs__list-item {
    font-size: 0.93rem;
    line-height: 1.4;
    letter-spacing: 0.1em;
    margin-bottom: 22px;
    position: relative;
}

.jobs__list-item::before {
    position: absolute;
    content: "・";
    display: inline;
    top: 0;
    left: -24px;
}

.culture__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 74.5px;
}

.culture__list-item  {
    width: 49%;
    font-size: 0.93rem;
    line-height: 1.47;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 24px 18px;
    border: 0.7px solid #2DDDDB;
}

.culture__list-item_coo {
    border: 0.7px solid #008AD9;
}

.culture-icon {
    width: 16.8%;
}

.recruit-message {
    margin-bottom: 105px;
    padding: 60px 0 43px 0;
    text-align: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.cd {
    background-image: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url(imgs/cd-bg-img.webp);
}

.web-d {
    background-image: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url(imgs/web-d-bg.webp);
}

.coder {
    background-image: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url(imgs/coder-bg.webp);
}

.video {
    background-image: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url(imgs/video-bg.webp);
}

.photo {
    background-image: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url(imgs/photo-bg.webp);
}

.sns-bg {
    background-image: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url(imgs/sns-bg.webp);
}

.sales {
    background-image: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url(imgs/sales-bg.webp);
}

.recruit-message__title {
    color: transparent;
    -webkit-text-stroke: 1px #2DDDDB;
    font-size: clamp(1.875rem, 1.411rem + 1.9vw, 3.125rem);
    line-height: 1.4;
    letter-spacing: 0.1em;

    font-family: "Barlow Condensed";
    margin-bottom: 39px;
}


.recruit-message__title-lead {
    font-size: 1.7rem;
    line-height: 1.38;
    margin-bottom: 60px;
    font-weight: bold;
}

.recruit-message__text, .recruit-message__text_bottom {
    font-size:  1.125rem;
    line-height: 1.83;
    letter-spacing: 0.1em;
    margin-bottom: 35px;
}

.recruit-message__text_bottom {
    margin: 60px 0;
}

.message__jobs {
    font-size: 0.93rem;
    line-height: 2;
    letter-spacing: 0.05em;
    font-weight: bold;
    position: relative;
}

.message__jobs::before, .message__jobs::after {
    position: absolute;
    content: "";
    width: 14px;
    height: 2px;
    background: #FFFFFF;
    top: 50%;
    transform: translateY(-50%);
}

.message__jobs::before {
    left: -20px;
}

.message__jobs::after {
    right: -20px;
}

.message__jobs-lead {
    font-size: 0.875rem;
    line-height: 2.14;
    letter-spacing: 0.05em;
}

.arrow-top {
    position: relative;
    margin-left: auto;
    cursor: pointer;
}

.arrow-top::after {
    position: absolute;
    content: "";
    width: 31px;
    height: 31px;
    background: url(imgs/arrow-top.png);
    background-size: cover;
    background-repeat: no-repeat;
    top: -55px;
    right: 0;
}

.sales-flow__img img {
    object-fit: cover;
}

.sales-flow__list {
    display: flex;
    justify-content: space-between;
    margin-bottom: 100px;
}

.sales-flow__list li {
    width: 33%;
    text-align: center;
    padding-top: 32px;
}

.sales-flow__list li:nth-child(2) .sales-flow__title,.sales-flow__list li:nth-child(4) .sales-flow__title {
    padding-top: 12px;
    margin-bottom: 32px;
}

.sales-flow__title {
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    line-height: 1.25;
    font-weight: bold;
    margin-bottom: 18px;
}

.sales-flow__text {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    line-height: 1.57;
    margin-bottom: 32px;
}

.sns__list {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 100px;
}

.sns__list-item {
    width: 33%;
    border: 1px solid #24ADD6;
    text-align: center;
    padding-top: 20px;
}

.sns__list-item img {
    width: 30%;
    margin-bottom: 18px;
}

.sns__title {
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    line-height: 1.25;
    font-weight: bold;
    margin-bottom: 18px;
    font-family: "Yu Gothic";
}

.sns__title span {
    font-size: 1rem;
}

.sns__text {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    line-height: 1.57;
    margin-bottom: 20px;
}

.coder-area .recruit__job-introduction {
    color: #1BB7C7;
}

.coder-area .recruit-target__title::before, .photo-area .recruit-target__title::after, .photo-area .recruit-target__title_center::before, .photo-area .recruit-target__title_center::after {
    background: #1BB7C7;
}

.coder-area .recruit-target_bottom {
    border-bottom: 1px solid #1BB7C7;
    margin-bottom: 100px;
}

.coder-area .recruit-message__title {
    -webkit-text-stroke: 2px #1BB7C7;
}

.coder-area .recruit__job-title_no {
    -webkit-text-stroke: 1px #1BB7C7;
}

.coder-area .culture__list-item {
    border: 0.7px solid #1BB7C7;

}

.coder-area.recruit__job-introduction {
    color: #1BB7C7;
}

.video-area .recruit__job-introduction {
    color: #16AAC1;
}

.video-area .recruit-target__title::before, .photo-area .recruit-target__title::after, .photo-area .recruit-target__title_center::before, .photo-area .recruit-target__title_center::after {
    background: #16AAC1;
}

.video-area .recruit-target_bottom {
    border-bottom: 1px solid #16AAC1;
    margin-bottom: 100px;
}

.video-area .recruit-message__title {
    -webkit-text-stroke: 2px #16AAC1;
}

.video-area .recruit__job-title_no {
    -webkit-text-stroke: 1px #16AAC1;
}

.video-area .culture__list-item {
    border: 0.7px solid #16AAC1;

}

.video-area .recruit__job-introduction {
    color: #16AAC1;
}


.photo-area .recruit__job-introduction {
    color: #119AB9;
}

.photo-area .recruit-target__title::before, .photo-area .recruit-target__title::after, .photo-area .recruit-target__title_center::before, .photo-area .recruit-target__title_center::after {
    background: #119AB9;
}

.photo-area .recruit-target_bottom {
    border-bottom: 1px solid #119AB9;
    margin-bottom: 100px;
}

.photo-area .recruit-message__title {
    -webkit-text-stroke: 2px #119AB9;
}

.photo-area .recruit__job-title_no {
    -webkit-text-stroke: 1px #119AB9;
}

.photo-area .culture__list-item {
    border: 0.7px solid #119AB9;

}

.photo-area .recruit__job-introduction {
    color: #119AB9;
}

.sns-area .recruit__job-introduction {
    color: #24ADD6;
}

.sns-area .recruit-target__title::before, .sns-area .recruit-target__title::after, .sns-area .recruit-target__title_center::before, .sns-area .recruit-target__title_center::after {
    background: #24ADD6;
}

.sns-area .recruit-target_bottom {
    border-bottom: 1px solid #24ADD6;
    margin-bottom: 100px;
}

.sns-area .recruit-message__title {
    -webkit-text-stroke: 2px #24ADD6;
}

.sns-area .recruit__job-title_no {
    -webkit-text-stroke: 1px #24ADD6;
}

.sns-area .culture__list-item {
    border: 0.7px solid #24ADD6;
}

.sns-area .recruit__job-introduction {
    color: #0098D3;
}

.sales-area .recruit__job-introduction {
    color: #0098D3;
}

.sales-area .recruit-target__title::before, .sales-area .recruit-target__title::after, .sales-area .recruit-target__title_center::before, .sales-area .recruit-target__title_center::after {
    background: #0098D3;
}

.sales-area .recruit-target_bottom {
    border-bottom: 1px solid #0098D3;
    margin-bottom: 100px;
}

.sales-area .recruit-message__title {
    -webkit-text-stroke: 2px #0098D3;
}

.sales-area .recruit__job-title_no {
    -webkit-text-stroke: 1px #0098D3;
}

.sales-area .culture__list-item {
    border: 0.7px solid #0098D3;

}

.sales-area .recruit__job-introduction {
    color: #0098D3;
}
.back-img {
    background: url(imgs/black-bg.webp) center;
    background-size: cover;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
}

.band-img {
    background: url(imgs/band-bg.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 20px 0 220px 0;
    overflow: hidden;
    background: linear-gradient(180deg, rgb(0 0 0 / 0%) 0%, rgb(92 90 90 / 10%) 15%, rgb(177 177 177 / 20%) 25%, rgb(114 114 114 / 50%) 35%, rgb(199 199 199 / 50%) 50%, rgb(207, 207, 207) 75%, rgba(239, 239, 239, 1) 90%, rgba(255, 255, 255, 1) 100%);

}


.mb {
    display: none;
}

/* recruit-closing */

.recruit-closing {
    max-width: 100%;
    padding: 40px 5.12% 141px 5.12%;
    background: #FFFFFF;
}
.recruit-closing__title {
    font-size: 2.25rem;
    letter-spacing: 0.1em;
    line-height: 1.86;
    margin-bottom: 60px;
    font-weight: bolder;
    display: inline-block;
}

.recruit-closing__title-inner, .recruit-closing__title-inner_right {
    padding: 14px 11px;
    background: #000000;
    display: inline-block;
}

.recruit-closing__title-inner {
    padding: 14px 0 14px 11px;
}

.recruit-closing__title-inner_right {
    padding: 14px 11px 14px 0;
}

.recruit-closing__wrapper {
    color: #000000;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.recruit-closing__lead {
    font-size: 1.8rem;
    line-height: 1.38;
    font-weight: bold;
    padding: 0 30px;
    margin-bottom: 32px;
    position: relative;
}

.recruit-closing__lead::before, .recruit-closing__lead::after {
    position: absolute;
    content: "〜";
    top: 50%;
    transform: translateY(-50%);
}

.recruit-closing__lead::before {
    left: 0;
}


.recruit-closing__inner {
    font-size: 1.25rem;
    line-height: 2;
}

.recruit-closing__text {
    letter-spacing: 0.13em;
    margin-bottom: 60px;
}

.recruit-closing__text span, .recruit-closing__text_bottom {
    font-weight: bold;
}

.recruit-object {
    width: 30.83%;
}

@media screen and (max-width: 1024px) {
.recruit__welcome-book {
    padding: 164px 5.12% 60px 5.12%;
}

.recruit__welcome-book  .section-title {
    margin-bottom: 37px;
}

.recruit__welcome-book .vision-text_vertical {
    font-size: 1.87rem;
    top: 170px;
    right: 5.12%;
}

.recruit__text-area .h2 {
    font-size: 1.56rem;
    margin-bottom: 40px;
}

.recruit__text-area .h2 span {
    color: #000000;
    background: #FFFFFF;
    padding: 8px 8px 8px 12px;
    margin-right: 8px;
}

.recruit__text-wrapper {
    margin-bottom: 35px;
}

.recruit__text {
    font-size: 0.87rem;
}

.recruit__desc {
    padding: 0 0 120px 0;
}

.recruit__desc-wrapper {
    padding: 0 18px;
    flex-direction: column;
    gap: 65px;
}

.recruit__desc-img {
    width: 100%;
}

.recruit__summary {
    width: 100%;
}

.recruit__summary-item {
    padding-left: 47px;
    margin-bottom: 30px;
}

.summary-item__title {
    margin-bottom: 7px;
    letter-spacing: 0.025em;
}

.recruit__summary-item:nth-child(1) .summary-item__title::before {
    position: absolute;
    content: "";
    width: 32px;
    height: 31px;
    left: -50px;
}

.recruit__summary-item:nth-child(2) .summary-item__title::before {
    position: absolute;
    content: "";
    width: 32px;
    height: 31px;
    left: -50px;

}
.recruit__summary-item:nth-child(3) .summary-item__title::before {
    position: absolute;
    content: "";
    width: 32px;
    height: 31px;
    left: -50px;
}

.recruit__summary-item:nth-child(4) .summary-item__title::before {
    position: absolute;
    content: "";
    width: 32px;
    height: 31px;
    left: -50px;
}

.summary-item__text {
    margin-bottom: 25px;
    letter-spacing: 0.1em;
}

.recruit-job__text-area {
    padding-right: 0;
}

.recruit__job-inner {
    margin-left: inherit;
    width: 100%;
    padding: 0;
}

.recruit__job-title-area {
    padding: 0 0 40px 0;
    position: relative;
    width: 100%;
    align-items: baseline;
}

.recruit__job_category {
    padding: 0 40px 173px 40px;
}

.arrow-bottom::after {
    position: absolute;
    content: "";
    width: 28px;
    height: 28px;
}

.recruit__job-title_no {
    font-size: 100px;
    margin-right: 31px;
    letter-spacing: 0;
}

.recruit__job-title-inner {
    position: absolute;
    top: 35%;
    left: 4%;
    text-align: center;
}

.recruit__job-title-lead {
    text-align: center;
    padding: 0;
}

.recruit__job-title-lead::before {
    left: -20px;
}

.recruit__job-title-lead::after {
    right: -24px;
}

.recruit__job-introduction-area {
    flex-direction: column-reverse;
    gap: 25px;
    margin-bottom: 35px;
	padding-top: 25px;
}

.recruit__job-introduction {
    text-align: center;
    letter-spacing: 0;
}

.introduction-area-img {
    width: 100%;
}

.text-area__title {
    font-size: 1.25rem;
    line-height: 1.933;
    letter-spacing: 0.1em;
    margin-bottom: 25px;
}

.recruit-target__title::before, .recruit-target__title_center::before {
    width: 15px;
    left: 0;
}

.target__title_en {
    font-size:  1.875rem;
    padding-left: 20px;
}

.target__title_jp, .culture__title_jp {
    font-size: 0.81rem;
    letter-spacing: 0;
}

.recruit-target__title::after {
    width: 75%;
}

.recruit-target__title_center::after {
    width: 68%;
}

.recruit-target__list {
    padding-left: 20px;
}

.recruit-target__list-item::before {
    position: absolute;
    content: "";
    width: 14px;
    height: 14px;
    top: 20%;
    left: -20px;
}

.job__inner {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 6%;
}

.recruit__list {
    display: none;
}

.wap {
    flex-direction: column;
}

.job__inner-img {
    width: 100%;
    margin-bottom: 30px;
}

.job__desc {
    width: 100%;
    padding-left: 0;
}

.job__inner.wap .job__desc {
    padding: 0;
}

.jobs-title {
    gap: 15px;
}

.jobs-lead::before, .jobs-lead::after {
    position: absolute;
    content: "";
    width: 12px;
    height: 1px;
    background: #FFFFFF;
    top: 50%;
    right: -13px;
    transform: translateY(-50%);
}

.jobs__list {
    padding-left: 13px;
}

.culture-icon {
    width: 11.2%;
}

.recruit-message__title {
    letter-spacing: 0.05em;
    margin-bottom: 39px;
}

.arrow-top::after {
    width: 28px;
    height: 28px;
    right: -20px;
}

.sales-flow__img {
    width: 100%;
}

.sales-flow__list li {
    width: 100%;
}

.sales-flow__list .sales-flow__title br {
    display: none;
}

.sales-flow__list li:nth-child(2) .sales-flow__title,.sales-flow__list li:nth-child(4) .sales-flow__title {
    margin-bottom: 0;
}

.sales-flow__title {
    font-size: 1.125rem;
    margin-bottom: 13px;
}

.sales-flow__text {
    font-size: 0.75rem;
    margin-bottom: 32px;
}

.sns__list {
    justify-content: center;
}

.sns__list-item {
    width: 45%;
    border: 1px solid #24ADD6;
    text-align: center;
    padding-top: 16px;
}

.sns__list-item img {
    width: 20%;
    margin-bottom: 14px;
}

.sns__title {
    font-size: 1rem;
    letter-spacing: 0;
    margin-bottom: 13px;
}

.sns__title span {
    font-size: 0.75rem;
}

.sns__text {
    font-size: 0.75rem;
    letter-spacing: 0;
    margin-bottom: 16px;
}

/* recruit-closing */
.recruit-closing {
    padding: 0 6.9% 141px 6.9%;
}

.recruit-closing__wrapper {
    flex-direction: column;
}

.recruit-closing__title-inner {
     padding: 14px 11px;
    background: #000000;
    margin-bottom: 2px;
    display: inline-block;
}

.recruit-closing__inner {
    margin-bottom: 58px;
}

.recruit-object {
    width: 100%;
}
}

@media screen and (max-width: 768px) {
    
.recruit__welcome-book {
    padding: 83px 20px 60px 20px;
}

.recruit__welcome-book .vision-text_vertical {
    top: 126px;
}

.recruit__text-wrapper {
    margin-bottom: 24px;
}

.recruit__text {
    line-height: 1.643;
    letter-spacing: 0.2em;
}

.recruit-closing__inner {
text-align: center;}

.recruit-job__inner {
    margin-bottom: 60px;
}

.recruit__job-title-area, .recruit__job-title-area_mb {
    padding: 0 0 40px 0;
    position: relative;
    width: 100%;
    align-items: baseline;
}

.recruit__job_category {
    padding: 0 5.12%;
}

.recruit__job-title-area_mb {
    padding-bottom: 70px;
}

.mb-h {
    padding-bottom: 100px;
}

.recruit__job-title_no {
    font-size: 80px;
    margin-right: 31px;
    letter-spacing: 0;
	-webkit-text-stroke: 1px rgb(45, 221, 219, 0.4);
}
	
.coder-area .recruit__job-title_no {
    -webkit-text-stroke: 1px rgb(27, 183, 199, 0.4);
}

.video-area .recruit__job-title_no {
    -webkit-text-stroke: 1px rgb(22, 170, 193, 0.4);
}

.photo-area .recruit__job-title_no {
    -webkit-text-stroke: 1px rgb(17, 154, 185, 0.4);
}

.sns-area .recruit__job-title_no {
    -webkit-text-stroke: 1px rgb(36, 173, 214, 0.4);
}
.sales-area .recruit__job-title_no {
    -webkit-text-stroke: 1px rgb(0, 152, 211, 0.4);
}

.recruit__job-title-inner {
    width: 100%;
    top: 45%;
    left: 50%;
    transform: translateX(-50%);
}

.recruit__job-title-inner_mb {
    top: 28%;
}

.recruit__job-title-area .recruit__job-title {
    letter-spacing: 0.05em;
    text-align: center;
}

.text-area__title {
    font-size: 1.2rem;
    letter-spacing: 0;
}

.recruit-target__title::after {
    width: 38%;
}

.recruit-target__title_center::after {
    width: 23%;
}

.job__inner {
    margin-bottom: 81px;
}

.recruit__job-title-lead::before, .recruit__job-title-lead::after {
    width: 12px;
}

.recruit-target__list-item {
    font-size: 0.75rem;
    line-height: 1.73;
    letter-spacing: 0.1em;
}

.recruit-target__list-item::before {
    left: -25px;
}

.recruit__list {
    display: none;
}

.recruit-job__text {
    font-size: 0.75rem;
    margin-bottom: 30px;
    letter-spacing: 0;
}

.recruit__job-introduction {
    font-size: 1.375rem;
}

.jobs, .culture__title_en {
    font-size: 1.875rem;
    letter-spacing: 0.05em;
}

.jobs-lead {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
}

.js-jobs {
    padding: 0 20px;
}

.jobs__list-item {
    font-size: 0.75rem;
    line-height: 1.7;
    letter-spacing: 0.03em;
    margin-bottom: 22px;
}

.jobs__list-item::before {
    left: -18px;
}

.pc-br {
    display: none;
}

.recruit-message {
    background-size: cover;
    background-position: center;
    margin-bottom: 82px;
}

.culture__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 74.5px;
}

.culture__list-item {
    width: 100%;
    font-size: 0.7rem;
    line-height: 1.7;
    letter-spacing: 0;
    padding: 11px 18px;
}

.recruit-message__title-lead {
    font-size:  1.1rem;
    margin-bottom: 28px;
}

.cd {
    background-image: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url(imgs/cd-bg-img_sp.webp);
}

.web-d {
    background-image: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url(imgs/web-d-bg_sp.webp);
}

.coder {
    background-image: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url(imgs/coder-bg_sp.webp);
}

.video {
    background-image: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url(imgs/video-bg_sp.webp);
}

.photo {
    background-image: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url(imgs/photo-bg_sp.webp);
}

.sns-bg {
    background-image: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url(imgs/sns-bg_sp.webp);
}

.sales {
    background-image: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url(imgs/sales-bg_sp.webp);
}

.recruit-message__text, .recruit-message__text_bottom {
    font-size:  0.75rem;
    letter-spacing: 0.08em;
}

.recruit-message__text_bottom {
    margin: 0 0 60px 0;
}

.sales-flow__area {
    display: flex;
    gap: 5.6%;
}
.sales-flow__img {
    width: 26.92%;
}

.sales-flow__list {
    flex-direction: column;
}

.sales-flow__list li {
    padding-top: 12px;
}

.sales-flow__title {
    font-size: 1.1rem;
}

.sns__list {
    flex-wrap: wrap;
}

.mb {
    display: block;
}

.band-img img {
    width: 202%;
}


/* recruit-closing */

.recruit-closing {
    padding: 0 6.9% 79px 6.9%;
}

.recruit-closing__title {
    font-size: 1.563rem;
    letter-spacing: 0.05em;
    margin-bottom: 60px;
    display: block;
    text-align: center;
}

.recruit-closing__lead {
	display: block;
    font-size: 1.25rem;
    text-align: center;
	padding: 0;
}
.recruit-closing__title-inner, .recruit-closing__title-inner_right {
    padding: 4px 8px;
}


.recruit-closing__lead::after {
    content: "";
}

.recruit-closing__lead::before {
    content: "";
}

.closing__lead {
    font-size: 1.25rem;
    margin-bottom: 26px;
    text-align: center;
}

.recruit-closing__text {
    font-size: 0.75rem;
    letter-spacing: 0;
    margin-bottom: 24px;
}

.recruit-closing__text span, .recruit-closing__text_bottom {
    font-size: 0.875rem;
}

}
