@charset "UTF-8";
/* CSS Document */
/* ========================================
   1. Reset
   2. Common
      2.1 Contents bg
      2.2 Table
      2.3 Modal
      2.4 Grid
      2.5 Button
      2.6 Page
   3. Header
   4. Main Content
      4.1 TopPage
      4.2 Service
         4.2.1 System
         4.2.2 Web
         4.2.3 Graphic
         4.2.4 OA
      4.3 About
      4.4 Recruit
      4.5 Contact
   5. Footer
   6. Responsive
======================================== */

/*----------------------------------------
  1. Reset
----------------------------------------*/
ul{
    margin: 0;
	padding: 0;
    list-style: none;
}
a,a:hover{
	color: #333;
	text-decoration: none;
}
h1,h2,h3,h4,h5,h6,p{
    margin: 0;
}
img{
    width: 100%;
    display: block;
}
button,input,select,textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    border: none;
    padding: 0;
    outline: none;
}

/*----------------------------------------
  2. Common
----------------------------------------*/
body{
    color: #333;
    font-family: "Helvetica Neue", Arial, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-feature-settings: "palt";
	font-size: 16px;
	line-height: 1.5;
    letter-spacing: .08em;
	margin: 0;
}
section{
    margin-bottom: 80px;
}
.pc{
	display: block!important;
}
.sp{
	display: none!important;
}
.no-margin-bottom{
    margin-bottom: 0!important;
}

/* 2.1 Contents bg */
.top-container{
    background-color: #fff;
    padding: 40px 0 0 0;
    position: relative;
    z-index:1;
}
.container-inner{
    max-width: 1280px;
	padding: 0 80px;
	margin: 0 auto;
}
.container-bg{
	position: relative;
    padding: 40px 0 0 0;
}
.container-bg:after{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: 80%;
	z-index: -1;
	background-color: #fcf7eb;
}
.contents-bg{
	position: relative;
    padding: 80px 0;
}
.contents-bg:after{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: 100%;
	z-index: -1;
	background-color: #fcf7eb;
}

/* 2.2 Table */
table{
	border-collapse: collapse;
	margin-bottom: 80px;
	width: 100%;
}
table tr{
	border-bottom: 1px solid #e8e8e8;
}
table tr:first-child{
	border-top: 1px solid #e8e8e8;
}
table th{
	background-color: #fafafa;
	vertical-align: top;
	width: 25%;
}
table th,table td{
	text-align: left;
	padding: 15px;
}
table th span{
    font-size: 12px;
    display: block;
}
table td p{
	margin-bottom: 15px;
}
table td p:last-child{
	margin-bottom: 0;
}

/* 2.3 Modal */
.modal{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}
.modal-inner{
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65%;
    max-width: 767px;
    max-height: 480px;
    padding: 50px;
    overflow-y: auto;
}
.js-modalClose{
    font-size: 32px;
    background: none;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
}
.close-mark{
    display: block;
    position: relative;
    width: 30px;
    height: 30px;
}
.close-mark::before, .close-mark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 30px;
  background: #333;
}
.close-mark::before {
  transform: translate(-50%,-50%) rotate(45deg);
}
.close-mark::after {
  transform: translate(-50%,-50%) rotate(-45deg);
}
.js-fadein{
    opacity: 0;
    transform: translate(0, 0);
    transition: all 1.5s;
}
.js-fadein.fadein-bottom {
    transform: translate(0, 30px);
}
.js-fadein.is-fadein {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}

/* 2.4 Grid */
.l-grid{
	display: flex;
	justify-content: space-between;
}
.l-grid-3{
	width: calc((100% / 12) * 3);
	position: relative;
}
.l-grid-4{
	width: calc((100% / 12) * 4);
	position: relative;
}
.l-grid-6{
	width: calc((100% / 12) * 6);
	position: relative;
}
.l-grid-8{
	width: calc((100% / 12) * 8);
	position: relative;
}
.l-grid-9{
	width: calc((100% / 12) * 9);
	position: relative;
}

/* 2.5 Button */
.contents__btn a.btn,.contact__btn .btn,.gnav__btn .btn{
    color: #fff;
    background-color: rgba(255,151,0,1);
    border-radius: 2px;
    display: block;
    position: relative;
	padding: 0 20px;
	z-index: 1;
	cursor: pointer;
}
.contents__btn a.btn::before,
.contact__btn .btn::before,
.gnav__btn .btn::before{
    content: "";
    background-color: rgba(255,151,0,.7);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	transform-origin: 100% 50%;
	transform: scaleX(0);
	transition: transform ease .3s;
}
.contents__btn a.btn:hover,
.contact__btn .btn:hover,
.gnav__btn .btn:hover{
    background-color: rgba(255,151,0,.7);
}
.contents__btn a.btn:hover::before,
.contact__btn .btn:hover::before,
.gnav__btn .btn:hover::before{
    transform-origin: 0% 50%;
	transform: scaleX(1);
}
.contents__btn a.btn::after,
.contact__btn .btn::after{
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 20px;
}
.gnav__btn .btn{
    display: inline;
    padding: 10px 20px;
}

