@charset "utf-8";
@import url(//use.fontawesome.com/releases/v5.0.11/css/all.css);

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

/*全体の設定
---------------------------------------------------------------------------*/
body {
    margin: 0px;
    padding: 0px;
    color: #666;    /*全体の文字色*/
	font-family:"sans-serif","ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;    /*フォント種類*/
    font-size: 15px;    /*文字サイズ*/
    line-height: 2;        /*行間*/
    background: #fff;    /*背景色*/
    -webkit-text-size-adjust: none;
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form {margin: 0px;padding: 0px;font-size: 100%;font-weight: normal;}
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%;}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
    color: #666;    /*リンクテキストの色*/
    -webkit-transition: 0.5s;    /*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
    transition: 0.5s;            /*同上*/
}
a:hover {
    color: #c70067;            /*マウスオン時の文字色*/
    text-decoration: none;    /*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*inner共通
---------------------------------------------------------------------------*/
.inner {
    max-width: 1200px;    /*サイトの最大幅*/
    margin: 0 auto;
    padding: 0 2%;
}


/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
    border-top: 4px solid #c70067;    /*上の線の幅、線種、色*/
}
header .inner {
    height: 100px;    /*高さ*/
}
/*ロゴ画像*/
header #logo {
    width: 350px;    /*ロゴ画像の幅*/
    float: left;    /*左に回り込み*/
    margin-top: 15px;    /*ロゴの上にあける余白。上下のバランスをここで調整して下さい。*/
}

/*ヘッダー右側の電話番号ブロック
---------------------------------------------------------------------------*/
/*ブロック全体*/
#contact {
    float: right;        /*右に回り込み*/
    margin-top: 9px;    /*ブロックの上にあける余白。上下のバランスをここで調整して下さい。*/
    width: 350px;        /*ブロック幅*/
    border-radius: 6px;    /*角丸のサイズ*/
    padding: 5px;        /*ボックス内の余白*/
    border: 1px solid #dcdcdc;    /*枠線の幅、線種、色*/
    text-align: center;    /*文字をセンタリング*/
}
/*TEL*/
.tel {
    letter-spacing: 0.1em;    /*文字間隔を広くする設定。通常がいいならこの行削除。*/
    font-size: 20px;        /*文字サイズを大きく*/
    font-family: 'Roboto', sans-serif;
}
.tel .bld{
    font-weight: 800;
    font-size: 120%;
    color: #c70067;
}
/*TELの受付時間の小文字部分*/
.tel span {
    font-size: 11px;    /*文字サイズを小さく*/
    display: block;
    letter-spacing: 0.2em;    /*文字間隔*/
}
.tel a{
    text-decoration: none;
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar {
    clear: both;
    overflow: hidden;
    position: relative;z-index: 1;
    background: linear-gradient(#fff, #eee);    /*グラデーション*/
    border-top: 1px solid #dcdcdc;        /*メニュー上の線の幅、線種、色*/
    border-bottom: 1px solid #dcdcdc;    /*メニュー下の線の幅、線種、色*/
    box-shadow: 0px 10px 40px rgba(0,0,0,0.1);    /*ボックスの影。右に、下に、広げる幅、0,0,0は黒の事で0.2は透明度20%の事。*/
}
/*メニュー１個あたりの設定*/
#menubar li {
    float: left;    /*左に回り込み*/
    width: 16.6%;    /*メニュー幅（100÷6個=16.6%）　もし４個にするなら100÷4=25%になる。*/
}
#menubar li a {
    display:  block;
    text-decoration: none;
    text-align: center;
    line-height: 50px;    /*メニューの高さ*/
    padding-top: 4px;    /*下のブロックの「border-bottom」と「bottom」の数字と合わせる。*/
}
/*下線のアニメーション設定*/
#menubar li::after {
    transition: 0.3s;    /*0.3秒かけてアニメーションを実行する。*/
    content: "";
    display: block;
    border-bottom: 4px solid #c70067;    /*下線の幅、線種、色。上のブロックの「padding-top」と、下の行の「bottom」の数字と合わせる。*/
    position: relative;left: 0px;bottom: -4px;    /*bottomの数字は上のブロックの「padding-top」と、上の行の「border-bottom」の数字と合わせる。※マイナス記号は残したまま。*/
}
#menubar li:hover::after,#menubar li.current::after {
    bottom: 0px;
}
/*スマホ用メニューを表示させない*/
#menubar-s {
    display: none;
}
/*３本バーアイコンを表示させない*/
#menubar_hdr {
    display: none;
}

/*トップページメイン画像
---------------------------------------------------------------------------*/
#mainimg {
    box-shadow: 0px 10px 40px rgba(0,0,0,0.2);    /*ボックスの影。右に、下に、広げる幅、0,0,0は黒の事で0.2は透明度20%の事。*/
}

