/*
Theme Name: office-ishii
Description: This is my original theme.
Version: 1.0
*/


@charset "UTF-8";

/* ユニバーサルセレクタで余白リセット */
* {
    margin: 0;
    padding: 0;
  }

/*一番下の空白を取り除くため*/
html,　body{
	height: 100%;
	overflow-x:hidden;
}

 /* 左右の余白用 */
 .container {
    max-width: 1500px;
    margin: 0 auto;
    padding-right: 15px;
    padding-left: 15px;
 }

a{
	text-decoration: none;
}
.content{
	padding-top:10px;
	padding-bottom:10px;
}

/*文字関連*/
body{
	font-size:16px;
	color: #333;
}
.font-nomal{
	line-height:2;
}
.centerp{
	display:inline-block;
 	text-align:left;
}

/*共通*/
.paddingtop_50{
	padding-top:50px;
}
h2{
	padding:50px 0;
}

/* ヘッダー部スタイル */
.header {
    width: 100%;
    box-sizing: border-box;
	position:fixed;
	top:0;
	background-color:#fff;
	z-index:10000;
	height:100px;
	display: flex;
	align-items: center;
}

.header img{
	vertical-align: top;
}
.header_wp{
	display: flex;
	justify-content: space-between; 
	align-items: center;
}
#header_left {
    flex-basis: 60%;
}

#header_right {
    flex-basis: 40%;
	align-self: center;
}

/* ナビゲーションメニュー */
nav ul{
    width: 100%;
    list-style: none;
    display: table;
    table-layout: fixed;
    text-align: center;
}

nav li {
    display: table-cell;
    vertical-align: middle;
    margin: 0;
}

nav li a {
    display: inline-block;
	position: relative;
    color: #333;
    font-size: 15px;
    text-decoration: none;
    padding: 10px 0;
	font-weight:bold;
}

nav li a::after {
  position: absolute;
  bottom: -3px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #333;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform .3s;
}

nav li a:hover::after {
  transform: scale(1, 1);
}

/*トップページ*/
.top-h2-1{
	color: #1A30AC;
	font-size:80px;
	font-weight:900;
	display: block;
}
.top-h2-2{
	font-size:smaller;
	font-weight:bold;
}
.top_image img{
	width:100%;
}

.top_service{
	color: #333; 
	font-size: 23px; 
	text-align: center;
	font-weight:600;
}

/*リンク設定*/
.top_service_hover,.top_viewmore02,.contact{
    position:relative;
}
.top_service_hover a,.top_viewmore02 a,.contact a{
	position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}

.top_viewmore{
	text-align: center;
}

/*メイン始まりをメニュー分離す*/
.main{
	margin-top:75px;
}

/*フェードイン*/
.news__items.offs.effect {
  opacity: 0;
  transform: translate(0, 100px);
  -webkit-transform: translate(0, 100px);
}
.news__items.ons.effect {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition: all 1.5s ease;
  transition: all 1.5s ease；;
}

/*ボタン*/
.button001,.button003{
    background: #fff;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 240px;
    padding: 10px 25px;
    color: #7ecdf4;
    transition: 0.3s ease-in-out;
    font-weight: 500;
    z-index:0;
	border:solid 1px #7ecdf4;
}
.button001:before,.button003:before{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 0;
    display: block;
    background: #7ecdf4;
    transition: .3s;
    left:0;
}
.top_service_hover:hover .button001,.top_viewmore02:hover .button003{
    color: #FFF;
}
.top_service_hover:hover .button001:before,.top_viewmore02:hover .button003:before{
    width: 100%;
    z-index: -1;
}
.top_service_hover:hover,.button003:hover{
cursor:pointer;
}
.top_service_hover{
	overflow: hidden;
}
.top_service_hover img {
   width: 100%;
  transition-duration: 0.3s;
}
.top_service_hover:hover img{
    opacity: 0.6;
  transition-duration: 0.3s;
}
.top_service_hover:hover .top_serviceimg{
	background-color: #7ecdf4; 
}

/*トップページコンタクト*/
.all_links{
   background: #7ecdf4;
    width: 100%;
    padding: 8% 0 8%;
    border-top-left-radius: 280px;
	border-top-right-radius: 280px;
	text-align:center;
}