/* 2.6 Page */
.pageTop-visual{
	position: relative;
	height: 320px;
	margin-bottom: 60px;
}
.pageTop-visual-img{
    background-image: url("../images/pageTop.jpg");
    background-position: center right;
    background-size: cover;
	background-repeat: no-repeat;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
}
.pageTop-visual-inner{
    width: 100%;
    height: 240px;
    position: absolute;
    bottom: 0;
}
.pageTop-visual-ttl{
    color: #fff;
	position: absolute;
    top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
    text-align: center;
}
.pageTop-visual-ttl h2{
	font-size: 40px;
    line-height: 40px;
    margin-bottom: 10px;
}
.pageTop-visual-ttl p{
    font-family: 'Lato', sans-serif;
    font-size: 20px;
	font-weight: bold;
}
.page-top-fadeUp{
    animation: .8s .2s forwards pageTopFadeUp;
    opacity: 0;
}
@keyframes pageTopFadeUp{
  from{
      transform: translateY(20px);
      opacity: 0;
  }
  to{
      transform: translateY(0);
      opacity: 1;
  }
}
.page-sec-ttl{
    position: relative;
    margin-bottom: 65px
}
.page-sec-ttl h2{
    font-size: 32px;
	text-align: center;	
}
.page-sec-ttl::after {
    content: "";
    width: 50px;
    height: 5px;
    background-color: #ff9700;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}

/*----------------------------------------
  3. Header
----------------------------------------*/
header{
    background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: space-between;
    position: absolute;
    top: 0;
    width: 100%;
    height: 80px;
    line-height: 80px;
    z-index: 100;
}
#header.is-upMove{
    position: fixed;
    animation: UpAnime 0.8s forwards;
}
@keyframes UpAnime{
    from{
        opacity: 1;
        transform: translateY(0);
    }
    to{
        opacity: 0;
        transform: translateY(-100px);
    }
}
#header.is-downMove{
    position: fixed;
    animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
    from{
        opacity: 0;
        transform: translateY(-100px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

/*----------------------------------------
  4. Main Content
----------------------------------------*/
/* 4.1 TopPage */
.top-news__btn .btn{
    width: 50%;
    height: 60px;
    line-height: 60px;
}
.top-service__btn .btn{
    width: 210px;
    height: 60px;
    line-height: 60px;
}
.top-recruit__btn a{
	color: #fff;
	background: linear-gradient(to right, #ff9700, #FF6F00);
    font-size: 18px;
	font-weight: bold;
	border-radius: 2px;
	display: block;
	text-align: center;
	padding: 0 20px;
	line-height: 80px;
	height: 80px;
	box-shadow: 0px 7px 0 #FF6F00;
	transition: .3s;
}
.top-recruit__btn a:hover {
  transform: translate3d(0, 5px, 0);
  box-shadow: none;
}
.main-visual{
    width: 100%;
    height: 720px;
    position: relative;
}
.main-visual-bg{
    background-image: url("../images/hero.jpg");
    background-position: center;
    background-size: cover;
	background-repeat: no-repeat;
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}
.main-visual-inner{
    letter-spacing: .1em;
	position: absolute;
    left: 80px;
    bottom: 50px;
}
.main-visual-inner p.text{
    margin: 15px 0 0 10px;
}
.main-visual-row{
    font-size: 50px;
    line-height: 50px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 5px;
    padding: 5px 10px;
    position: relative;
}
.main-visual-row::after{
    content: "";
    background-color: #fcf7eb;;
    border-radius: 5px;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    animation: 0.8s forwards slideUp;
    z-index: -1;
}
@keyframes slideUp {
    0% {
      transform: translateY(100%);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: .8;
    }
  }
.main-visual-text{
    display: flex;
    align-items: center;
    overflow: hidden;
}
.main-visual-text .orange{
    font-size: 55px;
    color: #ff9700;
}
.main-visual-text span {
    display: block;
    transform: translateY(120%);
    transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.8s, opacity .4s ease;
}
.main-visual-text.is-visible span {
    transform: translateY(0);
}
.main-visual-text span:nth-child(2) {
    transition-delay: 0.08s;
}
.main-visual-text span:nth-child(3) {
    transition-delay: 0.16s;
}
.main-visual-text span:nth-child(4) {
    transition-delay: 0.24s;
}
.main-visual-text span:nth-child(5) {
    transition-delay: 0.32s;
}
.main-visual-text span:nth-child(6) {
    transition-delay: 0.40s;
}
.main-visual-text span:nth-child(7) {
    transition-delay: 0.48s;
}
.main-visual-text span:nth-child(8) {
    transition-delay: 0.58s;
}
.main-visual-text span:nth-child(9) {
    transition-delay: 0.64s;
}
.main-visual-inner p.fadeUp{
    animation: 0.8s 1s forwards fadeUp;
    opacity: 0;
}
@keyframes fadeUp{
  0%{
      opacity: 0;
      transform: translateY(100px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}
.top-news{
    margin-bottom: 40px;
}
.top-news-head{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
    min-height: 150px;
    text-align: left;
}
.top-news-ttl h2{
	font-family: 'Lato', sans-serif;
	font-size: 32px;
}
.top-news-ttl p{
    font-size: 20px;
	font-weight: bold;
}
.top-news__btn a.btn{
    width: 50%;
    height: 50px;
    line-height: 50px;
}
.news-inner li{
	display: flex;
	border-bottom: 1px solid #e8e8e8;
	padding: 15px 0;
}
.news-inner li:first-child{
    border-top: 1px solid #e8e8e8;
}
.news-inner li .date{
	width: 20%;
}
.news-inner li .text{
	width: 80%;
}
.news-inner li a:hover{
    color: #ff9700;
    text-decoration: underline;
}
/* News */
section.news{
    background-color: #fff;
    padding: 80px;
    margin-bottom: 0;
}
.news-inner li.detail{
    display: block;
    scroll-margin-top: 80px;
    padding: 20px 0;
}
.news .news-inner li .date{
    font-weight: bold;
    width: 100%;
    margin-bottom: 5px;
}
.news .news-inner li .text{
    width: 100%;
}
.top-service{
    margin-bottom: 80px;
}
.top-service-ttl{
    text-align: center;
    position: relative;
    margin-bottom: 65px;
}
.top-service-ttl::after{
    content: "";
    width: 50px;
    height: 5px;
    background-color: #ff9700;
    position:absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}
.top-service-ttl h2{
	font-family: 'Lato', sans-serif;
	font-size: 38px;
}
.top-service-ttl p{
    font-size: 20px;
	font-weight: bold;
}
.top-service-main{
    position: relative;
}
.top-service-main:nth-child(even) .top-service-number{
    right: 0;
}
.top-service-number{
    display: inline-block;
    position: absolute;
    top: 0;
    z-index: 1;
}
.top-service-number .number{
    color: #ff9700;
    font-size: 40px;
    font-weight: bold;
    position: absolute;
    top: calc(50% - 2.5px);
    left: 50%;
    transform: translate(-50%, -50%)
}
svg{
    transform: rotate(-90deg);
}
circle{
    fill: transparent;
    stroke: #ff9700;
    stroke-width: 5;
}
.js-fadeinNumber{
    opacity: 0;
    transform: translate(0, 0);
    transition: all 1s;
}
.js-fadeinNumber.is-fadein{
    opacity: 1 !important;
    transform: translate(0, 0) !important;
    animation: 2s forwards circle;
}
@keyframes circle {
    0%{
        stroke-dasharray: 0 366;
    }
    99.9%,to{
        stroke-dasharray: 366 366;
    }
}
.top-service-area{
    position: relative;
}
.top-service-main:nth-child(even) .top-service-area{
    display: flex;
    justify-content: flex-end;
}
.top-service-contents{
	display: flex;
	position: relative;
    width: calc(100% - 80px);
	height: 460px;
    margin-bottom: 40px;
	overflow: hidden;
}
.top-service-main:nth-child(odd) .top-service-contents{
    flex-direction: row-reverse;
}
.top-service-img{
    background-size: cover;
	background-repeat: no-repeat;
	width: 380px;
	height: 380px;
	position: relative;
	z-index: 1;
}
.top-service-img.img01{
	background-image: url("../images/topService-system.jpg");
    background-position: center; 
}
.top-service-img.img02{
	background-image: url("../images/topService-web.jpg");
}
.top-service-img.img03{
    background-image: url("../images/topService-design.jpg");
    background-position: center;
}
.top-service-img.img04{
	background-image: url("../images/topService-oa.jpg");
}
.top-service-textarea{
	position: absolute;
	top: 40px;
    width: calc(100% - 40px);
	height: 420px;
	background-color: #fff;
}
.top-service-main:nth-child(odd) .top-service-textarea,
.top-service-main:nth-child(even) .top-service-area .en{
    left: 0;
}
.top-service-main:nth-child(even) .top-service-textarea,
.top-service-main:nth-child(even) .top-service-text,
.top-service-main:nth-child(odd) .top-service-area .en{
    right: 0;
}
.top-service-text{
	position: absolute;
	top: 50%;
	transform : translateY(-50%);
	width: calc(100% - 460px);
    padding: 0 60px;
}
.top-service-text h3{
	font-size: 32px;
}
.top-service-text p{
	margin: 5px 0 20px;
}
.top-service-area .en{
    color: #ff9700;
    display: flex;
    align-items: center;
    height: 460px;
    position: absolute;
    top: 0;
    white-space: nowrap;
    writing-mode: vertical-lr;
}
.top-service-area .en::after{
    content:"";
    width: 1px;
    height: 0;
    background-color: #ff9700;
    margin-top: 10px;
    transition: all 1.5s 1s;
}
.top-service-area .en.is-fadein:after {
    height: 100%;
}
.top-recruit{
    margin-bottom: 0;
}
.top-recruit-inner{
	position: relative;
	overflow: hidden;
    max-width: 1280px;
    height: 90vh;
    margin: 0 auto;
    
}
.top-recruit-img {
    position: relative;
    float: right;
    width: calc(50% - 40px);
}
.top-recruit-img img {
    position: absolute;
    right: 40px;
    width: 100%;
    height: auto;
}
.top-recruit__btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    z-index: 2;
}
.top-recruit-area{
	background-color: #fff;
	margin-top: 80px;
    height: 100%;
}
.top-recruit-ttl{
	position: absolute;
	top: 20px;
	left: 0;
	width: 55%;
}
.top-recruit-textarea {
    padding: 80px 60px;
    box-sizing: border-box;
}
.top-recruit-text {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: calc(50% - 40px);
}
.top-recruit-text h3{
	font-size: 32px;
}
.top-recruit-textarea p{
	margin: 20px 0 40px;
}
.top-recruit-link{
	width: 50%;
}
.top-recruit-link a{
	position: relative;
	display: flex;
	border-bottom: 1px solid #333;
	padding-bottom: 10px;
	margin-bottom: 20px;
}
.top-recruit-link a::after{
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
    position: absolute;
    top: 0;
    right: 5px;
    transition: all .2s linear;
}
.top-recruit-link a:hover::after{
    right: 0;
}
.is-fadein .top-recruit-fadeUp{
    animation: .8s forwards topRecruitFadeUp;
    opacity: 0;
}
@keyframes topRecruitFadeUp{
  from{
      transform: translateY(100px);
      opacity: 0;
  }
  to{
      transform: translateY(0);
      opacity: 1;
  }
}
.is-fadein .delay-time01{
    animation-delay: .5s;
}
.is-fadein .delay-time02{
    animation-delay: .8s;
}

/* 4.2 Service */
/* Common */
.service-message{
    margin-bottom: 40px;
}
.service-message h3{
	font-size: 28px;
    margin-bottom: 5px;
}
.service-message span{
	display: block;
	font-weight: bold;
	margin-bottom: 15px;
}
.service-contents{
    margin-bottom: 40px;
}
.service-contents .l-grid-last::after {
    content: "";
    width: calc(100% / 3 - 20px);
    display: block;
}
.service-contents .l-grid-4{
    box-shadow: rgba(0, 0, 0, .05) 0 0 10px;
    width: calc((100% / 12) * 4 - 20px);
    border-radius: 5px;
    margin-bottom: 40px;
}
.service-contents-textarea{
    padding: 30px;
}
.service-contents-textarea img{
    width: 90px;
    aspect-ratio: 1 / 1;  
	display: block;
	margin: 10PX auto 20px;
}
.service-contents-textarea h4{
    font-size: 18px;
	margin-bottom: 10px;
    text-align: center;
}
.service-contents-textarea p a{
    text-decoration: underline;
}

/* 4.2.1 System */
.system-skill-list{
    margin-top: 40px;
}
.system-skill-list h3{
    font-size: 18px;
    position: relative;
    padding-left: 15px;
    margin-bottom: 10px;
}
.system-skill-list h3::before{
    content: '';
    background-color: #ff9700;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 5px;
    height: 80%;
}
.system-skill-list th{
    font-weight: bold;
    background-color: #fafafa;
    width: 20%;
}
.system-works table th,
.system-works table td{
    border-right: 1px solid #e8e8e8;
    vertical-align: top;
}
.system-works table th:first-child,
.system-works table th:last-child,
.system-works table td:first-child,
.system-works table td:last-child{
    width: 30%;
}
.system-works table th:nth-child(2),
.system-works table td:nth-child(2){
    width: 40%;
}
.system-works table th:last-child,
.system-works table td:last-child{
    border: none;
}
.system-works table td:first-child{
    font-weight: bold;
}
.system-works table td span{
    font-size: 14px;
    display: block;
}
.system-works table td ul{
    padding-left: 20px;
    position: relative;
}
.system-works table td li::after{
    content: '●';
    color: #ccc;
    position: absolute;
    left: 0;
}

/* 4.2.2 Web */
.service-price table td{
	border: 1px solid #e8e8e8;
	padding: 20px;
    width: calc(100% / 3);
	vertical-align: top;
}
.service-price table .plan td{
	font-weight: bold;
	text-align: center;
	background-color: #fafafa;
}
.service-price table .price td{
	font-size: 24px;
	font-weight: bold;
	text-align: center;
}
section.web-works{
    margin-bottom: 0;
}
.web-works .l-grid:last-child{
    margin-bottom: 0;
}
.web-works .l-grid-last::after {
    content: "";
    width: calc((100% / 12) * 4 - 20px);
    display: block;
}
.web-works .l-grid-4{
    width: calc((100% / 12) * 4 - 20px);
    margin-bottom: 30px;
}
.web-works-img{
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    margin-bottom: 15px;
    overflow: hidden;
}
.web-works-img .img{
	background-size: cover;
	background-repeat: no-repeat;
    display: block;
	width: 100%;
	height: 100%;
    margin-bottom: 10px;
    transition: transform .6s ease;
}
.web-works-link.img-scale:hover .img{
    transform: scale(1.03);
}
.web-works-img .img01{
    background-image: url("../images/service-web/works/work01-hvf.jpg");
}
.web-works-img .img02{
    background-image: url("../images/service-web/works/work02-index.jpg");
}
.web-works-img .img03{
    background-image: url("../images/service-web/works/work03-kurashi.jpg");
}
.web-works-img .img04{
    background-image: url("../images/service-web/works/work04-hajime.jpg");
}
.web-works-img .img05{
    background-image: url("../images/service-web/works/work05-hajime.jpg");
}
.web-works-img .img06{
    background-image: url("../images/service-web/works/work06-legare.jpg");
}
.web-works-img .img07{
    background-image: url("../images/service-web/works/work07-kura.jpg");
}
.web-works-img .img08{
    background-image: url("../images/service-web/works/work08_marujo.jpg");
}
.web-works-img .img09{
    background-image: url("../images/service-web/works/work10_jmh.jpg");
}
.web-works-img .img10{
    background-image: url("../images/service-web/works/work09_vif.jpg");
}
.web-works-img .img11{
    background-image: url("../images/service-web/works/work11_dsl.jpg");
}
.web-works-img .img12{
    background-image: url("../images/service-web/works/work12-bew.jpg");
}
.web-works-contents h4{
    font-size: 18px;
    margin-bottom: 5px;
}
.web-works-link.img-scale:hover h4{
    color: #ff9700;
}
.web-works-textarea ul{
    font-size: 0;
}
.web-works-textarea ul.tag li{
    font-size: 13px;
    color: #99968e;
    display: inline-block;
}
.web-works-textarea ul.tag li::after{
    content: '/';
    padding: 0 3px;
}
.web-works-textarea ul.tag li:first-child{
    padding-right: 3px;
}
.web-works-textarea ul.tag li:first-child::after,
.web-works-textarea ul.tag li:last-child::after{
    content: none;
}

/* 4.2.3 Graphic */
.service-design-message{
    margin-bottom: 80px;
}
.service-design-message .l-grid-6{
    width: calc((100% / 12) * 6 - 20px);
    margin-top: 20px;
}
.service-design-message h4{
    font-size: 18px;
    position: relative;
    padding-left: 15px;
    margin-bottom: 10px;
}
.service-design-message h4::before{
    content: '';
    background-color: #ff9700;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 5px;
    height: 80%;
}
.service-design-message ul{
    padding-left: 20px;
    position: relative;
}
.service-design-message li::after{
    content: '●';
    color: #ccc;
    position: absolute;
    left: 0;
}
.service-design-message table th{
    font-weight: normal;
}
.service-design-message table th,
.service-design-message table td{
    padding: 10px;
    width: 50%;
}
section.design-works{
    margin-bottom: 0;
}
.design-works-tab ul.tab{
	display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}
.design-works-tab ul.tab li {
	width: calc(100% / 6 - 1px);
    color: #fff;
	background-color: #ff9700;
    height: 54px;
    line-height: 54px;
    text-align: center;
	position: relative;
	cursor: pointer;
}
.design-works-tab ul.tab li.is-active,
.design-works-tab ul.tab li:hover {
    font-weight: bold;
    color: #ff9700;
	background-color: #fcf7eb;
    border-top: 3px solid #ff9700;
}
.design-works .l-grid{
    flex-wrap: wrap;
}
.design-works .l-grid::after{
    content: "";
    width: calc((100% / 12) * 4 - 20px);
    display: block;
}
.design-works .l-grid-4{
    width: calc((100% / 12) * 4 - 20px);
    margin-bottom: 30px;
}
.design-works-img{
    background-color: #fff;
    height: auto;
    aspect-ratio: 4 / 3;
    margin-bottom: 15px;
    padding: 40px;
    overflow: hidden;
}
.design-works-img .img{
    background-size: contain;
    background-position: center;
	background-repeat: no-repeat;
    display: block;
	width: 100%;
	height: 100%;
    margin-bottom: 10px;
    transition: transform .6s ease;
}
.design-works-link:hover .img{
    transform: scale(1.03);
    cursor: pointer;
}
.design-works-img .img01{
    background-image: url("../images/service-design/works/card01.png");
}
.design-works-img .img02{
    background-image: url("../images/service-design/works/card02.png");
}
.design-works-img .img03{
    background-image: url("../images/service-design/works/card03.png");
}
.design-works-img .img04{
    background-image: url("../images/service-design/works/card04.png");
}
.design-works-img .img05{
    background-image: url("../images/service-design/works/logo01.png");
}
.design-works-img .img06{
    background-image: url("../images/service-design/works/logo02.png");
}
.design-works-img .img07{
    background-image: url("../images/service-design/works/logo03.png");
}
.design-works-img .img08{
    background-image: url("../images/service-design/works/logo04.png");
}
.design-works-img .img09{
    background-image: url("../images/service-design/works/logo05.png");
}
.design-works-img .img10{
    background-image: url("../images/service-design/works/flyer01.png");
}
.design-works-img .img11{
    background-image: url("../images/service-design/works/flyer02.png");
}
.design-works-img .img12{
    background-image: url("../images/service-design/works/catalog01.png");
}
.design-works-link h4{
    font-size: 18px;
    margin-bottom: 5px;
}
.design-works-link:hover h4{
    color: #ff9700;
    cursor: pointer;
}
.design-works-textarea ul{
    font-size: 0;
}
.design-works-textarea ul.tag li{
    font-size: 13px;
    color: #99968e;
    display: inline-block;
}
.design-works-textarea ul.tag li:first-child{
    padding-right: 3px;
}
.design-modal-contents{
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 50px;
}
.design-modal-img img{
    width: 100%;
    max-width: 520px;
}
.design-modal-img img.slide{
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.design-modal-img img.slide.active{
    display: block;
}
.design-modal-img .arrow{
    color: #fff;
    background-color: #333;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    cursor: pointer;
}
.design-modal-img .arrow i{
    display: block;
    text-align: center;
    line-height: 40px;
}
.design-modal-img .arrow.left{
    left: -20px;
}
.design-modal-img .arrow.right{
    right: -20px;
}
.design-modal-img .arrow.hidden{
    display: none;
}

/* 4.2.4 OA */
.oa-works-area{
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
}
.oa-works-area img{
    width: 20%;
    aspect-ratio: 1 / 1;
}
.oa-works-textarea{
    width: 80%;
    padding-left: 20px;
}
.oa-works-textarea h4{
    font-size: 18px;
    margin-bottom: 10px;
}
.oa-works-area .maker h5{
	color: #fff;
	font-size: 14px;
	font-weight: normal;
	background-color: #333;
	display: inline-block;
	padding: 3px 10px;
	border-radius: 2px;
    margin:  20px 0 5px;
}

/* 4.2 About */
.about-message{
    position: relative;
}
.about-message-bg{
	position: relative;
    padding: 80px 0 0;
}
.about-message-bg:after{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: 100%;
	z-index: -1;
	background-color: #fcf7eb;
}
.about-message-ttl{
    position: absolute;
    width: 60%;
    z-index: 1;
}
.about-message-inner{
    position: relative;
    height: 600px;
}
.about-message-inner > img{
    max-width: 520px;
    height: auto;
    aspect-ratio: 1 / 1;
    position: absolute;
    top: 0;
    right: 0
}
.about-message-textarea{
    background-color: #fff;
    width: calc(100% - 400px);
    height: 520px;
    position: absolute;
    top: 80px;
}
.about-message-text{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 120px);
}
.about-message-text h3{
	font-size: 24px;
    font-weight: normal;
	margin-bottom: 20px;
}
.about-message-text .sign{
    text-align: right;
}
.about-message-text .sign img{
	width: 43%;
    margin: 20px 0 0;
}
.table td.location{
    padding: 20px 0;
}
.table td.location p{
    border-bottom: 1px solid #e8e8e8;
    padding: 0 20px 10px;
}
.table td.location p:last-child{
    border-bottom: none;
    padding-bottom: 0;
}
.table td.location p span{
    font-weight: bold;
    display: block;
}
.about-access h3{
	text-align: center;
	margin-bottom: 20px;
}
.about-access .map{
	margin-bottom: 40px;
}
.about-access .map h4{
    font-size: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 40px;
}
.about-access .map h4::before,
.about-access .map h4::after{
	border-top: 1px solid #333;
	content: "";
	flex-grow: 1;
}
.about-access .map h4::before{
	margin-right: 15px;
}
.about-access .map h4::after{
	margin-left: 15px;
}
.about-access .map iframe{
	width: 100%;
	height: 320px;
	margin-bottom: 10px;
}
.about-access #osaka,.about-access #fukuoka{
    display: block;
    padding-top: 80px;
    margin-top: -80px;
}

/* 4.3 Recruit */
section.recruit-message{
    margin-bottom: 40px;
}
.recruit-message-text h3{
	font-size: 28px;
}
.recruit-message-text span{
    font-weight: bold;
    display: block;
    margin-bottom: 15px;
}
.recruit-info-bg{
    margin-bottom: 80px;
    padding: 40px 0;
    clear: both;
}
section.recruit-info{
    margin-bottom: 0;
}
.recruit-text h3{
    font-size: 24px;
}
.recruit-img{
    background-size: cover;
	background-repeat: no-repeat;
	width: 380px;
	height: 380px;
	position: relative;
	z-index: 1;
}
.recruit-img.img01{
	background-image: url("../images/recruit-img03.jpg");
    background-position: right center; 
}
.recruit-img.img02{
	background-image: url("../images/recruit-img02.jpg");
    background-position: center; 
}
.recruit-img.img03{
	background-image: url("../images/recruit-img01.jpg");
    background-position: -135px center; 
}
section.recruit-interview{
    scroll-margin-top: 80px;
}
.recruit-interview-inner .l-grid-4{
	width: calc((100% / 12) * 4 - 20px);
    margin-bottom: 40px;
}
.recruit-interview-area{
	position: relative;
	overflow: hidden;
}
.recruit-interview-area .img{
    border-radius: 5px;
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    transition: transform .6s ease;
}
.recruit-interview-area .img01{
    background-image: url("../images/interview-img01.jpg");
}
.recruit-interview-area .img02{
    background-image: url("../images/interview-img02.jpg"); 
}
.recruit-interview-area .img03{
    background-image: url("../images/interview-img03.jpg");
}
.recruit-interview-area .img04{
    background-image: url("../images/interview-img04.jpg");
}
.recruit-interview-area .img05{
    background-image: url("../images/interview-img05.jpg");
}
.recruit-interview-area .img06{
    background-image: url("../images/interview-img06.jpg");
}
.recruit-interview-area .img07{
    background-image: url("../images/interview-img07.jpg");
}
.recruit-interview-area .img08{
    background-image: url("../images/interview-img08.jpg");
}
.recruit-interview-area .img09{
    background-image: url("../images/interview-img09.jpg");
}
.recruit-interview-img {
    border-radius: 5px;
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    overflow: hidden;
}
.modal-img {
    width: 200px;
    height: 200px;
    margin-bottom: 5px;
}
.hover-img-scale:hover .img {
    transform: scale(1.03);
    transition: transform 0.6s ease;
    border-radius: 5px;
}
.recruit-interview-contents:hover h4{
    color: #ff9700;
}
.recruit-interview-contents h4{
    font-size: 20px;
    margin-bottom: 5px;
}
.recruit-interview-contents p{
    color: #99968e;
    font-size: 14px;
    letter-spacing:.05em
}
/* more btn */
.js-hidden{
    display: none;
}
.more__btn{
    color: #ff9700;
    letter-spacing: .1em;
    border: 2px solid #ff9700;
    border-radius: 30px;
    background-color: #fff;
    display: block;
    width: 180px;
    height: 50px;
    line-height: 48px;
    margin: 0 auto;
    position: relative;
    transition: all .5s;
}
.more__btn:hover{
    color: #fff;
    background-color: #ff9700;
}
.more__btn:hover::after{
    color: #fff;
}
.more__btn::after{
    content: "\f0dd";
    font-size: 14px;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #ff9700;
    position: absolute;
    right: 20px;
    top: calc(50% - 2px);
    transform: translateY(-50%);
    transition: transform 0.3s ease, content 0.3s ease;
}
.more__btn.is-open::after {
    content: "\f0de";
    top: calc(50% + 2px);
    transform: translateY(-50%);
}
/* modal */
.modal-contents{
    margin-bottom: 40px;
}
.modal-head{
    color: #99968e;
    font-size: 14px;
    letter-spacing:.05em;
    margin-bottom: 20px;
}
.modal-text h3{
    color: #ff9700;
    font-size: 24px;
    font-weight: normal;
    margin-bottom: 20px;
}
.modal-area p.message{
    background-color: #fcf7eb;
    padding: 30px;
    margin-top: 30px;
}
.modal-area p.message span{
    color: #ff9700;
    display: flex;
	align-items: center;
	justify-content: center;
    margin-bottom: 10px;
}
.modal-area p.message span::after{
	border-top: 1px solid #ff9700;
	content: "";
	flex-grow: 1;
    margin-left: 15px;
}
section.about-overview{
    scroll-margin-top: 80px;
}
.entry__btn{
    display: flex;
    justify-content: center;
}
.entry__btn .l-btn{
    width: 210px;
    height: 60px;
    line-height: 60px;
}
.entry__btn .r-btn{
    border: 1px solid #e8e8e8;
    border-radius: 2px;
    padding: 0 10px;
    margin-left: 20px;
    display: flex;
    align-items: center;
}

/* 4.4 Contact */
.contact-message{
	margin-bottom: 20px;
}
.contact-message h3{
	font-size: 28px;
	margin-bottom: 5px;
}
.contact-message span{
    color: #ff1a00;
}
.contact-form{
	margin-bottom: 40px;
}
.contact-form th{
	font-weight: normal;
    vertical-align: middle;
}
.contact-form tr:nth-child(5) th,
.contact-form tr:nth-child(6) th{
	vertical-align: top;
}
.contact-form th.required:after{
	content: '*';
    font-weight: bold;
	color: #ff1a00;
    margin-left: 5px;
}
.contact-form td input,
.contact-form td textarea{
	border: 0;
	background-color: #f2f2f2;
	width: calc(100% - 20px);
	padding: 10px;
}
.contact-form td textarea{
	height: 175px;
}
.contact-form tr.input-sm input{
    width: auto;
    margin-right: 5px;
}
.radio-btn{
	margin-bottom: 10px;
}
.radio-btn:last-child{
	margin-bottom: 0;
}
.radio-btn .item{
    cursor: pointer;
    padding: 5px 30px;
    position: relative;
}
.radio-btn .item::before{
	content: '';
    border: 1px solid #e8e8e8;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 5px;
    width: 16px;
    height: 16px;
    transform: translateY(-50%);
}
.radio-btn .item::after{
	content: '';
    background-color: #FF6F00;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 9px;
    width: 10px;
    height: 10px;
    transform: translateY(-50%);
    opacity: 0;
}
.radio-btn input[type=radio] {
	display: none;
}
.radio-btn input[type=radio]:checked + .item::after {
    opacity: 1;
}
.privacy-textarea{
	text-align: center;
	margin-bottom: 40px;
}
.privacy-textarea a{
	text-decoration: underline;
}
.confirm p{
    margin-bottom: 20px;
}
.contact__btn .btn{
    width: 280px;
    height: 60px;
    line-height: 60px;
    margin: 0 auto;
}
.confirm__btn{
    display: flex;
    justify-content: center;
}
.confirm__btn .btn{
    margin: 0 0 0 20px;
}
.confirm__btn input{
    border: none;
    border-radius: 2px;
    width: 150px;
    cursor: pointer;
}
.form-date input[type="date"]{
    width: 25%;
}
.form-date input[type="date"]::-webkit-datetime-edit-text{
    padding: 0 2px;
}
.complete-message{
    text-align: center;
}
.complete-message h3{
    font-size: 28px;
    margin-bottom: 20px;
}
.complete-message p{
    margin-bottom: 40px;
}
.complete-message a{
    text-decoration: underline;
}

/* privacy-policy */
section.privacy-policy{
    background-color: #fff;
    padding: 80px;
    margin-bottom: 0;
}
.privacy-policy h3{
    font-size: 18px;
    margin-bottom: 5px;
}
.privacy-policy p{
    margin-bottom: 20px;
}
.privacy-policy p.info{
    margin: 40px 0 0;
}

/*----------------------------------------
  5. Footer
----------------------------------------*/
.footer-contact{
    color: #fff;
	background: linear-gradient(to right, #ff9700, #ff6f00);
    display: flex;
	text-align: center;
    margin-bottom: 0;
    padding: 60px;
}
.footer-contact-item{
    width: 50%;
}
.footer-contact-item.l-item{
    border-right: 1px solid #fff;
}
.footer-contact-item h3{
	font-family: 'Lato', sans-serif;
    font-size: 28px;
    letter-spacing: .07em;
}
.footer-contact-btn a{
    color: #fff;
    font-weight: bold;
    border: 2px solid #fff;
    border-radius: 35px;
    display: block;
    width: 210px;
    position: relative;
    margin: 20px auto;
    padding: 20px;
    transition: all .5s;
    z-index: 1;
    cursor: pointer;
}
.footer-contact-btn a:hover{
    color: #ff6f00;
    background-color: #fff;
	border: 2px solid #fff;
}
.footer-wrap{
    font-size: 14px;
	background-color: #fcf7eb;
	padding: 60px;
}
.footer-logo a{
	width: 280px;
    display: inline-block;
    margin-bottom: 20px;
}
.footer-icon a{
    color: #99968e;
    font-size: 28px;
    display: inline-block;
    margin: 10px 3px 0 0;
    transition: all .05s;
}
.footer-nav{
    margin-left: 40px;
}
.footer-nav h3,
.footer-nav h3 a{
    color: #333;
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 5px;
}
.footer-nav a{
    color: #99968e;
    font-size: 13px;
    display: inline-block;
    transition: all .05s;
    margin-bottom: 3px;
}
.footer-bottom{
    color: #99968e;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}
.footer-bottom a{
    color: #99968e;
    font-size: 12px;
}
.footer-icon a:hover,
.footer-nav a:hover,
.footer-bottom a:hover{
    color: #ff9700;
}

/*----------------------------------------
  6. Responsive
----------------------------------------*/
/* header */
@media (min-width: 1025px){
    .header-logo a{
        width: 280px;
        display: block;
        padding-left: 20px;
    }
	.global-nav > ul{
		display: flex;
	}
	.global-nav > ul > li{
		margin: 0 20px;
        position: relative;
	}
    .global-nav > ul > li::after{
        content: "";
        width: 1px;
        height: 16px;
        background-color: #e8e8e8;
        position: absolute;
        top: calc(50% - 8px);
        right: -20px;
    }
    .global-nav > ul > li:nth-child(4)::after {
        width: 0;
        height: 0;
    }
    .global-nav > ul > li:last-child{
        margin-left: 10px;
    }
    .global-nav > ul > li > a:hover{
        color: #ff9700; 
    }
	.child{
		display: none;
        background-color: #fff;
        box-shadow: rgba(0, 0, 0, .1) 0 0 5px;
        border-top: 3px solid #ff9700;
		position: absolute;
        top: 70px;
        left: 50%;
        transform: translateX(-50%);
		width: 298px;
		z-index: 1;
	}
    .child ul{
        padding: 20px;
    }
	.child li{
		line-height: normal;
	}
    .child li > a{
        display: block;
        padding: 10px;
    }
    .child li > a:hover{
        color: #ff9700;
        background-color: #fcf7eb;
    }
    .global-nav-btn a{
        color: #fff;
        background-color: #ff9700;
        border: 1px solid #ff9700;
        border-radius: 2px;
        display: inline;
        padding: 10px 15px;
        transition: all .5s
    }
    .global-nav-btn a:hover{
        color: #ff9700;
        background-color: #fff;
    }
	.hamburger{
		display: none;
	}
}
@media (max-width: 1024px) {
    body{
		font-size: 14px;
	}
    .container-inner{
        padding: 0 40px;
    }
    .pageTop-visual{
        margin-bottom: 40px;
    }
    .pageTop-visual-inner{
        height: 260px;
    }
    .header-logo a{
        width: 210px;
        display: inline-block;
        margin-top: 10px;
        padding-left: 20px;
    }
    /* global-nav */
    .global-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        display: none; 
        background-color: #fcf7eb;
        z-index: 100;
        overflow-y: auto;
        padding-top: 80px;
    }
    .global-nav.is-active {
        display: block;
    }
    .global-nav > ul {
        padding: 0 40px;
    }
    .global-nav > ul > li {
        border-bottom: 1px solid #333;
        line-height: normal;
        padding: 15px 0 20px;
    }
    .child {
        display: none;
    }
    .child ul {
        background-color: #fff;
        margin-top: 15px;
    }
    .child ul > li {
        border-bottom: 2px solid #fcf7eb;
        width: 100%;
    }
    .child ul > li > a {
        display: block;
        padding: 15px;
    }
    /* slide */
    .sp-slide-btn {
        display: block;
        position: relative;
    }
    .sp-slide-btn:after,
    .sp-slide-btn:before {
        content: "";
        background-color: #ff9700;
        position: absolute;
        top: 50%;
        right: 0;
        width: 12px;
        height: 2px;
        transition: .2s;
    }
    .sp-slide-btn:after {
        transform: rotate(90deg);
    }
    .sp-slide-btn.is-open:before {
        transform: rotate(0deg);
    }
    .sp-slide-btn.is-open:after {
        background: transparent;
    }
    /* hamburger */
    .hamburger {
        display: block;
        position: absolute;
        top: auto;
        right: 20px;
        width: 25px;
        height: 20px;
        cursor: pointer;
        z-index: 200;
    }
    .hamburger span {
        display: block;
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: #333;
        transition: .2s ease-in-out;
    }
    .hamburger span:nth-child(1) { top: 0; }
    .hamburger span:nth-child(2) { top: calc(50% - 1px); }
    .hamburger span:nth-child(3) { bottom: 0; }

    .hamburger.is-active span:nth-child(1) {
        top: 10px;
        transform: rotate(-45deg);
    }
    .hamburger.is-active span:nth-child(2) {
        display: none;
    }
    .hamburger.is-active span:nth-child(3) {
        top: 10px;
        transform: rotate(45deg);
    }
    .main-visual{
        height: 450px;
        margin-bottom: 0;
    }
    .main-visual-inner{
        left: 20px;
        bottom: 20px;
    }
    .main-visual-row,.main-visual-text .orange{
        font-size: 32px;
        line-height: 32px;
    }
    .main-visual-inner p.text{
        margin: 0 0 0 10px;
    }
    /* TopPage */
    section.news{
        padding: 30px;
    }
    .top-service{
        margin-bottom: 40px;
    }
    .top-service-ttl{
        margin-bottom: 45px;
    }
    .top-service-text h3{
        font-size: 22px;
    }
    .top-service-contents{
        width: calc(100% - 40px);
        height: 400px;
    }
    .top-service-img,.recruit-img{
        width: 260px;
        height: 260px;
    }
    .top-service-textarea{
        height: 360px;
    }
    .top-service-text {
        width: calc(100% - 280px);
        margin-top: 20px;
        padding: 0 30px;
    }
    .top-recruit-inner{
        height: 70vh;
    }
    .top-service-area .en{
        height: 400px;
    }
    .top-recruit-area{
        margin-top: 40px;
    }
    .top-recruit-text h3{
        font-size: 22px;
        line-height: 1.2;
    }
    .top-recruit-textarea p{
        margin: 10px 0 20px;
    }
    .top-recruit-link{
        width: 100%;
    }
    .top-recruit__btn a{
        font-size: 16px;
        height: 65px;
        line-height: 65px;
    }
    /* Service */
    .service-contents .l-grid-4{
        width: calc((100% / 12) * 4 - 10px);
        margin-bottom: 20px;
    }
    .service-contents-textarea{
        padding: 20px;
    }
    .service-contents-textarea img{
        margin: 0 auto 10px;
    }
    .web-works .l-grid,.design-works .l-grid-4{
        margin-bottom: 20px;
    }
    .web-works .l-grid-4,.design-works .l-grid-4,
    .web-works .l-grid-last::after,.design-works .l-grid::after{
        width: calc((100% / 12) * 4 - 10px);
    }
    /* About */
    .about-message-bg{
        padding: 40px 0 0;
    }
    .about-message-inner > img{
        width: 50%;
    }
    .about-message-textarea{
        width: 70%;
        top: 40px;
    }
    .about-message-text{
        width: calc(100% - 80px)
    }
    .about-message-text h3{
        font-size: 20px;
    }
    /*  Recruit */
    .h-tablet .top-service-contents,.h-tablet .en{
        height: 480px!important;
    }
    .h-tablet .top-service-textarea{
        height: 100%!important;
    }
    .recruit-interview-inner .l-grid-4{
        width: calc((100% / 12) * 4 - 10px);
        margin-bottom: 20px;
    }
    /* Privacy Policy */
    section.privacy-policy{
        padding: 30px;
    }
    .footer-nav{
        display: none;
    }
}
/* sp */
@media (max-width: 767px) {
    /* Common */
    section{
        margin-bottom: 40px;
    }
    .pc{
		display: none!important;
	}
	.sp{
		display: block!important;
	}
    .container-inner{
        padding: 0 20px;
    }
    .contents-bg{
        padding: 40px 0;
    }
    table{
        margin-bottom: 40px;
    }
    table th, table td{
        padding: 10px;
    }
    .modal-inner{
        width: 75%;
        padding: 25px;
    }
    .l-grid{
        display: inherit;
    }
    .l-grid-3,.l-grid-4,.l-grid-6,.l-grid-8,.l-grid-9{
        width: 100%;
    }
    .pageTop-visual{
        height: 25vh;
    }
    .pageTop-visual-inner{
        height: calc(25vh - 60px);
    }
    .pageTop-visual-ttl{
        width: 100%;
    }
    .pageTop-visual-ttl h2{
        font-size: 24px;
        line-height: 24px;
        margin-bottom: 0;
    }
    .page-sec-ttl h2{
        font-size: 28px;
    }
    .contents__btn{
        width: 100%;
    }
    /* Header */
    header {
        line-height: 60px;
        height: 60px;
    }
    /* TopPage */
    .main-visual{
        height: 50vh;
    }
    .main-visual-bg{
        background-position: -20px center;
    }
    .top-news-head{
        flex-direction: row;
        align-items: flex-end;
        min-height: auto;
        margin-bottom: 20px;
    }
    .sp-top-news__btn span{
        font-weight: bold;
    }
    .sp-top-news__btn span::after{
        content: "\f141";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        color: #fff;
        background-color: #ff9700;
        border-radius: 30px;
        margin-left: 5px;
        padding: 5px;
    }
    .news-inner li{
        display: block;
    }
    .news-inner li:first-child{
        border-top: 1px solid #e8e8e8;
    }
    .news-inner li .date,.news-inner li .text{
        width: 100%;
    }
    .news-inner li .date{
        font-weight: bold;
    }
    .top-service-contents{
        display: block;
        height: auto;
        margin-bottom: 0;
    }
    .top-service-textarea{
        position: relative;
        top: auto;
        width: calc(100% - 40px);
        height: auto;
        padding: 20px;
    }
    .top-service-text{
        position: relative;
        top: auto;
        transform: none;
        width: 100%;
        margin: 0;
        padding: 0;
    }
    .top-service-img{
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    .top-service-area{
        margin-bottom: 40px;
    }
    .top-service-area .en{
        height: 100%;
    }
    .top-service-text p{
        margin: 5px 0 10px;
    }
    .top-service__btn .btn{
        width: calc(100% - 40px);
        height: 50px;
        line-height: 50px;
    }
    .top-recruit-inner{
        height: auto;
    }
    .top-recruit-img{
        float: none;
        width: 100%;
    }
    .top-recruit-img img{
        position: relative;
        right: auto;
        width: 100%;
        height: auto;
        margin: 40px 0 0px;
        display: block;
    }
    .top-recruit-area {
        margin-top: 0;
        width: 100%;
    }
    .top-recruit-ttl {
        top: 0;
        left: 0;
        width: 100%;
    }
    .top-recruit-textarea {
        height: auto;
        position: relative;
        padding: 20px 20px 40px;
    }
    .top-recruit-text {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
    }
    .top-recruit-text h3 {
        font-size: 22px;
    }
    .top-recruit-link {
        width: 100%;
    }
    .sp-top-recruit__btn a.btn{
        height: 45px;
        line-height: 45px;
    }
    /* Service */
    .service-message h3{
        font-size: 22px;
    }
    .service-message span{
        margin-bottom: 5px;
    }
    .service-contents .l-grid-4{
        width: 100%;
    }
    .scroll-box {
        overflow-x: auto;
        padding-bottom: 10px;
    }
    .scroll-box::-webkit-scrollbar {
        height: 4px;
    }
    .scroll-box::-webkit-scrollbar-track {
        background: #fafafa;
    }
    .scroll-box::-webkit-scrollbar-thumb {
        background: #e8e8e8;
        border: none;
    }
    .scroll-box::-webkit-scrollbar-thumb:hover {
        background: #e8e8e8;
    }
    .scroll-box table {
        width: auto;
        max-width: 100%;
        margin: 0;
    }
    .scroll-box th,.scroll-box td {
        white-space: nowrap;
    }
    .service-price table.sp{
        margin-bottom: 20px;
    }
    .service-price table td{
        padding: 15px;
    }
    .service-price table td.plan{
        font-weight: bold;
        background-color: #fafafa;
        width: 50%;
        vertical-align: middle;
    }
    .service-price table td.price{
        font-size: 20px;
        font-weight: bold;
        width: 50%;
    }
    .web-works .l-grid-4, .design-works .l-grid-4, .web-works .l-grid-last::after, .design-works .l-grid::after{
        width: 100%;
    }
    .l-grid-last .l-grid-4:last-child{
        margin-bottom: 0;
    }
    .service-design-message .l-grid-6{
        width: 100%;
    }
    .service-design-message{
        margin-bottom: 40px;
    }
    .design-works-tab{
        margin-bottom: 30px;
    }
    .design-works-tab ul.tab{
        margin-bottom: 10px;
    }
    .design-works-tab ul.tab li{
        color: #fff;
        border: 1px solid #ff9700;
        border-radius: 30px;
        background-color: #ff9700;
        height: auto;
        line-height: inherit;
        padding: 5px 0;
        width: calc(100% / 3 - 5px);
    }
    .design-works-tab ul.tab li.is-active,
    .design-works-tab ul.tab li:hover{
        font-weight: bold;
        color: #ff9700;
        border: 1px solid #ff9700;
        background-color: #fcf7eb;
    }
    .web-works-contents h4,.design-works-link h4{
        font-size: 16px;
    }
    .design-modal-contents{
        width: 75%;
        padding: 40px 25px;
    }
    .design-works-img{
        padding: 50px;
    }
    .design-works-img .img{
        aspect-ratio: 4 / 3;
        width: auto;
        height: auto;
    }
    .oa-works-area{
        display: block;
    }
    .oa-works-area img{
        width: 100%;
    }
    .oa-works-area img.aspect-ratio-4-3{
        aspect-ratio: 4 / 3;
    }
    .oa-works-textarea{
        width: 100%;
        padding: 0;
    }
    .oa-works-textarea h4{
        margin: 10px 0 5px;
    }
    .oa-works-area .maker h5{
        margin-top: 10px;
    }
    /* About */
    .about-message-inner{
        height: auto;
    }
    .about-message-ttl{
        width: 100%;
    }
    .about-message-text h3{
        font-size: 18px;
        margin-bottom: 10px;
    }
    .about-message-inner > img,
    .about-message-textarea{
        display: block;
        position: relative;
        width: 100%;
    }
    .about-message-textarea{
        height: auto;
        top: 0; 
    }
    .about-message-text{
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: calc(100% - 40px);
        padding: 20px 20px 40px;
    }
    .about-message-text .sign img{
        width: 60%;
    }
    .about-access .map h4{
        font-size: 18px;
        margin-bottom: 20px;
    }
    .table td.location{
        padding: 10px 0;
    }
    /* Recruit */
    .recruit-message-text h3{
        font-size: 22px;
    }
    .recruit-message-text span{
        margin-bottom: 5px;
    }
    .top-service-img, .recruit-img{
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    .h-tablet .top-service-contents, .h-tablet .en{
        height: 100%!important;
    }
    .recruit-info-main .top-service-main:last-child .top-service-area{
        margin-bottom: 0;
    }
    .recruit-interview-inner .l-grid-4{
        width: 100%;
    }
    .recruit-interview-contents h4{
        font-size: 16px;
    }
    .modal-text h3{
        font-size: 20px;
        margin-bottom: 10px;
    }
    .modal-area p.message{
        margin-top: 20px;
    }
    .modal-head{
        margin-bottom: 10px;
    }
    .entry__btn{
        justify-content: space-between;
        
    }
    .entry__btn .r-btn {
        width: calc(50% - 25px);
        margin: 0;
    }
    .entry__btn .contents__btn {
        width: 50%;
    }
    .entry__btn .l-btn{
        width: calc(100% - 45px);
    }
    /*  Contact */
    .contact-message h3{
        font-size: 22px;
    }
    .confirm__btn{
        justify-content: space-between;
    }
    .confirm .contents__btn{
        width: calc(50% - 45px);
    }
    .confirm__btn input,.confirm__btn .btn{
        width: calc(50% - 5px);
        margin: 0;
    }
    .complete-message h3{
        font-size: 22px;
    }
    .complete-message p{
        margin-bottom: 20px;
    }
    /* Footer */
    .footer-contact{
        display: block;
        padding: 30px;
    }
    .footer-contact-item{
        width: 100%;
    }
    .footer-contact-btn a{
        width: calc(100% - 20px);
        padding: 10px;
        margin: 15px auto;
    }
    .footer-wrap p{
        font-size: 13px;
    }
    .footer-bottom{
        flex-direction: column-reverse;
    }
    .footer-bottom a{
        margin-bottom: 10px;
    }
    .footer-wrap{
        padding: 30px;
    }
}
@media (min-width: 1025px) and (max-width: 1200px){
    .top-recruit-inner{
        height: 80vh;
    }
}