/*コンテンツ
---------------------------------------------------------------------------*/
.contents {
    clear: both;
    overflow: hidden;
    padding: 40px 0;    /*上下、左右に空けるボックス内の余白*/
	background: #fff;
}
/*コンテンツのh2タグの設定*/
.contents h2 {
    clear: both;
    font-size: 20px;    /*文字サイズ*/
    line-height: 1.4;    /*行間*/
    margin-bottom: 20px;
    padding: 10px 20px;    /*上下、左右への余白*/
    background: linear-gradient(#fff, #eee);    /*グラデーション*/
    border-bottom: 1px solid #dcdcdc;    /*メニュー下の線の幅、線種、色*/
	border-top: 4px solid #c70067;    /*メニュー下の線の幅、線種、色*/
    box-shadow: 0px 1px 3px rgba(0,0,0,0.15);    /*ボックスの影。右に、下に、広げる幅、0,0,0は黒の事で0.15は透明度15%の事。*/
    text-shadow: 0px 2px #fff;    /*テキストの影。右へ、下へ、色。*/
}
/*コンテンツのh2タグ内のspanタグ設定（色付き文字部分）*/
.contents h2 span {
    display: block;
    color: #c70067;        /*文字色*/
    font-size: 12px;    /*文字サイズ*/
    letter-spacing: 0.1em;    /*文字間隔を少し広げる設定*/
    padding-left: 5px;
}
/*コンテンツのh3タグの設定*/
.contents h3 {
    clear: both;
    margin-bottom: 20px;
    padding: 5px 20px;    /*上下、左右への余白*/
    border: 1px solid #dcdcdc;    /*線の幅、線種、色*/
    background: #f8f8f8;        /*背景色*/
}
/*コンテンツの段落タグ設定*/
.contents p {
    padding: 0px 20px 15px;    /*上、左右、下への余白*/
}
.contents h2 + p,
.contents h3 + p {
    margin-top: -10px;
}
.contents2 {
    clear: both;
    overflow: hidden;
    padding: 40px 0;    /*上下、左右に空けるボックス内の余白*/
	background: #ffffe0;
}
/*コンテンツのh2タグの設定*/
.contents2 h2 {
    clear: both;
    font-size: 20px;    /*文字サイズ*/
    line-height: 1.4;    /*行間*/
    margin-bottom: 20px;
    padding: 10px 20px;    /*上下、左右への余白*/
    background: linear-gradient(#fff, #eee);    /*グラデーション*/
    border-bottom: 1px solid #dcdcdc;    /*メニュー下の線の幅、線種、色*/
	border-top: 4px solid #c70067;    /*メニュー下の線の幅、線種、色*/
    box-shadow: 0px 1px 3px rgba(0,0,0,0.15);    /*ボックスの影。右に、下に、広げる幅、0,0,0は黒の事で0.15は透明度15%の事。*/
    text-shadow: 0px 2px #fff;    /*テキストの影。右へ、下へ、色。*/
}
/*コンテンツのh2タグ内のspanタグ設定（色付き文字部分）*/
.contents2 h2 span {
    display: block;
    color: #c70067;        /*文字色*/
    font-size: 12px;    /*文字サイズ*/
    letter-spacing: 0.1em;    /*文字間隔を少し広げる設定*/
    padding-left: 5px;
}
/*コンテンツのh3タグの設定*/
.contents2 h3 {
    clear: both;
    margin-bottom: 20px;
    padding: 5px 20px;    /*上下、左右への余白*/
    border: 1px solid #dcdcdc;    /*線の幅、線種、色*/
    background: #f8f8f8;        /*背景色*/
}

.contents2 h2 + p,
.contents2 h3 + p {
    margin-top: -10px;
}

.contents3 {
	clear: both;
	overflow: hidden;
	padding: 40px 0;    /*上下、左右に空けるボックス内の余白*/
	background: #c70067;
}
.contents3 img {
	width: 95%;
	box-shadow: 0px 10px 40px rgba(0,0,0,0.2);
	border-radius: 25px;
}
.contents3 img:hover {
	transition: .3s;
	transform: scale(0.97); 
	opacity: 1.0;
	-webkit-transform: translateY(-5px);
	transform: translateY(-5px);
}
.contents4 {
	clear: both;
	overflow: hidden;
	padding: 40px 0;    /*上下、左右に空けるボックス内の余白*/
	background: #ffffe0;
}
/*コンテンツのh2タグの設定*/
.contents4 h2 {
	clear: both;
	font-size: 20px;    /*文字サイズ*/
	line-height: 1.4;    /*行間*/
	margin-bottom: 20px;
	padding: 10px 20px;    /*上下、左右への余白*/
	background: linear-gradient(#fff, #eee);    /*グラデーション*/
	border-bottom: 1px solid #dcdcdc;    /*メニュー下の線の幅、線種、色*/
	border-top: 4px solid #c70067;    /*メニュー下の線の幅、線種、色*/
	box-shadow: 0px 1px 3px rgba(0,0,0,0.15);    /*ボックスの影。右に、下に、広げる幅、0,0,0は黒の事で0.15は透明度15%の事。*/
	text-shadow: 0px 2px #fff;    /*テキストの影。右へ、下へ、色。*/
}
/*コンテンツのh2タグ内のspanタグ設定（色付き文字部分）*/
.contents4 h2 span {
	display: block;
	color: #c70067;        /*文字色*/
	font-size: 12px;    /*文字サイズ*/
	letter-spacing: 0.1em;    /*文字間隔を少し広げる設定*/
	padding-left: 5px;
}
/*コンテンツのh3タグの設定*/
.contents4 h3 {
	clear: both;
	margin-bottom: 20px;
	padding: 5px 20px;    /*上下、左右への余白*/
	border: 1px solid #dcdcdc;    /*線の幅、線種、色*/
	background: #f8f8f8;        /*背景色*/
}
/*コンテンツの段落タグ設定*/
.contents4 p {
	padding: 0px 20px 15px;    /*上、左右、下への余白*/
}
.contents4 h2 + p,
.contents4 h3 + p {
	margin-top: -10px;
}
.contents4 img {
	width: 95%;
	box-shadow: 0px 10px 40px rgba(0,0,0,0.2);
	border-radius: 25px;
}
.contents4 img:hover {
	transition: .3s;
	transform: scale(0.97); 
	opacity: 1.0;
	-webkit-transform: translateY(-5px);
	transform: translateY(-5px);
}


/*メインコンテンツ
---------------------------------------------------------------------------*/
.main {
    overflow: hidden;
    float: right;    /*右に回り込み*/
    width: 72%;        /*幅*/
}

/*Serviceページの各ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
.list {
    position: relative;
    overflow: hidden;
    float: left;        /*左に回り込み*/
	background: #fff;
    width: 48%;            /*ボックス幅*/
    padding: 1%;        /*ボックス内の余白*/
    border: 1px solid #dcdcdc;    /*枠線の幅、線種、色*/
    margin: 0 1% 20px;        /*上、左右、下へのボックスの外に空けるスペース*/
    box-shadow: 0px 10px 40px rgba(0,0,0,0.2);    /*ボックスの影。右に、下に、広げる幅、0,0,0は黒の事で0.2は透明度20%の事。*/
    -webkit-transition: 0.3s;    /*マウスオン時の移り変わるまでの時間設定。0.3秒。*/
    transition: 0.3s;            /*同上*/
	border-radius: 3px;	
}
.list a {
    text-decoration: none;
/*
    display: block;
    overflow: hidden;
*/
    padding: 1%;    /*ボックス内の余白*/
    margin: -1%;
}
/*マウスオン時の背景色*/
.list:hover {
/*    box-shadow: none !important;*/
    /*ボックスの影をなくす設定*/
}
/*リンクを貼った際に出る「→」マーク*/
.list a::before {
    content: "→";    /*出力する文字。変更しても構いませんが機種依存文字は化けるので使わないで下さい。*/
    font-size: 12px;    /*文字サイズ*/
    display: block;
    position: absolute;
    right: 10px;    /*ボックスの右から10pxの場所に配置*/
    bottom: 10px;    /*ボックスの下から10pxの場所に配置*/
    width: 30px;    /*幅*/
    line-height: 30px;    /*高さ*/
    text-align: center;
    background: #ccc;    /*背景色（古いブラウザ用）*/
    background: rgba(0,0,0,0.2);    /*背景グラデーション。0,0,0は黒の事で、0.3は透明度30%の事。*/
    color: #fff;    /*文字色*/
    border-radius: 50%;    /*角丸のサイズ。50%にすると円になる。*/
}
/*マウスオン時の「→」マーク*/
.list a:hover::before {
	background: #c70067;    /*背景色*/
}
/*ボックス内右側のテキストパーツ*/
.list .text {
    font-size: 13px;    /*文字サイズ*/
    line-height: 1.5;    /*行間*/
    height: 7.5em;        /*高さ*/
    overflow: hidden;    /*高さを超えると非表示になる*/
}
/*ボックス内右側のテキストパーツ（商品ボックス１カラム時）*/
.list.c1 .text {
    height: auto;
    overflow: auto;
}
/*ボックス内のh4タグ設定*/
.list h4 {
    font-size: 18px;
    padding: 0px;
    color: #c70067;    /*文字色*/
}
/*ボックス内のp(段落)タグ設定*/
.list p {
/*    padding: 0px !important;*/
	padding: 10px 0px;
}
/*ボックス内の画像*/
.list .img {
    float: left;    /*左に回り込み*/
    width: 250px;        /*幅*/
/*    height: 100px;*/
    /*高さ*/
    margin-right: 10px;
}
/*各ボックスの設定（商品ボックス１カラム時）*/
.list.c1 {
    float: none;
    width: auto;
    margin: 0 0 20px;
}
/*ボックス内のh4タグ（商品ボックス１カラム時）*/
.list.c1 h4 {
    margin-bottom: 10px;
}
/*ボックス内の画像（商品ボックス１カラム時）*/
.list.c1 .img {
    width: 35%;        /*幅*/
    height: auto;    /*高さ*/
}
/*mainブロック内のボックス設定*/
.main .list {
    box-shadow: 0px 5px 10px rgba(0,0,0,0.1);    /*ボックスの影*/
}
.list-b {
	overflow: hidden;
	width: 32%;	/*幅*/
	float: left;	/*左に回り込み*/
	margin: 0 5px 20px 5px;	/*上、右、下、左へのボックスの外側に空けるスペース*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
/*	box-shadow: 3px 4px 2px rgba(0,0,0,0.1);*/
	padding: 8px;	/*ボックス内の余白*/
	border-radius: 3px;	
}
.list-b a {
	display: block;text-decoration: none;overflow: hidden;
	margin: -2%;	/*ボックスのマージン。リンク設定する場合に、上の.listのpaddingを相殺するため。*/
	padding: 2%;	/*ボックス内の余白*/
	background: url(../images/arrow1.png) no-repeat right bottom / 40px;	/*リンク設定した際の右下の矢印マークの読み込み。right（右）、bottom（下）、40pxは画像の幅。*/
}
/*マウスオン時の設定*/
/*
.list-b a:hover {
	position: relative;
	left: 1px;
	top: 1px;
}
*/
/*h4（見出し）タグの設定*/
.list-b h4 {
	font-size: 110%;	/*文字サイズ*/
	text-align: center;	/*文字をセンタリング*/
	height: 2em;		/*高さ*/
	overflow: hidden;	/*高さを超えた場合に非表示にする*/
	padding-top: 0.5em;
}
.list-b h5 {
	color: #779eec;		/*文字色*/
	font-size: 90%;	/*文字サイズ*/
	text-align: center;	/*文字をセンタリング*/
	height: 2em;		/*高さ*/
	overflow: hidden;	/*高さを超えた場合に非表示にする*/
	padding-top: 1em;
}
/*p（段落）タグの設定*/
.list-b p {
	padding: 0 !important;
	line-height: 1.5;	/*行間を少し狭くする。デフォルトは最上部のbodyにあります。*/
	font-size: 90%;		/*文字サイズを少し小さく*/
	color: #333;		/*文字色*/
	height: 6em;		/*高さ。1.5emを１行分とカウントして下さい。6emなら４行です。*/
	overflow: hidden;	/*高さを超えた場合に非表示にする*/
}

.list-c {
	position: relative;
	overflow: hidden;
	float: left;        /*左に回り込み*/
	background: #fff;
	width: 48%;            /*ボックス幅*/
	padding: 2.5%;        /*ボックス内の余白*/
	border: 1px solid #dcdcdc;    /*枠線の幅、線種、色*/
	margin: 0 1% 20px;        /*上、左右、下へのボックスの外に空けるスペース*/
	box-shadow: 0px 10px 40px rgba(0,0,0,0.2);    /*ボックスの影。右に、下に、広げる幅、0,0,0は黒の事で0.2は透明度20%の事。*/
	-webkit-transition: 0.3s;    /*マウスオン時の移り変わるまでの時間設定。0.3秒。*/
	transition: 0.3s;            /*同上*/
	border-radius: 8px;	
}
.list-c a {
	display: block;text-decoration: none;overflow: hidden;
	margin: -2%;	/*ボックスのマージン。リンク設定する場合に、上の.listのpaddingを相殺するため。*/
	padding: 2%;	/*ボックス内の余白*/
	background: url(../images/arrow1.png) no-repeat right bottom / 40px;	/*リンク設定した際の右下の矢印マークの読み込み。right（右）、bottom（下）、40pxは画像の幅。*/
}
/*h4（見出し）タグの設定*/
.list-c h4 {
	font-size: 110%;	/*文字サイズ*/
	text-align: center;	/*文字をセンタリング*/
	height: 2em;		/*高さ*/
	overflow: hidden;	/*高さを超えた場合に非表示にする*/
	padding-top: 0.5em;
}
.list-c h5 {
	color: #779eec;		/*文字色*/
	font-size: 90%;	/*文字サイズ*/
	text-align: center;	/*文字をセンタリング*/
	height: 2em;		/*高さ*/
	overflow: hidden;	/*高さを超えた場合に非表示にする*/
	padding-top: 1em;
}
/*p（段落）タグの設定*/
.list-c p {
	padding: 0 8%;
	line-height: 1.5;	/*行間を少し狭くする。デフォルトは最上部のbodyにあります。*/
	font-size: 90%;		/*文字サイズを少し小さく*/
	color: #333;		/*文字色*/
	height: 3em;		/*高さ。1.5emを１行分とカウントして下さい。6emなら４行です。*/
	overflow: hidden;	/*高さを超えた場合に非表示にする*/
}
.list-c img {
	width: 100%;

}
.list-c img:hover {
	transition: .3s;
	transform: scale(0.97); 
	opacity: 1.0;
	-webkit-transform: translateY(-5px);
	transform: translateY(-5px);
}
.heading.tag {
	font-size: 24px;
	font-weight: bold;
	text-decoration: none;
	padding: 0.5rem 0.5rem 0.5rem 1em;
	background: #f7f7f7;
	border-left: solid 6px #c70067;
	color: #c70067;
	box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.22);
	margin-bottom: 30px;
}

.heading.pink {
	border-left: solid 6px #c70067;
	color: #c70067;
}


.heading.tag.gauge.pink {
	background: linear-gradient(to right, #c70067 50%, #f7f7f7 50%) right bottom;
	background-size: 200% 100.5%;
	transition: all 1s ease-out;
}

.heading.tag.gauge.pink:hover {
	background-position: left bottom;
	color: white;
}

/*subコンテンツ
---------------------------------------------------------------------------*/
/*subブロック*/
.sub {
    float: left;    /*左に回り込み*/
    width: 24%;        /*幅*/
}
/*subコンテンツ内のh2タグ設定*/
.sub h2 {
    margin-bottom: 0;
    box-shadow: none;
    font-size: 16px;    /*文字サイズ*/
    text-align: center;    /*内容をセンタリング*/
    padding: 15px;        /*ボックス内の余白*/
    border: 1px solid #dcdcdc;    /*メニューの線の幅、線種、色*/
}
/*subコンテンツ内の段落タグ設定*/
.sub p {
    margin: 0 !important;
    padding: 10px !important;
}

/*subコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー全体の設定*/
.sub ul.submenu {
    margin-bottom: 15px;    /*メニューブロックの下に空けるスペース*/
    border-top: solid 1px #dcdcdc;    /*上の線の線種、幅、色*/
}
/*メニュー１個ごとの設定*/
.sub ul.submenu li a {
    text-decoration: none;
    display: block;
    padding: 5px 10px;    /*メニュー内の余白。上下、左右への設定。*/
    border-bottom: solid 1px #dcdcdc;    /*下の線の線種、幅、色*/
    border-left: solid 1px #dcdcdc;        /*左の線の線種、幅、色*/
    border-right: solid 1px #dcdcdc;    /*右の線の線種、幅、色*/
}
/*マウスオン時の背景色*/
.sub ul.submenu li a:hover {
    background: #c70067;    /*背景色*/
    color: #fff;            /*文字色*/
}
/*h2直下にsubmenuが続いた場合のみ、submenuの上の線を消す設定*/
.sub h2 + ul.submenu {
    border-top: none;
}

/*subコンテンツ内のbox1
---------------------------------------------------------------------------*/
.sub .box1 {
    overflow: hidden;
    padding: 10px;            /*ボックス内の余白*/
    margin-bottom: 20px;    /*ボックスの下に空けるスペース*/
    border: solid 1px #dcdcdc;    /*線の線種、幅、色*/
    box-shadow: 0px 0px 20px rgba(0,0,0,0.1) inset;    /*ボックスの影。右へ、下へ、広げる幅、0,0,0は黒の事で0.1は透明度10%の事。insetは内側への影、という意味。*/
}
/*h2直下にbox1が続いた場合のみ、box1の上の線を消す設定*/
.sub h2 + .box1 {
    border-top: none;
}
/*box1内のサブメニュー*/
.sub ul.submenu {
    margin-bottom: 0;
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
    clear: both;
    background: #c70067;    /*背景色*/
    color: #fff;    /*文字色*/
    font-size: 85%;    /*文字サイズ*/
}
footer a {
    color: #fff;
}
footer a:hover {
    color: #fff;
}
footer .pr {
    display: block;
    font-size: 80%;
}

/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
    overflow: hidden;
    padding: 20px 0;
}
/*１行分の設定*/
#footermenu ul {
    float: left;    /*左に回り込み*/
/*    width: 18%;*/
    /*幅。今回は５列作ったのでここの幅18%と下のpadding(合計の2%)でトータル20%になるよう設定。列に応じて調整して下さい。*/
    padding-right: 1%;
    padding-left: 1%;
}
#footermenu ul li{
    text-align: center;
    display: inline;
    margin-right: 1em;
}

