﻿@charset "utf-8";



/*PC・タブレット・スマホ共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;padding: 0px;
	color: #666;	/*全体の文字色*/
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 14px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	-webkit-text-size-adjust: none;
	background: #f0f0f0;	/*背景色（古いブラウザ用）*/
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form {margin: 0px;padding: 0px;font-size: 100%;}
ul {list-style-type: none;}
ol {padding-left: 40px;padding-bottom: 15px;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
iframe {width: 100%;}

.list-style{
    list-style-type:disc;
    list-style-position: inside;
}
.list-style li{
    text-indent: -1em;
    padding-left: 1.5em;
}

.text-danger {
  color: #dc3545 !important;
}

.display-6 {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #666;	/*リンクテキストの色*/
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
}
a:hover {
	color: #28a8b8;				/*マウスオン時の文字色*/
	text-decoration: none;		/*マウスオン時にリンクの下線を消す設定*/
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
header {
	background: #41a6df;	/*背景色*/
    padding: 10px 0 10px 0;
}
/*ヘッダーの高さPC*/
header .inner {
	height: 130px;	
	position: relative;
}
/*ロゴ画像*/
#logo img {
	width: 240px;
    position: absolute;
    left: 2%;
    top: 30px;
}

.nintei_logo{
position: absolute;
  top: -10px;
  right: 1px;
}

.nintei_logo img{
	width: 150px;
}


/*ヘッダー右側のアイコン類*/
#h-nav {
	display: inline-block;
	margin: 15px 0 0;	
}
/*ヘッダー右側のアイコン類（１個あたり）*/
#h-nav li {
	float: left;
	margin-left: 20px;	/*アイコン間の余白*/
}
/*ヘッダー右側のアイコン類（画像）*/
#h-nav li img {
	display: block;
	width: 30px;	/*幅*/
	height: 30px;	/*高さ*/
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロックの設定*/
#menubar {
	background: #1a8fd5;	/*背景色*/
	overflow: hidden;
}
/*メニュー１個あたりの設定*/
#menubar li {
	float: left;
	margin-left: 3%;
	overflow: hidden;
	letter-spacing: 0.2em;
}
#menubar li a {
	text-decoration: none;
	display: block;
	color: #fff;	/*文字色*/
	line-height: 46px;	/*高さ。ここを変える場合、fixmenu.cssの「body.is-fixed header」のサイズも変える。*/
	padding-top: 4px;	/*上にあける余白。下の「border-bottom」のサイズと合わせる。*/
	padding-left: 0.2em;	/*上のletter-spacingの数字と揃える*/
}
/*下線のアニメーション設定*/
#menubar li::after {
	-webkit-transition: 0.5s;transition: 0.5s;	/*0.5秒かけてアニメーションを実行する。*/
	content: "";
	display: block;
	border-bottom: 4px solid #fff034;	/*下線の幅、線種、色*/
	position: relative;left: 0px;bottom: -4px;	/*bottomのサイズは上のborder-bottomの数字と合わせる。マイナス記号は残したまま。*/
}
#menubar li:hover::after,#menubar li.current::after {
	bottom: 0px;
}
/*小さい端末用(画面幅800px以下)メニューを表示させない*/
#menubar-s {
	display: none;
}
/*３本バーアイコンを表示させない*/
#menubar_hdr {
	display: none;
}

/*コンテンツ
---------------------------------------------------------------------------*/
#contents {
	clear: both;
	margin: 2%;	/*ボックスの外側にとる余白*/
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
/*メインコンテンツブロック*/
#main {
	float: right;	/*右に回り込み*/
	width: 78%;		/*ボックス幅*/
}
/*メインコンテンツブロック（１カラム時）*/
.c1 #main {
	float: none;
	width: 100%;
}
/*メインコンテンツのh2タグ*/
#main h2 {
	clear: both;
	margin-bottom: 20px;
	padding: 8px;	/*上下、左右への余白*/
	background: #41a6df;	/*背景色*/
	color: #fff;	/*文字色*/
	text-indent: -0.5em;
    padding-left: 1em;
	font-size: 1.5rem !important;
	line-height: normal;
}
#main h2::first-letter {
	border-left: 3px solid #fff;	/*左側のアクセントラインの幅、線種、色*/
	padding-left: 10px;
}
/*メインコンテンツのh3タグ*/
#main h3 {
	clear: both;
	margin-bottom: 20px;
	padding: 10px 20px;	/*上下、左右への余白*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	background: #fff;	/*背景色*/
	text-indent: -0.5em;
    padding-left: 1em;
	font-size: 1.25rem !important;
	line-height: normal;
}
#main h3::first-letter {
	border-left: 3px solid #41a6df;	/*左側のアクセントラインの幅、線種、色*/
	padding-left: 6px;
}

