@charset "utf-8";

:root {
    --main-font: "Arial", sans-serif;
    --sub-font: "Yu Gothic UI", sans-serif;
    --bg-color: #f6f6f6;
    --accent-color: #3e98b8;
    --white: #FFFFFF;
    --footer: #2f2f2f;
}

*,
::before,
::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    border: none;
    outline: none;
    background-repeat: no-repeat;
}

ul,
ol {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

button {
    background-color: transparent;
    border: none;
    border-radius: none;
    outline: none;
    cursor: pointer;
}

h2,h3 {
    font-weight: normal;
}

img {
    vertical-align: middle;
}

address {
    font-style:normal;
}


body {
    font-family: "Arial","Yu Gothic UI", sans-serif;
    font-size: 16px;
    line-height: 1.0;
    background-color: var(--bg-color);
}


/* header */
.header {
    position: fixed;
    /* 適当に入力している */
    z-index: 100;
    background-color: var(--bg-color);
    width: 100%;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 80px;
    position: relative;
}

.header-inner a {
    transition: .4s;
}

.header-inner a:hover {
    opacity: .5;
}

.header-logo {
    width: 96px;
}

.header-button {
    display: none;
}

.header-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
    margin-right: 96px;
}

.header-list {
    display: flex;
    gap: 49px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.header-list li a:hover {
    color: var(--accent-color);
}

.sns-list {
    display: flex;
    gap: 24px;

    position: absolute;
    right: -96px;
}

.sns-list li {
    width: 24px;
}

.sns-list li a {
    display: inline-block;
}

.sns-list li img {
    width: 100%;
}


/* footer */
.footer {
    color: var(--white);
    background-color: var(--footer)
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 169px 86px;
}

.footer-inner a {
    transition: .4s;
}

.footer-inner a:hover {
    opacity: .5;
}

.footer-contaier {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.footer-company {
    font-size: 14px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 30px;
    width: 96px;
}

.footer-company p {
    margin-bottom: 10px;
}

.footer-nav {
    display: flex;
    align-items: baseline;
    gap: 120px;
    font-size: 20px;
}

.footer-list1 li,
.footer-list3 li{
    margin-bottom: 30px;
}

.sub-category {
    font-size: 14px;
}

.sub-category li {
    margin-top: 15px;
}

.sub-category li:first-of-type {
    margin-top: 22px;
}

.footer small {
    font-size: 14px;
}


/* main */
.main {
    padding-top: 80px;
}

.en {
    font-size: 30px;
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.ja {
    color: var(--accent-color);
    font-size: 13px;
    display: block;
    font-weight: bold;
}

.btn {
    /*アニメーションの起点とするためrelativeを指定*/
    position: relative;
	overflow: hidden;
    /*ボタンの形状*/
	display: inline-block;
   	border: 1px solid ;/* ボーダーの色と太さ */
    padding: 21px 70px;
    text-align: center;
    /*アニメーションの指定*/   
    transition: ease .2s;
}

.btn span {
	position: relative;
	z-index: 3;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
    white-space: nowrap
}

.btn:hover span{
	color: var(--white);
}

/*== 背景が流れる（下から上） */
.btn::before {
 	content: '';
    /*絶対配置で位置を指定*/
 	position: absolute;
 	bottom:0;
 	left: 0;
 	z-index: 2;
    /*色や形状*/
 	background: var(--accent-color);/*背景色*/
 	width: 100%;
	height: 0;
    /*アニメーション*/
 	transition:.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
}

/*hoverした際の形状*/
.btn:hover::before{
	 height: 100%;	
 	 background-color: var(--accent-color);
}

/* ---------------------------------------アニメーション */
/*スクロールしたらふわっと出現*/
.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration:1.3s; 
    animation-fill-mode:forwards;
    opacity: 0;
}

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

.fadeUp2 {
    animation-name: fadeUp2Anime;
    animation-duration:1.3s; 
    animation-fill-mode:forwards;
    opacity: 0;
}

@keyframes fadeUp2Anime{
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-40%);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(-50%);
    }
    }

