html {
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  color: #3a3f51;
  letter-spacing: 0.075em;
}

div,article,section,header,footer,figure { margin: 0; padding: 0; }
ul, ol { margin-top: 0; }
p { line-height: 1.4em; }
img {border-style: none; }
table { border-collapse: collapse; border-spacing: 0; }

a { text-decoration: none; }
a:link    { color: #0050a8; }
a:visited { color: #0050a8; }
a:hover   { color: #0050a8; text-decoration: underline; }
a:active  { color: #0050a8; }

.BrPc,.PcBr { display: none; }
.SmpNone,.SpNone { display: none; }

.CL { clear: both; }
.CF:after { clear: both; display: block; content: ""; }

/* ///// HEADER /////////////////////////////// */
header { 
  z-index: 9998;
  width: 100%;
}
header.MenuFixed {
  position: fixed;
  top: 0px;
  height: 70px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.3);
  opacity: 1;
  animation-duration: 0.5s;
  animation-name: fade-in;
}
@keyframes fade-in {
  0% { display: none; opacity: 0; }
  1% { display: block; opacity: 0; }
  100% { display: block; opacity: 1; }
}

#hd_body {
  position: relative;
  border-bottom: 1px dotted gray;
  width: 100%;
}

/* LOGO & SLOGAN
--------------------------- */
#hd_logo {
  width: 100%;
  height: 70px;
  background-color: #fff;
}
#hd_logo img {
  position: absolute;
  bottom: 10px;
  left:10px;
  margin: 0;
  padding: 0;
  width: auto;
  height: 50px;
}

/* メニューボタン
--------------------------- */
#sp_menu_btn{
  position: absolute;
  bottom: 10px;
  right: 10px;
  cursor: pointer;
  width: 50px;
  height:50px;
}
#sp_menu_btn span{
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #292f61;
  width: 45%;
}
#sp_menu_btn span:nth-of-type(1) { top:15px; }
#sp_menu_btn span:nth-of-type(2) { top:23px; }
#sp_menu_btn span:nth-of-type(3) { top:31px; }

body.active {
  touch-action: none;
  overflow-y: hidden;
}

/* MAIN_MENU
--------------------------- */
#main_menu { display: none; }

#sp_menu_area {
  display: none;
  z-index: 9999;
  position:fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #53c8aa;
}

#sp_logo {
  position: relative;
  width: 100%;
  height: 70px;
}
#sp_logo img {
  position: absolute;
  top: 10px;
  left:10px;
  margin: 0;
  padding: 0;
  width: 190px;
  height: auto;
  width: auto;
  height: 50px;
}

/* メニュー閉じるボタン
--------------------------- */
#sp_close_btn{
  position: absolute;
  z-index: 9999;
  top: 10px;
  right: 10px;
  cursor: pointer;
  width: 50px;
  height:50px;
}
#sp_close_btn span{
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #fff;
  width: 45%;
}
#sp_close_btn span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
#sp_close_btn span:nth-of-type(2){
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

/* スマホメニュー
--------------------------- */
ul#sp_main_menu {
  margin: 0;
  padding: 0 0 10px;
  border-top: 1px dotted #fff;
  width: 100%;
  height: 100%;
  font-size: 12px;
  list-style-type: none;
}
#sp_main_menu li {
  display: block;
  margin: 0;
  padding: 0;
  border-bottom: 1px dotted #fff;
}
#sp_main_menu a {
  display: block;
  margin: 0;
  padding: 15px 10px 15px 40px;
  background: url(/img/fm/sk01/frame/sm-arrow.png) 10px center / 15px  no-repeat;
  color: #fff;
}

/* ///// MAIN IMAGE ////////////////////////////// */

/* SUB PAGE MV STYLE
--------------------------- */
#main_image_area { width: 100%; }
#main_image { width: 100%; }
#main_image img { width: 100%; vertical-align: bottom; }

#main_image_area_bg { display: none; }

/* ///// CONTENT ////////////////////////////// */

/* パンくずリスト
--------------------------- */
#breadcrumbs {
  clear: both;
  box-sizing: border-box;
  padding: 10px;
  width: 100%;
  background-color: #f0f0f0;
  font-size: 13px;
}

/* CONTENT BODY
--------------------------- */
.ContentBody {
  width: 100%;
}
.ContentBody:after {
  clear: both;
  display: block;
  content: "";
}

/* MAIN_AREA
--------------------------- */
#main_area {
  margin: 0 auto;
  width: 100%;
  height: auto;
  max-width: 480px;
  min-height: 200px;
  background-color: #fff;
}
/* two column */
.MainArea {
  box-sizing: border-box;
  padding: 10px;
}
/* one column */
#main_area.ContentBody {
  box-sizing: border-box;
  padding: 10px;
}
/* wide one column */
section.ContentArea {
  box-sizing: border-box;
  padding: 30px 0 10px;
  width: 100%;
  overflow: hidden;
}
.ContentArea .ContentBody {
  box-sizing: border-box;
  padding: 10px;
}

