@charset "UTF-8";
/*---------------------------------
  basic
---------------------------------*/
html {
	font-size: 62.5%;
}

body {
	color: #333;
  font-family: 游ゴシック, YuGothic, "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Verdana, sans-serif;
  font-size: 1.6em;
  font-weight: 500;
	line-height: 1.8em;
	margin: 0;
	padding: 0;
}

h1,h2,h3,h4,h5 {
	margin: 0;
	padding: 0;
}

img {
	width: 100%;
	border: 0;
	vertical-align: bottom;
}

p,ul,li,dl,dt,dd,th,td {
	margin: 0;
	padding: 0;
}

ol,ul,li {
	list-style: none;
}

i {
	font-size: 110% !important;
	vertical-align: middle;
	margin: 5px;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

::selection {
	background: #dfe1e5;
}

::-moz-selection {
	background: #dfe1e5;
}

@media screen and (max-width: 896px) {	
	body {
		font-size: 1.4em;
		min-width: 300px;
	}
}

/*---------------------------------
  ScrollTrigger
---------------------------------*/
.invisible {
  transition: all 1s ease;
  opacity: 0.0;
}

.visible {
  transition: all 1s ease;
  opacity: 1.0;
}

/*---------------------------------
  link
---------------------------------*/
a:link, a:visited, a:hover, a:active {
	color: #333;
	text-decoration: none;
}

/* icon forward */
.hvr-icon-forward {
	display: inline-block;
	vertical-align: middle;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
	position: relative;
	padding-right: 0;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.1s;
}

.hvr-icon-forward:before {
	content: "\f105";
	position: absolute;
	right: 1em;
	padding: 0 1px;
	font-family: 'Font Awesome 5 Free';
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}

.hvr-icon-forward:hover:before,
.hvr-icon-forward:focus:before,
.hvr-icon-forward:active:before {
	-webkit-transform: translateX(4px);
	transform: translateX(4px);
}

.hvr-icon-forward:hover {
	opacity: 0.8;
	transition: 0.3s;
}

/* icon back */
.hvr-icon-back {
	display: inline-block;
	vertical-align: middle;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
	position: relative;
	padding-left: 0;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
}

.hvr-icon-back:before {
	content: "\f104";
	position: absolute;
	left: 1em;
	padding: 0 1px;
	font-family: 'Font Awesome 5 Free';
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-transition-duration: 0.1s;
	transition-duration: 0.3s;
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}

.hvr-icon-back:hover:before,
.hvr-icon-back:focus:before,
.hvr-icon-back:active:before {
	-webkit-transform: translateX(-4px);
	transform: translateX(-4px);
}

/* zoom img */
.zoom_img img {
	width: 100%;
	display: block;
	transition: 0.3s;
}

.zoom_img img:hover {
	transform: scale(1.1);
	transition: 0.3s;
}

/*---------------------------------
  hidden
---------------------------------*/
@media screen and (min-width: 896px) {
	.pc_hidden {
		display: none;
	}
}

@media screen and (max-width: 896px) {
	.tab_hidden {
		display: none;
	}
}

@media screen and (max-width: 480px) {
	.sp_hidden {
		display: none;
	}
}

/*---------------------------------
  pan
---------------------------------*/
.pan {
	background: #f2f2f2;
	margin-bottom: 50px;
	padding: 3px 0;
}

.pan ul {
	display: flex;
	flex-wrap: wrap;
}

.pan li {
	font-size: 1.2rem;
	display: flex;
}

.pan li:first-child:before {
  content: "\e88a";
	font-family: 'Material Icons';
	font-size: 1.8rem;
	margin-right: 5px;
}

.pan li:nth-child(n+2):before {
  content: "\e5cc";
	font-family: 'Material Icons';
	font-size: 1.8rem;
	padding: 0 10px;
}

.pan li a:hover {
	text-decoration: underline;
	transition: 0.3s
}

/*---------------------------------
  common
---------------------------------*/
.wrapper {
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 10px;
}

h2 {
  width: 500px;
  font-size: 3.2rem;
  text-align: center;
  letter-spacing: 0.1em;
  margin: 0 auto;
	position: relative;
  padding: 3em 0;
}

h2 span {
  color: #009fe8;
  font-size: 1.4rem;
  margin-top: 1em;
  display: block;
}

h2:before,
h2:after {
	width: 80px;
	height: 3px;
	content: "";
	position: absolute;
	top: 50%;
	background: #009fe8;
	display: inline-block;
	transform: rotate(-60deg);
}

h2:before {
	left: 0;
}

h2:after {
	right: 0;
}

.page_title {
  margin-bottom: 4em;
}

.page_title div {
  width: 100%;
  height: 100%;
  background-color: rgba(0,124,181,0.5);
}

.page_title h2,
.page_title h2 span{
  color: #fff;
}

.page_title h2:before,
.page_title h2:after {
  background: #fff;
}

.contents_wrap h3 {
  font-size: 2.8rem;
	position: relative;
  margin: 3em 0 2em 0;
  padding-bottom: 0.5em;
	overflow: hidden;
}

.contents_wrap h3::before,
.contents_wrap h3::after{
	content: "";
	position: absolute;
	bottom: 0;
}

.contents_wrap h3:before{
	border-bottom: 3px solid #007cb5;
	width: 100%;
}

.contents_wrap h3:after{
	border-bottom: 3px solid #e3e7ef;
	width: 100%;
	margin-left: 20px;
}

@media print, screen and (max-width: 896px) {
  h2 {
    width: 100%;
    font-size: 2.4rem;
  }
  
  h2 span {
    font-size: 1.2rem;
    margin-top: 0.5em;
  }
  
  .page_title {
    margin-bottom: 3em;
  }
  
  .contents_wrap h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5em;
  }
}

