﻿@charset "UTF-8";

/* index.css */
/* トップページに適用 */

/* --------------------------------------------- */
/* ▼モバイルファースト (全環境に共通のデザイン) */
/* --------------------------------------------- */

/* 中央に配置 */
.index_block{
	max-width:100%;
	margin-left:auto;	/* 左側マージンを自動的に空ける */
	margin-right:auto;	/* 右側マージンを自動的に空ける */
}

/* 見出し 日本語 */
.japanese_h2{
	margin:0;
	padding:0;
	font-size:15px;
	padding-top:15px;
	position:relative;	/* 中の要素の基準値 */
	padding-left:5px;
	padding-right:5px;
	line-height:0.5;
	color:snow;
}

/* 見出し 英語 */
.english_h2{
	margin:0;
	padding:0;
	font-size:28px;
	margin-top:10px;
	position:relative;
	padding-left:10px;
	padding-right:5px;
	letter-spacing:0.08em;	/* テキストの文字間隔 */
	line-height:1.2;
	margin-bottom:15px;
	color:snow;
}

/* 見出し 英語 */
.main_slogan{
	margin:0;
	padding:0;
	font-style:oblique;
	font-size:25px;
	text-align:center;
	margin-top:40px;
	position:relative;
	margin-bottom:40px;
	font-style:italic;
	
	/* 縁取り */
	color:#ffffff;		/* 文字の色 */
	font-size:28px;		/* 文字のサイズ */
	letter-spacing:2px;	/* 文字間 */
	text-shadow:
	1px 1px 1px #000000,
	-1px 1px 1px #000000,
	1px -1px 1px #000000,
	-1px -1px 1px #000000,
	1px 0px 1px #000000,
	0px 2px 1px #000000,
	-1px 0px 1px #000000,
	0px -1px 1px #000000;	/* 文字の影 */
}

/* 見出し */
h3{
	font-weight:normal;
	font-size:14px;
	margin:0px;
	padding:0px;
	padding-left:5px;
	padding-right:5px;
	margin-top:15px;
	font-style:italic;
	line-height:1;
}

/* 見出し */
h4{
	font-size:35px;
	font-style:italic;
	margin:0px;
	padding:0px;
	text-shadow:0 2px 2px #666;
	padding-left:10px;
	padding-right:5px;
	margin-bottom:5px;
	line-height:1.1;
	white-space:nowrap;
	z-index:10;
	position:relative;
}

/* h4見出し 先頭の文字のみ緑 */
h4:first-letter{
	color:#5BB431;
}

/* 背景色の後にテキストが表示されるエフェクト Start */
div.colorbox{
	position:relative;
	/* CSSでブロック要素の幅をコンテンツのサイズぴったりにしたい時のこれからの記述方法 */
	width:-moz-fit-content;		/* Firefox */
	width:fit-content;		/* other browsers */
	padding-left:5px;
	padding-right:5px;
	margin-bottom:2px;
	z-index:1;
}

div.colorbox div.color{
	position:absolute;
	bottom:-2px;
	left:0;
	width:100%;
	height:10%;
	z-index:1;
	background-color:#FFFF01;
	display:inline-block;
}

/* 背景色の後にテキストが表示されるエフェクト End */

/* 背景色（イントロダクション） */
.intro_grayback{
	padding-top:2px;
}

/* お知らせ・新着情報 背景 */
.notice_whatnew_block{
	background-color:#f1f1f1;
	padding-top:20px;
	padding-bottom:20px;
}

/* 背景色（灰）*/
.grayback{
	background-color:#f1f1f1;
	padding-top:20px;
	padding-bottom:20px;
}

/* 背景色（白）*/
.whiteback{
	padding-top:20px;
	padding-bottom:20px;
}

/* 背景色（緑）*/
.greenback{
	background-color:#5BB431;
	padding-top:20px;
	padding-bottom:20px;
}

/* 背景色（青）*/
.blueback{
	background-color:#3D9BE9;
	padding-top:20px;
	padding-bottom:20px;
}


/* 背景色・オリジナルPC（濃灰）*/
.darkgrayback{
	background-color:#242424;
	padding-top:20px;
	padding-bottom:20px;
}

/* 詳しくはこちら センタリング */
.detail{
	text-align:center;
	margin-top:30px;
	margin-bottom:12px;
	white-space:nowrap;
}

/* リンクボタン アニメーションver Start */
/* Spetial Thanks https://jajaaan.co.jp/css/button/ */
*,
*:before,
*:after {
	-webkit-box-sizing: inherit;
	box-sizing: inherit;
}

html{
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-size:50%;
}

.btn,
a.btn,
button.btn{
	font-size:1.6rem;
	font-weight:700;
	line-height:1.5;
	position:relative;
	display:inline-block;
	padding:1rem 4rem;
	cursor:pointer;
	-webkit-user-select:none;
	-moz-user-select:none;
	-ms-user-select:none;
	user-select:none;
	-webkit-transition: all 0.3s;
	transition:all 0.3s;
	text-align:center;
	vertical-align:middle;
	text-decoration:none;
	letter-spacing:0.1em;
	color:#BADA55;
	border-radius:0.5rem;
}

a.btn-flat{
	overflow:hidden;
	padding:1.0rem 8rem;
	color:#fff;
	border-radius:0;
	background:#f16101;
	border-radius:10px;
}

a.btn-flat span{
	position:relative;
}

a.btn-flat:before{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	content:'';
	-webkit-transition:all .5s ease-in-out;
	transition:all .5s ease-in-out;
	-webkit-transform:translateX(-96%);
	transform:translateX(-96%);
	background:#ff7f00;
}

a.btn-flat:hover:before{
	-webkit-transform:translateX(0%);
	transform:translateX(0%);
}
/* リンクボタン アニメーションver End */

/* 文字色 緑 */
.green{
	color:#5BB431;
	font-weight:bold;
}

/* 文字色 赤 */
.red{
	color:red;
}

/* 区切り線（緑） */
.hr_g{
	display:block;
	margin:5px;
	height:3px;
	background-color:#5BB431;
	border:0;
	margin-top:10px;
	margin-bottom:10px;
}

/* 区切り線（青） */
.hr_b{
	display:block;
	margin:5px;
	height:3px;
	background-color:#5BB431;
	border:0;
}