.contact{
	    background: #FFF;
    width: 47.2%;

    display: inline-block;
    border-radius: 150px;
	text-align:left;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	
}
._list_inner {
    padding: 40px 10px 40px 10px;
    font-size: 16px;
	display:flex;
	flex-wrap: nowrap;
	flex-direction:row;
}
.contact:hover{
	cursor:pointer;
}
.contact:hover .arrow_mark{
	transform: scale(1.3);
	transition:1s all;
}

.arrow_mark:before{
	content     : '\f0a9';
  font-family : 'Font Awesome 5 Free';
	font-weight: 900;
	font-size:40px;
	color:#1A30AC;
	padding:0 20px 0 0;
	
}

._list_inner ._ttl {
    display: block;
    line-height: 1;
    font-weight: 600;
    font-size: 26px;
    color: #434343;
}

.all_links ._list li a ._list_inner ._txt {
    margin-top: 18px;
    display: block;
    line-height: 1;
    letter-spacing: 0.5px;
    font-weight: 100;
    font-size: 17px;
    color: #2E2E2E;
}

/* フッター部 */
footer {
    background-color: #f0f1f3;
    font-size: 1.4em;
    color: #333;
	padding:50px;
	margin-top:-10px;
}

.footer_logowp{
	display:flex;
	flex-wrap:nowrap;
	justify-content: space-between;
}

footer img{
	display: block;
}
.dx_logo img{
	margin: 0 0 0 auto;
}

.footer_txtwp{
	display:flex;
	padding-top:1em;
}

#footer_txt1{
	padding-right:1em;
}
#footer_copyright{
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 10px;
    color: #333;
}

/*業務内容ページ・弊社の特徴ページ*/
.page-id-14 .maincontent, .page-id-16 .maincontent, .page-id-18 .maincontent{
	position:relative;
}

.page-id-14 .service-top, .page-id-16 .service-top, .page-id-18 .service-top{
	position:absolute;
	top:110px;
	left:0;
	color: #1A30AC;
	font-size: 80px;
	font-family: 'Montserrat', sans-serif;
	font-style: normal;
	font-weight: bolder;
	letter-spacing: 0.025em;
}
.page-id-14 .content-Header, .page-id-16 .content-Header, .page-id-18 .content-Header{
	height:350px;
}
.page-id-14 .content-Header::before, .page-id-16 .content-Header::before, .page-id-18 .content-Header::before{
	content: '';
    position: absolute;
    top:160px;
	height:350px;
    left: calc(50% - 50vw);
    width: 100vw;
    background: url('https://officeishii.co.jp/wp-content/uploads/tiltle.png') center no-repeat;
    background-size: cover;
    z-index: -1;
}

/*ページ別Hタグ*/
.page-id-14 .main h1, .page-id-16 .main h1, .page-id-18 .main h1{
	margin-top:200px;
	font-weight: normal;
}

.page-id-14 .h2{
	display:block;
	color: #1A30AC;
	font-size: larger;
	font-weight: bolder;
}

.page-id-16 .h2, .page-id-18 .h2{
	position:absolute;
	top:-38px;
	left:0;
	color: #1A30AC;
	font-size: 60px;
	font-weight: bolder;	
}

.page-id-16 .h2-center, .page-id-18 .h2-center{
	color: #1A30AC;
	font-size: 60px;
	font-weight: bolder;
	margin-top:-140px;
	position:relative;
}

.page-id-16 .h3, .page-id-18 .h3{
	position:absolute;
	top:38px;
	font-weight: bolder;
}

.page-id-16 .h3-center, .page-id-18 .h3-center{
	position:absolute;
	top:38px;
	font-weight: bolder;
	right:47%;
}

/*背景左*/
.page-id-14 .service-1-base, .page-id-16 .service-1-base, .page-id-18 .service-1-base{
	position:relative;
}
.page-id-14 .service-1-base::before, .page-id-16 .service-1-base::before, .page-id-18 .service-1-base::before{
	content: '';
    position: absolute;
    top:0;
	right: auto;
    height: 100%;
    left: calc(50% - 50vw);
    border-radius: 0 30px 30px 0;
	width: 80vw;
    background: #F3F4FB;
    z-index: -1;
} 

