@charset "UTF-8";
* {
  box-sizing: border-box;
}

body {
  font-size: 14px;
  line-height: 1.8;
  font-family: -apple-system, BlinkMacSystemFont, 'Noto Sans JP', "ヒラギノ角ゴ ProN W3", 'ヒラギノ角ゴ W3', "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  color: #333;
}

h1, h2, h3, h4 {
  line-height: 1.5;
}

.heading-title {
  font-size: 28px;
  text-align: center;
  margin-bottom: 0.5em;
  text-align: center;
  color: #fff;
  text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.9);  
}

a {
  color: #75af57;
  text-decoration: none;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.8;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

ul {
  padding: 0;
  list-style: none;
}

section, article, .grid {
  max-width: 1140px;
  padding: 0 15px;
  margin: 0 auto;
}

.fadein {
  opacity : 0;
  transform: translateY(20px);
  transition: all 1s;
}

@media screen and (min-width: 768px) {
  .heading-title {
    font-size: 36px;
  }
}

@media screen and (min-width: 992px) {
  body {
    font-size: 16px;
  }
  .heading-title {
    font-size: 48px;
  }
}

/*-------------------------------------------
 ヘッダー・フッター
-------------------------------------------*/
header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1300px;
  margin: 0 auto;
  padding: 20px 15px 10px;
  position: relative;
  z-index: 100;
}

.header-button {
  display: flex;
  position: fixed;
  top: 0;
  right: 0;
  justify-content: center;
  align-items: center;
  border: none;
  width: 75px;
  height: 75px;
  background-color: transparent;
  z-index: 100;
}

.header-button .icon {
  display: block;
  position: relative;
  top: 0;
  margin: 0 auto;
  width: 24px;
  height: 2px;
  background-color: #fff;
  transition: .3s ease;
}

.header-button .icon:before, .header-button .icon:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  transition: all .3s;
  background-color: #333;
}

.header-button .icon:before {
  top: -8px;
}

.header-button .icon:after {
  top: 8px;
}

.header-gnav {
  position: fixed;
  right: 0;
  top: 0;
  text-align: center;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateX(100%);
  transition: .3s ease;
}

.header-gnav ul {
  margin: 0;
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.header-gnav a {
  color: #000;
  font-weight: bold;
  font-size: 18px;
  display: block;
  padding: 0.8em;
  margin-right: 35px;
}

.open .header-button .icon {
  background-color: transparent;
}

.open .header-button .icon:before, .open .header-button .icon:after {
  top: 0;
}

.open .header-button .icon:before {
  transform: rotate(45deg);
}

.open .header-button .icon:after {
  transform: rotate(-45deg);
}

.open .header-gnav {
  transform: translateX(0);
}

.top .icon {
  background-color: #fff;
}

.top .icon:before, .top .icon:after {
  background-color: #fff;
}

.top.open .icon {
  background-color: transparent;
}

.top.open .icon:before, .top.open .icon:after {
  background-color: #000;
}

@media screen and (min-width: 768px) {
  header {
    align-items: center;
  }
  .header-button {
    display: none;
  }
  .header-gnav {
    margin-right: -0.8em;
    transform: translateX(0);
    position: relative;
    background: none;
  }
  .header-gnav ul {
    flex-direction: row;
    justify-content: flex-end;
  }
}

@media screen and (min-width: 992px) {
  header {
    padding-top: 30px;
  }
  header .header-logo {
    flex: none;
  }
  header .header-logo img {
    width: 240px;
  }
}

footer {
  margin: 70px 0 10px;
  text-align: center;
}

/*-------------------------------------------
 メインビジュアル
-------------------------------------------*/
.hero {
  background: url(../img/fitness2.jpeg) no-repeat center center/cover;
  max-width: 1300px;
  height: 100vh;
  margin: -70px auto 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  z-index: 10;
}

.hero h1 {
  text-align: center; 
  font-size: 28px;
  letter-spacing: 0.03em;
  margin-top: 180px;
  color: #fff;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.9);   
}

.hero p {
  text-align: left;
  font-size: 14px;
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.9);   
  line-height: 1.8;
  font-weight: bold;
  letter-spacing: 0.03em;
  margin: 0 25px auto;
}