@media print, screen and (max-width: 480px) {
  h2 {
    font-size: 1.8rem;
  }
  
  .contents_wrap h3 {
    font-size: 1.6rem;
  }
}

/*---------------------------------
  header
---------------------------------*/
header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 1em 2em;
}

header h1 {
  width: 260px;
}

header nav {
  display: flex;
  flex-wrap: wrap;
}

header nav li {
  font-weight: 600;
  margin: 0 0.8em;
}

header nav li:first-child a:hover {
  color: #007cb5;
  transition: 0.3s;
}

header nav li:nth-child(n+2):hover a {
  color: #009fe8;
  transition: 0.3s;
}

header nav li:first-child a {
  color: #009fe8;
}

@media print, screen and (max-width: 960px) {
  header nav {
    display: none;
  }
}

/*---------------------------------
  burger menu
---------------------------------*/
.burger_area {
	position: absolute;
	top: 10px;
	right: 0;
}

.btn_burger {
	display: flex;
	justify-content: flex-end;
}

.btn_burger a {
  z-index: 20;
  position: relative;
  width: 30px;
  height: 26px;
	display: block;
  cursor: pointer;
	margin: 15px;
}

.btn_burger a,
.btn_burger a span {
	display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
}

.btn_burger a span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background: #007cb5;
  border-radius: 4px;
}

.btn_burger a span:nth-of-type(1) {
  top: 0;
}

.btn_burger a span:nth-of-type(2) {
  top: 11px;
}

.btn_burger a span:nth-of-type(3) {
  bottom: 0;
}

.btn_burger a.active span:nth-of-type(1) {
  background: #fff;
  -webkit-transform: translateY(11px) rotate(-45deg);
  transform: translateY(11px) rotate(-45deg);
}

.btn_burger a.active span:nth-of-type(2) {
  opacity: 0;
}

.btn_burger a.active span:nth-of-type(3) {
  background: #fff;
  -webkit-transform: translateY(-11px) rotate(45deg);
  transform: translateY(-11px) rotate(45deg);
}

.burger {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  display: none;
  z-index: 10;
  background: rgba(51,51,51,0.9);
}

.burger.open {
	display: block;
}

.burger.close {
	display: none;
}

.burger_menu {
	height: 100%;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
}

