@charset "UTF-8";



.tab-wrap {
  display: flex;
  flex-wrap: wrap;
  margin: 20px 0;
}
.tab-wrap:after {
  content: '';
  width: 100%;
  height: 3px;
  background: #000;
  display: block;
  order: -1;
}
.tab-label {
  color: #fff;
  background: #666;
  height: 50px;
  font-weight: bold;
  white-space: nowrap;
  text-align: center;
  font-size: 16px;
  padding-top: 15px ;
  order: -1;
  position: relative;
  z-index: 1;
  cursor: pointer;
  flex: 1;
}
.tab-label:not(:last-of-type) {
  margin-right: 5px;
}
.tab-content {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
}

.tab-switch:checked + .tab-label {
  background: #000;
}

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


/*スライダー*/
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.cp_cssslider {
  width: 660px;
  padding-top: 360px; /* 画像の高さ */
  position: relative;
  margin: auto;
  text-align: center;
}
.cp_cssslider > img {
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.5s;
}
.cp_cssslider input[name='cp_switch'] {
  display: none;
}
/* サムネイル */
.cp_cssslider label {
  margin-top: 20px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 40px;
  border: 2px solid #ffffff;
  display: inline-block;
  cursor: pointer;
  transition: all 0.5s ease;
  opacity: 0.6;
}
.cp_cssslider label:hover {
  opacity: 0.9;
}
.cp_cssslider label img {
  display: block;
  width: 100px;
}
.cp_cssslider input[name='cp_switch']:checked + label {
  border: 2px solid #E60012;
  opacity: 1;
}
.cp_cssslider input[name='cp_switch'] ~ img {
  opacity: 0;
}
.cp_cssslider input[name='cp_switch']:checked + label + img {
  opacity: 1;
}

/*スライダー2*/
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.cp_cssslider2 {
  width: 660px;
  padding-top: 360px; /* 画像の高さ */
  position: relative;
  margin: auto;
  text-align: center;
}
.cp_cssslider2 > img {
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.5s;
}
.cp_cssslider2 input[name='cp_switch2'] {
  display: none;
}
/* サムネイル2*/
.cp_cssslider2 label {
  margin-top: 20px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 40px;
  border: 2px solid #ffffff;
  display: inline-block;
  cursor: pointer;
  transition: all 0.5s ease;
  opacity: 0.6;
}
.cp_cssslider2 label:hover {
  opacity: 0.9;
}
.cp_cssslider2 label img {
  display: block;
  width: 100px;
}
.cp_cssslider2 input[name='cp_switch2']:checked + label {
  border: 2px solid #E60012;
  opacity: 1;
}
.cp_cssslider2 input[name='cp_switch2'] ~ img {
  opacity: 0;
}
.cp_cssslider2 input[name='cp_switch2']:checked + label + img {
  opacity: 1;
}

/*スライダー3*/
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.cp_cssslider3 {
  width: 660px;
  padding-top: 360px; /* 画像の高さ */
  position: relative;
  margin: auto;
  text-align: center;
}
.cp_cssslider3 > img {
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.5s;
}
.cp_cssslider3 input[name='cp_switch3'] {
  display: none;
}
/* サムネイル3*/
.cp_cssslider3 label {
  margin-top: 20px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 40px;
  border: 2px solid #ffffff;
  display: inline-block;
  cursor: pointer;
  transition: all 0.5s ease;
  opacity: 0.6;
}
.cp_cssslider3 label:hover {
  opacity: 0.9;
}
.cp_cssslider3 label img {
  display: block;
  width: 100px;
}
.cp_cssslider3 input[name='cp_switch3']:checked + label {
  border: 2px solid #E60012;
  opacity: 1;
}
.cp_cssslider3 input[name='cp_switch3'] ~ img {
  opacity: 0;
}
.cp_cssslider3 input[name='cp_switch3']:checked + label + img {
  opacity: 1;
}


/*動画*/

.embed-container { 
	position: relative; 
	padding-bottom: 56.25%; 
	height: 0; 
	overflow: hidden; 
	margin-bottom:30px;
	max-width: 660px; 
} 
.embed-container iframe, .embed-container object, .embed-container embed { 
	position: absolute; 
	top: 0; 
	left: 0; 
	width: 100%; 
	height: 100%; 
}