@media screen and (min-width: 992px) {
  .hero {
    height: 100vh;
  }
  .hero h1 {
    text-align: center;
    font-size: 58px;
    letter-spacing: 0.05em;
    margin-bottom: 0.8em;
  }
  .hero p {
     text-align: center; 
    font-size: 28px;
    letter-spacing: 0.04em;
  }
}

@media screen and (min-width: 768px) {
  .hero {
    margin-top: 0;
  }
    
   .hero h1 {
    text-align: center;
    font-size: 40px;
    letter-spacing: 0.05em;
    margin-bottom: 0.8em;
  }
  .hero p {
    text-align: center;
    font-size: 18px;
    letter-spacing: 0.04em;
  }   
}

/*-------------------------------------------
 クラスの紹介
-------------------------------------------*/
.top-feature {
  text-align: center;
  position: relative;
  z-index: 1;
}

.top-feature .top-feature_box {
  padding: 10px 30px 20px;
}

.fadein {
  opacity : 0;
  transform: translateY(20px);
  transition: all 1s;
}

.top-feature h2 {
  font-size: 22px;
  padding-top: 25px;
  margin-bottom: 0.5em;
}

.top-feature p {
  text-align: left;
}

.top-feature a {
  padding-bottom: 0.2em;
  border-bottom: 2px solid #75af57;
  font-size: 18px;
}

.top-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.top-list li {
  width: 100%;
  padding: 0 10px;
  margin-bottom: 30px;
}

.top-list li a {
  display: flex;
  align-items: center;
}

.top-list li img {
  flex: 0 1 90px;
}

.top-list li .top-list_info {
  margin-left: 20px;
}

.top-list li time {
  font-size: 14px;
  color: #333;
}

.top-list li .top-list_title {
  margin-top: 0.25em;
  line-height: 1.4;
}

@media screen and (min-width: 768px) {
  .top-feature {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    background-color: #f3f2e8;
    margin-top: -50px;
    padding-top: 100px;
    padding-bottom: 50px;
  }
  .top-feature .top-feature_box {
    background-color: #fff;
    max-width: 600px;
    padding: 0 60px 30px 40px;
  }
  .top-feature img {
    margin-top: 40px;
    margin-left: -30px;
    max-width: 48vw;
  }
  .top-feature:last-of-type {
    flex-direction: row-reverse;
    padding-top: 50px;
    padding-bottom: 80px;
  }
  .top-feature:last-of-type .top-feature_box {
    padding-right: 40px;
    padding-left: 60px;
  }
  .top-feature:last-of-type img {
    margin-right: -30px;
    margin-left: 0;
  }
  .top-list li {
    width: 50%;
  }
}

/*-------------------------------------------
 Aboutページ
-------------------------------------------*/
.about {
  background: url(../img/fitness4.jpeg) no-repeat center center/cover;
  max-width: 1300px;
  height: 100vh;
  margin: -70px auto 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  z-index: 10;
}

.about h1 {
  font-size: 24px;
  letter-spacing: 0.03em;
  align-items: center;
  /*margin-top: 180px;*/
  color: #fff;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.9);   
}

/*.about p {
  text-align: left;
  font-size: 14px;
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.9);   
  line-height: 1.8;
  font-weight: bold;
  letter-spacing: 0.03em;
  margin: 0 25px auto;
}*/

/* 入会のご案内 */
.contents-list {
  margin-top: 80px;
  margin-bottom: 24px;
  background: url(../img/logo1.JPG) no-repeat center center #ffeeee;
  background-size: cover;
  padding: 24px 0;
}

