#page-animate::before {
    content: '';
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #333;
    z-index: 9999;
    pointer-events: none;
    right: 100%;
    -webkit-transition: right 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transition: right 0.8s cubic-bezier(0.4, 0, 0.2, 1);
   }
   
   #page-animate::after {
    content: '';
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #333;
    z-index: 9999;
    pointer-events: none;
    left: 100%;
    -webkit-transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
   }
   
   #page-animate.is-slide-in::before {
    right: 0;
   }
   
   #page-animate.is-slide::after {
    left: 0;
   }
   

body {
	display: none;
}

body,
html {
  height: 100%;
  margin: 0 auto;
}

a{
    color: #000000;
    text-decoration: none;
    font-family: 'Noto Sans JP', sans-serif;
    letter-spacing: 0.05em;

}

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

ul{
    padding-left: 0px;
}

li{
    font-family: 'Noto Sans JP', sans-serif;
    letter-spacing: 0.05em;
}


h3{
    line-height: 1.7;
    letter-spacing: 0.05em;
}

p{
    line-height: 1.7;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 15px;
    letter-spacing: 0.05em;
}

dl, dt, dd
{
    margin: 0; padding: 0;
    font-family: 'Noto Sans JP', sans-serif;
    letter-spacing: 0.05em;
    
}

.prf_main{
    margin-top: 70px;
}

/*****　headerの部分　*****/

header {
    position: fixed;
    width: 100%;
    height: 75px;
    top: 0;
    /* padding: 40px 35px 0px; */
    z-index: 10;
    background-color:  rgba(255, 255, 255, 0.5);
}

.logo{
    margin: 15px;
    width: 96%;
}

.logo_contact{
    margin: 15px;
    width: 20%;
}

.page_title{
    font-size: 13px;
    font-weight: normal;
    font-family: 'Noto Sans JP', sans-serif;
    letter-spacing: 0.05em;
    flex: 1;
    text-align: center;
    visibility:hidden
}

.page_title2{
    visibility:hidden
}

.header_flex{
    display: flex;
    justify-content: space-between;
}

.header_flex_item{
    flex: 1;
}

button {
    -webkit-appearance: none;
    appearance: none;
    vertical-align: middle;
    border: 0;
    background: transparent;
    outline: 0;
    border-radius: 0;
    text-align: inherit;
}

button:hover {
    cursor: pointer;
}

.retate_btn_content{
    display: none;
}

/*************** 以下、ハンバーガーボタンのスタイリング ****************/
.btn {
    /* ボタンの配置位置  */
    position: fixed;
    top: 16px;
    right: 16px;
    /* ボタンの大きさ  */
    width: 48px;
    height: 48px;
    /* バーガーの線をボタン範囲の中心に配置 */
    display: flex;
    justify-content: center;
    align-items: center;
    /* 最前面に */
    z-index: 10;
    flex: 1;
}

.btn_flex{
    flex: 1;
}

/***** 真ん中のバーガー線 *****/
.btn-line {
    /* 線の長さと高さ */
    width: 100%;
    height: 4px;
    /* バーガー線の色 */
    background-color: #333;
    /* バーガー線の位置基準として設定 */
    position: relative;
    transition: .2s;
}

/***** 上下のバーガー線 *****/
.btn-line::before,
.btn-line::after {
    /* 基準線と同じ大きさと色 */
    position: absolute;
    transition: .5s;
    font-size: 11px;
    letter-spacing:0.1em;
}


.btn-line::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #333;
    /* 上の線の位置 */
    transform: translateY(-16px);
}


.btn-line::after {
    content: "MENU";
    /* 下の線の位置 */
    display: block;
    width: 100%;
    text-align: center;
    transform: translateY(8px);
}



/***** メニューオープン時 *****/
.btn-line.open {
    transition: .5s;
}

.btn-line.open::before {
    content: "";
    transform: translateY(0);
}

.btn-line.open::after {
    content: "close";
}
/* ここまでボタンアニメーション */

/**************** ここまで、ハンバーガーボタンのスタイリング ****************/

/**************** 以下、メニューのスタイリング ****************/
.menu {
    position: fixed;
    /* メニューの位置マイナス指定で画面外に */
    right: -100%;
    width: 70%;
    height: 100vh;
    /* メニューを縦に */
    display: flex;
    flex-direction: column;
    color: #000000;
    background-color: #eeeeee;
    transition: .3s;
    font-size: 25px;
}