#main h4{
	font-size: 1rem !important;
}
/*メインコンテンツの段落タグ*/
#main p {
	padding: 0px 20px 20px;	/*上、左右、下への余白*/
}
#main h2 + p,
#main h3 + p {
	margin-top: -10px;
}
/*トップバナー
---------------------------------------------------------------------------*/
/* =========================================
   1. スライダー全体のラッパーとラジオボタン
========================================= */
.cs-full-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto 2em;
    overflow: hidden;
}

.cs-full-wrapper input[type="radio"] {
    display: none; /* ラジオボタン本体は隠す */
}

/* =========================================
   2. スライド本体（横並びトラック）
========================================= */
.cs-full-viewport {
    width: 100%;
    aspect-ratio: 3.3 / 1;
    overflow: hidden;
    background-color: #f1f5f9;
}

.cs-full-track {
    display: flex;
    width: 300%; /* 3枚分 */
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cs-full-item {
    width: 33.3333%;
    height: 100%;
}

.cs-full-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
@media (max-width: 768px) {

	 .cs-full-track {
        width: 300%;              /* ← 3枚分の横幅を維持する */
        transform: none !important;
        scroll-snap-type: x mandatory;
    }

    .cs-full-item {
        width: 33.3333%;          /* ← 3枚を横並びにする */
        scroll-snap-align: start;
    }
    .cs-full-viewport {
        overflow-x: auto;        /* スワイプ可能にする */
        scroll-snap-type: x mandatory;
		/* スクロールバー非表示（iOS/Android両対応） */
        -ms-overflow-style: none;  /* IE, Edge */
        scrollbar-width: none;     /* Firefox */
    }
	 .cs-full-viewport::-webkit-scrollbar {
        display: none;             /* Chrome, Safari */
    }

    .cs-full-track {
        scroll-snap-type: x mandatory;
    }

    .cs-full-item {
        scroll-snap-align: start;
    }
}

/* =========================================
   3. ラジオボタンの状態に応じたスライドの移動
========================================= */
#cs-full-1:checked ~ .cs-full-viewport .cs-full-track { transform: translateX(0%); }
#cs-full-2:checked ~ .cs-full-viewport .cs-full-track { transform: translateX(-33.3333%); }
#cs-full-3:checked ~ .cs-full-viewport .cs-full-track { transform: translateX(-66.6666%); }

/* =========================================
   4. 左右の矢印ナビゲーション
========================================= */
.cs-full-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background-color: rgba(255, 255, 255, 0.8);
    color: #1a202c;
    border-radius: 50%;
    /* デフォルトは非表示にしておく */
    display: none;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s;
    z-index: 10;
}

.cs-full-arrow:hover {
    background-color: #ffffff;
    transform: translateY(-50%) scale(1.1); /* ホバーで少し大きく */
}

.cs-full-prev { left: 10px; }
.cs-full-next { right: 10px; }

/* ▼ 選択されているスライドに対応する矢印だけを表示する ▼ */
#cs-full-1:checked ~ .cs-full-viewport .cs-full-arrows .cs-full-nav-1 { display: flex; }
#cs-full-2:checked ~ .cs-full-viewport .cs-full-arrows .cs-full-nav-2 { display: flex; }
#cs-full-3:checked ~ .cs-full-viewport .cs-full-arrows .cs-full-nav-3 { display: flex; }

@media (max-width: 768px) {
.cs-full-arrows {
    display: none !important; /* ← スマホでは矢印を完全に非表示 */
}

}

/* =========================================
   5. 下部のドットナビゲーション
========================================= */
.cs-full-dots {
position: static;
    margin-top: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 10px 0;        /* 白背景の高さを確保 */
}

.cs-full-dot {
    width: 8px;
    height: 8px;
    background-color: #000; /* 黒いドット */
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s
}