.contents-list h2 {
   color: #fff;
   text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.9); 
   text-align: center;
}


.contents-list ul {
  list-style-type: disc; 
  width: 296px;
  margin: 0 auto;
  padding: 8px 24px;
  font-size: 0.75rem;
  background-color: rgba(255,255,255,0.8);
}

.contents-list ul li {
  border-bottom: 1px dotted #000;
  padding: 10px 0;
}

.contents-list ul li:last-child {
  border-bottom: none;
}

 .prepare ul li {
  list-style-type: disc; 
  width: 296px;
  margin: 0 auto;
  padding: 8px 24px;
  font-size: 0.75rem;
}

span {
    color: red;
    font-weight: bold;
}

span3 {
    font-weight: bold;
}

@media screen and (min-width: 768px) {
  .contents-list {
    margin-bottom: 80px;
    padding: 32px 0;
  }
  
  .contents-list ul {
    text-align: center;
    width: 640px;
    font-size: 1rem;
  }
}

h3 {
    text-align: center;
    color: #000;
    margin-top: 28px;
}

.prepare ul li {
  list-style-type: disc; 
  width: 296px;
  margin: 0 auto;
  padding: 8px 24px;
  font-size: 14px;
}

section table { 
  width: 100%;
  margin-top: 28px;
  margin-bottom: 40px;
}

