@charset "Shift_JIS";
/* CSS Document */
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP');

/* =========================================================
◆layout
========================================================= */
.pcnone{display:none!important;}

img {
    image-rendering: -webkit-optimize-contrast;
}

#wrapInner {
	width: 100%!important;
    font-family: 'Noto Sans JP', sans-serif;
}

#inner950{
	width: 950px;
	margin: 0 auto;
	display: block;
}

.bgColorBlock {
	background: #ffffe5;
}

.bgColorBlock .inner {
	width: 950px;
	margin: 0 auto;
	padding: 20px 0;
}

.bgBlock {
	background-color: #FFF;
}

.bgBlock .inner {
	width: 950px;
	margin: 0 auto;
	padding: 20px 0;
}

h1 {
	font-size: 108%;
	font-weight: bold;
	margin: 5px 0;
}

h2 {
  padding: 1rem 2rem;
  color: #fff;
  border-radius: 10px;
  background: #005bac;
  font-size: 220%;
  text-align: center;
}

h3 {
  text-align: center;
  font-size: 220%;
  font-weight: bold;
  margin-top: 30px;
}

h3 span {
  background: linear-gradient(transparent 60%, #FAFF8A 0%);
}

h3 span small {
  font-weight: normal;
  font-size: 60%;
}

a:hover img {
	opacity: 0.8;
	filter: progid:DXImageTransform.Microsoft.Alpha(Enabled=1,Style=0,Opacity=80);
}

p.text {
	font-size: 153.9%;
	line-height: 1.5;
	font-weight: bold;
	text-align: center;
	margin: 20px 0 5px 0;
}

p.text span {
	font-size: 80%;
    font-weight: normal;
}

p.attention {
	font-size: 123.1%;
	line-height: 1.5;
	margin-bottom: 30px;
	padding: 20px;
	border: 2px #F00 solid;
	text-align: left;
	background: #FFF;
}

.message {
	width: 950px;
	margin: 0 auto 30px;
	font-size: 153.9%;
    line-height: 1.5;
	text-align: center;
	background: #FFEBEB;
	padding: 20px;
	border-radius: 0.5em;
    color: #000000;
}

.message strong {
	color: #ff0000;
}

.yoyakuBox {
	width: 750px;
	margin: 30px auto;
	font-size: 123.1%;
    line-height: 1.5;
	text-align: center;
	background: #FFF;
	padding: 20px;
    filter: drop-shadow(0px 0px 4px rgba(0,0,0,0.2));
}

.yoyakuBox strong {
	font-size: 150%;
}

.yoyakuBox span {
	color: #ff0000;
}

.yoyakuBox .code {
	width: 650px;
	margin: 10px auto 0;
    line-height: 1.5;
	text-align: center;
	background: #FFE8E8;
	padding: 10px;
}

.yoyakuBox p {
	text-align: left;
}

.textLeft {
	text-align: left;
    margin-top: 10px;
}

.textRight {
	text-align: right;
    margin-top: 10px;
}

/* =========================================================
◆photoswipe
========================================================= */
figure {
	position: relative;
}

figure img {
	width: 100%;
}

figure:hover:before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	width: 100px;
	height: 100px;
	display: block;
	z-index: 99;
	background: url(../images/ic_zoom.png) no-repeat;
	background-size: 100% auto;
}

/* =========================================================
◆list横並び
========================================================= */
*, *:before, *:after {
	box-sizing: border-box;
}

.itemList3 {
	float: left;
	width: 100%;
	display: flex;
	display: -ms-flexbox; /* IE10 */
	flex-wrap: wrap;
	-ms-flex-wrap: wrap; /* IE10 */
}

.itemList3 > div {
	width: 33.33333%;
	padding: 10px;
}

.itemList4 {
	width: 100%;
    padding: 0;
	display: flex;
	display: -ms-flexbox; /* IE10 */
	flex-wrap: wrap;
	-ms-flex-wrap: wrap; /* IE10 */
}

.itemList4 > div {
	width: 25%;
	padding: 0 10px;
}

.itemList4 > div img {
	width: 100%;
}

.itemList4 > div dt {
	font-size: 123.1%;
    text-align: center;
}