.cs-full-dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* ▼ 選択されているスライドに対応するドットをハイライトする ▼ */
#cs-full-1:checked ~ .cs-full-dots .cs-full-dot-1,
#cs-full-2:checked ~ .cs-full-dots .cs-full-dot-2,
#cs-full-3:checked ~ .cs-full-dots .cs-full-dot-3 {
    background-color: #ffffff;
    transform: scale(1.2);
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}


/*SERVICEページ
---------------------------------------------------------------------------*/
/*各ボックスの設定（共通）*/
.list {
	background: #fff;	/*背景色*/
	position: relative;
	overflow: hidden;
	box-shadow: 1px 1px 3px rgba(0,0,0,0.2);	/*影の設定。右へ、下へ、広げる幅、0,0,0は黒で0.2は透明度20%の事。*/
	margin-bottom: 20px;
}
/*
.list a {
	text-decoration: none;
	display: block;
	overflow: hidden;
}
*/
/*画像の設定*/
.list img.img {
	float: left;
	width: 0%;	/*画像の幅。ここを変更する場合は、下の.list .textのmargin-leftの数字も調整する。*/
}
/*右側のテキスト欄*/
.list .text {
	padding: 2% 60px 2% 2%;	/*上、右、下、左への余白*/
	margin-left: 1%;		/*左の画像とのバランスをとって設定*/
}
/*h4見出しタグの設定*/
.list h4 {
	color: #41a6df;	/*文字色*/
}
/*pタグの設定*/
.list p {
	padding: 0 !important;
}
/*３カラムタイプのボックス設定*/
.list.c3 {
	width: 31%;	/*ボックスの幅*/
	margin: 0 1% 20px;	/*上、左右、下へのボックスの外側にとる余白*/
	float: left;
	height: 200px;	/*高さ。下の「.list.c3 a」のheightと合わせる。*/
	text-align: left;	/*文字をセンタリング*/
}
.list.c3 a {
	height: 200px;
}
/*３カラムタイプの画像設定*/
.list.c3 img.img {
	float: none;
	width: 100%;
}
.list.c3 .text {
	padding: 0;
	margin-left: 0;
}
/*３カラムタイプのボックス設定(カスタマー）*/
.list.c4 {
	width: 31%;	/*ボックスの幅*/
	margin: 0 1% 20px;	/*上、左右、下へのボックスの外側にとる余白*/
	float: left;
	height: 150px;	/*高さ。下の「.list.c3 a」のheightと合わせる。*/
	text-align: left;	/*文字をセンタリング*/
}
.list.c4 a {
	height: 150px;
}
/*３カラムタイプ(カスタマー）の画像設定*/
.list.c4 img.img {
	float: none;
	width: 100%;
}
.list.c4 .text {
	padding: 0;
	margin-left: 0;
}
/*ボックスにリンク指定がされた場合に出る「→」マーク*/
/*
.list a::before {
	content: "→";	
	position: absolute;
	right: 5px;	
	top: 5px;		
	background: #000;	
	background: rgba(0,0,0,0.5);	
	color: #fff;	
	border: 1px solid #fff;	
	border-radius: 4px;		
	width: 30px;		
	line-height: 30px;	
	text-align: center;
	-webkit-transition: 0.5s;	
	transition: 0.5s;			
}

*/

/*マウスオン時の「→」マーク*/
/*
.list a:hover::before {
	background: #000;	
	width: 40px;		
	line-height: 40px;	
}
*/

/*１カラムでページを表示時の３カラムボックスの高さ*/
.c1 .list.c3,
.c1 .list.c3 a {
	height: 200px;
}


.form_btn{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 300px;
    height: 55px;
    border-radius: 0.25rem !important;
    font-size: 15px;
    text-align: center;
    color: #fff;
    background-color: #41a6df;
    border-color: #41a6df;
    text-decoration: none;
    margin: 1rem auto;
    }

.form_btn a{
    text-decoration: none;
    color: #fff;
}

