@charset "UTF-8";
/* CSS Document */
.pageContents {
  padding-bottom: 0
}
.heroBlock {
  position: relative
}
.heroBlock .hero__image img {
  width: 100%
}
@media (min-width: 701px) {
  .heroBlock .media__caption {
    position: absolute;
    bottom: 5px;
    right: 5px;
    color: #fff
  }
}
@media (max-width: 700px) {
  .heroBlock .media__caption {
    margin: 0 0.5em
  }
}
.pageTitle {
  margin-top: 0.5em;
  margin-bottom: 1em;
  font-size: 20px
}
@media (max-width: 700px) {
  .pageTitle {
    font-size: 15px
  }
}
.pageCopy {
  margin-bottom: 1em;
  font-size: 25px;
  text-align: left
}
@media (max-width: 700px) {
  .pageCopy {
    font-size: 21px
  }
}
.leadText {
  font-size: 18px;
  text-align: left;
  line-height: 2em
}
@media (max-width: 700px) {
  .leadText {
    font-size: 16px;
    text-align: justify
  }
}
.section {
  margin-bottom: 60px
}
@media (max-width: 700px) {
  .section {
    margin-bottom: 40px
  }
}
.section .text {
  margin-bottom: 2em;
  line-height: 1.8
}
.sectionHeader {
  margin-bottom: 40px
}
.sectionTitle {
  margin-bottom: 0.75em;
  font-size: 24px
}
.sectionTitle .englishLead {
  display: block;
  margin-bottom: 0.5em;
  font-size: 16px;
  color: #305d5f
}
.sectionLead {
  margin-bottom: 0.5em;
  font-size: 24px;
  text-align: center
}
.decoration {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: absolute;
  top: 85%;
  left: 5%;
}
@media (max-width: 700px) {
  .decoration {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: absolute;
    top: 70%;
    left: 2%;
    width: 30%;
  }
}
.decoration-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: absolute;
  top: 70%;
  right: 20%;
}
@media (max-width: 700px) {
  .decoration-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: absolute;
    top: 45%;
    right: 2%;
    width: 20%;
  }
}
.photoarea {
	background-color: black;
}

.hero__image {
	text-align: center;
}

.caption {
  display: block;
	margin-left: 20px;
  padding-top: 6px;
  font-size: 10px;
  font-size: 1rem;
  text-align: left;

}
/**************************
 タブ切り替え
***************************/

/* 親要素でタブの横並びのためflexを指定
*/
.tab-wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: space-between;
  justify-content: center;
  margin:20px 0px;
	
}


/* タブ１～３と書いているタブメニュー部分
*/
.tab-label {
  color: White;
  background-color:#ACB59C;
  text-align: center;
  padding: .4em 0.3em;
    margin: 5px;
  order: -1;
  position: relative;
  z-index: 1;
  cursor: pointer;
  flex: 1;
  font-size: 23px;
  max-width: 300px;
 min-width: 280px;
}

/* タブのコンテンツ部分*/
.tab-content {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
}

/* アクティブなタブ、チェックされているradioボタンの隣にあるlabelの背景色を変える*/
.tab-switch:checked+.tab-label {
 background-color:#EA8F1B;/*背景色*/
}



.tab-switch:checked+.tab-label+.tab-content {
  height: auto;
  overflow: auto;
  padding: 15px 0px;
  opacity: 1;
  transition: .5s opacity;
}

/* radioボタンは仕組みだけ利用するため非表示に*/
.tab-switch {
  display: none;
}

#close-btn {
	text-align: center;
	margin-bottom: 20px;
}

