
@charset "utf-8";

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td, header, section, article, footer, article, aside, time, nav, a {
    margin: 0;
    padding: 0;
}

a {
	cursor: pointer;
	color: unset;
}

body{
    height: auto;
    font-family: 'Noto Sans JP';
    line-height:1.8em;
    color: #333333;
    background-color: #ffffff;
}

.inner{
    width: 85%;
    margin: 0 auto;
    padding-top: 100px;
}

/* ▼ヘッダー▼ */
header{
    height: 70px;
    width: 100%;
    background-color: #ffffff;
    position: fixed;
    z-index: 1000;
}

.header-inner{
    width: 85%;
    margin-left: 7.5%;
    display: flex;
}

header .logo img{
    height: 70px;
    left:0 ;
}
/* ▲ヘッダー▲ */

/* ▼ハンバーガーメニュー▼ */

.menu-content.invisible {
    visibility: hidden;
}

.hamburger-menu {
    margin: 0 0 0 auto;
}

/* アイコン */
.menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 70px;
    width: 30px;
    position: relative;
    cursor: pointer;
    z-index: 1000;
    background: transparent;
    border: none;
}

.menu-btn span {
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #ff6600;
    margin: 2.5px 0;
    transition: 0.5s;
}

.menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(3px, 8px);
    background-color: #ffffff;
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(3px, -8px);
    background-color: #ffffff;
}

/* メニュー中身 */

