@charset "UTF-8";

/*******************
 グローバル
********************/
body {
    width: 100%;
	margin: 0 auto;
	max-width: 1280px;
    font-family: "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    color: #444444;
	font-size: 16px;
}

/*******************
 共通パーツ
********************/
h1 {
	padding-left: 50px;
	margin-bottom: 50px;
	font-size: 32px;
    letter-spacing: 0.2em;
    line-height: 1;
    font-weight: bold;
    color: #0066CC;
}
h2 {
	font-size: 26px;
    letter-spacing: 0.2em;
    line-height: 1;
    font-weight: bold;
    color: #666666;
}
h3 {
	font-size: 20px;
    letter-spacing: 0.2em;
    line-height: 1;
    font-weight: bold;
    color: #666666;
}
p {
	padding-top: 25px;
    font-size: 14px;
    letter-spacing: 0.2em;
    line-height: 1.8;
}
.link-more {
	display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #0066CC;
	border-radius: 10px;
    width: 300px;
    height: 50px;
    font-size: 14px;
	/* font-weight: bold; */
    letter-spacing: 0.2em;
    line-height: 1;
    text-decoration: none;
    color: #0066CC;
}
.link-bottun {
	display: flex;
    justify-content: center;
}
@media all and (max-width: 767px) {
	body {
		width: 100%;
	}
    h1 {
		padding-left: 0;
        margin-bottom: 20px;
        text-align: center;
		font-size: 19px;
    }
	h2 {
		font-size: 16px;
	}
	h3 {
		font-size: 16px;
	}
	p {
		padding-top: 10px;
		font-size: 10px;
		letter-spacing: 0.1em;
		line-height: 1.5;
	}
    .link-more {
        border-radius: 5px;
		width: 250px;
        height: 34px;
        font-size: 11px;
    }
}

/*******************
 ヘッダー
********************/
header {
	width: 100%;
    background: #e6ecf1;
}
.header_wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-sizing: border-box;
	margin: 0 auto;
	padding-right: 50px;
	padding-left: 50px;
	max-width: 1280px;
	height: 80px;
}
.header_logo {
	width: 220px;
}
.header_logo img {
	width: 100%;
}
.header_nav {
	display: flex;
	justify-content: end;
}
.header_nav-item {
	margin-left: 35px;
}
.header_nav-item a {
	font-size: 14px;
    letter-spacing: 0.2em;/*文字間　標準より少し広め*/
    color: #0066CC;
    text-decoration: none;
    font-weight: bold;
}
.hamburger-menu {
	display: none;
}

@media all and (max-width: 767px) {
	header {
		position: fixed;/*ブラウザ上部にヘッダーを固定する*/
        left: 0;
        top: 0;
        width: 100%;
        z-index: 100;/*常に一番上に来るようにする*/
	}
	.header_wrap {
		padding-right: 23px;
        padding-left: 10px;
        height: 50px;
	}
	.header_logo {
		width: 150px;
	}
	.header_nav {
		display: none;
	}
	/* ハンバーガーメニューの設定 */
	/* ボタン実装 */
	.hamburger-menu {
		display: inline-block;
	}
	.menu-btn {
		position: absolute;
		top: 0px;
		right: 10px;
		display: flex;
		height: 50px;
		width: 50px;
		justify-content: center;
		align-items: center;
		z-index: 90;
		background-color: #e6ecf1;
	}
	.menu-btn span,
	.menu-btn span:before,
	.menu-btn span:after {
		content: '';
		display: block;
		height: 3px;
		width: 25px;
		border-radius: 3px;
		background-color: #0066CC;
		position: absolute;
	}
	.menu-btn span:before {
		bottom: 8px;
	}
	.menu-btn span:after {
		top: 8px;
	}
	/* ボタンが押されたときの動き */
	#menu-btn-check:checked ~ .menu-btn span {
		background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
	}
	#menu-btn-check:checked ~ .menu-btn span::before {
		bottom: 0;
		transform: rotate(45deg);
	}
	#menu-btn-check:checked ~ .menu-btn span::after {
		top: 0;
		transform: rotate(-45deg);
	}
	/* 確認用チェックボックス非表示 */
	#menu-btn-check {
		display: none;
	}
	/* メニュー部分 */
	.menu-content {
		width: 100%;
		height: 100%;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 80;
		background-color: #e6ecf1;
	}
	.menu-content ul {
		padding: 70px 10px 0;
	}
	.menu-content ul li {
		border-bottom: solid 1px #0066CC;
		list-style: none;
	}
	.menu-content ul li a {
		display: block;
		width: 100%;
		font-size: 15px;
		box-sizing: border-box;
		color:#0066CC;
		text-decoration: none;
		padding: 9px 15px 10px 0;
		position: relative;
	}
	.menu-content ul li a::before {
		content: "";
		width: 7px;
		height: 7px;
		border-top: solid 2px #0066CC;
		border-right: solid 2px #0066CC;
		transform: rotate(45deg);
		position: absolute;
		right: 11px;
		top: 16px;
	}
	/* メニューを画面の外にとばす */
	.menu-content {
		width: 100%;
		height: 100%;
		position: fixed;
		top: 0;
		left: 100%;/*leftの値を変更してメニューを画面外へ*/
		z-index: 80;
		background-color: #e6ecf1;
		transition: all 0.5s;/*アニメーション設定*/
	}
	/* チェックボックスにチェックがついたときにメニューを表示 */
	#menu-btn-check:checked ~ .menu-content {
		left: 0;/*メニューを画面内へ*/
	}
}
/*******************
 キービジュアル
********************/
.mv {
	width: 100%;
	height: 760px;
	background-image: url(../img/kv_pc.jpg);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}
