@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:lightgray;
  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:#5D1B00;/*背景色*/
}



.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;
}


/*----------------------------------------

クレアテラスの実例

----------------------------------------*/
/*----------------------------------------
#example
----------------------------------------*/
#example {
  width: 100%;
  max-width: 1280px;
  margin: 50px auto 90px;
  padding: 0 3vw;
}

#example .tabs {
  display: flex;
  flex-wrap: wrap;
}

#example .tab_label {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 10px;
  margin: 0 0.25%;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  background: #ACB59C;
}

#example .tab_label .txt_01 {
  display: block;
  width: 100%;
  font-size: 80%;
  text-align: center;
}

#example .tab_label .txt_02 {
  display: inline-block;
  font-size: 80%;
}

#example .tab_label .new {
  display: inline-block;
	padding: 1px 20px;
	color: #BD272D;
  font-size: 60%;
	font-weight: bold;
	line-height: 1;
	background: #fff;
	border-radius: 10px;
}

#example .tab_label:hover {
  opacity: 0.75;
}

#example .tab_content {
  flex: 100%;
  display: none;
  overflow: hidden;
  padding: 5px 0.25%;
}

#example input[name="tab_switch"] {
  display: none;
}

#example .tabs input:checked + .tab_label {
  background: #EA8F1B;
}

#example #tab01:checked ~ #tab01_content,
#example #tab02:checked ~ #tab02_content,
#example #tab03:checked ~ #tab03_content,
#example #tab04:checked ~ #tab04_content,
#example #tab05:checked ~ #tab05_content,
#example #tab06:checked ~ #tab06_content,
#example #tab07:checked ~ #tab07_content {
  display: block;
}

#example .tab_content {
  position: relative;
  animation: fadeIn 1s ease;
}

#example .tab_content figure {
  margin: 0;
}

#example .tab_content figure img {
  margin: auto;
}

#example .tab_content .photo {
  margin: 30px auto 0;
  text-align: center;
  background: #000;
}

#example .tab_content .inbox {
  margin-top: 30px;
  padding:  50px 80px;
  text-align: center;
  background: #000;
}

#example .tab_content .inbox figure {
  display: inline-block;
  margin: 0 0 50px;
}

#example .tab_content .inbox figure.pr {
  padding-right: 25%;
}

#example .tab_content .inbox figure.pl {
  padding-left: 25%;
}

#example .tab_content .inbox figure img {
  max-height: 853px;
}

#example .tab_content .inbox .column_2 {
	justify-content: center;
}

#example .tab_content .inbox .column_2 figure {
  width: 50%;
	padding: 0 3%;
}

#example .tab_content .inbox .column_2 figure:nth-child(2) {
 padding-top: 10%;
}

#example .tab_content .inbox .column_2 figure img {
  max-height: none;
}

#example .tab_content .inbox figcaption {
  margin: 0.5em 0;
  color: #fff;
  font-size: 20px;
  text-align: left;
}

/*----------------------------------------
.breadcrumb
----------------------------------------*/
.breadcrumb {
  padding: 2.5vw 3vw;
}

.breadcrumb ul {
  font-size: 2.5vw;
}

#example {
  margin: 5vw auto 10vw;
}

#example .tabs {
  justify-content: space-between;
}

#example .tab_label {
	align-content: center;
  display: inline-block;
	width: 49.5%;
  flex: none;
  margin: 0;
  padding: 1vw 0.5em;
  font-size: 3vw;
	text-align: center;
  border-top: 1px solid #fff;
}
	
#example .tab_label .txt_01 {
  display: inline-block;
  width: auto;
  margin-right: 0.5em;
	font-size: 75%;
}
	
#example .tab_label .new {
	padding: 1px 2vw;
}

#example .tab_content figcaption {
  font-size: 3vw;
}

#example .tab_content .inbox {
  margin-top: 3vw;
  padding:  5vw 8vw;
}

#example .tab_content .inbox figure {
  margin: 0 0 5vw;
}

#example .tab_content .inbox figcaption {
  font-size: 4.2vw;
}

