@charset "utf-8";

/*---------------------------------------------
Reset
---------------------------------------------*/
html {
  color: #28201e;
  overflow-y: scroll;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
  font-size: 62.5%;
  line-height: 1.5;
  position: relative;
}

.bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
		background-color: #fff000;
}

.bg::before {
  content: "";
  position: absolute;
  inset: -50%;        /* 画面より大きい円に */
  border-radius: 50%; /* 円形に */
  background: repeating-conic-gradient(
    #fff000 0deg 10deg,
    #fccf00 10deg 20deg
  );
  animation: spin 6s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(30deg); }
}

/* 左右のイラスト */
.bg-left,
.bg-right {
  position: fixed;
  top: 0;
		padding: 40px 0;
  width: calc(50% - 600px);
		min-width: 200px;
  height: 100vh;
  background-size: contain;
  background-repeat: repeat-y;
  z-index: -1;
  pointer-events: none;
}

.bg-left {
  left: 0;
		background-position: right;
  background-image: url("../img/bg01.png");
	}

.bg-right {
  right: 0;
		background-position: left;
  background-image: url("../img/bg02.png");
}

@media screen and (max-width:1280px) {
	.bg-left,
	.bg-right {
			display: none;
	}
}

h1,h2,.h3_02,h4,h5,h6 {
  font-weight: normal;
  margin: 0;
  padding: 0;
}

img {
  border: none;
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
}

