@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');

/* ==========================================================================
   home
   ========================================================================== */

.group-information {
  padding: 20px 10px 50px;
  background: #F2F2F7;
}
.group-information__inner {
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding: 15px;
  background: #fff;
  border: 1px solid #016595;
  box-sizing: border-box;
  text-align: center;
  font-size: 14px;
}

.home-banner-slider__wrapper {
	max-width: 1000px;
	padding-bottom: 160px;
}
.home-banner-slider {
	max-width: 1025px;
	margin-left: -12px;
	margin-right: -13px;
}
.home-banner-slider__item img {
	transition: 0.3s opacity;
}
.home-banner-slider__item a {
	position: relative;
	display: block;
	width: 225px;
	margin-left: auto;
	margin-right: auto;
}
.home-banner-slider__text {
	display: block;
	position: absolute;
	top: auto;
	width: 100%;
	padding: 10px 15px;
	bottom: 0;
	left: 0;
	font-size: 130%;
	background: #016595;
	color: #fff;
	box-sizing: border-box;
}
.home-banner-slider__text__icon {
	margin-top: 5px;
}

.home-informations-wide {
  background: #f5f5fa;
}
.home-informations-wide__header {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.home-informations-wide__title {
	padding-top: 12px;
	padding-bottom: 12px;
	font-size: 13px;
	color: #000;
}
.home-informations-wide__title:before {
	display: inline-block;
	margin-right: 18px;
	content: attr(data-en-title);
	vertical-align: middle;
	font-size: 22px;
	line-height: 1;
	color: #016595;
}
.home-informations-wide__link {
  position: relative;
  display: block;
  width: 166px;
  height: 46px;
  background: #acacac;
  transition: 0.3s background;
  text-align: center;
  line-height: 46px;
  font-size: 12px;
  color: #fff;
}
.home-informations-wide__link:before {
  display: inline-block;
  content: '';
  width: 0;
  height: 0;
  margin-right: 20px;
  border-style: solid;
  border-width: 3.5px 0 3.5px 6px;
  border-color: transparent transparent transparent #fff;
}
.home-informations-wide__link:hover {
  background: #016595;
  color: #fff;
}

.home-informations-wide__entries {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  min-width: 1000px;
}
.home-informations-wide__header + .home-informations-wide__entries:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 1px;
  left: 0;
  top: -1px;
  background: rgba(95,95,95,0.10);
}
.home-informations-wide__entries:not(:last-child):after {
  position: absolute;
  content: '';
  width: 100%;
  max-width: 1000px;
  height: 1px;
  left: 50%;
  bottom: 0;
  background: #d8d8d8;
  transform: translateX(-50%);
}
.home-informations-wide__entries--alert {
  background: #ffd900;
}
.home-informations-wide__entries--alert:not(:last-child):after {
  background: rgba(95,95,95,0.10);
}
.home-informations-wide__entries-date {
  width: 124px;
  padding: 12px 0 12px 26px;
  font-size: 13px;
  color: #878787;
  box-sizing: border-box;
}
.home-informations-wide__entries-title {
  width: calc(1000px - 124px);
  padding: 12px 0;
  font-size: 13px;
  color: #43403f;
}
.home-informations-wide__entries-link {
  text-decoration: underline;
}
.home-informations-wide__entries-link:hover {
  text-decoration: none;
}
.home-informations-wide__entries--alert .home-informations-wide__entries-date {
  color: #d91900;
}
.home-informations-wide__entries--alert .home-informations-wide__entries-link {
  color: #d91900;
  font-weight: bold;
}
@media (max-width: 768px) {
  .home-informations-wide__header {
    width: 100%;
    padding-left: 14px;
    box-sizing: border-box;
  }
  .home-informations-wide__title {
    font-size: 0;
  }
  .home-informations-wide__link {
    width: 136px;
  }
  .home-informations-wide__link:before {
    margin-right: 10px;
  }
  .home-informations-wide__entries {
    min-width: auto;
    flex-direction: column;
  }
  .home-informations-wide__entries-date {
    width: 124px;
    padding: 12px 0 0 14px;
  }
  .home-informations-wide__entries-title {
    width: auto;
    padding: 0 14px 12px 14px;
  }
}


/* ==========================================================================
   search
   ========================================================================== */

.sp-search-list {
	margin-top: 25px;
	background: #fff;
}
.sp-search-list + .sp-search-list {
	margin-top: 10px;
}
.sp-search-list__title {
	padding: 15px 21px;
	font-weight: bold;
	font-size: 130%;
	color: #006595;
}
.sp-search-list__link {
	position: relative;
	display: block;
	padding: 10px 10px 10px 34px;
	font-size: 120%;
	color: #006595;
}
.sp-search-list__item:before {
	content: '';
	display: block;
	height: 1px;
	margin-left: 10px;
	margin-right: 10px;
	background: #ebebeb;
}
.sp-search-list__link:before {
	position: absolute;
	top: 50%;
	left: 21px;
	content: '';
	display: block;
	width: 0;
	height: 0;
	margin-top: -3px;
	border-style: solid;
	border-width: 3px 0 3px 6px;
	border-color: transparent transparent transparent #006595;
	transition: 0.3s;
}


/* ==========================================================================
   modules
   ========================================================================== */

.default-link {
	text-decoration: underline;
	color: #006595;
}
.default-link:hover {
	text-decoration: none;
}

.general-text-block {
	line-height: 2.25;
	font-size: 120%;
}
.general-text-block--line-height-inherit {
	line-height: inherit;
}
.general-text-block + .general-text-block {
	margin-top: 24px;
}
.general-text-block--separator {
	margin-top: 24px;
	padding-top: 24px;
	border-top: 1px solid #d8d8d8;
}
@media (max-width: 768px) {
	.general-text-block {
		line-height: 1.75;
	}
}

.general-text-block__headline01 {
	margin-bottom: 6px;
	font-size: 166.7%;
	color: var(--accent-color);
}
@media (max-width: 768px) {
	.general-text-block__headline01 {
		margin-bottom: 6px;
		font-size: 108.3%;
	}
}
.general-text-block__headline02 {
	margin-top: 1em;
	font-weight: bold;
	font-size: 108.3%;
	color: var(--accent-color);
}
@media (max-width: 768px) {
	.general-text-block__headline02 {
		margin-top: 1em;
	}
}

.general-headline-with-en {
	margin-bottom: 1em;
  font-size: 150%;
	line-height: 1.25;
}
.general-headline-with-en:before {
	display: inline-block;
	content: attr(data-en-title);
	margin-right: 30px;
	padding-right: 30px;
	border-right: 1px solid #d8d8d8;
	text-transform: uppercase;
	color: var(--accent-color);
}
@media (max-width: 768px) {
	.general-headline-with-en {
		font-size: 130%;
	}
	.general-headline-with-en:before {
		display: block;
		margin-right: 0;
		margin-bottom: 10px;
		padding-right: 0;
		border-right: none;
	}
}

.large-image-banner {
	margin-top: 70px;
	height: 174px;
	border: 1px solid #f5f5f9;
	box-sizing: border-box;
}
.large-image-banner--guide {
	background: url(../img/common/large_banner_bg_guide_pc.jpg) no-repeat;
	background-size: cover;
}
.large-image-banner__link {
	display: block;
	height: 100%;
	padding-top: 112px;
	padding-left: 24px;
	box-sizing: border-box;
	font-size: 120%;
	color: #fff;
	text-shadow: 0 0 10px rgba(0,0,0,0.50), 0 0 10px rgba(0,0,0,0.50);
}
.large-image-banner__link:hover {
	color: #fff;
}
.large-image-banner__link:before {
	display: block;
	content: attr(data-en-title);
	font-weight: bold;
	font-size: 26px;
	line-height: 1;
}


.text-pagetop {
	text-align: right;
}
.text-pagetop__link {
	display: inline-block;
	font-size: 90%;
}
.text-pagetop__link:before {
	content: '';
	display: inline-block;
	width: 13px;
	height: 6px;
	margin-right: 10px;
	background: url(../images/pagetop_arrow.svg) no-repeat;
	vertical-align: 1px;
}

.hyphen-list li {
	padding-left: 1em;
	text-indent: -1em;
}
.hyphen-list li:before {
	content: '－';
	font-weight: bold;
	color: #006595;
}

.page-title {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 24px;
}
.page-title__image img {
	max-width: 100%;
}
.page-title__image__second-words {
	margin-left: 28px;
}
.page-title__text {
	font-weight: bold;
	font-size: 130%;
}
@media (max-width: 768px) {
	.page-title {
		display: block;
	}
	.page-title__image__second-words {
		margin-top: 10px;
		margin-left: 0;
	}
	.page-title__image img {
		display: block;
		height: 27px;
		width: auto;
	}
	.page-title__image--double img {
		height: 32px;
	}
	.page-title__image_rtl_sp img {
		height: 24px;
		width: auto;
	}
	.page-title__text {
		display: block;
		margin-top: 10px;
		padding-left: 0;
		font-size: 90%;
	}
}

.page-lead {
	overflow: hidden;
	background: #f5f5f9;
}
.page-lead__inner {
	position: relative;
	min-height: 430px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 30px;
	padding-right: 30px;
	box-sizing: border-box;
	max-width: 1200px;
	width: 100%;
}
.page-lead__inner--with-button {
	display: flex;
	min-height: auto;
	align-items: center;
	justify-content: space-between;
}
/* 20220418 テキストのみのリード文パーツ追加：ここから */
.page-lead__inner--textonly {
	display: flex;
	align-items: center;
	min-height: 166px;
	padding-top: 32px;
	padding-bottom: 32px;
}
.page-lead__inner--textonly .page-lead__body {
	padding-top: initial;
	padding-bottom: initial;
}
.page-lead__inner--textonly .page-lead__text01__02 {
	margin-top: initial;
}
/* 20220418 テキストのみのリード文パーツ追加：ここまで */
.page-lead__image {
	position: absolute;
	left: 50%;
	width: calc(810vw * 100 / 1920);
}
.page-lead__image img {
	object-fit: cover;
	object-position: center;
	width: 100%;
	height: 430px;
}
.page-lead__body {
	width: 476px;
	padding-top: 45px;
}
.page-lead__feature-design {
	font-size: 120%;
}
.page-lead__body--with-button {
	width: 750px;
	padding-bottom: 45px;
}
.page-lead__text01 {
	font-size: 250%;
	line-height: 1.52;
}
.page-lead__text01__02 {
	margin-top: 10px;
	font-size: 200%;
	line-height: 1.75;
}
.page-lead__text02 {
	margin-top: 18px;
	font-size: 120%;
	line-height: 2.25;
}
.page-lead__body--with-button .page-lead__text02 {
	margin-top: 3px;
}
.recruit_text{
	font-size: 140%;
	line-height: 2;
}
/* 20210823 ebook追加ここから */
.page-lead__text02_ebook span {
	font-weight: bold;
}
.page-lead__text02_ebook .general-button {
	display: inline-block;
	font-size: inherit;
	padding: 0 0 0 12px;
	width: auto;
}
.page-lead__text02_ebook .general-button--ghost {
	border: none;
	text-align: inherit;
	border-radius: 1em;
}
.page-lead__text02_ebook .general-button--ghost:before {
	left: 0;
}
/* 20210823 ebook追加ここまで */

.page-lead__button {
	width: 224px;
}
@media (max-width: 1200px) {
	.page-lead__image {
		width: calc(50% - 30px);
	}
}
@media (max-width: 1024px) {
	.page-lead__inner--with-button {
		flex-direction: column;
		padding-bottom: 40px;
	}
	.page-lead__image {
		position: static;
		margin-left: -15px;
		width: calc(100% + 30px);
	}
	.page-lead__inner-design .page-lead__image {
		position: relative;
		left: 0;
		margin-left: 0;
	}
	.page-lead__image img {
		max-width: 100%;
		height: 430px;
	}
	.page-lead__body {
		padding-top: 20px;
		padding-bottom: 30px;
		width: 100%;
	}
	.page-lead__button {
		width: 100%;
	}
}
@media (max-width: 768px) {
	.page-lead__inner {
		padding-left: 15px;
		padding-right: 15px;
	}
	.page-lead__inner--textonly {
		min-height: auto;
	}
	.page-lead__image img {
		height: auto;
	}
	.page-lead__text01 {
		font-size: 150%;
		line-height: 1.52;
	}
	.page-lead__text01__02 {
		font-size: 135%;
	}
	.page-lead__text02 {
		margin-top: 15px;
	}
}


.recruit-entry {
	display: table;
	width: 100%;
	text-align: center;
	background-color: #edf4f7;
	margin-bottom: 50px;
}
.recruit-entry__inner {
	display:  table-cell;
	height: 360px;
	vertical-align: middle;
}

@media (max-width: 768px){
	.recruit-entry__inner {
		height: 140px;
	}
	.recruit-entry__button img {
		width: 80%;
		height: auto;
	}
}


.general-section {
	padding-top: 90px;
	padding-bottom: 90px;
}

.recruit-staff-message-section {
	padding-top: 0;
}

.general-section--top-narrow {
	padding-top: 40px;
}
.general-section--top-zero {
	padding-top: 0;
}
.general-section--bottom-narrow {
	padding-bottom: 40px;
}
.general-section--bottom-zero {
	padding-bottom: 0;
}
.general-section--white {
	background-color: #fff;
}
.general-section--light {
	background-color: #f5f5f9;
}
.general-section__inner {
	margin-left: auto;
	margin-right: auto;
	padding-left: 30px;
	padding-right: 30px;
	box-sizing: border-box;
	max-width: 1200px;
	width: 100%;
}
@media (max-width: 768px) {
	.general-section {
		padding-top: 30px;
		padding-bottom: 30px;
	}
	.general-section--bottom-zero {
		padding-bottom: 0;
	}
	.general-section__inner {
		width: auto;
		padding-left: 15px;
		padding-right: 15px;
	}
}

@media (max-width: 768px) {
	.recruit-staff-message-section {
		padding-top: 0;
	}
}

