@charset "utf-8";


/* sp 共通
 ================================================== */
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /*-moz-appearance: none;
  -webkit-appearance: none;*/
}

/* reset */
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td {
  margin:0;
  padding:0;
}
h1,h2,h3,h4,h5,h6 {
  font-weight:normal;
  line-height:1.0;
}
table {
  border-collapse:collapse;
  border-spacing:0;
}
th,td {
  font-weight:normal;
  text-align:left;
}
input,textarea,select {
  font-family:inherit;
  font-size:inherit;
  font-weight:inherit;
}
img {
  vertical-align:top;
}
ul,li {
  list-style: none;
}

/* base */
html {
	font-size:62.5%;
}
body {
  background-image: url(../img/com-bg.png);
  background-attachment: fixed;
  font-size: 100%;
  font-family: Meiryo, "ＭＳ Ｐゴシック", "Lucida Grande", sans-serif;
  line-height: 1.8;
}
.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}

a:link {
  color: #000;
  text-decoration: underline;
}
a:visited {
  color: #000;
  text-decoration: underline;
}

.bold {
  font-weight: bold;
}
.right {
  text-align: right;
}

.lst-disc li {
  list-style: disc;
  margin-left: 20px;
}


/* header
 ================================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 5;
}
header .wrap {
	display: flex;
	align-items: center;
	width: 100%;
  height: 60px;
}
header img {
	height: auto;
}

.head-ttl {
  width: 110px;
}
.head-ttl img {
  width: 100px;
}
.head-contact {
	display: flex;
	justify-content: flex-end;
	width: calc(100% - 110px);
}
.head-contact img {
  width: 40px;
}
.head-contact a {
  display: block;
	margin-right: 10px;
}
.head-contact a.btn-line {
	background-image: url("../img/ic-line.png");
	background-repeat: no-repeat;
	background-position: left 6px top 50%;
	background-size: 20px;
  background-color: #00b900;
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
  line-height: 40px;
	white-space: nowrap;
  text-align: center;
  text-decoration: none;
	padding: 0 10px 0 32px;
  border-radius: 10px;
}


/* ページ下部固定ボタン
 ================================================== */
.fixed-nav {
  position: fixed;
  background-color: #fff;
  bottom: 0;
  width: 100%;
  z-index: 3;
}
.fixed-nav ul {
	display: flex;
	align-items: center;
	align-content: space-between;
	width: 100%;
  margin: 10px 0;
}
.fixed-nav li {
	flex: 1 1 0;
}
.fixed-nav li a {
  display: block;
  position: relative;
  background-color: #fde7cd;
  color: #493a31;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 32px;
	white-space: nowrap;
  text-align: center;
  text-decoration: none;
	padding: 0 10px 0 20px;
	margin-right: 10px;
  border: 2px solid #bd9173;
  border-radius: 10px;
}
.fixed-nav li a::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 8px;
  width: 6px;
  height: 6px;
  content: "";
  box-sizing: border-box;
  margin: auto;
  border: 4px solid transparent;
  border-left: 6px solid #eb5c29;
}
.fixed-nav li:last-of-type a {
	margin-right: 0;
}



/* footer
 ================================================== */
footer {
  height: 100%;
  text-align: center;
  margin: 20px 0;
}
footer.home {
  margin: 20px 0 80px 0;
}
.address, .tel {
  font-size: 1.2rem;
}
.foot-nav {
  font-size: 1.2rem;
  padding: 10px 0;
}
.copyright {
  font-size: 1.0rem;
}



/* com-main
 ================================================== */
.com-main {
  margin-top: 80px;
}
.container {
  padding: 0 10px;
}

.com-main h1 {
  color: #493a31;
  font-size: 2.0rem;
  font-weight: bold;
  line-height: 1.4;
}
.com-main h1 span {
  font-size: 1.6rem;
}



/* フォーム関連
 ================================================== */

.form-box .required {
  color: #f00;
}
.form-box .notice {
  font-size: 77%;
}
.form-box table.listTable td {
  text-align: left;
  padding-top: 10px;
}
.form-box li {
  font-size: 1.4rem;
  padding: 10px 0;
  border-bottom: #c9c5bf dotted 2px;
}
.form-box li p {
  padding-top: 10px;
}
.form-box li p.bold {
  color: #493a31;
  padding-top: 0;
}
.form-box input[type="text"], .form-box textarea {
  font-size: 16px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.form-box li input.textBasic {
  width: 100%;
}
.form-box li input.textAge {
  width: 20%;
  margin-right: 5px
}
.form-box li input.textYotei {
  width: 20%;
  margin-right: 5px
}
.form-box li label {
  margin-left: 5px;
  margin-right: 20px;
}
.form-box li textarea {
  width: 100%;
  height: 80px;
}
.form-box #btn {
  text-align: center;
  padding: 20px 0;
}
.form-box #btn input {
  width: 45%;
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  padding: 20px;
  -webkit-appearance: none;
  border-radius: 5px;
}
.form-box #btn input#btCheck {
  background-color: #725a4c;
  margin-right: 10px;
}
.form-box #btn input#btReset {
  background-color: #a28c7f;
}

.form-box p.notice {
  font-size: 1.4rem;
}

.thanks .notice {
  padding-top: 10px;
}



/* youtube動画の比率を保つ
 ================================================== */
.yt-wrap {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	margin-bottom: 10px;
}
.yt-wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
