@charset "utf-8";
/* CSS Document */
/*!
	Modaal - accessible modals - v0.4.4
	by Humaan, for all humans.
	http://humaan.com
 */

.modaal-noscroll {
	overflow: hidden;
}

.modaal-accessible-hide {
	position: absolute !important;
	clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
	clip: rect(1px, 1px, 1px, 1px);
	padding: 0 !important;
	border: 0 !important;
	height: 1px !important;
	width: 1px !important;
	overflow: hidden;
}

.modaal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999;
	opacity: 0;
}

.modaal-wrapper {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	overflow: hidden;
	opacity: 1;
	box-sizing: border-box;
	-webkit-overflow-scrolling: touch;
	transition: all 0.3s ease-in-out;
}

.modaal-wrapper * {
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-backface-visibility: hidden;
}

.modaal-wrapper .modaal-close {
	border: none;
	background: transparent;
	padding: 0;
	-webkit-appearance: none;
}

.modaal-wrapper.modaal-start_none {
	display: none;
	opacity: 1;
}

.modaal-wrapper.modaal-start_fade {
	opacity: 0;
}

.modaal-wrapper *[tabindex="0"] {
	outline: none !important;
}

.modaal-wrapper.modaal-fullscreen {
	overflow: hidden;
}

.modaal-outer-wrapper {
	display: table;
	position: relative;
	width: 100%;
	height: 100%;
}

.modaal-fullscreen .modaal-outer-wrapper {
	display: block;
}

.modaal-inner-wrapper {
	display: table-cell;
	width: 100%;
	height: 100%;
	position: relative;
	vertical-align: middle;
	text-align: center;
	padding: 80px 14px;
}

.modaal-fullscreen .modaal-inner-wrapper {
	padding: 0;
	display: block;
	vertical-align: top;
}

.modaal-container {
	position: relative;
	display: inline-block;
	text-align: left;
	color: #000;
	border-radius: 0px;
	cursor: auto;
}

.modaal-container.is_loading {
	height: 100px;
	width: 100px;
	overflow: hidden;
}

.modaal-fullscreen .modaal-container {
	max-width: none;
	height: 100%;
	overflow: auto;
}

.modaal-close {
	position: fixed;
	right: 20px;
	top: 20px;
	color: #fff;
	cursor: pointer;
	opacity: 1;
	width: 50px;
	height: 50px;
	background: rgba(0, 0, 0, 0);
	border-radius: 100%;
	transition: all 0.2s ease-in-out;
}

.modaal-close:focus,
.modaal-close:hover {
	outline: none;
	background: #fff;
}

.modaal-close:focus:before,
.modaal-close:focus:after,
.modaal-close:hover:before,
.modaal-close:hover:after {
	background: #b93d0c;
}

.modaal-close span {
	position: absolute !important;
	clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
	clip: rect(1px, 1px, 1px, 1px);
	padding: 0 !important;
	border: 0 !important;
	height: 1px !important;
	width: 1px !important;
	overflow: hidden;
}

.modaal-close:before,
.modaal-close:after {
	display: block;
	content: " ";
	position: absolute;
	top: 14px;
	left: 23px;
	width: 4px;
	height: 22px;
	border-radius: 4px;
	background: #fff;
	transition: background 0.2s ease-in-out;
}

.modaal-close:before {
	transform: rotate(-45deg);
}

.modaal-close:after {
	transform: rotate(45deg);
}

.modaal-fullscreen .modaal-close {
	background: #afb7bc;
	right: 10px;
	top: 10px;
}


.modaal-confirm-wrap {
	padding: 30px 0 0;
	text-align: center;
	font-size: 0;
}

.modaal-confirm-btn {
	font-size: 0.875rem;
	display: inline-block;
	margin: 0 10px;
	vertical-align: middle;
	cursor: pointer;
	border: none;
	background: transparent;
}

.modaal-confirm-btn.modaal-ok {
	padding: 10px 15px;
	color: #fff;
	background: #555;
	border-radius: 3px;
	transition: background 0.2s ease-in-out;
}

.modaal-confirm-btn.modaal-ok:hover {
	background: #2f2f2f;
}

.modaal-confirm-btn.modaal-cancel {
	text-decoration: underline;
}

.modaal-confirm-btn.modaal-cancel:hover {
	text-decoration: none;
	color: #2f2f2f;
}

.modaal-instagram .modaal-container {
	width: auto;
	background: transparent;
	box-shadow: none !important;
}

.modaal-instagram .modaal-content-container {
	padding: 0;
	background: transparent;
}

.modaal-instagram .modaal-content-container > blockquote {
	width: 1px !important;
	height: 1px !important;
	opacity: 0 !important;
}