.general-anchor-nav {
	position: relative;
	width: calc(100% + 16px);
	margin-top: -40px;
	margin-bottom: 40px;
	margin-left: -8px;
	margin-right: -8px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(163px, 1fr));
}
.general-anchor-nav--area {
	grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
	margin-top: initial;
}
@media (max-width: 480px) {
	.general-anchor-nav {
		grid-template-columns: 1fr 1fr;
		gap: 0 8px;
	}
}
.general-anchor-nav__item {
	position: relative;
	min-height: 60px;
	padding-left: 8px;
	padding-right: 8px;
	vertical-align: middle;
}
@media (max-width: 480px) {
	.general-anchor-nav__item {
		padding-right: 0;
		padding-left: 0;
	}
}
.general-anchor-nav__item a {
	box-sizing: border-box;
	display: flex;
	align-items: center;
	font-weight: bold;
	font-size: 140%;
	line-height: 1.7;
	padding-top: 7px;
	padding-right: 25px;
	padding-bottom: 7px;
	transition: 0.3s color;
	height: 60px;
}
.general-anchor-nav__item a:before {
	position: absolute;
	left: 8px;
	bottom: 0;
	display: block;
	width: calc(100% - 16px);
	height: 1px;
	content: '';
	background: #d8d8d8;
	transition: 0.3s;
}
@media (max-width: 480px) {
	.general-anchor-nav__item a:before {
		left: 0;
		width: 100%;
	}
}
	.general-anchor-nav__item a:hover {
		color: var(--accent-color);
	}
.ui-state-active.general-anchor-nav__item a:before,
.general-anchor-nav__item a:hover:before {
	background-color: var(--accent-color);
}
.general-anchor-nav__item a:after {
	position: absolute;
	top: calc(50% - 8px);
	right: 19px;
	display: block;
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 8px 5px 0 5px;
	transform: translateY(50%);
	border-color: var(--accent-color) transparent transparent transparent;
}
@media (max-width: 480px) {
	.general-anchor-nav__item a:after {
		right: 11px;
	}
}
.general-anchor-nav--tabs a:after {
	content: none;
}
@media (max-width: 768px) {
	.general-anchor-nav {
		position: relative;
		justify-content: space-between;
		flex-wrap: wrap;
		width: 100%;
		margin-top: 0;
		margin-bottom: 60px;
		margin-left: 0;
		margin-right: 0;
	}
	.general-anchor-nav__item a {
		padding-right: 30px;
		font-size: 130%;
	}
}

.hotels-list-subtitle {
	margin-top: 8px;
	font-weight: bold;
	font-size: 13px;
}
.hotels-list-subtitle:before {
	display: inline-block;
	content: '';
	width: 38px;
	height: 1px;
	margin-right: 12px;
	background: #d8d8d8;
	vertical-align: 4px;
}
@media (max-width: 768px) {
	.hotels-list-title__separator:after {
		display: inline-block;
		width: 100%;
		height: 8px;
		content: '';
	}
	.hotels-list-title__second-words {
		display: block;
		margin-top: 11px;
		margin-left: 0;
	}
	.hotels-list-title img {
		height: 24px;
		width: auto;
	}
	.hotels-list-title img.hotels-list-title__shinjuku {
		height: 32px;
	}
	.hotels-list-subtitle {
		margin-top: 14px;
		font-size: 12px;
	}
	.hotels-list-subtitle:before {
		width: 25px;
	}
}

.hotels-list {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 26px;
	margin-top: 44px;
}
.hotels-list__item {
	position: relative;
	width: 230px;
}

.hotels-list__title {
	display: flex;
	flex-direction: column-reverse;
	margin-top: 12px;
	font-size: 180%;
	color: var(--accent-color);
}
.hotels-list__title__new {
	position: absolute;
	top: 229px;
	left: 0;
	display: inline-block;
	width: 80px;
	background: #b33253;
	text-transform: uppercase;
	text-align: center;
	font-size: 14px;
	color: #fff;
}
.hotels-list__text {
	margin-top: 5px;
	font-size: 120%;
}
.hotels-list__contact {
	font-size: 120%;
}
.hotels-list__contact dt {
	float: left;
	clear: left;
	color: var(--accent-color);
}
.hotels-list__contact dt:after {
	display: inline-block;
	width: 0;
	height: 1em;
	content: '';
	margin-left: 8px;
	margin-right: 8px;
	border-right: 1px solid #d8d8d8;
	vertical-align: -1px;
}

.hotels-list__links {
	display: flex;
	flex-direction: column;
	margin-top: 15px;
}
.hotels-list__links__item:not(:first-child) {
	margin-top: 8px;
}
@media (max-width: 860px){
	.hotels-list {
		gap: 16px 8px;
	}
}
@media (max-width: 768px) {
	.hotels-list {
		flex-direction: row;
		gap: initial;
		margin-top: 25px;
	}
	.hotels-list__item {
		position: relative;
		width: 100%;
		height: 0;
		margin-bottom: 10px;
		background: #fff;
		box-shadow: 0 0 4px rgba(0,0,0,0.25);
		padding-top: 47px;
		overflow: hidden;
	}

	.hotels-list .hotels-list__item_height {
		padding-top: 65px;
	}

	.hotels-list__item--active {
		height: auto;
	}

	.hotels-list__item:nth-of-type(n+4) {
		margin-top: 0;
	}
	.hotels-list__title {
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		margin-top: 0;
		padding-left: 10px;
		padding-right: 10px;
		box-sizing: border-box;
		line-height: 47px;
		font-size: 130%;
	}

	.hotels-list__item_height .hotels-list__title {
			line-height: 25px;
			margin-top: 9px;
	}

	.hotels-list__title:before {
		position: absolute;
		top: 23px;
		right: 22px;
		content: '';
		display: block;
		width: 11px;
		height: 1px;
		transition: 0.3s;
		background-color: var(--accent-color);
	}
	.hotels-list__title:after {
		position: absolute;
		top: 18px;
		right: 27px;
		content: '';
		display: block;
		width: 1px;
		height: 11px;
		transition: 0.3s;
		background-color: var(--accent-color);
	}
	.hotels-list__item--active .hotels-list__title:after {
		transform: scaleY(0);
	}
	.hotels-list__title__new {
		position: static;
		width: 40px;
		margin-left: 10px;
		line-height: 16px;
		font-size: 7px;
		vertical-align: 1px;
	}
	.hotels-list__image {
		width: calc(100% - 20px);
		margin-left: auto;
		margin-right: auto;
	}

	.hotels-list__image:before {
		content: '';
		display: block;
		height: 1px;
		margin-bottom: 10px;
		background: #ebebeb;
	}
	.hotels-list__image img {
		width: 100%;
		height: auto;
	}
	.hotels-list__text,
	.hotels-list__contact {
		margin-left: 10px;
		margin-right: 10px;
	}
	.hotels-list__links {
		flex-direction: column;
		width: calc(100% - 20px);
		margin-left: auto;
		margin-right: auto;
		padding-bottom: 10px;
	}
	.hotels-list__links__item {
		width: 100%;
	}
	.hotels-list__links__item:not(:first-child) {
		margin-top: 10px;
	}
}





.price-list {
	margin-bottom: 24px;
}
.price-list__item {
	margin-top: 20px;
	box-shadow: 0 0 7px rgba(0,0,0,0.25);
	overflow: hidden;
	height: 61px;
	transition: 0.3s;
}
.price-list__header {
	position: relative;
}
.price-list__header__title a {
	position: relative;
	display: block;
	padding: 15px 70px 15px 35px;
	font-size: 18px;
	transition: 0.3s background;
	color: #006595;
}
.price-list__header__title a:hover {
	background: #f2f7fa;
}
.price-list__item--active .price-list__header__title a:hover {
	background: #fff;
}
.price-list__header__number {
	margin-right: 3px;
	font-weight: bold;
	color: #006595;
}
.price-list__header__title a:before,
.price-list__header__title a:after {
	position: absolute;
	content: '';
	display: block;
	background: #006595;
}
.price-list__header__title a:before {
	right: 30px;
	top: 30px;;
	width: 20px;
	height: 2px;
}
.price-list__header__title a:after {
	right: 39px;
	top: 21px;
	width: 2px;
	height: 20px;
	transition: 0.3s transform;
}
.price-list__item--active .price-list__header__title a:after {
	transform: scaleY(0);
}
.price-list-title img {
	vertical-align: top;
}
.price-list__body {
	position: relative;
	padding: 22px 30px 22px 35px;
	box-sizing: border-box;
	font-size: 120%;
	opacity: 0;
	transition: 0.3s opacity;
}
.price-list__item--active .price-list__body {
	opacity: 1;
}
.price-list__body:after {
	position: absolute;
	top: 0;
	left: 30px;
	display: block;
	width: calc(100% - 60px);
	height: 1px;
	background: #d8d8d8;
	content: '';
}
.price-list__body > *:not(:first-child) {
	margin-top: 1em;
}


.price-list__body__info table {
	border-collapse: separate;
	border-spacing: 2px;
	margin-bottom: 10px;
}
.price-list__body__info__col01 {
	width: 200px;
}
.price-list__body__info__col02 {
	width: 75px;
}
.price-list__body__info__col03 {
	width: 75px;
}
.price-list__body__info__col04 {
	width: 75px;
}
@media (max-width: 768px) {
	.price-list__body__info__width .price-list__body__info__col01 {
		width: 100%;
	}
}


.price-list__body__info th {
	padding-top: 14px;
	padding-bottom: 14px;
	background: #006494;
	text-align: center;
	font-size: 13px;
	color: #fff;
}
.price-list__body__info th.line01 {
	padding-top: 26px;
}
.price-list__body__info td {
	padding-top: 14px;
	padding-bottom: 14px;
	background: #fff;
	text-align: center;
}


.price-list__body__topTxt{
	padding-bottom: 22px;
	margin-bottom: 22px;
	border-bottom: 1px solid #ddd
}
.price-list__body__topTxt p:nth-child(1) {
	float: left;
	width: 200px;
}
.price-list__body__topTxt p:nth-child(2) {
	float: right;
	width: 710px;
}
.price-list__body__info__left {
	width: 200px;
	float: left;
}
.price-list__body__info__right {
	width: 710px;
	float: right;
}
.price-list__body__info__contact {
	font-size: 12px;
}
.price-list__body__info__contact dt {
	float: left;
	clear: left;
	color: #006595;
}
.price-list__body__info__contact dt:after {
	display: inline-block;
	width: 0;
	height: 1em;
	content: '';
	margin-left: 8px;
	margin-right: 8px;
	border-right: 1px solid #d8d8d8;
	vertical-align: -1px;
}
.price-list__body__info__right__txt01 {
	margin-bottom: 10px;
}
.price-list__body__info__right__txt01 span {
	float: right;
}

/*プライスリスト新宿・渋谷幅*/
.price-list__width .price-list__body__info__right {
	width: 600px;
}
.price-list__width .price-list__body__info__right th:nth-of-type(1) {
	width: 40%;
}
.price-list__width .price-list__body__info__left {
	width: 260px;
}
.price-list__width .price-list__body__info__left p .pc,.price-list__width .price-list__body__info__left p .sp {
	width: 100%;
	height: auto;
}


.price-list .hotels-mail {
	position: relative;
}
.price-list .hotels-mail a {
	position: absolute;
	display: block;
	left: 150px;
	top: -3.2em;
	width: 32px;
	height: 32px;
	padding-left: 7px;
	padding-top: 3px;
	border: 1px solid #ababab;
	box-sizing: border-box;
}
.price-list .hotels-mail img {
	width: 16px;
}


.price-list__links {
	display: flex;
	flex-direction: column;
	margin-top: 15px;
}
.price-list__links__item:not(:first-child) {
	margin-top: 8px;
}

.price-list-subtitle {
	margin-top: 20px;
	font-weight: bold;
	font-size: 130%;
}
.price-list-subtitle:before {
	display: inline-block;
	content: '';
	width: 38px;
	height: 1px;
	margin-right: 12px;
	background: #d8d8d8;
	vertical-align: 4px;
}



@media (max-width: 768px) {
	.price-list-title__separator:after {
		display: inline-block;
		width: 100%;
		height: 8px;
		content: '';
	}
	.price-list-title__second-words {
		display: block;
		margin-top: 11px;
		margin-left: 0;
	}
	.price-list-title img {
		height: 24px;
		width: auto;
	}
	.price-list-title img.hotels-list-title__shinjuku {
		height: 32px;
	}
	.price-list-subtitle {
		margin-top: 14px;
		font-size: 90%;
	}
	.price-list-subtitle:before {
		width: 25px;
	}



	.price-list__header__title a {
		position: relative;
		display: block;
		padding: 15px 45px 15px 22px;
		transition: none;
	}
	.price-list__body {
		padding: 22px 10px;
	}
	.price-list__body:after {
		left: 10px;
		width: calc(100% - 20px);
	}
	.price-list__body:before {
		left: 23px;
		width: 19px;
		height: 16px;
	}
	.price-list__header__title a:before {
		right: 22px;
		top: 30px;
		width: 11px;
		height: 1px;
	}
	.price-list__header__title a:after {
		right: 27px;
		top: 25px;
		width: 1px;
		height: 11px;
	}
	.price-list__body > *:not(:first-child) {
		margin-top: 0;
	}



	.price-list__body__topTxt p:nth-child(1) {
		float: none;
		width: 100%;
		margin-bottom: 10px;
	}
	.price-list__body__topTxt p:nth-child(2) {
		float: none;
		width: 100%;
		margin-bottom: 10px;
	}
	.price-list__body__info__left {
		width: 100%;
		float: none;
		margin-bottom: 20px;
	}
	.price-list__body__info__right {
		width: 100%;
		float: none;
	}
	.price-list__body__topTxt{
		padding-bottom: 10px;
		margin-bottom: 10px;
	}
	.price-list__body__info table tbody,
	.price-list__body__info table tr,
	.price-list__body__info table th,
	.price-list__body__info table td {
		display: block;
	}
	.price-list__body__info table tr:not(:first-child) {
		margin-top: 15px;
	}
	.price-list__body__info table th {
		display: flex !important;
		margin-top: 1px;
		margin-left: 132px;
		padding-top: 12px;
		padding-bottom: 12px;
	}
	.price-list__body__info table th:before {
		display: flex;
		width: 130px;
		min-width: 130px;
		margin-top: -12px;
		margin-bottom: -12px;
		margin-left: -132px;
		margin-right: 12px;
		padding-top: 14px;
		padding-bottom: 14px;
		padding-left: 12px;
		content: attr(data-sp-title);
		vertical-align: middle;
		background: #006494;
		font-size: 13px;
		color: #fff;
		box-sizing: border-box;
	}
	.price-list__body__info table td {
		display: flex !important;
		margin-top: 1px;
		margin-left: 132px;
		padding-top: 12px;
		padding-bottom: 12px;
	}
	.price-list__body__info table td.pc {
		display: none !important;
	}
	.price-list__body__info table td:before {
		display: flex;
		width: 130px;
		min-width: 130px;
		margin-top: -12px;
		margin-bottom: -12px;
		margin-left: -132px;
		margin-right: 12px;
		padding-top: 14px;
		padding-bottom: 14px;
		padding-left: 12px;
		content: attr(data-sp-title);
		vertical-align: middle;
		background: #006494;
		font-size: 13px;
		color: #fff;
		box-sizing: border-box;
		text-align: left;
	}
	.price-list__body__info table td.line02:before {
		padding-top: 7px;
		padding-bottom: 7px;
		content: "" attr(data-sp-title) "\A " attr(data-sp-title2) " ";
		white-space: pre;
	}
	.price-list__body__info table a:before {
		margin-left: 0;
	}
	.price-list__body__info table a[href^='tel']:before {
		content: none;
	}
	.price-list__body__info__right__txt01 {
		margin-bottom: 0;
	}
	.price-list__links {
		flex-direction: column;
		width: calc(100% - 20px);
		margin-left: auto;
		margin-right: auto;
		padding-bottom: 10px;
	}
	/*プライスリスト新宿・渋谷幅*/
	.price-list__width .price-list__body__info__right {
		width: 100%;
	}
	.price-list__width .price-list__body__info__right th:nth-of-type(1) {
		width: auto;
	}
	.price-list__width .price-list__body__info__left {
		width: 100%;
	}
}






