@charset "utf-8";
/* CSS Document */

* {
	box-sizing: border-box;
}

html {
	font-size: 100%;
}

body {
	color: #333;
    font-family: YakuHanJP, "Noto Serif JP", YuMincho, "游明朝", "Hiragino Mincho ProN", "ヒラギノ明朝 W3 JIS2004", "Sawarabi Mincho", "Times New Roman", Times, serif;
	min-height: 100vh;
}

img {
	max-width: 100%;
	vertical-align: bottom;
}

li {
	list-style: none;
}

a {
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  /*opacity: 0.8;*/
  transition: all 0.3s ease;
}

.inner {
    max-width: 1740px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.section_title {
    font-size: 36px;
    letter-spacing: 2px;
    font-weight: normal;
    position: relative;
    text-align: center;
    margin-bottom: 80px;
    padding-bottom: 8px;
}

.section_title::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 200px;
    height: 4px;
    background: -webkit-gradient(linear, left top, right top, from(#F29600), color-stop(50%, #F29600), color-stop(50%, #000), to(#000));
    background: linear-gradient(to right, #F29600 0%, #F29600 50%, #000 50%, #000 100%); 
}

@media screen and (max-width: 767px) {
    .section_title {
        font-size: 20px;
        margin-bottom: 40px;
    }

    .section_title::after {
        width: 120px;
    }
    
    .pc {
        display: none;
    }
}

/*---各ページの業務内容一覧---*/
.business_link {
    padding: 40px 0 60px 0;
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
}

.business_link h3 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 26px;
}

.business_link .business_list {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.business_link .business_list li {
    text-align: center;
    border: 3px solid #F29600;
    padding: 24px;
    border-radius: 15px;
    width: 220px;
}

.business_link .business_list li a:hover {
    opacity: 0.8;
}

.business_link .business_list li a img {
    width: 140px;
    margin-bottom: 10px;
}

.business_link .business_list li a .title {
    font-size: 18px;
}


@media screen and (max-width: 1024px) {
    .business_link .business_list {
        flex-wrap: wrap;
        justify-content: center;
    }

    .business_link .business_list li {
        width: 36%;
        margin-bottom: 2%;
        margin-right: 2%;
    }
    
    .business_link .business_list li:nth-of-type(even) {
        margin-right: 0;
    }
}

@media screen and (max-width: 767px) {
    .business_link .business_list li {
        width: 100%;
        margin-bottom: 4%;
        margin-right: 0;
        padding: 16px;
    }
    
    .business_link .business_list li a {
        display: flex;
        align-items: center;
    }
    
    .business_link .business_list li a img {
        width: 70px;
        margin-bottom: 0;
        margin-right: 14px;
    }
}

/*------------------------
ヘッダー
------------------------*/
#header {
    position: fixed;
    top: 0;
    z-index: 99;
    width: 100%;
    margin: 0 auto;
    transition: 0.6s;
}

#header .header_inner {
    padding: 0 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#header .logo {
    width: 25%;
    line-height: 1;
    padding-top: 15px;
}

#header .logo img {
    width: 320px;
}

#header .header_navi {
    width: 55%;
}

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

@media screen and (max-width: 767px) {
    #header .header_inner {
        padding: 0 18px;
    }
    
    #header .logo {
        width: inherit;
        padding-top: 0;
    }
    
    #header .logo img {
        width: 96px;
    }
}


#header .header_navi .menu_list {
    display: flex;
    background-color: rgba(51,51,51,0.40);
    border-radius: 50px;
    margin-top: 22px;
    justify-content: space-between;
    padding: 12px 26px;
}

#header .header_navi .menu_list .menu {
    width: calc(100%/5);
    border-right: 1px solid #fff;
}
#header .header_navi .menu_list .menu:last-of-type {
    border-right: none;
}

#header .header_navi .menu_list .menu a {
    display: block;
    text-align: center;
    color: #fff;
    letter-spacing: 1px;
}

