@charset "utf-8";


/*各cssファイルの読み込み
---------------------------------------------------------------------------*/
@import url("keyframes.css");
@import url("slide.css");

/*全端末（PC・タブレット・スマホ）共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, "Sawarabi Mincho", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	font-size: 17px;	/*文字サイズ*/
	font-weight: 500;
	line-height: 2;		/*行間*/
	color: #333;		/*文字色*/
	-webkit-text-size-adjust: none;
	overflow-x: hidden;
}
body.other {
    font-size: 95%;
}
@media screen and (min-width:768px){
	body.other {
		font-size: 100%;
	}
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form,select,textarea,input {margin: 0px;padding: 0px;}
ul {list-style-type: none;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;object-fit: cover;width: 100%;}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
video {max-width: 100%;}
iframe {width: 100%;}

main {
	margin-top: 500px;	/*スライドショーの高さに合わせて調整して下さい*/
}
@media screen and (min-width:768px){
	main {
		margin-top: 800px;
	}
}

.other main {
	margin-top: 0;
}
section{
	padding: 3% 0;
}
.inner{
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 5%;
}
@media screen and (min-width:768px){
	.inner {
		padding: 0 2%;
	}
}

/*左寄せ*/
.L {display: block;text-align : left;}
/*右寄せ*/
.R {display: block;text-align : right;}
/*中央寄せ*/
.C {display: block;text-align : center;}

/*flex*/
.flex{display: flex;}

/*grid*/
.grid{display: grid;}

/*アイコン設定*/
i.las.la-brush {
    transform: rotate(315deg);
}
.la, .las,
.fa, .far, .fas {
    margin: 0 0.5em;
}

.red{color: red;}

/*フェードイン
---------------------------------------------------------------------------*/
.fadein {
	opacity : 0;
	transform : translate(0, 100px);
	transition : all 1s;
  }

  .fadein.active{
	opacity : 1;
	transform : translate(0, 0);
  }

/*改行設定
---------------------------------------------------------------------------*/
/* スマホ用<br> */
@media screen and (max-width:767px) {
	.br-sp { display: block; }
	.br-tb { display: none; }
	.br-pc { display: none; }
}
/* tablet 縦用<br> */
@media only screen and (min-width:768px) and (max-width:1023px) {
	.br-sp { display: none; }
	.br-tb { display: block; }
	.br-pc { display: none; }
}
/* pc用<br> */
@media screen and (min-width:1024px) {
	.br-sp { display: none; }
	.br-tb { display: none; }
	.br-pc { display: block; }
}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #333;
    transition: 0.3s;
    text-decoration: none;
}
a:hover {
	text-decoration: none;
}