.general-button {
	position: relative;
	display: block;
	width: 100%;
	padding-top: 7px;
	padding-bottom: 7px;
	box-sizing: border-box;
	outline: none;
	font-size: 140%;
	transition: 0.3s background, 0.3s color, 0.3s border;
	cursor: pointer;
}
@media (max-width: 768px) {
	.general-button {
		font-size: 120%;
	}
}
.general-button--icon_pdf:after {
	content: '';
	display: inline-block;
	width: 12px;
	height: 12px;
	margin-left: 6px;
	background: url(../images/icon_pdf.svg) no-repeat;
	vertical-align: -1px;
}
.general-button--icon_pdf02:after {
	content: '';
	display: inline-block;
	width: 12px;
	height: 16px;
	margin-left: 6px;
	background: url(../images/icon_pdf_white.svg) no-repeat;
	vertical-align: -3px;
}
.general-button--wide {
	padding: 0.6em 2em;
}
.general-button--ghost {
	background: none;
	text-align: center;
	border: 1px solid var(--accent-color);
	color: var(--accent-color);
	border-radius: 0.6em;
	position: relative;
}
.general-button--ghost:hover {
	background-color: var(--accent-color);
	color: #fff;
}
.general-button--ghost:before{
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background-color: transparent;
	transition: 0.5s;
	position: absolute;
	bottom: 0.5em;
	width: calc(100% - 4em);
}
.general-button--ghost:hover:before{
	background-color: #fff;
}

.general-button--green {
	text-align: center;
	color: #fff;
	background-color: var(--base-color);
	border: 1px solid var(--base-color);
	border-radius: 0.6em;
	position: relative;
}
.general-button--green:hover {
	color: #fff;
	background-color: var(--accent-color);
	border: 1px solid var(--accent-color);
}
.general-button--green:before {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background-color: transparent;
	transition: 0.5s;
	position: absolute;
	bottom: 0.5em;
	width: calc(100% - 4em);
}
.general-button--green:hover:before{
	background-color: #fff;
}

.general-button--white {
	border: 1px solid #fff;
	background: none;
	text-align: center;
	color: #fff;
}
.general-button--white:hover {
	background: #fff;
	color: #4c4948;
}
.general-button--white:before {
	position: absolute;
	top: 50%;
	left: 15px;
	content: '';
	display: block;
	width: 0;
	height: 0;
	margin-top: -3px;
	border-style: solid;
	border-width: 3px 0 3px 6px;
	border-color: transparent transparent transparent #fff;
	transition: 0.3s;
}
.general-button--white:hover:before {
	border-color: transparent transparent transparent #4c4948;
}


.blog-entries__item {
	display: flex;
	justify-content: center;
	padding: 50px 30px;
	box-sizing: border-box;
	width: 100%;
	background: #f5f5f9;
}
.blog-entries__item:nth-of-type(odd) {
	background: #FFF;
}
.blog-entries__date {
	width: 160px;
	padding-top: 26px;
	border-left: 1px solid #ccd4de;
	border-right: 1px solid #ccd4de;
	box-sizing: border-box;
	text-align: center;
}
.blog-entries__date__text01 {
	font-size: 100%;
	color: #929292;
}
.blog-entries__date__text02 {
	margin-top: -15px;
	font-weight: bold;
	font-size: 400%;
	line-height: 1.4;
	color: var(--accent-color);
}
.blog-entries__body {
	width: 630px;
	padding-left: 50px;
	padding-right: 50px;
	box-sizing: border-box;
}
.blog-entries__body--wide {
	width: 840px;
}
.blog-entries__body__hotel {
	font-size: 120%;
}
.blog-entries__body__hotel a {
	color: #006595;
}
.blog-entries__body__hotel a:before {
	display: inline-block;
	width: 46px;
	height: 1px;
	margin-right: 16px;
	background: #006595;
	vertical-align: 4px;
	content: '';
}
.blog-entries__body__title {
	font-size: 120%;
  line-height: 1.6;
}
.blog-entries__body__title:not(:first-child) {
	margin-top: 10px;
}
.blog-entries__body__text {
	margin-top: 10px;
	font-size: 100%;
}
.blog-entries__body__button {
	width: 224px;
	margin-top: 16px;
	font-size: 80%;
}
@media (max-width: 768px) {
	.blog-entries__item {
		display: block;
		justify-content: center;
		min-width: auto;
		padding: 20px;
	}
	.blog-entries__item:after {
		content: '';
		display: block;
		clear: both;
	}
	.blog-entries__date {
		float: left;
		width: 80px;
		margin-bottom: 18px;
		padding-top: 9px;
	}
	.blog-entries__date__text01 {
		font-size: 90%;
	}
	.blog-entries__date__text02 {
		margin-top: -4px;
		font-size: 250%;
	}
	.blog-entries__body {
		width: auto;
		padding-left: 0;
		padding-right: 0;
	}
	.blog-entries__body__hotel {
		padding-left: 100px;
	}
	.blog-entries__body__hotel a:before {
		width: 25px;
	}
	.blog-entries__body__title {
		padding-left: 100px;
		line-height: 1.533333;
		font-size: 110%;
	}
	.blog-entries__body__text {
		clear: left;
		line-height: 1;
	}
	.blog-entries__body__button {
		width: 100%;
		font-size: 70%;
}
	.blog-entries__image {
		display: none;
	}
}

.entry-header {
	display: flex;
	align-content: center;
}
.entry-header__date {
	width: 4em;
	min-height: 76px;
	border-right: 1px solid #d8d8d8;
	border-left: 1px solid #d8d8d8;
	box-sizing: border-box;
	text-align: center;
}
.entry-header__date__text01 {
	padding-top: 7px;
	font-size: 80%;
	color: #929292;
}
.entry-header__date__text02 {
	margin-top: 7px;
	font-weight: bold;
	font-size: 200%;
	line-height: 1;
	color: var(--accent-color);
}
.entry-header__title {
	display: flex;
	align-items: center;
	width: calc(100% - 86px);
	padding-left: 50px;
	font-size: 250%;
}

.entry-body {
	margin-top: 30px;
	font-size: 120%;
	line-height: 2.25;
	word-break: break-all;
}
.entry-body img {
	max-width: 100%;
	height: auto;
}

.blog-sns {
	display: flex;
	justify-content: center;
	margin-top: 60px;
}
.blog-sns__item {
  width: 25px;
  margin: 0 3px;
	/*
  margin-left: 10px;
	margin-right: 10px;
  */
}
@media (max-width: 768px) {
	.entry-header__title {
		width: calc(100% - 82px);
		padding-left: 20px;
		font-size: 150%;
	}
	.entry-body {
		margin-top: 20px;
	}
	.blog-sns {
		margin-top: 25px;
	}
}


.pager {
	display: flex;
	justify-content: center;
	padding-top: 40px;
	padding-bottom: 40px;
	border-top: 1px solid #d8d8d8;
}
.pager--entry {
	position: relative;
	border-top: none;
}
.pager--entry .next {
	margin-left: 16px;
}
.pager__item {
	margin-left: 5px;
	margin-right: 5px;
	box-sizing: border-box;
	font-size: 100%;
}
.pager__item--back {
	position: absolute;
	left: 30px;
}
.pager__item span,
.pager__item a {
	display: inline-block;
	padding: 8px 15px;
	box-sizing: border-box;
	border: 1px solid #acacac;
	transition: 0.3s;
	color: #055f8c;
}
.pager__item--back a {
	border: none;
}
.pager__item:not(.pager__item--total) span {
	background: #006595;
	border-color: #006595;
	color: #fff;
}
.pager__item a:hover {
	background-color: #7fb2ca;
	border-color: #7fb2ca;
	color: #fff;
}
.pager__item--back a:hover {
	background: none;
	color: var(--accent-color);
}
.pager__item--back a:before,
.pager__item--prev a:before,
.pager__item--next a:after {
	display: inline-block;
	width: 6px;
	height: 13px;
	content: '';
	vertical-align: middle;
}
.pager__item--prev a:hover:before,
.pager__item--next a:hover:after {
	filter: brightness(300%);
}
.pager__item--back a:before,
.pager__item--prev a:before {
	margin-right: 10px;
	background: url(../images/arrow_left.svg) no-repeat;
}
.pager__item--next a:after {
	margin-left: 10px;
	background: url(../images/arrow_right.svg) no-repeat;
}
@media (max-width: 768px) {
	.pager {
		flex-wrap: wrap;
		min-width: auto;
	}
	.pager__item {
		margin-top: 5px;
	}
	.pager__item--back {
		position: static;
		width: 100%;
		margin-left: 0;
	}
}


.faq-title {
	font-size: clamp(2rem, 5.5vw, 150%);
	font-weight: 500;
	margin-bottom: 1em;
	margin-top: 2em;
	color: var(--accent-color);
	line-height: 1.6;
}
.faq-list {
	margin-bottom: 2em;
}
.faq-list__item {
	margin-top: 1em;
	box-shadow: 0 0 7px rgba(0,0,0,0.25);
	overflow: hidden;
	transition: 0.3s;
}
.faq-list__header {
	cursor: pointer;
	position: relative;
}
.faq-list__header__title:before {
	position: absolute;
	top: 1.4em;
  left: 1em;
	display: block;
	width: 1.6em;
	height: 1.6em;
	background: url(../images/icon_q.svg) no-repeat;
	content: '';
	z-index: 1;
}
.faq-list__header__title a {
	position: relative;
	display: block;
	padding: 1em 2em 1em 3em;
	font-size: clamp(1.6rem, 3vw, 2rem);
	transition: 0.3s background;
}
.faq-list__header__title a:hover {
	background: #f2f7fa;
}
.faq-list__item--active .faq-list__header__title a:hover {
	background: #fff;
}
.faq-list__header__number {
	margin-right: 3px;
	font-weight: bold;
	color: var(--accent-color);
}
.faq-list__header__title a:before,
.faq-list__header__title a:after {
	position: absolute;
	content: '';
	display: block;
	background-color: var(--accent-color);
}
.faq-list__header__title a:before {
	right: 0.6em;
	top: 50%;
	width: 1em;
	height: 2px;
	margin-top: -1px;
}
.faq-list__header__title a:after {
	right: calc(0.6em + 0.45em);
	top: 50%;
	width: 2px;
	height: 1em;
	margin-top: -0.5em;
	transition: 0.3s transform;
}
.faq-list__item--active .faq-list__header__title a:after {
	transform: scaleY(0);
}
.faq-list__body {
	position: relative;
	padding: 1.2em 2em 1.2em 3em;
	box-sizing: border-box;
	font-size: 100%;
	display: none;
}
.faq-list__body p {
	font-size: 90%;
}
.faq-list__item--active .faq-list__body {
	opacity: 1;
}
.faq-list__body:before {
	position: absolute;
	display: block;
	background: url(../images/icon_a.svg) no-repeat;
	content: '';
	top: 1.5em;
  left: 1em;
	width: 1.4em;
	height: 1.4em;
}
.faq-list__body:after {
	position: absolute;
	top: 0;
	left: 30px;
	display: block;
	width: calc(100% - 60px);
	height: 1px;
	background: #d8d8d8;
	content: '';
}
.faq-list__body > *:not(:first-child) {
	margin-top: 1em;
}
.faq-list__body table {
	width: auto;
	border: 1px solid #d8d8d8;
}
.faq-list__body th,
.faq-list__body td {
	padding: 12px;
	border: 1px solid #d8d8d8;
}
.faq-list__body th {
	background: #f5f5f9;
}
.faq-list__body img {
	max-width: 100%;
	height: auto;
}
.faq-list__body a {
	color: var(--accent-color);
}

@media (max-width: 768px) {
	.faq-list__body:after {
		left: 10px;
		width: calc(100% - 20px);
	}
	.faq-list__body th,
	.faq-list__body td {
		padding: 6px;
	}
}
.faq_red {
	color: #f00 !important;
}

/* ==========================================================================
   /corp/
   ========================================================================== */

.corp-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 4px;
}
.corp-table__header {
	width: 188px;
	padding: 15px 25px;
	background: #006595;
	box-sizing: border-box;
	font-size: 130%;
	vertical-align: middle;
	color: #fff;
}
.corp-table__data {
	padding: 15px 25px;
	background: #fff;
	box-sizing: border-box;
	font-size: 120%;
}

.corp-table__map {
	display: flex;
}
.corp-table__map__image {
	width: 446px;
	margin-right: 28px;
}
.corp-table__map__body {
	line-height: 2.25;
}
.corp-table__map__link {
	margin-top: 20px;
}
.corp-table__map__link a {
	text-decoration: underline;
	color: #006595;
}
.corp-table__map__link a:hover {
	text-decoration: none;
}

.corp-table__hotels {
	position: relative;
	display: flex;
	max-width: 800px;
	justify-content: space-between;
	flex-wrap: wrap;
	margin: -15px -25px;
	background: #f5f5f9;
}
.corp-table__hotels__item {
	width: calc(50% - 2px);
	padding: 15px 25px;
	background: #fff;
	box-sizing: border-box;
}
.corp-table__hotels__item:nth-of-type(n+ 3) {
	margin-top: 4px;
}
.corp-table__hotels__item:nth-of-type(odd):last-child {
	width: 100%;
}