/*コピーライト
---------------------------------------------------------------------------*/
#copyright {
    clear: both;
    text-align: center;
    background: #333;    /*背景色*/
	padding: 10px 10px 10px 10px;
}
#copyright a {
    text-decoration: none;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl {
    padding-left: 20px;
    margin-bottom: 15px;
    height: 160px;    /*高さ*/
    overflow: auto;    /*上で設定した高さを超えた場合にスクロールを出す設定。全部表示させていたいなら、この行と上の高さの行を削除する。*/
}
/*日付設定*/
#new dt {
    float: left;
    width: 9em;
    color: #c70067;
    letter-spacing: 0.1em;
}
/*記事設定*/
#new dd {
    padding-left: 9em;
/*    border-bottom: 1px solid #eee;*/
}

#new2 dl {
    padding-left: 20px;
    margin-bottom: 15px;
}
/*日付設定*/
#new2 dt {
    float: left;
    width: 9em;
    color: #c70067;
    letter-spacing: 0.1em;
}
/*記事設定*/
#new2 dd {
    padding-left: 9em;
/*    border-bottom: 1px solid #eee;*/
}

/*よく頂く質問ページ
---------------------------------------------------------------------------*/
/*ブロック全体*/
.faq {
    padding: 0px 20px;    /*上下、左右への余白*/
}
/*質問の設定*/
.faq dt {
    color: #c70067;    /*文字色*/
    padding-top: 15px;
}
.faq dt a {
    color: #c70067;
}
/*回答の設定*/
.faq dd {
    border-bottom: 1px solid #dcdcdc;    /*下線の幅、線種、色*/
    overflow: hidden;
    padding-bottom: 15px;
}