.menu-list {
    width: 100%;
    height: 100%;
    /* メニューテキスト位置をリスト内中心に */
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-list a{
    width: 100%;
    height: 100%;
    /* メニューテキスト位置をリスト内中心に */
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-list:hover {
    color: #333;
    background-color: #ffffff;
    transition: .3s;
    cursor: pointer;
}

/* ハンバーガーメニューのホバーテキスト下線 */

.menu li a{
    position: relative;
}

.menu li a:hover{
    color: #000000;
}

.menu li a::after {
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    bottom: 0;
    left: 10%;
    /*線の形状*/
    width: 80%;
    height: 2px;
    background:#000000;
    /*アニメーションの指定*/
    transition: all .3s;
    transform: scale(0, 1);/*X方向0、Y方向1*/
    transform-origin: center top;/*上部中央基点*/
}

/*現在地とhoverの設定*/
.menu li.current a::after,
.menu li a:hover::after {
    transform: scale(1, 1);/*X方向にスケール拡大*/
}

/***** メニューオープン時位置0にして画面内に *****/
.menu.open {
    position: absolute;
    right: 0;
    margin: 0;
    padding: 0;
    z-index: 2;
}

/********************　bodyの部分　********************/




/********************　index.html ********************/

.slideshow {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
  }
  .slideshow .slider {
    width: 100vw;
    height: 100vw;
    z-index: 2;
  }
  .slideshow .slider * {
    outline: none;
  }
  .slideshow .slider .item {
    height: 100vh;
    width: 100vw;
    position: relative;
    overflow: hidden;
    border: none;
  }
  .slideshow .slider .item .text {
    display: none;
  }
  .slideshow .slider .item img {
    min-width: 101%;
    min-height: 101%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .slideshow .slick-dots {
    position: fixed;
    z-index: 100;
    width: 40px;
    height: auto;
    bottom: auto;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    left: auto;
    color: #fff;
    display: block;
  }
  .slideshow .slick-dots li {
    display: block;
    width: 100%;
    height: auto;
  }
  .slideshow .slick-dots li button {
    position: relative;
    width: 20px;
    height: 15px;
    text-align: center;
  }
  .slideshow .slick-dots li button:before {
    content: "";
    background: #fff;
    color: #fff;
    height: 2px;
    width: 20px;
    border-radius: 0;
    position: absolute;
    top: 50%;
    right: 0;
    left: auto;
    transform: translateY(-50%);
    transition: all 0.3s ease-in-out;
    opacity: 0.6;
  }
  .slideshow .slick-dots li.slick-active button:before {
    width: 40px;
    opacity: 1;
  }
  .slideshow.slideshow-right {
    left: 0;
    z-index: 1;
    width: 50vw;
    pointer-events: none;
  }
  .slideshow.slideshow-right .slider {
    left: 0;
    position: absolute;
  }
  
  .slideshow-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    font-size: 80px;
    width: 100vw;
    text-align: center;
    color: #fff;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 100;
    pointer-events: none;
    text-transform: uppercase;
    letter-spacing: 20px;
    line-height: 0.8;
  }
  @media (max-width: 767px) {
    .slideshow-text {
      font-size: 40px;
    }
  }
  
  .the-most {
    position: fixed;
    z-index: 1;
    bottom: 0;
    left: 0;
    width: 50vw;
    max-width: 200px;
    padding: 10px;
  }
  .the-most img {
    max-width: 100%;
  }


/* index.htmlのホバーの部分 */

.contents_main{
    margin-top: 100px;
}

/*
.sample1{
    width: 250px;
    height: 390px;
    margin-top: 30px;
    margin: 0 auto;
    margin-bottom: 50px;
}

.all_works_photo{
    box-shadow: 5px 5px 5px rgba(0,0,0,0.3);
}

.mask{
    position: relative;
    top:-220px;
    background-color: rgba(255,255,255,0.5);
    /* padding: 5px; */
/*}*/

.works_flex{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 30px;
}

.sample1 {
    position: relative;	/* 相対位置指定 */
    width: 250px;
    height: 390px;
    overflow: hidden;
    /* margin:	10px 8px 10px 16px; */
    max-width: 300px;
    box-shadow: 5px 5px 5px rgba(0,0,0,0.3);
    margin: 0 40px 50px;

}

.sample1 .caption {
    font-size:	100%;
    text-align: center;
    padding-top: 80px;
    color: #000000;
    bottom: 0;
}

.sample1 .mask {
    /* width: 100%;
    height:	100%; */
    position: absolute;	/* 絶対位置指定 */
    top: 0;
    left: 0;
    /* opacity: 0;	マスクを表示しない */
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.5), rgba(0, 0, 0, 0));
    -webkit-transition:	all 0.6s ease;
    transition:	 all 0.6s ease;
    width: 250px;
    height: 390px;
}