.menu-content {
    width: 100%;
    height: 100vh;
    background: linear-gradient(to bottom, #ff6600, #ffaf7aff);
    position: fixed;
    top: 0;
    left: 0;
    transform: translateX(100%); 
    transition: 0.6s ease;
    opacity: 0;
    pointer-events: none;
    z-index: 900;
}

.menu-content.show {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

.menu-content ul {
    width: 100%;
    list-style: none;
    text-align: left;
    margin: 70px auto auto;
}

.menu-content ul a{
    text-decoration: none;
}

.menu-content ul a li{
    margin: 30px;
    color: #ffffff;
}

/* ▲ハンバーガーメニュー▲ */


/* ▼共通▼ */

.title{
    size: 24px;
    color: #ff6600;
    padding: 30px 0;
}

.sub-title{
    font-size:18px;
    color: #222222;
    padding-bottom: 40px 
}


@keyframes bg {
    0% {
      opacity: 0;
      transform: scaleX(0) translateX(-5%);
    }
    30% {
      transform: scaleX(1) translateX(0);
    }
    100% {
      transform: scaleX(1) translateX(0);
    }
    30%, 100% {
      opacity: 1;
    }
}


.text-area {
    padding-bottom: 60px;
}

.text-area p{
    size: 15px;
    color:#333333;
}

.text-area_num {
    padding-left: 3rem;
}

.buttun {
    display: inline-block;
    width: 230px;
    margin: 20px 0 ;
    padding: 15px 0px;
    text-align: center;
    color: #ffffff;
    text-decoration: none;
    background: #ff9142;
    cursor: pointer;
    font-weight:600;
    font-size: 16px;
    border-radius: 99999px;
    border: 3px solid #ff9142;
    transition-duration: .2s;
}

.buttun:hover{
    color: #ff8e3c;
    background: #ffffff;
    border-radius: 99999px;
}

.dd-small{
    height: 3px;
}

/* ▲共通▲ */

/* ▼index▼ */

.inner-index{
    width: 85%;
    margin: 0 auto;
    text-align: center;
}

.PC{
    display: none !important;
}

.SP{
    display: block !important;
}


.mainvisual{
    position: relative;
    width: 100%;
    height: 60%;
    padding-top: 100px;
}

.mainvisual img{
    width: 100%;
    object-fit: cover;
    margin: 0 auto;
}

.top-text{
    position: absolute;
    font-size: 230%;
    z-index: 100;
    right: 4%;
    top: 60%;
    color: #ffff;
}

.js-marker {
    display: inline;
    position: relative;
    background-image: linear-gradient(90deg, #ff6600, #ffaf7aff);
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 0 100%;
    transition: all 1s ease-in-out; /* マーカーを引く速度を調整 */
    font-weight: bold; /* ついでに太字にしたい場合 */
}

.js-marker.inview {
    background-size: 100% 100%;
    line-height:1.8em
}

.index-contents{
    padding: 30px 0;
    border-bottom: solid #ffaf7aff 3px;
}

.RECRUIT_img{
    width: 65%;
    margin: 0 auto;
    padding-bottom: 10px;
}

.index-contents ul{
    width: 80%;
    display: grid;
    column-gap: 15px;
    grid-template-columns:repeat(auto-fit, minmax(45%, 1fr));
    list-style: none;
    margin: 0 auto;
    padding: 15px 0;
}

.index-contents ul >*{
    padding: 10px 5px;
    margin-bottom: 15px;
    border: solid 3px rgb(240, 240, 240);
    border-radius: 50px 0px 50px 0px;
}

.index-contents ul li p{
    margin: 0 auto;
    padding: 15px 0px 10px 0px;
    font-size: 12px;
    align-items: center;
    line-height: 1.3em;
}


.case-icon {
    width: 40%;
    margin-bottom: 10px;
}

.p-profile_label{
    margin: 10px 0;
}

.p-profile_name p{
    margin-bottom: 10px ;
}

.p-profile_img, .s-profile_img {
	text-align: center;
}

.p-profile_img>img, .s-profile_img>img {
	width: 100%;
	max-width: 100%;
	height: auto;
	max-height: 500px;
	object-fit: cover;
	border-radius: 50px 0;
}

.p-profile_imgbox, .s-profile_imgbox {
	margin-top: 30px
}

.p-profile_imgbox>img, .s-profile_imgbox>img {
	max-height: 500px;
}

.p-profile_desc, .s-profile_desc {
	margin-top: 20px
}

.s-profile_link {
	text-decoration: none;
}

.s-profile_img {
	position: relative;
}

.more_icon{
	position: absolute;
	width: 60px;
	height: 60px;
	font-size: 16px;
	line-height: 60px;
	text-align: center;
	bottom: 30px;
	right: 20px;
}

.more_icon:after {
	background-color: #ffffff;
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	border-radius: 50%;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

a.hover .more_icon:after {
	transform: scale(2);
}

.more_icon_desc {
	position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 3;
    font-weight: 500;
    font-size: 16px;
    color: #ff6600;
}

.sentence-orange {
	color: #ff6600;
}

.sentence-bold {
	font-size: 24px;
	font-weight: 700;
}

.sentence-s_bold {
	font-size: 18px;
	font-weight: 700;
}

.sentence-small {
	font-size: 12px;
	line-height: 0.7em;
}

.sentence-nomal {
	font-size: 16px;
}

.col_2>a {
	display: block;
	padding-bottom: 20px;
	border-bottom: 3px solid #ff6600;
}

.col_2>a:nth-child(n+2) {
	padding-top: 30px;
}

/* staffページのスライダー */
.gallery {
	margin-top: 30px;
}

.splide-gallery{
    margin-top: 30px;
}

.splide-gallery img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}


.bg_wave>p {
	text-align: center;
	font-weight: bold;
	padding: 30px 20px;
	background-color: #F0F0F0;
	transform: translateY(1px);
}

.bg_wave_pc {
	display: none;
}

footer{
    height: 50px;
    text-align: center;
    bottom: 0;
		display: block;
		padding-top: 30px;
		font-size: 12px
}

footer{
    height: 50px;
    text-align: center;
    bottom: 0;
		display: block;
		padding-top: 30px;
		font-size: 12px
}

/* ▼companyページ▼ */

.company-info{
    width: 100%;
}

.company-info dl{
    width: 100%;
}

.company-info dd{
    font-weight: bold;
}

.company-info dt{
    width: 100%;
    border-bottom: solid 1px #ccc;
    margin-bottom: 25px;
}

.info-top{
    padding-top: 0px;
}

.company-info a{
    color: #ff6600;
}

.map {
    width: 80%;
    position: relative;
    padding-top: 56.25%;
    height: 80%;
    margin: 25px 10% ;
    overflow: hidden;
}

.map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% + 300px);    
    margin-top: -150px;
}

.company-photo{
    width: 100%;
}

.company-photo img {
    height: auto;
    width: 100%;
}

.history dl{
    display: flex;
    flex-wrap: wrap;
    margin-top: 0;
}

.history dd{
    width: 25%;
}

.history dt{
    width: 65%;
}

/* ▲companyページ▲ */

/* ▼recruitページ▼ */

.under-line{
    position: relative;
    display: inline-block;
}

.under-line::before {
    animation: bg 2.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    background: #ff6600;
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    transform-origin: left center;
}

.under-line .inn {
    font-weight: bold;
    position: relative;
    z-index: 1;
}


.recruit-massage{
    position: relative;
    margin-bottom: 60px;
}

.center{
    text-align: center;
}

.recruit-massage .center{
    text-align: center;
    margin-top: 25px;
}

.recruit-massage img{
    width: 75%;
    margin-bottom: 30px;
    border-radius: 50px 0;
}

.recruit-massage h3,.text-area{
    padding-bottom: 20px;
}

.recruit-none{
    color: red;
    border: solid 2px red;
    padding: 15px;
    margin: 5%;
}

.tab-wrap {
    display: flex;
    flex-wrap: wrap;
}

.tab-label {
    color: #ffff;
    background: LightGray;
    border-radius: 30px 30px 0 0;
    padding: 15px 30px 7px;
    position: relative;
    order: -1;
}

.tab-content {
    width: 100%;
    display: none;
    padding-bottom: 20px;
    margin-bottom: 40px;
    border-top: solid 3px #ffaf7aff;
    border-bottom: solid 3px #ffaf7aff;
}

.tab-switch:checked+.tab-label{
    background: linear-gradient(to bottom, #ff6600, #ffaf7aff);
}

.tab-switch:checked+.down{
    object-fit: scale-down;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 15px solid #ffaf7aff;
}

.tab-switch:checked+.tab-label+.tab-content {
     display: block;
}

.tab-switch {
    display: none;
}

.tab-content .text-area{
    padding: 2%;
    padding-top: 5%;
}

.text-area ul{
    margin-left: 5%;
    list-style-type: circle ;
} 

.text-area .square-list{
    list-style-type: square;
    width: 95%;
    margin-top: 20px;
} 

.text-area .inner-list{
    margin: 0%;
    margin-left: 5%;
}

.recruit-title{
    border-left:solid 5px #ff6600;
    padding:0.5em 0 0.5em 0.5em; 
}

.heading{
    font-weight: bold;
}

.square-list p{
    font-weight: bold;
}

.square-list li{
    padding-bottom: 5%;
    display: flex;
    flex-wrap: wrap;
}
  
.text-area ul ::marker{
    color: #ff6600;
}

.inner-list{
    width: 100%;
}

.inner-list dd{
    margin: 2px 0;
}

.inner-list small{
    font-size: 13px;
    line-height: 1.2em;

}

.tab-content a {
    text-align: center;
}

.recruit-img{
    width: 100%;
    margin-bottom: 7%;
}

.flow{
    margin: 30px 0px;
}

.flow .title{
    padding: 2% 0%;
}

.flow-title{
    font-size: 18px;
    color: #222222;
    margin-bottom: 25px;
}

.flow ::before, ::after {
    box-sizing: inherit;
}

.block-List_item{
    position: relative;
}

.block {
    display: flex;
    padding-bottom: 23px;
    width: 100%;
}

.block_textArea {
    margin-top: 10px;
    padding-left: 10px;
    flex-shrink: 0;
    height: 150px;
}

.block_textArea .title{
    height:40px ;
}

.block_textArea p a{
    color: #ff6600;
}

.block_imgArea {
    position: relative;
    width: 50%;
    padding-top: 24px;
}

.block-List_item:not(:nth-child(4n)):not(:last-child), .block-List_item-bg:not(:nth-child(4n)):not(:last-child) {
    border-bottom: 1px solid #ccc;
}    

.block-List_item:not(:nth-child(4n)):not(:last-child)::after{
    display: block;
    position: absolute;
    right: 0;
    bottom: -6.5px;
    left: 0;
    width: 11.5px;
    height: 11.5px;
    margin: auto;
    -webkit-transform: rotate(45deg) skew(170deg, 170deg);
    transform: rotate(45deg) skew(170deg, 170deg);
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    background-color: #fff;
    content: "";
}

.block:not(:nth-child(4n)) {
    padding-right: 10px;
}

/* ▲reuruitページ▲ */

/* ▼servisページ▼ */

.BUSINESS-top{
    padding-bottom: 50px;
    text-align: center;
}

.sub-title_num {
    position: relative;
    overflow: hidden;
    padding: 0.7em 0em 0.7em 50px;
    word-break: break-all;
    border-top: 3px solid #F0F0F0;
    border-radius: 8px 0 0 0;
    z-index: -10
}

.sub-title_under {
	padding-bottom: 5px;
  font-weight: bold;
  font-size: 16px;
	position: relative;
  border-bottom: 3px solid #F0F0F0;
	margin-bottom: 20px;
	z-index: -10;
}

.sub-title_under::before {
	content: '';
  position: absolute;
  bottom: -3px;
  width: 70px;
  height: 3px;
  background: #ff6600;
}

.sub-title>.num {
    font-size: 1.3rem;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    padding: 0.8rem;
    color: #333333;
    border-radius: 4px 0 8px 8px;
    background: #F0F0F0;
}

.splide__slide img {
    height: auto;
    width: 80%;
    margin-left: 10%;
}

.case{
    width: 100%;
    margin: 0 auto;
}

.case-sample{
    display: block;
    margin-bottom: 30px;
    padding: 35px;
    border: solid 5px rgb(240, 240, 240);
    border-radius: 50px 0px 50px 0px;
}

.sample-img {
    height: auto;
    width: 100%; 
}

.case-sample .splide__slide img{
    width: 100%;
    margin: 0;
}

.case-item{
    margin-top: 10px;
}

.case-title{
    border-bottom:solid 2px #ff6600;
    margin: 15px 0px 20px 0px;
}

.case-item a{
    color: #ff6600;
}
 
@media print, screen and (min-width: 768px){

	body {
		width: 70%;
		max-width: 1024px;
		margin: 0 auto
	}

    header{
        height: 100px;
        width: 100%;
        background-color: #ffffff;
        position: fixed;
        z-index: 1000;
    }    

	.header-inner {
		width: 70%;
		max-width: 1024px;
		margin-left: 0%;
	}

	header .logo img, .menu-btn {
		height: 100px
	}

	.inner {
		width: 100%;
	}

    .top-text{
        top:75%;
    }

	main {
		padding-top: 100px;
	}

    .inner-index{
		padding-top: 50px;
	}

    .menu-content {
        width: 30%;
        right: -80%;
        left: auto;
    }

    .menu-content.show {
        right: 0;
        left: auto;
    }
    

    #mainvisual{
        width: 100%;
        padding-top: 100px;
        position: relative;
    }
    
    #mainvisual img{
        width: 85%;
        margin-right: 15%;
    }
    
    .PC{
        display: block !important;
    }
    
    .SP{
        display: none !important;
    }


    .index-contents ul{
    width: 90%;
    column-gap: 15px;
    grid-template-columns: repeat(auto-fit, minmax(15%, 1fr));
    }
    
    .index-contents ul >*{
    margin-bottom: 0px;
    padding: 10px;
    }

    .p-profile_label{
    margin: 0;
}


	.p-profile, .s-profile {
		display: flex;
        /* align-items:center; */

	}

    .p-profile_left{
        width: 60%;
    }

	.s-profile_left {
		width: 50%
	}

	.p-profile_right, .s-profile_right {
		margin-left: 50px;
	}

    .s-profile_right {
        margin-top: 50px;
		margin-left: 50px;
	}

	.col_2 {
		width: 100%;
    display: flex;
    flex-wrap: wrap;
	}

	.col_2>* {
    width: calc( 50% - 10px ) ;
    margin-right: 20px;
    margin-bottom: 12px;
	}

	.col_2>*:nth-child(2n) {
		margin-right: auto;
	}

	.col_2>*>* {
		height: auto;
		position: relative;
		overflow: hidden;
	}

	.col_2>a {
		margin-bottom: 30px;
	}

	.col_2>a:nth-child(n+2) {
    padding-top: unset
	}

    /* staffページのスライダー */
    .splide-gallery{
        width: 100%;
        display: flex;
	}

    .splide-gallery img{
        width: 30%;
        margin: 1.8%;
    }

	.bg_wave_pc {
		display: block;
	}

	.bg_wave_sp {
		display: none;
	}

	footer {
		height: 70px;
		padding-top: 80px;
	}

    .sp_onry{
        display: none;
    }

    /* sarvisページ */

    .case{
        width: 100%;
        display: grid;
        column-gap: 30px;
        grid-template-columns:1fr 1fr;
    }

    .case-visual{
        aspect-ratio: 5 / 3;
        width: 80%;
        max-height: 200px;
        overflow: hidden;
        margin: 0 auto;
    }

    .sample-img,
    .splide__track{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .case-sample{
        display: flex;
        flex-direction: column;
    }

    .case-sample .splide__slide img{
        width: 90%;
        margin-left: 5%;
    }


    .case-item{
        display: flex;
        flex-direction: column;
        flex-grow: 1;
        justify-content: flex-start;
        margin-top: 0;
    }


    .block-List{
        display: flex;
        width: 100%;
    }

    .block{
        display: flex;
        padding-bottom: 23px;
        width: calc(100%/4);
        flex-direction: column-reverse;
    }

    .block_textArea{
        margin-top: 10px;
        padding: 15px;
        flex-shrink: 0;
        height: 250px;
    }

    .block_textArea .title {
        height: 50px;
    }

    .block-List_item:not(:nth-child(4n)):not(:last-child), .block-List_item-bg:not(:nth-child(4n)):not(:last-child) {
        border-right: 1px solid #ccc;
        border-bottom: none;
    }    

    .block-List_item:not(:nth-child(4n)):not(:last-child)::after{
        display: block;
        position: absolute;
        top: 50%;
        left: calc(100% - 5px);
        width: 11.5px;
        height: 11.5px;
        margin: 0;
        -webkit-transform: translateY(-50%) rotate(315deg) skew(170deg, 170deg);
        transform: translateY(-50%) rotate(315deg) skew(170deg, 170deg);
        border-right: 1px solid #ccc;
        border-bottom: 1px solid #ccc;
        background-color: #fff;
        content: "";
    }

    /* ▼companyページ */

    .company-info{
        width: 100%;
    }

    .company-info dl{
        width: 100%;
        display: flex;
        flex-wrap: wrap;
    }

    .company-info dd{
        width: 20%;
        color: #222222;
        font-weight: bold;
    }
    
    .company-info dt{
        width: 75%;
        border-bottom: solid 1px #ccc;
        margin-bottom: 25px;
    }

    .map-photo{
        display: grid;
        column-gap: 15px;
        grid-template-columns: 1fr 1fr;
    }    
    
    .company-photo{
        width: 100%;
    }
                
    .map {
        width: 90%;
        height: 100%;
        margin: 0 10%;
        padding-top: 0%;
    }
        
    .recruit-img {
        width: 80%;
        padding: 7%;
        padding-top: 0;
        margin-bottom: 5%;
    }
    
    .flow-title{
        font-size: 18px;
        color: #222222;
        margin-bottom: 25px;
    }
}

html:not(.loaded) .menu-content {
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
}

/* フォント */

@font-face {
    font-family: "Noto Sans JP";
    src: url(./font/NotoSansJP-VariableFont_wght.ttf) format("truetype");
  }
