@charset "utf-8";
/*----------------------------
このCSSファイルに、スタイル指定を記述していきます。
----------------------------*/

/* 全体のスタイル調整 */
* {
  box-sizing: border-box;
  scroll-behavior: smooth;/* ページ内リンクの移動をスムーズにする */
}

/* bodyの初期スタイル調整 */
body {
  font-size: 16px;
  line-height: 1.8;
  font-family: 'Noto Sans JP', 'Open Sans', sans-serif;
  font-weight: 400;
  color: #333;
  background-color: #fff;
}

/* テキスト関連のスタイル調整 */
h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.5;
  letter-spacing: 0.2em;
  text-align: center;
}

h3 {
  color: #666;
  font-size: 14px;
  margin-bottom: 20px;
}

p {
  margin-top: 0;
  margin-bottom: 1.5em;
  text-align: justify;
}

address {
  font-style: normal;
}

/* リンク要素のスタイル調整 */
a {
  color: #efefef;
  text-decoration: none;
}

a:hover,
a:focus {
  color: #fff;
  text-decoration: underline;
}

/* リストのスタイル調整 */
ul {
  margin: 1em 0;
  padding: 0;
  list-style: none;
}

/* 画像のスタイル調整 */
img {
  width: 100%;
  height: auto;
}

/* sectionブロックのスタイル調整 */
section {
  padding: 100px 0;/* sectionの上下に100pxの内余白設定 */
}

/* 初期スタイル調整 ここまで */

/* 共通スタイル調整 ここから */

/*h2関連*/
.h2-title {
  position: relative;
  text-transform: uppercase;
  z-index: 100;
}

.h2-title::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: #a5d1ff;
  position: absolute;
  left: 50%;
  margin-left: -20px;
  transform: rotate(45deg);
  z-index: -100;
}

/*テキスト関連*/
.txt-center {
  text-align: center;
}

.txt-lead {
  font-weight: 700;
}

/*ボタン共通（ベース）の設定*/
.btn {
  display: block;
  padding: 20px 35px;
  border-radius: 8px;
  margin: 0 auto;
  border: none;
}

.btn:hover,
.btn:focus {
  background: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}

/*Web予約ボタン*/
.btn-reserve {
  color: #fff;
  background: rgba(0, 0, 0, 0.9);
}

/*レイアウト関連*/
.inner {
  padding: 0 15px;
  margin: 0 auto;
}

@media (min-width:768px) {
  .inner {
    max-width: 1200px;
  }
}

.sp-only {
  display: block;
}

.pc-only {
  display: none;
}

@media (min-width:768px) {
  .sp-only {
    display: none;
  }

  .pc-only {
    display: block;
  }
}

/* 共通スタイル調整 ここまで */

/* ヘッダーブロック ここから */
/* headerのスタイル */
.header{
	width: 100%;
  height: 60px;
  padding: 0px 15px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: rgba(0,0,0,.8);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 200;
}

@media (min-width:768px){
	.header{
    padding: 0px 15px;
	}
}

/*ハンバーガーボタン作成のために一時的に非表示にしておく*/
/* .header-navi{
	display: none;
} */

/*サイトロゴの表示*/
.logo-area {
  width: 200px;
  margin: 0;
  text-align: left;
 } 

@media (min-width:768px) {
  .logo-area {
    width: 250px;
  }
}

/*チェックボックスを非表示にする（PC／SP共通）*/
.none{
	display: none;
}



/* モバイル用のハンバーガーボタンとメニュー設定 */
/* 1〜767pxの間だけ適用される */
@media (max-width:767px){

/*ハンバーガーボタンの配置*/
  #nav-input-open,
  #nav-input-open span {
    display: inline-block;
    vertical-align: middle;
    transition: 0.2s ease-in-out;
  }

/*ハンバーガーボタン枠の指定*/
  #nav-input-open {
    position: relative;
    width: 40px;
    height: 27px;
    border: none;
    cursor: pointer;
  }

/*3本線の設定*/
  #nav-input-open span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #ccc;
  }

/*3本線の位置*/
  #nav-input-open span:nth-of-type(1) {
    top: 0;
  }
  #nav-input-open span:nth-of-type(2) {
    top: 12px;
  }
  #nav-input-open span:nth-of-type(3) {
    top: 24px;
  }

/*ナビゲーション*/
  .header-navi ul{
    display: flex;
    flex-direction: column;
    width: 80vw;
    height: 100vh;
    position: fixed;
    top: 60px;
    left: 0;
    background: rgba(0,0,0,.8);
    margin-top: 0;
    padding: 30px;
    text-transform: uppercase;
    transform: translateX(-105%);
    transition: 0.3s ease-in-out;
  }

    /*メニュー項目下の間隔調整*/
  .header-navi ul li{
    margin-bottom: 2em;
    
  }
  /*タップできるエリアの拡張*/
  .header-navi ul li a{
    display: block;
    padding: 1em 1em 0;
  }


/*チェックが入った時の動作*/
/*メニューエリア*/
  #nav-input:checked ~ .header-navi ul{
    transform: translateX(0%);
  }