.form_btn:hover {
  color: #fff;
  opacity: 0.8;

}
/*一覧ページの各物件ボックス内のテーブル（CMS用）
---------------------------------------------------------------------------*/
.list table {
	font-size: 10px;	/*文字サイズ*/
	width: 100%;
}
.list table,
.list table td,
.list table th {
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
}
.list table td,
.list table th {
	padding: 1%;	/*テーブル内の余白*/
}
/*色のついた見出しブロック*/
.list table th {
	width: 18%;		/*幅*/
	background: #f5f5f5;	/*背景色*/
	text-align: center;		/*文字をセンタリング*/
	font-weight: normal;	/*デフォルトの太字を標準にする設定*/
}
/*白い説明用ブロック*/
.list table td {
	width: 30%;	/*幅*/
}

/*サブコンテンツ
---------------------------------------------------------------------------*/
/*メインコンテンツブロック*/
#sub {
	float: left;	/*左に回り込み*/
	width: 20%;		/*幅*/
	background: #fff;	/*背景色*/
}
/*メインコンテンツブロック（１カラム時）*/
.c1 #sub {
	display: none;	/*非表示にする設定*/
}
/*subコンテンツ内のh2タグ設定*/
#sub h2 {
	padding: 40px 15px;	/*上下左右へのボックス内の余白*/
	font-weight: normal;	/*hタグのデフォルトの太字を標準にする設定*/
	letter-spacing: 0.2em;	/*文字間隔を少し広くとる設定*/
	font-size: 28px;		/*文字サイズ*/
	line-height: 1.5;	/*行間*/
	color: #000;		/*文字色*/
	background: #fff;	/*背景色（サンプルテンプレートでは以下のキーボードやグリーンの背景画像とともに設定しているので注意）*/
	border-top: 1px solid #ccc;	/*上の線の幅、線種、色*/
	border-bottom: 1px solid #ccc;	/*下の線の幅、線種、色*/
}
/*navの直後にnavとh2が続いた場合と、navタグの直後にh2が続いた場合に、h2の上のラインを消す設定*/
#sub nav + nav h2,
#sub nav + h2 {
	border-top: none;
}
/*subコンテンツ内のh2タグ内のspanタグ設定*/
#sub h2 span {
	display: block;
	font-size: 13px;	/*文字サイズ*/
	letter-spacing: normal;	/*文字間隔を標準に戻す設定*/
}
/*bg1背景（キーボード）*/
#sub h2.bg1 {
	background: #fff url(../images/bg1.png) no-repeat right center;	/*背景色、背景画像読み込み、rightは右寄せ、center上下の中央という意味*/
}

/*bg2背景（窓口）*/
#sub h2.bg3 {
	background: #fff url(../images/bg3.png) no-repeat right center;	/*背景色、背景画像読み込み、rightは右寄せ、center上下の中央という意味*/
}
/*subコンテンツ内のpタグ設定*/
#sub p {
	padding: 15px;
}

/*サブコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー全体の設定*/
#sub ul.submenu {
	border-top: 1px solid #ccc;	/*上の線の幅、線種、色*/
}
/*h2タグの直後にsubmenuが入った場合にsubmenuの上のラインを消す設定*/
#sub h2 + ul.submenu {
	border-top: none;
}
/*メニュー１個ごとの設定*/
#sub ul.submenu li a {
	text-decoration: none;
	display: block;
	padding: 5px;	/*メニュー内の余白*/
	border-bottom: 1px solid #ccc;	/*下の線の幅、線種、色*/
}
/*マウスオン時*/
#sub ul.submenu li a:hover {
	background: #999;	/*背景色*/
	color: #fff;	/*文字色*/
}
/*「>」マーク*/
#sub ul.submenu li a::before {
	display: block;
	float: right;	/*右側に配置*/
/*	content: ">";	このテキストを表示させる。変更してもOKですが機種依存文字は使わないように。*/
	color: #999;	/*文字色*/
}
/*マウスオン時の「>」マーク*/
#sub ul.submenu li a:hover::before {
	color: #fff;	/*文字色*/
}