/*テーブル
---------------------------------------------------------------------------*/
/*ta1設定*/
.ta1 {
    width: 100%;
    margin: 0 auto 20px;
}
.ta1, .ta1 td, .ta1 th {
    border: 1px solid #ccc;    /*テーブルの枠線の幅、線種、色*/
    padding: 10px 15px;    /*ボックス内の余白*/
    word-break: break-all;
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi {
    width: auto;
    text-align: left;    /*左よせ*/
    background: #f6f5f2;    /*背景色*/
    font-size: 18px;    /*文字サイズ*/
}
/*ta1の左側ボックス*/
.ta1 th {
    width: 140px;    /*幅*/
    text-align: center;    /*センタリング*/
    font-weight: normal;
        background: #c70067;
        color: #FFF;
}
/*左側ボックスに画像を入れた場合の設定*/
.ta1 th img {
/*    width: 100%;*/
}

/*submitボタンの設定
---------------------------------------------------------------------------*/
input[type="submit"],
input[type="button"],
input[type="reset"] {
    padding: 10px 30px;    /*ボタン内の余白*/
    margin-bottom: 20px;
    border: none;
    border-radius: 30px;    /*角丸のサイズ*/
    background: linear-gradient(#fff, #eee);    /*グラデーション*/
    font-size: 16px;    /*文字サイズ*/
    border: 1px solid #ccc;
}
/*マウスオン時の設定*/
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover{
    background: #fff;    /*背景色*/
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
    clear: both;
    padding-top: 40px;
}
#pagetop a {
    color: #fff;        /*文字色*/
    font-size: 20px;    /*文字サイズ*/
    background: #c70067;    /*背景色*/
    text-decoration: none;
    text-align: center;
    display: block;
    float: right;
    width: 60px;    /*幅*/
    line-height: 60px;    /*高さ*/
    border-radius: 10px;    /*角丸のサイズ*/
    border: 3px solid #fff;    /*枠線の幅、線種、色*/
    box-shadow: 0px 5px 15px rgba(0,0,0,0.2);    /*ボックスの影*/
    margin-bottom: 20px;
}
#page_top{
    width: 100px;
    height: 60px;
    position: fixed;
    right: 0;
    bottom: 0;
    background: #c70067;
    opacity: 0.6;
}
#page_top a{
    position: relative;
    display: block;
    width: 100px;
    height: 60px;
    text-decoration: none;
}
#page_top a::before{
    font-family: FontAwesome;
    content: '▲';
    font-size: 25px;
    color: #fff;
    position: absolute;
    width: 25px;
    height: 25px;
    top: -45px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
    font-weight: bold;
}
#page_top a::after{
    content: 'PAGE TOP';
    font-size: 13px;
    color: #fff;
    position: absolute;
    top: 30px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
}
/*マウスオン時*/
#pagetop a:hover {
    background: #fff;    /*背景色*/
    color: #c70067;        /*文字色*/
}

