﻿/* Feelcerca Web Common CSS */

@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,700&subset=japanese');

html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ Pro W3", 'Noto Sans JP', sans-serif;
	color: #606060;
  background: #404040;
}

.fc-header{
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  background: #202020;
  width: 100%;
  height: 96px;
	z-index: 10;
}

.fc-header-container{
	display: flex;
	flex-direction: row;
  justify-content: flex-start;
}

/*
.fc-header-logo {
  margin: 20px auto 20px 20px;
	align-self: center;
  background: url(../img/fc_mark_b.png) no-repeat center/100%;
  width: 51.5px;
  height: 51.5px;
}

@media screen and (min-width:750px){
  .fc-header-logo {
    margin: 20px auto 20px 100px;
    background: url(../img/fc_b_logo_b-480.png) no-repeat center/100%;
    width: 240px;
    height: 51.5px;
  }
}
*/

.fc-header-logo {
  margin: 20px auto 20px 100px;
  background: url(../img/fc_b_logo_b-480.png) no-repeat center/100%;
  width: 240px;
  height: 51.5px;
	flex-shrink: 0;
}

.fc-header-menu {
	white-space: nowrap;
  display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	margin-right: 50px;
}

.fc-header-item {
  margin: 10px;
}

.fc-link {
  text-decoration: none;
  color: blue;
}

.fc-link:visited {
  text-decoration: none;
  color: purple;
}

.fc-link:hover {
  text-decoration: underline;
}

.fc-link-button {
  text-decoration: none;
  color: #505050;
  border: solid 2px #505050;
	border-radius: 10px;
  padding: 4px;
}

.fc-link-button:link {
  text-decoration: none;
  color: #505050;
  border: solid 2px #505050;
	border-radius: 10px;
  padding: 4px;
}

.fc-link-button:visited {
  text-decoration: none;
  color: #505050;
  border: solid 2px #505050;
	border-radius: 10px;
  padding: 4px;
}

.fc-link-button:hover {
  text-decoration: none;
  color: #505050;
  border: solid 2px #505050;
	border-radius: 10px;
  padding: 4px;
}

.fc-link-button:active {
  text-decoration: none;
  color: #808080;
  border: solid 2px #808080;
	border-radius: 10px;
  padding: 4px;
}

.fc-footer{
  background: #202020;
  width: 100%;
  height: 120px;
}

.fc-item {
	align-self: center;
}

.fc-item-long {
  width: 80%;
	text-align: center;
}

.fc-usagi-parent {
  position: relative;
}

.fc-usagi {
  position: absolute;
  background: url(../img/fc_usagi_s-56x64.png) no-repeat center/100%;
  width: 28px;
  height: 28px;
  top: 32px;
  right: 20px;
  cursor: pointer;
}

.fc-copyright {
  margin: 10px;
	align-self: center;
	font-size: small;
}

.fc-padding32 {
  padding: 32px;
}

.fc-padding96 {
  padding: 96px;
}

.fc-padding8 {
  padding: 8px;
}

.fc-margin4 {
  margin: 4px;
}

.fc-margin64 {
  margin: 64px;
}

.fc-fadein-from-bottom {
  opacity: 0;
  transform: translate(0, 100px);
  transition: all 1000ms;
}

.fc-fadein-from-bottom.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

.fc-fadein-from-left {
  opacity: 0;
  transform: translate(-100px, 0);
  transition: all 1000ms;
}

.fc-fadein-from-left.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

.fc-fadein-from-right {
  opacity: 0;
  transform: translate(100px, 0);
  transition: all 1000ms;
}

.fc-fadein-from-right.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

.fc-menu-btn {
  position: fixed;
  top: 16px;
  right: 10px;
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  cursor: pointer;
}

.fc-menu-btn span,
.fc-menu-btn span:before,
.fc-menu-btn span:after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: #c0c0c0;
  position: absolute;
}

.fc-menu-btn span:before {
  bottom: 8px;
}

.fc-menu-btn span:after {
  top: 8px;
}

#fc-menu-btn-check:checked ~ .fc-menu-btn span {
  background-color: rgba(255, 255, 255, 0);
}

#fc-menu-btn-check:checked ~ .fc-menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#fc-menu-btn-check:checked ~ .fc-menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
}

#fc-menu-btn-check {
  display: none;
}

.fc-menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%;
  z-index: 80;
  background-color: #202020;
  transition: all 0.5s;
}

.fc-menu-content ul {
  padding: 70px 10px 0;
}

.fc-menu-content ul li {
  border-bottom: solid 1px #c0c0c0;
  list-style: none;
}

.fc-menu-content ul li a {
  display: block;
  width: 100%;
  font-size: 15px;
  box-sizing: border-box;
  color:#c0c0c0;
  text-decoration: none;
  padding: 9px 15px 10px 0;
  position: relative;
}

.fc-menu-content ul li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #c0c0c0;
  border-right: solid 2px #c0c0c0;
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 16px;
}

#fc-menu-btn-check:checked ~ .fc-menu-content {
  left: 0;
}

.fc-hamburger-menu {
  display: block;
}

.fc-header-menu {
  display: none;
}

@media screen and (min-width:975px){
  .fc-hamburger-menu {
    display: none;
  }
  .fc-header-menu {
    display: flex;
  }
}

.fc-no-dec-link {
  text-decoration: none;
  color: #c0c0c0;
}

.fc-no-dec-link:link {
  text-decoration: none;
  color: #c0c0c0;
}

.fc-no-dec-link:visited {
  text-decoration: none;
  color: #c0c0c0;
}

.fc-no-dec-link:hover {
  text-decoration: underline;
  color: #c0c0c0;
}

.fc-no-dec-link:active {
  text-decoration: none;
  color: #808080;
}

.fc-no-dec-link-b {
  text-decoration: none;
  color: #202020;
}

.fc-no-dec-link-b:link {
  text-decoration: none;
  color: #202020;
}

.fc-no-dec-link-b:visited {
  text-decoration: none;
  color: #202020;
}

.fc-no-dec-link-b:hover {
  text-decoration: underline;
  color: #202020;
}

.fc-no-dec-link-b:active {
  text-decoration: none;
  color: #808080;
}

.fc-trademark {
	margin: 40px 0px 20px 0px;
	font-size: 12px;
	text-align: left;
  color: #a0a0a0;
}

.fc-trademark-item {
}