div,dl,dt,dd,form,input,ul,ol,li,p,select,textarea,span,th,td {
  margin: 0;
  padding: 0;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

/*---------------------------------------------
Style
---------------------------------------------*/

body {
  text-align: center;
  padding: 0;
  font-size: 1.8rem;
  margin:0;
}

@media only screen and (max-width: 768px) {
  body {
    text-align: center;
    margin: 0 auto;
    padding: 0;
    font-size: 1.2rem;
    max-width: 768px;
  }
}

.for_pc {
  display: block;
  margin: 0 auto;
}

.for_sp {
  display: none;
  margin: 0 auto;
}

/* sp */
@media screen and (max-width: 768px) {
  body {
    font-size: 1.5rem;
  }

  .for_pc {
    display: none;
    margin: 0 auto;
  }

  .for_sp {
    display: block;
    margin: 0 auto;
  }
}

.inner{
	max-width: 1200px;
	margin: 0 auto;
}

.note {
  font-size: 1.4rem;
}

.note_del {
  font-size: 1.2rem;
  line-height: 1.8rem;
}

.del {
  background-color: #CCC;
}

li{
	text-indent: -1em;
	padding-left: 1em;
}

.box_logo{
		width: 100%;
		height: 85px;
		margin: 0 auto;
		text-align: left;
		background: #fff;
		border-bottom: 15px solid #ec6c00;
}
.box_logo img{
		width: 100px;
	}
	
.box_logo a{
		display: block;
		width: 100%;
		max-width: 1200px;
		margin: 0 auto;
		padding: 10px 20px 10px 20px;
	}

/*---------------------------------------------
header
---------------------------------------------*/
.box {
  background-color: #fff57f;
  margin: 0 auto;
  padding: 4.5rem 0;
		width: 100%;
  max-width: 1200px;
}

.box .note li{
	color: #333;
	list-style-type: none;
}

h1 {
		width: 100%;
  max-width: 850px;
		margin: 0 auto 4rem auto;
}

h2 {
		width: 100%;
  max-width: 800px;
		margin: 0 auto;
		position: relative;
  font-size: 3rem;
		line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 900;
}
h2:before {
		position: absolute;
  content: '';
		width: 55px;
		height: 55px;
		top: 20px;
		left: 20px;
		background-image: url('../img/kazari.png');
		background-size: contain;
		background-repeat: no-repeat;
}
h2:after {
		position: absolute;
  content: '';
		width: 55px;
		height: 55px;
		top: 20px;
		right: 20px;
		background-image: url('../img/kazari.png');
		background-size: contain;
		background-repeat: no-repeat;
		transform: scale(-1, 1);
}

@media screen and (max-width:1280px) {

	.box_logo{
			height: 72px;
			border-bottom: 13px solid #ec6c00;
	}

	.box_logo img{
			width: 85px;
	}

  header {
    width: calc(100% - 2rem);
    margin: 0 1rem;
    padding: 0 2rem;
  }

  .box {
				padding: 3.5rem 1rem;
				}

			h1 {
					max-width: 650px;
					margin: 0 auto 4rem auto;
			}
			h2 {
					max-width: 650px;
					margin: 0 auto;
					font-size: 2.5rem;
					line-height: 1.6;
					letter-spacing: 0.05em;
			}
			h2:before {
					width: 45px;
					height: 45px;
					top: 20px;
					left: 20px;
			}
			h2:after {
					width: 45px;
					height: 45px;
					top: 20px;
					right: 20px;
			}
}

@media only screen and (max-width: 768px) {

		.box_logo{
				height: 64px;
				border-bottom: 11px solid #ec6c00;
		}

		.box_logo img{
				width: 70px;
		}

  header {
    width: calc(100% - 1rem);
    margin: 0 0.5rem;
    padding: 0 1rem;
  }

  .box {
				padding: 2.5rem 2rem;
			}

			h1 {
					max-width: 550px;
					margin: 0 auto 2rem auto;
			}
			
			h2 {
					max-width: 350px;
					margin: 0 auto;
					font-size: 1.8rem;
					line-height: 1.6;
					letter-spacing: 0;
			}
			
			h2:before {
					width: 30px;
					height: 30px;
					top: 45px;
					left: 0px;
			}
			
			h2:after {
					width: 30px;
					height: 30px;
					top: 45px;
					right: 0px;
			}
	}

.date{
	width: 100%;
 padding: 3rem 0;
 font-size: 2.8rem;
	font-weight: 900;
	color: #fff;
	background: #ec6c00;
	text-align: center;
}
.date01{
 position: relative;
	padding: 1rem 0 1.5rem 0;
}
.date01:after{
 position: absolute;
	content: '';
	bottom: -4.5px;
	left: calc(50% - 12.5px);
 border-style: solid;
 border-right: 14px solid transparent;
 border-left: 14px solid transparent;
 border-top: 15px solid #ffffff;
 border-bottom: 0;
}
.date01,.date02{
 font-size: 3.2rem;
	letter-spacing: 0.2rem;
}
.date01 span,.date02 span{
	padding: 0 0.5rem;
 font-size: 4.4rem;
}

.btn_top{
	position: relative;
	display: block;
	width: 520px;
	margin: 2.5rem auto 0.5rem auto;
	padding: 1.5rem 2rem 1.5rem 0.5rem;
	color: #fff;
 font-size: 2.2rem;
	font-weight: 900;
	background-color: #e50012;
	border-radius: 50px;
	box-shadow: 4px 5px #3f3f3f;
	text-decoration: none;
}
.btn_top:before{
	content: '';
	position: absolute;
	right: 30px;
	top: 38px;
 border-style: solid;
 border-top: 12px solid transparent;
 border-bottom: 12px solid transparent;
 border-left: 16px solid #ffffff;
 border-right: 0;
}
.btn_top:hover{
	opacity: 0.5;
	transition: 0.3s;
}

@media screen and (max-width:1280px) {
		.date{
			padding: 2.5rem 0;
			font-size: 2.4rem;
		}
		.date01{
			padding: 0.5rem 0 1.2rem 0;
		}
		.date01:after{
			bottom: -4.5px;
			left: calc(50% - 12.5px);
			border-style: solid;
			border-right: 11px solid transparent;
			border-left: 11px solid transparent;
			border-top: 13px solid #ffffff;

		}
		.date01,.date02{
			font-size: 2.8rem;
			letter-spacing: 0.2rem;
		}
		.date01 span,.date02 span{
			padding: 0 0.5rem;
			font-size: 3.8rem;
		}

		.btn_top{
			width: 520px;
			margin: 2.5rem auto 0.5rem auto;
			padding: 1.5rem 2rem 1.5rem 0.5rem;
			font-size: 2rem;
			box-shadow: 4px 5px #3f3f3f;
		}
		.btn_top:before{
			right: 30px;
			top: 34px;
			border-style: solid;
			border-top: 12px solid transparent;
			border-bottom: 12px solid transparent;
			border-left: 16px solid #ffffff;
		}

}

@media only screen and (max-width: 768px) {
		.date{
			padding: 1.5rem 0;
			font-size: 2rem;
		}
		.date01{
			padding: 0.3rem 0 0.9rem 0;
		}
		.date01:after{
			bottom: -3px;
			left: calc(50% - 12.5px);
			border-style: solid;
			border-right: 9px solid transparent;
			border-left: 9px solid transparent;
			border-top: 10px solid #ffffff;

		}
		.date01,.date02{
			font-size: 2.4rem;
			letter-spacing: 0.05rem;
		}
		.date01 span,.date02 span{
			padding: 0 0.5rem;
			font-size: 3rem;
		}

		.btn_top{
			max-width: 380px;
			width: 100%;
			margin: 2rem auto 0.5rem auto;
			padding: 1rem 1rem 1rem 0.5rem;
			font-size: 1.4rem;
			box-shadow: 3px 4px #3f3f3f;
		}
		.btn_top:before{
			right: 13px;
			top: 24px;
			border-style: solid;
			border-top: 8px solid transparent;
			border-bottom: 8px solid transparent;
			border-left: 12px solid #ffffff;
		}
}

/*---------------------------------------------
section
---------------------------------------------*/
section {
		width: 100%;
  max-width: 1200px;
  margin: 0 auto;
		padding: 4.5rem 5rem;
		background: #fff;
  text-align: left;
}

.caution{
	width: calc(100% - 4px);
	margin: 0 auto 3.5rem;
	padding: 2rem 3rem;
 font-size: 1.6rem;
	line-height: 1.8;
	font-weight: 500;
	border: 2px solid #bababa;
	border-radius: 10px;
}

.caution li{
	list-style: none;
}

.h3_01 {
		position: relative;
		padding: 0 0 1.4rem 55px;
  letter-spacing: 0.1em;
		font-weight: 800;
		font-size: 2.6rem;
		border-bottom: 3px solid #ec6c00;
}
.h3_01:after {
		position: absolute;
		content: '';
		background: #ec6c00;
		height: 25px;
		width: 25px;
		top: 10px;
		left: 15px;
}

.h3_02 {
  letter-spacing: 0.2em;
  margin-bottom: 0;
		font-weight: 800;
}
.h3_02 a{
  text-decoration: none;
		color: #fff;
		border-bottom: 1px solid #fff;
}
.h3_02 a:hover{
  transition: 0.3s;
		opacity: 0.5;
}

.table_title {
  text-align: left;
  font-size: 2rem;
  max-width: 1000px;
  background-color: #e50012;
  color: #FFF;
  padding: 1.1rem 2rem 1.2rem 2rem;
  margin-bottom: 0;
}

table {
  text-align: left;
  font-size: 1.4rem;
  border-collapse: collapse;
  max-width: 1200px;
		width: 100%;
  margin: 3.5rem 0 4rem 0;
}

th {
  border: solid 2.5px #FFF;
  letter-spacing: 0.1em;
  padding: 0.5rem 1rem;
  background-color: #ec6c00;
  color: #FFF;
  font-size: 1.8rem;
  text-align: center;
		font-weight: 700;
}

td {
  border: solid 2.5px #FFF;
  background-color: #fff57f;
  padding: 0.6rem;
  line-height: 2.5rem;
		font-weight: 600;
}

td:nth-child(1) {
  width: 50px;
}

td:nth-child(2) {
  width: 120px;
}
table tr:nth-child(even) td {
  background: #fffdd4;
}

/* sp~ipad */
@media screen and (max-width:1280px) {
		section {
				width: calc(100% - 6rem);
				margin: 0 auto;
				padding: 2rem 1rem;
				background: #fff;
				text-align: left;
		}
		.caution{
				margin: 1.5rem auto 3rem auto;
				padding: 1rem 3rem;
				font-size: 1.6rem;
				line-height: 1.8;
				font-weight: 500;
				border: 2px solid #bababa;
				border-radius: 10px;
			}
  .scroll {
    width: 100%;
    padding-inline: 1.5rem;
    overflow-x: scroll;
  }
		
		.h3_01 {
				margin: 0;
				padding: 0 0 1.4rem 45px;
				letter-spacing: 0.1em;
				font-weight: 800;
				font-size: 2.2rem;
				border-bottom: 3px solid #ec6c00;
		}
		.h3_01:after {
				height: 20px;
				width: 20px;
				top: 10px;
				left: 15px;
		}
		
  table {
  		margin: 2.8rem 0 4rem 0;
    overflow-y: hidden;
				font-size: 1.3rem;
  }
		td:nth-child(1) {
    width: 50px;
  }
  td:nth-child(2) {
    width: 100px;
  }
		
}

@media screen and (max-width:768px) {
		section {
				width: calc(100% - 3rem);
				margin: 0 auto;
				padding: 2rem 0rem 1.5rem 0rem;
				background: #fff;
				text-align: left;
		}
		
		.caution{
			width: calc(100% - 4px);
			margin: 1rem auto 2.5rem auto;
			padding: 1.3rem 1rem;
			font-size: 1.4rem;
			line-height: 1.6;
			font-weight: 700;
			border: 2px solid #bababa;
			border-radius: 10px;
		}
		
		.h3_01 {
				padding: 0 0 1.1rem 35px;
				letter-spacing: 0.1em;
				font-weight: 800;
				font-size: 1.8rem;
				border-bottom: 2px solid #ec6c00;
		}
		.h3_01:after {
				height: 15px;
				width: 15px;
				top: 8px;
				left: 10px;
		}
		
		.h3_02 {
			font-size: 1.6rem;
			letter-spacing: 0.1em;
		}
		
		table {
  	margin: 2.3rem 0 2.5rem 0;
  }
		th {
			padding: 0.2rem 0.5rem;
			font-size: 1.4rem;
		}
	  td:nth-child(1) {
    width: 57px;
			font-size: 1.15rem;
			line-height: 1.6;
  }
  td:nth-child(2) {
    width: 100px;
  }
}


/* =========================================================
ページトップ リンク
========================================================= */
/*リンクの形状*/
#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #e50012;
  border-radius: 5px;
  width: 60px;
  height: 60px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 1.6rem;
  transition: all 0.3s;
}