/*各ページtop_img
---------------------------------------------------------------------------*/
.top_img {
    margin: 0;
    padding: 0;
    position: relative;
    justify-content: center;
    align-items: center;
    flex-direction: column;
	top: 0;
}
.top_img .img_all_box {
    width: 100vw;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.top_img .img_all_box img {
    object-position: right -110px bottom 0px;
    width: 100vw;
    object-fit: cover;
    height: 28vh;
}
.ttl_wrap.flex {
    position: absolute;
    z-index: 100;
    color: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 90%;
	margin-top: 5em;
}
.top_img h2, .top_img h2 {
    margin-top: 2%;
/*	CSSプロパティ: clamp( 下限値, 計算式, 上限値 );
	clamp([下限値：最小フォントサイズ],(100vw – [最小ブレイクポイント(スマホ)]) * [上限値 - 下限値]　/　([最大ブレイクポイント(pc)] -  [最小ブレイクポイント(スマホ)]) + [下限値：最小フォントサイズ] , [上限値：最大フォントサイズ] );
*/	font-size: clamp(23px, (100vw - 375px) * 10 / (1280 - 375) + 23px, 33px);
    letter-spacing: 0.1em;
    text-align: left;
}

@media screen and (min-width:768px){
    .top_img .img_all_box img {
        height: 38vh;
		object-position:center;
    }
}

/*bg設定
---------------------------------------------------------------------------*/
.bgGY{
	background: #f3f3f3;
}

/*マーカー
---------------------------------------------------------------------------*/
.marker {
	background: linear-gradient(transparent 70%, rgb(0 112 254 / 14%) 50%);
	display: inline;
}


/*btn設定
---------------------------------------------------------------------------*/
.btn {
    text-align: center;
    text-decoration: none;
    display: block;
	cursor: pointer;
}
.btn:hover{
	opacity: 0.7;
}

.btnWT_arrow a {
    background: #fff;
    color: #343434;
    border-radius: 50px;
    padding: 10px;
    border: solid 1px #343434;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
	margin: 3em 0 0;
    max-width: 300px;
    width: auto;
}
.btnWT_arrow a::after {
    content: "";
    position: absolute;
    top: 50%;
    bottom: 0;
    right: 2em;
    font-size: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: right 0.3s;
    width: 6px;
    height: 6px;
    border-top: solid 2px currentColor;
    border-right: solid 2px currentColor;
    transform: translateY(-50%) rotate(45deg);
}
.btnWT_arrow a:hover {
	background: #343434;
	color: #fff;
}
.btnWT_arrow a:hover::after {
	right: 1.4em;
}

/*ボタン白*/
.btnWT {
	background: #ffffff;
    border: 1px solid #999;
    padding: 0.5em 2em;
}
a.btnWT {
    color: #333;
}

/*ボタン黒*/
.btnBK {
	background: #000000;
    width: 15em;
    border: none;
	color: #fff;
	margin: 0.5em auto;
    padding: 1em;
    font-size: 1.1em;
}
a.btnBK {
	color: #fff;
}

/*ボタングレー*/
.btnGY {
    background: #999;
    width: 15em;
    border: none;
    color: #fff;
	margin: 0.5em auto;
    padding: 1em;
    font-size: 1.1em;
}
a.btnGY {
	color: #fff;
}

/*ヘッダーブロック（ロゴやメニューが入った最上段ブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	position: fixed;	/*ヘッダーを上部に固定する指定*/
	z-index: 150;
	left: 0px;			/*左からの配置場所の指定*/
	top: 0px;			/*上からの配置場所の指定*/
	width: 100%;		/*幅*/
	background: #000000c2;	/*背景色*/
	height: 100px;		/*ヘッダーの高さ*/
	flex-direction: column;
    justify-content: center;
}
/*ロゴ画像*/
header #logo img {
	height: 45px;
    padding-bottom: 0.4em;
	width: auto;
}
header .inner.flex {
	justify-content: center;
    width: 100%;
    align-items: center;
    padding: 0;
	max-width: 100%;
}
header .link_pc.btn {
    display: none;
}
header .link_sp.btnWT {
    padding: 1em 15px;
    text-align: left;
}
header .link_sp.btn:hover {
    opacity: 1;
}

@media screen and (min-width:901px){
	header .link_pc.btnWT {
		display: block;
		border-radius: 50px;
		padding: 0.3em 1em;
		width: 40%;
	}
	header #logo img {
		width: 80%;
		height: auto;
	}
	header .link_sp.btnWT {
		display: none;
	}
	header .inner.flex {
		width: 95%;
	}
	header .hd_r.flex {
		width: 100%;
		align-items: center;
		justify-content: flex-end;
	}
	header #logo {
		margin-right: 0;
		width: 50%;
	}
}
@media screen and (min-width:1280px){
	header #logo {
		margin-right: 0;
		width: 40%;
	}
	header .link_pc.btnWT {
		padding: 0.3em 2em;
		width: auto;
	}
	header .inner.flex {
		justify-content: space-between;
	}
}


/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体*/
#menubar ul.menuArea.flex {
    flex-wrap: wrap;
}
/*メニュー１個あたりの指定*/
#menubar li {
	letter-spacing: 0.1em;
	font-weight: bold;
}
#menubar li a, .ddmenu-title {
	display: block;text-decoration: none;
	color: #fff;	/*文字色*/
	padding: 0px 15px;	/*上下、左右へのメニュー内の余白*/
	line-height: 40px;	/*行間。headerのheightと数字を合わせる。*/
}
#menubar li a, .ddmenu-title:last-of-type{
	padding-right: 20px;
  }