/*ハンバーガーメニューがＸになる*/
  #nav-input:checked ~ #nav-input-open span:nth-of-type(1) {
    transform: translateY(12px) rotate(-45deg);
  }
  #nav-input:checked ~ #nav-input-open span:nth-of-type(2) {
    opacity: 0;
  }
  #nav-input:checked ~ #nav-input-open span:nth-of-type(3) {
    transform: translateY(-12px) rotate(45deg);
  }

}

@media (min-width:768px){	
/*ナビゲーション*/
	.header-navi{
		width: 500px;
	}
	.header-navi ul{
		display: flex;
		flex-direction: row;
		justify-content: space-around;
    text-transform: uppercase;
	}

}

/*メニューアイコンの右側余白（PC／SP共通）*/
.header-navi ul li svg{
	margin-right: 1em;
}

/*-------------------------------------------
　ヒーローイメージ
-------------------------------------------*/
.hero-area {
  width: 100vw;
  height: 100vh;
  background-image: url(../images/hero.jpg);
  background-size: cover;
  background-position: center center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.hero-title {
  color: #fff;
  text-shadow: 0px 0px 3px #333;
  margin-top: 70px;
}

@media (min-width:768px) {
  .hero-area {
    width: 100%;
    height: 600px;
  }

  .hero-title {
    margin-top: 90px;
  }
}





/*-------------------------------------------
　レンタルスペースの紹介
-------------------------------------------*/
.info-area {
  background-color: #85a7cc;
}

.info-txt {
  color: #fff;
}


@media (min-width:768px) {
  .info-content {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
  }

  .info-txt {
    flex: 1;
    margin-left: 30px;
  }

  .info-txt h2 {
    text-align: left;
  }

  .info-img {
    flex: 1;
    width: 100%;
    object-fit: cover;
  }
}

/*-------------------------------------------
　サービスの案内
-------------------------------------------*/
.service-area {
  background-color: #fff;
}

.service-content {
  display: flex;
  flex-wrap: wrap;
  margin: 0 10px;
  padding: 0;
}

.service-item {
  flex: calc(100% / 2 - 10px);
  text-align: center;
  padding: 20px 20px 0;
  margin: 5px;
  border: 3px solid #666;
  border-radius: 10px;
}

.service-item img {
  width: 120px;
}

@media (min-width:768px) {
  .service-content {
    flex-wrap: nowrap;
    max-width: 1200px;
    margin: 0 auto;
  }

  .service-item {
    flex: calc(100% / 4);
  }

}


/*-------------------------------------------
　プランの紹介
-------------------------------------------*/
.plan-area {
  background-color: #f0f0f0;
}

.plan-content {
  display: flex;
  flex-direction: column;
}

.plan-item {
  background-color: #fff;
  margin-bottom: 30px;
  box-shadow: 1px 1px 3px #aaa;
}

.plan-info {
  padding: 0 15px 15px;
}

.plan-title {
  text-align: center;
  padding-bottom: 10px;
  border-bottom: 2px solid #666;
}

.plan-price {
  text-align: center;
  padding: 10px;
  border: 2px solid #666;
}

.plan-list li::before {
  content: "";
  background: url(../images/list-marker.svg) no-repeat;
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 10px 3px;
}

@media (min-width:768px) {
  .plan-content {
    flex-direction: row;
    max-width: 1200px;
  }

  .plan-item {
    flex:calc(100% / 3);
    margin-top: 0;
    margin-left: 15px;
    margin-right: 15px;
  }
}

/*-------------------------------------------
　アクセス
-------------------------------------------*/
.access-area {
  padding-bottom: 0;
  text-align: center;
}

.access-content {
  margin-top: 50px;
  margin-bottom: 50px;
}

.access-area img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto;
}

.access-maparea {
  height: 400px;
}

.access-map {
  width: 100%;
  height: 100%; 
}

@media (min-width:768px) {
  .access-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-left: 150px;
  }

  .access-maparea {
    height: 500px;
  }

}


/*-------------------------------------------
　ページトップ
-------------------------------------------*/
.pagetop {
  text-align: right;
  padding: 15px;
  background-color: #596680;
}

.pagetop a::after {
  content: "";
  background: url(../images/list-marker.svg) no-repeat;
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 3px 10px;
  transform: rotate(-90deg);
}


/*-------------------------------------------
　フッター
-------------------------------------------*/
.foot-area {
  color: #fff;
  text-align: center;
  padding-top: 40px;
  background-color: #596680;
}

.foot-logo {
  margin: 0 auto 20px;
}

.text-phone,
.text-phone a {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
}

.foot-area_copy {
  color: #ccc;
  font-size: 12px;
  display: inline-block;
  width: 100%;
  padding: 10px;
  background-color: #333;
}

footer ul {
  display: flex;
  justify-content: space-around;
  width: 250px;
  margin: 0 auto 60px;
}
footer ul li a {
  color: #efefef;
  font-size: 32px;
}


@media (min-width:768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }

  footer ul {
    width: 300px;
    margin: 0 auto 120px;
  }
  footer ul li a {
    font-size: 42px;
  }
}