.corp-table__hotels__title {
	font-size: 108.3%;
	color: #006595;
}
.corp-table__hotels__text {
	margin-top: 3px;
}
.corp-table__hotels__contact {
	margin-top: 5px;
	margin-bottom: 5px;
}
.corp-table__hotels__contact:after {
	content: '';
	display: block;
	clear: both;
}
.corp-table__hotels__contact dt {
	float: left;
	clear: left;
	color: #006595;
}
.corp-table__hotels__contact dt:after {
	display: inline-block;
	width: 0;
	height: 1em;
	content: '';
	margin-left: 8px;
	margin-right: 8px;
	border-right: 1px solid #9a9898;
	vertical-align: -1px;
}
.corp-table__hotels__link {
	position: relative;
	padding-left: 15px;
	text-decoration: underline;
	transition: 0.3s color;
}
.corp-table__hotels__link:before {
	position: absolute;
	top: 50%;
	left: 0;
	content: '';
	display: block;
	width: 0;
	height: 0;
	margin-top: -3px;
	border-style: solid;
	border-width: 3px 0 3px 6px;
	border-color: transparent transparent transparent #4c4948;
	transition: 0.3s border-color;
}
.corp-table__hotels__link:hover {
	color: #006595;
	text-decoration: none;
}
.corp-table__hotels__link:hover:before {
	border-color: transparent transparent transparent #006595;
}

.e_public {
	margin-top: 35px;
}
.e_public__header:after {
	content: '';
	display: block;
	clear: both;
}
.e_public__header__title {
	float: left;
	font-size: 200%;
	color: #006595;
}
.e_public__header__text {
	font-size: 120%;
}
.e_public__header__text img {
	margin-left: 25px;
	margin-right: 15px;
	vertical-align: -10px;
}
.e_public__body {
	display: flex;
	flex-wrap: wrap;
	margin-top: 20px;
}
.e_public__item {
	display: flex;
	width: calc(50% - 20px);
}
.e_public__item:nth-of-type(n+ 3) {
	margin-top: 20px;
}
.e_public__date {
	width: 86px;
	border-left: 1px solid #d8d8d8;
	border-right: 1px solid #d8d8d8;
	text-align: center;
}
.e_public__date__text01 {
	padding-top: 8px;
	font-size: 120%;
	color: #929292;
}
.e_public__date__text02 {
	margin-top: -4px;
	font-weight: bold;
	font-size: 330%;
	color: #006595;
}
.e_public__title {
	padding: 20px 0 0 34px;
	font-size: 120%;
}
.e_public__title a {
	position: absolute;
	transition: 0.3s color;
}
.e_public__title a:hover {
	color: #006595;
}
.e_public__title a:after {
	position: absolute;
	top: 4px;
	right: -16px;
	display: block;
	height: 12px;
	width: 12px;
	content: '';
	background: url(../images/icon_pdf.svg) no-repeat;
}
@media (max-width: 768px) {
	.corp-table {
		border-spacing: 1px;
	}
	.corp-table__header {
		width: 93px;
		padding: 13px;
	}
	.corp-table__data {
		padding: 13px;
	}
	.corp-table__map {
		flex-direction: column;
	}
	.corp-table__map__image {
		width: auto;
		margin-right: 0;
	}
	.corp-table__map__image img {
		max-width: 100%;
		height: auto;
	}
	.corp-table__map__body {
		line-height: inherit;
	}
	.corp-table__hotels {
		flex-direction: column;
		max-width: none;
		margin: -13px;
	}
	.corp-table__hotels__item {
		width: 100%;
		padding: 13px;
	}
	.corp-table__hotels__item:nth-of-type(n + 2) {
		margin-top: 1px;
	}
	.e_public__header__title {
		margin-right: 12px;
		font-size: 130%;
	}
	.e_public__item:nth-of-type(n + 2) {
		margin-top: 15px;
	}
	.e_public__body {
		flex-direction: column;
	}
	.e_public__header__text img {
		width: 56px;
		height: auto;
		margin-left: 0;
		margin-right: 12px;
		vertical-align: -4px;
	}
	.e_public__header__text a:after {
		clear: left;
		display: block;
		height: 1px;
		content: '';
	}
	.e_public__date {
		width: 81px;
	}
	.e_public__date__text01 {
		font-size: 110%;
	}
	.e_public__date__text02 {
		font-size: 310%;
	}
	.e_public__title {
		padding: 20px 0 0 20px;
		font-size: 110%;
	}
}


/* ==========================================================================
   /inquiry/
   ========================================================================== */

.inquiry-header__title {
	font-size: 140%;
	color: var(--accent-color);
}
.inquiry-header__text {
	font-size: 100%;
	line-height: 2;
}
.inquiry-header__text--confirm {
	margin-top: 14px;
	margin-bottom: 32px;
}
.inquiry-header__button {
	width: 222px;
	margin-top: 18px;
	margin-bottom: 40px;
}

.inquiry-form-title {
	margin-bottom: 1em;
	font-size: 100%;
}
.inquiry-form {
	margin-top: 2em;
	border-bottom: 1px dotted #bebebf;
}
.inquiry-form + .inquiry-form {
	margin-top: 60px;
}
.inquiry-form__item {
	display: flex;
	border-top: 1px dotted #bebebf;
	gap: 0 4px;
}
.inquiry-form__required {
	margin-right: 18px;
	padding: 7px 13px;
	background: #b33253;
	font-size: 12px;
	color: #fff;
}
.inquiry-form__header {
	width: 20em;
	padding-top: 1.5em;
	padding-bottom: 1.5em;
	font-size: 100%;
}
.inquiry-form--confirm .inquiry-form__header {
	padding-top: 17px;
	padding-bottom: 17px;
}
.inquiry-form__body {
	padding-top: 1em;
	padding-bottom: 1em;
	font-size: 100%;
	width: calc(100% - 216px);
}
.inquiry-form__body p{
	font-weight: 400;
}

.inquiry-form__body p:not(:first-child) {
	margin-top: 5px;
}
.inquiry-form__type-text {
	width: 460px;
	padding: 11px;
	border: 1px solid #d8d8d8 !important;
	box-sizing: border-box;
	background: #fff !important;
	transition: 0.3s border;
}
.inquiry-form__type-text {
	width: 460px;
	padding: 11px;
	border: 1px solid #d8d8d8;
	box-sizing: border-box;
	background: #fff;
	transition: 0.3s border;
	font-size: 100%;
}
.inquiry-form__type-textarea {
	height: 160px;
	padding: 11px;
	border: 1px solid #d8d8d8;
	box-sizing: border-box;
	background: #fff;
	transition: 0.3s border;
	outline: none;
	width: calc(100% - 8px);
	font-size: 100%;
}
.inquiry-form__type-text:focus,
.inquiry-form__type-textarea:focus {
	border-color: #006595;
}
.inquiry-form__type-checkbox {
	margin-right: 5px;
	vertical-align: -2px;
}
.inquiry-form-hotels {
	display: flex;
	flex-wrap: wrap;
}
.inquiry-form-hotels li {
	width: 20%;
}
.inquiry-form-hotels li:nth-of-type(n + 6) {
	margin-top: 6px;
}
.inquiry-footer {
	display: flex;
	justify-content: center;
	margin-top: 30px;
}
.inquiry-footer__item {
	width: 16em;
	margin-left: 10px;
	margin-right: 10px;
}
.inquiry-complete {
	padding-top: 30px;
}
.inquiry-complete__text01 {
	text-align: center;
	font-size: 180%;
	color: var(--accent-color);
}
.inquiry-complete__text02 {
	margin-top: 18px;
	text-align: center;
	font-size: 100%;
}
@media (max-width: 768px) {
	.inquiry-header__title {
		font-size: 120%;
	}
	.inquiry-header__text--confirm {
		margin-top: 5px;
		margin-bottom: 18px;
	}
	.inquiry-header__button {
		width: 100%;
	}
	.inquiry-form__item {
		flex-direction: column;
	}
	.inquiry-form__header,
	.inquiry-form--confirm .inquiry-form__header {
		width: 100%;
		padding-top: 15px;
		padding-bottom: 0;
	}
	.inquiry-form__body {
		width: 100%;
		padding-top: 12px;
		padding-bottom: 15px;
	}
	.inquiry-form__required {
		margin-right: 10px;
		padding: 3px 13px;
		font-size: 10px;
	}
	.inquiry-form__type-text {
		width: 100%;
	}
	.inquiry-form__type-textarea {
		width: 100%;
	}
	.inquiry-form-hotels li {
		width: 33.33333%;
	}
	.inquiry-form-hotels li:nth-of-type(2) {
		width: 66.66666%;
	}
	.inquiry-form-hotels li:nth-of-type(n + 3) {
		margin-top: 6px;
	}
	.inquiry-form-hotels li:nth-of-type(n + 18) {
		width: 100%;
	}
	.inquiry-footer {
		flex-direction: column-reverse;
	}
	.inquiry-footer__item {
		width: 100%;
		margin-left: 0;
		margin-right: 0;
	}
	.inquiry-footer__item:not(:first-child) {
		margin-bottom: 10px;
	}
	.inquiry-complete {
		padding-top: 0;
	}
	.inquiry-complete__text01 {
		font-size: 140%;
	}
	.inquiry-complete__text02 {
		margin-top: 10px;
		font-size: 100%;
	}
}


/* ==========================================================================
   /campaign/movie/
   ========================================================================== */

.movie-header {
	margin-bottom: 44px;
}
.movie-header__title {
	font-size: 250%;
}
.movie-header__title__satisfied {
	color: #006595;
}
.movie-header__title__satisfied:after {
	display: inline-block;
	width: 1px;
	height: 1em;
	margin-left: 30px;
	margin-right: 20px;
	background: #d8d8d8;
	vertical-align: -3px;
	content: '';
}
.movie-header__text {
	margin-top: 15px;
	font-size: 120%;
}
.player__wrapper {
	position: relative;
	height: 0;
	padding-top: 56.33333%;
}
#player {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}
@media (max-width: 768px) {
	.movie-header {
		margin-bottom: 20px;
	}
	.movie-header__title {
		font-size: 150%;
	}
	.movie-header__title__satisfied {
		display: block;
	}
	.movie-header__title__satisfied:after {
		content: none;
	}
}


/* ==========================================================================
   /sitemap/
   ========================================================================== */

.sitemap {
	display: flex;
	justify-content: space-between;
}
.sitemap__col {
	width: calc(50% - 20px);
	border-top: 1px dotted #acacac;
}
.sitemap-block {
	border-bottom: 1px dotted #acacac;
}
.sitemap-link01 {
	display: block;
	position: relative;
	padding-top: 20px;
	padding-bottom: 20px;
	padding-left: 22px;
	font-size: 200%;
	color: #006595;
}
.sitemap-link02 {
	display: block;
	position: relative;
	padding-top: 2px;
	padding-bottom: 2px;
	padding-left: 22px;
	font-size: 140%;
}
.sitemap-link01:before,
.sitemap-link02:before {
	position: absolute;
	top: 50%;
	left: 0;
	content: '';
	display: block;
	width: 0;
	height: 0;
	margin-top: -3px;
	border-style: solid;
	border-width: 3px 0 3px 6px;
	border-color: transparent transparent transparent #006595;
}
.sitemap-link01:hover {
	color: #006595;
}
.sitemap-link01:hover,
.sitemap-link02:hover {
	text-decoration: underline;
}
.sitemap-block ul {
	margin-left: 60px;
	margin-top: -10px;
	margin-bottom: 22px;
}
@media (max-width: 768px) {
	.sitemap {
		flex-direction: column;
	}
	.sitemap__col {
		width: 100%;
	}
	.sitemap__col + .sitemap__col {
		border: none;
	}
	.sitemap-link01 {
		padding-top: 15px;
		padding-bottom: 15px;
		font-size: 140%;
	}
	.sitemap-link02 {
		font-size: 120%;
	}
	.sitemap-block ul {
		margin-bottom: 12px;
	}
}


/* ==========================================================================
   /skytree/
   ========================================================================== */

.skytree {
}
.skytree__header {
	margin-top: 20px;
	font-size: 120%;
}
.skytree__header__text01 {
	font-size: 208.3%;
}
.skytree__header__text02 {
	margin-top: 6px;
}
.skytree__body {
	position: relative;
	display: flex;
	justify-content: space-between;
	margin-top: 44px;
}
.skytree__body img {
	width: 100%;
	height: auto;
}
.skytree__body__col01 {
	max-width: 552px;
}
.skytree__body__col02 {
	max-width: 390px;
}
.skytree__body__title {
	margin-bottom: 14px;
	font-size: 200%;
	color: #006595;
}
.skytree__body__text {
	margin-top: 10px;
	font-size: 120%;
}
.skytree__body__links {
	position: absolute;
	bottom: 0;
	max-width: 390px;
	width: 100%;
	display: flex;
	justify-content: space-between;
}
.skytree__body__links li {
	width: 190px;
}
.skytree__footer {
	margin-top: 55px;
}
.skytree__footer__row {
	display: flex;
	justify-content: space-between;
	position: relative;
}
.skytree__footer__col__title {
	font-size: 200%;
	color: #006595;
}
.skytree__footer__col__image {
	margin-top: 16px;
}
.skytree__footer__col:not(:first-child):before {
	position: absolute;
	display: block;
	width: 1px;
	height: calc(100% + 10px);
	margin-left: -30px;
	background: #d8d8d8;
	content: '';
}
@media (max-width: 768px) {
	.skytree__body {
		flex-direction: column;
		margin-top: 20px;
	}
	.skytree__body__col01 {
		max-width: none;
	}
	.skytree__body__col02 {
		max-width: none;
		margin-top: 20px;
	}
	.skytree__body__title {
		margin-bottom: 10px;
		font-size: 130%;
	}
	.skytree__body__image {
		text-align: center;
	}
	.skytree__body__links {
		flex-direction: column;
		position: static;
		max-width: none;
	}
	.skytree__body__links li {
		width: 100%;
		margin-top: 10px;
	}
	.skytree__footer {
		margin-top: 30px;
	}
	.skytree__footer__row {
		flex-direction: column;
	}
	.skytree__footer img {
		width: 100%;
		height: auto;
	}
	.skytree__footer__col__title {
		font-size: 130%;
	}
	.skytree__footer__col__image {
		margin-top: 10px;
	}
	.skytree__footer__col:not(:first-child):before {
		position: static;
		width: 100%;
		height: 1px;
		margin-top: 15px;
		margin-bottom: 15px;
		margin-left: 0;
		background: #d8d8d8;
	}
}


/* ==========================================================================
   /residence/
   ========================================================================== */

