@charset "UTF-8";
/* FONT */
@import url('https://fonts.googleapis.com/css2?family=Baskervville:ital,wght@0,400..700;1,400..700&family=Noto+Sans+JP:wght@100..900&family=Zen+Old+Mincho&display=swap');

/*----------------------------------------------------------------------------
	reset
----------------------------------------------------------------------------*/
* {
	box-sizing: border-box;
	vertical-align: baseline;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
	margin: 0;
	padding: 0;
}

address, caption, cite, code, dfn, em, strong, th, var {
	font-style: normal;
}

ul, ol {
	list-style-type: none;
}

em, strong, th, address {
	font-style: normal;
	font-weight: normal;
	text-align: left;
}

h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
	font-weight: normal;
}

img, object, embed {
	border: 0;
	vertical-align: top;
}

img {
	max-width: 100%;
	height: auto;
	image-rendering: -webkit-optimize-contrast;
}

hr {
	display: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
	font-size: 100%;
}

li {
	list-style-type: none;
}

strong {
	font-weight: bold;
}

p:last-child {
	margin-bottom:0 !important;
}

/*----------------------------------------------------------------------------
	font
----------------------------------------------------------------------------*/

.font-zen {
  font-family: "Zen Old Mincho", serif;
  letter-spacing: 0.1em;
  font-weight: 400;
  font-style: normal;
}
.font-bask {
  font-family: "Baskervville", serif;
  font-optical-sizing: auto;
  letter-spacing: 0.03em;
  font-weight: bold;
  font-style: normal;
}
.font-noto {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/*----------------------------------------------------------------------------
	linkColor
----------------------------------------------------------------------------*/
a {
	color: #121314;
	text-decoration: none;
}

/*----------------------------------------------------------------------------
	base
----------------------------------------------------------------------------*/
html, body {
	overflow-x: hidden;
	width:100%;
}

html {
	font-size: 62.5%;
	-webkit-text-size-adjust: 100%;
	position: relative;
}

body {
	overflow: hidden;
  padding-top:65px;
	position: relative;
	font-size: 13px;
	font-family: "Tenor Sans", "Sawarabi Mincho", serif;
  font-weight: 400;
  letter-spacing: 0.03em;
	line-height: 1.5;
	color: #2F1F05;
	word-break: break-all;
	background: #FFFCF4;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.pc {
	display: none;
}


/*----------------------------------------------------------------------------
	header
----------------------------------------------------------------------------*/

header {
	position:fixed;
	left:0;
	top:0;
	width:100%;
	height: 65px;
	background: #fcfcfc;
	box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.16);
	z-index:10;
}

header .logo {
	position:absolute;
	left:4vw;
	top:17px;
	width:188px;
}


/*----------------------------------------------------------------------------
	footer
----------------------------------------------------------------------------*/
footer {
	position:relative;
	margin-bottom:80px;
	padding: 160px 0 20px;
	width: 100%;
	border-bottom:1px solid #848384;
}

.copyright {
	position:absolute;
	left: -12vw;
	bottom: 80px;
	font-size:12px;
	white-space: nowrap;
	font-weight:100;
	letter-spacing:0.05em;
  transform: rotate(90deg);
}

.toTop {
	display:inline-block;
	position:absolute;
	right:2vw;
	bottom:30px;
	width:52px;
	transition: all 0.3s;
	cursor: pointer;
}

/*----------------------------------------------------------------------------
	main
----------------------------------------------------------------------------*/
main {
	overflow:hidden;
	margin:0 auto 0 auto;
	width:100%;
}


/*----------------------------------------------------------------------------
	#page-sample
----------------------------------------------------------------------------*/

#page-sample #mv {
  margin-bottom:50px;
}

#page-sample #btn ul {
  margin:0 auto 80px;
  width:70%;
}
  #page-sample #btn li {
    margin-bottom:40px;
  }

#page-sample #txt {
  margin:0 auto 80px;
  width:80%;
}
  #page-sample #txt p {
    margin-bottom:40px;
  }
  #page-sample #txt p:first-child {
    width:60%;
  }