#page-top a:hover {
  background: #777;
}

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}

/*　上に上がる動き　*/
#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
  bottom: 10px;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*　下に下がる動き　*/
#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 1;
    transform: translateY(100px);
  }
}

@media screen and (max-width: 960px) {
  #page-top.UpMove {
    animation: UpAnime 0.5s forwards;
    bottom: 10px;
  }
}

@media screen and (max-width:768px) {
	#page-top {
  right: 20px;
  bottom: 10px;
}
}

/* =========================================================
店舗リスト
========================================================= */
.section02 {
		width: 100%;
  max-width: 1200px;
  margin: 0 auto;
		padding: 4rem 5rem;
		background: #fffbd2;
  text-align: left;
}
#list{
		background-color: #FFF;
		padding: 2rem;
}
.area_ttl{
		color: #28201e;
		font-weight: 800;
		font-size: 1.6rem;
		text-align: left;
		letter-spacing: 0.1em;
		border-bottom: solid 1px #333;
		padding: 1rem;
}
.grid{
		margin: 4rem 2rem;
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
		grid-gap: 2.5rem;
}
.grid .area{
		display: grid;
		grid-auto-rows: minmax(35px, auto);
}
.area a{
		display: block;
		place-content: center;
		font-size: 1.7rem;
		background-color: #FFF;
		padding: 1.8rem 1rem;
		font-weight: 800;
		text-decoration: none;
		color: #28201e;
		border: solid 2px #ec6c00;
		text-align: center;
}
.area a:hover{
		background-color: #ec6c00;
		color: #FFF;
}
#list .note{
		font-size: 1.4rem;
		font-weight: 500;
		padding-top: 2rem;
}