.burger_menu li {
	font-weight: 600;
  display: block;
  margin: 2em;
}
	
.burger_menu li:before {
	color: #fff;
	content: "\f105";
	font-family: "Font Awesome 5 Free";
	vertical-align: middle;
	margin-right: 10px;
}

.burger_menu li a {
  color: #fff !important;
}

@media print, screen and (min-width: 961px)  {
	.burger_area {
		display: none;
	}
}

/*---------------------------------
  slide
---------------------------------*/
.slide {
	overflow: hidden;
}

.slide_inner {
	max-width: 1100px;
	margin: 0 auto;
}

.slide img {
	width: 100%;
	height: 500px;
	object-fit: cover;
}

.slide .slick-list {
	overflow: visible !important;
}

.slide .slick-slide {
	opacity: 0.5;
	transition: 0.5s;
}

.slide .slick-slide:focus {
	outline: none;
}

.slide .slick-now {
	opacity: 1;
}

.slick-arrow {
	z-index: 5;
}

.slick-prev:before,
.slick-next:before {
	font-family: "Material Icons" !important;
	font-size: 50px !important;
	opacity: 1 !important;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  color: #333;
}

.slick-prev {
	left: 0 !important;
}

.slick-prev:before {
  content: "\e314" !important;
}

.slick-next {
  right: 0 !important;
}

.slick-next:before {
  content: "\e315" !important;
}

.slick-dots li button:before {
  content: '\e3fa' !important;
  font-family: "Material Icons" !important;
  font-size: 12px !important;
  line-height: 20px;
  color: #dfe1e5;
  opacity: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li button:hover:before {
  color: #999;
  opacity: 0.8;
}

.slick-dots li.slick-active button:before {
  opacity: 1;
  color: #333;
}

@media only screen and (max-width: 896px) {
	.slide_inner {
		width: auto;
	}
	
	.slide_inner img {
		width: 100%;
		height: auto;
	}
}

/*---------------------------------
  hero
---------------------------------*/
.hero_wrap {
  background: #007cb5;
  position: relative;
}

.hero_wrap ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  opacity: 0.7;
}

.hero_wrap ul li {
  width: 25%;
  height: 200px
}