/*一覧ページのボックス右下のオプションマーク
（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;
}

/*トップページのNEWアイコン
---------------------------------------------------------------------------*/
.newicon {
    background: #F00;    /*背景色*/
    color: #FFF;        /*文字色*/
    font-size: 70%;
    line-height: 1.5;
    padding: 2px 5px;
    border-radius: 2px;
    margin: 0px 5px;
    vertical-align: text-top;
}

/*その他
---------------------------------------------------------------------------*/
.look {background: #e5e5e5;padding: 5px 10px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px;}
.clear {clear: both;}
ul.disc {padding: 0em 25px 15px;list-style: disc;}
.color1, .color1 a {color: #c70067;}
.bg1 {background: #f6f5f2;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}
img.fr {float: right;margin-left: 10px;margin-bottom: 10px;}
img.fl {float: left;margin-right: 10px;margin-bottom: 10px;}
.big1 {font-size: 24px;letter-spacing: 0.2em;}
.mini1 {font-size: 11px;display: inline-block;line-height: 1.5;}
.sh {display: none;}


#demo-1{
    overflow: hidden;
    width: 100%;
/*    min-height: 800px;*/
    background-color: #999;
}
#demo-1 .inner-content{
    text-align: center;

}
#demo-1 .inner-content img{
    padding-top: 25px;
    width: 55%;
}
.flexbox{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.flexbox li{
    width: 24%;
    margin-bottom: 5px;
    margin-left: 10px;
}
/*
    width: 24.5%;
    margin-right: 5px;
}
*/
.sidebn li{
    padding-bottom: 10px;
}
.bbl table{
    border: none;
}
#QandA-3 {
    padding: 8px;
    font-size: 14px; /*全体のフォントサイズ*/
}
#QandA-3 h3 {
    color: #666;
    font-size: 18px;
