@charset "utf-8";

/* add_2025.09 - IRサイトリニューアル */
:root {
	--color-primary: #A01F00;
	--color-secondary: #CB4E1F;
	--color-accent: #E25F2E;
	--color-gray100: #F5F5F5;
	--color-gray200: #DFDDDD;
	--color-gray300: #D7D5D5;
	--color-gray400: #B7B7B7;
	--color-gray500: #A2A2A2;
	--color-gray600: #6C6C6C;
	--color-gray700: #666666;
	--color-gray800: #333333;
	--color-white: #FFFFFF;
	--color-black: #000000;
	--color-border: #D5D2D2;
	--color-border-light: #B9B9B9;
	--color-border-dark: #787878;
	--font-family-noto-sans: 'Noto Sans JP', sans-serif;
}

/* 基本的な要素のmarginとpaddingを0にする */
body,
div,
/* ボックス */
h1,
h2,
h3,
h4,
h5,
h6,
/* 見出し要素 */
dl,
dt,
dd,
ul,
ol,
li,
/* リスト */
p,
blockquote,
pre,
cite,
code,
caption,
hr,
/* テキストエリア等 */
form,
fieldset,
legend,
input,
textarea,
select,
option,
label

/* 入力フォームやラベル等 */
	{
	margin: 0;
	padding: 0;
}

img {
	border: 0px;
	margin: 0;
	padding: 0;
	/* 画像のボーダー、余白を消す */
	vertical-align: bottom;
	line-height: 0;
}

/* インライン要素の画像の下の隙間を消す（詰める） */


html {
	overflow-y: scroll;
	margin-bottom: 1px;
	height: 100%;
}

html * {
	box-sizing: border-box;
	font-feature-settings: "palt";
	font-style: normal;
}

div {
	text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	text-align: left;
	font-weight: normal;
}

/* 見出しは左寄せデフォに */

ul,
ol {
	list-style: none;
}

li {
	list-style-position: outside;
}

table {
	border-collapse: collapse;
}

/* テーブルのボーダーと余白を完全に消す */
th,
td {
	padding: 0;
	text-align: left;
	vertical-align: top;
}

/* テーブルの書式を上詰め左寄せデフォに */

object,
embed {
	vertical-align: top;
}

/* 主にswfなどが、微妙にずれるのを防ぐ */

/* google chrome 画像縮小時のぼやけ対策 */
img {
	-webkit-backface-visibility: hidden;
}

/* formのデフォルト装飾削除 */
input[type="text"],
input[type="tel"],
input[type="mail"],
input[type="submit"],
select,
textarea {
	-webkit-appearance: none;
}

textarea {
	resize: vertical;
}

/* 電話番号のリンクをPCで無効に */
a[href*="tel:"] {
	cursor: default;
	pointer-events: none;
	text-decoration: none;
}

@media screen and (max-width:768px) {
	a[href*="tel:"] {
		pointer-events: auto;
	}
}

/* clearfix */
.clearfix:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}

* html .clearfix {
	zoom: 1;
}

/* IE6 */
*:first-child+html .clearfix {
	zoom: 1;
}

/* IE7 */

article,
main,
aside,
figure,
footer,
header,
hgroup,
nav,
section {
	display: block;
}

body {
	-webkit-text-size-adjust: none;
	/* フォントを指定したサイズのままで表示 */
}