@charset "UTF-8";
@keyframes bar-anime {
  0% {
    height: 40px;
    top: -40px;
  }
  75% {
    height: 40px;
    top: 50px;
  }
  100% {
    height: 40px;
    top: 50px;
  }
}
@keyframes bar-anime-sp {
  0% {
    height: 40px;
    top: -40px;
  }
  75% {
    height: 40px;
    top: 40px;
  }
  100% {
    height: 40px;
    top: 40px;
  }
}
@keyframes scrollLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* ------------------------------------------------- Default and Common --------------------------------------------------- */
html, body {
  width: 100%;
  height: auto;
}

html {
  font-size: 62.5%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #000;
  text-align: center;
  -webkit-text-size-adjust: 100%;
  background-color: #FFF;
  height: 100%;
  position: fixed;
  left: 0px;
  top: 0px;
}
body.loaded {
  position: static;
}
body.looking {
  overflow: hidden;
}

a {
  color: #000;
  text-decoration: none;
  cursor: pointer !important;
}

a:hover, a:active, a.active {
  color: #999999;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

i {
  font-style: normal;
}

form, section, p, div, ul, li, dl, dt, dd, a, span, input, textarea, nav, footer {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  list-style: none;
}

br.brsp {
  display: none;
}

br.brpc {
  display: block;
}

/*----- Sticky -----*/
.js-scroll-overlap:not(.is-disabled) {
  --sticky-offset: -1px;
  position: sticky;
  top: var(--sticky-offset);
  background-color: #666666;
}

.notoverlap {
  position: relative;
  background-color: #666666;
}

/*--------- SLICK -----------*/
.slick-prev::before {
  content: "　";
  background: url(../images/arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.slick-next::before {
  content: "　";
  background: url(../images/arrow2.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.slick-dots {
  display: block !important; /* ドットを強制的に表示 */
  position: absolute; /* スライダー内で配置調整 */
  bottom: 15px; /* 必要に応じて位置を調整 */
  list-style: none;
  text-align: center;
  width: 100%; /* 横幅をスライダーに合わせる */
}

.slick-dots li {
  width: 10px;
  height: 10px;
}

.slick-dots li button {
  width: 10px;
  height: 10px;
}

.slick-dots li button:before {
  width: 10px;
  height: 10px;
  content: " ";
  background-color: none;
  border: dotted 1px #FFF;
  /*font-size: 40px;  ドットのサイズ */
  /*color: $col4;  ドットの色 */
  opacity: 1; /* 透明度を100%に */
}

.slick-dots li.slick-active button:before {
  background-color: #FFF;
  border: dotted 1px #FFF;
  color: #000; /* アクティブなドットの色 */
  opacity: 1;
}

.slick-dotted.slick-slider {
  margin-bottom: 0;
}

/* ---------------------------------------------------------page--------------------------------------------------------- */
#loader {
  width: 100%;
  height: 100vh;
  background-color: #FFF;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: fixed;
  left: 0px;
  bottom: 0px;
  z-index: 9999;
  transition: opacity 0.5s ease-in 0s;
}
#loader .logo {
  width: 250px;
  height: 70px;
  background-image: url(../images/main_title.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
}
#loader .bar {
  width: 100%;
  height: 10px;
  background-color: rgba(0, 0, 0, 0.25);
  position: absolute;
  left: 0px;
  bottom: 0px;
  z-index: 5;
}
#loader .bar span {
  width: 0%;
  height: 100%;
  background-color: #000;
  display: block;
}
#loader.active h3 {
  opacity: 1;
}
#loader.complete {
  opacity: 0;
}