.residence-section {
	margin-top: 60px;
}
.residence-scene {
	display: flex;
	justify-content: space-between;
	margin-top: 50px;
}
.residence-scene__item {
	width: 300px;
}
.residence-scene__body {
	display: flex;
	margin-top: 12px;
	color: #006595;
}
.residence-scene__number {
	width: 100px;
	border-right: 1px solid #d8d8d8;
}
.residence-scene__number__text01 {
	margin-left: 6px;
	font-size: 190%;
}
.residence-scene__number__text02 {
	font-size: 640%;
	line-height: 1;
}
.residence-scene__title {
	width: 200px;
	padding-left: 28px;
	font-size: 190%;
	box-sizing: border-box;
}
.residence-service__row {
	display: flex;
	justify-content: space-between;
	margin-top: 60px;
}
.residence-service__col01 {
	width: 510px;
}
.residence-service__col02 {
	width: 441px;
}
.residence-service__title {
	font-size: 220%;
}
.residence-service__text {
	margin-top: 15px;
	font-size: 120%;
	line-height: 2.25;
}
.residence-service__items {
	margin-top: 40px;
	padding: 30px;
	border: 1px solid #dadada;
	line-height: 2.25;
	font-size: 120%;
}
.residence-service__items dt:before {
	content: '－';
	font-weight: bold;
	color: #006595;
}
.residence-footer {
	display: flex;
	color: #fff;
	min-width: 1060px;
}
.residence-footer__col {
	position: relative;
	display: flex;
	align-items: center;
	width: 50%;
	height: 500px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	color: #fff;
	cursor: default;
}
.residence-footer__col:hover {
	color: #fff;
}
.residence-footer__col:before {
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	content: '';
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
	z-index: 0;
	transition: 0.3s;
}
.residence-footer__col:hover:before {
	background: rgba(0,0,0,0.4);
}
.residence-footer__col01 {
	justify-content: flex-end;
	background-image: url(../img/residence/img07.jpg);
}
.residence-footer__col02 {
	justify-content: flex-start;
	background-image: url(../img/residence/img08.jpg);
}
.residence-footer__body {
	position: relative;
	width: 500px;
	padding-left: 45px;
	padding-right: 45px;
	box-sizing: border-box;
	z-index: 1;
}
.residence-footer__text01 {
	font-size: 190%;
}
.residence-footer__text02 {
	line-height: 1;
	font-size: 640%;
}
.residence-footer__text03 {
	margin-top: 8px;
	line-height: 1.52;
	font-size: 250%;
}
.residence-footer__text04 {
	margin-top: 10px;
	line-height: 2.25;
	font-size: 120%;
}
.residence-footer__text05 {
	margin-top: 20px;
	width: 224px;
}
@media (max-width: 768px) {
	.residence-section {
		margin-top: 30px;
	}
	.residence-scene {
		flex-direction: column;
		margin-top: 20px;
	}
	.residence-scene img {
		width: 100%;
		height: auto;
	}
	.residence-scene__image {
		width: 55%;
	}
	.residence-scene__item {
		display: flex;
		width: 100%;
	}
	.residence-scene__item:not(:first-child) {
		margin-top: 12px;
	}
	.residence-scene__body {
		flex-direction: column;
		margin-top: 0;
		padding-top: 10px;
		padding-left: 20px;
		width: 45%;
	}
	.residence-scene__title {
		width: auto;
	}
	.residence-scene__number {
		width: auto;
		border: none;
	}
	.residence-scene__number__text01 {
		margin-left: 3px;
		font-size: 120%;
	}
	.residence-scene__number__text02 {
		font-size: 380%;
	}
	.residence-scene__title {
		padding-left: 0;
		font-size: 130%;
	}
	.residence-service__row {
		flex-direction: column-reverse;
		margin-top: 10px;
	}
	.residence-service__col01 {
		width: 100%;
	}
	.residence-service__col02 {
		width: 100%;
	}
	.residence-service__row img {
		width: 100%;
		height: auto;
	}
	.residence-service__items {
		margin-top: 20px;
		padding: 15px;
	}
	.residence-service__title {
		margin-top: 15px;
		font-size: 150%;
	}
	.residence-service__text {
		margin-top: 10px;
	}
	.residence-footer {
		flex-direction: column;
		min-width: auto;
	}
	.residence-footer__col {
		justify-content: center;
		width: 100%;
		height: auto;
	}
	.residence-footer__col:before {
		content: none;
	}
	.residence-footer__body {
		width: 100%;
		padding-left: 0;
		padding-right: 0;
		padding-top: 40px;
		padding-bottom: 30px;
		text-align: center;
		text-shadow: 0 0 5px #000;
	}
	.residence-footer__text01 {
		font-size: 120%;
	}
	.residence-footer__text02 {
		font-size: 380%;
	}
	.residence-footer__text03 {
		font-size: 150%;
	}
	.residence-footer__text04,
	.residence-footer__text05 {
		display: none;
	}
}


/* ==========================================================================
   /guide/
   ========================================================================== */

.guide {
	position: relative;
	max-width: 1600px;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
	width: 100%;
	display: flex;
	gap: 0 52px;
	padding: 0 30px;
}
@media (max-width: 1024px){
	.guide {
		gap: 0 29px;
	}
}
.guide__col01 {
	max-width: 828px;
	width: calc(100% - 470px);
	height: 504px;
}
@media (max-width: 1024px){
	.guide__col01 {
		width: calc(100% - 447px);
	}
}
.guide__col01 img {
	object-fit: cover;
	max-width: 100%;
}
.guide__col02 {
	position: relative;
	width: 418px;
}
.guide-header {
	display: flex;
	padding-top: 10px;
	margin-bottom: 26px;
}
.guide-number {
	width: 96px;
	margin-right: 30px;
	border-right: 1px solid #ddd;
	color: var(--accent-color);
}
.guide-number__text01 {
	margin-left: 10px;
	font-size: 190%;
}
.guide-number__text02 {
	font-size: 640%;
	line-height: 1;
}
.guide-title {
	font-size: 22px;
	line-height: 1.5;
	color: var(--accent-color);
}
.guide-body__text {
	font-size: 120%;
	line-height: 2.25;
}
.guide-body__button {
	width: 224px;
	margin-top: 20px;
}
.guide-image {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
}
.guide-image img {
	max-width: 100%;
	height: auto;
}

.guide-table{
	margin-top: 30px;
}
.guide-table th,
.guide-table td {
	padding: 15px 20px;
	border-right: 2px solid #fff;
	font-size: 120%;
	line-height: 1.83;
	vertical-align: middle;
}
.guide-table th:last-child,
.guide-table td:last-child {
	border-bottom: none;
}
.guide-table th {
	border-bottom: 2px solid #fff;
	background: #006494;
	white-space: nowrap;
	color: #fff;
}
.guide-table td {
	background: #f4f4f9;
}
.guide-list01{
	font-size: 120%;
	line-height: 2.08;
}
.guide-list01 dt{
	background: #f5f5f9;
	color: #006595;
	margin: 15px 0;
	padding: 12px 20px 10px;
	font-weight: bold;
}
.guide-list01-Hd,
.guide-list01-list li{
	color: #006595;
}
.guide-list01-Hd::before,
.guide-list01-list li::before{
	content: "●";
}
.guide-list01-list{
	display: flex;
	flex-wrap: wrap;
}
.guide-list01-list li{
	width: 50%;
}
.listStyle01 li{
	margin-left: 1em;
}
.listStyle01 li::before{
	content: "・";
	margin-left: -1em;
}

.guide_rule_01{
	margin-top: 20px;
}
.guide_rule_02{
	margin-top: 40px;
}
.guide_rule_02 p{
	margin-top: 10px;
}

@media (max-width: 768px) {
	.guide {
		padding-left: 15px;
		padding-right: 15px;
		flex-direction: column;
	}
	.guide__col01 {
		width: 100%;
		height: auto;
	}
	.guide__col01 img {
		width: 100%;
		height: auto;
	}
	.guide__col02 {
		width: 100%;
	}
	.guide-header {
		position: relative;
		display: block;
		margin-bottom: 10px;
	}
	.guide-number {
		position: absolute;
		top: -80px;
		left: 10px;
		width: auto;
		margin-right: 0;
		border-right: none;
		color: #fff;
	}
	.guide-number__text01 {
		margin-left: 5px;
		font-size: 150%;
	}
	.guide-number__text02 {
		font-size: 500%;
	}
	.guide-title {
		font-size: 15px;
		line-height: 1.5;
		color: #4c4948;
	}
	.guide-body__button {
		width: 100%;
	}
	.guide-image {
		position: static;
		margin-top: 20px;
	}
	.guide-image img {
		width: 100%;
		height: auto;
	}
	.guide-table th{
		padding: 15px 15px;
	}
	.guide-table td{
		padding: 15px 10px;
	}
	.guide-list01 dt{
		margin: 8px 0;
		padding: 10px 10px 8px;
	}
	.guide-list01-list li{
		line-height: 1.75;
		font-weight: bold;
	}
}


/* ==========================================================================
   /feature/
   ========================================================================== */

.page-lead__feature {
	margin-top: 25px;
}
.page-lead__feature__item {
	margin-top: 10px;
	font-size: 150%;
}
.page-lead__feature__item:before {
	display: inline-block;
	width: 104px;
	margin-right: 18px;
	border-right: 1px solid #006595;
	content: attr(data-en-title);
	line-height: 1;
	font-size: 120%;
	vertical-align: -1px;
	color: #006595;
}
.page-lead__feature-design th {
	display: inline-block;
	vertical-align: middle;
	width: 114px;
	line-height: 1;
	font-size: 180%;
	color: #006595;
	border-right: 1px solid #006595;
	margin-top: 20px;
	text-align: left;
}
.page-lead__feature-design td {
	font-size: 150%;
	padding-left: 18px;
	line-height: 1.4;
	vertical-align: middle;
	padding-top: 18px;
	width: 100%;
}
.page-lead__feature-design td span {
	font-size: 12px;
	display: inline-block;
	vertical-align: middle;
	margin-top: -2px;
}
.feature-introduction {
	display: flex;
	justify-content: space-between;
	margin-top: -16px;
}
.feature-introduction__item {
	width: 300px;
}
.feature-introduction__title {
	font-size: 250%;
	line-height: 1.52;
}
.feature-introduction__title:before {
	display: block;
	margin-bottom: 8px;
	content: attr(data-en-title);
	color: #006595;
	font-size: 120%;
}
.feature-introduction__text {
	margin-top: 16px;
	font-size: 120%;
	line-height: 2.25;
}

.feature-slider {
	margin-top: 90px;
	margin-bottom: 70px;
}
.feature-slider__list {
	display: flex;
}
.feature-slider__list__item {
	margin-left: 30px;
	margin-right: 30px;
}

.feature-section-lead {
	margin-top: 20px;
	margin-bottom: 60px;
	font-size: 250%;
}

.feature-section {
	position: relative;
	max-width: 1600px;
	min-width: 1060px;
	min-height: 504px;
	margin-bottom: 80px;
	margin-left: auto;
	margin-right: auto;
	overflow: hidden;
	box-sizing: border-box;
}
.feature-section__col01 {
	position: absolute;
	left: 50%;
	width: 51.75%;
	margin-left: -800px;
}
.feature-section__col01--reverse {
	margin-left: -28px;
}
.feature-section__col02 {
	position: relative;
	min-height: 344px;
	width: 418px;
	margin-left: calc(50% + 80px);
	padding-bottom: 160px;
}
.feature-section__col02--reverse {
	margin-left: calc(50% - 500px);
}
.feature-section-number {
	color: #006595;
}
.feature-section-number__text01 {
	font-size: 175%;
}
.feature-section-number__text02 {
	font-size: 640%;
	line-height: 1;
}
.feature-section-title {
	margin-top: 14px;
	font-size: 22px;
	line-height: 1.5;
}
.feature-section-body__text {
	margin-top: 14px;
	font-size: 120%;
	line-height: 2.25;
	text-align: justify;
}
.feature-section-body__button {
	width: 224px;
	margin-top: 20px;
}
.feature-section-image {
	position: absolute;
	bottom: 0;
	left: 0;
}

.hotel-stay {
	position: relative;
	max-width: 1600px;
	min-width: 1060px;
	margin-top: 120px;
	margin-left: auto;
	margin-right: auto;
}
.hotel-stay__images {
	display: flex;
}
.hotel-stay__images__item {
	position: relative;
	width: 20%;
	height: 474px;
	overflow: hidden;
}
.hotel-stay__images__item img {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
}
.hotel-stay__body {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 600px;
	height: 330px;
	margin: auto;
	text-align: center;
	color: #fff;
}
.hotel-stay__text01 {
	text-shadow:  0 0 15px rgba(50,50,50,1);
	font-weight: bold;
	font-size: 240%;
}
.hotel-stay__text01:after {
	display: block;
	width: 40px;
	height: 2px;
	content: '';
	margin-top: 18px;
	margin-left: auto;
	margin-right: auto;
	background: #fff;
	box-shadow: 0 0 15px rgba(50,50,50,0.7),0 0 15px rgba(50,50,50,0.7);
}
.hotel-stay__text02 {
	margin-top: 20px;
	font-size: 220%;
	text-shadow:  0 0 15px rgba(50,50,50,1), 0 0 15px rgba(50,50,50,1);
}
.hotel-stay__button {
	width: 246px;
	margin-top: 34px;
	margin-left: auto;
	margin-right: auto;
	text-shadow: 0 0 15px rgba(50,50,50,0.7),0 0 15px rgba(50,50,50,0.7);
	box-shadow: 0 0 15px rgba(50,50,50,0.4);
}
.hotel-stay__button .general-button:hover {
	text-shadow: none;
}
@media (max-width: 768px) {
	.feature-introduction {
		flex-direction: column;
	}
	.feature-introduction__item {
		width: 100%;
		margin-top: 20px;
	}
	.feature-introduction__title {
		font-size: 160%;
	}
	.feature-introduction__title:before {
		margin-bottom: 0;
		font-size: 100%;
	}
	.feature-introduction__text {
		margin-top: 4px;
		line-height: 1.75;
	}
	.feature-slider {
		margin-top: 30px;
		margin-bottom: 40px;
	}
	.feature-slider__list {
		height: 80px;
	}
	.feature-slider__list__item {
		width: 125px;
		margin-left: 5px;
		margin-right: 5px;
	}
	.feature-slider__list__item img {
		width: 100%;
		height: auto;
	}
	.feature-section-lead {
		display: none;
	}
	.feature-section {
		min-width: auto;
		min-height: auto;
		margin-top: 20px;
		margin-bottom: 45px;
		padding-left: 15px;
		padding-right: 15px;
	}
	.feature-section__col01 {
		position: static;
		left: 0;
		width: 100%;
		margin-left: 0;
	}
	.feature-section__col01 img {
		width: 100%;
		height: auto;
	}
	.feature-section__col02 {
		min-height: auto;
		width: 100%;
		margin-left: 0;
		padding-bottom: 0;
	}
	.feature-section-header {
		position: relative;
		display: block;
		margin-bottom: 10px;
	}
	.feature-section-number {
		position: absolute;
		top: -95px;
		left: 10px;
		width: auto;
		margin-right: 0;
		border-right: none;
		color: #fff;
	}
	.feature-section-number__text01 {
		margin-left: 5px;
		font-size: 150%;
	}
	.feature-section-number__text02 {
		font-size: 500%;
	}
	.feature-section-title {
		font-size: 15px;
		line-height: 1.5;
		color: #4c4948;
	}
	.feature-section-body__button {
		width: 100%;
	}
	.feature-section-image {
		position: static;
		margin-top: 20px;
	}
	.feature-section-image img {
		width: 100%;
		height: auto;
	}
	.hotel-stay {
		min-height: 480px;
		min-width: auto;
		margin-top: 120px;
	}
	.hotel-stay__images {
		flex-wrap: wrap;
	}
	.hotel-stay__images__item:nth-of-type(1),
	.hotel-stay__images__item:nth-of-type(2),
	.hotel-stay__images__item:nth-of-type(4),
	.hotel-stay__images__item:nth-of-type(5) {
		width: 50%;
		height: 160px;
	}
	.hotel-stay__images__item:nth-of-type(3) {
		width: 100%;
		height: 160px;
	}
	.hotel-stay__images__item:nth-of-type(3) img {
		width: 100%;
	}
	.hotel-stay__body {
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		width: 320px;
		height: 330px;
	}
	.hotel-stay__text01 {
		font-size: 200%;
	}
	.hotel-stay__text01:after {
		margin-top: 13px;
	}
	.hotel-stay__text02 {
		font-size: 180%;
		line-height: 1.638888;
	}
	.hotel-stay__button {
		margin-top: 18px;
	}
}