.mv_wrap {
	position: relative;
	margin: 0 auto;
	max-width: 1280px;
}
.mv_texts {
	position: absolute;
	top: 115px;
    left: 77px;
    color: #0066CC;
}
.mv_texts-title {
	font-size: 28px;
	letter-spacing: 0.2em;
	line-height: 1;
	color: #0066CC;
}
.mv_texts-p {
	padding-top: 30px;
	padding-left: 5px;
	font-size: 16px;
	letter-spacing: 0.2em;
	line-height: 2.25;
}
@media all and (max-width: 767px) {
	.mv {
		width: 100%;
		height: 525px;
		background-image: url(../img/kv_sp.jpg);
	}
	.mv_texts {
		position: absolute;
		top: 90px;
		left: 27px;
		color: #0066CC;
	}
	.mv_texts-title {
		font-size: 20px;
	}
	.mv_texts-p {
		padding-top: 20px;
		padding-left: 3px;
		font-size: 11px;
		line-height: 2;
	}
}
/*******************
 アバウト
********************/
.about {
	margin: 0 auto;
	padding-top: 75px;
	max-width: 1200px;
}
#id_about {
	border-bottom: 1px solid #0066CC;
}
.about_body-item {
	display: flex;
	align-items: center;
}
.about_body-item-img {
	width: 46%;
}
.about_body-item-img img {
	width: 100%;
}
.about_body-item-text {
	box-sizing: border-box;
	padding-right: 7.8%;
	padding-left: 7.8%;
	width: 54%;
}
@media all and (max-width: 767px) {
	.about {
		margin-left: 7%;
		margin-right: 7%;
		padding-top: 30px;
	}
	.about_body-item {
		flex-direction: row;
		margin-bottom: 20px;
	}
	.about_body-item.reverse {
		flex-direction: row-reverse;
	}
	.about_body-item-img {
		width: 70px;
	}
	.about_body-item-text {
		width: 100%;
		padding-right: 0%;
	}
}
/*******************
 プロダクツ
********************/
.products {
	margin: 0 auto;
	padding-top: 75px;
	max-width: 1280px;
}
#id_products {
	border-bottom: 1px solid #0066CC;
}
.products-body {
	display: flex;
	justify-content: center;
}
.products-body-item {
	margin-left: 25px;
}
.products-body-item-img {
	width: 100%;
}
.products-body-item-img img {
	width: 100%;
	border: 1px solid #666666;
	/* imgにぴったり沿った外枠の線をつける */
}
.products-body-item:last-child {
	margin-right: 25px;
}
.products-body-item-texts {
	/* box-sizing: border-box; */
	padding-top: 25px;
    padding-right: 5%;
    padding-bottom: 50px;
    padding-left: 5%;
	text-align: center;
}
.products-body-item-texts p {
	padding-top: 10px;
}
@media all and (max-width: 767px) {
	.products {
		margin-left: 7%;
		margin-right: 7%;
		padding-top: 30px;
	}
	.products-body {
		flex-wrap: wrap;
		justify-content: center;
	}
	.products-body-item {
		margin: 0;
	}
	.products-body-item:last-child {
		margin-right: 0;
	}
}
/*******************
 コンタクト
********************/
.contact {
	margin-top: 75px;
}
.contact_img {
	width: 100%;
    height: 150px;
    background-image: url(../img/footer.jpg);/*レスポンシブサイトの場合は画像をbackground指定すると楽ちん*/
	background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
/* .contact_img-touka {
	/* 透過させる為に置くフィルター背景　好みの色にできる */
	/* height: 100%;
    background: rgba(255, 255, 255, 0.5);
}*/
.contact_nav {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 150px;
	/* 親要素と同じサイズを指定して中央揃えにする */
}

/* ボタン（headタグにプラグイン読み込む） */
/* ボタン全体 */
.contact_nav {
	padding:0 !important;
	list-style-type:none!important;
	/* リスト表示の点を消す */
}
li:before {
	width:0!important;/* リスト表示の点を消す */
	}
.flowbtn9{
	font-size:40px;
	text-decoration:none;
	transition:.5s;
}
/* お問い合わせメール */
.flowbtn9 .fa-envelope-square{
	padding: 5px;
	color:#0066CC;
	font-size: 4rem;
	/* 色、大きさ、サイズ指定 */
}
/* LINE@ */
.flowbtn9 .fa-line{
	margin-left: 50px;
	padding: 5px;
	color:#00c300;
	font-size: 4rem;
}
/* Instagram */
.flowbtn9 .fa-instagram{
	margin-left: 50px;
	padding: 5px;
	color:#c6529a;
	font-size: 4rem;
}
/* ulタグの内側余白を０にする */
ul.snsbtniti{
	padding:0!important;
}
/* アイコン全体の位置 */
.snsbtniti{
display:flex;
flex-flow:row wrap;
justify-content:space-between;
}
/* アイコン同士の余白 */
.snsbtniti li{
flex:0 0 33%;
text-align:center!important;
}
/* アイコンにマウスを乗せた時 */
.flowbtn9:hover{
-webkit-transform: translateY(-5px);
-ms-transform: translateY(-5px);
transform: translateY(-5px);
}
@media all and (max-width: 767px) {
	.contact {
		margin-top: 50px;
	}
	.contact_img {
		height: 100px;
		background-image: url(../img/footer_sp.jpg);
	}
	.contact_nav {
		height: 100px;
	}
	.flowbtn9 .fa-envelope-square{
		padding: 2px;
		font-size: 3rem;
		/* 色、大きさ、サイズ指定 */
	}
	/* LINE@ */
	.flowbtn9 .fa-line{
		margin-left: 25px;
		padding: 2px;
		font-size: 3rem;
	}
	/* Instagram */
	.flowbtn9 .fa-instagram{
		margin-left: 25px;
		padding: 2px;
		font-size: 3rem;
	}
}

/*******************
 フッター
********************/
.footer_wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-sizing: border-box;
	margin: 0 auto;
	padding-left: 50;
	height: 77px;
}
.footer_nav {
	display: flex;
}
.footer_nav-item {
	padding-right: 50px;
}
.footer_nav-item a {
	font-size: 14px;
    letter-spacing: 0.2em;
    line-height: 1;
    text-decoration: none;
    color: #444444;
}
.footer_cr {
	font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 1;
}
@media all and (max-width: 767px) {
	.footer_wrap {
		flex-direction: column;
		justify-content: center;
		height: 68px;
	}
	.footer_nav-item {
		padding-right: 8px;
	}
	.footer_nav-item:last-child {
		padding-right: 0;
	}
	.footer_nav-item a {
		font-size: 10px;
	}
	.footer_cr {
		padding-top: 12px;
		font-size: 10px;
	}
}