/* スクロールしたら背景の白四角が伸びる */
.Scale::before {
    animation-name: ScaleAnime;
    animation-duration:1.3s; 
    animation-fill-mode:forwards;
    transform-origin: right top;
}

.Scale2::before {
    animation-name: ScaleAnime;
    animation-duration:1.3s; 
    animation-fill-mode:forwards;
    transform-origin: left top;
}

@keyframes ScaleAnime{
from {
    transform: scale(0, 0);
}
to {
    transform: scale(1, 1);
}
}


/* first-view */
.first-view {
    height: calc(100vh - 113px);
    background-image: url(./img/index/first-view.jpg);
    background-position: center center;
    background-size: cover;
    margin: 0 46px 33px;
}

/* news */
.news {
    position: relative;
    margin: 153px 0 207px;
    padding-bottom: 60px;
}

.news::before {
    content: '';
    position: absolute;
    display: block;
    background-color: var(--white);
    bottom: 0;
    right: 0;
    width: calc( 956 / 1366 * 100% );
    height: 60%;
    z-index: -1;
}

.news-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.news-inner h2 {
    margin-left: calc( 225 / 1200 * 100% );
    margin-bottom: 32px;
}

.news-list {
    padding: 0 calc( 327 / 1200 * 100% ) 0 calc( 447 / 1200 * 100% );
}

.news-list li {
    margin-bottom: 26px;
}

.news-list span {
    margin-right: 3em;
    display: inline-block;
}

.news-link {
    text-align: right;
    padding-right: calc( 28 / 1200 * 100% );
}


/* about */
.about {
    display: flex;
    margin-bottom: 160px;
}

.about-bg {
    width: 50%;
    height: 0;
    padding-bottom: 50%;
    background-image: url(./img/index/about.jpg);
    background-position: center center;
    background-size: cover;
}

.about-content {
    background-color: var(--white);
    width: 50%;
    position: relative;
}

.about-content h2 {
    margin-bottom: 87px;
}

.about-content-inner {
    max-width: 460px;
    margin: 0 auto;
    width: 80%;
    padding-left: 9%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.about-content h3 {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 26px;
}

.about-content p:first-of-type {
    font-weight: bold;
    margin-bottom: 116px;
}


/* service */
.tp-service {
    margin-bottom: 212px;
}

.tp-service-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.tp-service-inner h2 {
    text-align: center;
    margin-bottom: 55px;
}

.tp-service-content {
    display: flex;
}

.tp-service-content li {
   position: relative;
   overflow: hidden;
   width: calc( 255 / 1200 * 100% );
   margin-left: calc( 36 / 1200 * 100% );  
}

.tp-service-content li:last-of-type {
    margin-right: calc( 36 / 1200 * 100% );
}

.tp-service-content a {
    position: relative;
    display: block;
    transition: .5s ease-in-out;
}

.tp-service-content a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000080;
}

.tp-service-content a:hover {
    transform: scale(1.1);
}

.tp-service-content p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    pointer-events: none;
    z-index: 1;
    width: 100%;
}

.tp-service-content p span {
    font-size: 18px;
    color: var(--white);
    display: block;
    text-align: center;
}

.tp-service-content p span:first-of-type {
    font-size: 30px;
    margin-bottom: 7px;
}

.tp-service-content img {
    width: 100%;
}


/* works */
.tp-works {
    margin-bottom: 237px;
    position: relative; 
    /* worksの文字上の白四角 */
    padding-top: 90px;
}

.tp-works::before {
    content: '';
    position: absolute;
    display: block;
    background-color: var(--white);
    top: 0;
    left: 0;
    width: 70%;
    height: 60%;
    z-index: -1;
}

.tp-works-inner {
    max-width: 1200px;
    width:96%;
    margin: 0 auto;
}

.tp-works-inner h2 {
    margin: 0 0 30px 10px;
}

.tp-works-link {
    margin: 79px 0 0 10px;
}

.slider {
     margin:0 auto;
 }

 .tp-works-img {
    overflow: hidden;
    margin-bottom: 13px;
}
 