/*商品サブコンテンツ
---------------------------------------------------------------------------*/
/*メインコンテンツブロック*/
#p-sub {
	float: left;	/*左に回り込み*/
	width: 20%;		/*幅*/
	background: #fff;	/*背景色*/
}
/*メインコンテンツブロック（１カラム時）*/
.c1 #p-sub {
	display: none;	/*非表示にする設定*/
}
/*subコンテンツ内のh2タグ設定*/
#p-sub h2 {
	padding: 20px 20px;	/*上下左右へのボックス内の余白*/
	font-weight: normal;	/*hタグのデフォルトの太字を標準にする設定*/
	letter-spacing: 0.2em;	/*文字間隔を少し広くとる設定*/
	font-size: 28px;		/*文字サイズ*/
	line-height: 1.5;	/*行間*/
	color: #000;		/*文字色*/
	background: #fff;	/*背景色（サンプルテンプレートでは以下のキーボードやグリーンの背景画像とともに設定しているので注意）*/
	border-top: 1px solid #ccc;	/*上の線の幅、線種、色*/
	border-bottom: 1px solid #ccc;	/*下の線の幅、線種、色*/
}
/*navの直後にnavとh2が続いた場合と、navタグの直後にh2が続いた場合に、h2の上のラインを消す設定*/
#p-sub nav + nav h2,
#p-sub nav + h2 {
	border-top: none;
}
/*subコンテンツ内のh2タグ内のspanタグ設定*/
#p-sub h2 span {
	display: block;
	font-size: 13px;	/*文字サイズ*/
	letter-spacing: normal;	/*文字間隔を標準に戻す設定*/
}
/*bg0背景（ハピタス）*/
#p-sub h2.bg0 {
	background: #fff url(../images/bg1.png) no-repeat right center;	/*背景色、背景画像読み込み、rightは右寄せ、center上下の中央という意味*/
}
/*bg1背景（エスケープ）*/
#p-sub h2.bg1 {
	background: #fff url(../images/bg-esc.png) no-repeat right center;	/*背景色、背景画像読み込み、rightは右寄せ、center上下の中央という意味*/
}
/*bg2背景（グリーンワークス）*/
#p-sub h2.bg2 {
	background: #fff url(../images/bg-gre.png) no-repeat right center;	/*背景色、背景画像読み込み、rightは右寄せ、center上下の中央という意味*/
}
/*bg3背景（ゼログラ）*/
#p-sub h2.bg3 {
	background: #fff url(../images/bg-zer.png) no-repeat right center;	/*背景色、背景画像読み込み、rightは右寄せ、center上下の中央という意味*/
}
/*bg4背景（ゼログラ）*/
#p-sub h2.bg4 {
	background: #fff url(../images/bg-tri.png) no-repeat right center;	/*背景色、背景画像読み込み、rightは右寄せ、center上下の中央という意味*/
}
/*bg5背景（ユーラシア）*/
#p-sub h2.bg5 {
	background: #fff url(../images/bg-eur.png) no-repeat right center;	/*背景色、背景画像読み込み、rightは右寄せ、center上下の中央という意味*/
}
/*bg6背景（ルナルクス）*/
#p-sub h2.bg6 {
	background: #fff url(../images/bg-lun.png) no-repeat right center;	/*背景色、背景画像読み込み、rightは右寄せ、center上下の中央という意味*/
}
/*subコンテンツ内のpタグ設定*/
#p-sub p {
	padding: 15px;
}
/*サブコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー全体の設定*/
#p-sub ul.submenu {
	border-top: 1px solid #ccc;	/*上の線の幅、線種、色*/
}
/*h2タグの直後にsubmenuが入った場合にsubmenuの上のラインを消す設定*/
#p-sub h2 + ul.submenu {
	border-top: none;
}
/*メニュー１個ごとの設定*/
#p-sub ul.submenu li a {
	text-decoration: none;
	display: block;
	padding: 5px;	/*メニュー内の余白*/
	border-bottom: 1px solid #ccc;	/*下の線の幅、線種、色*/
}
/*マウスオン時*/
#p-sub ul.submenu li a:hover {
	background: #999;	/*背景色*/
	color: #fff;	/*文字色*/
}
/*「>」マーク*/
#p-sub ul.submenu li a::before {
	display: block;
	float: right;	/*右側に配置*/