/*    margin: 48px 0 16px 0;*/
    border-bottom: 1px dashed #ddd;
}
#QandA-3 dl {
    margin: 0 0 24px;
}
#QandA-3 dt,
#QandA-3 dd {
    position: relative;
    margin-left: 32px;
    background: #fafafa;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 8px;
}
#QandA-3 dt {
    font-weight: bold;
    color: #111;
    margin-bottom: 8px;
}
#QandA-3 dd {
    line-height: 140%;
}
#QandA-3 dt:before,
#QandA-3 dd:before {
    display: inline-block;
    font-weight: bold;
    color: #fff;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    border-radius: 50%;
    margin-right: 8px;
    position: absolute;
    left: -32px;

}
#QandA-3 dt:before {
    content: "Q";
    background: #c70067;
}
#QandA-3 dd:before {
    content: "A";
    background: #aaa !important;
}
.red{
    color: #FF0F0F;
}
.square_btn{
    display: inline-block;
    padding: 7px 20px;
    border-radius: 25px;
    text-decoration: none;
    color: #FFF;
    background: #c70067;

}

.square_btn:hover {
    background: #D57100;
color: #FFF;

}

.timeline {
    list-style: none;
}
.timeline li {
    margin-bottom: 5px;

}
.reslst li{
    border-bottom: 1px #CCC dotted;
}

.timeline h4{
    font-weight: bold;
    font-size: 120%;
}

.btn1{
    text-align: right;
    margin-bottom: 10px;
}
.btn-icon {
    display: inline-block;
    max-width: 180px;
    text-align: left;
    background-color: #c70067;
    font-size: 14px;
    color: #FFF;
    text-decoration: none;
/*    font-weight: bold;*/
    padding: 5px 10px;
    border-radius: 4px;
    position: relative;
}
.btn1 a:hover{
    color: #FFF;
}
*, *:before, *:after {
    box-sizing: border-box;
}
.col_3{
    width: 100%;
    display: flex;
    display: -ms-flexbox; /* IE10 */
    flex-wrap: wrap;
    -ms-flex-wrap: wrap; /* IE10 */
}
.col_3 > div{
    width: 33.33333%;
/*    padding: 10px;*/
/*    padding-bottom: 10px;*/
}
@media screen and (max-width: 960px) {
    .col_3 > div{
        width: 80%;
    }
}
@media screen and (max-width: 480px) {
    .col_3 > div{
        width: 100%;
    }
}

