@charset "UTF-8";
/* -------------------------------
  - contentHead
------------------------------- */
.contentHead-wrap {
  border-top: 6px solid #f6f6f6;
}
.contentHead_thumb-img {
  width: 100%;
}
.contentHead_label {
  margin-bottom: 15px;
}
.contentHead_date {
  font-weight: bold;
  margin-top: 10px;
}

/* -------------------------------
  - snsArea
------------------------------- */
.snsArea {
  margin: 10px 0;
}
.snsArea::after {
  content: ".";
  height: 0;
  clear: both;
  display: block;
  visibility: hidden;
}
.snsArea_item{
  float: left;
  margin-right: 10px;
}

/* -------------------------------
  - article
------------------------------- */
.articleArea {
  background-color: #fff;
}
.articleTable {
  border: 1px solid #eaeaea;
}
.articleTable_ttl {
  text-align: center;
  font-weight: bold;
}
.articleTable_ttl-btn {
  display: inline-block;
  color: #008db7;
}
.articleTable_link {
  color: #008db7 !important;
  line-height: 1.8;
}

/* section */
.section:last-child {
  margin-bottom: 0;
}
.section_ttl {
  border-bottom: 1px dotted;
  padding-top:50px;
}
.section_thumb-img {
  width: 100%;
}
.section_movie-iframe {
  width: 100%;
  height: 100%;
}
.section_item {
/*  border-top: 1px solid #8099a3;*/
  border-bottom: 1px solid #8099a3;
  padding-bottom: 20px;
}

/* -------------------------------
  - recommendPanel
------------------------------- */
.recommendPanel-wrap:last-child {
  margin-bottom: 0;
}
.recommendPanel_head {
  margin-bottom: 5px;
}
.recommendPanel-sin .recommendPanel {
  width: 100%;
}
.recommendPanel-sin .recommendPanel_thumb {
  float: left;
}

.recommendPanel-sin .recommendPanel_txtArea {
  float: left;
}
.recommendPanel_label {
  margin-bottom: 10px;
}
.recommendPanel_ttl {
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.3;
}
.recommendPanel_btn {
  text-align: center;
  position: relative;
  color: #fff !important;
  /*margin: 1em 0;*/
}
.itemPanels .recommendPanel_btn {
  background-color: #8099a3;
}
.articlePanels .recommendPanel_btn {
  background-color: #444444;
}
.recommendPanel_btn:before {
  top: 50%;
  left: 10px;
  margin-top: -6px;
  border-left: 6px solid;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}
.recommendPanel_btn:after {
  top: 50%;
  left: 9px;
  margin-top: -6px;
  border-left: 6px solid;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}
.itemPanels .recommendPanel_btn:after {
  border-left-color: #8099a3;
}
.articlePanels .recommendPanel_btn:after {
  border-left-color: #444444;
}

/* -------------------------------
  - articleBottom
------------------------------- */
.articleBottom {
  background-color: #fff;
}

/* profile */
.profile_info {
  display: table;
  width: 100%;
}
.profile_img-wrap, 
.profile_detail {
  display: table-cell;
  vertical-align: middle;
}
.profile_detail-name {
  font-weight: bold;
  margin-bottom: 10px;
}

.VideoWrapper {
    position: relative;
    /*padding-bottom: 56.25%;*/ /* 16:9 */
    padding-bottom: 55%;
/*    padding-top: 25px;*/
    height: 0;
}
 
.VideoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cross {
  position: fixed;
  right: 0;
  top: 0;
  margin: 30px 55px 0 0;
  cursor: pointer;
  transition: 300ms all ease-in-out;
  z-index: 99;
  opacity: 1;
  will-change: transform; }

.cross::after,
.cross::before {
  position: absolute;
  content: '';
  width: 35px;
  height: 2px; }

.cross::after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg); }

.cross::before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg); }

.cross--light::after,
.cross--light::before {
  background-color: black; }

.cross--dark::after,
.cross--dark::before {
  background-color: white; }

.slb {
  /*box-shadow: 2px 2px 12px 1px rgba(0, 0, 0, 0.2);*/
  cursor: -webkit-zoom-in;
  cursor: zoom-in; }

.slb--invert {
  box-shadow: 2px 2px 12px 1px rgba(255, 255, 255, 0.3); }

.slb--opened {
  cursor: auto; }

.pop-in {
  -webkit-animation: pop-in 250ms;
  -moz-animation: pop-in 250ms;
  -ms-animation: pop-in 250ms; }

.pop-out {
  -webkit-animation: pop-out 250ms;
  -moz-animation: pop-out 250ms;
  -ms-animation: pop-out 250ms; }

#overlay {
  display: none;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  pointer-events: none;
  cursor: pointer;
  will-change: transform;
  z-index: 1; }

.center {
  max-height: 90%;
  max-width: 90%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto; }

@-webkit-keyframes pop-in {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
    transform: scale(0.5); }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1); } }

@-webkit-keyframes pop-in {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
    transform: scale(0.5); }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1); } }

@keyframes pop-in {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
    transform: scale(0.5); }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1); } }

@-webkit-keyframes pop-out {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1); }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.5);
    transform: scale(0.5); } }

@keyframes pop-out {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1); }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.5);
    transform: scale(0.5); } 
}
/* -------------------------------
  - 2023/05/19
------------------------------- */
.cf {margin-top: 2em;}
.contentHead_ttl {line-height: 1.4;}
.articleArea {letter-spacing: 1.5px;}
#toc_container p.toc_title {font-size:18px !important;}
.articleTable {letter-spacing: .5;margin-bottom:2em;}
.section_ttl {padding-top: 10px !important;font-size: 20px !important;margin-bottom: 20px;}
.section_subttl {font-size: 18px!important;margin: 30px 0 0px !important;line-height: 1.6;border-left: 7px solid #e4e4e4;border-bottom: 7px solid #f7f7f7;padding: 0.5em;}
.section_txt {font-size: 16px;line-height: 2;margin-top: 10px;padding: 10px 0 15px;}
.section_link {font-size: 16px;line-height: 2;margin-top: 10px;padding: 10px 0 15px;text-align:center;}
.section_thumb {width: 620px;margin: 60px auto 20px;}
.c-product_ec .product__item .product__img img {width: auto;height: 298px;object-fit: contain;max-width: 100%;}
.page_title_link {padding: 10px 20px;
    background-color: #e6002d;
		border:1px solid #e6002d;
    color: #fff !important;}
.page_title_link:hover{
    background-color: #fff;
    color: #e6002d !important;}
@media only screen and (max-width: 599px){
	.articleTable {margin-bottom:-2em;}
	.section_thumb {width: 100%;}
	.c-product_ec .product__item 
	.product__img img {height: initial;}
}