/* イントロダクション */
.introduction{
	/* background:#000000 url(../images/index/background-introduction.webp) no-repeat center center; */
	background:#5BB431;
	background-size:cover;
	text-shadow:0 2px 2px #000000;
	padding:5px;
	margin:0px;
	padding-bottom:10px;
	position:relative;	/*中の要素の基準値*/
	color:F;
	animation: image_anime 60s ease-in  0s infinite; /* 5秒のアニメーションを繰り返す */
}


/* イントロダクション 背景 半透明の黒 */
.introduction:before {
	content: '';
	position: absolute;
	top:0;
	right:0;
	left:0;
	bottom:0;
/*	background-color:rgba(0,0,0,0.5);	 半透明のフィルターをかける */
}

/* イントロダクション ブロック*/
.introduction_block{
	max-width:1280px;
	margin-left:auto;	/* 左側マージンを自動的に空ける */
	margin-right:auto;	/* 右側マージンを自動的に空ける */
	text-align:left;	/* 中身を左側表示に戻す */
	height:auto;
}

/* イントロダクション イメージ */
.introduction_image{
	max-width:1800px;
	margin-left:auto;	/* 左側マージンを自動的に空ける */
	margin-right:auto;	/* 右側マージンを自動的に空ける */
	text-align:left;	/* 中身を左側表示に戻す */
	height:auto;
}

/* イントロダクション イメージ(スマホ) */
.introduction_sp_img{
	max-width:100%;
	height:auto;
}

/* イントロダクション イメージ */
.introduction_img{
	max-width:100%;
	height:auto;
}

.bannerback{
	background-color:#f1f1f1;
	padding-top:20px;
	padding-bottom:20px;
}

/* 告知バナー */
.info_banner{
	margin:0 auto;
	overflow:hidden;
}

/* 告知バナー イメージ */
.info_banner_img{
	display:block;
	margin-left:auto;
	margin-right:auto;
	max-width:100%;
	height:auto;
	transition:1s all;
}

/* 告知バナー */
.info_banner_img:hover{
	transform:scale(1.01,1.01);
	transition:1s all;
}

/* お知らせ 新着情報 */
.information{
	padding:0;
	margin:0;
}

/* 新着情報 5件表示(横スクロール) */
.whatnew{
	display:flex;
	max-width:100%;
	overflow-y:hidden;
	overflow-x:auto;
	-ms-overflow-style:-ms-autohiding-scrollbar;
	-webkit-overflow-scrolling:touch;
}

/* 新着情報 5件表示(横スクロール) */
.example_scroll{
	display:flex;
	max-width:100%;
	overflow-y:hidden;
	overflow-x:auto;
	-ms-overflow-style:-ms-autohiding-scrollbar;
	-webkit-overflow-scrolling:touch;
}

/* 新着情報 個別表示 */
.whatnew_box{
	padding:5px;
	width:45%;
	flex-shrink:0;
}

.whatnew_date_category p{
	font-weight:bold;
	font-size:10px;
	margin:0;
	padding:0;
	margin-top:5px;
	line-height:1.2;
}

/* 新着情報 アイキャッチ画像 */
.whatnew_thumbnail{
	position:relative;
	width:100%;		/* 上下のpaddingと同じにする */
	height:0;
	padding-top:100%;	/* widthと同じにする */
	overflow:hidden;
}

/* 記事投稿日・カテゴリー */
.whatnew_date_category{
	margin:0;
	padding:0;
	font-size:10px;
	position:absolute;
	top:0px;
	left:5px;
	text-shadow:
		1px  1px 1px #777,
		-1px  1px 1px #777,
		1px -1px 1px #777,
		-1px -1px 1px #777;
}

/* 記事タイトル 配置*/
.whatnew_title{
	position:absolute;
	bottom:5px;
	left:5px;
	padding-right:5px;
	width:100%;
}

/* 記事タイトル */
.whatnew_title h5{
	margin:0;
	padding:0;
	font-size:12px;
	text-shadow:
		1px  1px 1px #777,
		-1px  1px 1px #777,
		1px -1px 1px #777,
		-1px -1px 1px #777;
	width:100%;
	line-height:1.2;
	
	/* 最大3行まで表示 */
	display:-webkit-box;
	-webkit-box-orient:vertical;
	-webkit-line-clamp:3;		/* 制限したい行数が3の場合 */
	overflow:hidden;
}

/* アイキャッチ画像 オンマウスでアニメーション */
.whatnew_box img{
	transition:1s all;
}
.whatnew_box img:hover{
	transform:scale(1.02,1.02);
	transition:0.5s all;
}

/* 画像の縦横比を維持 */
.articleimage{
	width:100%;
	height:100%;
	object-fit:cover;
	position:absolute;
	top:0;
	left:0;
	filter:brightness(70%);
}

.whatnew_thumbnail{
	color:snow;
}

.whatnew_thumbnail a {
	font-weight:bold;
	text-decoration:none;
}

.whatnew_thumbnail a:link {
	color:snow;
}

.whatnew_thumbnail a:visited {
	color:snow;
}

.whatnew_thumbnail a:hover {
	color:snow;
}

.whatnew_thumbnail a:active {
	color:snow;
}

/* 新着記事 New! 表示 Start */
.new-txt{
	display:inline-block;
	font-size: .9em;
	padding-right:5px;
	text-align: center;
	color: #ff0000;
	text-shadow:
		1px 1px 0 #FFF, -1px -1px 0 #FFF,
		-1px 1px 0 #FFF, 1px -1px 0 #FFF,
		0px 1px 0 #FFF,  0-1px 0 #FFF,
		-1px 0 0 #FFF, 1px 0 0 #FFF;
}

/* New! 点滅 */
.new-txt {
	animation: blinking 0.5s ease-in-out infinite alternate;
}
 
