@charset "utf-8";

/* ======================================================
 * style.css
 * ------------------------------------------------------
 * Reset
 * Basic
 * General Purpose
 * Page
 * Header
 * Main
 * Footer
 * Page Component
 * Clearfix
 * Media Queries
 * Print
====================================================== */

/* ------------------------------------------------------
 * Reset
------------------------------------------------------ */
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;}
body{line-height:1;}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block;}
nav ul{list-style:none;}
blockquote,q{quotes:none;}
blockquote:before,blockquote:after,q:before,q:after{content:'';content:none;}
a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent;}
ins{background-color:#ff9;color:#000;text-decoration:none;}
mark{background-color:#ff9;color:#000;font-style:italic;font-weight:bold;}
del{text-decoration: line-through;}
abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help;}
table{border-collapse:collapse;border-spacing:0;}
hr{display:block;height:1px;border:0;border-top:1px solid #cccccc;margin:1em 0;padding:0;}
input,select{vertical-align:middle;}

/* ----- custom ----- */
main{display:block;margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;}
h1,h2,h3,h4,h5,h6,small{font-weight:normal;}
ul,ol{list-style:none;}
strong{font-weight:bold;}
em,i{font-style:italic;}
address{font-style:normal;}
hr,legend{display:none;}
time{display:block;}
sub,sup{position:relative;font-size:60%;line-height:1;}
sup{top:-0.7em;}
sub{bottom:-.1em;}
img{max-width:100%;height:auto;vertical-align:top;}

/* ------------------------------------------------------
 * Basic
------------------------------------------------------ */
html {
  font-size: 62.5%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  color: #000;
  font: 1.6rem/2.25 Nunito,"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  word-wrap : break-word;
}
body *,
body *::before,
body *::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* ----- a ----- */
a {
  -webkit-transition: all .2s ease-out 0s;
  transition: all .2s ease-out 0s;
  -webkit-tap-highlight-color: transparent;
}
a:link    {color:#0075c2;text-decoration:underline;}
a:visited {color:#0075c2;text-decoration:underline;}
a:hover   {color:#0075c2;text-decoration:none;}
a:active  {color:#0075c2;text-decoration:none;}
a[href^="tel:"] {
  color: #333;
  /* text-decoration: none; */
  /* pointer-events: none; */
  /* cursor: default; */
}

/* ------------------------------------------------------
 * General Purpose
------------------------------------------------------ */
/* ----- font ----- */
.f-bold{font-weight:bold!important;}
.f-italic{font-style:italic!important;}
.f-underline{text-decoration:underline!important;}
.f-strike{text-decoration:line-through!important;}
.f-normal-weight{font-weight:normal!important;}
.f-normal-style{font-style:normal!important;}

/* ------------------------------------------------------
 * Page
------------------------------------------------------ */
.Page {
  overflow: hidden;
  padding: 0 0 60px;
  background-color: #333;
}
.Wrap {
  width: 1000px;
  margin: 0 auto;
}

/* ------------------------------------------------------
 * Header
------------------------------------------------------ */
.Header {
  background-color: #333;
}
.HeaderBody {
  padding: 15px 0;
}

/* ----- header-identity ----- */
.header-identity .identity_logo {
  line-height: 0;
}
.header-identity .identity_logo a {
  display: inline-block;
}

/* ------------------------------------------------------
 * Main
------------------------------------------------------ */
.Main {
  background-color: #fff;
}

/* ----- pageHead ----- */
.pageHead .heading-lv1 .heading_title {
  background-color: #3e3e3e;
  text-align: center;
}
.pageHead .heading-lv1 .heading_title img {
  max-width: 100%;
}

/* ------------------------------------------------------
 * Footer
------------------------------------------------------ */
.Footer {
  padding: 60px 0;
  background-color: #fff;
}

/* ----- footer-copyright ----- */
.footer-copyright {
  line-height: 0;
  text-align: center;
}

/* ----- Pagetop ----- */
.Pagetop {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 9999;
}

input::placeholder {
  color: rgba(255, 0, 0, 0.7);
}

/* IE */
input:-ms-input-placeholder {
  color: rgba(255, 0, 0, 0.7);
}

/* Edge */
input::-ms-input-placeholder {
  color: rgba(255, 0, 0, 0.7);
}

textarea::placeholder {
  color: rgba(255, 0, 0, 0.7);
}

/* IE */
textarea:-ms-input-placeholder {
  color: rgba(255, 0, 0, 0.7);
}

/* Edge */
textarea::-ms-input-placeholder {
  color: rgba(255, 0, 0, 0.7);
}

input:focus {
  outline: none;
}