/*******************
 サブ　プロダクツ　ナビゲーション
********************/
.products_nav {
	margin-top: 75px;
	width: 100%;
	display: flex;
	justify-content: space-between;
}
.products_nav-title {
	align-items: center;
	padding-left: 50px;
	font-size: 32px;
    letter-spacing: 0.2em;
    line-height: 1;
    font-weight: bold;
    color: #0066CC;
}
.products_nav_item {
	display: flex;
	justify-content: center;
	align-items: center;
}
.products_nav_item_link {
	margin-right: 25px;

}
.products_nav_item_link a{
	display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #0066CC;
	border-radius: 10px;
    width: 125px;
    height: 25px;
    font-size: 14px;
	/* font-weight: bold; */
    letter-spacing: 0.2em;
    line-height: 1;
    text-decoration: none;
    color: #0066CC;
}

@media all and (max-width: 767px){
	.products_nav {
		flex-direction: column;
		justify-content: center;
	}
	.products_nav-title {
		display: flex;
		justify-content: center;
		padding: 0;
		font-size: 19px;
	}
	.products_nav_item_link {
		margin: 0 auto;
		padding-top: 25px;
	}
	.products_nav_item_link a{
		border-radius: 5px;
		width: 100px;
		height: 16px;
		font-size: 12px;
	}
}
/*******************
 サブ　プロダクツ　コンテンツ
********************/
.products_contents {
    margin: 0 auto;
    /* autoは自動的に適切なマージンをブラウザが選択する。中央揃えしたいときにも使用される */
    padding-top: 78px;
    max-width: 1280px;
}
.products_contents h2 {
	/* width: 100%; */
	margin: 0 auto;
	padding-left: 50px;
	border-bottom: 1px solid #666666;
}
.products_contents-body ,reverse{
    display: flex;
    align-items: center;
	padding-top: 50px;
}