.tp-works-img img {
     width:100%;
     height:auto;
 }

 .tp-works-img a {
    display: block;
    transition: .5s ease-in-out;
    width: 100%;
}

.tp-works-img a:hover {
    transform: scale(1.05);
}

.tp-works-img img {
    width: 100%;
}
 
 .slider .slick-slide {
     margin:0 10px;
 }

.slick-prev:before {
    content: url(./img/index/arrow_blue_left.svg);
}

.slick-next:before {
    content: url(./img/index/arrow_blue_right.svg);
}

.slick-prev, 
.slick-next {
    width: 77px;
    transition: all .3s;
}

.slick-next {
    right: calc(50% - 85px);
    top: 113%;
  
}

.slick-prev {
    left: calc(50% - 85px);
    top: 113%;
}

.slick-next:hover {
    right: calc(49% - 85px);
}

.slick-prev:hover {
    left: calc(49% - 85px);
}


  /* access */
.access-contact {
    background: linear-gradient(rgba(0, 0, 0, .4),  rgba(0, 0, 0, .4)), url(./img/index/access.jpg);
    background-position: center center;
    background-size: cover;
    position: relative;
    height: 568px;
}

.access-contact-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    position: relative;
}

.access-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 112px 0 97px; 
}

.access-content {
    color: var(--white);
}

.access-content .ja {
    color: var(--white);
}

.access-box {
    padding-top: 7px;
}

.access-office {
    display: flex;
    text-align: center;
    margin-bottom: 60px;
}

.access-osaka {
    margin-right: 170px;
}

.access-office h3{
    margin-bottom: 36px;
}

.access-office .address {
    margin-bottom: 26px;
}

.access-link {
    text-align: center;
}

.access-link .btn:hover span{
	color: var(--footer);
}

.access-link .btn::before {
 	background: var(--white);
}

.access-link .btn:hover::before{
 	 background-color: var(--white);
}

.contact {
    display: block;
    padding: 0 55px; 
    height: 144px;
    width: calc(983 / 1366 * 100%);
    max-width: 1200px;
    background-color: var(--accent-color);
    position: absolute;
    bottom: -160px;
    left: 50%;
    transform: translateX(-50%);
    transition: .4s;
}

.contact:hover {
   transform: translateX(-50%) scale(0.95);
}

.contact-inner {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.contact .en{
    display: inline-block;
    color: var(--white);
    margin: 0 37px 0 0;
}

.contact .ja{
    display: inline-block;
    color: var(--white);
}

.contact-inner::before {
    content: url(./img/index/btn_arrow.svg);
    position: absolute;
    bottom: 65px;
    right: 0;
    transition: all .3s;
}

.contact-inner:hover::before {
    right: -20px;
}



/* -------------------------------works */
/* first-view */
.fsv-en {
    color: var(--white);
    font-size: 55px;
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
}

.fsv-ja {
    color: var(--white);
    font-size: 24px;
    display: block;
    font-weight: bold;
}

.ws-first-view {
    height: 450px;
    background-image: url(./img/works/first-view.jpg);
    background-position: center center;
    background-size: cover;
    margin: 0 46px 78px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}



/* works */
.works {
    max-width: 1200px;
    margin: 0 auto;
    width: 94%;
    margin-bottom: 70px;
}

.works-inner { 
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
}

.works-content ul {
    display: flex;
    flex-wrap: wrap;
    gap: 107px 0;
}

.works-content li {
    flex-basis: 50%;
    padding: 0 19px;
}

.works-img {
    overflow: hidden;
    margin-bottom: 25px;
}

.works-img a {
    display: block;
    transition: .5s ease-in-out;
    width: 100%;
}

.works-img a:hover {
    transform: scale(1.05);
}

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

.works-name {
    display: block;
    font-size: 18px;
    margin: 25px 0 14px;
}

.works-category {
   display: block;
}

.works-side {
    padding: 0 7px 0 11px;
}

.works-side ul {
    margin-left: 15px;
}

.works-side h3 {
    font-size: 30px;
    font-weight: normal;
    margin-bottom: 36px;
}

.works-side li {
    margin-bottom: 30px;
    position: relative;
}

.works-side li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--accent-color);
    position: absolute;
    top: 50%;
    left: -15px;
    margin-top: -4px;
}