.modaal-instagram iframe {
	opacity: 0;
	margin: -6px !important;
	border-radius: 0 !important;
	width: 1000px !important;
	max-width: 800px !important;
	box-shadow: none !important;
	animation: instaReveal 1s linear forwards;
}

.modaal-image .modaal-inner-wrapper {
	padding-left: 140px;
	padding-right: 140px;
}

.modaal-image .modaal-container {
	width: auto;
	max-width: 100%;
}

.modaal-gallery-wrap {
	position: relative;
	color: #fff;
}

.modaal-gallery-item {
	display: none;
}

.modaal-gallery-item img {
	display: block;
}

.modaal-gallery-item.is_active {
	display: block;
}

.modaal-gallery-label {
	position: absolute;
	left: 0;
	width: 100%;
	margin: 20px 0 0;
	font-size: 1.125rem;
	text-align: center;
	color: #fff;
}

.modaal-gallery-label:focus {
	outline: none;
}

.modaal-gallery-control {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	opacity: 1;
	cursor: pointer;
	color: #fff;
	width: 50px;
	height: 50px;
	background: rgba(0, 0, 0, 0);
	border: none;
	border-radius: 100%;
	transition: all 0.2s ease-in-out;
}

.modaal-gallery-control.is_hidden {
	opacity: 0;
	cursor: default;
}

.modaal-gallery-control:focus,
.modaal-gallery-control:hover {
	outline: none;
	background: #fff;
}

.modaal-gallery-control:focus:before,
.modaal-gallery-control:focus:after,
.modaal-gallery-control:hover:before,
.modaal-gallery-control:hover:after {
	background: #afb7bc;
}

.modaal-gallery-control span {
	position: absolute !important;
	clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
	clip: rect(1px, 1px, 1px, 1px);
	padding: 0 !important;
	border: 0 !important;
	height: 1px !important;
	width: 1px !important;
	overflow: hidden;
}

.modaal-gallery-control:before,
.modaal-gallery-control:after {
	display: block;
	content: " ";
	position: absolute;
	top: 16px;
	left: 25px;
	width: 4px;
	height: 18px;
	border-radius: 4px;
	background: #fff;
	transition: background 0.2s ease-in-out;
}

.modaal-gallery-control:before {
	margin: -5px 0 0;
	transform: rotate(-45deg);
}

.modaal-gallery-control:after {
	margin: 5px 0 0;
	transform: rotate(45deg);
}

.modaal-gallery-next-inner {
	left: 100%;
	margin-left: 40px;
}

.modaal-gallery-next-outer {
	right: 45px;
}

.modaal-gallery-prev:before,
.modaal-gallery-prev:after {
	left: 22px;
}

.modaal-gallery-prev:before {
	margin: 5px 0 0;
	transform: rotate(-45deg);
}

.modaal-gallery-prev:after {
	margin: -5px 0 0;
	transform: rotate(45deg);
}

.modaal-gallery-prev-inner {
	right: 100%;
	margin-right: 40px;
}

.modaal-gallery-prev-outer {
	left: 45px;
}

.modaal-video-wrap {
	margin: auto 50px;
	position: relative;
}

.modaal-video-container {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	max-width: 100%;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
	background: #000;
	max-width: 1300px;
	margin-left: auto;
	margin-right: auto;
}

.modaal-video-container iframe,
.modaal-video-container object,
.modaal-video-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.modaal-iframe .modaal-content {
	width: 100%;
	height: 100%;
}

.modaal-iframe-elem {
	width: 100%;
	height: 100%;
	display: block;
}

.modaal-loading-spinner {
	background: none;
	position: absolute;
	width: 200px;
	height: 200px;
	top: 50%;
	left: 50%;
	margin: -100px 0 0 -100px;
	transform: scale(0.25);
}

.modaal-loading-spinner > div {
	width: 24px;
	height: 24px;
	margin-left: 4px;
	margin-top: 4px;
	position: absolute;
}

.modaal-loading-spinner > div > div {
	width: 100%;
	height: 100%;
	border-radius: 15px;
	background: #fff;
}