.products_contents-body-img {
	width: 46%;
}
.products_contents-body-img img {
	width: 100%;
	border: 1px solid #666666;
}
.products_contents-body-text {
	box-sizing: border-box;
    /* 親要素(about__body-item)のパディングの内側にボックスを配置させる */
    padding-right: 7.8%;
    padding-left: 7.8%;
    width: 54%;
}
.link-bottun ,contents {
	padding-top: 50px;
}
@media all and (max-width: 767px) {
	.products_contents {
		padding-top: 50px;
	}
	.products_contents h2 {
		margin: 0 7% 0 7%;
		padding: 0 ;
		text-align: center;
	}
	.products_contents-body {
		flex-direction: column;
	}
	.reverse {
		flex-direction: column-reverse;
	}
	.products_contents-body-img {
		width: 80%;
	}
	.products_contents-body-text {
		padding-top: 25px;
        width: 90%;
	}
	.link-bottun ,contents {
		padding-top: 25px;
	}
}

/*******************
 サブ　プライバシーポリシー
********************/
.policy-sec {
	margin-top: 75px;
	margin-left: 50px;
	margin-right: 50px;
}
.policy-title {
	color: #0066CC;
}
.policy-text,li,ol {
	padding-top: 5px;
    font-size: 16px;
    letter-spacing: 0.1em;
    line-height: 1;
}
.policy-sec-end {
	display: flex;
	justify-content: flex-end;
	margin-right: 50px;
}
@media all and (max-width: 767px) {
	.policy-sec {
		margin-top: 25px;
		margin-left: 5px;
		margin-right: 5px;
	}
	.policy-title {
		padding-top: 50px;
		color: #0066CC;
	}
	.policy-text,li,ol {
		padding-top: 5px;
		font-size: 14px;
		letter-spacing: 0.1em;
		line-height: 1;
	}
}

/*******************
 サブ　コンタクト
********************/
.sub-contact-title {
	display: flex;
	padding-top: 75px;
}
.sub-contact-title h3 {
	padding-top: 10px;
	padding-left: 10px;
	font-weight: lighter;
	color: #0066CC;
}
@media all and (max-width: 767px) {
	.sub-contact-title {
		flex-direction: column;
		align-items: center;
	}
	.sub-contact-title h3 {
		padding: 0 0 20px 0;
	}
}