﻿	/*
Theme Name:Base Theme
Theme URI: http://www.www.www/
Description:BASE THEME.
*/

@import url("style.css");
@import url("margin.css");
@import url("link.css");

/* CSS変数 */
:root {
  --gold: #c0b397;
  --black: #1f1f1f;
}

*,
::before,
::after {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	line-height: 1.8;
	vertical-align: baseline;
	background: transparent;
	color:#fff;
	letter-spacing: 1px;
	box-sizing: border-box;
}
html {
	font-size: 16px;
  scroll-behavior: smooth;
}

	@media screen and (max-width : 500px){
		html {
		font-size:14px;
	}
	}

body {
	color: #fff;
	font-family: 'Shippori Mincho', serif;
  background: url(../images/bg.jpg) repeat-y;
}
html.noscroll,
body.noscroll {
	overflow: hidden;
}
a {
	text-decoration:none;
}
li {
	list-style-type:none;
}
address {
	font-style: normal;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
	border:0;
	display:block;
}

/* コンテナ */
.container {
  width: 90%;
	max-width: 1140px;
	margin: 120px auto;
}

	@media screen and (max-width: 768px) {
		.container {
			width: 100%;
			margin: 0 auto;
			padding: 25px;
		}
	}

/* フォント */
.Trajan {
	font-family: trajan-pro-3,serif;
	font-weight: 400;
	font-style: normal;
}

/* 文字色・背景色 */
.gold {
  color: var(--gold);
}

/* 文字サイズ・揃え */
.font12 {
	font-size: 12px;
	line-height: 21px;
}
.font14 {
	font-size: 14px;
	line-height: 23px;
}
.font16 {
	font-size: 16px;
	line-height: 25px;
}
.font18 {
	font-size: 18px;
	line-height: 27px;
}
.font20 {
	font-size: 20px;
	line-height: 29px;
}
.font22 {
	font-size: 22px;
	line-height: 31px;
}
.font24 {
	font-size: 24px;
	line-height: 33px;
}
.font26 {
	font-size: 26px;
	line-height: 41px;
}
.stxt {
	font-size: 12px;
}
.mtxt {
	font-size: 18px;
}
.btxt {
	font-weight: bold;
}
.ctxt {
	text-align: center;
}
.ltxt {
	text-align: left;
}

@media screen and (max-width: 768px){
	.stxt {
		font-size: 10px;
	}
	.mtxt {
		font-size: 14px;
	}
}

/* 改行 */
.pc-br{
	display: block;
}
.sp-br{
	display: none;
}
	@media screen and (max-width: 768px){
	.sp-none{
		display: none;
	}
	.pc-br{
		display: none;
	}
	}
	@media screen and (max-width : 500px){
	.sp-br {
		display: block;
	}
	}

/* テキスト選択カラー */
::selection {
    background: #949494; /* Safari */
}
::-moz-selection {
    background: #949494; /* Firefox */
}