.hero_wrap ul li img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.hero_wrap p {
  width: 100%;
  color: #fff;
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.8em;
  text-shadow:  3px 3px 10px #007cb5, -3px 3px 10px #007cb5, 3px -3px 10px #007cb5, 3px -3px 10px #007cb5;
  text-align: center;
  letter-spacing: 0.2em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media print, screen and (max-width: 896px) {
  .hero_wrap ul li {
    height: 150px
  }
  
  .hero_wrap ul li img {
    height: 150px;
  }
  
  .hero_wrap p span {
    display: block;
  }
}

@media print, screen and (max-width: 480px) {
  .hero_wrap ul li {
    height: 100px
  }
  
  .hero_wrap ul li img {
    height: 100px;
  }
  
  .hero_wrap p {
    font-size: 2.4rem;
  }
}

/*---------------------------------
  お知らせ
---------------------------------*/
.t_info {
  display: flex;
  flex-wrap: wrap;
  border: solid 3px #f00;
  margin: 4em 0;
}

.t_info dt {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: auto;
  color: #fff;
  font-weight: 600;
  font-size: 2.1rem;
  text-align: center;
  background: #f00;
  padding: 5px;
}

.t_info dd {
  width: calc(100% - 150px);
  font-weight: 600;
  padding: 2em 3em;
}

@media print, screen and (max-width: 896px) {
  .t_info {
    flex-direction: column;
    margin: 3em 0;
  }
  
  .t_info dt,
  .t_info dd {
    width: 100%;
  }
  
  .t_info dt {
    font-size: 1.6rem;
  }
  
  .t_info dd {
    padding: 1.5em;
  }
}

/*---------------------------------
  Share Works Gifuについて
---------------------------------*/
.t_about_wrap {
  text-align: center;
  background: url("images/top/bg_about.png");
  padding: 4em 10px;
}

.t_about_wrap h3 {
  font-size: 2.8rem;
  border-bottom: solid 3px #009fe8;
  margin-bottom: 2em;
  padding-bottom: 0.5em;
  display: inline-block;
}

.t_about_wrap h3 span {
  color: #009fe8;
  font-size: 1.4rem;
  margin-bottom: 1em;
  display: block;
}

@media print, screen and (max-width: 896px) {
  .t_about_wrap {
    padding: 3em 10px;
  }
  
  .t_about_wrap h3 {
    font-size: 2.4rem;
    margin-bottom: 1.5em;
  }
  
  .t_about_wrap p {
    text-align: left;
  }
}

@media print, screen and (max-width: 480px) {
  .t_about_wrap h3 {
    font-size: 1.8rem;
  }
  
  .t_about_wrap h3 span {
    font-size: 1.2rem;
    margin-bottom: 0.5em;
  }
}

/*---------------------------------
  フロアマップ
---------------------------------*/
.floormap {
  max-width: 1000px;
  margin: 0 auto;
  display: block;
}

/*---------------------------------
  サービス・料金
---------------------------------*/
.t_service_wrap .wrapper {
  position: relative;
}

.t_service_wrap .wrapper:after {
  content: "";
  clear: both;
  display: block;
}

.t_service_content {
  max-width: 500px;
  background: rgba(232,248,255,0.97);
  padding: 3em;
  z-index: 10;
  position: relative;
}

.t_service_content h3 {
  font-size: 2.8rem;
  border-bottom: solid 3px #009fe8;
  margin-bottom: 1em;
  padding-bottom: 0.5em;
  display: inline-block;
}

.t_service_content h3 span {
  color: #009fe8;
  font-size: 1.4rem;
  margin-bottom: 0.5em;
  display: block;
}

.t_service_content ul {
  margin-top: 2em;
}

.t_service_content ul li:nth-child(n+2) {
  margin-top: 1em;
}

.t_service_content a {
  width: 300px;
  height: 50px;
  line-height: 50px;
  color: #fff;
  font-weight: 600;
  text-align: center;
  border-radius: 3px;
  background: #009fe8;
  display: block;
  margin: 0 auto;
}

.t_service_content a:hover {
  background: #007cb5;
  transition: 0.3s;
}

.t_service_content_bg img {
  float: right;
  width: 110%;
  min-height: 550px;
  object-fit: cover;
}

.privateroom .wrapper,
.freespace .wrapper,
.conferenceroom .wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.freespace,
.conferenceroom {
  margin-top: 5em;
}

.freespace .wrapper .t_service_content_bg img {
  float: left;
}

.btn_more {
  width: 300px;
  height: 50px;
  line-height: 50px;
  color: #fff !important;
  text-align: center;
  font-weight: 600;
  border-radius: 3px;
  background: #007cb5;
  margin: 4em auto 0 auto;
  display: block;
}

.btn_more:hover {
  opacity: 0.8;
  transition: 0.3s;
}

@media print, screen and (max-width: 896px) {
  .t_service_content {
    margin-top: -3em;
  }
  
  .t_service_content h3 {
    font-size: 2.1rem;
    text-align: center;
    display: block;
  }
  
  .t_service_content h3 span {
    font-size: 1.2rem;
  }
  
  .t_service_content_bg {
    width: 100%;
    height: 300px;
    overflow: hidden;
  }
  
  .t_service_content_bg img {
    width: 100%;
    min-height: inherit;
    height: 300px;
    object-fit: cover;
  }

  .privateroom .wrapper,
  .conferenceroom .wrapper {
    flex-direction: column-reverse;
  }
  
  .freespace .wrapper {
    flex-direction: column;
  }
  
  .freespace,
  .conferenceroom {
    margin-top: 3em;
  }
}

@media print, screen and (max-width: 896px) {
  .t_service_content {
    width: 100%;
    padding: 2em;
  }
  
  .t_service_content a {
    width: 90%;
  }
  
  .btn_more {
    width: 90%;
    margin: 2em auto 0 auto;
  }
}

/*---------------------------------
  よくある質問
---------------------------------*/
.t_faq_wrap {
  text-align: center;
  background: url(images/top/bg_faq.jpg) no-repeat;
  background-size: cover;
  background-attachment: fixed;
  margin-top: 4em;
  padding: 4em 10px;
}

.t_faq_wrap .wrapper {
  max-width: 700px;
  background: rgba(255,255,255,0.9);
  padding: 3em;
}

.t_faq_wrap h2 {
  padding: 0 0 1em 0;
}

.t_faq_wrap h2:before,
.t_faq_wrap h2:after {
	top: 20px;
}

.t_faq_wrap .btn_more {
  margin-top: 3em;
}

@media print, screen and (max-width: 896px) {
  .t_faq_wrap {
    background-attachment: inherit;
    padding: 4em;
  }
}

@media print, screen and (max-width: 480px) {
  .t_faq_wrap {
    padding: 2em;
  }
  
  .t_faq_wrap .wrapper {
    padding: 2em;
  }
  
  .t_faq_wrap p {
    text-align: left;
  }
  
  .t_faq_wrap p br {
    display: none;
  }
  
  .t_faq_wrap .btn_more {
    width: 90%;
    margin-top: 2em;
  }
}

/*---------------------------------
  アクセス
---------------------------------*/
.access_wrap p {
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2em;
}

.access_wrap p span {
  margin-right: 0.5em;
}

.access_wrap iframe {
  width: 100%;
}

@media print, screen and (max-width: 896px) {
  .access_wrap p span:first-child {
    display: block;
    margin-right: 0;
  }
}

@media print, screen and (max-width: 480px) {
  .access_wrap p {
    font-size: 1.4rem;
  }
  
  .access_wrap p span {
    display: block;
    margin-right: 0;
  }
}

/*---------------------------------
  サービス・料金
---------------------------------*/
.service_wrap .page_title {
  background-image: url("images/service/bg_title.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.price {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  border-radius: 3px;
  background: #f43e43;
  display: inline-block;
  margin-bottom: 1em;
  padding: 0.5em 1em;
}

.service_content ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1em;
}

.service_content li {
  width: 30%;
  margin-top: 1em;
  margin-right: 5%;
  overflow: hidden;
}

.service_content li:nth-child(3n) {
  margin-right: 0;
}

.service_content li img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

@media print, screen and (max-width: 896px) {
  .service_content h3+p {
    font-size: 1.4rem;
  }
  
  .service_content ul {
    justify-content: space-between;
  }
  
  .service_content li {
    width: 48%;
    margin-right: 0;
  }
  
  .service_content li img {
    height: 200px;
  }
}

@media print, screen and (max-width: 480px) {
  .service_content li img {
    height: 150px;
  }
}

/* 料金 */
.price_wrap dl {
  display: flex;
  flex-wrap: wrap;
}

.price_wrap dl dt,
.price_wrap dl dd {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: solid 1px #dfe1e5;
  padding: 1em;
}

.price_wrap dl dt {
  width: 30%;
  color: #009fe8;
  font-weight: 600;
}

.price_wrap dl dt span {
  width: 100%;
  font-size: 1.4rem;
  display: block;
}

.price_wrap dl dd:last-child {
  color: #007cb5;
  font-weight: 600;
}

.price_wrap dl dd:nth-child(2) {
  width: 50%;
  text-align: center;
}

.price_wrap dl dd:last-child {
  width: 15%;
}

.price_wrap dl dd:last-child {
  text-align: right;
}

@media print, screen and (max-width: 480px) {
  .price_wrap dl dt {
    width: 100%;
    text-align: center;
    background: #f1f3f5;
    padding: 0.5em 1em;
  }
  
  .price_wrap dl dd:nth-child(2) {
    width: 55%;
    text-align: left;
  }
  
  .price_wrap dl dd:last-child {
    width: 45%;
  }
}

/*---------------------------------
  ご利用について
---------------------------------*/
.guidance_wrap .page_title {
  background-image: url("images/guidance/bg_title.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.guidance_wrap h4 {
  font-size: 1.6rem;
  margin: 2em 0 0.5em 0;
}

.guidance_wrap p+ul {
  margin-top: 1em;
}

.guidance_wrap li {
  list-style: decimal inside;
  text-indent: -1em;
  padding-left: 1em;
}

.guidance_wrap li ul li {
  list-style: none;
  text-indent: -1.5em;
  padding-left: 1.5em;
}

.guidance_last {
  text-align: right;
  margin-top: 3em;
}

@media print, screen and (max-width: 896px) {
  .guidance_wrap h4 {
    font-size: 1.4rem;
  }
}

/*---------------------------------
  お問い合わせ
---------------------------------*/
.contact_wrap .page_title {
  background-image: url("images/contact/bg_title.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

/*
.mailform {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	border-bottom: solid 1px #dfe1e5;
	margin-bottom: 2.5em;
}

.mailform dt,
.mailform dd {
	border-top: 1px solid #dfe1e5;
	padding: 15px 20px;
}

.mailform dt {
	width: 30%;
	font-weight: 600;
	display: flex;
	align-items: center;
}

.mailform dd {
	width: 70%;
}

.required,
.optional {
	width: 35px;
	height: 25px;
	line-height: 25px;
	color: #fff;
	font-size: 0.7em;
	font-weight: 600;
	text-align: center;
	border-radius: 3px;
	margin-right: 10px;
}

.required {
	background: #f43e43;
}

.optional {
	background: #dfe1e5;
}

.contact_category {
	display: flex;
	flex-wrap: wrap;
}

.contact_category label {
	width: 50%;
}

.contact_category label:nth-child(n+3) {
	margin-top: 15px;
}

.privacy > h5 {
	font-size: 1.2rem;
	margin: 15px 0 5px 0;
}

.privacy p,
.privacy li  {
	font-size: 1.2rem;
	line-height: 1.5em;
}

li.privacy > ul {
	margin-top: 10px;
}

li.privacy ul li {
  padding-left: 1em;
  text-indent: -1em;
	list-style: decimal inside;
}

.button:after {
  content: "\f055";
  font-family: 'Font Awesome 5 Free';
  font-weight: 600;
  font-size: 1.8rem;
  position: absolute;
  right: 15px;
}

.button.active:after {
  content: "\f056";
	font-family: 'Font Awesome 5 Free';
	font-weight: 600;
}

.mailform+div {
	display: flex;
	justify-content: space-around;
}

@media screen and (max-width: 896px) {
  .mailform {
    flex-direction: column;
  }
  
	.mailform dt {
		padding: 8px 15px;
	}
	
	.mailform dd {
		padding: 20px 0;
	}
	
	.mailform dt,
	.mailform dd {
		width: 100%;
	}
	
	.required,
	.optional {
		height: 20px;
		line-height: 20px;
	}
}
*/

/*---------------------------------
  form
---------------------------------*/
button,
input,
select,
textarea {
	font-size: 100%;
  font-family: 游ゴシック, YuGothic, "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Verdana, sans-serif;
}

input,
select,
textarea {
	border: solid 1px #dfe1e5;
	border-radius: 5px;
	-webkit-appearance: none;
	box-sizing: border-box;
}

input,
select {
	padding: 5px 10px;
}

textarea {
	max-width: 100%;
	min-width: 70%;
	min-height: 150px;
	padding: 10px;
}

.input_wide,
.mf {
	width: 70% !important;
}

.input_middle {
	width: 30% !important;
}

.postcord,
input[type="submit"],
input[type="reset"]  {
	color: #fff;
	font-weight: 600;
	cursor: pointer;
	border: none;
}

input[type="submit"],
input[type="reset"]  {
	width: 30%;
	height: 50px;
	line-height: 50px;
	text-align: center;
	padding: 0;
}

input[type="submit"] {
	background: #009fe8;
}

.postcord,
input[type="reset"] {
	background: #dfe1e5;
}

.postcord:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
.button:hover  {
	opacity: 0.8;
	transition: 0.3s;
}

::-webkit-input-placeholder {
  color: #ddd;
  font-size: 1.4rem;
}

/* radio・checkbox共通 */
input[type="checkbox"],
input[type="radio"] {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
}

.label_list label {
	position: relative;
	display: block;
	word-break: break-all;
}

.label_list label input[type="checkbox"] + span,
.label_list label input[type="radio"] + span {
	position: relative;
	padding-left: 35px;
}

label {
	cursor: pointer;
}

/* checkbox */
.checkbox {
	margin-top: 5px;
}

.checkbox .label_list:nth-of-type(1) label input[type="checkbox"] + span::before {
	border-color: #dfe1e5;
}

.checkbox .label_list:nth-of-type(1) label input[type="checkbox"]:checked + span::before {
	border-color: #333;
}

.checkbox label input[type="checkbox"] {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}

.checkbox label input[type="checkbox"] + span::before, .checkbox label input[type="checkbox"] + span::after {
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
	content: '';
	box-sizing: border-box;
}

.checkbox label input[type="checkbox"] + span::before {
	z-index: 0;
	background-color: transparent;
	width: 25px;
	height: 25px;
	border: 3px #dfe1e5 solid;
	border-radius: 5px;
}

.checkbox label input[type="checkbox"] + span::after {
	z-index: 1;
	margin: 2px 8px;
	width: 10px;
	height: 15px;
}

.checkbox label input[type="checkbox"] + span::after {
	border: 4px solid #dfe1e5;
	border-width: 0 4px 4px 0;
	-webkit-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
		    transform: rotate(45deg);
}

.checkbox label input[type="checkbox"]:checked + span::after {
	border: 4px solid #f43e43;
	border-width: 0 4px 4px 0;
	-webkit-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
		    transform: rotate(45deg);
}

/* radio */
.radio .label_list:nth-of-type(1) label input[type="radio"] + span::before {
	border-color: #dfe1e5;
}

.radio label span,
.checkbox label span {
	display: inline-block;
}

.radio label input[type="radio"] {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}

.radio label input[type="radio"] + span::before {
	position: absolute;
	display: inline-block;
	content: '';
	box-sizing: border-box;
	border-radius: 25px;
}

.radio label input[type="radio"] + span::before {
	width: 25px;
	height: 25px;
	z-index: 0;
	top: 0;
	left: 0;
	background-color: transparent;
	border: solid 2px #dfe1e5;
}

.radio label input[type="radio"] + span::before {
	border-width: 8px;
	background: #fff;
	border-color: #dfe1e5 !important;
}

.radio label input[type="radio"]:checked + span::before {
	border-width: 8px;
	border-color: #f43e43 !important;
}

/* select */
.selectbox {
  width: 70%;
  position: relative;
}

.selectbox select {
  width: 100%;
}

.selectbox::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  right: 20px;
  top: 40%;
  border-bottom: #333 2px solid;
  border-right: #333 2px solid;
  transform: rotate(45deg)translateY(-30%);
}

/* アコーディオン */
.accordion {
  width: 100%;
  margin-bottom: 20px !important;
}

.button {
  width: 100%;
  color: #007cb5;
	font-weight: 600;
	border: solid 1px #007cb5;
	border-radius: 3px;
  cursor: pointer;
  position: relative;
  padding: 10px 15px;
}

.accordion_contents {
	border-left: solid 1px #dfe1e5;
	border-right: solid 1px #dfe1e5;
	border-bottom: solid 1px #dfe1e5;
	background: #fff;
	padding: 15px;
}

@media screen and (max-width: 896px) {
	input,
  select {
		font-size: 16px;
		padding: 10px;
	}
	
  .selectbox,
	.input_wide,
	.mf {
		width: 100% !important;
	}
	
	.input_middle {
		width: 50% !important;
	}
	
	textarea {
	  min-width: 100%;
		font-size: 16px;
	}
	
	input[type="submit"],
	input[type="reset"]  {
		width: 48%;
		font-size: 1.4rem;
	}
}

/*---------------------------------
  thanks
---------------------------------*/
.thanks_wrap .page_title {
  background-image: url("images/contact/bg_title.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.thanks_wrap p {
	padding: 10px 0;
}

/*
.thanks_wrap p:nth-last-child(2)	{
	font-size: 2.4rem;
	font-weight: 600;
}

.thanks_wrap p:nth-last-child(2):before {
  content: "\f095";
	font-family: 'Font Awesome 5 Free';
  transform: scale(-1, 1);
  display: inline-block;
	vertical-align: middle;
	margin-right: 5px;
}
*/

/*---------------------------------
  footer
---------------------------------*/
footer {
  font-size: 1.4rem;
  line-height: 1.8em;
  font-weight: 600;
  background: #f1f3f5;
  margin-top: 4em;
  padding: 4em 10px;
}

footer .wrapper div {
  text-align: center;
}

footer img {
  max-width: 250px;
  margin-bottom: 2em;
}

footer ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-top: 3em;
}

footer ul li {
  margin-right: 2em;
}

footer ul li a:hover {
  text-decoration: underline;
}

footer ul li:before {
	content: "\f138";
	font-family: "Font Awesome 5 Free";
  color: #009fe8;
  padding-right: 0.3em;
}

@media print, screen and (max-width: 896px) {
  footer {
    font-size: 1.2rem;
    margin-top: 3em;
    padding: 3em 10px;
  }
  
  footer ul {
    justify-content: flex-start;
    margin-top: 2em;
  }
  
  footer ul li {
    width: 33%;
    margin-right: 0;
  }
}

@media print, screen and (max-width: 896px) {
  footer ul li {
    width: 50%;
  }
}

address {
	color: #fff;
	font-size: 0.7em;
	font-style: normal;
	text-align: center;
	background: #007cb5;
	padding: 1em 0;
}

/*---------------------------------
  pagetop
---------------------------------*/
.pagetop {
	width: 60px;
	height: 60px;
	line-height: 50px;
	border-radius: 50%;
	color: #fff !important;
	font-size: 3.6rem;
	text-align: center;
	background: rgba(51,51,51,0.9);
	display: block;
	position: fixed;
	right: 40px;
	bottom: 40px;
	z-index: 1000;
}

.pagetop:hover {
	opacity: 0.8;
	transition: 0.3s;
}

@media screen and (max-width: 896px) {
	.pagetop {
		width: 50px;
		height: 50px;
		line-height: 40px;
		font-size: 2.8rem;
		right: 10px;
		bottom: 10px;
	}
}

/*---------------------------------
  空室一覧表
---------------------------------*/
.vacant_thumb_content {
  border: solid 1px #e3e7ef;
  padding: 2em;
}

.vacant_thumb_content img {
  max-width: 700px;
  display: block;
  margin: 0 auto;
}

.vacant_content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.vacant_content table,
.vacant_content dl {
  width: 50%;
}

.vacant_content table tr th,
.vacant_content table tr td {
  text-align: center;
  border: solid 1px #e3e7ef;
  padding: 1em;
}

.vacant_content table tr th {
  background: #f1f3f5;
}

.vacant_content dl {
  border: solid 1px #e3e7ef;
  border-left: none;
}

.vacant_content dl dt {
  font-weight: 600;
  text-align: center;
  background: #f1f3f5;
  border-bottom: solid 1px #e3e7ef;
  padding: 1em;
}

.vacant_content dl dd {
  padding: 1em;
}

.occupied {
  color: #fd475d;
  font-weight: 600;
}

.vacant_wrap .hvr-icon-forward {
  width: 300px;
  height: 50px;
  line-height: 50px;
  color: #fff;
  font-weight: 600;
  text-align: center;
  border-radius: 3px;
  background: #009fe8;
  display: block;
  margin: 5em  auto 0 auto;
}

@media print, screen and (max-width: 896px) {
  .vacant_content {
    flex-direction: column;
  }
  
  .vacant_content table,
  .vacant_content dl {
    width: 100%;
  }
  
  .vacant_content dl {
    border-left: solid 1px #e3e7ef;
  }
}
