@charset "utf-8";

body {
	background-color: #dadf00;
}
body.is-fixed {
	overflow: hidden;
}

input,
select,
button,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius: 0;
	border: none;
	background-color: transparent;
	font-family: inherit;
	font-size: 100%;
	vertical-align: middle;
}
select {
	text-indent: .01px;
	text-overflow: "";
}
select::-ms-expand {
	display: none;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
	transition: .3s;
}

/* 標準 */
/* :placeholder-shown { color: #000;}
::-webkit-input-placeholder { color: #000;}
::-moz-placeholder { color: #000; opacity: 1;}
:-ms-input-placeholder { color: #000;} */

/* フォーカス時 */
/* :focus:placeholder-shown { color: transparent;}
:focus::-webkit-input-placeholder { color: transparent;}
:focus::-moz-placeholder { color: transparent; opacity: 1;}
:focus:-ms-input-placeholder { color: transparent;} */

/* --------------------------------------------------
 Component
-------------------------------------------------- */

/* BUTTON
------------------------------ */
/* c-btn */
.c-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 400px;
	min-height: 60px;
	margin-right: auto;
	margin-left: auto;
	border-radius: 60px;
	background-color: #ed6d00;
	color: #fff;
	font-size: 24px;
	font-weight: 700;
	text-align: center;
	cursor: pointer;
	transition: .3s;
}
.c-btn:hover {
	opacity: .7;
}
.c-btn:disabled{
  background-color: #dfdfdf;
  cursor: not-allowed;
}

@media only screen and (max-width: 767px) {
	.c-btn {
		min-height: 48px;
		font-size: 18px;
	}
}

/* FORM
------------------------------ */
/* c-input-text */
.c-input-text {
	display: flex;
	align-items: center;
	width: 100%;
  height: 56px;
	padding-right: 20px;
	padding-left: 20px;
	border: 1px solid #767676;
	border-radius: 3px;
  background-color: #fff;
  font-size: 20px;
}

@media only screen and (max-width: 767px) {
	.c-input-text {
		height: 48px;
		font-size: 16px;
	}
}

/* c-select */
.c-select {
	display: flex;
	align-items: center;
	position: relative;
	width: 100%;
  height: 56px;
	border: 1px solid #767676;
	border-radius: 3px;
  background-color: #fff;
}
.c-select::before {
	content: "";
	position: absolute;
	top: calc(50% - 2px);
	width: 16px;
	height: 16px;
	right: 24px;
  border-right: 2px solid #767676;
  border-bottom: 2px solid #767676;
	transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
}

.c-select select {
	width: 100%;
	height: 100%;
	padding-right: 52px;
	padding-left: 20px;
  font-size: 20px;
	cursor: pointer;
}

@media only screen and (max-width: 767px) {
	.c-select {
		height: 48px;
	}
	.c-select::before {
		width: 12px;
		height: 12px;
		right: 20px;
	}

	.c-select select {
		padding-right: 48px;
		padding-left: 12px;
		font-size: 16px;
	}
}