/*----modal-----*/
.rgs_modalcontainer{
  max-width: 800px;
  width: calc(100vw - 28px);
  max-height: 700px;
  border-radius: 6px;
  background-color: #FFFFFF;
  box-shadow: 0px 20px 40px rgba(111, 117, 121, 0.2);
}
.rgs_modalheader{
  padding: 22px 16px;
  text-align: center;
  font-size: clamp(1.5rem, 1.362rem + 0.51vw, 1.625rem);/*24-26 430-820*/
  font-weight: bold;
  color: #FFFFFF;
  border-radius: 5px 5px 0px 0px;
  background: linear-gradient(#216CCE 0%, #00449E 100%);
}
.rgs_explanatory{
  font-size: 0.75rem;
  color: #FFFFFF;
}

.rgs_statusselect{
  width: 100%;
  height: 450px;
  overflow-y: scroll;
}
.rgs_statusselect h3{
  padding: 10px;
  font-weight: bold;
  color: #0165B2;
}
.rgs_statusselect h4{
  padding-left: 20px;
  font-size: 0.875rem;
  color: #333333;
  background-color: #F7F7F7;
}

/* �L���E���R ���ԓ���ւ� */
.rgs_statusselect{
  display: flex;
  flex-flow: column;
}
.rgs_item_hiroshima div:nth-child(1){order: 0;}
.rgs_item_hiroshima div:nth-child(2){order: 1;}
.rgs_item_okayama   div:nth-child(1){order: 1;}
.rgs_item_okayama   div:nth-child(2){order: 0;}



.rgs_stationarea > li > div{
  display: flex;
  width: 100%;
}
.rgs_stationarea > li > label{
  display: block;
  padding: 14px 20px;
  font-size: clamp(0.875rem, 0.737rem + 0.51vw, 1rem);/*14-16 430-820*/
  cursor: pointer;
}
.rgs_stationarea > li > div > label{
  display: block;
  width: calc(100% - 64px);
  padding: 14px 20px;
  font-size: clamp(0.875rem, 0.737rem + 0.51vw, 1rem);/*14-16 430-820*/
  cursor: pointer;
}
.rgs_stationarea li label input{
  position: absolute;
  visibility: hidden;
}
.rgs_stationarea li span.rgs_icon_checkbox{
  display: flex;
  align-items: center;
  gap: 8px;
}
.rgs_stationarea > li:nth-last-of-type(n+2){border-bottom: 1px solid var(--border-gray01);}
.rgs_stationarea > li > ol{
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  width: 100%;
  padding: 0 24px 16px;
}
.rgs_stationarea > li > ol li label{
  display: block;
  width: max-content;
  cursor: pointer;
}
.rgs_accordion{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 64px;
  border-left: 1px solid var(--color-gray02);
  cursor: pointer;
  transition: all 0.2s linear;
}
.rgs_accordion .rgs_svg{
  transform: rotate(90deg);
  transition: transform 0.2s linear;
}
.rgs_accordion.active .rgs_svg{transform: rotate(270deg);}
.rgs_stationarea{padding-bottom: 48px;}
.rgs_stationarea > li > ol .rgs_icon_checkbox{
  display: flex;
  gap: 10px;
}
.rgs_stationarea > li > ol .rgs_icon_check.rgs_icon_check-n{
  width: 18px;
  height: 18px;
}
.rgs_stationname{
  display: inline-block;
  font-size: 0.875rem;
}


.rgs_btnboxinmdl{
  padding: 20px 16px;
  text-align: center;
}
.rgs_btnboxinmdl > div{margin-bottom: 8px;}
.rgs_crear{
  width: 140px;
  height: 44px;
  margin-right: 20px;
  font-size: 0.875rem;
  color: #323232;
  border-radius: 3px;
  background-color: #FFFFFF;
  border: 1px solid #BBBFC7;
  transition: all 0.2s linear;
}
.rgs_diside{
  width: 140px;
  height: 44px;
  font-size: 0.875rem;
  color: #FFFFFF;
  border-radius: 4px;
  border: none;
  background: var(--border-gray02);
  transition: all 0.2s linear;
  pointer-events: none;
}
.rgs_diside.on{
  background: linear-gradient(#00449E 0%, #216CCE 100%);
  box-shadow: 0px 3px 0px rgba(0, 91, 159, 0.1);
  pointer-events: all;
}
.rgs_btnboxinmdl p span{
  display: inline-block;
  padding: 2px 4px;
  text-decoration: underline;
  font-size: 0.875rem;
  color: #323232;
  cursor: pointer;
}

.rgs_clsbtn{
  position: absolute;
  top: 10px;
  right: 10px;
  width: 44px;
  height: 44px;
  padding-top: 14px;
  text-align: center;
  border-radius: 4px;
  background-color: #FFFFFF;
  cursor: pointer;
  transition: all 0.2s linear;
}
.rgs_clsbtn img{
  width: 16px;
  vertical-align: top;
}



.modaal-loading-spinner > div:nth-of-type(1) > div {
	animation: modaal-loading-spinner 1s linear infinite;
	animation-delay: 0s;
}

.modaal-loading-spinner > div:nth-of-type(2) > div,
.modaal-loading-spinner > div:nth-of-type(3) > div {
	animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(1) {
	transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(2) > div {
	animation: modaal-loading-spinner 1s linear infinite;
	animation-delay: .12s;
}

.modaal-loading-spinner > div:nth-of-type(2) {
	transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(3) > div {
	animation: modaal-loading-spinner 1s linear infinite;
	animation-delay: .25s;
}

.modaal-loading-spinner > div:nth-of-type(4) > div,
.modaal-loading-spinner > div:nth-of-type(5) > div {
	animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(3) {
	transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(4) > div {
	animation: modaal-loading-spinner 1s linear infinite;
	animation-delay: .37s;
}

.modaal-loading-spinner > div:nth-of-type(4) {
	transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(5) > div {
	animation: modaal-loading-spinner 1s linear infinite;
	animation-delay: .5s;
}

.modaal-loading-spinner > div:nth-of-type(6) > div,
.modaal-loading-spinner > div:nth-of-type(7) > div {
	animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(5) {
	transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(6) > div {
	animation: modaal-loading-spinner 1s linear infinite;
	animation-delay: .62s;
}

.modaal-loading-spinner > div:nth-of-type(6) {
	transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(7) > div {
	animation: modaal-loading-spinner 1s linear infinite;
	animation-delay: .75s;
}

.modaal-loading-spinner > div:nth-of-type(7) {
	transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(8) > div {
	animation: modaal-loading-spinner 1s linear infinite;
	animation-delay: .87s;
}

.modaal-loading-spinner > div:nth-of-type(8) {
	transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
}



@media screen and (min-width: 821px){
  .rgs_stationarea > li > label:hover,
  .rgs_stationarea > li > div > label:hover{background-color: var(--color-paleblue);}
  .rgs_stationarea li label:hover .rgs_icon_check.rgs_icon_check-n{border-color: #333333;}
  .rgs_accordion:hover{background-color: var(--color-paleblue);}
  .rgs_stationarea > li > ol li label:hover{color: var(--color-blue);}

  .rgs_clsbtn:hover{opacity: 0.7;}
  .rgs_crear:hover{background-color: #E8E8E8;}
  .rgs_diside:hover{opacity: 0.7;}
  .rgs_btnboxinmdl p span:hover{text-decoration: none;}
}


@media only screen and (min-width: 1400px) {

.modaal-video-container {
	padding-bottom: 0;
	height: 731px;
}

}

@media only screen and (max-width: 1140px) {

.modaal-image .modaal-inner-wrapper {
	padding-left: 25px;
	padding-right: 25px;
}

.modaal-gallery-control{
  width: 25px;
  height: 25px;
  background-color: #EFEFEF;
}

.modaal-gallery-next-inner{margin-left: 0;}
.modaal-gallery-prev-inner{margin-right: 0;}

.modaal-gallery-control:before,
.modaal-gallery-control:after {
  top: 7px;
  left: 12px;
  width: 3px;
  height: 11px;
	background: #333333;
}
.modaal-gallery-prev:before,
.modaal-gallery-prev:after{left: 11px;}

.modaal-gallery-control:before{margin: -3px 0 0;}
.modaal-gallery-control:after{margin: 3px 0 0;}
.modaal-gallery-prev:before{margin: 3px 0 0;}
.modaal-gallery-prev:after{margin: -3px 0 0;}

.modaal-gallery-next {
	left: auto;
	right: 8px;
}

.modaal-gallery-prev {
	left: 8px;
	right: auto;
}

}

@media screen and (max-width: 900px) {

.modaal-instagram iframe {
	width: 500px !important;
}

}

@media only screen and (max-width: 600px) {

.modaal-instagram iframe {
	width: 280px !important;
}

}

@media screen and (max-height: 1100px) {

.modaal-instagram iframe {
	width: 700px !important;
}

}

@media screen and (max-height: 1000px) {

.modaal-inner-wrapper {
	padding-top: 60px;
	padding-bottom: 60px;
}

.modaal-instagram iframe {
	width: 600px !important;
}

}

@media screen and (max-height: 900px) {

.modaal-instagram iframe {
	width: 500px !important;
}

.modaal-video-container {
	max-width: 900px;
	max-height: 510px;
}

}

@media only screen and (max-height: 820px) {

.modaal-gallery-label {
	display: none;
}

}

@keyframes instaReveal {

0% {
	opacity: 0;
}

100% {
	opacity: 1;
}

}

@keyframes modaal-loading-spinner {

0% {
	opacity: 1;
	transform: scale(1.5);
}

100% {
	opacity: .1;
	transform: scale(1);
}

}

@media screen and (max-width: 430px){
  .rgs_statusselect{height: 352px;}
}
