@charset "UTF-8";
body {
  background-color: #eeeeee;
  font-size: 62.5%;
  margin: 0;
  padding: 0;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
/* == HEADER  ======================================== */
header {
  position: fixed;
  width: 100%;
  height: 110px;
  box-sizing: border-box;
  padding: 0;
  z-index: 12;
  background: #eeeeee;
  box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.1);
}
header .headArea {
  position: relative;
  padding: 33px 0;
}
header .head_common {
  width: 92%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .head_common .breadcrumb {
  color: #666666;
}
header .head_common .breadcrumb a {
  color: #666666;
  text-decoration: none;
}
header .head_common .breadcrumb a:after {
  border-top: 1px solid #b3b3b3;
  border-right: 1px solid #b3b3b3;
  transform: rotate(45deg);
  content: "";
  position: absolute;
  top: 47%;
  transform: translateY(-50%) rotate(-135deg);
  left: 9px;
  width: 12px;
  height: 12px;
  z-index: 99;
}
header .head_common .breadcrumb span {
  border: 1px solid #b3b3b3;
  border-radius: 30px;
  display: block;
  width: 60px;
  height: 60px;
  z-index: 3;
  margin-left: -20px;
  position: relative;
  left: -20%;
  margin-top: -8px;
}
header .head_common .breadcrumb p {
  position: relative;
  margin: 6px 40px;
  font-size: 1.2em;
}
header .head_common .headLogo {
  width: 12%;
  position: relative;
  z-index: 200;
  right: 2vw;
  top: -4px;
}
header .head_common .headLogo .default {
  display: block;
}
header .head_common .headLogo .on {
  display: none;
}
header .head_common .colorchange .default {
  display: none;
}
header .head_common .colorchange .on {
  display: block;
}
@media screen and (max-width: 767px) {
  header {
    height: 70px;
    display: flex;
    align-items: center;
  }
  header .headArea {
    position: relative;
  }
  header .head_common {
    width: 100vw;
    align-items: center;
    top: 47%;
  }
  header .head_common .breadcrumb span {
    width: 50px;
    height: 50px;
    padding: 1.2%;
    left: -15%;
    border-radius: 25px;
    margin-top: 1px;
  }
  header .head_common .headLogo {
    width: 25%;
    right: 20vw;
    top: -1px;
  }
  header .head_common .breadcrumb a:after {
    border-top: 1px solid #b3b3b3;
    border-right: 1px solid #b3b3b3;
    transform: rotate(45deg);
    content: "";
    position: absolute;
    top: 51%;
    transform: translateY(-50%) rotate(-135deg);
    left: 8px;
    width: 10px;
    height: 10px;
    z-index: 99;
  }
}
header .pos_right {
  position: absolute;
  right: 0;
  z-index: 120;
  top: 49%;
  transform: translateY(-50%);
}
header .pos_right .burgerBtn {
  display: block;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 3;
  border: none;
  margin-right: 20px;
  border: 1px solid #b3b3b3;
  border-radius: 20px;
  cursor: pointer;
}
header .pos_right .burgerBtn .bar {
  width: 20px;
  height: 1px;
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-color: #666666;
}
header .pos_right .burgerBtn .bar_top {
  top: 13px;
}
header .pos_right .burgerBtn .bar_mid {
  top: 50%;
}
header .pos_right .burgerBtn .bar_bottom {
  bottom: 13px;
}
header .burgerBtn.close .bar {
  background-color: #FFF;
}
header .burgerBtn.close .bar_top {
  transform: translate(-50%, 7px) rotate(45deg);
  transition: transform 0.3s;
}
header .burgerBtn.close .bar_mid {
  opacity: 0;
  transition: opacity 0.3s;
}
header .burgerBtn.close .bar_bottom {
  transform: translate(-50%, -6px) rotate(-45deg);
  transition: transform 0.3s;
}
header .burger_menu {
  position: fixed;
  top: 0;
  right: -3%;
  z-index: 100;
  width: 0%;
  min-height: 50vh;
  height: auto;
  padding: 2% 0;
  background: #4c1c3f;
  font-size: 1.4em;
  /* アニメーション */
  transform: translateX(100%);
  transition: 1.2s;
}
header .burger_menu.top {
  position: fixed;
  top: 0;
  right: -3%;
  z-index: 100;
  width: 0%;
  min-height: 1px;
  height: auto;
  padding: 2% 0;
  background: #4c1c3f;
  font-size: 1.4em;
  /* アニメーション */
  transform: translateX(100%);
  transition: 1.2s;
}
header .burger_menu a {
  color: #FFF;
  text-decoration: none;
}
header .burger_menu .burger_menu_area {
  max-width: 90vw;
  padding: 0 0 0 20px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
}
header .burger_menu .burger_menu_area:after {
  content: "";
  width: 33.3%;
  display: block;
  height: 0;
}
header .burger_menu .menu_item {
  width: 100%;
  height: 95vh;
  padding: 0.5em 1em 1em 1em; /* 0.5em 1em 1em 2em */
  text-align: left;
  color: #fff;
  box-sizing: border-box;
  position: relative;
  overflow: scroll;
}
header .burger_menu .menu_item dl {
  padding-bottom: 1.5%;
}
header .burger_menu .menu_item dt {
  font-size: 1.2em;
  margin-bottom: 1%;
  font-weight: bold;
}
header .burger_menu .menu_item dd {
  margin-right: 5%;
}
header .burger_menu .menu_item ul {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
header .burger_menu .menu_item ul li {
  list-style-type: none;
  padding: 0 5% 0 0;
  margin-bottom: 1%;
  box-sizing: border-box;
  font-size: 1em;
  line-height: 1.5;
  position: relative;
  width: 25%;
}
header .burger_menu .menu_item ul li:after {
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
  transform: rotate(45deg);
  content: "";
  position: absolute;
  left: -15px;
  top: 8px;
  width: 4px;
  height: 4px;
  z-index: 99;
}
header .burger_menu .menu_item ul li.nolink {
  opacity: 0.3;
}
header .burger_menu .menu_item ul li.nolink a {
  pointer-events: none;
}
header .burger_menu .top .menu_item:after {
  display: none !important;
}
header .burger_menu.active {
  transform: translateX(0);
  transition: 0.8s;
  display: inherit;
  width: 100%;
  right: 0;
}
header .burger_menu.top.active {
  transform: translateX(0);
  transition: 0.8s;
  display: inherit;
  width: 0;
  right: 0;
}
header .burger_menu.active .menu_item {
  animation-name: fadeIn;
  animation-duration: 0.8s;
}
header .menu_item_flexbox {
  display: flex;
  flex-wrap: wrap;
  width: 33.3%;
}
header .menu_item_flexbox .menu_item {
  width: 100%;
}
@media screen and (max-width: 767px) {
  header .pos_right {
    right: 2vw;
    top: 40px;
  }
  header .pos_right .burgerBtn {
    width: 40px;
    height: 40px;
    margin-right: 5px;
    border-radius: 20px;
    top: 22px;
  }
  header .burger_menu {
    padding: 18% 0 5%;
    min-height: 90vh;
    /* 30% */
  }
  header .burger_menu .burger_menu_area {
    padding: 0 0 0 10px;
    justify-content: center;
    height: 30%;
  }
  header .burger_menu .burger_menu_area:after {
    display: none;
  }
  header .burger_menu .burger_menu_area .menu_item {
    width: 90%;
    margin: 0 auto;
    padding: 0.5em 1em 0.5em 1.5em;
  }
  header .burger_menu .burger_menu_area .menu_item li {
    width: 100%;
  }
  header .burger_menu.active {
    width: 70vw;
    height: 90vh;
    padding: 0% 0 0%;
    overflow: auto;
    top: 10vh;
    /* 18% 0 5% */
  }
  header .burger_menu.top.active {
    width: 70vw;
    height: 10vh;
    padding: 0% 0 0%;
    top: 0;
    min-height: 10%;
    /* 18% 0 5% */
  }
  header .menu_item_flexbox {
    width: 100%;
    margin: 0 auto;
  }
  header .menu_item_flexbox .menu_item {
    width: 100%;
  }
}
@keyframes fadeIn {
  0% {
    display: none;
    opacity: 0;
    height: 0;
  }
  75% {
    display: block;
    opacity: 0;
    height: 0;
  }
  90% {
    display: none;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
    height: auto;
  }
}

/* == HEADER-END  ======================================== */
/* == CONTENTSここから ======================================== */
.contents_base {
  padding-top: 110px;
}
.contents_base .article_img {
  position: relative;
  display: flex;
  margin: 0 auto 5%;
}
.contents_base .article_img img {
  opacity: 1;
  filter: brightness(100%);
  transition: 1.5s;
  width: 100%;
  height: 100%;
}
.contents_base .article_img .demo {
  position: absolute;
  top: calc(90vh - 200px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-block;
  color: #fff;
  font: normal 400 20px/1 "Josefin Sans", sans-serif;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: opacity 0.2s;
}
.contents_base .article_img .demo a span {
  position: absolute;
  top: -65px;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  animation: sdb05 1.5s infinite;
  box-sizing: border-box;
}
.contents_base .article_img .scrollcolor {
  color: #FFF;
  text-decoration: none;
  font-size: 16pt;
  font-weight: 400;
  transition: opacity 0.5s;
}
.contents_base .article_img .article_img_mgnB0 {
  margin: 0 auto;
}
.contents_base .article_img_small {
  width: 55%;
  margin-right: 0;
  margin-top: -5.5%;
  margin-bottom: -1%;
  padding-right: 5%;
}
@media screen and (max-width: 767px) {
  .contents_base {
    padding-top: 70px;
  }
  .contents_base .article_img .demo {
    display: none;
  }
  .contents_base .article_img .demo a span {
    position: absolute;
    top: -50px;
    left: 50%;
    width: 16px;
    height: 16px;
    margin-left: -12px;
    border-left: 3px solid #fff;
    border-bottom: 3px solid #fff;
    transform: rotate(-45deg);
    animation: sdb05 1.5s infinite;
    box-sizing: border-box;
  }
  .contents_base .article_img .scrollcolor {
    color: #FFF;
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
  }
}

.brandLogo {
  width: 100%;
  height: 90px;
  box-sizing: border-box;
  background-color: #4c1c3f;
  line-height: 90px;
  text-align: center;
  font-size: 2.8em;
  color: #FFF;
}
@media screen and (max-width: 767px) {
  .brandLogo {
    height: 60px;
    line-height: 60px;
    font-size: 2em;
  }
}

.container {
  margin: 0 auto;
  overflow: hidden;
  width: 80vw;
}
.container .cate_ttl {
  font-size: 5em;
  font-weight: 300;
  text-align: center;
  margin: 16.5% auto 5% auto;
  color: #969696;
  position: relative;
}
.container .cate_ttl.mt5 {
  margin: 5% auto 5% auto;
}
.container .cate_ttl .sub_caption {
  font-size: 0.45em;
  text-align: center;
  margin: 0.5% auto 0 auto;
  color: #4c1c3f;
}
.container .cate_ttl .side_txt {
  font-size: 2em;
  position: absolute;
  top: 0;
  left: 0;
  color: #4c1c3f;
  transform: rotate(90deg) translate(0, 68%);
  z-index: 10;
  font-weight: 200;
  font-family: "Helvetica Neue", "Helvetica";
}
.container .cate_ttl .side_txt span {
  font-size: 1.4em;
}
.container .cate_ttl .alp {
  transform: rotate(90deg) translate(25%, 68%);
}
.container .emphasis {
  text-align: center;
  font-size: 2em;
  margin: 5% auto;
}
.container .emphasis .child {
  color: #4c1c3f;
  border: 1px solid #4c1c3f;
  padding: 1% 2%;
  display: inline-block;
  margin: 0 auto;
}
.container .emphasis .child02 {
  color: #4c1c3f;
  padding: 1% 2%;
  display: inline-block;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .container {
    max-width: 100%;
  }
  .container .container .cate_ttl {
    font-size: 2.3em;
  }
}

.article_txt {
  text-align: center;
  margin: 0 auto;
  font-size: 1.8em;
  line-height: 2.2;
  padding-bottom: 50px;
}
.article_txt ul {
  margin: 1% 0;
  padding: 0;
  text-align: left;
}
.article_txt ul li {
  list-style-type: none;
  padding-left: 1em;
  text-indent: -1em;
}
.article_txt ul li span {
  margin: 2% auto;
  display: block;
}
@media screen and (max-width: 767px) {
  .article_txt {
    text-align: left;
    width: 95%;
    font-size: 1.4em;
    line-height: 1.6;
    padding-bottom: 1em;
  }
}

.section_detail {
  display: flex;
  margin-bottom: 20px;
  margin-top: 100px;
  margin: 5% auto 0;
}
.section_detail .image-container {
  width: 48%;
}
.section_detail .image-container img {
  width: 100%;
  transition: filter 0.7s;
}
.section_detail .textside {
  position: relative;
  width: 48%;
  text-align: left;
  display: flex;
  flex-direction: column;
  margin-left: 4%;
}
.section_detail .textside::before {
  content: "";
  position: absolute;
  top: 0px;
  width: 50px;
  height: 2px;
  background-color: #666666;
}
.section_detail .htitle {
  position: relative;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.5em;
  color: #333333;
}
.section_detail .ntitle {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.8em;
  margin-bottom: 15px;
  color: #333333;
}
.section_detail .ptitle {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #333333;
}
.section_detail .textd {
  font-size: 22px;
  margin-top: 3em;
  font-weight: bold;
  color: #333333;
  width: 100vw;
}
.section_detail .article_img .scrollcolor {
  color: #FFF;
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .section_detail {
    display: block;
  }
  .section_detail .textside {
    width: 100%;
    text-align: left;
    margin-top: 3vh;
    margin-left: 0;
  }
  .section_detail .textside::before {
    content: "";
    top: 0px;
    width: 6vw;
    height: 2px;
    background-color: #666666;
  }
  .section_detail .image-container {
    width: 100%;
  }
  .section_detail .htitle {
    position: relative;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0.5em;
    color: #333333;
  }
  .section_detail .ntitle {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5em;
    margin-bottom: 0.5em;
    color: #333333;
  }
  .section_detail .ptitle {
    font-size: 1.4em;
    line-height: 1.6;
    margin-bottom: 2em;
    width: 95%;
    color: #333333;
  }
}

.lasttext {
  position: relative;
  text-align: center;
  padding-top: 100px;
  padding-bottom: 50px;
}

.lasttext::before {
  content: "";
  position: absolute;
  width: 120px;
  left: calc(50% - 60px);
  height: 2px;
  background-color: #666666;
}

.textd {
  font-size: 16px;
  font-weight: bold;
  margin-top: 3em;
  color: #333333;
}

@media screen and (max-width: 767px) {
  .lasttext {
    padding-top: 4em;
    padding-bottom: 2em;
  }
  .lasttext::before {
    width: 100px;
    height: 2px;
    left: calc(50% - 50px);
    background-color: #666666;
  }
}
.contentsnotes {
  width: 75vw;
  padding: 2em 0;
  font-size: 1.4em;
  text-align: left;
  line-height: 2em;
  color: #666;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .contentsnotes {
    width: 98vw;
    padding: 2em 2vw;
    font-size: 1em;
  }
}

.article_img .scrollcolor {
  color: #FFF;
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
}

.fade-in {
  opacity: 0;
  transition: opacity 1s;
}

.fade-in.active {
  opacity: 1;
}

.ptitle span,
.article_txt span {
  font-size: 0.8em;
}

sup {
  font-size: 0.6em;
}

@keyframes sdb05 {
  0% {
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}/*# sourceMappingURL=contents_base.css.map */