/* PAGENATION
------------------------------ */
/* c-pagenation */
.c-pagenation {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.c-pagenation li.-first a,
.c-pagenation li.-prev a,
.c-pagenation li.-next a,
.c-pagenation li.-last a {
	position: relative;
	font-size: 0;
}

.c-pagenation li.-first a,
.c-pagenation li.-prev a {
	padding-right: 2px;
}
.c-pagenation li.-next a,
.c-pagenation li.-last a {
	padding-left: 4px;
}

.c-pagenation li.-first a::before,
.c-pagenation li.-first a::after,
.c-pagenation li.-prev a::before,
.c-pagenation li.-next a::before,
.c-pagenation li.-last a::before,
.c-pagenation li.-last a::after {
	content: "";
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
}
.c-pagenation li.-first a::before,
.c-pagenation li.-first a::after,
.c-pagenation li.-prev a::before {
	border-right: 10px solid;
}
.c-pagenation li.-next a::before,
.c-pagenation li.-last a::before,
.c-pagenation li.-last a::after {
	border-left: 10px solid;
}
.c-pagenation li.is-current a {
	pointer-events: none;
	color: #ed6d00;
  background-color: #fff;
  border: 2px solid #ed6d00;
}
.c-pagenation a {
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1px;
	width: 36px;
	height: 36px;
	border-radius: 100%;
	background-color: #ed6d00;
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	text-align: center;
	letter-spacing: -.05em;
	transition: .3s;
}
.c-pagenation a:hover {
	background-color: #ed6d00;
	color: #fff;
}

@media only screen and (max-width: 767px) {
	.c-pagenation {
		gap: 6px;
	}

	.c-pagenation li.-first a,
	.c-pagenation li.-prev a {
		padding-right: 1px;
	}
	.c-pagenation li.-next a,
	.c-pagenation li.-last a {
		padding-left: 3px;
	}

	.c-pagenation li.-first a::before,
	.c-pagenation li.-first a::after,
	.c-pagenation li.-prev a::before,
	.c-pagenation li.-next a::before,
	.c-pagenation li.-last a::before,
	.c-pagenation li.-last a::after {
		border-top-width: 5px;
		border-bottom-width: 5px;
	}
	.c-pagenation li.-first a::before,
	.c-pagenation li.-first a::after,
	.c-pagenation li.-prev a::before {
		border-right-width: 9px;
	}
	.c-pagenation li.-next a::before,
	.c-pagenation li.-last a::before,
	.c-pagenation li.-last a::after {
		border-left-width: 10px;
	}
	.c-pagenation a {
		width: 28px;
		height: 28px;
		font-size: 16px;
	}
}


/* --------------------------------------------------
 Project
-------------------------------------------------- */
/* p-panel-search */
.p-panel-search {
	position: relative;
	padding: 60px;
	border-radius: 10px;
	background-color: #fff;
	box-shadow: inset 0 0 0 4px #fff, inset 0 0 0 8px #dadf00;
}

.p-panel-search__info {
	padding: 16px 20px;
	border-radius: 10px;
	background-color: #ffe6ee;
}
.p-panel-search__info li {
	color: #5e5558;
	font-size: 17px;
	font-weight: 500;
	line-height: 1.5;
}

.p-panel-search__form {
	margin-bottom: 40px;
}
.p-panel-search__form dl {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 40px;
}
.p-panel-search__form dl > div {
	display: flex;
	align-items: center;
	flex-basis: 100%;
	gap: 28px;
}
.p-panel-search__form dl > div[data-col="2"] {
	flex: 1;
}
.p-panel-search__form dl > div[data-col="2"] dt {
	flex-basis: auto;
}
.p-panel-search__form dl > div[data-col="2"] + div[data-col="2"] {
	margin-top: 0;
}

.p-panel-search__form dt {
	flex-basis: 11em;
	font-size: 24px;
	font-weight: 700;
}
.p-panel-search__form dd {
	flex: 1;
}

.p-panel-search__btn {
	margin-top: 40px;
}

@media only screen and (max-width: 767px) {
	.p-panel-search {
		padding: 32px;
	}

	.p-panel-search__info li {
		font-size: 14px;
	}

	.p-panel-search__form {
		margin-top: 20px;
	}
	.p-panel-search__form dl {
		display: flex;
		flex-direction: column;
		flex-wrap: nowrap;
		gap: 20px;
	}
	.p-panel-search__form dl > div {
		display: block;
	}

	.p-panel-search__form dt {
		font-size: 18px;
	}
	.p-panel-search__form dd {
		margin-top: 8px;
	}

	.p-panel-search__btn {
		margin-top: 20px;
	}
}

/* p-area-shoplist */
.p-area-shoplist {
	margin-top: 56px;
	padding-bottom: 56px;
}

.p-area-shoplist__list {
	margin-top: 28px;
  height: 1000px;
  overflow: scroll;
  overflow-x: hidden;
}

.p-area-shoplist__item {
	padding: 56px 60px;
	border: 4px solid #ec739d;
	border-radius: 10px;
	background-color: #fff;
}
.p-area-shoplist__item:not(:first-child) {
	margin-top: 28px;
}

.p-area-shoplist__headline {
	font-size: 24px;
	font-weight: 700;
	line-height: 1.334;
}
.p-area-shoplist__headline a,
.p-area-shoplist__headline button {
	color: #ec739d;
	text-decoration: underline;
	cursor: pointer;
}
.p-area-shoplist__headline a:hover,
.p-area-shoplist__headline button:hover {
	text-decoration: none;
}

.p-area-shoplist__unit {
	display: flex;
	gap: 20px;
	margin-top: 28px;
}

.p-area-shoplist__contents {
	flex: 1;
}

.p-area-shoplist__tag > div {
	display: flex;
	align-items: center;
	gap: 8px;
}
.p-area-shoplist__tag > div:not(:first-child) {
	margin-top: 12px;
}

.p-area-shoplist__tag dd {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 28px;
	padding: 5px 12px;
	border-radius: 3px;
	background-color: #999;
	color: #fff;
	line-height: 1;
	text-align: center;
}
.p-area-shoplist__tag dd.-area { 
  background-color: #f6b67f;
  color: #111;
}
.p-area-shoplist__tag dd.-category {
   background-color: #f6b67f;
   color: #111;
  }
.p-area-shoplist__tag dd.-ticket {
	border-radius: 3px 0 0 3px;
	background-color: #004096;
}
.p-area-shoplist__tag dd.-ticket.denshi{ 
background-color: #ea6d80;
}

.p-area-shoplist__tag dd.-ticket + dd.-ticket {
	margin-left: -8px;
	border-radius: 0 3px 3px 0;
}
.p-area-shoplist__tag dd.is-disabled { background-color: #dcdcdc;}
.p-area-shoplist__tag dd.denshi.is-disabled { background-color: #dcdcdc;}

.p-area-shoplist__address {
	margin-top: 24px;
}
.p-area-shoplist__address > div {
	display: flex;
	gap: 20px;
}
.p-area-shoplist__address > div:not(:first-child) {
	margin-top: 8px;
}
.p-area-shoplist__address dt {
	flex: 0 0 3em;
}
.p-area-shoplist__address dt,
.p-area-shoplist__address dd {
	font-size: 20px;
	line-height: 1.5;
}

.p-area-shoplist__image {
	flex: 0 0 300px;
	height: 300px;
}
.p-area-shoplist__image img {
	object-fit: contain;
	width: 100%;
	height: 100%;
	max-width: none;
}

.p-area-shoplist .c-pagenation:not(:first-child) {
	margin-top: 28px;
}
.p-area-shoplist__tag div.view_sp{
  display: none;
}
@media only screen and (max-width: 767px) {
  .p-area-shoplist__tag div.view_pc{
    display: none;
  }
  .p-area-shoplist__tag div.view_sp{
    display: flex;
  }
	.p-area-shoplist {
		margin-top: 40px;
		padding-bottom: 40px;
	}

	.p-area-shoplist__list {
		margin-top: 20px;
	}

	.p-area-shoplist__item {
		padding: 24px 28px;
	}
	.p-area-shoplist__item:not(:first-child) {
		margin-top: 20px;
	}

	.p-area-shoplist__headline {
		font-size: 22px;
	}

	.p-area-shoplist__unit {
		display: flex;
    flex-flow: column;
		margin-top: 16px;
	}

	.p-area-shoplist__tag > div:not(:first-child) {
		margin-top: 4px;
    align-items: flex-start;
  }
  
  dd.-ticket.kami {
    border-radius: 3px;
  }
  .p-area-shoplist__tag dd.-ticket + dd.-ticket {
    margin-left: 0px;
  }
  .p-area-shoplist__tag dd.-ticket + dd.-ticket.denshi {
    border-radius: 3px;
  }
}
	.p-area-shoplist__tag dt {
		flex-basis: 5em;
		font-size: 20px;
	}
	.p-area-shoplist__tag dd {
		font-size: 20px;
	}
	.p-area-shoplist__address {
		margin-top: 16px;
	}
	.p-area-shoplist__address > div {
		gap: 12px;
	}
	.p-area-shoplist__address > div:not(:first-child) {
		margin-top: 4px;
	}

	.p-area-shoplist__image {
    flex: 0 0 300px;
		height: 300px;
		margin-top: 16px;
	}

	.p-area-shoplist__image img {
		max-height: calc(311 / 375 * 100vw);
	}

	.p-area-shoplist .c-pagenation:not(:first-child) {
		margin-top: 20px;
	}
  .sp-shoplist__tag div{
    font-size: 20px;
  }


/* p-area-detail */
.p-area-detail {
	margin-top: 40px;
	padding-bottom: 40px;
}

.p-area-detail__btn:not(:first-child) {
	margin-top: 40px;
}

.p-area-detail__item {
	padding: 56px 60px;
	border: 4px solid #ec739d;
	border-radius: 10px;
	background-color: #fff;
}
.p-area-detail__item:not(:first-child) {
	margin-top: 60px;
}

.p-area-detail__info {
  margin-top: 20px;
	padding: 16px 20px;
	border-radius: 10px;
	background-color: #ffe6ee;
}
.p-area-detail__info li {
	color: #111111;
	font-size: 17px;
	font-weight: 500;
	line-height: 1.5;
}

.p-area-detail__unit {
	display: flex;
	flex-direction: row-reverse;
  justify-content: start;
	gap: 20px;
	margin-top: 40px;
}

.p-area-detail__image {
	flex: 0 0 300px;
	height: 300px;
}
.p-area-detail__image img {
	object-fit: contain;
	width: 100%;
	height: 100%;
	max-width: none;
}

.p-area-detail__contents {
	flex: 1;
}

.p-area-detail__headline {
	font-size: 24px;
	font-weight: 700;
	line-height: 1.334;
}
.p-area-detail__headline a {
	color: #ec739d;
	text-decoration: underline;
}
.p-area-detail__headline a:hover {
	text-decoration: none;
}

.p-area-detail__label {
	display: flex;
	margin-top: 16px;
	gap: 8px;
}

.p-area-detail__label li {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 28px;
	padding: 4px 10px;
	border-radius: 3px;
	color: #fff;
	line-height: 1;
	text-align: center;
}
.p-area-detail__label li.-area { 
  background-color: #f6b67f;
  color: #111111;
}
.p-area-detail__label li.-category { 
  background-color: #f6b67f;
  color: #111111;
}
.p-area-detail__label li.-ticket {
	min-height: auto;
	padding: 0;
}
.p-area-detail__label li.-ticket ul {
	display: flex;
	align-items: center;
	justify-content: center;
}
.p-area-detail__label li.-ticket li {
	border-radius: 3px 0 0 3px;
}
.p-area-detail__label li.-ticket .kami{
  background-color: #004096;
}
.p-area-detail__label li.-ticket .denshi{
  background-color: #ea6d80;
}

.p-area-detail__label li.-ticket li.is-disabled { background-color: #dcdcdc;}
.p-area-detail__label li.-ticket li + li {
	border-radius: 0 3px 3px 0;
}

.p-area-detail__text {
	margin-top: 24px;
	font-size: 16px;
	line-height: 1.5;
}


.p-area-detail__address > div {
	display: flex;
	gap: 20px;
}
.p-area-detail__address > div:not(:first-child) {
	margin-top: 8px;
}
.p-area-detail__address dt {
	flex: 0 0 5em;
}
.p-area-detail__address dt,
.p-area-detail__address dd {
	font-size: 20px;
	line-height: 1.5;
  word-break: break-all;
}

.p-area-detail__pr {
	margin-top: 28px;
	padding: 16px 20px;
	border-radius: 10px;
	background-color: #fff9cc;
	font-size: 20px;
  display: flex;
}
.p-area-detail__pr dt,
.p-area-detail__pr dd {
	display: inline;
	line-height: 1.5;
  max-width: 80%;
}
.p-area-detail__pr dt {
  background: #ed6d00;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  color: #fff;
  font-size: 20px;
  text-align: center;
  line-height: 90px;
  margin-right: 20px;
  font-weight: 700;
  max-width: 90px;
}

@media only screen and (max-width: 767px) {
	.p-area-detail {
		margin-top: 28px;
		padding-bottom: 28px;
	}
  .p-area-shoplist__tag dt, .p-area-shoplist__tag dd {
		font-size: 13px;
	} 
  .sp-shoplist__tag div{
    font-size: 13px;
  }
  .p-area-shoplist__tag dd.-category {
    max-width: 235px;
   }
	.p-area-detail__btn:not(:first-child) {
		margin-top: 28px;
	}

	.p-area-detail__item {
		padding: 24px 28px;
	}
	.p-area-detail__item:not(:first-child) {
		margin-top: 40px;
	}

	.p-area-detail__info li {
		font-size: 20px;
	}

	.p-area-detail__unit {
		display: flex;
    flex-flow: column-reverse;
		margin-top: 28px;
	}

	.p-area-detail__image {
		height: 280px;
    flex: 0 0 280px;
	}

	.p-area-detail__image img {
		max-height: calc(311 / 375 * 100vw);
	}

	.p-area-detail__contents {
		margin-top: 16px;
	}

	.p-area-detail__headline {
		font-size: 22px;
	}

	.p-area-detail__label {
    flex-flow: wrap;
		gap: 10px;
		margin-top: 15px;
	}
	.p-area-detail__label li {
		min-height: 24px;
		padding-right: 6px;
		padding-left: 6px;
		font-size: 20px;
	}
	.p-area-detail__text {
		margin-top: 16px;
		font-size: 14px;
	}


	.p-area-detail__address > div {
		gap: 12px;
    flex-flow: wrap;
	}
	.p-area-detail__address dt,
	.p-area-detail__address dd {
		font-size: 20px;
	}

	.p-area-detail__pr {
		display: flex;
    flex-flow: wrap;
		margin-top: 20px;
		font-size: 20px;
    justify-content: center;
	}
  .p-area-detail__pr dt{
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 12px;
    line-height: 60px;

  }
  .p-area-detail__pr dt,
  .p-area-detail__pr dd {
  max-width: 100%;
}
}

/* p-modal */
.p-modal {
	visibility: hidden;
	opacity: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transition: .3s;
}
.p-modal[aria-hidden="false"] {
	visibility: visible;
	opacity: 1;
	z-index: 1000;
}
.p-modal[aria-hidden="false"] .p-modal__overlay,
.p-modal[aria-hidden="false"] .p-modal__contents,
.p-modal[aria-hidden="false"] .p-modal__close {
	visibility: visible;
	opacity: 1;
}

.p-modal__overlay {
	visibility: hidden;
	opacity: 0;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .7);
}

.p-modal__contents {
	visibility: hidden;
	opacity: 0;
	box-sizing: content-box;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	z-index: 3;
	width: 96%;
	max-width: 1000px;
	height: calc(100% - 80px);
	margin-right: auto;
	margin-left: auto;
	pointer-events: none;
	transition: .7s;
}

.p-modal__inner {
	overflow-x: hidden;
	overflow-y: auto;
	-ms-overflow-style: none;
	-webkit-overflow-scrolling: touch;
	position: relative;
	padding: 56px 60px;
	border: 4px solid #ec739d;
	border-radius: 10px;
	background-color: #fff;
	pointer-events: auto;
}

.p-modal__close {
	visibility: hidden;
	opacity: 0;
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 100;
	width: 48px;
	height: 48px;
	border-radius: 100%;
	text-indent: -9999px;
	cursor: pointer;
	pointer-events: auto;
	transition: .3s .2s;
  background-color: #ffffff;
  border:2px solid #ed6d00;
}
.p-modal__close::after,
.p-modal__close::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 1px;
	margin: auto;
	background-color: #ed6d00;
	transition: .3s;
}
.p-modal__close::before {
	-webkit-transform: translate(-50%, -50%) rotate(45deg);
	transform: translate(-50%, -50%) rotate(45deg);
}
.p-modal__close::after {
	-webkit-transform: translate(-50%, -50%) rotate(-45deg);
	transform: translate(-50%, -50%) rotate(-45deg);
}
.p-modal__close:hover {
	opacity: .5;
}

.p-modal .p-area-detail {
	margin-top: 0;
	padding-bottom: 0;
}
.p-modal .p-area-detail__item {
	padding: 0;
	border: 0;
	border-radius: none;
}

@media only screen and (max-width: 767px) {
	.p-modal__inner {
		padding: 24px 28px;
	}

	.p-modal__close {
    top: 13px;
		right: 10px;
		width: 32px;
		height: 32px;
	}

	.p-modal .p-area-detail {
		margin-top: 0;
		padding-bottom: 0;
	}

	.p-modal .p-area-detail__image img {
		/*max-height: calc(296 / 375 * 100vw);*/
    width: 100%;
    height: 300px;
	}
}