@keyframes blinking {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

/* 新着記事 New! 表示 End */

/* 新着情報 続き(MORE) */
.info_more{
	text-align:right;
	padding:15px;
}

/* MORE リンク色 Start */

.info_more a {
	text-decoration:none;
}

.info_more a:link {
	color:#5BB431;
}

.info_more a:visited {
	color:#5BB431;
}

.info_more a:hover {
	color:#FF7F00;
}

.info_more a:active {
	color:#FF7F00;
}

/* MORE リンク色 End */

/* スライドショー (Meta Slider) */
.slider{
	display:block;
	margin-left:auto;
	margin-right:auto;
	max-width:100%;
}

/* メッセージ ブロック */
.message_block{
	background: linear-gradient( 0deg, #f1f1f1 0 50%, #5BB431 50% 100%);
	padding:5px;
}

.message{
	border-radius:5px;
	padding:10px;
	background:#FFFFFF;
	text-shadow:0 0px 0px;
	position:relative;	/*中の要素の基準値*/
}

/* ご挨拶 概要 */
.message_overview{
	padding:10px;
	margin:5px;
}

/* 修理メニュー */
.repair_menu{
	display:flex;
	flex-flow:column;
	align-items:start;
	padding-left:5px;
	padding-right:5px;
	gap:10px 0px;/* 縦、横の余白指定*/
}

/* パソコン修理 */
.pc_repair{
	background-color:#FFFFFF;
	padding:10px;
	border-radius:5px;
}

/* パソコン修理 イメージ */
.pc_repair_img{
	display:block;
	margin-left:auto;
	margin-right:auto;
	max-width:95%;
	height:auto;
}

/* パソコン修理 概要 */
.pc_repair_overview{
	padding:10px;
	margin:5px;
}

/* データ復旧 */
.data_recovery{
	background-color:#FFFFFF;
	padding:10px;
	border-radius:5px;
}

/* データ復旧 イメージ */
.data_recovery_img{
	display:block;
	margin-left:auto;
	margin-right:auto;
	max-width:95%;
	height:auto;
}

/* データ復旧 概要 */
.data_recovery_overview{
	padding:10px;
	margin:5px;
}

/* iPhone修理 */
.iphone_repair{
	background-color:#FFFFFF;
	padding:10px;
	border-radius:5px;
}

/* iPhone修理 イメージ */
.iphone_repair_img{
	display:block;
	margin-left:auto;
	margin-right:auto;
	max-width:95%;
	height:auto;
}

/* iPhone修理 概要 */
.iphone_repair_overview{
	padding:10px;
	margin:5px;
}

/* Nintendo Switch修理 */
.switch_repair{
	background-color:#FFFFFF;
	padding:10px;
	border-radius:5px;
}

/* Nintendo Switch修理 イメージ */
.switch_repair_img{
	display:block;
	margin-left:auto;
	margin-right:auto;
	max-width:95%;
	height:auto;
}

/* Nintendo Switch修理 概要 */
.switch_repair_overview{
	padding:10px;
	margin:5px;
}

/* パソコン修理 */
.used_pc{
	background-color:#FFFFFF;
	padding:10px;
	border-radius:5px;
}

/* 中古パソコン販売 イメージ */
.used_pc_img{
	display:block;
	margin-left:auto;
	margin-right:auto;
	max-width:95%;
	height:auto;
}

/* 中古パソコン販売 概要 */
.used_pc_overview{
	padding:10px;
	margin:5px;
}

/* 買取 */
.purchase{
	background-color:#FFFFFF;
	padding:10px;
	border-radius:5px;
}

/* 買取 イメージ */
.purchase_img{
	display:block;
	margin-left:auto;
	margin-right:auto;
	max-width:95%;
	height:auto;
}

/* 買取 概要 */
.purchase_overview{
	padding:10px;
	margin:5px;
}

/* BTOPC */
.btopc_block{
	margin-left:5px;
	margin-right:5px;
	border-radius:5px;
	background-color:#696969;
}

/* BTOPC 見出し */
.btopc_title{
	padding-top:15px;
	padding-left:10px;
}

/* BTOPC メニュー */
.btopc_menu{
	display:flex;
	flex-flow:column;
	padding-left:5px;
	padding-right:5px;
}

/* BTOPC 見出し */
.btopc_title h3{
	color:snow;
}

/* BTOPC 見出し */
.btopc_title h4{
	color:snow;
}

/* BTOPC */
.btopc{
	color:snow;
	padding-top:5px;
}

/* BTOPC イメージ */
.btopc_img{
	display:block;
	margin-left:auto;
	margin-right:auto;
	max-width:95%;
	height:auto;
}

/* BTOPC 概要 */
.btopc_overview{
	padding:10px;
	margin:5px;
	color:#F0F0F0;
}

/* BTOPC イメージ */
.btopc_case_img{
	display:block;
	margin-left:auto;
	margin-right:auto;
	max-width:95%;
	height:auto;
}

/* BTOPC 概要 */
.btopc_case_overview{
	padding:10px;
	margin:5px;
	color:#F0F0F0;
}

.btopc_link{
	flex-basis:100%;
}

.btopc_case_link{
	flex-basis:100%;
}

/* ガラスコーティング */
.coating_block{
	background-color:#FFFFFF;
	margin-left:5px;
	margin-right:5px;
	border-radius:5px;
	padding-bottom:20px;
}

/* コーティング */
.coating{
	padding-top:5px;
}

/* コーティング タイトル */
.coating_title{
	padding-top:15px;
	padding-left:10px;
}

/* ガラスコーティング メニュー */
.coating_menu{
	display:flex;
	flex-flow:column;
	padding-left:5px;
	padding-right:5px;
}


/* スマホガラスコーティング イメージ スマートフォン */
.coating_img{
	display:block;
	margin-left:auto;
	margin-right:auto;
	max-width:95%;
	height:auto;
}

/* ガラスコーティングロゴ 段組表示 */
.glasslogo{
	display:flex;
	justify-content:space-around;
	flex-direction:row;
	align-items:stretch;
	flex-grow:1;
	margin-top:14px;
	margin-bottom:14px;
}

/* グラシオンロゴ */
.glation{
	display:block;
	margin-left:auto;
	margin-right:auto;
	max-width:100%;
	height:auto;
}

/* スマモロゴ */
.sumamo{
	display:block;
	margin-left:auto;
	margin-right:auto;
	max-width:100%;
	height:auto;
}

/* ガラスコーティング 概要 */
.coating_overview{
	padding:10px;
	margin:5px;
}

/* ガラスコーティング 効果 */
.coating_effect{
	padding:10px;
	margin:5px;
}

.glass_icon figure{
	margin:0;
	padding:0;
}

/* ガラスコーティング アイコン */
.glass_icon img{
	max-width:60px;
	height:auto;
}

/* ガラスコーティング アイコンの説明 */
.glass_icon figcaption{
	font-size:12px;
	/* ジャギー対策 */
	transform: rotate(0.03deg);
	-moz-transform: rotate(0.03deg);
	-ms-transform: rotate(0.03deg);
	-o-transform: rotate(0.03deg);
	-webkit-transform: rotate(0.03deg);
}

/* ガラスコーティング アイコン */
.glass_icon{
	display:flex;
	flex-wrap:wrap;
	align-items:stretch;
	justify-content:space-around;
	flex-grow:1;
	margin-bottom:15px;
}

/* ガラスコーティング 効果1 */
.glass1{
	display:inline-block;
	text-align:center;
}

/* ガラスコーティング 効果2 */
.glass2{
	display:inline-block;
	text-align:center;
}

/* ガラスコーティング 効果3 */
.glass3{
	display:inline-block;
	text-align:center;
}

/* ガラスコーティング 効果4 */
.glass4{
	display:inline-block;
	text-align:center;
}

/* ガラスコーティング 効果5 */
.glass5{
	display:inline-block;
	text-align:center;
}

/* Youtubeの埋め込み レスポンシブ対応 */
iframe[src*="youtube.com"]{
	width:100%;
	height:auto;
	aspect-ratio:16/9;			/* アスペクト比 */
}


/* エキテン 富山店 */
.ekiten_toyama{
	background-color: #F4F4F4;
	padding:30px;
	margin:5px;
	height:300px;
	overflow-y:scroll;
}

/* エキテン 高岡店 */
.ekiten_takaoka{
	background-color:#F4F4F4;
	padding:30px;
	margin:5px;
	height:300px;
	overflow-y: scroll;
}

/* エキテン 高岡店 */
.ekiten_fukuno{
	background-color:#F4F4F4;
	padding:30px;
	margin:5px;
	height:300px;
	overflow-y: scroll;
}

/* イントロダクション イメージ */
.introduction_img{
	display:none !important;
}
.introduction_sp_img{
	display:block !important;
}


/* Meta Slider */
.banner_sp{
	display:block !important;
}
.banner_pc{
	display:none !important;
}

/* for mobile design END */

/* ------------------------------------ */
/* ▼タブレット用デザインとして付け足すデザイン */
/* ------------------------------------ */
@media print, screen and (min-width: 600px) {

/* アニメーション リンクボタン */
html{
	font-size:62%;
}

/* [パソコン修理 TOP]へジャンプボタン Start
-------------------------------------------------- */
#jump_pc_repair{
	width:60px;
	height:60px;
	position:fixed;
	right:5px;
	bottom:270px;
	z-index:10;
	opacity:0.8;
}

#jump_pc_repair a{
	position:relative;
	display:block;
	width:60px;
	height:60px;
	text-decoration:none;
	z-index:10;
	background-color:#006400;
	border-radius:10px;
}

#jump_pc_repair a::before{
	font-family:"Font Awesome 7 Free";
	font-weight:900;
	content:'\f109';
	font-size:15px;
	color:#F4F4F4;
	position:absolute;
	width:25px;
	height:25px;
	top:8px;
	right:0;
	left:0;
	margin:auto;
	text-align:center;
	z-index:10;
}