/* ///// SIDE_AREA ////////////////////////////// */
#side_area {
  margin: 0 auto;
  width: 100%;
  height: auto;
  max-width: 480px;
  background-color: #fff;
}
.SideArea {
  box-sizing: border-box;
  padding: 10px;
}

/* サイドメニュ
--------------------------- */
dl.SideMenu {
  display: block;
  margin: 0 0 20px;
  padding: 0px;
  width: 100%;
}
.SideMenu dt {
  display: block;
  margin: 0px;
  padding: 13px 5px;
  width: auto;
  background-color: #044470;
  text-align: center;
  font-size: 15px;
  font-weight: bold;
  color: #fff;
}

.SideMenu dl {
  margin: 0;
  padding: 0;
}
.SideMenu dd {
  margin: 0px;
  padding: 0px;
}
.SideMenu dd.SList {
  display: block;
  border-bottom: 1px #ccc dotted ;
}
.SideMenu a {
  display: block;
  padding: 10px 10px 10px 30px;
  width: auto;
  background: url(/img/fm/sk01/frame/sm-arrow.png) 8px center no-repeat;
  color: #444;
}
dl.CategoryMenu {
  margin: 0;
  padding: 0;
}
.CategoryMenu dt {
  border-bottom: 1px #ccc dotted ;
  padding: 10px 5px;
  background-color: #fff;
  text-align: center;
  font-weight: bold;
  color: #0070b0;
}
.CategoryMenu dd a {
  padding-left: 60px;
  background: url(/img/fm/sk01/frame/sm-arrow.png) 16px center no-repeat;
}
a#sm_current,
dd.SmCurrent a { font-weight: bold; }

/* サイドバナー
--------------------------- */
ul.SideBanner {
  display: block;
  margin: 0 auto;
  padding: 0px;
  width: 300px;
  list-style-type: none;
}
.SideBanner li {
  display: block;
  margin: 0 0 10px 0;
  padding: 0px;
  text-align:center;
}
.SideBanner a {
  display: block;
  width: 100%;
}
.SideBanner img {
  display: block;
  margin: 0 auto;
  padding: 0;
  max-width: 100%;
}

/* ///// CONTACT AREA /////////////////////////////// */
section#contact_area {
  clear: both;
  box-sizing: border-box;
  padding: 70px 10px;
  width: 100%;
  background: #eeebf6 url(/img/fm/sk01/frame/bg-contact.jpg) center no-repeat;
  background-size: cover;
}

#contact_hdg{
  margin-bottom: 50px;
  text-align: center;
  letter-spacing: 0.075em;
  color: #fff;
}
#contact_hdg h2{
  display: block;
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 26px;
  font-weight: 700;
}
#contact_hdg span{
  display: block;
  font-size: 16px;
  font-weight: 200;
}

#contact_button_area {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  box-sizing: border-box;
  margin: 0 auto;
  width: 100%;
  max-width: 300px;
}
#contact_tel,#contact_form {
  margin-bottom: 20px;
  width: 300px;
  height: 90px;
}
#contact_button_area a {
  display: table-cell;
  box-sizing: border-box;
  border-radius: 20px;
  padding-left: 30px;
  width: 300px;
  height: 90px;
  text-align: center;
  line-height: 1;
  vertical-align: middle;
  font-size: 26px;
  letter-spacing: 2px;
  color: #fff;
  text-decoration: none;
}
#contact_button_area a span {
  display: block;
  font-size: 13px;
  margin-bottom: 10px;
}
#contact_tel a {
  background: #53c8aa url(/img/fm/sk01/frame/ic-tel.png) 8% center / 26px  no-repeat;
}
#contact_form a {
  font-size: 18px;
  background: #53c8aa url(/img/fm/sk01/frame/ic-mail.png) 6% center / 34px no-repeat;
}
#contact_button_area a:hover {
  background-color: #023456;
}

/* ///// FOOTER /////////////////////////////// */
footer {
  padding: 30px 0 0;
  width: 100%;
  background-color: #fff;
}

/* FOOTER LOGO & ADDRESS
--------------------------- */
#ft_address_area {
  padding: 0 10px 20px;
  text-align: center;
}

#ft_logo {
  margin-bottom: 20px;
}
#ft_logo img {
  width: 120px;
}

b#ft_company_name{
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
}
p#ft_address {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
}

/* FOOTER MENU
--------------------------- */
ul.FooterMenu {
  margin: 0;
  padding: 0;
  font-size: 13px;
  background-color: #53c8aa;
}
.FooterMenu li {
  border-bottom: 1px dotted #fff;
  width: 100%;
}
.FooterMenu a {
  display: block;
  margin: 0;
  padding: 10px 0 10px 40px;
  background: url(/img/fm/sk01/frame/sm-arrow.png) 10px center / 15px  no-repeat;
  color: #fff;
}

/* COPYRIGHT
--------------------------- */
#copyright {
  background-color: #53c8aa;
}
#copyright p {
  margin: 0;
  padding: 10px 0;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

/* PAGE TOP
--------------------------- */
#pagetop_fixed {
  display: none;
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
}
#pagetop_fixed img{
  width: 100%;
  height: 100%;
}
