/* 2015.01.05 R.Yoshikawa */
@charset "utf-8";

/**-----------------------------------------------
基本
-----------------------------------------------**/
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600&family=Noto+Serif+JP:wght@400&display=swap');

html {
	font-size: 18px;
}
.sp {
	display:none;
}
body {
	color:#333;
	font-family: "Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
	font-style: normal;
	font-weight: normal;
	line-height:1.8;
	letter-spacing: 0.8pt;
	margin: 0;
	padding: 0;
}

#system_edit a {
	position:fixed;
	bottom:0;
	right:0;
	left:0;
	z-index:9;
	display:block;
	color: #FFF;
	padding:10px;
	font-size: 12px;
	text-align:center;
	text-decoration: none;
	background: #000;
}
#system_edit a:hover {
	opacity:0.6;
}


/**-----------------------------------------------
リンク色
-----------------------------------------------**/
a {/*リンクされた文字*/
	color:#84D2F3;
	font-style:normal;
	text-decoration:underline; }

a:link {/*未訪問のリンク*/
	color:#84D2F3;
	font-style:normal;
	text-decoration:underline; }

a:visited {/*訪問後のリンク*/
	color:#84D2F3;
	text-decoration:underline; }

a:hover {/*マウスをのせたとき*/
	color:#8fbbcc;
	font-style:normal;
	text-decoration:none; }

a:active {/*クリック中*/
	text-decoration:none; }

a img:hover {
	opacity:0.5;
	filter: alpha(opacity=50);
	-ms-filter: "alpha( opacity=50 )"; }


/**-----------------------------------------------
汎用
-----------------------------------------------**/
/* ボタン */
.btn a {
	display:inline-block;
	position: relative;
	z-index: 2;
	font-family:'Cormorant Garamond','Noto Serif JP', serif;
	width:300px;
	padding:18px 0;
	font-size:1rem;
	text-align:center;
	text-decoration:none;
	border:2px solid #84d2f3;
	overflow:hidden;
}
.btn a:hover {
	color:#FFF;
}
.btn a:before {
	content:"";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	z-index: -1;
	background: #84d2f3; /* Old browsers */
	background: -moz-linear-gradient(-45deg,  #84d2f3 0%, #8fbbcc 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(-45deg,  #84d2f3 0%,#8fbbcc 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(135deg,  #84d2f3 0%,#8fbbcc 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#84d2f3', endColorstr='#8fbbcc',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
	transition: all 200ms linear;
}
.btn a:hover:before {
	left: 0;
}

/* テーブル */
table {
	width:100%;
	margin-bottom:5px;
	border-collapse: collapse;
	/* width:100%はみ出し防止 */
	-webkit-box-sizing: border-box;
	-khtml-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	/* テーブルのはみ出し防止 */
	word-break:break-all;
}

table th {
	color:#FFF;
	padding:5px 8px;
	text-align:left;
	font-family:'Cormorant Garamond','Noto Serif JP', serif;
	font-weight:normal;
	vertical-align:middle;
	border:1px solid #CCC;
	background-color:#DF0174;
}

table td {
	padding:5px 8px;
	vertical-align:middle;
	border:1px solid #CCC;
	background-color:#FFF;
}


/* ページ送り */
#page_navi {
	margin:10px auto 0;
	text-align:center;
	line-height:250%;
}


/**-----------------------------------------------
ヘッダー
-----------------------------------------------**/
#header {
	padding:30px 0;
	font-family:'Cormorant Garamond','Noto Serif JP', serif;
	background-color:#FFF;
}
#header .inner {
	display:flex;
	align-items:center;
	justify-content: space-between;
	padding:0 30px;
}
#header .menu {
	display:flex;
	align-items:center;
	border-left:1px dotted #666;
}
#header .menu li {
	text-align:center;
	border-right:1px dotted #666;
}
#header .menu li a {
	display:block;
	color:#333;
	font-size:1rem;
	padding:4px 30px;
	text-decoration:none;
}


/**-----------------------------------------------
メインエリア
-----------------------------------------------**/
#content {
	margin-bottom:100px;
}
.section {
	max-width:1200px;
	margin:0 auto;
}
/* ページタイトル */
.page_title {
	display:flex;
	align-items:center;
	min-height:200px;
	font-family:'Cormorant Garamond','Noto Serif JP', serif;
	background:url(../images/top/topmv.jpg) no-repeat 0 0 / cover;
}
.page_title .title {
	color:#FFF;
	font-size:2.1rem;
	width:1200px;
	margin:0 auto;
}
/* パンくずリスト */
.breadcrumb {
	display:flex;
	padding:10px;
	font-size:0.6rem;
}
.breadcrumb li:after {
	content:">";
	margin:0 10px;
}
.breadcrumb li:last-child:after {
	display:none;
}