.mask img{
    position: absolute;	/* 絶対位置指定 */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.as_logo_esqure{
    width: 75%;
}

.info{
    padding: 230px 10px 0;
}

.works_arrow{
    display: inline-block;
    width: 2em;
    height: 0.7em;
    transform: skewX(40deg);
    border-right: 2px solid #000000;
    border-bottom: 2px solid #000000;
    margin-right: 15px;
}
.works_arrow_line{
    text-align: right;
}

.sample1 .info{
    text-align: left;
}

.as_logo_yanuk{
    width: 40%;
    padding-top: 10px;
}

.as_logo_kaneninisi{
    width: 28%;
}





/********************　profile.html　********************/

.profile_name{
    font-size: 18px;
    margin-bottom: 0;
    font-weight: bold;
}

.profile_content01, .profile_content02,
 .profile_content03,.profile_content04,
 .profile_content05{
   padding: 70px 30px 0px;
 }

.profile_content02_img{
    text-align: right;
}

.profile_content04_img{
    text-align: right;
}

.profile_content_text{
    border: solid 1px;
    width: 79%;
    padding: 15px;
    background-color: #ffffff;
}

.profile_content_text p{
    margin: 0;
    line-height: 2.0;
}

.prf_text{
  position: absolute;
  top: 134px;
  padding-right: 30px;
}

.prf_text02 {
    position: absolute;
    top: 89px;
    margin-right: 30px;
}

.vision_text{
  margin-top: 30px;
}

.profile_content02{
    text-align: right;
}

.profile_content02 p{
    text-align: left;
}

.profile_content04{
    text-align: right;
}

.profile_content04 p{
    text-align: left;
}

.mision_photo{
  width: 78%;
  position: relative;
  /* left: 100%; */
  /* transform: translateX(-100%); */
}

.prf_img_top{
  width: 79%;
}

.csr_photo{
  width: 79%;
}

.cd-fixed-bg {
  position: relative;
  /* min-height: 100%; */
  width: 100%;
  background-size: 100%;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 2;
}

.cd-fixed-bg.cd-bg-1  {
  background-image: url('../img/sp_vision@3x.png');
}

.cd-fixed-bg.cd-bg-2  {
  background-image: url('../img/sp_mission_bg@3x.png');
}

.cd-fixed-bg.cd-bg-3  {
  background-image: url('../img/sp_profile_bg@3x.png');
}

.cd-fixed-bg.cd-bg-4  {
  background-image: url('../img/sp_csr_bg@3x.png');
}

.cd-fixed-bg.cd-bg-5  {
  background-image: url('../img/sp_client_bg@3x.png');
}

.company_info{
    padding: 30px;
}

.co_info_box{
    display: flex;
    align-items: center;
}

.co_title{
    text-align: center;
    margin-bottom: 30px;
}

.co_info_box_content{
    width: 50%;
    text-align: right;
    padding: 15px 0px;
    margin-right: 25px;
    font-size: 12px;
}

.co_info_box_content02{
    width: 50%;
    flex-direction: column;
    margin-left: 25px;
    font-size: 12px;
}





/********************　ourservice.html　********************/

.ourservice_text{
    text-align: center;
}

.ourservice_contents{
    padding: 0 30px;
}

.ourservice_main_contents{
    background-color: #E5E5E5;
}

h2 img{
    width: 62%;
}

.ourservice_img{
    text-align: center;
    margin: 0;

}

.ourservice_contents{
    padding-top: 50px;
}

.ourservice_service_content{
    padding-top: 50px;
}

.corp_ad{
    text-align: center;
    margin: 0 0 30px;
}

/***ステップバーデザイン１***/
.step-wrap1 {
	counter-reset:count;
	/* margin: 30px ; */
	position: relative;
   }
   .step-content1 {
	padding: 0 0 1.3em 2em;
	margin: 0;
	position: relative;
   }
   .step-content1::before {
	content: "";
	display: block;
	width: 13px;
	height: 13px;
	background: #000000;
	border: solid 3px #ffffff;
	border-radius: 50%;
	position: absolute;
	top: 3px;
	left: 3px;
	box-shadow: 0 0 0 2px #000000;
   }
   .step-content1::after {
	content: "";
	display: block;
	height: calc(100% - 35px);
	border-left: solid 1px #768888;
	position: absolute;
	top: 30px;
	left: 10px;
   }
   .step-title1 {
    font-size: 120%;
    margin: 10px 0;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.7;
   }
   .step-label1 {
	color: #000000;
    font-weight: bold;
    padding-bottom: 10px;
    font-family: 'Noto Sans JP', sans-serif;
    
   }
   .step-label1::after {
	counter-increment:count;
	content:counter(count);
	position: relative;
	left: .3em;
   }
   .step-body1 {
	margin-top: .5em;
	padding: 0 0 1em;
    border-bottom: solid 2px #ddd;
    font-family: 'Noto Sans JP', sans-serif;
    letter-spacing: 0.05em;
    line-height: 1.7;
   }
   .step-wrap1 > :last-of-type::after {
	display: none;
   }
   /***ステップバーデザイン１終了***/


.ourservice .ourservice_photo{
    display: none !important;
}

.ourservice .sp_ourservice_photo{
    display: block !important;
}

.ourservice_box_content{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.ourservice_box {
    position: relative;
    width: 70%;
    height: auto;
    background:#ffffff;
    border: solid 1px #000000;
    max-width: 250px;
}

.ourservice_box.box-1x1{
    margin: 0 auto;
    margin-bottom: 30px;
    margin: 30px;
}

.box-1x1:before {
    content: "";
    display: block;
    padding-top: 100%;
}


.inner {
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%;
	height: 100%;
}

.inner02{
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.inner ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.inner h3{
    text-align: center;
    margin: 0;
    padding: 7px;
    padding-bottom: 20px;
    font-family: 'Noto Serif', serif;
}

.inner li{
    text-align: center;
    padding: 0 7px;
    line-height: 1.7;
    font-size: 15px;
}



.ourservice_project{
    text-align: center;
}

.prf_text_box{
    text-align: left;
}

.giftlier_top_photo{
    width: 67%;
}

.projects_content{
    padding: 50px 30px 0px;
    padding-bottom: 30px;
}



/********************　contact.html　********************/

.contact_tel_box{
    margin-top: 50px;
}

.contact_tel{
    font-size: 18px;
}

.contact_tel_to{
    color: #0000ee;
    position: relative;
    display: inline-block;
    transition: .3s;
    font-size: 18px;
}

.contact_tel_to::after{
    position: absolute;
    bottom: -5px;
    left: 50%;
    content: '';
    width: 0;
    height: 2px;
    background-color: #0000ee;
    transition: .3s;
    transform: translateX(-50%);
}

.contact_tel_to:hover::after{
    width: 100%;
  }

.contact_mail_box{
    margin-top: 50px;
}

.contact_mail{
    font-size: 18px;
}

.contact_mail_to{
    color: #0000ee;
    position: relative;
    display: inline-block;
    transition: .3s;
    font-size: 18px;
}

.contact_mail_to::after{
    position: absolute;
    bottom: -5px;
    left: 50%;
    content: '';
    width: 0;
    height: 2px;
    background-color: #0000ee;
    transition: .3s;
    transform: translateX(-50%);
}

.contact_mail_to:hover::after{
    width: 100%;
  }

.rev_top{
    margin-top: 50px;
    text-align: center;
}

.rev_top_to{
    color: #0000ee;
    position: relative;
    display: inline-block;
    transition: .3s;
    font-size: 18px;
}

.rev_top_to::after{
    position: absolute;
    bottom: -5px;
    left: 50%;
    content: '';
    width: 0;
    height: 2px;
    background-color: #0000ee;
    transition: .3s;
    transform: translateX(-50%);
}

.rev_top_to:hover::after{
    width: 100%;
  }

/* .input_item{
    padding-bottom: 30px;
} */

.contact_content{
    margin-bottom: 100px;
    margin: 0 30px;
}

.contact_content h1{
    font-size: 25px;
    margin-top: 150px;
    font-weight: normal;
    margin-bottom: 70px;
    text-align: center;

}

/* 
.contact_content_box{
    margin: 0;
}

.radio_button_content{
    display: block;
    border: solid 1px;
    margin: 5px 0px;
    width: 305px;
    padding: 5px 15px; 
}

#contact_form .input_item .clearfix {
    width: 335px;
    margin: 0 auto;
} */

.contact_title{
    margin-top: 22px;
    margin-bottom: 5px;
}

/* #contact_form .input_item .clearfix .contact_title {
    font-size: 15px;
}

#contact_form .input_item .clearfix .contact_title span.req {
	color: #FF1515;
}

#contact_form .input_item .clearfix .contact_content_box li {
    display: inline-block;
    margin: 0 15px 0 0;
    line-height: 30px;
    height: 30px;
    padding: 3px 0;
}

#contact_form .input_item .clearfix .contact_content_box input[type="text"],
#contact_form .input_item .clearfix .contact_content_box input[type="number"],
#contact_form .input_item .clearfix .contact_content_box input[type="email"],
#contact_form .input_item .clearfix .contact_content_box input[type="tel"]{
    width: 315px;
    padding: 10px 10px;
    height: 11px;
    margin: 0;
    
}

#contact_form .input_item .transmission input[type="submit"] {
	border: 1px solid #000000;
    font-size: 15px;
    text-shadow: none;
    color: #000000;
    width: 250px;
    display: block;
    opacity: 1.0;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -ms-transition: 0.5s;
    transition: 0.5s;
    height: 40px;
    margin: 0 auto;
    margin-top: 70px;
    margin-bottom: 100px;
    background-color: #ffffff;
}

input[type="radio" i] {
    background-color: initial;
    cursor: default;
    appearance: auto;
    box-sizing: border-box;
    margin-right: 15px;
    padding: initial;
    border: initial;
}

#contact_form .input_item .transmission input[type="submit"]:hover {
	opacity:0.85;
	-webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -ms-transition: 0.5s;
    transition: 0.5s;
}

#contact_form .input_item .clearfix .contact_content_box input[type="text"].inp_error,
#contact_form .input_item .clearfix .contact_content_box input[type="number"].inp_error,
#contact_form .input_item .clearfix .contact_content_box input[type="tel"].inp_error,
#contact_form .input_item .clearfix .contact_content_box textarea.inp_error,
#contact_form .input_item .clearfix .contact_content_box .radio_button_content input[type="radio"].inp_error{
    border: 1px solid #F88A8A;
    background: #F4D4D4;
}

#contact_form .input_item .clearfix .contact_content_box textarea {
    width: 315px;
    padding: 10px 10px;
}

#energy_contact #send_status{
	padding: 5px 0 25px;
    text-align: center;
}

#energy_contact #send_status p{
	width: 480px;
	margin: 0 auto;
    padding: 0 15px;
    line-height: 50px;
    font-size: 25px;
    border: 1px solid #3c763d;
    border-radius: 4px;
    background-color: #dff0d8;
    color: #3c763d;
}

span.error_m {
	font-size: 15px;
	font-weight: normal;
	color: #FF4040;
	display: block;
	margin: 0;
} */





/********************　asaucemeler.html　********************/

.box{
    margin: auto;
    position: relative;
    width: 100%;
}

.box2{
    text-align: center;
    position: absolute;
    width: 70%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.works_corp{
    font-size: 20px;
}

.img_as_flex{
    width: 100%;
    display: -webkit-flex;
    display: flex;
    max-width: 1280px;
    margin: 0 auto;
    flex-wrap: wrap;
    flex-direction: row;
}

.img_as_flex_content{
    width: 50%;
}

.as_content{
    text-align: center;
}

.all_works h2{
    font-size: 20px;
}




.as_works4{
    margin-bottom: 50px;
}

.as_works7{
    margin-bottom: 50px;
    margin-top: 50px;
}

.works_btn{
    text-align: center;
    margin-top: 50px;
    margin-bottom: 100px;
}

.btn_arrow {
    display: inline-block;
    position: relative;
    padding: 1em 2.5em;
    min-width: 15em;
    border: 1px solid currentColor;
    color: #000000;
    font-size: 16px;
    /* font-weight: bold; */
    text-align: center;
    text-decoration: none;
    /* box-sizing: border-box; */
    transition: 0.5s;
}
.btn_arrow::after {
    position: absolute;
    top: 50%;
    right: 1em;
    width: 0.5em;
    height: 0.5em;
    transform: translateY(-50%) rotate(45deg);
    border-right: 1px solid currentColor;
    border-top: 1px solid currentColor;
    content: "";
}
.btn_arrow:hover {
    border: 1px solid #000000;
    background-color: #ffffff;
    color: #000000;
}

.works_btn_prev_nex{
    width: 100%;
    display: -webkit-flex;
    display: flex;
    max-width: 1280px;
    margin: 0 auto;
    flex-wrap: wrap;
    flex-direction: row;
}

.btn_prev{
    position: relative;
    width: 50%;
}
.btn_prev p{
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    margin:0;
    padding:0;
    font-size: 18px;
}
.btn_prev p::before{
    content: '';
    width: 6px;
    height: 6px;
    border: 0;
    border-top: solid 2px #333;
    border-right: solid 2px #333;
    position: absolute;
    top: 47%;
    left:-20px;
    margin-top: -4px;
    transform: rotate(-135deg);
}

.btn_next{
    position: relative;
    width: 50%;
}

.btn_next p{
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    margin:0;
    padding:0;
    font-size: 18px;
}

.btn_next p::after{
    content: '';
    width: 6px;
    height: 6px;
    border: 0;
    border-top: solid 2px #333;
    border-right: solid 2px #333;
    position: absolute;
    top: 47%;
    right:-20px;
    margin-top: -4px;
    transform: rotate(45deg);
}

.all_works{
    background-color: rgb(127, 153, 150);
    padding: 20px;
    text-align: center;
    height: 100px;
    position: relative;
}

.all_works_text{
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    margin:0;
    padding:0;
    font-size: 18px;
}



/*****　footer部分　*****/

.copyright{
    text-align: center;
}

.footer_flex{
    display: flex;
    justify-content: flex-end;
    /* justify-content: space-between; */
    padding: 10px;
    align-items: center;
}

.footer_flex p{
    margin-right: 30px;
}

.sns_logo{
    width: 8%;
}

.contact{
    position: relative;
}

.contact_text{
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    margin: 0;
    padding: 0;
    font-size: 18px;
}


.contact h2{
    font-size: 20px;
}

.contact p{
    font-size: 10px;
}

.project_giftlier{
    text-align: center;
}

.giftlier{
    width: 65%;
}


.as_works{
    opacity: 0.5;
}

.sp_as_works{
    opacity: 0.5;
}

.as_works_text{
    text-align: center;
    margin: 50px 30px;
}
.as_works_text_01{
    text-align: left;
    display: inline-block;
}

.box .as_works{
    display: none !important;
}

.box .sp_as_works{
    display: block !important;
}



/* デザインC(PC) */
@media screen and (min-width: 750px){

    


}



@media screen and (min-width: 1025px) {
    /* PC用レイアウト 1,025px以上の範囲に収めるデザインはこの中に記述 */

.header_flex_item{
    flex: 1;
}

.logo{
    width: 59%;
}

.btn_flex{
    flex: 1;
}

p {
    font-size: 18px;
  }

  .vision_text{
      margin-top: 350px;
      left: 50px;
      margin-left: 40px;
  }

  .cd-fixed-bg {
      position: relative;
      min-height: 100%;
      width: 100%;
      background-size: contain; /*coverからcontainに変更：表示がおかしいため*/
      background-attachment: scroll;
      background-repeat: no-repeat;
      background-position: center center;
      /* z-index: 99999; */
  }
  
  
  .cd-fixed-bg.cd-bg-1  {
    background-image: url('../img/bg_vision@2x.jpg');
  }
  
  .cd-fixed-bg.cd-bg-2  {
    background-image: url('../img/bg_mission@2x.jpg');
  }
  
  .cd-fixed-bg.cd-bg-3  {
    background-image: url('../img/bg_profile@2x.jpg');
  }
  
  .cd-fixed-bg.cd-bg-4  {
    background-image: url('../img/bg_csr@2x.jpg');
  }
  
  .cd-fixed-bg.cd-bg-5  {
    background-image: url('../img/bg_clients@2x.jpg');
  }
  
  .profile_content01, .profile_content03,
   .profile_content05{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px;
    padding-bottom: 170px;
  }
  
  .profile_content04, .profile_content02{
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
    padding: 100px;
  }
  
  .profile_content03 p{
    margin-left: 40px;
  }

  .clients_text{
      margin-left: 40px;
  }

  .company_info h2{
      text-align: center;
  }

  .company_info{
      padding: 100px;
  }
  
  .profile p{
    margin-left: 40px;
  }
  .profile_content04 p{
    padding-right: 40px;
  }
  
  
  .vision_photo{
    position: relative;
  }
  
  .vision_photo02{
    position: absolute;
    top: 59%;
    left: 26%;
    width: 21%;
  }

  .mision_photo{
    width: 78%;
    position: relative;
    /* left: 100%; */
  }
  
  .prf_text{
    position: absolute;
    padding: 0;
    right: 0;
    top: 23%;
    max-width: 602px;
    margin-right: 100px;

  }
  
  .prf_text02{
    position: absolute;
    padding: 0;
    margin-left: 100px;
    max-width: 610px;
    left: 0;
    margin-top: 130px;
  }

  .mision_text{
      margin-right: 40px;
      margin-top: 200px;
  }
  
  .prf_img_02{
    text-align: right;
    margin-right: 30px;
  }
  
  .profile_content_text {
    border: solid 1px #000000;
    background-color: #ffffff;
    max-width: 450px;
    height: 450px;
    min-width: 50%;
    padding: 30px;
  }



    .step-wrap1 {
        counter-reset:count;
        margin: 90px 240px;
        position: relative;
       }
    
    .work_container{
      /* margin-left: 40px; */
      margin-bottom: 320px;
    }

    .works_photoes{
        margin-top: 150px;
    }

    .works_photo{
        margin: 0px 40px 0px 40px;
        width: 24%;
    }

    .img_flexbox_01{
        margin: 0px 100px 200px 100px;
        display: -webkit-flex;
        display: flex;
        justify-content: space-between;
    }

    .img_flexbox_02{
        margin: 0px 100px 200px 100px;
        display: -webkit-flex;
        display: flex;
        justify-content: space-between;
    }

    p.works_corp{
        font-size: 40px;
    }

    .box .as_works{
        display: block !important;
    }
    
    .box .sp_as_works{
        display: none !important;
    }

    .box{
        margin: auto;
        position: relative;
        width: 100%;
        z-index: -5;
    }

    .box2{
        text-align: center;
        position: absolute;
        width: 60%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .as_works_text{
        text-align: center;
        margin: 150px 295px;
    }

    

    .as_works4{
        margin-bottom: 100px;
    }

    .as_works7{
        margin-bottom: 100px;
        margin-top: 100px;
    }

    .ourservice .ourservice_photo{
        display: block !important;
    }
    
    .ourservice .sp_ourservice_photo{
        display: none !important;
    }
    .ourservice_box {
        position: relative;
        width: 20%;
        height: auto;
        background:#ffffff;
        border: solid 1px #000000;
        /* display: inline-block; */
        /* display: flex; */
        vertical-align: middle;
        min-width: 305px;
        /* justify-content: space-around; */
    }

    .sample1 {
        position: relative;	/* 相対位置指定 */
        max-height: 490px;
        overflow: hidden;
        /* margin:	10px 8px 10px 16px; */
        max-width: 300px;
        box-shadow: 5px 5px 5px rgba(70, 70, 70, 0.1);
        margin: 0 40px 200px;
    
    }
    
    .sample1 .caption {
        font-size:	100%;
        text-align: center;
        padding-top: 80px;
        color: #000000;
        bottom: 0;
    }
    .sample1 .mask {
        /* width: 100%;
        height:	100%; */
        position: absolute;	/* 絶対位置指定 */
        top: 0;
        left: 0;
        opacity: 0;	/* マスクを表示しない */
        background-color: rgba(255,255,255,0.5);	/* マスクは半透明 */
        -webkit-transition:	all 0.6s ease;
        transition:	 all 0.6s ease;
        width: 300px;
        height: 490px;
    }
    .sample1:hover .mask {
        opacity: 1;	/* マスクを表示する */
    }

    .mask{
        padding: 0;
    }
    
    .mask img{
        position: absolute;	/* 絶対位置指定 */
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
    }
    
    .sample1 img{
        /* width: inherit; */
        max-width: 300px;
    }
    
    .info{
        padding:280px 15px 0px;
    }
    
    .works_flex{
        margin-top: 150px;
    }
    
    .works_flex02{
        display: flex;
        justify-content: space-around;
    }
    .contents_main{
        margin: 100px 60px 0px;
    }

    .ourservice_contents{
        padding: 90px 70px;
    }

    .ourservice_box_content{
        text-align: center;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
    }

    /* .ourservice_box_content::before, */
    .ourservice_box_content::after{
    content: "";
    display: block;
    width: 305px;
    height: 0;
    margin: 30px;
}

.ourservice_box_content::before{
    order: 1;
}


    

    .ourservice_project{
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 100px;
    }

    .btn_next p{
        font-size: 50px;
    }

    .btn_next p::after{
        content: '';
        width: 20px;
        height: 20px;
        border: 0;
        border-top: solid 3px #333;
        border-right: solid 3px #333;
        position: absolute;
        top: 47%;
        right:-50px;
        margin-top: -4px;
        transform: rotate(45deg);
    }

    .btn_prev p{
        font-size: 50px;
    }

    .btn_prev p::before{
        content: '';
        width: 20px;
        height: 20px;
        border: 0;
        border-top: solid 3px #333;
        border-right: solid 3px #333;
        position: absolute;
        top: 47%;
        left:-50px;
        margin-top: -4px;
        transform: rotate(-135deg);
        
    }

    .ourservice_project h3{
        font-size: 25px;
        margin-left: 40px;
    }
    
    .ourservice_project p{
        font-size: 18px;
        margin-left: 40px;
    }

    h2 img{
        width: 27%;
    }

    dt{
        font-size: 18px;
    }

    dd{
        font-size: 18px;
    }

    .all_works{
        height: 350px;
    }

    .projects_content{
        padding: 100px  0px;
    }

    .rotate_btn_left, .rotate_btn_right{
        width: 135px;
        padding: 5px;
        border: solid 1px #000000;
        text-align: center;
    }
    
    .rotate_btn_left {
        transform:rotate(90deg);
        margin-left: -34px;
    }
    
    .rotate_btn_left::after{
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        bottom: -21px;
        width: 1px;
        height: 15px;
        margin: auto;
        background-color: #000;
    }

    .rotate_btn_right {
        transform:rotate(-90deg);
        margin-right: -34px;
    }

    .rotate_btn_right::after {
        content: '';
        position: absolute;
        /* top: 10px; */
        left: 0;
        right: 0;
        bottom: -21px;
        width: 1px;
        height: 15px;
        margin: auto;
        background-color: #000;
      }
    
    .retate_btn_content{
        display: flex;
        justify-content: space-between;
        transform: translateY(200px);
    }

    .sns_logo{
        width: 3%;
    }

    .contact h2{
        font-size: 35px;
        font-weight: normal;
    }

    .inner h3{
        font-size: 25px;
        font-family: 'Noto Serif', serif;
    }

    .co_info_box_content{
        font-size: 18px;
    }
    .co_info_box_content02{
        font-size: 18px;
    }

    .all_works h2{
        font-size: 35px;
    }


    .contact p {
        font-size: 16px;
    }

    .sample1{
        width: 300px;
        height: 490px;
    }

    .page_title{
        font-size: 23px;
        flex: 1;
        text-align: center;
    }

    .page_title2{
        font-size: 23px;
        flex: 1;
        text-align: center;
        visibility:hidden;
    }

    .works_flex::after{
        content: "";
        display: block;
        width: 300px;
        height: 0;
        margin: 0 40px 200px;
    }

    .contact_content{
        margin-bottom: 100px;
        margin: 0 300px;
    }
}