/* ==========================================================================
   /recruit/
   ========================================================================== */

.recruit-message {
	display: flex;
	justify-content: space-between;
	margin-top: 36px;
}
.recruit-message__image {
	width: 192px;
}
.recruit-message__text {
	width: 770px;
	font-size: 120%;
	line-height: 2.25;
}

.recruit-message_staff {
	display: flex;
	justify-content: space-between;
	margin-top: 100px;
}

.recruit-message_staff:nth-child(3) {
	display: flex;
	justify-content: space-between;
	margin-top: 60px;
}

@media (max-width: 768px) {
	.recruit-message_staff:nth-child(3) {
		margin-top: 30px;
	}
}

.recruit-message_staff:nth-child(even) {
  flex-direction: row-reverse;
}

.recruit-message_staff__image {
	width: 450px;
	height: auto;
}
.recruit-message_staff__image .pc {
	display: block !important;
}
.recruit-message_staff__image .sp {
	display: none !important;
}

.recruit-message_staff__text {
	width: 530px;
	font-size: 120%;
	line-height: 2.25;
}

.recruit-message_staff__title01{
	font-weight: bold;
	color: #006595;
	font-size: 13px;
	line-height: 1.2;
}

.recruit-message_staff__title02{
	font-weight: bold;
	color: #006595;
	font-size: 42px;
	line-height: 2;
}

.recruit-message_staff__title03{
	color: #9b9a9a;
	font-size: 13px;
	line-height: 1.5;
	margin-bottom: 50px;
}

.recruit-message_staff_margin {
	margin-top: 20px;
	font-size: 110%;
}

.recruit-application {
	display: flex;
	justify-content: space-between;
	margin-top: 22px;
}
.recruit-application__item {
	display: flex;
	align-items: center;
	width: 480px;
}
.recruit-application__number {
	width: 150px;
	color: #006595;
}
.recruit-application__number__text01 {
	font-size: 185%;
}
.recruit-application__number__text02 {
	padding-left: 0.3em;
	font-size: 640%;
	line-height: 1;
}
.recruit-application__body {
	position: relative;
	width: 330px;
	min-height: 200px;
	padding-left: 26px;
	padding-bottom: 45px;
	border-left: 1px solid #d8d8d8;
	box-sizing: border-box;
}
.recruit-application__body__title {
	font-size: 200%;
	color: #006595;
}
.recruit-application__body__text {
	font-size: 120%;
	line-height: 2.25;
}
.recruit-application__body__button {
	position: absolute;
	left: 26px;
	bottom: 0;
}
.recruit-application__body__button02 {
	position: absolute;
	left: 26px;
	margin-top: 6px;
}
@media (max-width: 768px) {
	.recruit-message {
		flex-direction: column;
		margin-top: 20px;
	}
	.recruit-message_staff__image {
		width: 100%;
		height: 100%;
	}
	.recruit-message_staff__image img {
		width: 100%;
		height: auto;
	}
	.recruit-message_staff__text {
		width: auto;
		margin-top: 20px;
		line-height: 1.75;
	}

	.recruit-message_staff {
		flex-direction: column;
		margin-top: 60px;
	}
	.recruit-message_staff:nth-child(even) {
		flex-direction: column;
		margin-top: 60px;
	}
	.recruit-message_staff__image {
		width: auto;
		text-align: center;
	}
	.recruit-message_staff__image img {
		width: 100%;
		height: auto;
	}
	.recruit-message_staff__image .pc {
		display: none !important;
	}
	.recruit-message_staff__image .sp {
		display: block !important;
	}

	.recruit-message_staff__text {
		width: auto;
		margin-top: 20px;
		line-height: 1.75;
	}

	.recruit-message_staff__title01{
		font-weight: bold;
		color: #006595;
		font-size: 13px;
		line-height: 1.2;
	}

	.recruit-message_staff__title02{
		font-weight: bold;
		color: #006595;
		font-size: 30px;
		line-height: 1.5;
	}

	.recruit-message_staff__title03{
		color: #9b9a9a;
		font-size: 13px;
		line-height: 1.5;
		margin-bottom: 20px;
	}

	.recruit-message_staff_margin {
		font-size: 120%;
	}

	.recruit-application {
		display: block;
	}
	.recruit-application__item {
		display: block;
		width: auto;
		margin-top: 20px;
	}
	.recruit-application__number {
		float: left;
		width: 95px;
		margin-right: 20px;
		border-right: 1px solid #d8d8d8;
	}
	.recruit-application__number__text01 {
		font-size: 120%;
	}
	.recruit-application__number__text02 {
		padding-left: 0.3em;
		font-size: 380%;
	}
	.recruit-application__body {
		width: auto;
		min-height: auto;
		padding-left: 0;
		padding-bottom: 0;
		border-left: none;
	}
	.recruit-application__body__title {
			padding-top: 20px;
		font-size: 130%;
	}
	.recruit-application__body__text {
		clear: both;
		padding-top: 12px;
		line-height: 1.75;
	}
	.recruit-application__body__button {
		position: static;
		margin-top: 12px;
	}
	.recruit-application__body__button02 {
		clear: both;
		position: static;
		margin-top: 35px;
	}
}


/* ==========================================================================
   /scene/
   ========================================================================== */

.scene-nav {
	display: flex;
	justify-content: space-between;
}
.scene-nav__item {
	width: 312px;
}
.scene-nav__item a {
	position: relative;
	display: block;
	min-height: 106px;
	padding: 20px 0 0 126px;
	border: 1px solid #d2d2d2;
	box-sizing: border-box;
	transition: 0.3s;
}
.scene-nav__item a:hover {
	border-color: #006595;
	background: #006595;
}
.scene-nav__item.ui-state-active a {
	border-color: #006595;
	background: #006595;
}
.scene-nav__item a:hover img {
	opacity: 1;
}
.scene-nav__item a:after {
	position: absolute;
	right: 26px;
	top: 50px;
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 5px 3.5px 0 3.5px;
	border-color: #4c4948 transparent transparent transparent;
}

.scene-nav__item.ui-state-active a:after,
.scene-nav__item a:hover:after {
	content: none;
}
.scene-nav__image {
	position: absolute;
	left: 15px;
	top: 15px;
}
.scene-nav__text01 {
	font-size: 160%;
	line-height: 1;
	transition: 0.3s color;
	color: #006595;
}
.scene-nav__text02 {
	margin-top: 4px;
	font-size: 140%;
	transition: 0.3s color;
}
.scene-nav__item.ui-state-active .scene-nav__text01,
.scene-nav__item.ui-state-active .scene-nav__text02,
.scene-nav__item a:hover .scene-nav__text01,
.scene-nav__item a:hover .scene-nav__text02 {
	color: #fff;
}

.scene-header {
	position: relative;
	min-height: 288px;
	padding-top: 65px;
	padding-left: 318px;
	z-index: 1;
	box-sizing: border-box;
}
.scene-header__image {
	position: absolute;
	top: 0;
	left: -72px;
	z-index: -1;
}
.scene-header__title {
	margin-top: 12px;
	font-size: 220%;
}
.scene-header__title:before {
	content: attr(data-en-title);
	display: block;
	color: #006595;
}
.scene-header__text {
	margin-top: 14px;
	line-height: 2.25;
	font-size: 120%;
}

.scene-merit {
	display: flex;
	justify-content: space-between;
	margin-bottom: 66px;
}
.scene-merit__item {
	width: 310px;
}
.scene-merit__number {
	position: relative;
	margin-left: 24px;
	margin-bottom: -18px;
	font-size: 480%;
	font-weight: bold;
	line-height: 1;
	color: #006595;
}
.scene-merit__text {
	margin-top: 24px;
	font-size: 200%;
	line-height: 1.65;
	color: #006595;
}
.scene-slider-tabs {
	padding-top: 46px;
}
.plan-slider__hotel {
	margin-bottom: 22px;
	position: relative;
	padding-left: 63px;
	font-size: 120%;
}
.plan-slider__hotel__link,
.plan-slider__hotel__link:hover {
	color: #006595;
}
.plan-slider__hotel__link:before {
	position: absolute;
	left: 0;
	top: 10px;
	display: inline-block;
	width: 46px;
	height: 1px;
	content: '';
	background: #93bbd1;
}
.plan-slider__main {
	display: flex;
	justify-content: space-between;
}
.plan-slider__main__image {
	width: 322px;
}
.plan-slider__main__image img {
	width: 100%;
	height: auto;
}
.plan-slider__main__body {
	width: 630px;
}
.plan-slider__categories {
	display: flex;
	justify-content: flex-start;
}
.plan-slider__categories__item {
	margin-right: 6px;
	padding: 4px 20px;
	background: #006595;
	font-size: 120%;
	color: #fff;
}
.plan-slider__title {
	margin-top: 16px;
	font-size: 140%;
}
.plan-slider__text {
	margin-top: 12px;
	font-size: 120%;
}
.plan-slider__data {
	display: flex;
	margin-top: 20px;
	padding: 17px 28px;
	background: #fff;
	line-height: 1.66666;
	font-size: 120%;
}
.plan-slider__data__item:not(:first-child) {
	margin-left: 1em;
}
.plan-slider__data__item span {
	font-weight: bold;
}

.plan-slider__footer {
	padding-top: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid #d8d8d8;
}
.plan-slider__links {
	display: flex;
	justify-content: center;
}
.plan-slider__links__item {
	width: 248px;
	margin-left: 6px;
	margin-right: 6px;
}

.home-banner-slider .slick-arrow,
.plan-slider .slick-arrow {
	position: absolute;
	top: 130px;
	width: 94px;
	height: 94px;
	background: none;
	border: 1px solid #404040;
	border-radius: 50%;
	box-sizing: border-box;
	outline: none;
	cursor: pointer;
	z-index: 10;
	font-size: 0;
	transition: 0.3s;
}
.home-banner-slider .slick-arrow {
	top: 22px;
}
.home-banner-slider .slick-arrow:hover,
.plan-slider .slick-arrow:hover {
	border-color: #006595;
	background: #fff;
}
.home-banner-slider .slick-arrow:before,
.home-banner-slider .slick-arrow:after,
.plan-slider .slick-arrow:before,
.plan-slider .slick-arrow:after {
	position: absolute;
	left: 50%;
	top: 50%;
	content: '';
	display: block;
	width: 18px;
	height: 2px;
	background: #404040;
	transition: 0.3s;
}
.home-banner-slider .slick-arrow:hover:before,
.home-banner-slider .slick-arrow:hover:after,
.plan-slider .slick-arrow:hover:before,
.plan-slider .slick-arrow:hover:after {
	background: #006595;
}
.home-banner-slider .slick-prev,
.plan-slider .slick-prev {
	left: -130px;
}
.home-banner-slider .slick-prev:before,
.plan-slider .slick-prev:before {
	transform: rotate(-45deg);
	margin-top: -6px;
	margin-left: -8px;
}
.home-banner-slider .slick-prev:after,
.plan-slider .slick-prev:after {
	transform: rotate(-135deg);
	margin-top: 6px;
	margin-left: -8px;
}
.home-banner-slider .slick-next,
.plan-slider .slick-next {
	right: -130px;
}
.home-banner-slider .slick-next:before,
.plan-slider .slick-next:before {
	transform: rotate(45deg);
	margin-top: -6px;
	margin-left: -8px;
}
.home-banner-slider .slick-next:after,
.plan-slider .slick-next:after {
	transform: rotate(135deg);
	margin-top: 6px;
	margin-left: -8px;
}

.home-banner-slider .slick-dots,
.plan-slider .slick-dots {
	display: flex;
	justify-content: center;
	margin-top: 35px;
	font-size: 0;
}
.home-banner-slider .slick-dots li,
.plan-slider .slick-dots li {
	width: 10px;
	height: 10px;
	margin-left: 3px;
	margin-right: 3px;
	background: #d8d8d8;
	border-radius: 5px;
	overflow: hidden;
	transition: 0.3s;
}
.home-banner-slider .slick-dots li.slick-active,
.plan-slider .slick-dots li.slick-active {
	background: #006595;
}
.home-banner-slider .slick-dots button,
.plan-slider .slick-dots button {
	opacity: 0;
	cursor: pointer;
}