/*	content: ">";	このテキストを表示させる。変更してもOKですが機種依存文字は使わないように。*/
	color: #999;	/*文字色*/
}
/*マウスオン時の「>」マーク*/
#p-sub ul.submenu li a:hover::before {
	color: #fff;	/*文字色*/
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	clear: both;
}
#pagetop a {
	text-decoration: none;
	text-align: center;
	display: block;
	float: right;
	margin-right: 3%;
	color: #FFF;		/*文字色*/
	font-size: 20px;	/*文字サイズ*/
	padding: 0px 30px;	/*上下、左右へのボックス内余白*/
	background: #41a6df;	/*背景色*/
	border-radius: 4px 4px 0px 0px;	/*角丸のサイズ。左上、右上、右下、左下。*/
}
/*マウスオン時*/
#pagetop a:hover {
	background: #999;	/*背景色*/
	color: #FFF;			/*文字色*/
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	background: #41a6df;	/*背景色*/
	color: #fff;			/*文字色*/
	text-align: center;
	padding: 10px 0;
}
footer a {
	color: #fff;
	text-decoration: none;
}
footer a:hover {
	color: #fff;
}
footer .pr {
	display: block;
	font-size: 80%;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl {
	padding-left: 15px;
	margin-bottom: 15px;
	height: 400px;	/*高さ*/
	overflow: auto;	/*高さの設定を超えるとスクロールが自動で出る設定。全部表示させていたいならこの行と上の行を削除。*/
}
/*日付設定*/
#new dt {
	font-weight: bold;	/*太字にする設定。標準がいいならこの行削除。*/
	float: left;
	width: 8em;
}
/*記事設定*/
#new dd {
	padding-left: 8em;
}

/*よく頂く質問ページ
---------------------------------------------------------------------------*/
/*ブロック全体*/
.faq {
	padding: 0px 15px;	/*上下、左右への余白*/
}
/*質問の設定*/
.faq dt {
	color: #28a8b8;	/*文字色*/
	font-weight: bold;	/*太字*/
	padding-top: 15px;
}
.faq dt a {
	color: #1a4ef7;	
}
/*回答の設定*/
.faq dd {
	border-bottom: 1px solid #CCC;	/*下線の幅、線種、色*/
	overflow: hidden;
	padding-bottom: 15px;
}

/*一覧ページのボックス右下のオプションマーク
（CMSの場合は管理ページの「オプション1」～のプルダウンと、setup.phpの「オプション選択肢」に関連します）
---------------------------------------------------------------------------*/
.option1 {
	font-size: 10px;
	color: #FFF;
	background: #F00;
	text-align: center;
	display: block;
	width: 120px;
	position: absolute;
	left: 0px;
	top: 0px;
	-webkit-transform: rotate(-45deg) translate(-35px);
	transform: rotate(-45deg) translate(-35px);
}
h2 span.option1 {
	width: auto;
	padding: 0px 5px;
	position: static;
	-webkit-transform: none;
	transform: none;
	display: inline-block;
}
.option2 {
	font-size: 10px;
	color: #FFF;
	background: #069;
	text-align: center;
	display: block;
	width: 120px;
	position: absolute;
	left: 0px;
	top: 0px;
	-webkit-transform: rotate(-45deg) translate(-35px);
	transform: rotate(-45deg) translate(-35px);
}
h2 span.option2 {
	width: auto;
	padding: 0px 5px;
	position: static;
	-webkit-transform: none;
	transform: none;
	display: inline-block;
}

/*テーブル ta1
---------------------------------------------------------------------------*/
/*ta1設定*/
.ta1 {
	width: 96%;
	margin: 0 2% 20px;
	background: #fff;	/*背景色*/
}
.ta1, .ta1 td, .ta1 th {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px;	/*ボックス内の余白*/
	word-break: break-all;
}
.ta1 td:first-child{
    width: 14%;
}
/*
.ta1 td:first-child{
        white-space: nowrap;
    }  
*/
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi {
	width: auto;
	text-align: left;		/*左よせ*/
	background: #eee;	/*背景色*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 24%;	/*幅*/
	text-align: center;	/*センタリング*/
}
/*左側ボックスに画像を入れた場合の設定*/
.ta1 th img {
	width: 100%;
}