.itemList4 > div dd {
	margin: 0; /* これがないとずれる */
	font-size: 123.1%;
	line-height: 1.5;
	text-align: left;
	padding: 5px 8px 8px;
    background: #FFFFFF;
}

.itemList4 > div dd strong {
    font-weight: bold;
}

.itemList4 > div .Btn {
  color: #fff;
  width: 100%;
  text-align: center;
  background: #F60;
  border-radius: 5px;
  padding: 20px 30px;
  position: relative; /* 追記 */
  font-size: 123.1%;
  line-height: 1.4;
  font-weight: bold;
}

.itemList4 > div .Btn span {
	color: #F60;
    background: #FFFFFF;
    display: inline-block;
    padding: 3px 8px 5px;
    margin-bottom: 3px;
}

.itemList4 > div .Btn a {
	color: #fff;
}

.itemList4 > div .Btn::after {
  content: "＞";
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}

.itemList4 > div .Btn_gray {
  color: #fff;
  width: 100%;
  text-align: center;
  background: #666;
  border-radius: 5px;
  padding: 20px 30px;
  position: relative; /* 追記 */
  font-size: 123.1%;
  line-height: 1.4;
  font-weight: bold;
}

.itemList4 > div .Btn_gray::after {
  content: "＞";
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}

.itemList4 > div .Btn_gray span {
	color: #000;
    background: #FFFFFF;
    display: inline-block;
    padding: 3px 8px 5px;
    margin-bottom: 3px;
}

/* =========================================================
◆注意事項
========================================================= */
ul.guideList {
	padding: 0;
	font-size: 123.1%;
	line-height: 1.4;
	margin-top: 20px;
}

ul.guideList li {
	list-style: none;
	line-height: 1.4;
	padding-bottom: 8px;
	text-indent: -1em;
    margin-left: 1em;
    text-align: left;
}

ul.guideList li:before {
	content: '◆';
}

ul.guideList li.kome01 {
	list-style: none;
	line-height: 1.4;
	padding-bottom: 8px;
	text-indent: -3em;
    margin-left: 3em;
}

ul.guideList li.kome01:before {
	content: '※１）';
}

ul.guideList li.kome02 {
	list-style: none;
	line-height: 1.4;
	padding-bottom: 8px;
	text-indent: -3em;
    margin-left: 3em;
}

ul.guideList li.kome02:before {
	content: '※２）';
}

ul.guideList li.kome03 {
	list-style: none;
	line-height: 1.4;
	padding-bottom: 8px;
	text-indent: -3em;
    margin-left: 3em;
}

ul.guideList li.kome03:before {
	content: '※３）';
}

ul.guideList li span {
	color: #F00;
}


/* =========================================================
◆ボタン
========================================================= */
.Btn {
  color: #fff;
  width: 70%;
  margin: 0 auto 20px;
  text-align: center;
  background: #F60;
  border-radius: 5px;
  padding: 20px 30px;
  position: relative; /* 追記 */
  font-size: 153.9%;
  font-weight: bold;
}

.Btn a {
	color: #fff;
}

.Btn span {
  font-size: 75%;
  font-weight: normal;
}

.Btn::after {
  content: "＞";
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}

.Btn_blue {
  color: #fff;
  width: 70%;
  margin: 0 auto 20px;
  text-align: center;
  background: #0099ff;
  border-radius: 5px;
  padding: 20px 30px;
  position: relative; /* 追記 */
  font-size: 153.9%;
  font-weight: bold;
}

.Btn_blue a {
	color: #fff;
}

.Btn_blue::after {
  content: "＞";
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}

.Btn_green {
  color: #fff;
  width: 70%;
  margin: 0 auto 20px;
  text-align: center;
  background: #009933;
  border-radius: 5px;
  padding: 20px 30px;
  position: relative; /* 追記 */
  font-size: 153.9%;
  font-weight: bold;
}

.Btn_green a {
	color: #fff;
}

.Btn_green::after {
  content: "＞";
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}

.Btn_gray {
  color: #fff;
  width: 70%;
  margin: 0 auto 20px;
  text-align: center;
  background: #666;
  border-radius: 5px;
  padding: 20px 30px;
  position: relative; /* 追記 */
  font-size: 153.9%;
  font-weight: bold;
}

.Btn_gray::after {
  content: "＞";
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}

.Btn_gray span {
  font-size: 85%;
  font-weight: normal;
}