#header .header_navi .menu_list .menu a:hover {
    font-weight: bold;
    letter-spacing: 4px;
}

#header .header_navi .menu_list .menu:hover .drop_menu_list {
    transform: scaleY(1);
}


/*--- ドロップダウンメニュー ---*/
.drop_menu {
    position: relative;
}

.drop_menu .drop_menu_list {
    position: absolute;
    top: 145%;
    /*width: max-content;*/
    width: 100%;
    z-index: 1;
    transform: scaleY(0);
    transform-origin: center top;
    transition: transform 0.3s;
}

.drop_menu .drop_menu_list .drop_menu_item {
    background-color: rgba(51,51,51,0.40);
    transition: opacity 0.3s;
}
.drop_menu .drop_menu_list .drop_menu_item:last-of-type {
    border-radius: 0 0 20px 20px
}

.drop_menu .drop_menu_list .drop_menu_item a {
    font-size: 14px;
    padding: 12px 0;
    border-bottom: 1px solid #fff;
}
.drop_menu .drop_menu_list .drop_menu_item:first-of-type a {
    border-top: 1px solid #fff;
}
.drop_menu .drop_menu_list .drop_menu_item:last-of-type a {
    border-bottom: none;
}


/*--- ハンバーガーメニュー ---*/
@media screen and (min-width: 1280px) {
   .pc_none {
        display: none;
    } 
}

@media screen and (max-width: 1279px) {
    #header .header_inner .hamburger {
        width: 43px;
        height: 43px;
        background-color: #F29600;
        border-radius: 15px;
        cursor: pointer;
        position: fixed;
        top: 15px;
        right: 24px;
        z-index: 30;
    }
    
    #header .header_inner .hamburger span {
        width: 25px;
        height: 2px;
        background-color: #fff;
        display: block;
        position: absolute;
        transition: 0.3s ease-in-out;
        left: 9px;
    }
    
    #header .header_inner .hamburger span:nth-child(1) {
        top: 12px;
    }
    #header .header_inner .hamburger span:nth-child(2) {
        top: 20px;
    }
    #header .header_inner .hamburger span:nth-child(3) {
        top: 28px;
    }
    
    #header.open .header_inner .hamburger span:nth-child(1) {
        top: 21px;
        background-color: #fff;
        transform: rotate(-45deg);
    }
    #header.open .header_inner .hamburger span:nth-child(2) {
        opacity: 0;
    }
    #header.open .header_inner .hamburger span:nth-child(3) {
        top: 21px;
        background-color: #fff;
        transform: rotate(45deg);
    }
    
    #header .header_inner .header_navi {
        width: 40%;
        height: 100%;
        background-color: #333;
        display: flex;
        flex-direction: column;
        opacity: 0;
        transition: all 0.3s ease;
        position: fixed;
        top: 0;
        right: 0;
        visibility: hidden;
        z-index: 20;
        padding-top: 65px;
        overflow-x: hidden;
    }
    
    #header.open .header_inner .header_navi {
        opacity: 1;
        visibility: visible;
        overflow: hidden;
    }

    #header .header_navi .menu_list {
        border-radius: inherit;
        margin-top: 22px;
        padding: 0 26px;   
        flex-direction: column;
    }

    #header .header_navi .menu_list .menu {
        width: 100%;
        border-right: none;
        margin-bottom: 6px;
        font-size: 22px;
    }
    
    #header .header_navi .menu_list .menu a {
        text-align: left;
    }
    
    header .header_navi .menu_list .menu a span {
        font-size: 30px;
        margin-right: 5px;
        color: #F29600;
    }

    header .header_navi .menu_list .drop_menu_list a span {
        font-size: 24px;
        margin-right: 5px;
    }

    #header .header_navi .menu_list .menu a.contact {
        margin-top: 20%;
        text-align: right;
    }
    #header .header_navi .menu_list .menu a.recruit {
        text-align: right;
    }
    #header .header_navi .menu_list .menu a.contact span {
        margin-left: 5px;
    }
    #header .header_navi .menu_list .menu a.recruit span {
        margin-left: 5px;
    }
    
    .drop_menu {
        position: static;
    }

    .drop_menu .drop_menu_list {
        position: static;
        transform: scaleY(1);
        margin-left: 26px;
        margin-top: 4px;
    }
    
    .drop_menu .drop_menu_list .drop_menu_item {
        margin-bottom: 3px;
    }
    .drop_menu .drop_menu_list .drop_menu_item:last-of-type {
        border-radius: inherit;
    }

    .drop_menu .drop_menu_list .drop_menu_item a {
        font-size: 20px;
        padding: 0;
        border-bottom: none;
    }
    .drop_menu .drop_menu_list .drop_menu_item:first-of-type a {
        border-top: none;
    }
    .drop_menu .drop_menu_list .drop_menu_item:last-of-type a {
        border-bottom: none;
    }
}