#jump_pc_repair a::after{
	content:'パソコン\A修理';
	white-space:pre;
	font-size:8px;
	font-weight:bold;
	color:#fff;
	position:absolute;
	top:25px;
	bottom:0;
	right:0;
	left:0;
	margin:auto;
	text-align:center;
	color:#F4F4F4;
	z-index:10;
}
/* --------------------------------------------------
[パソコン修理 TOP]へジャンプボタン End */

/* [iPhone修理 TOP]へジャンプボタン Start
-------------------------------------------------- */
#jump_iphone_repair{
	width:60px;
	height:60px;
	position:fixed;
	right:5px;
	bottom:205px;
	z-index:10;
	opacity:0.8;
}

#jump_iphone_repair a{
	position:relative;
	display:block;
	width:60px;
	height:60px;
	text-decoration:none;
	z-index:10;
	background-color:#006400;
	border-radius:10px;
}

#jump_iphone_repair a::before{
	font-family:"Font Awesome 7 Free";
	font-weight:900;
	content:'\f3cd';
	font-size:15px;
	color:#F4F4F4;
	position:absolute;
	width:25px;
	height:25px;
	top:8px;
	right:0;
	left:0;
	margin:auto;
	text-align:center;
	z-index:10;
}

#jump_iphone_repair a::after{
	content:'iPhone\A修理';
	white-space:pre;
	font-size:8px;
	font-weight:bold;
	color:#fff;
	position:absolute;
	top:25px;
	bottom:0;
	right:0;
	left:0;
	margin:auto;
	text-align:center;
	color:#F4F4F4;
	z-index:10;
}
/* -------------------------------------------------- 
[iPhone修理 TOP]へジャンプボタン End */

/* [Switch修理 TOP]へジャンプボタン Start
-------------------------------------------------- */
#jump_switch_repair{
	width:60px;
	height:60px;
	position:fixed;
	right:5px;
	bottom:140px;
	z-index:10;
	opacity:0.8;
}

#jump_switch_repair a{
	position:relative;
	display:block;
	width:60px;
	height:60px;
	text-decoration:none;
	z-index:10;
	background-color:#FF0000;
	border-radius:10px;
}

#jump_switch_repair a::before{
	font-family:"Font Awesome 7 Free";
	font-weight:900;
	content:'\f11b';
	font-size:15px;
	color:#F4F4F4;
	position:absolute;
	width:25px;
	height:25px;
	top:8px;
	right:0;
	left:0;
	margin:auto;
	text-align:center;
	z-index:10;
}

#jump_switch_repair a::after{
	content:'Switch\A修理';
	white-space:pre;
	font-size:8px;
	font-weight:bold;
	color:#fff;
	position:absolute;
	top:25px;
	bottom:0;
	right:0;
	left:0;
	margin:auto;
	text-align:center;
	color:#F4F4F4;
	z-index:10;
}
/* -------------------------------------------------- 
[Switch修理 TOP]へジャンプボタン End */