/*ドロップダウンメニューの親メニューへの追加指定。基本指定は上の.ddmenu-titleにあります。*/
.ddmenu-title {
	padding-left: 40px;	/*アイコン分の余白を確保*/
	background: url(../images/arrow1.png) no-repeat 10px center / auto 25px;	/*アイコン画像の読み込み。最後の25pxは高さ指定。*/
}

/*小さい端末用メニューを非表示にする*/
#menubar-s,#menubar-s2 {display: none;}
/*３本バーアイコンを表示させない*/
#menubar_hdr {display: none;}

@media screen and (min-width:1280px){
	#menubar ul.menuArea.flex {
		flex-wrap: nowrap;
	}
}
/*ドロップダウンメニュー（ddmenu）
---------------------------------------------------------------------------*/
/*メニューブロック全体*/
#menubar ul.ddmenu {
	position:absolute;visibility: hidden;z-index: 10;
	width: auto;
	margin-left: -40px;	/*.ddmenu-titleのpadding-leftと数字を合わせてマイナス記号をつける。*/
}
/*メニュー１個あたりの指定*/
#menubar ul.ddmenu li a {
	background: #000;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.8);	/*背景色。0,0,0は黒の事で0.8は色が80%出た状態。*/
	border: 1px solid rgba(255,255,255,0.4);	/*線の幅、線種、色。255,255,255は白の事で0.4は色が40%出た状態。*/
	border-top: none;	/*上の線だけ消す*/
}
/*１つ目のメニューへの追加指定*/
#menubar ul.ddmenu li:first-child a {
	border-top: 1px solid rgba(255,255,255,0.4);	/*上の線の指定*/
}
/*ドロップダウンのマウスオン事*/
li:hover ul.ddmenu {
	animation-name: opa1;	/*keyframes.cssで使う@keyframesの指定*/
	animation-duration: 0.4S;	/*アニメーションの実行時間。0.4秒。*/
	animation-fill-mode: both;	/*アニメーションの待機中は最初のキーフレームを維持、終了後は最後のキーフレームを維持。*/
}

/*タイトル
---------------------------------------------------------------------------*/
/*h2タグ*/
#contents h2 {
    clear: both;
    margin: 0 auto 2rem;
	/*	CSSプロパティ: clamp( 下限値, 計算式, 上限値 );
	clamp([下限値：最小フォントサイズ],(100vw – [最小ブレイクポイント(スマホ)]) * [上限値 - 下限値]　/　([最大ブレイクポイント(pc)] -  [最小ブレイクポイント(スマホ)]) + [下限値：最小フォントサイズ] , [上限値：最大フォントサイズ] );
*/	font-size: clamp(23px, (100vw - 375px) * 10 / (1280 - 375) + 23px, 30px);
    text-align: center;
    font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, "Sawarabi Mincho", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	position: relative;
	display: block;
	margin-bottom: 1em;
	font-weight: bold;
}
#contents h2:before {
    content: '';
    position: absolute;
    bottom: -5px;
    display: inline-block;
    width: 60px;
    height: 4px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #c3c3c3;
    border-radius: 2px;
}

/*h3タグ*/
#contents h3 {
	clear: both;
	/*	CSSプロパティ: clamp( 下限値, 計算式, 上限値 );
	clamp([下限値：最小フォントサイズ],(100vw – [最小ブレイクポイント(スマホ)]) * [上限値 - 下限値]　/　([最大ブレイクポイント(pc)] -  [最小ブレイクポイント(スマホ)]) + [下限値：最小フォントサイズ] , [上限値：最大フォントサイズ] );
*/	font-size: clamp(20px, (100vw - 375px) * 10 / (1280 - 375) + 20px, 25px);
}
#contents h3::before {
    display: inline-block;
    content: "■";
    transform: scale(0.8);
    padding-right: 10px;
    margin-left: -0.2em;
    color: #b5b5b5;
}

/*h4タグ*/
#contents h4 {
	clear: both;
    text-align: center;
    font-size: 1.2em;
}


/*page_block
---------------------------------------------------------------------------*/
.pageContentsWrap{
	padding: 1em 0 2em;
}
.img_box,
.img_box2{
	width: 100%;
}
.img_all_box{
	display:block;
	width:100%;
	margin:auto;
}
.text_contencts {
    width: 100%;
	margin-top: 1rem;
}
.page_text,
.page_text2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.page_all_text{
	display:block;
	width:100%;
}