@media screen and (max-width: 767px) {
    #header .header_inner .hamburger {
        width: 34px;
        height: 34px;
        border-radius: 6px;
        top: 8px;
        right: 8px;
    }
    
    #header .header_inner .hamburger span {
        width: 20px;
        height: 2px;
        left: 7px;
    }
    
    #header .header_inner .hamburger span:nth-child(1) {
        top: 8px;
    }
    #header .header_inner .hamburger span:nth-child(2) {
        top: 16px;
    }
    #header .header_inner .hamburger span:nth-child(3) {
        top: 24px;
    }
    #header.open .header_inner .hamburger span:nth-child(1) {
        top: 16px;
    }
    #header.open .header_inner .hamburger span:nth-child(3) {
        top: 16px;
    }

    #header .header_inner .header_navi {
        width: 60%;
    }
    
    #header .header_navi .menu_list {
        padding: 0 12px;
    }

    #header .header_navi .menu_list .menu {
        font-size: 16px;
    }

    header .header_navi .menu_list .menu a span {
        font-size: 20px;
        margin-right: 3px;
    }

    header .header_navi .menu_list .drop_menu_list a span {
        font-size: 18px;
        margin-right: 3px;
    }
    
    .drop_menu .drop_menu_list {
        margin-left: 16px;
    }

    .drop_menu .drop_menu_list .drop_menu_item a {
        font-size: 14px;
    }
}

/*------------------------
メインビジュアル
------------------------*/
.mainvisual {
    width: 100%;
    margin: 0 auto;
    top: 0;
}

.mainvisual .mv_movie {
    width: 100%;
    background-size: cover;
}

/*------------------------
トップページヘディング
------------------------*/
#top .heading {
    background: url("../images/img-concept-bg.jpg") no-repeat center bottom/cover;
    width: 100%;
    margin-top: -10px;
    height: 360px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#top .heading h2 {
    font-size: 20px;
    text-align: center;
    font-weight: bold;
    letter-spacing: 1px;
    line-height: 2;
}

@media screen and (max-width: 767px) {
    #top .heading {
        background: url("../images/img-concept-bg.jpg") no-repeat center bottom/cover;
        height: 128px;
        display: flex;
        padding: 0 15px
    }

    #top .heading h2 {
        font-size: 12px;
        text-align: center;
        letter-spacing: 0;
        line-height: 1.6;
    }
}

/*------------------------
トップページ 業務内容
------------------------*/
#top_business {
    padding: 60px 0;
    background-color: #EBEBEB;
}

#top_business .top_business_items .business_item_list {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
}

#top_business .top_business_items .business_item_list .business_item {
    width: 49%;
    position: relative;
    margin-bottom: 2%;
    overflow: hidden;
    transition: all 0.6s;
}

#top_business .top_business_items .business_item_list .business_item img {
    width: 100%;
    transition: all 0.6s;
    height: auto;
}

#top_business .top_business_items .business_item_list .business_item:hover img {
    transform: scale(1.2)
}

#top_business .top_business_items .business_item_list .business_item:hover {
    border-radius: 30px;
    transition: all 0.6s;
}