.works-side a {
    transition: .4s;
}

.works-side a:hover {
    color: var(--accent-color);
    opacity: .5;
}

.works-bottom {
    display: flex;
    padding-top: 88px;
}

.works-bottom a:hover {
    text-decoration: underline;
}

.works-bottom1 {
    padding-right: .5em;
}

.works-bottom2::before {
    content: '/';
    padding-right: .5em;
}



/* -------------------------------about */
/* concept */
.concept {
    background: linear-gradient(rgba(0, 0, 0, .6),  rgba(0, 0, 0, .6)),url(./img/about/concept.jpg);
    background-position: center center;
    background-size: cover;
    height: 1040px;
    display: flex;
    align-items: center;
    margin-bottom: 184px;
    text-align: center;
}

.concept-inner {
    color: var(--white); 
    max-width: 740px;
    margin: 0 auto;
}

.concept-inner h2 {
    margin-bottom: 68px;
}

.concept-inner .en {
    font-size: 43px;
}

.concept-inner .ja {
    font-size: 19px;
}

.concept-inner h3 {
    font-size: 36px;
    margin-bottom: 102px;
}

.concept-inner p {
    font-size: 18px;
    line-height: 2.2;
    margin-bottom: 97px;
}

.concept-inner p:last-of-type {
    margin-bottom: 0;
}


/* quality */
.quality {
    margin-left: 163px;
}

.quality h2 {
    margin-bottom: 120px;
}

.quality .en {
    font-size: 43px;
}

.quality .ja {
    font-size: 19px;
}

.quality-bg {
    background-color: var(--white);
    padding: 87px 0;
    margin-bottom: 114px;
}

.quality-content {
    max-width: 1090px;
    width: 88%;
    margin: 0 auto;
}

.quality-content h3 {
    color: var(--accent-color);
    font-size: 30px;
    padding: 0 0 52px 0;
}

.quality-number {
    position: relative;
    margin-right: 104px;
}

.quality-number::after {
    content: '';
    display: inline-block;
    width: 65px;
    height: 1px;
    background-color: var(--accent-color);
    position: absolute;
    top: 50%;
    left: 57px;
}

.quality-content-inner {
    display: flex;
    gap: 5%;
}

.quality-content-inner li {
    flex-basis: calc(100% / 3);
}

.quality-content-inner img {
    width: 100%;
    height: auto;
    margin-bottom: 38px;
}

.quality-content-inner h4 {
    font-size: 18px;
    font-weight: normal;
    margin-bottom: 17px;
}

.quality-content-inner p {
    line-height: 2.5;
}


/* -------------------------------service */
.s-first-view {
    background-image: url(./img/service/first-view.jpg);
    margin: 0 46px 78px;
}

.service {
    margin-bottom: 170px;
}

.s-en {
    color: var(--accent-color);
    font-size: 16px;
    display: block;
    margin-bottom: 10px;
}

.s-ja {
    font-size: 33px;
    display: block;
}

.service-box {
    display: flex;
    margin-bottom: 87px;
}

.service-bg {
    width: 50%;
    height: 0;
    padding-bottom: 50%;
    background-image: url(./img/index/service1.jpg);
    background-position: center center;
    background-size: cover;
}

.service-content {
    position: relative;
    width: 50%;
    background-color: var(--white);
}

.service-content-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    max-width: 440px;
    width: 80%;
    padding-left: 6%;
    margin: 0 auto;
}

.service-content-inner p {
    line-height: 2.5;
    margin-top: 23px;
}

.works-box {
    display: flex;
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
}