@media screen and (min-width:768px){
	.text_contencts {
		width: calc((100% - 0px * 2) /2);
		margin-top: 0;
		font-size: 100%;
	}
	.page_text {
		flex-direction: row;
	}
	.page_text2 {
		flex-direction: row-reverse;
	}
	.img_box,
	.img_box2 {
		width: calc((100% - 30px * 2) /2);
	}
}

/*お知らせ
---------------------------------------------------------------------------*/
ul.ul_news{
	width: 98%;
	margin: 0 auto;
}
span.icon.news {
    background: #6f6d6d;
    color: #fff;
    padding: 5px 20px;
    margin-right: 0.5em;
    border-radius: 3px;
}
ul.ul_news .dash_hr {
    border: none;
    border-top: dashed 1px #cccccc;
    height: 1px;
    color: #FFFFFF;
    background-color: #FFFFFF;
}
span.newicon {
    background: #ff0000;
    color: #fff;
    padding: 5px 10px;
    margin-left: 0.5em;
    border-radius: 3px;
    font-size: 80%;
}


/*テーブル
---------------------------------------------------------------------------*/
/*会社概要・沿革*/
table.table_profile
,table.table_enkaku{
	width: 100%;
    text-align: left;
    margin: 0 auto;
}
table.table_profile tr,
table.table_enkaku tr{
	border-bottom: 1px solid #ccc;
}
table.table_profile th,table.table_profile td,
table.table_enkaku th,table.table_enkaku td{
	display: block;
    border-spacing: 0px;
	width: auto;
	padding: 10px;
}
@media screen and (min-width:768px){
	table.table_profile th{
		width: 30%;
	}
	table.table_enkaku th{
		width: 35%;
	}
	table.table_profile th,	table.table_profile td,
	table.table_enkaku th,table.table_enkaku td{
		display: table-cell;
		padding: 20px;
	}
	table.table_enkaku th.year {
		text-align: left;
	}
	table.table_enkaku th.month {
		text-align: right;
	}
}

/*index
---------------------------------------------------------------------------*/
/*共通設定*/
.index_bg-left.online h2,
.index_bg-right.about h2{
	text-align: left!important;
}
.index_bg-left.online h2:before,
.index_bg-right.about h2:before{
	content: none!important;
}