#top_business .top_business_items .business_item_list .business_item .item_text {
    position: absolute;
    color: #fff;
    bottom: 5%;
    /*transform: translateY(-50%);*/
    width: 60%;
    text-align: center;
    right: 0;
    left: 0;
    margin: 0 auto;
}

#top_business .top_business_items .business_item_list .business_item .item_text .item_title {
    font-weight: bold;
    margin-bottom: 24px;
    font-size: 36px;
}

#top_business .top_business_items .business_item_list .business_item .item_text .item_lead {
    text-align: left;
    font-weight: bold;
    margin-bottom: 32px;
}

#top_business .top_business_items .business_item_list .business_item .item_text .more {
    color: #fff;
    padding: 4px 26px;
    border: 1px solid #fff;
}

#top_business .top_business_items .business_item_list .business_item .item_text .more span {
    color: #F29600;
    margin-left: 12px;
}

#top_business .top_business_items .business_item_list .business_item .item_text .more:hover {
    background-color: #fff;
    color: #333;
    font-weight: bold;
}

@media screen and (max-width: 1279px) {
    #top_business .top_business_items .business_item_list {
        flex-wrap: nowrap;
        flex-direction: column;
    }

    #top_business .top_business_items .business_item_list .business_item {
        width: 76%;
        border-radius: 0 30px 30px 0;
        margin-bottom: 4%;
        margin-left: -20px;
    }
    
    #top_business .top_business_items .business_item_list .business_item:nth-of-type(even) {
        margin-left: auto;
        border-radius: 30px 0 0 30px;
        margin-right: -20px;
    }
    
    #top_business .top_business_items .business_item_list .business_item .item_text {
        width: 90%;
    }

    #top_business .top_business_items .business_item_list .business_item .item_text .item_title {
        text-align: left;
    }
    #top_business .top_business_items .business_item_list .business_item:nth-of-type(even) .item_text .item_title {
        text-align: right;
    }
}

@media screen and (max-width: 767px) {
    #top_business .top_business_items .business_item_list .business_item {
        width: 100%;
        border-radius: 0 15px 15px 0;
    }
    
    #top_business .top_business_items .business_item_list .business_item:nth-of-type(even) {
        border-radius: 15px 0 0 15px;
    }
    
    #top_business .top_business_items .business_item_list .business_item .item_text .item_title {
        text-align: left;
    }
    #top_business .top_business_items .business_item_list .business_item:nth-of-type(even) .item_text .item_title {
        text-align: right;
    }
    
    #top_business .top_business_items .business_item_list .business_item .item_text .item_title {
        font-weight: bold;
        margin-bottom: 16px;
        font-size: 18px;
    }

    #top_business .top_business_items .business_item_list .business_item .item_text .item_lead {
        font-size: 12px;
        margin-bottom: 8px;
    }

    #top_business .top_business_items .business_item_list .business_item .item_text .more {
        padding: 4px 16px;
        font-size: 12px;
    }

    #top_business .top_business_items .business_item_list .business_item .item_text .more span {
        color: #F29600;
        margin-left: 12px;
    }

    #top_business .top_business_items .business_item_list .business_item .item_text .more:hover {
        background-color: #fff;
        color: #333;
        font-weight: bold;
    }
}

/*------------------------
トップページ 代表挨拶
------------------------*/
#greeting {
    padding: 60px 20px;
    max-width: 980px;
    width: 100%;
    margin: 0 auto;
}

#greeting .greeting_text .message {
    line-height: 1.8;
    margin-bottom: 24px;
}

#greeting .greeting_text .name_box {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

#greeting .greeting_text .name_box .post {
    font-size: 18px;
    margin-right: 24px;
    line-height: 0.8;
}

#greeting .greeting_text .name_box img {
    width: 110px;
}