@media (max-width: 1310px) {
	.home-banner-slider .slick-prev,
	.plan-slider .slick-prev {
		left: -90px;
	}
	.home-banner-slider .slick-next,
	.plan-slider .slick-next {
		right: -90px;
	}
}
@media (max-width: 1230px) {
	.home-banner-slider .slick-prev,
	.plan-slider .slick-prev {
		left: -10px;
	}
	.home-banner-slider .slick-next,
	.plan-slider .slick-next {
		right: -10px;
	}
}
@media (max-width: 768px) {
	.scene-header {
		padding-left: 0;
	}
	.scene-merit {
		flex-direction: column;
	}
	.scene-merit__item {
		width: auto;
	}
	.scene-merit__item:not(:first-child) {
		margin-top: 20px;
	}
	.scene-merit__text {
		font-size: 160%;
	}
	.scene-merit__image img {
		width: 100%;
		height: auto;
	}
	.plan-slider__links {
		flex-direction: column;
	}

	.home-banner-slider .slick-arrow,
	.plan-slider .slick-arrow {
		width: 35px;
		height: 35px;
	}
	.home-banner-slider .slick-prev,
	.plan-slider .slick-prev {
		left: 3px;
	}
	.home-banner-slider .slick-next,
	.plan-slider .slick-next {
		right: 3px;
	}

	.home-banner-slider .slick-dots,
	.plan-slider .slick-dots {
		position: relative;
		bottom: 0;
		left: 0;
		width: 100%;
		margin-left: 0;
	}
	.home-banner-slider .slick-arrow {
		top: 45px;
	}

	.home-banner-slider .slick-arrow:before,
	.home-banner-slider .slick-arrow:after,
	.plan-slider .slick-arrow:before,
	.plan-slider .slick-arrow:after {
		width: 8px;
	}
	.home-banner-slider .slick-prev:before,
	.plan-slider .slick-prev:before {
		margin-top: -3px;
		margin-left: -5px;
	}
	.home-banner-slider .slick-prev:after,
	.plan-slider .slick-prev:after {
		margin-top: 2px;
		margin-left: -5px;
	}
	.home-banner-slider .slick-next:before,
	.plan-slider .slick-next:before {
		margin-top: -3px;
		margin-left: -5px;
	}
	.home-banner-slider .slick-next:after,
	.plan-slider .slick-next:after {
		margin-top: 2px;
		margin-left: -5px;
	}

	.scene-header__image {
		display: none;
	}
	.scene-slider-tabs {
		padding-top: 0;
	}
	.scene-nav__item {
		width: auto;
	}
	.scene-nav__item a {
		transition: none;
	}
	.scene-nav__item a:hover {
		border-color: #d2d2d2;
		background: #fff;
	}

	.scene-nav__item.ui-state-active .scene-nav__text01,
	.scene-nav__item a:hover .scene-nav__text01 {
		color: #4c4948;
	}
	.scene-nav__item.ui-state-active .scene-nav__text02,
	.scene-nav__item a:hover .scene-nav__text02 {
		color: #006595;
	}

	.scene-header {
		padding-top: 0;
	}

	.plan-slider__hotel {
		display: none;
	}
	.plan-slider__main {
		flex-direction: column;
	}
	.plan-slider__main__body {
		width: auto;
		margin-top: 18px;
	}
	.plan-slider__data {
		display: none;
	}
	.plan-slider__links__item {
		width: auto;
	}
	.plan-slider__main__image {
		width: auto;
	}
	.plan-slider__main__image img {
		width: 100%;
		height: auto;
	}
	.plan-slider__links__item:not(:first-child) {
		margin-top: 12px;
	}
	.plan-slider__footer {
		padding-top: 16px;
	}

}


/* ==========================================================================
   tabs theme override
   ========================================================================== */

.general-tabs .ui-state-hover,
.general-tabs .ui-state-active,
.general-tabs .ui-widget-content .ui-state-active,
.general-tabs .ui-widget-header .ui-state-active,
.general-tabs a.ui-button:active,
.general-tabs .ui-button:active,
.general-tabs .ui-button.ui-state-active:hover {
    border: none;
    background: none;
    font-weight: bold;
    color: #4c4948;
}
.general-tabs .ui-state-default,
.general-tabs .ui-widget-content .ui-state-default,
.general-tabs .ui-widget-header .ui-state-default {
    border: none;
    background: none;
    font-weight: bold;
    color: #4c4948;
}
.general-tabs .scene-nav__item {
	font-weight: normal;
}
.general-tabs .ui-state-active a,
.general-tabs .ui-state-active a:link,
.general-tabs .ui-state-active a:visited,
.general-tabs .ui-state-default a,
.general-tabs .ui-state-default a:link,
.general-tabs .ui-state-default a:visited {
	color: #4c4948;
	text-decoration: none;
	transition: .3s;
}
.general-tabs .ui-state-active a:hover,
.general-tabs .ui-state-default a:hover {
	color: var(--accent-color);
}
.general-tabs__item {
	transition: 1s opacity;
}
.general-tabs__item[aria-hidden="true"] {
	opacity: 0;
	transition: 0.1s;
}
.general-tabs__item[aria-hidden="false"] {
	opacity: 1;
}


/* Slider */
.slick-slider {
    position: relative;
    display: block;
    -moz-box-sizing: border-box;
         box-sizing: border-box;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus {
    outline: none;
}
.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}
.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}
.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}
.slick-track:after {
    clear: both;
}
.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide {
    float: right;
}
.slick-slide img {
    display: block;
}
.slick-slide.slick-loading img {
    display: none;
}
.slick-slide.dragging img {
    pointer-events: none;
}
.slick-initialized .slick-slide {
    display: block;
}
.slick-loading .slick-slide {
    visibility: hidden;
}
.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

/* ---------------------------------
	information
---------------------------------- */

.hotel-home-informations {
	background: #f4f4f9;
}
.hotel-home-informations__wrapper {
	display: flex;
}
.hotel-home-informations__title {
	width: 295px;
	padding-top: 17px;
	padding-bottom: 17px;
	font-size: 130%;
}
.hotel-home-informations__title:before {
	display: inline-block;
	margin-right: 18px;
	content: attr(data-en-title);
	vertical-align: middle;
	font-size: 169.23076%;
	line-height: 1;
	color: #006595;
}
.hotel-home-informations__body {
	width: calc(100% - 405px);
	padding-top: 18px;
	padding-bottom: 18px;
	padding-right: 20px;
	box-sizing: border-box;
}
.hotel-home-informations__entries {
	display: flex;
}
.hotel-home-informations__entries:not(:first-child) {
	margin-top: 10px;
	padding-top: 10px;
	border-top: 1px solid #ddd;
}
.hotel-home-informations__entries-date {
	width: 108px;
	font-size: 140%;
	line-height: 1.5;
	color: #929292;
}
.hotel-home-informations__entries-title {
	width: calc(100% - 108px);
	font-size: 150%;
	line-height: 1.4;
}
.hotel-home-informations__entries-link {
	text-decoration: underline;
	font-weight: bold;
}
.hotel-home-informations__entries-link:hover {
	text-decoration: none;
}
.hotel-home-informations__footer {
	width: 110px;
	padding-top: 17px;
	padding-bottom: 17px;
}
.hotel-home-informations__link {
	position: relative;
	display: inline-block;
	width: 100%;
	text-align: right;
	font-size: 130%;
}
.hotel-home-informations__link:before {
	position: absolute;
	top: 50%;
	left: 0;
	content: '';
	display: block;
	width: 0;
	height: 0;
	margin-top: -3px;
	border-style: solid;
	border-width: 3px 0 3px 6px;
	border-color: transparent transparent transparent #4c4948;
}
@media (max-width: 768px) {
	.hotel-home-informations__title {
		width: 100%;
		border-bottom: 1px solid #929292;
		font-size: 0;
	}
	.hotel-home-informations__title:before {
		font-size: 19px;
	}
	.wrapper.hotel-home-informations__wrapper {
		position: relative;
		flex-direction: column;
		padding-left: 10px;
		padding-right: 10px;
	}
	.hotel-home-informations__body {
		width: 100%;
		padding-right: 0;
	}
	.hotel-home-informations__entries {
		flex-direction: column;
	}
	.hotel-home-informations__entries-date {
		width: 100%;
		font-size: 125%;
	}
	.hotel-home-informations__entries-title {
		width: 100%;
		font-size: 135%;
	}
	.hotel-home-informations__footer {
		position: absolute;
		top: 0;
		right: 10px;
		width: 86px;
		font-size: 120%;
	}
	.hotel-home-informations__link {
		font-size: 100%;
	}
}


.emergency{
	margin: 40px;
	border: 5px solid #d91900;
	font-size: 16px;
}
.emergency_box{
	padding: 30px;
}
.emergency_btn{
	margin: 20px 0 0;
	font-size: 12px;
}
.emergency p{
	font-size: 26px;
	font-weight: bold;
	margin-bottom: 20px;
}
.emergency span{
	display: inline-block;
	margin: 20px 0;
}
@media (max-width: 768px) {
	.emergency{
		margin: 40px 20px;
	}
}

/* ---------------------------------
	privacy policy
---------------------------------- */

.privacy_policy_list h3, .privacy_policy_list h4 {
    text-indent: -1.5em;
    padding-left: 1.5em;
}

.privacy_policy_list li {
    text-indent: -3.5em;
    padding-left: 3.5em;
}

.privacy_policy_list .privacy_policy_ol_list li {
    text-indent: 0;
    padding-left: 0;
}

.general-text-block .privacy_policy_ol_list li {
    list-style-type: decimal;
    margin-left: 32px;
}

.privacy_policy_link {
    color: #006595;
    text-decoration: underline;
}


/* ---------------------------------
	clause
---------------------------------- */
.clause_list dd{
	margin-bottom: 15px;
}
.clause_list a{
	text-decoration: underline;
	color: var(--accent-color);
}
#anc01{
	padding-top: 100px;
	margin-top: -100px;
}
@media (max-width: 768px) {
#anc01{
	padding-top: 50px;
	margin-top: -50px;
}
}
p.clause_list01 {
	margin-left: 2.5em;
}
ul.clause_list01{
	margin-left: 1em;
}
ul.clause_list01 > li {
	counter-increment: cnt;
	margin-left: 1.25em;
	margin-bottom: 0.5em;
	line-height: 1.9;
}
ul.clause_list01 > li::before {
	display: marker;
	content: ""counter(cnt)"";
	margin-left: -1.25em;
	margin-right: 0.65em;
}
ul.clause_list01 > li:only-child::before {
	content: " ";
	padding-right:0.45em;
}

ol.clause_list02{
	counter-reset:cnt;
	margin-top: 4px;
}
ol.clause_list02 > li {
	counter-increment: cnt;
	margin-left: 1.25em;
}
ol.clause_list02 > li::before {
	display: marker;
	content: "( "counter(cnt)" )";
	margin-left: -1.25em;
	margin-right: 1em;
}

ul.clause_list03{
	margin-left: 2em;
}
ul.clause_list03 li{
	position: relative;
	padding-left: 2em;
	margin-top: 0.5em;
	margin-bottom: 0.5em;
	line-height: 1.6;
}
ul.clause_list03 li span{
	position: absolute;
	left: 0;
	top: 0;
}
.clause_list_lead {
	margin-left: 2.1em;
}

.tbl01-scroll {
	overflow: auto;
}
.tbl01-scroll .tbl01 {
	min-width: 902px;
}
.clause table.tbl01{
	table-layout: fixed;
	min-width: 902px;
}
.clause table.tbl01 tr th:first-of-type{
	width: 20%;
}
.clause table.tbl01 th,
.clause table.tbl01 td{
	padding: 15px 20px;
	text-align: center;
	border-right: 2px solid;
	border-bottom: 2px solid;
	line-height: 1.5;
}
.clause table.tbl01 th {
	color: #fff;
	border-color: #fff;
	vertical-align: middle;
	background-color: var(--accent-color);
}
.clause table.tbl01 td {
	background: #fff;
	color: #4c4948;
	border-color: #f4f4f9;
}


@media (max-width: 375px) {
	.clause table.tbl01 th,
	.clause table.tbl01 td {
		padding: 10px 12px;
	}
}

.clause .supl{
	margin-left: 2.5em;

}
.clause .att{
	margin-top: 5px;
}
.clause .att li{
	line-height: 1.9;
	margin-top: 2px;
	counter-increment: cnt;
	margin-left: 1em;
}
.clause .att li::before {
	display: marker;
	content: ""counter(cnt)".";
	margin-left: -1em;
	margin-right: 5px;
}

/* 20221006 会員利用規約更新：ここから */
.clause-lead {
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 32px;
	text-align: center;
}

.table-scroll {
	overflow: auto;
}
.table-scroll .-sizeS {
	min-width: 610px;
}
.table-scroll .-sizeM {
	min-width: 768px;
}

.table-common {
	margin-top: 8px;
	margin-bottom: 8px;
}
.table-common.-fixed {
	table-layout: fixed;
}
.table-common th,
.table-common td {
	border-right: 2px solid;
	border-bottom: 2px solid;
	line-height: 1.5;
	padding: 15px 20px;
	text-align: center;
	vertical-align: middle;
}
.table-common th {
	background-color: var(--accent-color);
	border-color: #fff;
	color: #fff;
}
.table-common td {
	background-color: #fff;
	border-color: #f4f4f9;
	color: #4c4948;
}

.table-calc {
	margin-top: 8px;
	margin-bottom: 8px;
}
.table-calc td {
	background-color: #fff;
	border-right: 2px solid;
	border-bottom: 2px solid;
	border-color: #f4f4f9;
	color: #4c4948;
	text-align: center;
	vertical-align: middle;
}
/* 20221006 会員利用規約更新：ここまで */




/*****************************************************************************
 株主
 *****************************************************************************/

.kabu_body {
	width: 100%;
}

.kabu-section__inner{
	width: 100%;
	max-width: 940px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 30px;
	padding-right: 30px;
	box-sizing: border-box;
}

.kabu-section__inner02 {
	margin-top: 30px;
}

.kabu-section__inner p{
	font-size: 16px;
	line-height: 1.6;
}

.kabu_txt_i{
	padding-left: 2em;
	text-indent: -1em;
}

.kabu_txt_i_02{
	padding-left: 2.5em;
	text-indent: -1.0em;
}

.kabu_txt_i_03{
	padding-left: 2em;
}

@media (max-width: 768px) {
	.kabu_txt_i_02{
		padding-left: 1.5em;
		text-indent: -1.0em;
	}
}

.entry-header__title{
	display: inline-block;
	margin: 0 auto;
	text-align: center;
	width: 100%;
	max-width: 950px;
	margin-bottom: 30px;
	padding: 0 15px;
}

.entry-header__title__text{
	font-size: 25px;
}
@media (max-width: 768px){
	.entry-header__title__text{
		font-size: 22px;
	}
}

.notice-header-title {
	line-height: 1.8;
}

.k_font_color{
	color: var(--accent-color);
	transition: 0.3s;
}
.k_font_color:hover{
	opacity: 0.8;
}

.k_font_color_02{
	color: #006595;
	font-weight: bold;
}

.k_font_color_02:hover{
	color: #006595;
	transition: 0.3s;
	opacity: 0.8;
}

.notice_pic {
	text-align: center;
	margin-bottom: 40px;
}

.notice_pic img {
	width: 100%;
	max-width: 816px;
	height: auto;
}

.notice_pic02 img {
	width: 100%;
	max-width: 385px;
	height: auto;
}

.kabu-section__module img {
	width: 100%;
	height: auto;
}

/*****************************************************************************
 採用情報　募集要項
 *****************************************************************************/

.recruit-list {
	background-color: #edf4f7;
}

.hotels-list-title {
	padding-top: 80px;
}

@media (max-width: 768px) {
	.hotels-list-title {
		padding-top: 30px;
	}
}

