@charset "utf-8";

html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-o-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box}body{width:100%;min-width:320px;min-height:800px;overflow-x:hidden;text-align:center;-webkit-text-size-adjust:100%;font-feature-settings:"palt"}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section,main{display:block}h1,h2,h3,h4,h5,h6,th{font-weight:400}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:"";content:none}a{color:#3e4349;margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent;text-decoration:none}p{max-height:999999px}ins{background-color:#ff9;color:#3e4349;text-decoration:none}mark{background-color:#ff9;color:#3e4349;font-style:italic;font-weight:700}del{text-decoration:line-through}abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}table{border-collapse:collapse;border-spacing:0}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}img{vertical-align:bottom}input,select{vertical-align:middle}

/****************************************

 common (共通スタイル)

****************************************/
:root {
	--color-cream: #fdf6e6;
	--color-brown: #3a1e12;
	--color-light-brown: #f3ce7e;
	--color-dark-brown: #20150d;
	--color-red: #87020e;
	--color-white: #fafafa;
}

body {
	color: var(--color-cream);
	background: var(--color-brown) url(../images/pre/bg.png) center top / 650px repeat;
	font-size: 14px; font-weight: 500; line-height: 1.8; letter-spacing: 1px; overflow-wrap: break-word;
}
body, input[type="submit"], input[type="reset"], input[type="button"]{
	font-family: "Helvetica Neue", Helvetica, Arial, Roboto, "Droid Sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

@media screen and (min-width: 769px) {
	.sp{ display: none !important; }
}
@media screen and (max-width: 768px) {
	.pc{ display: none !important; }
}

::-moz-selection { background: var(--color-brown); color: var(--color-cream); }
::selection { background: var(--color-brown); color: var(--color-brown); }
ul::-webkit-scrollbar { display: none; }

.inner { width: 100%; max-width: 1500px; margin: 0 auto; padding: 0 20px clamp(40px, 8vw, 100px); }
a { color: var(--color-cream); transition: all 0.3s; }
@media (any-hover: hover) {
	a:hover { color: var(--color-light-brown); opacity: .7; }
}
img{ width: 100%; max-width: 100%; height: auto; }

/*********** マージン ***********/
.mb_0{margin-bottom: 0 !important;}
.mb_10{margin-bottom: 10px;}
.mb_20{margin-bottom: 20px;}
.mb_30{margin-bottom: 30px;}

/*********** 文字寄せ ***********/
.center{text-align: center;}
.left{text-align: left;}
.right{text-align: right;}

/*********** フォントサイズ ***********/
.fs_ss{font-size: 0.75em;}
.fs_s{font-size: 0.85em;}
.fs_12em{font-size: 1.2em;}
.fs_13em{font-size: 1.3em;}
.fs_15em{font-size: 1.5em;}

/*********** フォントウエイト ***********/
.fw_bold{font-weight: 900;}

/*********** リンクhoverアクション ***********/
.link_act_01{opacity: 1; transition: opacity 0.4s ease;}
@media (any-hover: hover) {
	.link_act_01:hover{opacity: 0.7;}
}

/****************************************
header
****************************************/
header { 
	position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/****************************************
footer
****************************************/
footer {
	color: var(--color-cream);
	background: var(--color-dark-brown);
	padding: 30px 20px clamp(120px, 15vw, 150px);
}
footer .logo img {
	max-width: clamp(250px, 30vw, 300px);
	margin: 0 auto;
}
footer ul {
	display: flex;
	justify-content: center;
	gap: 4vw;
	margin: 20px 0;
	font-size: clamp(12px, 2vw, 14px);
}
footer .copy {
	font-size: 10px;
	text-align: center;
}

/****************************************
mainvisual
****************************************/
#mainvisual {
	width: 100%;
	height: auto;
	position: relative;
}

/****************************************
present
****************************************/
#present h2 {
	max-width: clamp(480px,54vw,680px);
	margin: 0 auto clamp(20px, 6vw, 60px);
}
#present ul {
	display: grid;
	grid-template-columns: 1fr;
	justify-content: center;
	gap: 20px;
}
@media screen and (min-width: 768px) {
	#present ul {
		grid-template-columns: repeat(2, 1fr);
	}
}

/****************************************
caution
****************************************/
#caution {
	text-align: left;
	color: var(--color-cream);
	background: var(--color-dark-brown);
	border: solid 1px #4f413c;
	padding: clamp(20px, 4vw, 40px);
	margin-top: clamp(20px, 6vw, 60px);
	font-size: clamp(12px, 2vw, 14px);
}
#caution h2 {
	margin-bottom: 10px;
}
#caution ul li {
	text-indent: -1em;
	margin-left: 1em;
}

/****************************************
entry
****************************************/
#entry {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: var(--color-dark-brown);
	padding: 20px;
	text-align: center;
}
#entry img {
	max-width: clamp(400px, 50vw, 500px);
}