@media screen and (max-width: 767px) {
    #greeting {
        padding: 60px 15px;
        max-width: 980px;
        width: 100%;
        margin: 0 auto;
    }

    #greeting .greeting_text .message {
        line-height: 1.6;
        margin-bottom: 24px;
        font-size: 13px;
    }

    #greeting .greeting_text .name_box .post {
        font-size: 14px;
        margin-right: 12px;
    }
    
    #greeting .greeting_text .name_box img {
        width: 90px;
    }


}

/*------------------------
フッター
------------------------*/
#footer {
    background-color: #EBF2F8;
}

#footer .inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 60px 0;
}

#footer .footer_logo img {
    width: 240px;
}

#footer .footer_info {
    display: flex;
    align-items: center;
}

#footer .footer_info .address_item {
    display: flex;
    align-items: center;
    margin-right: 36px;
}

#footer .footer_info .address_item .address_icon {
    margin-right: 16px;
    border: 1px solid #333;
    line-height: 1;
    padding: 4px 12px;
    background-color: #fff;
    font-size: 13px;
    letter-spacing: 2px;
}

#footer .footer_info .address_item .address {
    line-height: 1.2;
    font-size: 14px;
}

#footer .footer_info .tel_item {
    display: flex;
    align-items: center;
}

#footer .footer_info .tel_item .tel_icon {
    margin-right: 16px;
    border: 1px solid #333;
    line-height: 1;
    padding: 4px 12px;
    background-color: #fff;
    font-size: 13px;
    letter-spacing: 2px;
}

#footer .footer_info .tel_item .tel_number {
    line-height: 1;
    font-size: 14px;
}

@media screen and (max-width: 767px) {
    #footer .inner {
        align-items: flex-start;
        padding: 30px 15px;
        flex-direction: column;
    }
    
    #footer .footer_logo {
        margin-bottom: 16px;
    }
    
    #footer .footer_logo img {
        width: 160px;
    }

    #footer .footer_info {
        align-items: flex-start;
        flex-direction: column;
    }

    #footer .footer_info .address_item {
        margin-right: 0;
        margin-bottom: 8px;
    }

    #footer .footer_info .address_item .address_icon {
        margin-right: 12px;
        padding: 4px 13px;
        font-size: 12px;
    }

    #footer .footer_info .address_item .address {
        line-height: 1.2;
        font-size: 13px;
    }

    #footer .footer_info .tel_item {
        display: flex;
        align-items: center;
    }

    #footer .footer_info .tel_item .tel_icon {
        margin-right: 12px;
        border: 1px solid #333;
        line-height: 1;
        padding: 4px 12px;
        background-color: #fff;
        font-size: 12px;
        letter-spacing: 2px;
    }

    #footer .footer_info .tel_item .tel_number {
        line-height: 1;
        font-size: 14px;
    }
}

/*---トップに戻るボタン---*/
#page-top a{
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #F29600;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	color: #fff;
	text-align: center;
	text-transform: uppercase; 
	text-decoration: none;
	/*font-size:0.6rem;*/
	transition:all 0.3s;
	/*opacity: 0.9;*/
	border: 1px solid #F29600;
    font-size: 22px;
}

#page-top a:hover{
	background: #fff;
    color: #F29600;
    border: 1px solid #F29600;
	/*opacity: 0.5;*/
    animation: pulsation .7s alternate infinite;
}

/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 10px;
	bottom: 10px;
	z-index: 2;
	/*はじめは非表示*/
	opacity: 0;
	transform: translateX(100px);
}

/*　左の動き　*/

#page-top.LeftMove{
	animation: LeftAnime 0.5s forwards;
}

@keyframes LeftAnime{
	from {
	opacity: 0;
	transform: translateX(100px);
	}
	to {
	opacity: 1;
	transform: translateX(0);
	}
}

/*　右の動き　*/

#page-top.RightMove{
	animation: RightAnime 0.5s forwards;
}
@keyframes RightAnime{
	from {
	opacity: 1;
	transform: translateX(0);
	}
	to {
	opacity: 1;
	transform: translateX(100px);
	}
}