/*テーブル ta2
---------------------------------------------------------------------------*/
/*ta2設定*/
.ta2 {
	width: 96%;
	margin: 0 2% 20px;
	background: #fff;	/*背景色*/
}
.ta2, .ta2 td, .ta2 th {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*テーブル１行目に入った見出し部分*/
.ta2 th.tamidashi {
	width: auto;
	text-align: left;		/*左よせ*/
	background: #eee;	/*背景色*/
}
/*ta2の左側ボックス*/
.ta2 th {
	width: 80px;	/*幅*/
	text-align: center;	/*センタリング*/
}
/*左側ボックスに画像を入れた場合の設定*/
.ta2 th img {
	width: 100%;
}



/*トップページのNEWアイコン
---------------------------------------------------------------------------*/
.newicon {
	background: #F00;
	color: #FFF;
	font-size: 70%;
	line-height: 1.5;
	padding: 0 5px;
	border-radius: 2px;
	margin: 0px 5px;
	display: inline-block;
	vertical-align: text-top
}

/*その他
---------------------------------------------------------------------------*/
.look {color:#fff;background: #666;padding:5px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px;}
.clear {clear: both;}
ul.disc {padding: 0em 25px 1em;list-style: disc;}
.color1 {color: #28a8b8;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}
.fr {float: right;margin-left: 1%;margin-bottom: 15px;width: 45%;}
.fl {float: left;margin-right: 1%;margin-bottom: 15px;width: 45%;}
.big1 {font-size: 30px;letter-spacing: 0.2em;}
.mini1 {font-size: 11px;}
.sh {display: none;}
.dn {display: none;}



/*画面幅1200px以上の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (min-width:1200px){

/*SERVICEページ
---------------------------------------------------------------------------*/
/*３カラムタイプのボックスの高さ*/
.list.c3,
.list.c3 a {
	height: 380px;
}
/*１カラムでページを表示時の３カラムボックスの幅*/
.c1 .list.c3 {
	width: 23%;
}

}



/*画面幅1600px以上の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (min-width:1600px){

/*SERVICEページ
---------------------------------------------------------------------------*/
/*３カラムタイプのボックスの高さ*/
.list.c3,
.list.c3 a {
	height: 450px;
}
/*１カラムでページを表示時の３カラムボックスの幅*/
.c1 .list.c3 {
	width: 18%;
}
/*共通*/
.list.c3,
.c1 .list.c3 {
	max-width: 400px;	/*この幅以上には広がらないようにする*/
}

}



/*画面幅900px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:900px){

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダー右側のアイコン類*/
#h-nav {
	right: 20%;	/*右から20%の場所に配置*/
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロックの設定*/
#menubar-s {
	display: block;	/*小さい端末用(画面幅800px以下)メニューを非表示から表示に切り替える*/
	background: #41a6df;
	overflow: hidden;
}
/*メニュー１個あたりの設定*/
#menubar-s li {
	float: left;
	width: 50%;		/*幅*/
}
#menubar-s li a {
	text-decoration: none;
	display: block;
	text-align: center;
	line-height: 50px;		/*行間（高さ）*/
	color: #fff;
	border-bottom: 1px solid #fff;
	border-right: 1px solid #fff;
}
#menubar-s li:nth-child(even) a {
	border-right: none;
}
/*大きな端末用(画面幅801px以上)メニューを非表示にする*/
#menubar {
	display: none;
}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block !important;
	z-index: 4 !important;
	position: absolute !important;
	top: 20px !important;		/*上から25pxの場所に配置*/
	right: 3% !important;		/*右から3%の場所に配置*/
	width: 30px !important;	/*幅*/
	border: 1px solid #fff !important;	/*枠線の幅、線種、色*/
	padding: 12px 10px 5px !important;	/*上、左右、下へのボックス内余白*/
    box-sizing: content-box !important;
    opacity: inherit !important;
}
#top #menubar_hdr {
	border: 1px solid #fff;	/*トップページでの枠線の幅、線種、色*/
}
/*３本のバー（1本あたり）*/
#menubar_hdr span {
	display: block;
	border-top: 3px solid #fff;	/*枠線の幅、線種、色*/
	margin-bottom: 7px;			/*バー同士の余白*/
}
#top #menubar_hdr span {
	border-top: 3px solid #fff;	/*トップページでの枠線の幅、線種、色*/
}

/*main,subコンテンツ
---------------------------------------------------------------------------*/
#main, #sub, #p-sub {
	float: none;
	width: auto;
    margin-top: 20px;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