section th, section td  { padding: 10px; border: 1px solid #000; }
section th  { background: #c6c5c5; }
.demo03 th, .demo03 td  { width: 16%; text-align: center; }

@media only screen and (max-width: 480px) { 
  .demo03 { margin: 24px -10px 0; }
  .demo03 tr {
    display:block;
    margin-bottom: 10px;
}
    
  .demo03 th {
    display:block;
    width: 100%;
    margin-left: 10px;
}
    
  .demo03 td {
    display: list-item;
    width: 90%;
    margin-left: 10%;
    border:none; 
  }
}

@media screen and (min-width: 992px) {
  .about {
    height: 100vh;
  }
  .about h1 {
    /*margin-top: 380px;*/
    align-items: center;
    font-size: 50px;
    letter-spacing: 0.05em;
    margin-bottom: 0.8em;
  }
  /*.about p {
    text-align: center;
    font-size: 24px;
    letter-spacing: 0.04em;
  }*/
}

@media screen and (min-width: 768px) {
  .about {
    margin-top: 0;
  }
    
  .about h1 {
    /*margin-top: 340px;*/
    align-items: center;
    font-size: 32px;
    letter-spacing: 0.05em;
    margin-bottom: 0.8em;
  }
  /*.about p {
    text-align: center;
    font-size: 16px;
    letter-spacing: 0.04em;
  }*/ 
}

/*-------------------------------------------
 スケジュール ページ
-------------------------------------------*/
.schedule {
  background: url(../img/fitness6.jpeg) no-repeat center center/cover;
  max-width: 1300px;
  height: 100vh;
  margin: -70px auto 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  z-index: 10;
}

.schedule h1 {
  font-size: 28px;
  letter-spacing: 0.03em;
  margin-top: 260px;
  /*align-items: center;*/
  color: #fff;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.9);   
}

/*.schedule p {
  text-align: left;
  font-size: 14px;
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.9);   
  line-height: 1.8;
  font-weight: bold;
  letter-spacing: 0.03em;
  margin: 10px 25px auto;
}*/

/* スケジュール表 */
.schedule-list {
  margin-top: 80px;
  margin-bottom: 24px;
  background: url(../img/logo1.JPG) no-repeat center center #ffeeee;
  background-size: cover;
  padding: 120px 0;
}

.schedule-list h2 {
   text-align: center;
　　color: #fff;
}

.schedule-list img {
  width: 320px;
  margin: 0 auto 0 40px;
  padding: 8px 24px;
  background-color: rgba(255,255,255,0.8);
}

/*-------------------------------------------
 インストラクターの紹介
-------------------------------------------*/
.top-feature {
  text-align: center;
  position: relative;
  z-index: 1;
}

.top-feature .top-feature_box {
  padding: 10px 30px 20px;
}

.fadein {
  opacity : 0;
  transform: translateY(20px);
  transition: all 1s;
}

.top-feature h2 {
  font-size: 22px;
  padding-top: 25px;
  margin-bottom: 0.5em;
}

.top-feature p {
  text-align: left;
}

.top-feature a {
  margin-left: 50px;
  text-align: center;  
  padding-bottom: 0.2em;
  border-bottom: 2px solid #75af57;
  font-size: 18px;
}

.top-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.top-list li {
  width: 100%;
  padding: 0 10px;
  margin-bottom: 30px;
}

.top-list li a {
  display: flex;
  align-items: center;
}

.top-list li img {
  flex: 0 1 90px;
}

.top-list li .top-list_info {
  margin-left: 20px;
}

.top-list li time {
  font-size: 14px;
  color: #333;
}

.top-list li .top-list_title {
  margin-top: 0.25em;
  line-height: 1.4;
}

@media screen and (min-width: 768px) {
  .top-feature {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    background-color: #f3f2e8;
    margin-top: -50px;
    padding-top: 100px;
    padding-bottom: 50px;
  }
  .top-feature .top-feature_box {
    background-color: #fff;
    max-width: 600px;
    padding: 0 60px 30px 40px;
  }
  .top-feature img {
    margin-top: 40px;
    margin-left: -30px;
    max-width: 48vw;
  }
  .top-feature:last-of-type {
    flex-direction: row-reverse;
    padding-top: 50px;
    padding-bottom: 80px;
  }
  .top-feature:last-of-type .top-feature_box {
    padding-right: 40px;
    padding-left: 60px;
  }
  .top-feature:last-of-type img {
    margin-right: -30px;
    margin-left: 0;
  }
  .top-list li {
    width: 50%;
  }
}

/* 所属選手紹介 */
.feature {
  margin-bottom: 24px;
}

.feature h2 {
   text-align: center;
　　color: #fff;
}

.feature_01,
.feature_02, 
.feature_03 {
  width: 296px;
  margin: 0 auto 24px;
}

.feature_img {
  margin-bottom: 16px;
}

.feature_img img {
  max-width: 100%;
}

.feature_text {
  font-size: 0.75rem;
}

.feature h4 {
   text-align: center;
   color: red;
   margin-top: 60px;
}

.book-more {
　align-items: center;
  text-align: center;
}

.book-more a {
  display: inline-block;
  padding: 8px 40px;
  border: 1px solid #333;
  border-radius: 8px;
  font-size: 0.75rem;
  color: #333;
  background-color: #fff;
  text-decoration: none;
}

.book-more a::after {
  display: inline-block;
  position: relative;
  content: "";
  width: 16px;
  height: 16px;
  top: 2px;
  left: 8px;
  background: url(../img/arrow.png) no-repeat right center;
}

@media screen and (min-width: 992px) {
 .schedule {
    height: 100vh;
  }
 .schedule h1 {
    font-size: 50px;
    letter-spacing: 0.05em;
    /*margin-top: 380px;*/
    align-items: center; 
    margin-bottom: 0.8em;
  }
  .schedule p {
    text-align: center;
    font-size: 24px;
    letter-spacing: 0.04em;
  } 
  .schedule-list img {
    width: 800px;
    margin: 0 auto;
  } 
}

@media screen and (min-width: 768px) {
  .schedule {
    margin-top: 0;
  }
    
  .schedule h1 {
    font-size: 32px;
    letter-spacing: 0.05em;
    /*margin-top: 300px;*/
    align-items: center;   
    margin-bottom: 0.8em;
  }
    
  /*.schedule p {
    text-align: center;
    font-size: 16px;
    letter-spacing: 0.04em;
  }*/ 
    
  .schedule-list {
    margin-bottom: 80px;
    padding: 32px 0;
  }
  
  .schedule-list img {
    width: 580px; 
    margin-left: 130px;
  }
    
    
 /* 所属選手紹介*/   
  .feature {
    margin-bottom: 80px;
  }
  
  .feature-wrap {
    width: 768px;
    margin: 0 auto 40px;
    display: flex;
    justify-content: space-around;
  }
  
  .feature_01,
  .feature_02,
  .feature_03 {
    width: 230px;
    margin: 0;
  }
  
  .feature_img {
    margin-bottom: 24px;
  }
  
  .feature_text {
    font-size: 1rem;
  }
  
  .book-more a {
    padding: 16px 96px;
    font-size: 1rem;
  }
  
  .book-more a:hover {
    background-color: rgba(0,0,0,0.2);
  }      
}

/*-------------------------------------------
 news ページ
-------------------------------------------*/
.news {
  background: url(../img/yukio1.jpg) no-repeat center center/cover;
  max-width: 1300px;
  height: 100vh;
  margin: -70px auto 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  z-index: 10;
}

.news h1 {
  text-align: center; 
  font-size: 28px;
  letter-spacing: 0.03em;
  margin-top: 410px;
  color: #fff;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.9);   
}

.news p {
  text-align: center;
  font-size: 14px;
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.9);   
  line-height: 1.8;
  font-weight: bold;
  letter-spacing: 0.03em;
  margin: 0 25px auto;
}

/* 問い合わせ先SNS */
.flowbtn11{
font-family:'Verdana',sans-serif;	
border-radius:4px;
position:relative;
display:inline-block;
width:90%;
font-size:20px;
color:#fff!important;
text-decoration:none;
margin-bottom:20px;
}

/* Twitter */
.fl_tw1{
background:#55acee;
}

/* Facebook */
.fl_fb1{
background:#3b5998;
}

/* アイコンボタンホバー時 */
.flowbtn11:hover span1{
-webkit-transform: rotateX(360deg);
-ms-transform: rotateX(360deg);
transform: rotateX(360deg);
text-decoration:none;
}
/* ボタン内テキスト調整 */
.flowbtn11 span1{
font-size:14px;	
position:relative;
left:8px;
bottom:2px;
transition:.6s;	
display:inline-block;	
}
/* ulタグの内側余白を０にする */
ul.snsbtniti2{
padding:0!important;
}
/* アイコンボタンの位置調整 */
.snsbtniti2{
display:flex;
flex-flow:row wrap;
}
/* アイコンボタン同士の余白調整 */
.snsbtniti2 li{
flex:0 0 48%;
text-align:center!important;
}
/* 問い合わせ先SNS */


/*道場内写真*/
.grid {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 6%;
  margin-bottom: 50px;
}

.item p {
  text-align: center;
 }
/*道場内写真*/


@media screen and (min-width: 992px) {
 .news {
    height: 100vh;
  }
  
  .news h1 {
    text-align: center;
    font-size: 58px;
    letter-spacing: 0.05em;
    margin-top: 340px;
    margin-bottom: 0.8em;
  }
  .news p {
    text-align: center; 
    font-size: 28px;
    letter-spacing: 0.04em;
  }
    
  .grid {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 6%;
  margin-bottom: 50px;
} 
    .item p {
        text-align: center;
    }   
    
}

@media screen and (min-width: 768px) {
  .news {
    margin-top: 0;
  }
    
   .news h1 {
    text-align: center;
    font-size: 40px;
    letter-spacing: 0.05em;
    margin-top: 320px;
    margin-bottom: 0.8em;
  }
  .news p {
    text-align: center;
    font-size: 18px;
    letter-spacing: 0.04em;
  } 
    
 .grid {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 6%;
  margin-bottom: 50px;
} 
 .item p {
   text-align: center;
    }
}

/*-------------------------------------------
 contact ページ
-------------------------------------------*/
.access {
  background: url(../img/fitness1.jpeg) no-repeat center center/cover;
  max-width: 1300px;
  height: 100vh;
  margin: -70px auto 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  z-index: 10;
}

.access  .page-title {
  color: #fff;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.9); 
  margin-top: 200px;
  font-size: 28px;
  letter-spacing: 0.03em;
  align-items: center;
}

/* 問い合わせ先SNS */
.flowbtn11{
font-family:'Verdana',sans-serif;	
border-radius:4px;
position:relative;
display:inline-block;
width:90%;
font-size:20px;
color:#fff!important;
text-decoration:none;
margin-bottom:20px;
}

/* Twitter */
.fl_tw1{
background:#55acee;
}

/* Facebook */
.fl_fb1{
background:#3b5998;
}

/* アイコンボタンホバー時 */
.flowbtn11:hover span1{
-webkit-transform: rotateX(360deg);
-ms-transform: rotateX(360deg);
transform: rotateX(360deg);
text-decoration:none;
}
/* ボタン内テキスト調整 */
.flowbtn11 span1{
font-size:14px;	
position:relative;
left:8px;
bottom:2px;
transition:.6s;	
display:inline-block;	
}
/* ulタグの内側余白を０にする */
ul.snsbtniti2{
padding:0!important;
}
/* アイコンボタンの位置調整 */
.snsbtniti2{
display:flex;
flex-flow:row wrap;
}
/* アイコンボタン同士の余白調整 */
.snsbtniti2 li{
flex:0 0 48%;
text-align:center!important;
}
/* 問い合わせ先SNS */

/*-------------------------------------------
　access  map
-------------------------------------------*/
.access-area {
  padding-top: 20px;
  padding-bottom: 0;
  background-color: #eaeaea
}

.access-area  h2 {
  text-align: center;
}

.access-area p {
  text-align: center;
}

.access-area img {
  display: block;
  max-width: 280px;
  max-height: 280px;
  border-radius: 50%;
  overflow: hidden;
  margin: 10px auto 30px;
}

.access-maparea {
  position: relative;
  padding-top: 100%;
}

.access-map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 992px) {
  .access {
    height: 100vh;
  }
  
  .access  .page-title {
    font-size: 40px;  
    color: #fff;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.9); 
    margin-top: 220px;
} 

/* メールフォーム */
/*.contact-area {
  background-color: #fff;
}
    
form div {
    margin-bottom: 14px;
}
label {
    text-align: center;
    color: #000;
    font-size: 1.125rem;
    margin-bottom: 10px;
    display: block;
}
input[type="text"],
input[type="email"],
textarea {
    text-align: center;
    background: rgba(255,255,255,.5);
    border: 1px #000 solid;
    border-radius: 5px;
    padding: 10px;
    font-size: 1rem;
}
input[type="text"],
input[type="email"] {
    text-align: center;
    width: 100%;
    max-width: 260px;
}
textarea {
    width: 100%;
    max-width: 480px;
    height: 6rem;
}
input[type="submit"] {
    text-align: center;
    border: none;
    cursor: pointer;
    line-height: 1;
　}*/ 
}

@media screen and (min-width: 768px) {
  .access {
    margin-top: 0;
  }
    
  .access  .page-title {
    font-size: 32px;  
    color: #fff;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.9); 
    margin-top: 200px;
  } 
  .access-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-left: 150px;
  }
    
  .access-maparea {
    position: relative;
    padding-top: 30%;
  } 
}

/*-------------------------------------------
　
-------------------------------------------*/


#pageTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
}

#pageTop i {
  padding-top: 6px
}

#pageTop a {
  display: block;
  z-index: 999;
  padding: 8px 0 0 8px;
  border-radius: 30px;
  width: 35px;
  height: 35px;
  background-color: #9FD6D2;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
}

#pageTop a:hover {
  text-decoration: none;
  opacity: 0.7;
}