/**-----------------------------------------------
フッター
-----------------------------------------------**/
.footer {
	color:#FFF;
	padding:50px 0;
	font-family:'Cormorant Garamond','Noto Serif JP', serif;
	background-color:#444;
}
.footer .menu {
	display:flex;
	justify-content:center;
	margin-bottom:80px;
}
.footer .menu a {
	color:#FFF;
	font-size:0.7rem;
	text-decoration:none;
}
.footer .menu li {
	margin-right:30px;
}
.footer .menu li:last-child {
	margin-right:0;
}
.footer .copy {
	font-size:0.5rem;
}

/**-----------------------------------------------
index
-----------------------------------------------**/
/* MV */
.topmv .section {
	position:relative;
}
.topmv .grab {
	margin:80px auto 50px;
}
.topmv .grab .title {
	font-size:1.8rem;
	font-family:'Cormorant Garamond','Noto Serif JP', serif;
	letter-spacing:0.2em;
	margin-bottom:10px;
}
.topmv .grab p {
	font-size:0.7rem;
}
.topmv .catch {
	display:flex;
	justify-content: center;
	align-items: center;
	position:absolute;
	right:0;
	top:-350px;
	width:550px;
	height:550px;
	color:#FFF;
	font-family:'Cormorant Garamond','Noto Serif JP', serif;
	background: #84d2f3; /* Old browsers */
	background: -moz-linear-gradient(-45deg,  #84d2f3 0%, #8fbbcc 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(-45deg,  #84d2f3 0%,#8fbbcc 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(135deg,  #84d2f3 0%,#8fbbcc 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#84d2f3', endColorstr='#8fbbcc',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
	border-radius:100%;
	box-shadow:15px 15px 40px 0px rgb(0,0,0,0.2);
}
.topmv .catch .block {
	max-width:370px;
}
.topmv .catch .title {
	font-size:3rem;
	line-height:1.4;
	margin-bottom:10px;
}
.topmv .catch p {
	margin-bottom:20px;
}
.topmv figure {
	max-height:500px;
	text-align:center;
	overflow:hidden;
}
.topmv figure img {
	max-width:100%;
	height:auto;
}

/* 何かコンテンツ */
.nanika {
	padding:150px 0 80px;
}

/* 強み */
.strength {
	padding:100px 0 150px;
	background-color:#F0F0F0;
}
.strength .title {
	text-align:center;
	font-family:'Cormorant Garamond','Noto Serif JP', serif;
	margin-bottom:50px;
}
.strength .title strong {
	display:block;
	color:#84D2F3;
	font-size:2.9rem;
}
.strength .title span {
	font-size:0.7rem;
}
.strength ul {
	display:flex;
	justify-content:space-between;
}
.strength li {
	width:360px;
	box-shadow:15px 15px 40px 0px rgb(0,0,0,0.1);
	background-color:#FFF;
}
.strength li > div {
	padding:30px;
}
.strength li > div strong {
	display:block;
	text-align:center;
	font-size:1.2rem;
	font-family:'Cormorant Garamond','Noto Serif JP', serif;
	margin-bottom:10px;
}
.strength li > div p {
	font-size:0.9rem;
}

/* 新着情報 */
.news {
	color:#FFF;
	padding:100px 0 150px;
	background: #84d2f3; /* Old browsers */
	background: -moz-linear-gradient(-45deg,  #84d2f3 0%, #8fbbcc 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(-45deg,  #84d2f3 0%,#8fbbcc 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(135deg,  #84d2f3 0%,#8fbbcc 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#84d2f3', endColorstr='#8fbbcc',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}
.news .title {
	text-align:center;
	font-family:'Cormorant Garamond','Noto Serif JP', serif;
	margin-bottom:20px;
}
.news .title strong {
	display:block;
	font-size:2rem;
}
.news .title span {
	font-size:0.7rem;
}
.news_list {
	margin-bottom:50px;
	border-top:1px solid #FFF;
}
.news_list li.none {
	padding:30px;
	text-align:center;
	border-bottom:1px solid #FFF;
}
.news_list li a {
	display:flex;
	color:#FFF;
	text-decoration:none;
	padding:30px;
	border-bottom:1px solid #FFF;
}
.news_list li time {
	margin-right:50px;
}
.news .btn {
	text-align:center;
}
.news .btn a {
	color:#FFF;
	width:400px;
	padding:20px 0;
	margin:0 auto;
	border:2px solid #FFF;
	box-shadow:10px 10px 30px 0px rgb(0,0,0,0.1);
}
.news .btn a:hover {
	color:#84D2F3;
}
.news .btn a:before {
	background:#FFF;
}


/**-----------------------------------------------
会社概要
-----------------------------------------------**/
/* 会社概要 */
.company_detail {
	padding:80px 0;
	background-color:#F0F0F0;
}
.company_detail dl {
	display:flex;
	align-items:center;
	border-bottom:1px solid #CCC;
}
.company_detail dt {
	flex:1;
	padding:20px;
	margin-right:20px;
	font-family:'Cormorant Garamond','Noto Serif JP', serif;
}
.company_detail dd {
	flex:6;
	padding:20px;
}


/**-----------------------------------------------
業務内容
-----------------------------------------------**/
.service_list {
	padding:80px 0;
	background: #84d2f3; /* Old browsers */
	background: -moz-linear-gradient(-45deg,  #84d2f3 0%, #8fbbcc 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(-45deg,  #84d2f3 0%,#8fbbcc 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(135deg,  #84d2f3 0%,#8fbbcc 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#84d2f3', endColorstr='#8fbbcc',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}
.service_list .detail {
	display:flex;
	padding:30px;
	margin-bottom:30px;
	background-color:#FFF;
	border-radius:10px;
	box-shadow:5px 5px 10px 0px rgb(0,0,0,0.1);
}
.service_list .detail:last-child {
	margin-bottom:0;
}
.service_list .detail figure {
	margin-right:30px;
}
.service_list .detail .title {
	display:block;
	margin-bottom:10px;
	font-size:1.4rem;
	font-family:'Cormorant Garamond','Noto Serif JP', serif;
}
.service_list .detail .list {
	margin-bottom:20px;
}
.service_list .detail .list .sub_title {
	display:flex;
	font-family:'Cormorant Garamond','Noto Serif JP', serif;
}
.service_list .detail .list .sub_title:before {
	content:"◆";
	color:#84d2f3;
	margin-right:5px;
}
.service_list .detail .list p {
	font-size:0.85rem;
	margin:0 0 10px 1em;
}
.service_list .detail .center {
	padding:15px;
	background-color:#EFEFEF;
}


/**-----------------------------------------------
お問い合わせ
-----------------------------------------------**/
.form_style {
	max-width:700px;
	margin:0 auto;
}
.form_style input[type="text"],
.form_style input[type="email"],
.form_style input[type="tel"],
.form_style textarea {
	width:calc(100% - 24px);
	padding:10px;
	font-size: 0.9rem;
}
.form_style dl {
	padding:20px 0;
}
.form_style dt {
	font-size:1.2rem;
}
.form_style .center {
	font-size:0.9rem;
	margin-bottom:30px;
}
.form_style .form_btn {
	display:flex;
	justify-content:center;
	position:relative;
	padding-bottom:20px;
}
.form_style .form_btn input {
	display:inline-block;
	position: relative;
	z-index: 2;
	width:300px;
	padding:18px 0;
	font-size:1rem;
	text-align:center;
	text-decoration:none;
	border:2px solid #84d2f3;
	overflow:hidden;
	color:#FFF;
	cursor:pointer;
	background: #84d2f3; /* Old browsers */
	background: -moz-linear-gradient(-45deg,  #84d2f3 0%, #8fbbcc 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(-45deg,  #84d2f3 0%,#8fbbcc 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(135deg,  #84d2f3 0%,#8fbbcc 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#84d2f3', endColorstr='#8fbbcc',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}
.form_style .form_btn input:disabled {
	cursor: auto;
	background:#DDD;
	border-color:#DDD;
}
.form_style .form_btn input.wpcf7c-btn-back {
	margin-right:20px;
}
.form_style span.wpcf7-not-valid-tip {
	font-size:0.8rem;
	padding:5px;
	margin-top:5px;
	background-color:#fff0f0;
}
.wpcf7 .form_style .ajax-loader {
	position: absolute;
	bottom:-10px;
	left: 0;
	right: 0;
	margin: 0 auto;
}

/**-----------------------------------------------
新着情報
-----------------------------------------------**/
.cat_news {
	margin-top:30px;
}
.cat_news .news_list {
	border-color:#222;
}
.cat_news .news_list li a {
	color:#222;
	border-color:#222;
}
.pagination ul {
	display:flex;
	justify-content: center;
}
.pagination li {
	font-size:0.8rem;
	margin-right:10px;
}
.pagination li a,
.pagination li span {
	display:block;
	padding:5px 10px;
	text-decoration:none;
}
.pagination li span {
	color:#FFF;
	border:1px solid #84d2f3;
	background-color:#84d2f3;
}
.pagination li a {
	border:1px solid #CCC;
}

/**-----------------------------------------------
汎用固定ページ
-----------------------------------------------**/
.editarea h1 {
	font-size:1.5rem;
}
.editarea h2 {
	display:inline-block;
	font-size:1.2rem;
	margin:50px 0 10px;
	background: linear-gradient(transparent 70%, #def2fb 70%);
}
.editarea ul,
.editarea ol {
	margin-left:2em;
}
.editarea ul li {
	list-style:disc;
}
.editarea ol li {
	list-style:decimal;
}
.text_supplement {
	padding:20px;
	background-color:#EFEFEF;
	margin-bottom:30px;
	border:1px solid #CCC;
}
