@charset "UTF-8";
/*リセット
--------------------------------------------*/
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: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1; }

ol, ul {
  list-style: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle; }

q, blockquote {
  quotes: none; }
  q:before, q:after, blockquote:before, blockquote:after {
    content: "";
    content: none; }

a img {
  border: none; }

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block; }

/* 全体のスタイル調整 */
* {
  box-sizing: border-box;
}

/*----------------------------
全体
----------------------------*/
body {
  font-feature-settings: "palt";
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", "MS PGothic", arial, helvetica, sans-serif;
  color: #1a1817;
  height: 100%;
  font-size: 62.5%;
  letter-spacing: 0.05em;
}

body::before {
  background-size: cover;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1; }

a {
  -webkit-transition: all 0.7s;
  -moz-transition: all 0.7s;
  -ms-transition: all 0.7s;
  -o-transition: all 0.7s;
  transition: all 0.7s;
  opacity: 1;
  text-decoration: none;
  color: #555; }

a:hover {
  opacity: 0.6;
  filter: alpha(opacity=100);
  -ms-filter: "alpha(opacity=60)"; }

.fixedsticky {
  top: 0;
  z-index: 10; }

.inviewfadeInUp {
  opacity: 0;
  transform: translate(0, 10px);
  -webkit-transform: translate(0, 10px);
  transition: 1.5s; }

.fadeInUp {
  opacity: 1.0;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0); }

.inviewfadeInUp_2 {
  opacity: 0;
  transform: translate(0, 10px);
  -webkit-transform: translate(0, 10px);
  transition: 4.0s; }

.fadeInUp_2 {
  opacity: 1.0;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0); }


/*----------------------------
	全体背景
----------------------------*/
.content_wapper {
	background-color: #f2e5da;
	width: 100%;
	height: auto;
	margin-bottom: 0px;
}

/*------ PC ------*/
@media screen and (min-width: 768px) {
	.content_wapper {
		margin-bottom: 0px;
	}
}

/*----------------------------
	ロゴ
----------------------------*/
.title-wapper {
	width: 50%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1em;
	/* margin: calc(0* (100vw / 750)) auto calc(100* (100vw / 750)); */
	padding-top: 20vw;
	text-align: center;
}

.title-wapper img {
  max-width: 100%;
}

/*--- PC ---*/
@media screen and (min-width: 768px) {
	.title-wapper {
		width: 350px;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 50px;
		margin-top: -100px;
		padding-top: 10vw;
		text-align: center;
	}
}


/*----------------------------
	コンセプト
----------------------------*/
.concept-area {
	margin-bottom: 20px;
}

.concept-wapper {	
	max-width: 100%;
	margin: 0 auto;
	font-family: 'Noto Serif JP', serif;
	padding: 1em 1em;
	font-size: 0.9rem;
	line-height: 1.8;
	text-align: center;
}

h2 {
	font-size: 1.5rem;
	line-height: 1.5;
}
h2 span {
	font-size: 0.85rem;
}


/*----- PC -----*/
@media screen and (min-width: 768px) {
	.concept-area {
		margin-bottom: 40px;
	}
	.concept-wapper {
		font-size: 1.15rem;
		max-width: 50%;
	}
}


/*----------------------------
	バナー
----------------------------*/
.bnr_wapper {
	margin: 0 auto 20px;
	width: 90%;
}
.bnr_box img {
  max-width: 100%;
}

/*--- 小見出し ---*/
.sub-headding {
	display: block;
	width: 25%;
	position: relative;
	top: 4vw;
	left: 10%;
	z-index: 50;
}
.sub-headding img {
	height: 5rem;
}

/* --- PC --- */
@media screen and (min-width: 768px) {
	.bnr_wapper {
		margin-bottom: 40px;
		max-width: 700px;
	}
	.sub-headding {
		width: 680px;
		top: 2.5vw;
		left: 0%;
		margin: 0 auto;
	}
	.sub-headding img {
		height: 7.5rem;
		text-align: center;
	}
}


/*----------------------------
	2カラムバナー
----------------------------*/
.topic-box {
	max-width: 90%;
	display: flex;
	margin: 0 auto 40px;
}
.topic-l img {
	max-width: 100%;
}
.topic-r img {
	max-width: 100%;
}
.topic-l {	
	width:-webkit-calc(100% / 2);
	width:calc(100% / 2);
	margin-right: 10px;
}
.topic-r {	
	width:-webkit-calc(100% / 2);
	width:calc(100% / 2);
}

/* --- PC --- */
@media screen and (min-width: 768px) {
    .topic-box {
      max-width: 700px;
      margin-bottom: 70px;
    }
}



/*-------------------------------------------
　ALL ITEMS
-------------------------------------------*/
.item-box {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 30px;
}

.allitems {
	width:33.33333%; /* 未対応ブラウザ用 */
	width:-webkit-calc(100% / 3); /* ベンダープレフィックス */
	width:calc(100% / 3);
	text-align: center;
	margin-bottom: 0px;
}

.allitems img {
  max-width: 100%;
  height: auto;
  padding: 5px;
}

p {
  text-align: center;
}

.allitems a {
	text-decoration: underline;
	font-size: 0.75rem;
	line-height: 1.5;
}

/* --- PC --- */
@media screen and (min-width: 768px) {
    .item-box {
      max-width: 700px;
      margin: 0 auto 60px;
    }
	.allitems a {
		text-decoration: underline;
		font-size: 1rem;
		line-height: 1.8;
	}
}

/* --------------------- 
	小見出し 
--------------------- */
.allitems-headding {
	display: block;
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1em;
	text-align: center;
}

.allitems-headding img {
	max-width: 100%;
}

@media screen and (min-width: 768px) {
	.allitems-headding {
		max-width: 700px;
		text-align: center;
		margin: 60px auto 20px;
	}
	.allitems-headding img {
		height: 1.6rem;
	}
}



/*----------------------------
	ALL ITEMボタン
----------------------------*/
.allitem_wapper {
	text-align: center;
	padding-bottom: 30px;
	margin-bottom: -50px;
}

.allitem {
  display: inline-block;
  padding: 0.5em 3em;
  margin: 0 auto;
  border: 1px #1a1817 solid;
  text-decoration: none;
  font-size: 1rem;
  transition: .4s;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  letter-spacing: 0.1em;
}

.allitem a {
  color: #1a1817;
  font-weight: normal;
}

.allitem:hover {
	color: #FFFFFF;
    background-color: #1a1817;
}

.allitem:hover a {
	color: #FFFFFF;
	font-weight: normal;
}

/*----- PC -----*/
@media screen and (min-width: 768px) {
	.allitem_wapper {
		padding-bottom: 60px;
		margin-bottom: -80px;
	}
	.allitem {
		font-size: 1.6rem;
		padding: 0.5em 6em;
	}
}