/*背景右*/
.page-id-14 .service-1-base2, .page-id-16 .service-1-base2, .page-id-18 .service-1-base2{
	position:relative;
}

.page-id-14 .service-1-base2::before, .page-id-16 .service-1-base2::before, .page-id-18 .service-1-base2::before{
	content: '';
    position: absolute;
    top:0;
	left: auto;
    height: 100%;
    right: calc(50% - 50vw);
    border-radius: 30px 0 0 30px;
	width: 80vw;
    background: #F3F4FB;
    z-index: -1;
} 

/*背景のコンテンツ*/
.page-id-14 .service-1-col, .page-id-18 .service-1-col {
    padding:100px 0;
}

.page-id-16 .service-1-col{
	padding:0 0 100px 0;
	margin-top:-50px;
}

/*背景真ん中コンテンツ*/
.page-id-14 .service-1-base3, .page-id-16 .service-1-base3, .page-id-18 .service-1-base3{
	position:relative;
}
.page-id-14 .col-center, .page-id-16 .col-center, .page-id-18 .col-center{
    border-radius: 30px;
    background: #F3F4FB;
	text-align:center;
	padding:50px 0px;
} 

/*ボタン2*/
.button002 {
    font-size: 28px;
    width: 150px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    text-align: center;
    font-weight: bold;
    padding: 20px 15px;
    color: #000000;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.7s ease-out;
    transition: all 0.7s ease-out;
    background: -webkit-linear-gradient(180deg,                           #000000,
    #ffffff,
    #868686,
    #3d3d3d);
    background: -webkit-linear-gradient(right,                             #000000,
    #ffffff,
    #868686,
    #3d3d3d);
    background: linear-gradient(270deg,
    #000000,
    #000000,
    #ffffff,
    #ffffff);
    background-position: 1% 50%;
    background-size: 300% 300%;
    border: none;
    border: 2px solid #050505;
}

.button002:hover {
    background-position: 99% 50%;
    color: #ffffff;
    border: 2px solid #000000;
    cursor: pointer;
}

/*弊社の特徴*/
.page-id-16 .h3-after{
	margin-top:50px;
}

.kaisha {
width: 80%;
	margin:0 auto;
}

.kaisha th,
.kaisha td {
border: none;
padding: 20px;
}

.kaisha th {
font-weight: bold;
background-color: #1A30AC; 
text-align:right;
	color:#fff;
vertical-align:top;
}

.kaisha td{
	text-align:left;
	background-color: #fff; 
}
.kaisha ul {
  list-style: none;
}



/*問い合わせ*/
.mw_wp_form{
	font-family: 'Noto Sans JP', sans-serif;
}

.mw_wp_form table{
	margin:0 auto;
	width: 70%;
}
.mw_wp_form input,.mw_wp_form textarea{
	border:none;
	padding:1.5em 10px;
	width:100%;
}


.mw_wp_form td,.mw_wp_form th {
		vertical-align:top;
	border-bottom:solid 1px #fff;
	padding:30px 0;
	text-align: left;

}

.mw_wp_form td{
	width: 80%;
}
.mw_wp_form th{
	width: 20%;
}

.mw_wp_form th{
	padding-top:40px;	
}
.mw_wp_form .send-button{
	padding-top:40px;
	width: 70%;
	margin:0 auto;
}

.mw_wp_form .send-button input{
	background-color:#1A30AC;
	color:#fff;
	border-radius: 10px;
	cursor: pointer;
}

.mw_wp_form .send-button input:hover{
	opacity:0.7;
}

.mw_wp_form .horizontal-item input{
	width:1em;
}

.toiawasesetumei{
	padding:0 20px;
	margin-top:-70px;
}
.homebutton{
	display: block;
	position: relative;
	width: 160px;
	padding: 0.8em;
	text-align: center;
	text-decoration: none;
	color: #fff;
	background: #1A30AC;
	border-radius: 10px;
}
.homebutton hover{
	opacity:0.5;
	cursor: pointer;
	text-decoration: none;
}
.mycenter{
	display: block;
    text-align: -webkit-center;
	margin-top:50px;
}