/*オンラインストアリンクエリア*/
section.index_bg-left.online {
	background-image: url(../images/index_bg-left.png);
    background-repeat: no-repeat;
	background-size:auto;
    overflow-x: hidden;
    padding: 0;
    height: 60vh;
}
.inner.bkRGBA {
    height: 100%;
    background: rgba(250,250,250,0.5);
}
.index_bg-left.online .page_all_text {
	margin-left: auto;
    width: 100%;
}
.index_bg-left.online .page_all_text .wrap.flex{
    flex-direction: column;
	width: 100%;
}
.index_bg-left.online h2,
.index_bg-left.online p,
.index_bg-left.online a.flow.flex,
.index_bg-left.online a.flow.flex i{
	text-shadow: 2px 2px 5px #fff, -2px 2px 5px #fff, 2px -2px 5px #fff, -2px -2px 5px #fff;
	font-weight: bold;
}
.index_bg-left.online .flow.flex {
    align-items: center;
    justify-content: flex-end;
	font-size: 1.1em;
}
.index_bg-left.online .btnBK {
	margin: 0.5em 0;
	width: auto;
	padding: 1em 0.5em;
    font-size: 1.5em;
}
@media screen and (min-width:768px){
	section.index_bg-left.online {
		height: auto;
	}
	.index_bg-left.online h2{
		font-size: 2.5em!important;
	}
	.index_bg-left.online .page_all_text .wrap.flex{
		width: 60%;
	}
	.index_bg-left.online .flow.flex i.las.la-chevron-circle-right {
		font-size: 2em;
	}
	.index_bg-left.online .page_all_text {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
}
@media screen and (min-width:1024px){
	section.index_bg-left.online {
		padding: 0 0 5%;
		background-size:cover;
	}
	.inner.bkRGBA {
		background: none;
	}
	.index_bg-left.online .page_all_text {
		width: calc(100% /2);
	}
	.index_bg-left.online .page_all_text .wrap.flex{
		width: 75%;
	}
}

/*事業案内リンクエリア*/
section.index_bg-right.bgGY.about {
    padding: 2% 0;
}
.index_bg-right.about.bgGY .about.flex {
	align-items: center;
    font-size: 1.5em;
    font-weight: 500;
}
.index_bg-right.about.bgGY .about.flex i.las.la-chevron-circle-right {
	font-size: 1.3em;
}
.index_bg-right.about.bgGY .img_box2 img{
    aspect-ratio: 3 / 2;
    width: 100%;
}
@media screen and (min-width:768px){
	.index_bg-right.about.bgGY .img_box2,
	.index_bg-right.about.bgGY .text_contencts{
		width: 50%;
	}
}
@media screen and (min-width:1024px){
	.index_bg-right.about.bgGY .img_box2{
		width: 60%;
	}
	.index_bg-right.about.bgGY .text_contencts {
		width: 40%;
	}
}

/*会社情報
---------------------------------------------------------------------------*/
.table_profile .btnBK {
    margin: 0;
}

/*私たちについて
---------------------------------------------------------------------------*/
.about .wrap {
    text-align: center;
    font-size: clamp(18px, (100vw - 375px) * 10 / (1280 - 375) + 18px, 20px);
    background: #e3e3e3;
    padding: 2rem;
    border-radius: 10px;
}

.about .wrap span.title {
	font-size: clamp(23px, (100vw - 375px) * 10 / (1280 - 375) + 23px, 28px);
    letter-spacing: normal;
}
.about .wrap span.sub{
	font-size: clamp(20px, (100vw - 375px) * 10 / (1280 - 375) + 20px, 23px);
	color: #0070ff;
}
.about .wrap span.marker{
	font-size: clamp(30px, (100vw - 375px) * 10 / (1280 - 375) + 30px, 50px);
	letter-spacing: 10px;
	color: #0011ff;
}


/*店舗案内
---------------------------------------------------------------------------*/
.store .pageContentsWrap {
    padding: 0 0;
}
.store_wrap section {
    margin-bottom: 5%;
    padding: 0 0;
}
.store_wrap hr:last-of-type {
    display: none;
}
.store_wrap .grid {
    grid-template-columns: 55% 1fr;
    grid-template-rows: auto auto;
    justify-content: center;
    align-items: center;
    grid-column-gap: 20px;
}
.store_wrap .grid .add {
	order: 1;
    grid-column: 1 / 3;
    grid-row: 1 / 1;
	margin-bottom: 1em;
}
.store_wrap .grid .acc {
	order: 1;
    grid-column: 1 / 3;
    grid-row: 2 / 3;
	margin-bottom: 1em;
}
.store_wrap .grid .map {
	order: 1;
    grid-column: 1 / 3;
    grid-row: 3 / 4;
}
.store_wrap .solid_hr {
    border: none;
    border-top: solid 1px #cccccc;
    height: 1px;
    color: #FFFFFF;
    background-color: #FFFFFF;
	margin: 3% 0 5%;
}
@media screen and (min-width:768px){
	.store_wrap .grid .add {
		grid-column: 1 / 2;
		grid-row: 1 / 2;
		margin-bottom: 0;
	}
	.store_wrap .grid .acc {
		grid-column: 1 / 2;
		grid-row: 2 / 3;
		margin-bottom: 0;
	}
	.store_wrap .grid .map {
		grid-column: 2 / 2;
		grid-row: 1 / 3;
	}
}

/*採用情報
---------------------------------------------------------------------------*/
@media screen and (min-width:768px){
	.recruit .img_all_box img{
		width: 35%;
		margin-bottom: 3%;
	}
	.recruit .page_all_text p{
		text-align: center;
	}
}

/*お問合わせ
---------------------------------------------------------------------------*/
.contact_form .inquiry_form {
    width: 90%;
    margin: 0 auto;
}
.contact_telArea {
    margin-top: 1em;
}
.contact_form .contact_tel_fax {
    margin-bottom: 1em;
}
.contact_form .contact_tel_fax p.txt {
    font-size: 90%;
	margin-bottom: 1em;
}
.contact_form .contact_tel_fax .tel {
	font-size: 130%;
    font-weight: bold;
}
.contact_form .contact_item {
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
    border-bottom-width: 1px;
    border-bottom-style: dashed;
    border-bottom-color: #CCCCCC;
	padding: 20px 0;
}
.contact_form .contact_article {
    font-weight: bold;
    text-align: left;
    padding: 5px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    flex-wrap: wrap;
}
.contact_form span.memo {
    font-weight: normal;
    width: 100%;
}
.contact_form .contact_input_area {
    width: 100%;
    text-align: left;
}
.contact_form .contact_article_comments {
	text-align: left;
	font-size: 0.8em;
	padding: 1em 5em;
	clear: both;
}
.contact_form .text_area {
    padding: 2em 0 1em;
}
.contact_form select {
    margin-right: 1rem;
    line-height: 30px;
    outline: none;
    background: #fff;
    padding: 0.5rem;
    border: solid 1px #ccc;
	border-radius: 3px;
}
/*記入枠の色*/
.contact_form .contact_input_area input ,
.contact_form .contact_input_area textarea {
	font-size: 1em;
	color: #666;
	background-color:#fff;
	border: solid 1px #ccc;
	border-radius: 3px;
    box-sizing: border-box;
	font-family: auto;
}
/*必須表示*/
.need {
	padding: 0.1em 0.5em;
    font-size: 0.7em;
    color: #FFFFFF;
    background-color: #F00;
    margin: 0 1em 0 0;
    border-radius: 4px;
}
.contact_form .contact_input_area .input_space_01,
.contact_form .contact_input_area .input_space_03 {
    width: 100%;
    height: 2em;
    padding: 3px 10px;
}
.contact_form .contact_input_area .input_space_02 {
	width:100%;
    padding: 3px 10px;
}
@media screen and (min-width:768px){
    .contact_form span.memo {
        margin-left: 2em;
    }
    .contact_form .contact_article {
        width: 30%;
    }
    .contact_form .contact_input_area {
		width: 55%;
	}
	.contact_form .contact_input_area .input_space_03 {
		width: 70%;
	}
}

/*確認ボタン*/
.btnArea_submit2 {
    clear: both;
    padding-top: 2em;
	width: 80%;
}
.contact_mailform .btn {
	margin: 1.5em;
}
@media screen and (min-width:768px){
	.btnArea_submit2.flex {
		flex-direction: row;
	}
}

/*内容確認*/
dl.contact_confirm {
	display: flex;
	flex-flow: column;
	width: 100%;
    text-align: left;
}
.contact_confirm dt {
	flex-basis: 20%;
    padding: 10px 20px 0;
	border-bottom: none;
    font-weight: bold;
}
.contact_confirm dd {
	flex-basis: 70%;
    padding: 10px 20px;
	border-bottom: 1px solid #ccc;
}

input.btn.btnGN,
input.btn.btnGY {
    border-radius: 10px;
}
input.btn.btnGY.auto {
    width: auto;
}

@media screen and (min-width:768px){
    dl.contact_confirm{
		flex-flow: row wrap;
        width: 90%;
        padding: 2em 0 0;
	}
    .contact_confirm dt {
        border-bottom: 1px solid #ccc;
        padding: 20px;
    }
    .contact_confirm dd {
        padding: 20px;
    }
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;
	color: #fff;			/*文字色*/
}
footer a {color: #fff;text-decoration: none;}
footer a:hover {color: #fff;}
footer .pr {display: block;}

/*お問合わせエリア*/
footer .footer_contact.bg {
    background: url(../images/footer_contact_bg.png) ;
	background-repeat: no-repeat;
	background-size:cover;
	background-position: bottom center;
    overflow-x: hidden;
	padding: 15% 0;
	height: auto;
    position: relative;
}
footer .footer_contact.bg p{
	font-size: 1.1em;
    text-align: center;
}
footer .footer_contact.bg ul.flex {
    flex-wrap: wrap;
    justify-content: center;
	flex-direction: column;
	margin: 1em 0;
	gap: 20px;
}
footer .footer_contact.bg li.contact_form,
footer .footer_contact.bg li.contact_tel{
	width: 90%;
    padding: 2em 1em;
    text-align: center;
    background: #fff;
	color: #333;
}
footer .footer_contact.bg li.contact_form p,
footer .footer_contact.bg li.contact_tel p{
	font-size: 1em;
}
footer .footer_contact.bg li.contact_tel {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
footer .footer_contact.bg li.contact_tel span{
	font-size: 2em;
}
footer .footer_contact.bg li.contact_tel p.small.flex {
    font-size: 90%;
	text-align: left;
    justify-content: center;
}
footer .footer_contact.bg .btnBK {
    border-radius: 50px;
    width: 90%;
    padding: 0.5em;
}
@media screen and (min-width:768px){
	footer .footer_contact.bg {
		background-position: center;
		padding: 3% 0 5%;
	}
	footer .footer_contact.bg ul.flex {
		column-gap: 1px;
		flex-direction: row;
		margin: 3em 0 0;
	}
	footer .footer_contact.bg li.contact_form,
	footer .footer_contact.bg li.contact_tel{
		width: 40%;
	}
}
@media screen and (min-width:1024px){
	footer .footer_contact.bg .btnBK {
		width: 50%;
	}
}

/*アドレスエリア*/
footer .footerAddress {
	background: #444444;
	padding: 3% 0 1%;
    width: 100%;
}
footer ul.addressArea.flex {
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}
footer ul.addressArea.flex li {
    width: 100%;
    text-align: left;
}
footer .addressArea p {
    font-size: 90%;
}
@media screen and (min-width:768px){
	footer ul.addressArea.flex li {
        width: 40%;
	}
	footer ul.addressArea.flex img.footerLogo {
		width: 80%;
	}
}

/*siteMapエリア*/
footer nav.footernav {
	display: none;
}
@media screen and (min-width:1025px){
	footer nav.footernav {
		display: block;
		background: #444444;
		font-size: 85%;
	}
	footer nav.footernav .inner.flex {
		justify-content: center;
		padding: 1% 0;
		border-top: solid 1px #fff;
	}
	footer nav.footernav ul.title {
		margin: 0 1%;
	}
}

/*コピーライトエリア*/
footer .footerCopyright {
	padding: 1% 0;
	font-size: 50%;
	background: #000;
}
footer .footerCopyright img{
	display: none;
}

/*ログイン*/
footer table.login_wrap {
    color: #000;
    margin: 1% auto;
}



/*個人情報保護方針・サイトポリシー
---------------------------------------------------------------------------*/
dl.pp_list,
dl.site_porlicy_list {
	display: flex;
	flex-flow: column;
	width: 100%;
}
.pp_list dt,
.site_porlicy_list dt{
	font-weight: bold;
	font-size: 1.1em;
}
.pp_list dt,
.pp_list dd,
.site_porlicy_list dt,
.site_porlicy_list dd {
	flex-basis: 100%;
}
.pp_list dd,
.site_porlicy_list dd {
	padding: 0 0 20px;
	border-bottom: 1px solid #ccc;
}
.pp_list dt,
.site_porlicy_list dt {
	 padding: 20px 0 0;
}

/*サイトマップ
---------------------------------------------------------------------------*/
dl.sitemap_list {
	display: flex;
	flex-flow: column;
	width: 100%;
}
.sitemap_list dt {
	flex-basis: 28%;
    padding: 10px 20px 0;
	border-bottom: none;
    font-weight: bold;
}
.sitemap_list dt .sm_list {
    position: relative;
    padding-left: 15px;
    color: #666;
    text-decoration: none;
}
.sitemap_list dt .sm_list:before {
    content: "";
    position: absolute;
    top: 0.25em;
    left: 0;
    width: 0;
    height: 0;
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent #666666;
}
.sitemap_list dt .sm_clist {
    position: relative;
    padding-left: 15px;
}
.sitemap_list dt .sm_clist:before {
    content: "";
    position: absolute;
    top: 0.45em;
    left: 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 5px;
    height: 5px;
    border-top: 2px solid #f9c785;
    border-right: 2px solid #f9c785;
}
.sitemap_list dd {
	flex-basis: 60%;
    padding: 10px 20px;
	border-bottom: 1px solid #ccc;
}

@media screen and (min-width:768px){
    dl.sitemap_list{
		flex-flow: row wrap;
	}
    .sitemap_list dt {
        border-bottom: 1px solid #ccc;
        padding: 20px;
    }
    .sitemap_list dd {
        padding: 20px;
    }
}


/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
/*通常時のボタンは非表示*/
body .nav-fix-pos-pagetop a {display: none;}
/*fixmenu_pagetop.jsで設定している設定値になったら出現するボタンスタイル*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a {
	display: block;text-decoration: none;text-align: center;
	width: 50px;		/*幅*/
	line-height: 50px;	/*高さ*/
	z-index: 1;
	position: fixed;
	bottom: 20px;	/*下から20pxの場所に配置*/
	right: 3%;		/*右から3%の場所に配置*/
	background: #666;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.6);	/*背景色。0,0,0は黒の事。0.6は60%色がついた状態。*/
	color: #fff;	/*文字色*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	animation-name: opa1;	/*keyframes.cssで使う@keyframesの指定*/
	animation-duration: 1S;	/*アニメーションの実行時間*/
	animation-fill-mode: both;	/*アニメーションの待機中は最初のキーフレームを維持、終了後は最後のキーフレームを維持。*/
}
/*マウスオン時*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
	background: #999;	/*背景色*/
}

/*メニュー
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:900px){

/*メインメニュー
---------------------------------------------------------------------------*/
/*スマホ用メニューブロック全体*/
#menubar-s {
	display: block;
	overflow: auto;
	height: 100%;
	text-align: left;
	position: fixed;
	z-index: 100;
	top: 0px;
	left: 0;
	width: 100%;
	background: rgba(0,0,0,0.8);	/*背景色*/
	border-top: 1px solid #fff;		/*上の線の幅、線種、色*/
	animation-name: opa1;		/*keyframes.cssで使う@keyframesの指定*/
	animation-duration: 0.5s;	/*アニメーションの実行時間。0.5秒。*/
	animation-fill-mode: both;	/*待機中は最初のキーフレームを、完了後は最後のキーフレームを維持*/
}
/*メニュー１個あたりの設定と、子メニューの見出し。*/
#menubar-s ul li a,#menubar_hdr2 {
	display: block;text-decoration: none;
	padding: 10px 15px;	/*上下、左右へのメニュー内の余白*/
	border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
	color: #fff;		/*文字色*/
}
/*PC用メニューを非表示にする*/
#menubar {display: none;}