.works-left {
   margin: 0 20px;
   flex-basis: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.works-left  h4 {
    margin-bottom: 52px;
}

.service-img {
    margin: 0 20px;
    flex-basis: 35%;
 }

 .stores-bg {
    background-image: url(./img/index/service2.jpg);
 }

 .renovation-bg {
    background-image: url(./img/index/service3.jpg);
 }

 .furnitures-bg {
    background-image: url(./img/index/service4.jpg)
 }


 /* タブレット */
 @media (max-width: 991px) {
    /* --------------------------------------index */
    /* header */
    .header {
        position: fixed;
        /* 適当に入力している */
        z-index: 100;
        background-color: var(--bg-color);
        width: 100%;
        height: 60px;
    }
    
    .header-inner {
        padding: 0 30px;
        height: 60px;
        position: relative;
    }

    .header-button {
        display: block;
        position: fixed;
        /*logoの位置に合わせた */
        top: 21px;
        right: 30px;
        width: 40px;
        height: 10px;
        /* z-index: 10; */
    }

    .header-button span,
    .header-button span::after {
        content: '';
        display: block;
        width: 100%;
        height: 1px;
        background-color: black;
        transition: .5s;
        position: absolute;
    }

    .header-button span::after {
        top: 10px;
    }
    
    .header-button.on span {
        transform: rotate(-30deg);
    } 

    .header-button.on span::after {
        transform: translateY(-10px) rotate(60deg);
    }
    
    .header-nav {
        display: none;
        margin-right: 0;
        font-size: 45px;
        background-color: var(--accent-color);
        opacity: .97;
        height: 100vh;
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        /* logoを上に表示させるため */
        z-index: -1;
        padding: 150px 0 0 10%;
    }

    .header-nav.on {
        display: block;
    }

    .header-list {
        display: block;
        position: static;
        left: 0;
        transform: translateX(0);
    }

    .header-list li {
        margin-bottom: 50px;
    }
    
    .header-list li a:hover {
        color: #00000080;
    }
    
    .sns-list {
        display: flex;
        gap: 24px;
    
        position: static;
        right: -96px;
    }

    
    /* footer */
    .footer-inner {
        padding: 169px 0;
        max-width: 700px;
        width: 70%;
    }

    .footer-contaier {
        display: block;
    }
 
    .footer-nav {
        gap: 0;
        justify-content: space-between;
        margin-bottom: 46px;
    }

    .footer-company {
        margin-bottom: 72px;
    }

    /* main */
    .main {
        padding-top: 60px;
    }

    /* first-view */
    .first-view {
        height: calc(100vh - 93px);
        /* 写真変更する */
        background-image: url(./img/index/first-view.jpg);
        background-position: center center;
        background-size: cover;
        margin: 0 26px 33px;
    }


    /* news */
    /* 変更してない */
    .news {
        position: relative;
        /* 上下余白後で変更 */
        margin: 153px 0 207px;
        padding-bottom: 60px;
    }

    .news::before {
        width: calc(100% - 60px);
        height: 60%;
        margin-left: 60px;
    }

    .news-inner {
        max-width: 700px;
        width: 90%;
    }

    .news-inner h2 {
        margin-left: 0;
    }

    .news-list {
        width: 410px;
        padding: 0;
        margin: 0 auto;
    }

    .news-link {
        padding-right: 0;
    }


    /* about */
    .about {
        display: block;
        /* 下余白後で変更する */
        margin-bottom: 160px;
    }

    .about-bg {
        width: 100%;
        padding-bottom: 100%;
    }

    .about-content {
        width: 100%;
        padding-bottom: 100%;
    }

    .about-content-inner {
        width: 90%;
    }

    /* service */
    .tp-service {
         /* 下余白後で変更する */
        margin-bottom: 212px;
    }

    .tp-service-inner h2 {
        /* 後で調整 */
        margin-bottom: 55px;
    }

    .tp-service-content {
        flex-wrap: wrap;
        padding: 0 3%;
    }

    .tp-service-content li {
        width: 44%;
        margin: 3%;
    }

    .tp-service-content li:last-of-type {
        margin-right: 3%;
    }


    /* access */
    .access-contact {
        height: 568px;
    }

    .access-contact-inner {
        max-width: 700px;
        width: 90%;
        padding: 0 0;
    }

    .access-content {
        display: block;
    }

    .access-content h2 {
        text-align: center;
        margin-bottom: 20px;
    }

    .access-office {
        font-size: 14px;
    }

    .access-osaka {
        margin-right: 0px;
        flex-basis: 50%;
    }

    .access-kyoto {
        flex-basis: 50%;
    }

    .contact {
        width: 90%;
        max-width: 700px;
    }


    /* -------------------------------works */
    /* first-view */
    .fsv-en {
        color: var(--white);
        font-size: 55px;
        display: block;
        margin-bottom: 6px;
        font-weight: bold;
    }

    .fsv-ja {
        color: var(--white);
        font-size: 24px;
        display: block;
        font-weight: bold;
    }

    .ws-first-view {
        height: 450px;
        margin: 0 26px 70px;;
    }

    /* works */
    .works {
        width: 96%;
        margin-bottom: 70px;
    }

    .works-inner {
        display: block;
    }

    .works-content ul {
        display: flex;
        gap: 69px 0;
    }

    .works-content li {
        padding: 0px 9px;
    }

    .works-side {
        padding: 95px 11px 0;
    }

    .works-side h3 {
        border-bottom: 1px solid var(--footer);
        padding-bottom: 10px;
    }

    .works-bottom {
        padding-top: 88px;
    }


    /* -------------------------------about */
    /* concept */
    .concept-inner {
        width: 90%;
    }

    /* quality */
    .quality {
        margin-left: 0;
    }
    
    .quality h2 {
       text-align: center;
       margin-bottom: 63px;
    }

    .quality-content {
        max-width: 700px;
        width: 90%;
        margin: 0 auto;
    }

    .quality-content h3 {
        color: var(--accent-color);
        font-size: 30px;
        padding: 0 0 52px 0;
    }
    
    .quality-content-inner {
        display: block;
    }

    .quality-content-inner li {
       margin-bottom: 60px;
    }

    .quality-content-inner li:last-of-type {
        margin-bottom: 0;
    }


    /* -------------------------------service */
    .service {
        margin-bottom: 250px;
    }

    .service-box {
        display: block;
    }

    .service-bg {
        width: 100%;
        padding-bottom: 70%;
    }

    .service-content {
        width: 100%;
        padding-bottom: 70%;
    }
 
    .service-content-inner {
        max-width: 90%;
        width: 90%;
        padding-left: 0;
    }

    .works-box {
        display: block;
        /* max-width: 700px; */
        width: 90%;
        padding: 0;
        position: relative;
    }

    .works-left-inner {
        display: flex;
    }

    .works-left {
        margin: 0 0 20px 0;
        display: block;
    }

    .works-left h4 {
        margin: 0 55px 0 0;
    }

    .service-link {
        position: absolute;
        bottom: -109px;
        left: -3px;
    }

    .service-img {
        margin: 50px 0;
        display: inline-block;
        width: 49%;
    }

    .service-img:last-child {
        margin-left: 2%;
    }
 }

 @media (max-width: 767px) {
    body {
        font-size: 14px;
    }

     /* --------------------------------------index */
    /* footer */
    .footer-inner {
        width: 87%;
    }

    .footer-company {
        font-size: 12px;
    }

    .footer-nav {
        margin-bottom: 46px;
        display: flex;
        justify-content: space-between;
        font-size: 18px;
        gap: 0;
    }

    .sub-category {
        font-size: 12px;
    }

    .footer small {
        font-size: 12px;
    }

    /* main */
    .en {
        font-size: 28px;
        margin-bottom: 5px;
    }

    .ja {
        font-size: 11px;
    }

    /* first-view */
    .first-view {
        height: calc(100vh - 60px);
        background-image: url(./img/index/first-view.jpg);
        background-position: center center;
        background-size: cover;
        margin: 0;
    }

    /* news */
    .news {
        margin: 153px 0 137px;
        padding-bottom: 60px;
    }

    .news::before {
        width: 78%;
        height: 55%;
    }
    .news-inner {
        width: 248px;
        margin: 0 auto;
    }

    .news-inner h2 {
        display: inline-block;
        margin-bottom: 43px;
    }

    .news-list {
        width: 248px;
        margin: 0 0 43px;
    }

    .news-list span {
        margin-right: 0;
        display: block;
        margin-bottom: 10px;
    }

    .news-link {
        text-align: center;
    }


    /* about */
    /* -40pxした */
    .about {
        margin-bottom: 120px;
    }

    .about-content h2 {
        margin-bottom: 45px;
    }

    .about-content p:first-of-type {
        margin-bottom: 45px;
    }

    .about-content-inner {
        width: 90%;
    }

    .about-content h3 {
        font-size: 27px;
    }


    /* service */
    .tp-service {
        margin-bottom: 140px;
    }

    .tp-service-inner h2 {
        margin-bottom: 30px;
    }

    .tp-service-content {
        display: block;
        padding: 0;
    }

    .tp-service-content li {
        width: 90%;
        margin: 0 auto 30px;
    }

    .tp-service-content li:last-of-type {
        margin: 0 auto;
    }


    /* works */
    .tp-works::before {
        width: 85%;
        height: 47%;
    }

    .tp-works {
        margin-bottom: 126px;
        padding-top: 30px;
    }

    .tp-works-inner {
        width: 90%;
        margin: 0 auto;
    }

    .tp-works-inner h2 {
        margin: 0 0 27px;
    }

    .tp-works-link {
        margin: 79px 0 0;
        text-align: center;
    }

    .tp-works-inner {
        width: 90%;
    } 

    .slider .slick-slide {
        margin: 0;
    }
    
    .slick-next,
    .slick-prev {
        top: auto;
        bottom: -55px;
    }
    
    .tp-works-link {
        margin: 96px 0 0;
    }


    /* access */
    .access-contact {
        height: 610px;
    }

    .access-contact-inner {
        max-width: 100%;
        width: 100%;
        margin: 0;
    }

    .access-content {
        padding: 50px 0 45px;
    }

    .access-content h2 {
        margin-bottom: 36px;
    }

    .access-office {
        font-size: 12px;
    }

    .access-office {
        display: block;
        margin-bottom: 60px;
    }

    .access-osaka {
        margin-bottom: 50px;
    }

    .contact {
       position: relative;
       bottom: -5px;
       padding: 0 23px;
    }

    .contact-inner {
        display: block;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        height: 45px;
        width: 100%;
    }

    .contact-inner::before {
        bottom: 23px;
        right: 43px;
    }

    .contact-inner:hover::before {
        right: 28px;
    }

    .contact .en {
        display: block;
        margin: 0 0 5px 0;
    }

    .contact .ja {
        display: block;
        color: var(--white);
    }

    
/* -------------------------------works */
    .works {
        width: 90%;
    }

    .ws-first-view {
        height: 450px;
        margin: 0 0 70px;
    }

    .fsv-en {
        font-size: 50px;
        margin-bottom: 2px;
    }

    .fsv-ja {
        font-size: 22px;
    }

    .works-content ul {
        display: block;
    }

    .works-content li {
        padding: 0;
        margin-bottom: 35px;
    }

    .works-name {
        font-size: 16px;
    }


    /* -------------------------------about */
    .concept-inner .en,
    .quality .en {
        font-size: 40px;
    }

    .concept-inner .ja,
    .quality .ja {
        font-size: 16px;
    }

    .concept-inner h3 {
        font-size: 33px;
        margin-bottom: 102px;
    }

    .quality-content-inner h4 {
        font-size: 16px;
    }

    /* -------------------------------service */
    .s-en {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .s-ja {
        font-size: 30px;
    }

    .service-content {
        padding-bottom: 100%;
    }

    .service-content-inner p {
        line-height: 1.8;
        margin-top: 13px;
    }

    .service-link {
        left: 50%;
        transform: translateX(-50%);
    }

    .service-img {
        margin: 50px 0;
        display: block;
        width: 100%;
    }

    .service-img:last-child {
        margin-left: 0;
    }
 }


