@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:200,300,400,500,600,700,800,900&display=swap');

/* リセットCSS */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	color: inherit;
	vertical-align: baseline;
}
h1, h2, h3, h4, h5, h6{
	height: auto;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* /リセットCSS */


/****************************************
		clearfix
*****************************************/
.cf::before,
.cf::after {
	content: " ";
	display: table;
}
.cf::after {
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
.cf {
	display: inline-block;
	*zoom: 1;
}

* html .cf {
	height: 1%;
}
/* /clearfix */

/****************************************
		base
*****************************************/

*{
	box-sizing: border-box;
}
body{
	width: 100%;
	max-width: 100%;
	position: relative;
	font-family: 'Noto Sans JP','ヒラギノ角ゴ ProN','Hiragino Kaku Gothic ProN','メイリオ',Meiryo,'ＭＳ Ｐゴシック','MS PGothic',sans-serif;
	font-size: 16px;
  font-weight: 400;
	letter-spacing: 0.1em;
	font-feature-settings: "palt";
	background: #ea9143;
}

p{
	font-size: 1em;
	line-height: 1.7em;
	letter-spacing: 0.1em;
	word-break: break-word;
	overflow-wrap : break-word;
	font-weight: 400;
}

h1,h2,h3,h4,h5,h6{
	line-height: 1.4em;
	letter-spacing: 0.1em;
	word-break: break-word;
	overflow-wrap : break-word;
}
strong{
	font-weight: 700;
	color: #f62e5d;
}
img{
	margin: 0 auto;
	line-height: 0;
	padding: 0;
	vertical-align: bottom;
	max-width: 100%;
}
a{
	transition: 0.3s;
	display: inline-block;
	text-decoration: none;
	color: inherit;
}

button{
	font-size: 100%;
	border: 0;
	padding: 0;
	font-family: inherit;
	background: none;
	border: none;
	outline: none;
	cursor: pointer;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}


body ::-webkit-scrollbar {
	width: 0.5em;
	display: inline-block;
	margin: 1em 0;
}
body ::-webkit-scrollbar-track {
	background: #e6e6e6;
	border-radius: 5em;
}
body ::-webkit-scrollbar-thumb {
	background: #000;
	border-radius: 5em;
}


/****************************************
		header
*****************************************/
header{
	background: #d36848;
	text-align: center;
	padding: 20px 0 20px;
}

/****************************************
		footer
*****************************************/
footer{
	background: #e4b734;
	text-align: center;
	padding: 55px 0 80px;
}
small{
	font-weight: bold;
	font-size: 1.6em;
}

/****************************************
		main
*****************************************/
a{
	transition: .3s;
}
a:hover{
	opacity: .8;
}
img{
	height: auto;
}
.inner{
	max-width: 1244px;
	width: 80%;
	margin: 0 auto;
}
.main{
	text-align: center;
}
.main02{
	margin: 80px 0 0;
}

.flyer{
	padding: 80px 0 140px;
}
.contact{
	background: #d36848;
	padding: 40px 0 40px;
}

/****************************************
		スマホ対応
*****************************************/
.sp{
	display: none;
}
@media (max-width: 768px) {
	.pc{
		display: none;
	}
	.sp{
		display: block;
	}
	img.sp{
		display: inline-block;
	}
	body{
		font-size: 3vw;
	}
	header{
    padding: 1vw 0;
	}
	header .logo{
		width: 10vw;
	}
	footer{
		padding: 4vw 0 5vw;
	}
	small{
    font-size: 2.6vw;
	}

	.main02{
    margin: 6vw 0 0;
	}
	.main02 img{
		width: 74vw;
	}
	.flyer{
    padding: 8vw 0 13vw;
	}
	.flyer img{
    width: 72vw;
	}
	.contact{
    padding: 4vw 0 3vw;
	}
	.contact img{
    width: 42vw;
	}
}