section#new h2.open {
	background: #41a6df url(../images/btn_minus.png) no-repeat right center/34px 34px;
}
section#new h2.close-btn {
	background: #41a6df url(../images/btn_plus.png) no-repeat right center/34px 34px;
}

/*その他
---------------------------------------------------------------------------*/
body.s-n #sub {display: none;}

.nintei_logo{
position: absolute;
  top: -10px;
  right: 70px;
}



}



/*画面幅600px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:600px){

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ロゴ画像*/
#logo img {
	width: 140px;	/*画像幅*/
	left: 3%;
  top: 17px;
}

header{
        padding: 5px 0 15px;
    }
header .inner{
	height: 64px;
}	    

.nintei_logo{
position: absolute;
  top: -10px;
  right: 70px;
}

.nintei_logo img{
	width: 90px;
}

}



/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px){

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ロゴ画像*/
#logo img {
	left: 5%;	/*左から5%の場所に配置*/
	top: 15px;	/*上から15pxの場所に配置*/
}

.nintei_logo{
position: absolute;
  top: -10px;
  right: 70px;
}

.nintei_logo img{
	width: 90px;
}

/*ヘッダー右側のアイコン類*/
#h-nav {
	left: 0px;	/*左から0pxの場所に配置*/
	top: 75px;	/*上から55pxの場所に配置*/
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個あたりの設定*/
#menubar-s li {
	float: none;
	width: 100%;
}
#menubar-s li a {
	border-right: none;
}

/*SERVICEページ
---------------------------------------------------------------------------*/
/*画像の設定*/
.list img.img {
	float: none;
	width: 100%;
}
/*右側のテキスト欄*/
.list .text {
	padding: 2%;
	margin-left: 0;
}
/*３カラムタイプのボックス設定*/
.list.c3 {
	width: auto;
	margin: 0 0 20px;
	float: none;
	height: auto;
}
.list.c3 a {
	height: auto;
}

/*テーブル
---------------------------------------------------------------------------*/
/*テーブル内の左側*/
.ta1 th {
	width: 30%;
	padding: 5px;
}
    
.ta1 td:first-child {
    width: 30%;
}
    
/*テーブル内の右側*/
.ta1 td {
	width: auto;
	padding: 5px;
}
 /*
.ta1 td:first-child{
        white-space: nowrap;
    }    
*/
/*その他
---------------------------------------------------------------------------*/
.ws,.wl {width: 95%;}
.fr,.fl {float: none;margin: 0;margin-bottom: 10px;width: 100%;}
.sh {display: block;}
.pc {display: none;}

}

/*PDFアイコン
---------------------------------------------------------------------------*/

.link_pdf:after{
    content:" ";
    display: inline-block;
    width: 18px;
    height: 18px;
    background: url(https://www.siffler.com/img/icon_pdf.png) no-repeat;
    background-size: 12px;
    background-position: 7px 1px;
    vertical-align: middle;
}


.link_pdf,.link_online{
    text-decoration: none;
    color: #41a6df;
    display: block;
    padding: 0.375rem 0.75rem;
}

.link_pdf:hover,.link_online:hover {
  color: #fff;
  background-color: #41a6df;
  border-color: #41a6df;
}


/*Youtube　埋め込み
---------------------------------------------------------------------------*/

.youtube{
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 56.25%;
}

.youtube iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none; /*境界線の打ち消し*/
}

/*ボタンにロゴ表示------------------------------------------------------------*/
.btn-logo-siffler, .btn-logo-misterminit{
	position:relative;
	padding: 25px 0 25px 64px;
}

.btn-logo-siffler::before,.btn-logo-misterminit::before{
content: '';
display: block;
width: 60px; 
height: 60px;
background-size: contain;
background-repeat:no-repeat;
position:absolute;
top:0;
left:5%;
bottom:0;margin:auto;}

.btn-logo-siffler::before{
	background-image: url(https://www.siffler.com/images/logo_siffler_200_200.png);
}

.btn-logo-misterminit::before{
	background-image: url(https://www.siffler.com/images/logo_misterminit_200_200.png);
}

/*お問い合わせフォームへボタン------------------------------------------------------------*/
.btn-otoiawase{
  background-color: #da0049;
  border-color: #da0049;
  color: #fff;
  text-decoration: none;
}
.btn-otoiawase:hover{
	opacity: 0.7;
	color: #fff;
}