.recruit-list-table {
	font-size: 130%;
	padding-top: 30px;
	padding-bottom: 100px;
}

@media (max-width: 768px) {
	.recruit-list-table {
		padding-bottom: 60px;
	}
}

.recruit-list-table-design-th {
	color: #fff;
	padding: 8px 20px;
	background: #006494;
	border-bottom: 2px solid #edf4f7;
	border-right: 2px solid #edf4f7;
	vertical-align: middle;
	text-align: left;
}

.recruit-list-table td {
	padding: 8px 20px;
	background: #fff;
	border-bottom: 2px solid #edf4f7;
	border-right: 2px solid #edf4f7;
}

.recruit-list-indent li {
	padding-left: 1rem;
	text-indent: -1rem;
}

.recruit-list-table-sub th {
	padding: 3px 0 0 20px;
	vertical-align: middle;
	text-align: left;
}

.recruit-list-table-sub td {
	padding: 3px 0 0 20px;
	border-bottom: none;
	border-right: none;
	vertical-align: middle;
	line-height: 1.4;
}

.recruit-list-table-sub-w1 th {
	width: 10%;
}

.recruit-list-table-sub-w2 th {
	width: 25%;
}

@media (max-width: 768px) {
	.recruit-list-table th,.recruit-list-table td {
		display: block;
		width: 100%;
		box-sizing: border-box;
	}
	.recruit-list-table-sub th {
		padding-bottom: 0;
	}
	.recruit-list-table-sub th:first-of-type {
		padding-top: 0;
	}
	.recruit-list-table-sub td {
		padding-top: 0;
	}
}

.recruit-list-shift-ttl {
	font-size: 140%;
	color: #006595;
	margin: 30px 0 30px 0;
}

/*画像スライド*/

.recruit-list-shift {
	width: 100%;
	padding-bottom: 8em;
}

.recruit-list-shift img {
	max-width: 1000px;
}

@media screen and (max-width: 767px){
	.slide {
		display:-webkit-box;
		display:-ms-flexbox;
		display: flex;
		overflow-x: scroll;
		-webkit-overflow-scrolling: touch;
		overflow-scrolling: touch;
		scroll-snap-type: x mandatory;
		padding:0 0 4em;
		scroll-behavior: smooth;
		}
	.slide .slide-content {
		flex: 0 0 88%;
		margin: 0px 5px;
		height:100%;
		scroll-snap-align:left;
	}
}


/*****************************************************************************
	ウィークリープラン・マンスリープラン
 *****************************************************************************/

.page-lead__inner--mwplan {
	padding-top: 48px;
	padding-bottom: 48px;
}
.page-lead__inner--mwplan .page-lead__body {
	padding-top: initial;
	padding-bottom: initial;
	width: auto;
}
@media (max-width: 640px){
	.page-lead__inner--mwplan {
		padding-top: 26px;
		padding-bottom: 26px;
	}
}

.mwplan-merit {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 40px;
	width: 100%;
}
.mwplan-merit-item {
	background-color: #fff;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	gap: 32px;
	padding: 32px;
	width: 100%;
}
.mwplan-merit-item__no {
	color: var(--accent-color);
	font-size: 64px;
	line-height: 1;
	padding-top: 24px;
	position: relative;
	text-align: center;
	width: 86px;
}
.mwplan-merit-item__no::before {
	content: 'MERIT';
	font-size: 16px;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}
.mwplan-merit-item__txt {
	font-size: 14px;
	width: calc(100% - 300px);
}
.mwplan-merit-item__txt span {
	display: block;
	font-size: 18px;
	margin-bottom: 8px;
}
.mwplan-merit-item__img {
	max-width: 150px;
	width: 100%;
}
.mwplan-merit-item__img img {
	width: 100%;
	height: auto;
}

@media (max-width: 768px){
	.mwplan-merit-item__no {
		font-size: 48px;
		width: 48px;
	}
	.mwplan-merit-item__no::before {
		font-size: 15px;
	}
	.mwplan-merit-item__txt {
		width: calc(100% - 262px);
	}
}
@media (max-width: 640px){
	.mwplan-merit {
		margin-top: 32px;
	}
	.mwplan-merit-item {
		flex-direction: column;
		gap: 16px;
		padding: 16px;
	}
	.mwplan-merit-item__no {
		font-size: 30px;
		padding-top: initial;
		padding-left: 52px;
		width: auto;
	}
	.mwplan-merit-item__no::before {
		top: calc(50% - 5px);
		left: 0;
		transform: none;
	}
	.mwplan-merit-item__txt {
		order: 1;
		width: 100%;
	}
	.mwplan-merit-item__txt span {
		text-align: center;
	}
	.mwplan-merit-item__img {
		max-width: 150px;
		width: 100%;
	}
}

.mwplan-subttl {
	color: var(--accent-color);
	font-size: 25px;
	margin-bottom: 40px;
}
.mwplan-areabox {
	margin-bottom: 100px;
}
@media (max-width: 1024px){
	.mwplan-areabox {
		margin-bottom: 75px;
	}
}
@media (max-width: 768px){
	.mwplan-subttl {
		font-size: 22px;
		margin-bottom: 24px;
	}
	.mwplan-areabox {
		margin-bottom: 55px;
	}
}

.mwplan-areattl {
	color: var(--accent-color);
	font-family: 'Open Sans', sans-serif;
	font-size: 56px;
	font-weight: bold;
	letter-spacing: 0.06em;
	line-height: 1;
}
.mwplan-areattl span {
	display: inline-block;
}

@media (max-width: 768px){
	.mwplan-areattl {
		font-size: 44px;
	}
}
@media (max-width: 480px){
	.mwplan-areattl {
		font-size: 36px;
	}
}

.general-button--weekly {
	background-color: #0d80b9;
	color: #fff;
	text-align: center;
	transition: opacity 0.3s;
}
.general-button--weekly:hover {
	color: #fff;
	opacity: .9;
}
.general-button--monthly {
	background-color: var(--accent-color);
	color: #fff;
	text-align: center;
	transition: opacity 0.3s;
}
.general-button--monthly:hover {
	color: #fff;
	opacity: .9;
}

/* 20221117追記：ウィークリー・マンスリー改修 */
.mwplan-br__lt1024{
	display: none;
}
@media screen and (max-width: 1024px){
	.mwplan-br__lt1024{
		display: block;
	}
}

.mwplan-anchor{
	display: flex;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 80px;
}
.mwplan-anchor__item{
	background-color: #055f8c;
	box-sizing: border-box;
	color: #fff;
	display: grid;
	place-items: center;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.375;
	padding: 18px 8px 39px;
	position: relative;
	text-align: center;
	width: min(306px, calc(100% / 3 - 32px / 3));
}
.mwplan-anchor__item::after{
	content: '';
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	display: block;
	margin: auto;
	position: absolute;
	right: 0;
	bottom: 18px;
	left: 0;
	transform: rotate(45deg);
	transition: transform .3s;
	width: 12px;
	height: 12px;
}
.mwplan-anchor__item:hover{
	color: #fff;
}
.mwplan-anchor__item:hover::after{
	transform: rotate(45deg) translate(4px,4px);
}
@media screen and (max-width: 1024px){
	.mwplan-anchor__item{
		font-size: 12px;
	}
}
@media screen and (max-width: 640px){
	.mwplan-anchor{
		flex-wrap: wrap;
		justify-content: center;
		margin-bottom: 56px;
	}
	.mwplan-anchor__item{
		font-size: 10px;
		padding-top: 8px;
		padding-bottom: 31px;
		width: min(148px, calc(50% - 8px));
	}
	.mwplan-anchor__item::after{
		bottom: 14px;
	}
}


.fixed-fee-title{
	color: #055f8c;
	font-size: 34px;
	font-weight: 700;
	margin-top: 8px;
	line-height: 1.5;
	text-align: center;
}
.fixed-fee-heading{
	color: #000;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 40px;
	text-align: center;
}
.fixed-fee-intro{
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 64px auto 0;
	width: calc(100% - 60px);
}
.fixed-fee-intro__text{
	font-size: 16px;
	font-weight: 500;
	line-height: 2;
	width: min(750px, 100%);
}
.fixed-fee-hotels{
	background-color: #fff;
	box-sizing: border-box;
	margin: 64px auto 0;
	padding: 84px 32px;
	width: min(1360px, calc(100% - 60px));
}
.-fixed-fee.hotels-list{
	justify-content: center;
	margin: 58px auto 0;
	width: min(1254px, 100%);
}
.-fixed-fee .hotels-list__title{
	color: #10181F;
	font-size: 15px;
	margin-top: 20px;
}
.-fixed-fee .hotels-list__contact{
	margin-top: 8px;
}
.-fixed-fee .hotels-list__contact dt{
	color: #19181F;
}
.-fixed-fee .general-button{
	font-size: 13px;
	padding-top: 18px;
	padding-bottom: 19px;
}
@media screen and (max-width: 1024px){
	.fixed-fee-title{
		font-size: 26px;
	}
	.fixed-fee-intro{
		margin-top: 48px;
	}
	.fixed-fee-intro__text{
		font-size: 14px;
	}
	.fixed-fee-heading{
		font-size: 17px;
		margin-bottom: 16px;
	}
	.fixed-fee-hotels{
		padding: 48px 15px;
	}
	.-fixed-fee.hotels-list{
		margin-top: 40px;
	}
}
@media screen and (max-width: 768px){
	.fixed-fee-title{
		font-size: 22px;
	}
	.fixed-fee-intro{
		margin-top: 32px;
	}
	.fixed-fee-hotels{
		margin-top: 40px;
		padding-top: 24px;
		padding-bottom: 24px;
	}
	.fixed-fee-heading{
		font-size: 15px;
	}
	.-fixed-fee.hotels-list{
		margin-top: 20px;
	}
	.-fixed-fee .hotels-list__title{
		color: #055f8c;
		font-size: 13px;
		margin-top: 0;
	}
	.-fixed-fee .hotels-list__contact{
		margin-top: 0;
	}
	.-fixed-fee .hotels-list__contact dt{
		color: #055f8c;
	}
	.-fixed-fee .general-button{
		font-size: 12px;
		padding-top: 7px;
		padding-bottom: 7px;
	}
}

.mwplan-more{
	background: url("../../mw_plan/img/bg-more.jpg") no-repeat center/cover;
}
.mwplan-more__title{
	font-size: 40px;
	font-weight: 700;
	margin-top: 72px;
	text-align: center;
}
.mwplan-more__title span{
	color: #055f8c;
	font-weight: bold;
}
.mwplan-more__lead{
	font-size: 16px;
	font-weight: 500;
	line-height: 2;
	margin-top: 32px;
	text-align: center;
}
.mwplan-more__reserve{
	background-color: #10181F;
	color: #fff;
	display: grid;
	font-size: 26px;
	margin: 100px auto 20px;
	padding: 36px 0;
	text-align: center;
	transition: opacity .3s;
	width: min(580px, 100%);
}
.mwplan-more__reserve:hover{
	color: #fff;
	opacity: .8;
}
@media screen and (max-width: 1024px){
	.mwplan-more__title{
		font-size: 32px;
		margin-top: 54px;
	}
	.mwplan-more__lead{
		font-size: 14px;
		margin-top: 24px;
	}
	.mwplan-more__reserve{
		font-size: 20px;
		margin-top: 75px;
		padding-top: 27px;
		padding-bottom: 27px;
	}
}
@media screen and (max-width: 640px){
	.mwplan-more__title{
		font-size: 24px;
		margin-top: 20px;
	}
	.mwplan-more__lead{
		margin-top: 20px;
	}
	.mwplan-more__reserve{
		font-size: 16px;
		margin-top: 32px;
		padding-top: 18px;
		padding-bottom: 18px;
	}
}

.mwplan-following{
	display: flex;
	align-items: center;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 10;
}
.mwplan-following__item{
	color: #fff;
	display: grid;
	place-items: center;
	font-size: 16px;
	font-weight: 500;
	padding: 20px 16px;
	text-align: center;
	transition: opacity .3s;
	width: 231px;
}
.mwplan-following__item:hover{
	color: #fff;
	opacity: .9;
}
.mwplan-following__item:nth-child(1){
	background-color: #055f8c;
}
.mwplan-following__item:nth-child(2){
	background-color: #87714A;
}
.mwplan-following__item:nth-child(3){
	background-color: #604B26;
}
.mwplan-following__item.-wide{
	width: 281px;
}
@media screen and (max-width: 1024px){
	.mwplan-following__item{
		font-size: 12px;
		height: 80px;
		padding: 0;
		width: 184px;
	}
	.mwplan-following__item.-wide{
		width: 184px;
	}
}
@media screen and (max-width: 768px){
	.mwplan-following{
		display: grid;
		grid-template-columns: repeat(3, auto);
		width: 100%;
	}
	.mwplan-following__item{
		font-size: 10px;
		line-height: 1.4;
		height: 54px;
		width: 100%;
	}
	.mwplan-following__item.-wide{
		width: 100%;
	}
}
/* 20221117追記：ここまで */



/* 20211025追記：お問い合わせフォーム改修 */
.inquiry-form-hotels_v2 {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(156px, 1fr));
}
.inquiry-form-hotels_v2 li {
	box-sizing: border-box;
	margin-bottom: 6px;
	padding-right: 6px;
}
.inquiry-form-hotels_v2 input {
	vertical-align: middle;
}
@media (max-width: 480px) {
	.inquiry-form-hotels_v2 {
		grid-template-columns: auto auto;
	}
}
/* 20211025追記：ここまで */



/* ==========================================================================
		パンフレット一覧
   ========================================================================== */

.brochure-list-areabox {
	margin-bottom: 100px;
}

.brochure-list-areaname {
	font-size: 16px;
	margin-bottom: 32px;
}
.brochure-list-areaname span {
	border-bottom: 1px solid #4C4948;
	padding-right: 24px;
	padding-bottom: 8px;
}

.brochure-list {
	display: flex;
	margin-bottom: 88px;
	overflow-x: auto;
	padding-bottom: 8px;
	width: 100%;
}
.brochure-list-item {
	box-sizing: border-box;
	display: flex;
	align-items: center;
	flex-direction: column;
	min-width: 200px;
	padding-right: 8px;
	padding-left: 8px;
	width: 200px;
}
.brochure-list-item__pic {
	margin-bottom: 8px;
	min-height: 0%;
	width: 122px;
}
.brochure-list-item__pic img {
	width: 100%;
	height: auto;
	-webkit-backface-visibility: hidden;
}
.brochure-list-item__name {
	display: flex;
	align-items: center;
	flex-grow: 1;
	font-size: 13px;
	margin-bottom: 8px;
	text-align: center;
}
.brochure-list-item__btn {
	width: 160px;
}