.heiwa{
    text-align: center;
    padding: 10px;
}
.wafuu { writing-mode: tb-rl; }
.tate img{
    width: 20px;
}
.box26 {
	position: relative;
	margin: 0 0 50px 0;
	padding: 0.5em 1em;
	border: solid 3px #c70067;
	border-radius: 8px;
}
.box26 .box-title {
	position: absolute;
	display: inline-block;
	top: -15px;
/*	left: 10px;*/
	padding: 0 9px;
	margin: 0px 30px 50px 30px;
	text-align: center;
	line-height: 1;
	font-size: 200%;
	background: #fff;
	color: #c70067;
	font-weight: bold;
}
.box26 p {
	margin: 20px 0 0 0; 
	padding: 0;
	text-align: center;
	font-size: 150%;
	font-weight: bold;
}

/* for Desktop */
@media ( min-width : 640px ){
    .timeline > li {
        overflow: hidden;
        margin: 0;
        position: relative;
    }
    .timeline-date {
        width: 110px;
        float: left;
        margin-top: 20px;
        font-weight: bold;
        color: #c70067;

    }
    .timeline-content {
        width: 75%;
        float: left;
        border-left: 3px #e5e5d1 solid;
        padding-left: 30px;
    }
    .timeline-content:before {
        content: '';
        width: 12px;
        height: 12px;
        background: #cc3300;
        position: absolute;
        left: 106px;
        top: 24px;
        border-radius: 100%;
    }
}
.btn-flat-border {
	width: 30%;
	display: inline-block;
	padding: 0.3em 1em;
	margin: 10px;
	text-decoration: none;
	font-size: 150%;
	color: #c70067;
	text-align: center;
	background: #fff;
	border: solid 2px #c70067;
	border-radius: 3px;
	transition: .4s;
}
.btn-flat-border:hover {
	background: #c70067;
	color: white;
}



/*画面幅800px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:800px){

/*inner共通
---------------------------------------------------------------------------*/
.inner {
    width: auto;
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
    border-bottom: 1px solid #dcdcdc;    /*上の線の幅、線種、色*/
}

/*ヘッダー右側の電話番号ブロック
---------------------------------------------------------------------------*/
/*ブロック全体を非表示にする*/
#contact {
    display: none;
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*スマホ用メニューを非表示から表示に切り替える*/
#menubar-s {
    display: block;
}
/*メニュー１個あたりの設定*/
#menubar-s li {
    float: left;    /*左に回り込み*/
    width: 50%;        /*メニュー幅*/
}
#menubar-s li a {
    display: block;
    text-decoration: none;
    text-align: center;    /*文字をセンタリング*/
    padding: 15px 0;    /*上下、左右へのメニュー内の余白*/
    border-bottom: 1px solid #dcdcdc;    /*下線の幅、線種、色*/
    border-right: 1px solid #dcdcdc;    /*右線の幅、線種、色*/
}
/*偶数番目のメニューの右側の線を消す*/
#menubar-s li:nth-child(even) a {
    border-right: none;
}
/*PC用メニューを非表示にする*/
#menubar {
    display: none;
}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
    display: block;
    position: absolute;
    top: 28px;        /*上から28pxの場所に配置*/
    right: 2%;        /*右から2%の場所に配置*/
    width: 48px;    /*幅*/
    border: 1px solid #000;    /*枠線の幅、線種、色*/
    padding: 12px 10px 5px;    /*上、左右、下へのボックス内余白*/
    background: #fff;        /*背景色*/
}
/*３本のバー（1本あたり）*/
#menubar_hdr span {
    display: block;
    border-top: 3px solid #000;    /*枠線の幅、線種、色*/
    margin-bottom: 7px;            /*バー同士の余白*/
}

/*main,subコンテンツ
---------------------------------------------------------------------------*/
.main, .sub {
    float: none;
    width: auto;
}

/*subコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー１個ごとの設定*/
.sub ul.submenu li {
    width: 50%;        /*半分の幅にする*/
    float: left;    /*左に回り込み*/
}
/*偶数番目のメニューの左のラインを消す設定*/
.sub ul.submenu li:nth-child(even) a {
    border-left: none;
}
.list {
	float: none;        /*回り込みのリセット*/
	width: auto;        /*ボックス幅*/
	margin: 0 0 20px;    /*上、左右、下へのボックスの外に空けるスペース*/
}
/*ボックス内の画像*/
.list .img {
	width: 40%;        /*幅*/
	height: auto;
}
/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*アイコン*/
section#new h2::before {
        float: right;    /*右に回り込み*/
        margin-top: 4px;
        font-size: 18px;    /*文字サイズ*/
        background: #fff;    /*背景色*/
        border-radius: 50%;    /*角丸のサイズ*/
        width: 30px;        /*幅*/
        line-height: 30px;    /*高さ*/
        text-align: center;    /*文字をセンタリング*/
        border: 1px solid #dcdcdc;    /*枠線の幅、線種、色*/
        box-shadow: 1px 1px 6px rgba(0,0,0,0.1) inset;    /*内側への影*/
}
/*プラスアイコンの文字*/
section#new h2.close::before {
        content: "＋";
}
/*マイナスアイコンの文字*/
section#new h2.open::before {
        content: "−";
}

/*その他
---------------------------------------------------------------------------*/
body.s-n .sub,body.s-n #footermenu,.m-n {display: none;}
.fl-half{float:left;width:45%;margin-left:3%;}
.sh {display:block;}
.pc {display:none;}

    .flexbox li{
        width: 48%;
        margin-bottom: 10px;
        margin-right: 10px
    }
}




