﻿@charset "utf-8";


/* ========================================================================
		Reset Styles
======================================================================== */

/* font-face */
@font-face{
	font-family: "YuGothic M"; /* Windows Firefox用 */
	src: local(Yu Gothic Medium);
}


/* HTML5 */
article, aside, figure, figcaption, video, footer, header,
main, nav, section, summary{
	display: block;
	margin: 0;
}


/* Base Styles */
*{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

html, body, div, h1, h2, h3, h4, h5, h6,
p, blockquote, pre, address, small,
ul, ol, li, dl, dt, dd,
table, th, td,
form, fieldset{
	margin: 0;
	padding: 0;
	font-weight: normal;
}

html{
	font-size: 62.5%; /* 10px */
}

body{
	font-family: "游ゴシック Medium", "游ゴシック体", "YuGothic M", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	font-size: 1.6rem; /* 16px */
	color: #333333;
	line-height: 1.2;
	-webkit-text-size-adjust: 100%;
}

select,input,button,textarea{
	font-family: inherit;
	font-size: 100%;
	color: #333333;
}

pre,code,kbd,samp{
	font-family: inherit;
}

img,
iframe{
	border: none;
	vertical-align: bottom;
}

table{
	width: 100%;
	border: none;
	border-collapse: collapse;
	border-spacing: 0;
	font-size: inherit;
	font: 100%;
}

label{
	cursor: pointer;
}

input,
textarea{
	padding: 0;
	vertical-align: middle;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="number"],
input[type="password"],
textarea{
	-webkit-appearance: none; /* iPhone・iPad グラデーション解除 */
    border-radius: 0; /* iPhone・iPad 角丸解除 */
}

/* Firefox・IE スピンボタン非表示 */
input[type="number"] {
    -moz-appearance: textfield;
}

/* Chrome・Safari スピンボタン非表示 */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="radio"],
input[type="checkbox"]{
	cursor: pointer;
}

button,
input[type="image"],
input[type="submit"],
input[type="button"]{
	margin: 0; /* iPhone・iPad用 */
	padding: 0;
	cursor: pointer;
	-webkit-appearance: none; /* iPhone・iPad グラデーション解除 */
    border-radius: 0; /* iPhone・iPad 角丸解除 */
}

select,
select option,
select optgroup{
	padding: 0 4px;
	font-style: normal;
}

ol,ul{
	list-style: none;
}

h1,h2,h3,h4,h5,h6,small{
	font-size: 100%;
}

address{
	font-style: normal;
} 

a,
input{
	outline: none;
}


/* Basic Text Link */
a{
	color: #333333;	text-decoration: underline;
}
a:link{
	color: #333333;	text-decoration: underline;
}
a:visited{
	color: #333333;	text-decoration: underline;
}
a:hover{
	color: #333333;	text-decoration: none;
}
a:focus{
	color: #333333;	text-decoration: underline;
}
a:active{
	color: #333333;	text-decoration: underline;
}


/* Common Styles */
img{
	max-width: 100%;
	height: auto;
}

ul,
ol,
.column{
	overflow: hidden;
	position: relative;
}

.center{
	text-align: center;
}


/* ========================================================================
		dlmenu
======================================================================== */
@media screen and (max-width:767px){
.dl-menuwrapper .dl-menu {
	position: absolute;
	opacity: 0;
	pointer-events: none;
	-webkit-transform: translateY(10px);
	-moz-transform: translateY(10px);
	transform: translateY(10px);
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	backface-visibility: hidden;
}

.dl-menuwrapper .dl-menu.dl-menu-toggle {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.dl-menuwrapper .dl-menu.dl-menuopen {
	opacity: 1;
	pointer-events: auto;
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	transform: translateY(0px);
}
}