@charset "utf-8";

/* 共通
----------------------------------------------------------------------------------------------------*/
body {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
  
/* 背景設定 */
body {
}

/* レイアウト設定 */
article {
	margin-bottom:2rem;
}

#top article {
	margin-bottom:0;
}

/* 画像設定 */
a:hover img {
	opacity: 0.5;
}

/* カラー設定 */
.red {
	color: #d51523;
}
.gray {
	color: #666666;
}

.blue {
	color: #d51523;
}

.green {
	color:#0B9130;
}

.orange {
	color:#FF7F00;
}

/* サイズ設定 */
.big {
	font-size: 1.4rem;
}

.big2 {
	font-size: 1.2rem;
}

.big3 {
	font-size: 2rem;
}

.big4 {
	font-size: 9rem;
}

.mini {
	font-size:0.85rem;
	font-weight:normal;
}

.mini2 {
	font-size:0.75rem;
}

/* キャッチコピー */
.copy {
	font-family: "Noto Sans Japanese", sans-serif;
	font-weight: bold;
	font-size:1.5rem;
}

@media only screen and (max-width: 29.938em) {
article .copy {
	font-size:1.1rem;
}
}

/* 引用設定 */
article blockquote {
	background-color:#FFFAE8;
}

/* マーカー設定 */
.marker {
	background: linear-gradient(transparent 60%, #ffff66 60%);
}

/* パネル設定 */
.panel {
	border-radius:10px;
}

.panel .button {
	margin-bottom:0;
}

/* 引用リスト設定 */
blockquote ol{
  counter-reset:number;
  list-style:none;
  margin:0;
  padding:0;
}

blockquote ol li {
	margin-bottom:0.5rem;
}

blockquote ol li:before{
  counter-increment: number;
  content: counter(number);
}

.maru li:before {
  float: left;
  background: #FF8600;
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  line-height: 1.5;
  margin-right:0.5rem;
}

/* リンク設定
----------------------------------------------------------------------------------------------------*/
a {
  color: #222;
  text-decoration: none;
  line-height: inherit;
  cursor: pointer; }
  a:hover, a:focus {
    color: #FF0000; }

/* ボタンカラー設定
----------------------------------------------------------------------------------------------------*/
.button {
  background-color: #d51523;
  color: #fefefe; }
  .button:hover, .button:focus {
    background-color: #00649F;
    color: #fefefe; }
  .button.primary {
    background-color: #0080CC;
    color: #fefefe; }
    .button.primary:hover, .button.primary:focus {
      background-color: #00649F;
      color: #fefefe; }
  .button.secondary {
    background-color: #777;
    color: #fefefe; }
    .button.secondary:hover, .button.secondary:focus {
      background-color: #5f5f5f;
      color: #fefefe; }
  .button.success {
    background-color: #0B9130;
    color: #fefefe; }
    .button.success:hover, .button.success:focus {
      background-color: #22bb5b;
      color: #fefefe; }
  .button.warning {
    background-color: #ffae00;
    color: #000; }
    .button.warning:hover, .button.warning:focus {
      background-color: #cc8b00;
      color: #fefefe; }
  .button.alert {
    background-color: #FF0000;
    color: #fefefe; }
    .button.alert:hover, .button.alert:focus {
      background-color: #da3116;
      color: #fefefe; }

  .button.hollow {
    background-color: rgba(255,255,255,0.79);
    border: 3px solid #d51523;
    color: #d51523;
	font-weight:bold; }
    .button.hollow:hover, .button.hollow:focus {
      background-color: #0c4d78;
      border-color: #0c4d78;
      color: #fefefe; }
    .button.hollow.primary {
      border: 1px solid #0080CC;
      color: #0080CC; }
      .button.hollow.primary:hover, .button.hollow.primary:focus {
        border-color: #0c4d78;
        color: #0c4d78; }
    .button.hollow.secondary {
      border: 1px solid #777;
      color: #777; }
      .button.hollow.secondary:hover, .button.hollow.secondary:focus {
        border-color: #3c3c3c;
        color: #3c3c3c; }
    .button.hollow.success {
      border: 1px solid #0B9130;
      color: #0B9130; }
      .button.hollow.success:hover, .button.hollow.success:focus {
        border-color: #157539;
        color: #157539; }
    .button.hollow.warning {
      border: 1px solid #ffae00;
      color: #ffae00; }
      .button.hollow.warning:hover, .button.hollow.warning:focus {
        border-color: #805700;
        color: #805700; }
    .button.hollow.alert {
      border: 1px solid #FF0000;
      color: #FF0000; }
      .button.hollow.alert:hover, .button.hollow.alert:focus {
        border-color: #881f0e;
        color: #881f0e; }

/* ボタン設定 */
button.small, .button.small {
    padding-top: 0.625rem;
    padding-right: 2rem;
    padding-bottom: 0.625rem;
    padding-left: 2rem;
    font-size: 0.875rem;
}

button.small b, .button.small b {
	font-size:1.2rem;
	font-weight:normal;
}

/* ラベルカラー設定
----------------------------------------------------------------------------------------------------*/
.label {
  background: #d51523;
  border: 1px solid #FFF;
  color: #fefefe; }
  .label.secondary {
    background: #777;
	border: 1px solid #FFF;
    color: #fefefe; }
  .label.success {
    background: #0B9130;
	border: 1px solid #FFF;
    color: #fefefe; }
  .label.warning {
    background: #ffae00;
	border: 1px solid #FFF;
    color: #fefefe; }
  .label.alert {
    background: #FF0000;
	border: 1px solid #FFF;
    color: #fefefe; }
	
  .label.info {
    background: #FFF;
	border: 1px solid #FFF;
    color: #333; }
  .label.blue {
    background: #00A0E9;
	border: 1px solid #FFF;
    color: #fefefe; }

/* ヘッダー
----------------------------------------------------------------------------------------------------*/
.top-bar {
    background-color: #FFF; 
	padding-top:0;
	padding-bottom:0;
}

.top-bar ul {
    background-color: #FFF; 
}

.top-bar-title h1 {
	font-size:1.7rem;
}

.top-bar ul li span {
	font-size:0.9rem;
}

.top-bar .top-bar-left, .top-bar .top-bar-right {
    width: auto;
}

.top-bar-right button {
	margin:0.8rem 0.5rem 0;
}

/* フッター
----------------------------------------------------------------------------------------------------*/
#footer {
	background-color:#F7F7F7;
	border-top: 1px solid #DDDDDD;
	margin-bottom: 0;
	padding: 3.5rem 0 2rem;
}

#footer .button {
	margin-bottom: 0;
}

/* コピーライト表記 */
.copyright {
	color: #FFF;
	font-size: 70%;
	text-align: center;
	background-color: #d51523;
}

/* ページ先頭 */
#ptop {
	width:40px;
	height:40px;
	background:#d51523;
	opacity:0.8;
	position:fixed;
	right:5px;
	bottom:10px;
	cursor:pointer;
	z-index:20;
}

#ptop:hover {
	opacity:1;
}

#ptop a {
	padding:20px 10px 5px;
	color:#fff;
	font-size:8pt;
	text-decoration:none;
	position:relative;
	top:16px;
	left:0;
	z-index:10;
}

#ptop:after {
    content: ' ';
    width:0;
    height: 0;
    border:6px solid transparent;
    border-bottom-color:#fff;
    position:absolute;
    top:5px;
    left:15px;
}

@media only screen and (max-width: 47.938em) {
#ptop {
	position: fixed;
	bottom: 20px;
	right: 10px;
	cursor: pointer;
	opacity: 1;
}

.bodtop {
	border-top:1px solid #CCC;
	margin-top:1rem;
}

.bodtop img {
	padding:1rem 0;
}
}

#ptop img {
	border: none;
}

/* トップ：メインイメージ
----------------------------------------------------------------------------------------------------*/
.hero-section {
  background: url("../img/mv-bg.jpg") 50% no-repeat;
  background-size: cover;
  height: 80vh;
  text-align: center;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.hero-section .hero-section-text-title {
	margin-bottom: 10vh;
}


@media only screen and (max-width: 47.938em) {
  .hero-section .hero-section-text-title {
      margin-bottom: 5vh;
  }
  .hero-section .hero-section-text-title h3 img {
	  width: 60vw;
  }
}

/* ログインページ
----------------------------------------------------------------------------------------------------*/
#login .hero-section {
  background: url("../img/mv-bg_login.jpg") 50% 100% no-repeat;
  background-size:cover;
  height: 100vh;
	padding-bottom:150px;
  text-align: center;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#login .hero-section h1 {
  margin-bottom: 50px;
  color: #FFF;
  font-size: 20px;
  font-weight: 600;
  line-height: 2;
}

/* ボタンの装飾 */
.btn-contact {
  display: inline-block;
  background-color: #f15a24;
  color: #FFF !important;
  padding: 5px 20px;
  border-radius: 50px;
  text-decoration: none;
  margin: 0 5px;
  font-size: 20px;
  transition: opacity 0.3s;
  vertical-align: middle;
}

/* ホバー（マウスを乗せた時）の反応 */
.btn-contact:hover {
  opacity: 0.8;
  color: #FFF;
}

[type='id'] {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 2.4375rem;
  padding: 0.5rem;
  border: 1px solid #cacaca;
  margin: 0 0 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: #0a0a0a;
  background-color: #fefefe;
  box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1);
  border-radius: 0;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none; }
  [type='id']:focus {
    border: 1px solid #8a8a8a;
    background-color: #fefefe;
    outline: none;
    box-shadow: 0 0 5px #cacaca;
    transition: box-shadow 0.5s, border-color 0.25s ease-in-out; }

.sign-in-form {
	width:550px;
  padding: 3rem;
  border-radius: .5rem;
  background-color: rgba(0,0,0,0.5);
}

@media only screen and (max-width: 47.938em) {
.sign-in-form {
  width:90%;
  margin-left:auto;
  margin-right:auto;
  padding: 1rem;
	}
}

.sign-in-form h4 {
  color: white;
  margin-bottom: 1rem;
  font-weight: 600;
  text-transform: uppercase;
}

.sign-in-form label {
  text-transform: uppercase;
	text-align: left;
  color: #fff;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.sign-in-form input {
  color: #000;
	text-align: left;
}

.sign-in-form input:focus {
  opacity: .8;
}

.sign-in-form-username,
.sign-in-form-password {
  border-radius: 10px;
  border: none;
  opacity: 1;
  transition: all ease .4s;
}

.sign-in-form-button {
  border-radius: 10px;
  border: 1px solid #fff;
  color: #fff;
    background-color: #D81E17;
    background-image: -moz-linear-gradient(top, #811C21, #D81E17);
    background-image: -ms-linear-gradient(top, #811C21, #D81E17);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#811C21), to(#D81E17));
    background-image: -webkit-linear-gradient(top, #811C21, #D81E17);
    background-image: -o-linear-gradient(top, #811C21, #D81E17);
    background-image: linear-gradient(top, #811C21, #D81E17);
    background-repeat: repeat-x;
    filter: progid:dximagetransform.microsoft.gradient(startColorstr=#811C21, endColorstr=#D81E17, GradientType=0);
    border: 1px solid #811C21;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.4);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.5);

  text-transform: uppercase;
  letter-spacing: 1px;
  width: 50%;
  padding: 1rem;
  transition: all ease .4s;
}

.sign-in-form-button:hover {
  background-color: #811C21;
    background-image: -moz-linear-gradient(top, #D81E17, #811C21);
    background-image: -ms-linear-gradient(top, #D81E17, #811C21);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#D81E17), to(#811C21));
    background-image: -webkit-linear-gradient(top, #D81E17, #811C21);
    background-image: -o-linear-gradient(top, #D81E17, #811C21);
    background-image: linear-gradient(top, #D81E17, #811C21);
    background-repeat: repeat-x;
    filter: progid:dximagetransform.microsoft.gradient(startColorstr=#D81E17, endColorstr=#811C21, GradientType=0);
  border-color: #811C21;
}

/* トップ：メインイメージ
----------------------------------------------------------------------------------------------------*/
#mainb {
	background-color:#d51523;
	margin-bottom: 0;
}

#mainb .back-img {
	padding:1rem 0 0;
}

#mainb .back-img h1 img {
	padding-bottom: .25rem;
}

#mainb .back-img h2 {
	margin-bottom: 0;
}

/* 見出し
----------------------------------------------------------------------------------------------------*/
h1,h2,h3,h4,h5 {
	font-family: "Noto Sans Japanese", sans-serif;
}

article header h2 {
	font-weight:800;
	margin-bottom:2.5rem;
}

article header h2 span {
	border-bottom:7px solid #d51523;
}

article header h2 i.mini2 {
	border-bottom:none;
	color:#555;
	display:block;
	margin-top:1rem;
	font-family:"Arial Black", Gadget, sans-serif;
	font-style:normal;
}

article#top-merit header h2 span,
article#top-design header h2 span,
article#top-faq header h2 span {
	border-bottom:7px solid #FFF;
	text-shadow: 2px 2px 2px #FFF,
               2px -2px 2px #FFF,
               -2px 2px 2px #FFF,
               -2px -2px 2px #FFF
}

article#top-merit header h2 i.mini2,
article#top-design header h2 i.mini2,
article#top-faq header h2 i.mini2 {
	color:#EEE;
}

article header h3 {
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0.59, #FFF), color-stop(0.00, #EEE));
	background: -webkit-linear-gradient(top, #EEE 0%, #FFF 59%);
	background: -moz-linear-gradient(top, #EEE 0%, #FFF 59%);
	background: -o-linear-gradient(top, #EEE 0%, #FFF 59%);
	background: -ms-linear-gradient(top, #EEE 0%, #FFF 59%);
	background: linear-gradient(to bottom, #EEE 0%, #FFF 59%);
	border-top:1px solid #CCCCCC;
	border-left:1px solid #CCCCCC;
	border-right:1px solid #CCCCCC;
	border-bottom:5px solid #880000;
	color: #333;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif; 
	font-size: 1.5rem;
	font-weight:800;
	margin-top: 0;
	margin-bottom: 1rem;
	padding: 0.8rem 1rem 0.7rem;
	text-shadow: 1px 1px 1px rgba(255, 255, 255, .3);
}

article h3 {
	font-weight:700;
}

@media only screen and (max-width: 47.938em) {
article#product h3 {
	font-size:1.4rem;
}
}

article#product h1 {
	color:#FF0;
	font-family:Arial, Helvetica, sans-serif;
	font-weight:800;
}

@media only screen and (max-width: 47.938em) {
article#product h1 span {
	display:inline-block;
}
}

article#product h4 {
	color:#000;
	font-family:Arial, Helvetica, sans-serif;
	font-weight:800;
}

article h5 {
	font-weight:800;
	position: relative;
	padding: .25em 0 .5em .75em;
	border-left: 6px solid #ccc;
}
article h5::before {
	position: absolute;
	left: -6px;
	bottom: 0;
	content: '';
	width: 6px;
	height: 50%;
	background-color: #d51523;
}
article h5::after {
	position: absolute;
	left: 0;
	bottom: 0;
	content: '';
	width: 100%;
	height: 0;
	border-bottom: 1px solid #ccc;
}

/* トップ：特徴
----------------------------------------------------------------------------------------------------*/
#top-about {
	padding-top:2rem;
	padding-bottom:2rem;
}

#top-about h2 {
	margin-bottom:2rem;
}

#top-about p img {
  width: 250px;
  border-radius: 250px;
  -webkit-border-radius: 250px;
  -moz-border-radius: 250px;
}

/* トップ：メリット
----------------------------------------------------------------------------------------------------*/
#top-merit {
	background-color:#d51523;
	padding-top:2rem;
	padding-bottom:2rem;
}

#top-merit h2 {
	margin-bottom:2rem;
}

#top-merit img {
	width: calc(100% - 10px);
	max-width: 1200px;
}

/* トップ：プラン
----------------------------------------------------------------------------------------------------*/
#top-plan {
	padding-top:2rem;
	padding-bottom:2rem;
}

#top-plan h2 {
	margin-bottom:2rem;
}

#top-plan img {
	width: calc(100% - 10px);
	max-width:1200px;
}

/* トップ：デザイン
----------------------------------------------------------------------------------------------------*/
#top-design {
	background-color:#d51523;
	padding-top:2rem;
	padding-bottom:2rem;
}

#top-design h2 {
	margin-bottom:2rem;
}

#top-design p {
	color: #FFF;
}

.badge {
  background: #d51523;
  color: #FFF;
}

/* トップ：制作実績
----------------------------------------------------------------------------------------------------*/
#top-works {
	padding-top:2rem;
	padding-bottom:2rem;
}

#top-works h2 {
	margin-bottom:2rem;
}

/* トップ：よくある質問
----------------------------------------------------------------------------------------------------*/
#top-faq {
	background-color:#d51523;
	padding-top:2rem;
	padding-bottom:2rem;
}

#top-faq h2 {
	margin-bottom:2rem;
}

#top-faq dt {
	background: url(../img/icon_faq_qes.png) no-repeat #FFF6E4 10px 10px;
	border-top: 1px solid #DDDDDD;
	border-left: 1px solid #DDDDDD;
	border-right: 1px solid #DDDDDD;
	border-bottom: 5px solid #FFE599;
	color:#444444;
	font-size:1rem;
	margin-bottom: 0;
	padding: 12px 10px 7px 40px;
}
#top-faq dd {
	background: url(../img/icon_faq_ans.png) no-repeat #FFF 10px 13px;
	padding: 15px 10px 0 40px;

	margin-bottom: 2rem;
	border-bottom: 1px solid #DDDDDD;
	border-left: 1px solid #DDDDDD;
	border-right: 1px solid #DDDDDD;
}

#top-faq .button.small {
	margin-bottom:0;
}

#top-faq p.white {
	color: #FFF;
}

/* トップ：お問い合わせ
----------------------------------------------------------------------------------------------------*/
#top-contact {
	padding-top:2rem;
	padding-bottom:2rem;
}

#top-contact h2 {
	margin-bottom:2rem;
}

.bod {
    border-bottom: 1px solid #CCC;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.bod label {
    font-weight: normal;
    font-size: 1rem;
}

.bod .large-8 li {
	padding-bottom:0;
}

.bod li label {
    font-size: 0.875rem;
}

fieldset legend {
    font-weight: normal;
    background: none;
    padding: 0;
    margin: 0;
    margin-left: 0
	}

label {
	margin-bottom:0.3rem;
}

/* トップ：運営会社
----------------------------------------------------------------------------------------------------*/
#shop {
	padding-top:1.5rem;
	padding-bottom:2rem;
}

/* ページ：テーブル
----------------------------------------------------------------------------------------------------*/
article table {
	width: 100%;
	border: none;
	border-collapse: collapse;
	background: none;
	margin: 0 0 1rem;
	padding: 0;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

article table thead tr th {
	background-color: #333;
	color:#FFF;
	width:33%;
}
article table tr th {
	background-color: #666;
	color:#F7F7F7;
	text-align: left;
}
article td {
	background-color: #FFF;
	text-align: left;
}
article table tr th, article table tr td {
	border: 1px solid #CCCCCC;
	padding: 0.5rem;
	margin: 0;
	text-align: center;
}