@charset "UTF-8";

/* Reset margin, padding, border
 * *********************************** */
html, body,
h1, h2, h3, h4, h5, h6,
a, p, span,
em, small, strong,
sub, sup,
mark, del, ins, strike,
abbr, dfn,
blockquote, q, cite,
code, pre,
ol, ul, li, dl, dt, dd,
div, section, article,
main, aside, nav,
header, hgroup, footer,
img, figure, figcaption,
address, time,
audio, video,
canvas, iframe,
details, summary,
fieldset, form, label, legend,
table, caption,
tbody, tfoot, thead,
tr, th, td {
    margin: 0;
    padding: 0;
    border: 0;
}

/* Typography
 * *********************************** */
html {
    font-size: 62.5%;
}
body {
	position: relative;
    font-size: 1.6rem;
    line-height: 1.875;
	font-family: '游ゴシック体','游ゴシック','Yu Gothic',YuGothic,'Hiragino Kaku Gothic ProN','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック','MS PGothic',sans-serif;
}
* {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}
a,
a:visited {
    color: #00a0e9;
	text-decoration: none;
	transition: all 0.3s ease;
}
a:hover {
	color: #ffb681;
}
a::before,
a::after {
	transition: all 0.3s ease;
}

/* Layout
 * *********************************** */
article,
aside,
footer,
header,
nav,
section,
main {
    display: block;
}
* {
    box-sizing: border-box;
}
*:before,
*:after {
    box-sizing: inherit;
}

/* Elements
 * *********************************** */
table {
    border-collapse: collapse;
    border-spacing: 0;
}
ol,
ul {
    list-style: none;
}
img,
video {
    max-width: 100%;
}
img {
    border-style: none;
	vertical-align: bottom;
}
blockquote,
q {
    quotes: none;
}
blockquote:after,
blockquote:before,
q:after,
q:before {
    content: "";
    content: none;
}

/* Attributes & states
 * *********************************** */
[hidden] {
    display: none !important;
}
[disabled] {
    cursor: not-allowed;
}
:focus:not(:focus-visible) {
    outline: none;
}

/* 追加
 * *********************************** */
 /* container */
.container {
	width: 1040px;
	max-width: 100%;
	padding: 0 20px;
	margin: 0 auto;
}
 
 /* flexbox */
.flexbox {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
@media screen and (min-width:768px){
	.flexbox_over768 {
		display: -webkit-box;
		display: -webkit-flex;
		display: flex;
		-webkit-box-pack: justify;
    	-webkit-justify-content: space-between;
    	justify-content: space-between;
	}
}

 /* nowrap */
.nowrap {
	white-space: nowrap;
}

/* spOnly pcOnly */
.pcOnly { display: none; }
@media screen and (min-width:768px){
	.pcOnly { display: inline; }
	.spOnly { display: none; }
}

/* 電話 */
#contentWrap a[href^="tel:"] {
	cursor: default;
}
#contentWrap a[href^="tel:"]:hover {
	text-decoration: none;
}

/* 背景画像でロゴなど */
.bglink {
	/* width, height, background-image */
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
}
.bglink a {
	display: block;
	width: 100%;
	height: 100%;
}

/* 背景色 */
.beige {
	width: 100%;
	background-color: #f5f3ee;
}

/* フォントカラー */
.skyblue {
	color: #00a0e9;
}