/* [コーティング TOP]へジャンプボタン Start
-------------------------------------------------- */
#jump_coating{
	width:60px;
	height:60px;
	position:fixed;
	right:5px;
	bottom:75px;
	z-index:10;
	opacity:0.8;
}

#jump_coating a{
	position:relative;
	display:block;
	width:60px;
	height:60px;
	text-decoration:none;
	z-index:10;
	background-color:#3d45e9;
	border-radius:10px;
}

#jump_coating a::before{
	font-family:"Font Awesome 7 Free";
	font-weight:900;
	content:'\f3a5';
	font-size:15px;
	color:#F4F4F4;
	position:absolute;
	width:25px;
	height:25px;
	top:8px;
	right:0;
	left:0;
	margin:auto;
	text-align:center;
	z-index:10;
}

#jump_coating a::after{
	content:'コー\Aティング';
	white-space:pre;
	font-size:8px;
	font-weight:bold;
	color:#fff;
	position:absolute;
	top:25px;
	bottom:0;
	right:0;
	left:0;
	margin:auto;
	text-align:center;
	color:#F4F4F4;
	z-index:10;
}
/* -------------------------------------------------- 
[コーティング TOP]へジャンプボタン End */

/* 見出し 日本語 */
.japanese_h2{
	font-size:22px;
	padding-top:30px;
}

/* 見出し 英語 */
.english_h2{
	font-size:50px;
	margin-top:10px;
}

/* 見出し */
h3{
	font-size:16px;
}

/* 見出し 英語 */
h4{
	font-size:36px;
}

/* メインスローガン */
.main_slogan{
	font-size:40px;
	margin-top:30px;
	line-height:45px;
}


/* 背景色・ツートン（灰）*/
.grayback{
	padding-top:40px;
	padding-bottom:60px;
}

/* 背景色・ツートン（白）*/
.whiteback{
	padding-top:40px;
	padding-bottom:60px;
}

/* 新着情報 4件表示 */
.whatnew_box{
	flex-basis:30%;
}

/* 告知バナー
.info_banner{
	margin-top:20px;
	margin-bottom:20px;
}*/

/* メッセージ */
.message{
	padding-left:20px;
	padding-right:20px;
}

/* イントロダクション イメージ */
.introduction_img{
	display:block !important;
}
.introduction_sp_img{
	display:none !important;
}

/* Meta Slider */
.banner_sp{
	display:none !important;
}
.banner_pc{
	display:block !important;
}

}/*for Tablet design END */

/* ------------------------------------ */
/* ▼PC用デザインとして付け足すデザイン */
/* ------------------------------------ */
@media print, screen and (min-width: 1024px) {

/* メインブロック */
.index_block{
	max-width:1920px;
	margin-left:auto;	/* 左側マージンを自動的に空ける */
	margin-right:auto;	/* 右側マージンを自動的に空ける */
	text-align:left;	/* 中身を左側表示に戻す */
	margin-right:0px;
}

/* 見出し 日本語 */
.japanese_h2{
	font-size:30px;
	padding-top:30px;
}

/* 見出し 英語 */
.english_h2{
	font-size:70px;
	margin-top:10px;
}

/* 見出し 英語 */
h4{
	font-size:36px;
	margin-bottom:15px;
}

/* メインスローガン */
.main_slogan{
	font-size:80px;
	margin-top:140px;
	line-height:1.2;
}

/* イントロダクション背景色（灰）*/
.intro_grayback{
	padding-top:60px;
	padding-bottom:60px;
	background-color:#f1f1f1;
}

/* 背景色（灰）*/
.grayback{
	padding-top:60px;
	padding-bottom:60px;
}

/* 背景色（白）*/
.whiteback{
	padding-top:60px;
	padding-bottom:60px;
}

/* イントロダクション 
.introduction{
	min-height:calc(100vh - 56px);
}*/

/* 高岡店オープン */
.open_takaoka{
	margin-top:40px;
	width:300px;
}

/* ご挨拶 */
.message_block{
	padding:15px;
}

/* ご挨拶 */
.message{
	border-radius:10px;
}


/* スライドショー (Meta Slider) */
.slider{
	margin-left:60px;
	margin-right:60px;
}

/* 告知バナー */
.info_banner{
	margin-left:60px;
	margin-right:60px;
}

/* お知らせ・新着情報 */
.information{
	margin-left:60px;
	margin-right:60px;
}

/* 新着情報 5件表示 */
.whatnew_box{
	flex-basis:22%;
}

/* 記事タイトル */
.whatnew_title h5{
	font-size:16px;
}

/* ご挨拶 段組表示 */
.message{
	margin-left:100px;
	margin-right:100px;
	border-radius:15px;
}

/* ご挨拶 概要 */
.message_overview{
	margin-top:0px;
	width:100%;
}

/* 修理メニュー */
.repair_menu{
	display:flex;
	flex-flow:row;
	justify-content:space-between;
	align-items:stretch;
	flex-wrap:wrap;
	padding-left:60px;
	padding-right:60px;
	padding-top:20px;
	padding-bottom:20px;
	gap:40px 0px;		/* 縦、横の余白指定 */
}

/* パソコン修理 段組表示 */
.pc_repair{
	flex-basis:49%;
	position:relative;
	padding-bottom:90px;
	padding-left:20px;
	padding-right:20px;
}

/* パソコン修理 JPGイメージ */
.pc_repair_img{
	max-width:100%;
	height:auto;
}

/* パソコン修理 概要 */
.pc_repair_overview{
	margin-top:0px;
	width:100%;
}

/* データ復旧 段組表示 */
.data_recovery{
	flex-basis:49%;
	position:relative;
	padding-bottom:90px;
	padding-left:20px;
	padding-right:20px;
}

/* データ復旧 JPGイメージ */
.data_recovery_img{
	max-width:100%;
	height:auto;
}

/* iPhone修理 段組表示 */
.iphone_repair{
	flex-basis:49%;
	position:relative;
	padding-bottom:90px;
	padding-left:20px;
	padding-right:20px;
}

/* iPhone修理 イメージ枠 */
.iphone_repair_imgbox{

}

/* iPhone修理 JPGイメージ */
.iphone_repair_img{
	max-width:100%;
	height:auto;
}

/* Switch修理 段組表示 */
.switch_repair{
	flex-basis:49%;
	position:relative;
	padding-bottom:90px;
	padding-left:20px;
	padding-right:20px;
}

/* Switch修理 JPGイメージ */
.switch_repair_img{
	max-width:100%;
	height:auto;
}

/* 中古パソコン販売 段組表示 */
.used_pc{
	flex-basis:49%;
	position:relative;
	padding-bottom:90px;
	padding-left:20px;
	padding-right:20px;
}

/* 中古パソコン販売 JPGイメージ */
.used_pc_img{
	max-width:100%;
	height:auto;
}

/* 買取 段組表示 */
.purchase{
	flex-basis:49%;
	position:relative;
	padding-bottom:90px;
	padding-left:20px;
	padding-right:20px;
}

/* 買取 JPGイメージ */
.purchase_img{
	max-width:100%;
	height:auto;
}

/* コーティング */
.coating_block{
	margin-left:60px;
	margin-right:60px;
	margin-top:20px;
	margin-bottom:20px;
	padding-bottom:90px;
}

/* コーティング*/
.coating_menu{
	display:flex;
	flex-flow:row;
	justify-content:space-between;
	align-items:stretch;
	flex-wrap:wrap;
	padding-left:15px;
	padding-right:15px;
	padding-top:20px;
	padding-bottom:20px;
	gap:40px 0px;/* 縦、横の余白指定*/
}

/* コーティング JPGイメージ */
.coating_img{
	max-width:100%;
	height:auto;
}

/* ガラスコーティング イメージ */
.coating_imgbox{
	flex-basis:46%;
}

/* ガラスコーティング 概要 */
.coating_overview{
	flex-basis:46%;
}

/* ガラスコーティング Youtube */
.coating_youtube{
	flex-basis:100%;
}

/* BTOPC */
.btopc_block{
	padding-left:15px;
	padding-right:15px;
	margin-left:60px;
	margin-right:60px;
	margin-top:20px;
	margin-bottom:20px;
}

/* BTOPC */
.btopc_menu{
	display:flex;
	flex-flow:row;
	justify-content:space-between;
	align-items:stretch;
	flex-wrap:wrap;
	padding-left:15px;
	padding-right:15px;
	padding-top:20px;
	padding-bottom:40px;
	gap:40px 0px;	/* 縦、横の余白指定 */
}

/* コーティング JPGイメージ */
.coating_img{
	max-width:100%;
	height:auto;
}

/* ガラスコーティング イメージ */
.btopc_imgbox{
	flex-basis:46%;
}

/* ガラスコーティング 概要 */
.btopc_overview{
	flex-basis:46%;
}

/* リンクボタン 最下部に表示 */
.bottom_button{
	position:absolute;
	left: 50%;
	transform:translateX(-50%);
	-webkit-transform:translateX(-50%);
	-ms-transform:translateX(-50%);
	bottom:15px;
	white-space:nowrap;
}

}/* for PC design END */

