@charset "UTF-8";
/* base.css */

/* break point
tab 560px以上 @media screen and (min-width: 560px) {…}
pc  960px以上 @media screen and (min-width: 960px) {…}*/

/* base styles
------------------------------------------ */
html {
    font-size: 62.5%;
}
body {
    color: #333;
    font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
    font-weight: 300;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1.8;
    text-align: left;
    font-feature-settings: "palt" 1;
    overflow-x: hidden;
	-webkit-text-size-adjust: 100%;/* スマホランドスケープ対応*/
	background: url(../img/common/bg_fabric.png) #fff;
}
img {
    max-width: 100%;
    height: auto;
    box-sizing: border-box;
}
a {
    color: #333;
    text-decoration: none !important;
}
a:hover {
    color: #333;
}
ul {
    list-style: none;
}
ol {
    list-style: none;
}
ol, ul {
    padding-left: 0;
    margin-top: 0;
}
	
/* global-nav
------------------------------------------ */
#top-head {
    width: 100%;
    padding: 0;
    position: fixed;
    top: -100px;
    margin-top: 100px;
	z-index: 999;
}
#top-head .inner {
    position: relative;
    margin: 0 auto;
    width: 100%;
    padding: 0;
}
#mobile-head {
    background: rgba(255,255,255,0.8);
    width: 100%;
    height: 95px;
    z-index: 999;
    position: relative;
}
#top-head .logo {
    position: absolute;
    left: 30px;
    top: 20px;
    width: 64px;
    height: 51px;
}
#nav-toggle {
    display: block;
    position: absolute;
    right: 30px;
    top: 35px;
    width: 34px;
    height: 36px;
    cursor: pointer;
    z-index: 101;
}
#nav-toggle div {
    position: relative;
}
#nav-toggle span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #000;
    left: 0;
    transition: .35s ease-in-out;
}
#nav-toggle span:nth-child(1) {
    top: 0;
}
#nav-toggle span:nth-child(2) {
    top: 11px;
}
#nav-toggle span:nth-child(3) {
    top: 22px;
}
#global-nav {
    position: absolute;
    top: -580px;
    background: #f9c9c8;
    width: 100%;
    text-align: center;
    padding: 115px 0 60px 0;
    transition: 0.5s ease-in-out;
}
#global-nav ul {
    list-style: none;
    position: static;
    right: 0;
    bottom: 0;
    font-size: 2.0rem;
    font-family: "Karla", sans-serif;
    font-weight: 700;
    letter-spacing: 0.05em;	
}
#top-head #global-nav ul li a, 
#top-head.fixed #global-nav ul li a {
    position: relative;
    display: inline-block;
    color: #000;
    margin: 30px 0 0 0;
}
#top-head #global-nav ul li.current::after {
    content: "";
    display: block;
    width: 16%;
    height: 2px;
    background: #000;
    margin: 0 42%;
}
#top-head #global-nav ul li.sns_icon img {
    width: 25px;
    height: 25px;
}
.open #nav-toggle span:nth-child(1) {
    top: 11px;
    transform: rotate(315deg);
}
.open #nav-toggle span:nth-child(2) {
    width: 0;
    left: 50%;
}
.open #nav-toggle span:nth-child(3) {
    top: 11px;
    transform: rotate(-315deg);
}
.open #global-nav {
    transform: translateY(550px);
}

@media screen and (min-width: 560px) {
#top-head .inner {
    width: 89.8437%;
}
#top-head .logo {
    left: 0;
}
#nav-toggle {
  display: none;
}
#global-nav {
	position: absolute;
	right: 0;
	top: 42px;
	background-color: transparent;
	width: auto;
	padding: 0;
	transition: none;
    z-index: 999;
}
#global-nav ul {
	display: flex;
	font-size: 1.6rem;
} 
#global-nav ul li {
	flex-wrap:nowrap;
	justify-content: flex-end;
    position: relative;
}
#top-head #global-nav ul li a,
#top-head.fixed #global-nav ul li a {
    color: #000;
    margin: 0 10px;
}
/* Btn Hover */
#top-head #global-nav ul li::after {
	position: absolute;
	content: "";
	display: block;
	width: 70%;
	height: 2px;
	bottom: 0;
	left: 15%;
	transition: all 0.3s ease 0s;
}
#top-head #global-nav ul li:hover::after {
	background: #000;
	bottom: -5px;
}
#top-head #global-nav ul li.current::after {
	margin: 0;
	position: absolute;
	content: "";
	display: block;
	width: 70%;
	height: 2px;
	bottom: -5px;
	left: 15%;
	background: #000;
}
#top-head #global-nav ul li.sns_icon::after {
	content: none;
}

/* fixed */
#top-head.fixed {
    margin-top: 0;
    top: 0;
    position: fixed;
    height: 95px;
    background: rgba(255,255,255,0.9);
    transition: top 0.65s ease-in;
}
#mobile-head {
    background: transparent;
}
}

@media screen and (min-width: 960px) {
#top-head .logo {
    position: absolute;
    left: 10px;
    top: 40px;
	width: 138px;
	height: 109px;
}
#global-nav {
	top: 100px;
}
#global-nav ul {
    font-size: 1.8rem;
} 
#top-head #global-nav ul li a,
#top-head.fixed #global-nav ul li a {
    margin: 0 20px;
}
/* Btn Hover */
#top-head #global-nav ul li::after {
	position: absolute;
	content: "";
	display: block;
	width: 55%;
	height: 2px;
	bottom: -2px;
	left: 22%;
	transition: all 0.3s ease 0s;
}
#top-head #global-nav ul li:hover::after {
	background: #000;
	bottom: -8px;
}
#top-head #global-nav ul li.current::after {
	position: absolute;
	content: "";
	display: block;
	width: 55%;
	height: 2px;
	bottom: -8px;
	left: 22%;
	background: #000;
}
/* fixed */
#top-head.fixed #global-nav {
	top: 33px;
}
#top-head.fixed .logo {
    position: absolute;
    left: 30px;
    top: 20px;
    width: 64px;
    height: 51px;
}
}

@media screen and (min-width: 1400px) {
#top-head .inner {
    width: 1320px;
}
}

/* page-top
------------------------------------------ */
#page-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
}
#page-top a {
    display: block;
}
#page-top a:hover {
}