/*子メニュー
---------------------------------------------------------------------------*/
/*子メニューの見出しの追加。基本は上のブロックで設定しています。*/
#menubar_hdr2 {
	padding-left: 35px;
}
/*子メニューメニューブロック全体*/
#menubar-s2 {
	display: block;
	margin-top: 10px;
	background: rgba(0,0,0,0.5);	/*背景色*/
	border: 1px solid #666;		/*上の線の幅、線種、色*/
	border-bottom: none;		/*下の線のみ消す*/
}
/*「＞」アイコン設定*/
#menubar_hdr2.close {
	background: url(../images/arrow2.png) no-repeat 10px 18px / 18px;
}
/*「＾」アイコン設定*/
#menubar_hdr2.open {
	background: url(../images/arrow3.png) no-repeat 10px 18px / auto 18px;
}
/*子メニュー１個あたりの設定*/
#menubar-s2 li a {
	color: #fff !important;	/*文字色*/
	padding: 5px;	/*余白*/
	border-bottom: 1px solid #666 !important;		/*下の線の幅、線種、色*/
}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: fixed;
	z-index: 200;
	top: 20px;	/*上からの配置場所*/
	right: 10px;	/*右からの配置場所*/
}
/*アイコン共通設定*/
#menubar_hdr.close,
#menubar_hdr.open {
	width: 50px;	/*幅*/
	height: 50px;	/*高さ*/
}
/*三本バーアイコン*/
#menubar_hdr.close {
	background: url(../images/icon_menu.png) no-repeat center top/50px;	/*背景画像の読み込み、画像の上半分（３本マーク）を表示。幅は50px。*/
}
/*閉じるアイコン*/
#menubar_hdr.open {
	background: url(../images/icon_menu.png) no-repeat center bottom/50px;	/*背景画像の読み込み、画像の下半分（×マーク）を表示。幅は50px。*/
}
}