/* -------------------------------------------------------- */
/* ▼PC用デザインとして付け足すデザイン(ワイドディスプレイ) */
/* -------------------------------------------------------- */
@media print, screen and (min-width: 1366px) {

/* [パソコン修理 TOP]へジャンプボタン Start
-------------------------------------------------- */
#jump_pc_repair{
	width:100px;
	height:100px;
	position:fixed;
	right:5px;
	bottom:390px;
	z-index:10;
	opacity:0.8;
}

#jump_pc_repair a{
	position:relative;
	display:block;
	width:100px;
	height:100px;
	text-decoration:none;
	z-index:10;
	background-color:#006400;
	border-radius:10px;
}

#jump_pc_repair a::before{
	font-family:"Font Awesome 7 Free";
	font-weight:900;
	content:'\f109';
	font-size:36px;
	color:#F4F4F4;
	position:absolute;
	width:25px;
	height:25px;
	top:8px;
	right:18px;
	left:0;
	margin:auto;
	text-align:center;
	z-index:10;
}

#jump_pc_repair a::after{
	content:'パソコン\A修理';
	white-space:pre;
	font-size:12px;
	font-weight:bold;
	color:#fff;
	position:absolute;
	top:55px;
	bottom:0;
	right:0;
	left:0;
	margin:auto;
	text-align:center;
	color:#F4F4F4;
	z-index:10;
}
/* --------------------------------------------------
[パソコン修理 TOP]へジャンプボタン End */

/* [iPhone修理 TOP]へジャンプボタン Start
-------------------------------------------------- */
#jump_iphone_repair{
	width:100px;
	height:100px;
	position:fixed;
	right:5px;
	bottom:285px;
	z-index:10;
	opacity:0.8;
}

#jump_iphone_repair a{
	position:relative;
	display:block;
	width:100px;
	height:100px;
	text-decoration:none;
	z-index:10;
	background-color:#006400;
	border-radius:10px;
}

#jump_iphone_repair a::before{
	font-family:"Font Awesome 7 Free";
	font-weight:900;
	content:'\f3cd';
	font-size:36px;
	color:#F4F4F4;
	position:absolute;
	width:25px;
	height:25px;
	top:12px;
	right:0;
	left:0;
	margin:auto;
	text-align:center;
	z-index:10;
}

#jump_iphone_repair a::after{
	content:'iPhone\A修理';
	white-space:pre;
	font-size:12px;
	font-weight:bold;
	color:#fff;
	position:absolute;
	top:55px;
	bottom:0;
	right:0;
	left:0;
	margin:auto;
	text-align:center;
	color:#F4F4F4;
	z-index:10;
}
/* -------------------------------------------------- 
[iPhone修理 TOP]へジャンプボタン End */

/* [Switch修理 TOP]へジャンプボタン Start
-------------------------------------------------- */
#jump_switch_repair{
	width:100px;
	height:100px;
	position:fixed;
	right:5px;
	bottom:180px;
	z-index:10;
	opacity:0.8;
}

#jump_switch_repair a{
	position:relative;
	display:block;
	width:100px;
	height:100px;
	text-decoration:none;
	z-index:10;
	background-color:#FF0000;
	border-radius:10px;
}