header {
  width: 100%;
  padding: 0;
  box-sizing: border-box;
}
header .inner {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  position: relative;
}
header .inner.on .main_title {
  opacity: 1;
}
header .inner .top_bar {
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  padding: 30px 0;
  border-bottom: 1px solid #666666;
  background-color: #fff;
}
header .inner .top_bar .top_bar_track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: scrollLoop 36s linear 0s infinite;
}
header .inner .top_bar .top_bar_track span {
  color: #000;
  font-family: "acumin-pro-condensed", sans-serif;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
  font-style: normal;
  padding-right: 10px;
  white-space: nowrap;
}
header .inner .local_navi {
  width: 100%;
  padding: 15px 0;
  border-bottom: dashed 1px #666666;
}
header .inner .local_navi > div {
  width: 100%;
  max-width: 1270px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
header .inner .local_navi > div div:first-child {
  color: #000;
  font-family: "zen-kaku-gothic-antique", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.03em;
  font-style: normal;
  text-align: left;
}
header .inner .local_navi > div .category {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}
header .inner .local_navi > div .category div {
  color: #000;
  font-family: "zen-kaku-gothic-antique", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  font-style: normal;
  padding: 8px 10px 10px;
  border: solid 1px #000;
  border-radius: 20px;
}
header .inner .local_navi > div .category div.active_arau {
  border: solid 1px #CAA07C;
  background-color: #CAA07C;
  color: #FFF;
}
header .inner .local_navi > div .category div.active_kau {
  border: solid 1px #C7CA75;
  background-color: #C7CA75;
  color: #FFF;
}

main {
  width: 100%;
  position: relative;
  margin: 30px auto 0;
  box-sizing: border-box;
}
main .main_visual {
  width: 100%;
  max-width: 1270px;
  margin: 0 auto 50px;
  border-bottom: dashed 1px #666666;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
main .main_visual > div {
  width: 50%;
  position: relative;
}
main .main_visual > div:first-child::after {
  content: "　";
  background: url(../images/dot.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-color: #FFF;
  position: absolute;
  width: 7px;
  height: 7px;
  box-sizing: content-box;
  border: solid 6px #FFF;
  right: -9.5px;
  bottom: -9.5px;
}
main .main_visual > div.main {
  border-right: dashed 1px #666666;
  padding: 90px 40px 40px;
  position: relative;
}
main .main_visual > div.main h1 {
  width: 430px;
  position: absolute;
  top: 0;
  left: 5px;
}
main .main_visual > div.lead {
  padding: 60px;
}
main .main_visual > div.lead.on .inner h2 {
  opacity: 1;
}
main .main_visual > div.lead.on .inner .category {
  opacity: 1;
}
main .main_visual > div.lead.on .inner .num {
  opacity: 1;
}
main .main_visual > div.lead.on .inner .lead_text {
  opacity: 1;
}
main .main_visual > div.lead .inner {
  width: 100%;
  margin: 0 auto;
  text-align: left;
}
main .main_visual > div.lead .inner .category {
  padding-bottom: 4px;
  color: #000;
  font-family: "zen-kaku-gothic-antique", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1em;
  font-style: normal;
  opacity: 0;
  transition: all 0.5s ease-in 0s;
}
main .main_visual > div.lead .inner .num {
  color: #000;
  font-family: "zen-kaku-gothic-antique", sans-serif;
  font-size: 3.4rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.15em;
  font-style: normal;
  opacity: 0;
  transition: all 0.5s ease-in 0s;
}
main .main_visual > div.lead .inner h2 {
  padding: 80px 0 80px;
  color: #000;
  font-family: "zen-kaku-gothic-antique", sans-serif;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.03em;
  font-style: normal;
  opacity: 0;
  transition: all 0.5s ease-in 0.25s;
}
main .main_visual > div.lead .inner .lead_text {
  color: #000;
  font-family: "zen-kaku-gothic-antique", sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.03em;
  font-style: normal;
  opacity: 0;
  transition: all 0.5s ease-in 0.25s;
}
main .main_visual > div.lead .inner .lead_text:not(:last-child) {
  padding-bottom: 15px;
}
main .sec {
  width: 100%;
  max-width: 1270px;
  padding: 0;
  margin: 0 auto;
  text-align: left;
}
main .sec:not(:last-of-type) {
  padding-bottom: 50px;
  margin-bottom: 50px;
  border-bottom: dashed 1px #666666;
}
main .sec .insec {
  width: 90%;
  max-width: 660px;
  margin: 0 auto;
  position: relative;
}
main .sec .insec.on h3 {
  opacity: 1;
}
main .sec .insec.on .photo {
  opacity: 1;
}
main .sec .insec.on .text {
  opacity: 1;
}
main .sec .insec h3 {
  width: 100%;
  margin: 0 auto;
  padding: 80px 0;
  color: #000;
  font-family: "zen-kaku-gothic-antique", sans-serif;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.03em;
  font-style: normal;
  text-align: center;
  opacity: 0;
  transition: all 0.5s ease-in 0s;
}
main .sec .insec .photo {
  width: 100%;
  margin: 0 auto;
  position: relative;
  opacity: 0;
  transition: all 0.5s ease-in 0.25s;
}
main .sec .insec .text {
  padding: 30px 0 100px;
  opacity: 0;
  transition: all 0.5s ease-in 0.5s;
}
main .sec .insec .text p {
  color: #000;
  font-family: "zen-kaku-gothic-antique", sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.03em;
  font-style: normal;
}
main .sec .insec .text p:not(:last-child) {
  padding-bottom: 15px;
}
main .sec .insec .text .button_detail {
  padding: 40px 0 0;
}
main .sec .insec .text .button_detail p {
  padding: 6px 0;
  border-bottom: solid 1px #000;
  display: inline-block;
}
main .sec .insec .text .button_detail p a {
  color: #000;
  font-family: "zen-kaku-gothic-antique", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  font-style: normal;
}
main .related_articles {
  width: 100%;
  max-width: 1290px;
  margin: 0 auto;
  padding: 50px 0 0;
  border-top: dashed 1px #666666;
}
main .related_articles h4 {
  padding: 0 10px 20px;
  color: #000;
  font-family: "zen-kaku-gothic-antique", sans-serif;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.03em;
  font-style: normal;
  text-align: left;
}
main .related_articles .article {
  width: 100%;
  text-align: left;
}
main .related_articles .article ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
main .related_articles .article ul li {
  width: 25%;
  position: relative;
  border-bottom: dashed 1px #666666;
  border-right: dashed 1px #666666;
}
main .related_articles .article ul li:last-child {
  border-right: none;
}
main .related_articles .article ul li a {
  width: 100%;
  padding: 0 10px 10px;
  display: block;
}
main .related_articles .article ul li .thumb {
  width: 100%;
  padding-bottom: 8px;
}
main .related_articles .article ul li .data .title {
  color: #666666;
  font-family: "zen-kaku-gothic-antique", sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.03em;
  font-style: normal;
  padding-bottom: 12px;
}
main .related_articles .article ul li .data .date {
  position: relative;
  color: #999999;
  font-family: "acumin-pro-condensed", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  font-style: normal;
}
main .related_articles .article ul li .data .date::before {
  content: "UPDATE : ";
}
main .related_articles .article ul li .data .brand {
  display: none;
}
main .related_articles .article ul li:not(:last-child):after {
  content: "　";
  background: url(../images/dot.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-color: #FFF;
  position: absolute;
  width: 7px;
  height: 7px;
  box-sizing: content-box;
  border: solid 6px #FFF;
  right: -9.5px;
  bottom: -9.5px;
  z-index: 1;
}
main .related_articles .button_all {
  padding: 40px 0;
}
main .related_articles .button_all p {
  padding: 6px;
  border-bottom: solid 1px #000;
  display: inline-block;
}
main .related_articles .button_all p a {
  color: #000;
  font-family: "zen-kaku-gothic-antique", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  font-style: normal;
}

footer {
  position: relative;
  text-align: left;
  width: 100%;
  padding: 60px 0 30px;
  margin: 0 auto;
  background-color: #F9F9F9;
  border-top: dashed 1px #666666;
}
footer .infoot {
  width: 100%;
  max-width: 1270px;
  margin: 0 auto;
  padding: 0;
  position: relative;
}
footer .infoot div ul {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 0 0 50px;
}
footer .infoot div ul li:not(:last-child) {
  margin-bottom: 12px;
}
footer .infoot div ul li a, footer .infoot div ul li span {
  color: #000;
  font-family: "acumin-pro-condensed", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  font-style: normal;
  transition: all 0.25s ease-in 0s;
}
footer .infoot div ul li a:hover, footer .infoot div ul li span:hover {
  color: #000;
  opacity: 0.5;
}
footer .infoot div p {
  color: #000;
  font-family: "acumin-pro-condensed", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  font-style: normal;
  text-align: left;
}
footer .infoot .pgtop {
  position: absolute;
  right: 20px;
  bottom: 0;
  writing-mode: vertical-rl;
}
footer .infoot .pgtop a {
  color: #000;
  font-family: "acumin-pro-condensed", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  font-style: normal;
  transition: all 0.25s ease-in 0s;
}
footer .infoot .pgtop a:hover {
  color: #000;
  opacity: 0.5;
}

/* ---- common credits ---- */
.credits {
  width: 100%;
  padding-top: 20px;
}
.credits:first-child {
  padding-right: 30px;
}
.credits .note {
  padding-bottom: 10px;
  color: #000;
  font-family: "zen-kaku-gothic-antique", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  font-style: normal;
  text-align: left;
}
.credits > div {
  width: 100%;
  transition: all 0.25s ease-in 0s;
}
.credits > div:not(:last-child) {
  margin-bottom: 16px;
}
.credits > div:hover {
  opacity: 0.4;
}
.credits > div dl {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
}
.credits > div dl dt {
  padding: 0;
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.credits > div dl dt > span {
  color: #000;
  font-family: "acumin-pro-condensed", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  font-style: normal;
}
.credits > div dl dt > span:first-child {
  width: 100%;
  padding: 0 0 5px 0;
}
.credits > div dl dd {
  margin-left: 20px;
}
.credits > div dl dd a {
  color: #000;
  font-family: "acumin-pro-condensed", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  font-style: normal;
  text-decoration: none;
  padding: 0;
  display: block;
  background-color: transparent;
}
.credits > div dl dd .item-d-none a {
  display: none;
}
.credits > div dl dd .item-d-none span {
  color: #000;
  font-family: "acumin-pro-condensed", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  font-style: normal;
  padding: 0;
  display: inline-block;
}
.credits > div dl dd span {
  display: none;
}

/* ----------------------------------------------- Media Queries Smartphone ----------------------------------------------- */
@media screen and (max-width: 768px) {
  /* --------------------------- Default and Common --------------------------- */
  br.brsp {
    display: block;
  }
  br.brpc {
    display: none;
  }
  /* --------------------------- page --------------------------- */
  #loader .logo {
    width: 200px;
    height: 55px;
  }
  #loader .bar {
    height: 8px;
  }
  header {
    width: 100%;
    padding: 0;
    box-sizing: border-box;
  }
  header .inner {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    position: relative;
  }
  header .inner .top_bar {
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    padding: 20px 0;
  }
  header .inner .top_bar .top_bar_track {
    display: flex;
    width: -moz-max-content;
    width: max-content;
    animation: scrollLoop 40s linear 0s infinite;
  }
  header .inner .top_bar .top_bar_track span {
    color: #000;
    font-family: "acumin-pro-condensed", sans-serif;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.05em;
    font-style: normal;
    padding-right: 10px;
    white-space: nowrap;
  }
  header .inner .local_navi {
    width: 100%;
    padding: 18px 0;
    border-bottom: dashed 1px #666666;
  }
  header .inner .local_navi > div {
    width: 100%;
    max-width: inherit;
    margin: 0 auto;
    padding: 0 10px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 12px;
  }
  header .inner .local_navi > div div:first-child {
    color: #000;
    font-family: "zen-kaku-gothic-antique", sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.03em;
    font-style: normal;
    text-align: left;
  }
  header .inner .local_navi > div .category {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
  }
  header .inner .local_navi > div .category div {
    color: #000;
    font-family: "zen-kaku-gothic-antique", sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.05em;
    font-style: normal;
    padding: 6px 8px 8px;
    border: solid 1px #000;
    border-radius: 20px;
  }
  header .inner .local_navi > div .category div.active_arau {
    border: solid 1px #CAA07C;
    background-color: #CAA07C;
    color: #FFF;
  }
  header .inner .local_navi > div .category div.active_kau {
    border: solid 1px #C7CA75;
    background-color: #C7CA75;
    color: #FFF;
  }
  main {
    width: 100%;
    position: relative;
    box-sizing: border-box;
  }
  main .main_visual {
    width: 100%;
    max-width: inherit;
    margin: 0 auto 30px;
    border-bottom: dashed 1px #666666;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  main .main_visual > div {
    width: 100%;
    position: relative;
  }
  main .main_visual > div:first-child::after {
    content: none;
  }
  main .main_visual > div.main {
    border-right: none;
    padding: 54px 20px 30px;
    position: relative;
  }
  main .main_visual > div.main h1 {
    width: 66%;
    position: absolute;
    top: 0;
    left: 10px;
  }
  main .main_visual > div.lead {
    padding: 0 20px 40px;
  }
  main .main_visual > div.lead .inner {
    width: 100%;
    margin: 0 auto;
    text-align: left;
  }
  main .main_visual > div.lead .inner .category {
    padding-bottom: 4px;
    color: #000;
    font-family: "zen-kaku-gothic-antique", sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.1em;
    font-style: normal;
  }
  main .main_visual > div.lead .inner .num {
    color: #000;
    font-family: "zen-kaku-gothic-antique", sans-serif;
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.15em;
    font-style: normal;
  }
  main .main_visual > div.lead .inner h2 {
    padding: 30px 0 30px;
    color: #000;
    font-family: "zen-kaku-gothic-antique", sans-serif;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.03em;
    font-style: normal;
  }
  main .main_visual > div.lead .inner .lead_text {
    color: #000;
    font-family: "zen-kaku-gothic-antique", sans-serif;
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 2;
    letter-spacing: 0.03em;
    font-style: normal;
  }
  main .main_visual > div.lead .inner .lead_text:not(:last-child) {
    padding-bottom: 12px;
  }
  main .sec {
    width: 100%;
    max-width: inherit;
    padding: 0;
    margin: 0 auto;
    text-align: left;
  }
  main .sec:not(:last-of-type) {
    padding-bottom: 20px;
    margin-bottom: 0;
    border-bottom: dashed 1px #666666;
  }
  main .sec .insec {
    width: 90%;
    max-width: inherit;
  }
  main .sec .insec h3 {
    width: 100%;
    margin: 0 auto;
    padding: 50px 0 50px;
    color: #000;
    font-family: "zen-kaku-gothic-antique", sans-serif;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.03em;
    font-style: normal;
  }
  main .sec .insec .photo {
    width: 100%;
    margin: 0 auto;
    position: relative;
  }
  main .sec .insec .text {
    padding: 20px 0 60px;
  }
  main .sec .insec .text p {
    color: #000;
    font-family: "zen-kaku-gothic-antique", sans-serif;
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.8;
    letter-spacing: 0.03em;
    font-style: normal;
  }
  main .sec .insec .text p:not(:last-child) {
    padding-bottom: 12px;
  }
  main .sec .insec .text .button_detail {
    padding: 30px 0 0;
  }
  main .sec .insec .text .button_detail p {
    padding: 6px 0;
    border-bottom: solid 1px #000;
    display: inline-block;
  }
  main .sec .insec .text .button_detail p a {
    color: #000;
    font-family: "zen-kaku-gothic-antique", sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.05em;
    font-style: normal;
  }
  main .related_articles {
    width: 100%;
    max-width: inherit;
    margin: 0 auto;
    padding: 30px 20px 0;
    box-sizing: border-box;
    border-top: dashed 1px #666666;
  }
  main .related_articles h4 {
    padding: 0 0 20px;
    color: #000;
    font-family: "zen-kaku-gothic-antique", sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.03em;
    font-style: normal;
    text-align: left;
  }
  main .related_articles .article {
    width: 100%;
    text-align: left;
  }
  main .related_articles .article ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  main .related_articles .article ul li {
    width: 50%;
    margin-bottom: 10px;
    position: relative;
    border-bottom: dashed 1px #666666;
    border-right: dashed 1px #666666;
  }
  main .related_articles .article ul li:last-child {
    border-right: inherit;
  }
  main .related_articles .article ul li:nth-child(even) {
    border-right: dashed 1px #FFF;
  }
  main .related_articles .article ul li a {
    width: 100%;
    padding: 0 10px 10px;
    display: block;
  }
  main .related_articles .article ul li:nth-child(odd) a {
    padding-left: 0;
  }
  main .related_articles .article ul li:nth-child(even) a {
    padding-right: 0;
  }
  main .related_articles .article ul li .thumb {
    width: 100%;
    padding-bottom: 6px;
  }
  main .related_articles .article ul li .data .title {
    color: #666666;
    font-family: "zen-kaku-gothic-antique", sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: 0.03em;
    font-style: normal;
    padding-bottom: 12px;
  }
  main .related_articles .article ul li .data .date {
    position: relative;
    color: #999999;
    font-family: "acumin-pro-condensed", sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.05em;
    font-style: normal;
  }
  main .related_articles .article ul li:not(:last-child):after {
    content: none;
  }
  main .related_articles .article ul li:nth-child(odd):after {
    content: " ";
    background: url(../images/dot.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-color: #FFF;
    position: absolute;
    width: 7px;
    height: 7px;
    box-sizing: content-box;
    border: solid 6px #FFF;
    right: -9.5px;
    bottom: -9.5px;
    z-index: 1;
  }
  main .related_articles .button_all {
    padding: 10px 0 20px;
  }
  main .related_articles .button_all p {
    padding: 4px;
  }
  main .related_articles .button_all p a {
    color: #000;
    font-family: "zen-kaku-gothic-antique", sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.05em;
    font-style: normal;
  }
  footer {
    position: relative;
    text-align: left;
    width: 100%;
    padding: 30px 20px 20px;
    margin: 0 auto;
  }
  footer .infoot {
    width: 100%;
    max-width: inherit;
    position: relative;
  }
  footer .infoot div ul {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 0 0 40px;
  }
  footer .infoot div ul li a, footer .infoot div ul li span {
    color: #000;
    font-family: "acumin-pro-condensed", sans-serif;
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.05em;
    font-style: normal;
  }
  footer .infoot div p {
    color: #000;
    font-family: "acumin-pro-condensed", sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.05em;
    font-style: normal;
  }
  footer .infoot .pgtop {
    position: absolute;
    right: -5px;
    bottom: 0;
  }
  footer .infoot .pgtop a {
    color: #000;
    font-family: "acumin-pro-condensed", sans-serif;
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.05em;
    font-style: normal;
  }
  /* common credits------ */
  .credits {
    width: 100%;
  }
  .credits > div {
    width: 100%;
  }
  .credits > div:not(:last-child) {
    margin-bottom: 14px;
  }
  .credits > div dl {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-end;
  }
  .credits > div dl dt {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .credits > div dl dt > span {
    color: #000;
    font-family: "acumin-pro-condensed", sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.05em;
    font-style: normal;
  }
  .credits > div dl dt > span:first-child {
    width: 100%;
    padding: 0 0 5px 0;
  }
  .credits > div dl dd {
    margin-left: 15px;
  }
  .credits > div dl dd a {
    color: #000;
    font-family: "acumin-pro-condensed", sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.05em;
    font-style: normal;
  }
  .credits > div dl dd .item-d-none span {
    color: #000;
    font-family: "acumin-pro-condensed", sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.05em;
    font-style: normal;
  }
}/*# sourceMappingURL=style.css.map */