/*画面幅700px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:700px){
	
#demo-1{
	overflow: hidden;
	width: 100%;
	/*    min-height: 800px;*/
	background-color: #999;
}
#demo-1 .inner-content{
	text-align: center;

}
#demo-1 .inner-content img{
	padding-top: 10px;
	width:65%;
}

/*Serviceページの各ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
.list {
    float: none;        /*回り込みのリセット*/
    width: auto;        /*ボックス幅*/
    margin: 0 0 20px;    /*上、左右、下へのボックスの外に空けるスペース*/
}
/*ボックス内の画像*/
.list .img {
    width: 30%;        /*幅*/
    height: auto;
}
.list-b {
	width: 100%;	/*幅*/
}
	
.list-c {
	width: 100%;	/*幅*/
}
	
.heading.tag {
	font-size: 16px;
	font-weight: bold;
	text-decoration: none;
	padding: 0.5rem 0.5rem 0.5rem 1em;
	background: #f7f7f7;
	border-left: solid 6px #c70067;
	color: #c70067;
	box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.22);
	margin-bottom: 30px;
}

.heading.pink {
	border-left: solid 6px #c70067;
	color: #c70067;
}


.heading.tag.gauge.pink {
	background: linear-gradient(to right, #c70067 50%, #f7f7f7 50%) right bottom;
	background-size: 200% 100.5%;
	transition: all 1s ease-out;
}

.heading.tag.gauge.pink:hover {
	background-position: left bottom;
	color: white;
}


/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px){

/*全体の設定
---------------------------------------------------------------------------*/
body {
    font-size: 12px;    /*文字サイズ*/
    line-height: 1.5;    /*行間*/
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ロゴ画像*/
header #logo {
    width: 200px;    /*ロゴ画像の幅*/
    margin-top: 20px; /*ロゴの上にあける余白*/
}

/*コンテンツ
---------------------------------------------------------------------------*/
.contents {
    padding: 20px 0;    /*上下、左右に空けるボックス内の余白*/
}
/*コンテンツのh2タグの設定*/
.contents h2 {
    font-size: 16px;    /*文字サイズ*/
    padding: 5px 10px;    /*上下、左右への余白*/
}
/*コンテンツの段落タグ設定*/
.contents p {
    padding: 0px 10px 15px;    /*上、左右、下への余白*/
}
    .contents2 {
        padding: 20px 0;    /*上下、左右に空けるボックス内の余白*/
    }
    /*コンテンツのh2タグの設定*/
    .contents2 h2 {
        font-size: 16px;    /*文字サイズ*/
        padding: 5px 10px;    /*上下、左右への余白*/
    }
    /*コンテンツの段落タグ設定*/
	
.contents3 {
	padding: 20px 0;    /*上下、左右に空けるボックス内の余白*/
}
.contents3 img {
	border-radius: 5px;
}
.contents4 {
	padding: 20px 0;    /*上下、左右に空けるボックス内の余白*/
}
.contents4 img {
	border-radius: 5px;
}


/*Serviceページの各ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
.list {
    margin: 0;
    box-shadow: none !important;
    border: none;
    border-bottom: 1px solid #dcdcdc;    /*下線の幅、線種、色*/
}
/*１つ目のメニュー*/
.list:first-of-type {
    border-top: 1px solid #dcdcdc;
}
/*リンクを貼った際に出る「→」マーク*/
.list a::before {
    right: 0px;    /*ボックスの右から0pxの場所に配置*/
    width: 20px;    /*幅*/
    line-height: 20px;    /*高さ*/
}
/*ボックス内のp(段落)タグ設定*/
.list a p {
    padding-right: 40px !important;
}

.list-b {
	width: 100%;	/*幅*/
}


	
/*subコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー１個ごとの設定*/
.sub ul.submenu li {
    width: auto;
    float: none;
}
/*偶数番目のメニューの左のラインを戻す設定*/
.sub ul.submenu li:nth-child(even) a {
    border-left: 1px solid #ccc;
}

/*subコンテンツ内のメニュー
---------------------------------------------------------------------------*/
.sub ul.submenu li a {
    padding: 10px;    /*メニュー内の余白*/
}

/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
    display: none;
}

/*テーブル
---------------------------------------------------------------------------*/
/*テーブル内の左側*/
.ta1 th {
    width: 100px;
    padding: 5px;
}
/*テーブル内の右側*/
.ta1 td {
    width: auto;
    padding: 5px;
}

    .timeline-date {
        font-size: 120%;
        font-weight: bold;
        color: #c70067;
        border-bottom: 2px #c70067 double;
        margin-bottom: 10px;
        margin-top: 20px;
    }

/*その他
---------------------------------------------------------------------------*/
.ws,.wl {width: 94%;}
img.fr,img.fl {float: none;margin: 0;width: 100%;}
.fl-half{float:none;width:100%;margin-left:0;}
    #demo-1 .inner-content img{
        padding-top: 40px;
        width:80%;

}
    .flexbox li{
        text-align: center;
        width: 99%;
        margin-bottom: 10px;
        margin-right: 0;
        margin-left: 0;
    }
    .sidebn img
    {
        width: 100%;
    }
    #new dl {
        padding-left: 10px;
    }
    /*日付設定*/
    #new dt {
        width: 6em;
    }
    /*記事設定*/
    #new dd {
        padding-left: 6em;
    }
    #new2 dl {
        padding-left: 10px;
    }
    /*日付設定*/
    #new2 dt {
        width: 6em;
    }
    /*記事設定*/
    #new2 dd {
        padding-left: 6em;
    }
    }