#jump_switch_repair a::before{
	font-family:"Font Awesome 7 Free";
	font-weight:900;
	content:'\f11b';
	font-size:36px;
	color:#F4F4F4;
	position:absolute;
	width:25px;
	height:25px;
	top:8px;
	right:16px;
	left:0;
	margin:auto;
	text-align:center;
	z-index:10;
}

#jump_switch_repair a::after{
	content:'Switch\A修理';
	white-space:pre;
	font-size:12px;
	font-weight:bold;
	color:#fff;
	position:absolute;
	top:55px;
	bottom:0;
	right:0;
	left:0;
	margin:auto;
	text-align:center;
	color:#F4F4F4;
	z-index:10;
}
/* -------------------------------------------------- 
[Switch修理 TOP]へジャンプボタン End */

/* [コーティング TOP]へジャンプボタン Start
-------------------------------------------------- */
#jump_coating{
	width:100px;
	height:100px;
	position:fixed;
	right:5px;
	bottom:75px;
	z-index:10;
	opacity:0.8;
}

#jump_coating a{
	position:relative;
	display:block;
	width:100px;
	height:100px;
	text-decoration:none;
	z-index:10;
	background-color:#3d45e9;
	border-radius:10px;
}

#jump_coating a::before{
	font-family:"Font Awesome 7 Free";
	font-weight:900;
	content:'\f3a5';
	font-size:36px;
	color:#F4F4F4;
	position:absolute;
	width:25px;
	height:25px;
	top:8px;
	right:8px;
	left:0;
	margin:auto;
	text-align:center;
	z-index:10;
}

#jump_coating a::after{
	content:'コー\Aティング';
	white-space:pre;
	font-size:12px;
	font-weight:bold;
	color:#fff;
	position:absolute;
	top:55px;
	bottom:0;
	right:0;
	left:0;
	margin:auto;
	text-align:center;
	color:#F4F4F4;
	z-index:10;
}
/* -------------------------------------------------- 
[コーティング TOP]へジャンプボタン End */

/* メッセージ */
.message{
	padding-left:50px;
	padding-right:50px;
}

/* ご挨拶 概要 */
.message_overview{
	width:100%;
	margin-left:auto;
	margin-right:auto;
}

/* 新着情報 8件表示 */
.whatnew_box{
	flex-basis:12.5%;
}

/* パソコン修理 概要 */
.pc_repair_overview{
	width:100%;
	margin-left:auto;
	margin-right:auto;
}

/* データ復旧 概要 */
.data_recovery_overview{
	width:100%;
	margin-left:auto;
	margin-right:auto;
}

/* iPhone修理 概要 */
.iphone_repair_overview{
	width:100%;
	margin-left:auto;
	margin-right:auto;
}

/* Switch修理 概要 */
.switch_repair_overview{
	width:100%;
	margin-left:auto;
	margin-right:auto;
}

/* 中古パソコン販売 概要 */
.used_pc_overview{
	width:100%;
	margin-left:auto;
	margin-right:auto;
}

/* 買取 概要 */
.purchase_overview{
	width:100%;
	margin-left:auto;
	margin-right:auto;
}

/* オリジナルPC 概要 */
.btopc_overview{
	width:100%;
	margin-left:auto;
	margin-right:auto;
}

/* iPhone修理 段組表示 */
.pc_repair{
	flex-basis:31%;
	border-radius:15px;
	padding-left:30px;
	padding-right:30px;
}

.data_recovery{
	flex-basis:31%;
	border-radius:15px;
	padding-left:30px;
	padding-right:30px;
}

/* iPhone修理 段組表示 */
.iphone_repair{
	flex-basis:31%;
	border-radius:15px;
	padding-left:30px;
	padding-right:30px;
}

/* iPhone修理 段組表示 */
.switch_repair{
	flex-basis:31%;
	border-radius:15px;
	padding-left:30px;
	padding-right:30px;
}

/* iPhone修理 段組表示 */
.used_pc{
	flex-basis:31%;
	border-radius:15px;
	padding-left:30px;
	padding-right:30px;
}

/* 買取 段組表示 */
.purchase{
	flex-basis:31%;
	border-radius:15px;
	padding-left:30px;
	padding-right:30px;
}

.coating_block{
	border-radius:15px;
	padding-left:15px;
	padding-right:15px;
}

.coating_overview p{
	width:90%;
	margin-left:auto;
	margin-right:auto;
}

/* コーティング 事例表示 */
.coating_case{
	flex-basis:33%;
}

/* ガラスコーティング イメージ */
.coating_imgbox{
	flex-basis:31%;
}

/* ガラスコーティング 概要 */
.coating_overview{
	flex-basis:31%;
}

/* ガラスコーティング Youtube */
.coating_youtube{
	flex-basis:31%;
}

.btopc_block{
	padding-left:15px;
	padding-right:15px;
	border-radius:15px;
}

/* BTOPC 段組表示 */
.btopc_imgbox{
	order:1;
	flex-basis:31%;
}

/* BTOPC 概要 */
.btopc_overview{
	order:2;
	flex-basis:31%;
}

.btopc_overview p{
	width:90%;
	margin-left:auto;
	margin-right:auto;
}

/* BTOPC 概要 */
.btopc_case{
	order:3;
	flex-basis:31%;
}

/* BTOPC リンク */
.btopc_link{
	order:4;
	flex-basis:70%;
}

/* BTOPC 作業事例 リンク */
.btopc_case_link{
	order:5;
	flex-basis:30%;
}

/* リンクボタン */
.btn,
a.btn,
button.btn{
	font-size:2.0rem;
	font-weight:700;
	line-height:1.5;
	position:relative;
	display:inline-block;
	padding:1.5rem 10rem;
	cursor:pointer;
	-webkit-user-select:none;
	-moz-user-select:none;
	-ms-user-select:none;
	user-select:none;
	-webkit-transition: all 0.3s;
	transition:all 0.3s;
	text-align:center;
	vertical-align:middle;
	text-decoration:none;
	letter-spacing:0.1em;
	color:#FFFFFF;
	border-radius:0.5rem;
}

}/* for PC design(wide) END */