/* sp~ipad */
@media screen and (max-width:1280px) {
		.section02 {
				width: calc(100% - 6rem);
				margin: 0 auto;
				padding: 4rem 3rem;
		}
		.grid{
				margin: 3rem 2rem;
				grid-gap: 1.5rem;
		}
}

@media screen and (max-width: 750px){
		.section02 {
				width: calc(100% - 3rem);
				padding: 3rem 2rem 1rem 2rem;
		}
		.list_ttl{
				font-size: 1.4rem;
		}
		.area a{
				font-size: 1.3rem;
				padding: 0.5rem 0.05rem;
				line-height: 1.3;
		}	
		.grid{
				margin: 2.5rem 0;
				grid-template-columns: 1fr 1fr;
				grid-gap: 1rem;
		}
		.grid .area{
				display: grid;
				grid-auto-rows: minmax(70px, auto);
		}
		#list .note{
				text-align: left;
		}
}


/*---------------------------------------------
フッター
---------------------------------------------*/
footer {
  padding: 20px 0;
  font: Arial, Helvetica, sans-serif;
  background: #ec6c00;
}

footer a {
  color: #fff;
  text-decoration: none;
}

footer address {
  color: #fff;
}

@media screen and (max-width:1280px) {
  footer {
    width: 100%;
  }
}

/* sp */
@media screen and (max-width: 520px) {
  footer {
    padding: 10px 0;
  }

  footer a {
    font-size: 0.5em;
  }

  #page-top a {
    margin: 0 -10px 0 0;
  }
}