/* ------------------------------------------------ */
/* ▼PC用として付け足すデザイン（横幅1920対応） */
/* ------------------------------------------------ */
@media print, screen and (min-width:1920px) {

/* 見出し 英語 */
h4{
	font-size:40px;
}

/* [パソコン修理 TOP]へジャンプボタン Start
-------------------------------------------------- */
#jump_pc_repair{
	width:120px;
	height:120px;
	position:fixed;
	right:5px;
	bottom:450px;
	z-index:10;
	opacity:0.8;
}

#jump_pc_repair a{
	position:relative;
	display:block;
	width:120px;
	height:120px;
	text-decoration:none;
	z-index:10;
	background-color:#006400;
	border-radius:10px;
}

#jump_pc_repair a::before{
	font-family:"Font Awesome 7 Free";
	font-weight:900;
	content:'\f109';
	font-size:40px;
	color:#F4F4F4;
	position:absolute;
	width:25px;
	height:25px;
	top:8px;
	right:22px;
	left:0;
	margin:auto;
	text-align:center;
	z-index:10;
}

#jump_pc_repair a::after{
	content:'パソコン\A修理';
	white-space:pre;
	font-size:16px;
	font-weight:bold;
	color:#fff;
	position:absolute;
	top:65px;
	bottom:0;
	right:0;
	left:0;
	margin:auto;
	text-align:center;
	color:#F4F4F4;
	z-index:10;
}
/* --------------------------------------------------
[パソコン修理 TOP]へジャンプボタン End */

/* [iPhone修理 TOP]へジャンプボタン Start
-------------------------------------------------- */
#jump_iphone_repair{
	width:120px;
	height:120px;
	position:fixed;
	right:5px;
	bottom:325px;
	z-index:10;
	opacity:0.8;
}

#jump_iphone_repair a{
	position:relative;
	display:block;
	width:120px;
	height:120px;
	text-decoration:none;
	z-index:10;
	background-color:#006400;
	border-radius:10px;
}

#jump_iphone_repair a::before{
	font-family:"Font Awesome 7 Free";
	font-weight:900;
	content:'\f3cd';
	font-size:40px;
	color:#F4F4F4;
	position:absolute;
	width:25px;
	height:25px;
	top:12px;
	right:4px;
	left:0;
	margin:auto;
	text-align:center;
	z-index:10;
}

#jump_iphone_repair a::after{
	content:'iPhone\A修理';
	white-space:pre;
	font-size:16px;
	font-weight:bold;
	color:#fff;
	position:absolute;
	top:65px;
	bottom:0;
	right:0;
	left:0;
	margin:auto;
	text-align:center;
	color:#F4F4F4;
	z-index:10;
}
/* -------------------------------------------------- 
[iPhone修理 TOP]へジャンプボタン End */

/* [Switch修理 TOP]へジャンプボタン Start
-------------------------------------------------- */
#jump_switch_repair{
	width:120px;
	height:120px;
	position:fixed;
	right:5px;
	bottom:200px;
	z-index:10;
	opacity:0.8;
}

#jump_switch_repair a{
	position:relative;
	display:block;
	width:120px;
	height:120px;
	text-decoration:none;
	z-index:10;
	background-color:#FF0000;
	border-radius:10px;
}

#jump_switch_repair a::before{
	font-family:"Font Awesome 7 Free";
	font-weight:900;
	content:'\f11b';
	font-size:40px;
	color:#F4F4F4;
	position:absolute;
	width:25px;
	height:25px;
	top:15px;
	right:22px;
	left:0;
	margin:auto;
	text-align:center;
	z-index:10;
}

#jump_switch_repair a::after{
	content:'Switch\A修理';
	white-space:pre;
	font-size:16px;
	font-weight:bold;
	color:#fff;
	position:absolute;
	top:65px;
	bottom:0;
	right:0;
	left:0;
	margin:auto;
	text-align:center;
	color:#F4F4F4;
	z-index:10;
}
/* -------------------------------------------------- 
[Switch修理 TOP]へジャンプボタン End */

/* [コーティング TOP]へジャンプボタン Start
-------------------------------------------------- */
#jump_coating{
	width:120px;
	height:120px;
	position:fixed;
	right:5px;
	bottom:75px;
	z-index:10;
	opacity:0.8;
}

#jump_coating a{
	position:relative;
	display:block;
	width:120px;
	height:120px;
	text-decoration:none;
	z-index:10;
	background-color:#3d45e9;
	border-radius:10px;
}

#jump_coating a::before{
	font-family:"Font Awesome 7 Free";
	font-weight:900;
	content:'\f3a5';
	font-size:40px;
	color:#F4F4F4;
	position:absolute;
	width:25px;
	height:25px;
	top:20px;
	right:12px;
	left:0;
	margin:auto;
	text-align:center;
	z-index:10;
}

#jump_coating a::after{
	content:'コーティング';
	white-space:pre;
	font-size:14px;
	font-weight:bold;
	color:#fff;
	position:absolute;
	top:80px;
	bottom:0;
	right:0;
	left:0;
	margin:auto;
	text-align:center;
	color:#F4F4F4;
	z-index:10;
}
/* -------------------------------------------------- 
[コーティング TOP]へジャンプボタン End */




}/* for PC design（横幅1920対応） END */

/* ---------------------------------------------------------------------- */
/* ▼PC用として付け足すデザイン（超高解像度4K・ウルトラワイドモニタ対策） */
/* ---------------------------------------------------------------------- */
@media only screen and (min-width: 3840px) {

/* イントロダクション
.introduction{
	max-height:1000px;
} */

}/* for PC design（超高解像度4K・ウルトラワイドモニタ対策） END */

/* --------------------------------------------------- */
/* ▼印刷用として付け足すデザイン 「バイ～ン対策」とも */
/* --------------------------------------------------- */
@media print{

/* パソコン修理 トップページへジャンプ ボタン */
#jump_pc_repair a{
	display:none;	/* 印刷しない */
}

/* iPhone修理 トップページへジャンプ ボタン */
#jump_iphone_repair a{
	display:none;	/* 印刷しない */
}

/* Switch修理 トップページへジャンプ ボタン */
#jump_switch_repair a{
	display:none;	/* 印刷しない */
}

/* Switch修理 トップページへジャンプ ボタン */
#jump_coating a{
	display:none;	/* 印刷しない */
}

}/* for Print design END */