@charset "UTF-8";
body.lb-disable-scrolling {
  overflow: hidden;
}

.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: black;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  display: none;
}

.lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10000;
  text-align: center;
  line-height: 0;
  font-weight: normal;
  outline: none;
}

.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  max-height: none;
  border-radius: 3px;
  /* Image border */
  border: 4px solid white;
}

.lightbox a img {
  border: none;
}

.lb-outerContainer {
  position: relative;
  *zoom: 1;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  border-radius: 4px;
  /* Background color behind image.
     This is visible during transitions. */
  background-color: white;
}

.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0;
}

.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url(../img/icon_lb_loading.gif) no-repeat;
}

.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}

.lb-container > .nav {
  left: 0;
}

.lb-nav a {
  outline: none;
  background-image: url("data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==");
}

.lb-prev, .lb-next {
  height: 100%;
  cursor: pointer;
  display: block;
}

.lb-nav a.lb-prev,
.lb-nav a.lb-next {
  background-image: none;
  transition: opacity 0.3s;
  position: relative;
  opacity: 0;
}

.lb-nav a.lb-prev {
  width: 34%;
  left: 0;
  float: left;
  opacity: 0;
  transition: opacity 0.6s;
}

.lb-nav a.lb-prev:hover {
  opacity: 1;
}

.lb-nav a.lb-prev:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 20px;
  width: 30px;
  height: 30px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-50%) rotate(135deg);
}
@media screen and (max-width:767px) {
  .lb-nav a.lb-prev:after {
    border-right-width: 1px;
    border-bottom-width: 1px;
    width: 2.6666666667vw;
    height: 2.6666666667vw;
  }
}

.lb-nav a.lb-next {
  width: 64%;
  right: 0;
  float: right;
  opacity: 0;
  transition: opacity 0.6s;
}

.lb-nav a.lb-next:hover {
  opacity: 1;
}

.lb-nav a.lb-next:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  width: 30px;
  height: 30px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-50%) rotate(-45deg);
}
@media screen and (max-width:767px) {
  .lb-nav a.lb-next:after {
    border-right-width: 1px;
    border-bottom-width: 1px;
    width: 2.6666666667vw;
    height: 2.6666666667vw;
  }
}

.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  *zoom: 1;
  width: 100%;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-data {
  padding: 0 4px;
  color: #ccc;
}

.lb-data .lb-details {
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1em;
}

.lb-data .lb-caption {
  font-size: 13px;
  font-weight: bold;
  line-height: 1em;
}

.lb-data .lb-caption a {
  color: #4ae;
}

.lb-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #999999;
}

.lb-data .lb-close {
  position: relative;
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  text-align: right;
  outline: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}
@media screen and (max-width:767px) {
  .lb-data .lb-close {
    width: 5.3333333333vw;
    height: 5.3333333333vw;
  }
}

.lb-data .lb-close::before,
.lb-data .lb-close::after {
  content: "";
  display: block;
  width: 1px;
  height: 30px;
  background-color: #fff;
  transform: translate(-50%, -50%) rotate(45deg);
  position: absolute;
  top: 50%;
  left: 50%;
}
@media screen and (max-width:767px) {
  .lb-data .lb-close::before,
  .lb-data .lb-close::after {
    height: 5.3333333333vw;
  }
}

.lb-data .lb-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.lb-data .lb-close:hover {
  cursor: pointer;
  opacity: 1;
}

/*layout
----------------------------------------------*/
.article {
  --article_color_text:#333333;
  --article_color_gray:#999999;
}
.article img {
  height: auto;
  max-width: 100%;
}

.article-l-main {
  margin: 0 auto;
  padding: 60px 0 112px;
  width: calc(100% - 60px);
  max-width: 760px;
  color: var(--article_color_text);
  font-size: 1.6rem;
}
@media screen and (max-width:767px) {
  .article-l-main {
    padding: 10.6666666667vw 5.3333333333vw 24vw;
    width: auto;
    font-size: 4vw;
  }
}

.article-l-contents > :last-child {
  margin-bottom: 0 !important;
}

.article-l-relation {
  background-color: #F4F4F4;
}

.article-l-relation__block {
  margin: 0 auto;
  padding: 75px 0 80px;
  width: calc(100% - 60px);
  max-width: 1000px;
}
@media screen and (max-width:767px) {
  .article-l-relation__block {
    padding: 16vw 5.3333333333vw 21.3333333333vw;
    width: auto;
  }
}
.article-l-relation__block > :last-child {
  margin-bottom: 0 !important;
}

/* utility
----------------------------------------------*/
@media screen and (max-width:767px) {
  .article-u-show-pc {
    display: none !important;
  }
}

@media print, screen and (min-width: 768px) {
  .article-u-show-sp {
    display: none !important;
  }
}

.article-u-bold {
  font-weight: bold !important;
}

.article-u-text-center {
  text-align: center !important;
}

.article-u-text-left {
  text-align: left !important;
}

.article-u-text-right {
  text-align: right !important;
}

/* header
----------------------------------------------*/
.article-header__label {
  margin: 0 0 38px;
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (max-width:767px) {
  .article-header__label {
    margin: 0 0 8vw;
  }
}

.article-header__title {
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1.5385;
}
@media screen and (max-width:767px) {
  .article-header__title {
    line-height: 1.4783;
    font-size: 6.1333333333vw;
  }
}

.article-header__data {
  display: flex;
  flex-wrap: wrap;
  gap: 0 15px;
  margin-top: 13px;
  color: var(--article_color_gray);
  font-size: 1.4rem;
  line-height: 1.5;
}
@media screen and (max-width:767px) {
  .article-header__data {
    gap: 0 4vw;
    margin-top: 2.6666666667vw;
    font-size: 3.4666666667vw;
  }
}
.article-header__data dd {
  margin-left: 0.5em;
}

.article-header__data__item {
  display: flex;
}

/* relation
----------------------------------------------*/
.article-relationtitle {
  margin: 0 0 44px;
  text-align: center;
  font-weight: 600;
  font-size: 2.4rem;
}
@media screen and (max-width:767px) {
  .article-relationtitle {
    margin: 0 0 9.8666666667vw;
    font-size: 5.3333333333vw;
  }
}

.article-relationlist {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media screen and (max-width:767px) {
  .article-relationlist {
    grid-template-columns: repeat(2, 1fr);
    gap: 6.6666666667vw 5.3333333333vw;
  }
}
@media (hover: hover) {
  .article-relationlist a:hover .article-relationlist__image {
    opacity: 0.7;
  }
  .article-relationlist a:hover .article-relationlist__title {
    text-decoration: underline;
  }
}

.article-relationlist__image {
  margin: 0;
  transition: ease opacity 0.3s;
}

.article-relationlist__title {
  margin-top: 20px;
  font-size: 1.5rem;
  line-height: 1.6667;
}
@media screen and (max-width:767px) {
  .article-relationlist__title {
    margin-top: 4vw;
    font-size: 3.7333333333vw;
  }
}

.article-relationlist__data {
  margin-top: 5px;
  font-size: 1.4rem;
  color: var(--article_color_gray);
}
@media screen and (max-width:767px) {
  .article-relationlist__data {
    margin-top: 1.3333333333vw;
    font-size: 3.4666666667vw;
  }
}

/* component
----------------------------------------------*/
/* text */
.article-c-headline-v1 {
  margin: 92px 0 36px;
  font-size: 2.4rem;
  font-weight: 600;
}
@media screen and (max-width:767px) {
  .article-c-headline-v1 {
    margin: 21.3333333333vw 0 6.9333333333vw;
    line-height: 1.6;
    font-size: 5.3333333333vw;
  }
}

.article-c-headline-v2 {
  margin: 57px 0 37px;
  font-size: 2rem;
  font-weight: 600;
}
@media screen and (max-width:767px) {
  .article-c-headline-v2 {
    margin: 17.0666666667vw 0 6.9333333333vw;
    font-size: 4.8vw;
    line-height: 1.6111;
  }
}

.article-c-headline-v3 {
  margin: 41px 0 29px;
  font-size: 1.8rem;
  font-weight: 600;
}
@media screen and (max-width:767px) {
  .article-c-headline-v3 {
    margin: 12.8vw 0 6.9333333333vw;
    font-size: 4.2666666667vw;
    line-height: 1.5625;
  }
}

.article-c-paragraph {
  margin: 1.75em 0 0;
  line-height: 1.75;
  font-weight: 300;
}
@media screen and (max-width:767px) {
  .article-c-paragraph {
    margin: 1.86em 0 0;
    line-height: 1.8667;
  }
}

.article-c-paragraph--gray {
  margin-top: 1.125em;
  line-height: 1.75;
  font-weight: 300;
  color: #999999;
}
@media screen and (max-width:767px) {
  .article-c-paragraph--gray {
    line-height: 1.8667;
  }
}

.article-blockquote {
  border-left: 5px solid #E1E1E1;
  margin: 36px 0 0;
  padding: 0 0 0 20px;
  line-height: 1.75;
}
@media screen and (max-width:767px) {
  .article-blockquote {
    margin: 7.4666666667vw 0 0;
  }
}

.article-c-ollist, .article-c-notelist, .article-c-ullist,
.article-c-ullist-v2 {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 5px;
}
.article-c-ollist > li, .article-c-notelist > li, .article-c-ullist > li,
.article-c-ullist-v2 > li {
  position: relative;
  padding-left: 1em;
}
.article-c-ollist > li:before, .article-c-notelist > li:before, .article-c-ullist > li:before,
.article-c-ullist-v2 > li:before {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  content: "";
  display: block;
}

.article-c-ullist,
.article-c-ullist-v2 {
  margin-top: 36px;
}
@media screen and (max-width:767px) {
  .article-c-ullist,
  .article-c-ullist-v2 {
    margin-top: 7.4666666667vw;
  }
}
.article-c-ullist > li:before,
.article-c-ullist-v2 > li:before {
  top: 11px;
  left: 4px;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background-color: #000;
}
.article-c-ullist > li > .article-c-ullist-v2,
.article-c-ullist-v2 > li > .article-c-ullist-v2 {
  margin-top: 0.2em;
}

.article-c-ullist-v2 > li:before {
  top: 12px;
  left: 4px;
  width: 5px;
  height: 1px;
  border-radius: 0%;
}

.article-c-notelist {
  margin-top: 20px;
}
@media screen and (max-width:767px) {
  .article-c-notelist {
    margin-top: 6.4vw;
  }
}
.article-c-notelist > li {
  font-size: 1.5rem;
}
@media screen and (max-width:767px) {
  .article-c-notelist > li {
    font-size: 3.7333333333vw;
  }
}
.article-c-notelist > li:before {
  content: "※";
}

.article-c-ollist {
  margin-top: 36px;
  counter-reset: number;
}
@media screen and (max-width:767px) {
  .article-c-ollist {
    margin-top: 7.4666666667vw;
  }
}
.article-c-ollist > li {
  padding-left: 1.2em;
  counter-increment: number;
}
.article-c-ollist > li:before {
  content: counter(number) ".";
}

/* figure */
.article-c-kv {
  margin: 63px 0;
}
@media screen and (max-width:767px) {
  .article-c-kv {
    margin: 10.6666666667vw 0;
  }
}

@media print, screen and (min-width: 768px) {
  .article-c-figure {
    margin: 36px 0 45px;
  }
  .article-c-figure[data-grid="1"] {
    display: flex;
    justify-content: center;
  }
  .article-c-figure[data-grid="1"][data-size=portrait] .article-c-figure__item {
    width: 428px;
  }
  .article-c-figure[data-grid="1"][data-size=landscape] .article-c-figure__item {
    width: 560px;
  }
  .article-c-figure[data-grid="2"] {
    display: grid;
    gap: 40px 32px;
    grid-template-columns: 1fr 1fr;
  }
  .article-c-figure[data-grid="3"] {
    display: grid;
    gap: 40px 32px;
    grid-template-columns: 1fr 1fr 1fr;
  }
  .article-c-figure[data-grid="4"] {
    display: grid;
    gap: 40px 32px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media screen and (max-width:767px) {
  .article-c-figure {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8.5333333333vw 5.3333333333vw;
    margin: 7.4666666667vw 0;
  }
  .article-c-figure[data-grid-sp="2"] {
    grid-template-columns: 1fr 1fr;
  }
}

.article-c-figure__item {
  font-size: 1.5rem;
  line-height: 1.6667;
}
@media screen and (max-width:767px) {
  .article-c-figure__item {
    font-size: 3.7333333333vw;
  }
}

.article-c-figure__image {
  margin: 0;
}
.article-c-figure__image + * {
  margin-top: 15px;
}
@media screen and (max-width:767px) {
  .article-c-figure__image + * {
    margin-top: 3.4666666667vw;
  }
}

.article-c-media {
  display: grid;
  grid-template-columns: 364px 1fr;
  gap: 32px;
}
@media screen and (max-width:767px) {
  .article-c-media {
    grid-template-columns: 100%;
    gap: 4vw;
  }
}

.article-c-media__detail > :first-child {
  margin-top: 0 !important;
}
.article-c-media__detail .article-c-paragraph {
  margin-top: 1em;
  font-size: 1.5rem;
  line-height: 1.6667;
}
@media screen and (max-width:767px) {
  .article-c-media__detail .article-c-paragraph {
    font-size: 3.7333333333vw;
    line-height: 1.6429;
  }
}

.article-c-media__title {
  margin-bottom: 23px;
  font-weight: bold;
  font-size: 1.5rem;
}
@media screen and (max-width:767px) {
  .article-c-media__title {
    margin-bottom: 2.6666666667vw;
    font-size: 3.7333333333vw;
  }
}
.article-c-media__title + .article-c-paragraph {
  margin-top: 0;
}

.article-c-slider {
  margin: 40px auto 0;
  max-width: 560px;
  position: relative;
}
@media screen and (max-width:767px) {
  .article-c-slider {
    margin: 8.5333333333vw auto 0;
    max-width: 100%;
  }
}

.article-c-slider__list {
  position: relative;
}
.article-c-slider__list .swiper-slide img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
}

.article-c-slider__thumbnails {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin: 24px 0 0;
}
@media screen and (max-width:767px) {
  .article-c-slider__thumbnails {
    display: none;
  }
}
.article-c-slider__thumbnails > img {
  border: 1px solid #fff;
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  cursor: pointer;
  opacity: 0.6;
  transition: ease all 0.3s;
}
.article-c-slider__thumbnails > img:hover {
  opacity: 1;
}
.article-c-slider__thumbnails > img.is-current {
  opacity: 1;
  border-color: #333333;
}

.article-c-slider-button {
  position: absolute;
  z-index: 2;
  top: calc(50% - 15px);
  height: 30px;
  width: 30px;
  display: block;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  padding: 0;
  cursor: pointer;
}
@media screen and (max-width:767px) {
  .article-c-slider-button {
    height: 6.6666666667vw;
    width: 6.6666666667vw;
    border: none;
    background-color: #fff;
  }
}
.is-no-slider .article-c-slider-button {
  display: none !important;
}
@media print, screen and (min-width: 768px) {
  .article-c-slider-button:hover {
    opacity: 0.6;
  }
}
.article-c-slider-button.is-prev {
  left: -38px;
}
@media screen and (max-width:767px) {
  .article-c-slider-button.is-prev {
    left: 1px;
  }
}
.article-c-slider-button.is-prev:before {
  position: absolute;
  z-index: 2;
  top: 5px;
  left: 10px;
  width: 18px;
  height: 18px;
  transform: rotate(45deg);
  border-bottom: 1px solid #333333;
  border-left: 1px solid #333333;
  content: "";
  display: inline-block;
  transition: ease all 0.3s;
}
@media screen and (max-width:767px) {
  .article-c-slider-button.is-prev:before {
    top: 1.6vw;
    left: 2.4vw;
    width: 2.6666666667vw;
    height: 2.6666666667vw;
    border-bottom: 1px solid #999999;
    border-left: 1px solid #999999;
  }
}
.article-c-slider-button.is-next {
  right: -38px;
}
@media screen and (max-width:767px) {
  .article-c-slider-button.is-next {
    right: 1px;
  }
}
.article-c-slider-button.is-next:before {
  position: absolute;
  z-index: 2;
  top: 5px;
  left: 0;
  width: 18px;
  height: 18px;
  transform: rotate(45deg);
  border-top: 1px solid #333333;
  border-right: 1px solid #333333;
  content: "";
  display: inline-block;
  transition: ease all 0.3s;
}
@media screen and (max-width:767px) {
  .article-c-slider-button.is-next:before {
    top: 1.6vw;
    left: 0.8vw;
    width: 2.6666666667vw;
    height: 2.6666666667vw;
    border-top: 1px solid #999999;
    border-right: 1px solid #999999;
  }
}

@media print, screen and (min-width: 768px) {
  .article-c-slider-pagenation {
    display: none;
  }
}
@media screen and (max-width:767px) {
  .article-c-slider-pagenation {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5.3333333333vw;
  }
}
.article-c-slider-pagenation .swiper-pagination-bullet {
  opacity: 1;
  background-color: #E1E1E1;
}
.article-c-slider-pagenation .swiper-pagination-bullet-active {
  background-color: #999999;
}

/* link */
.article-c-link {
  margin-top: 15px;
  font-size: 1.5rem;
}
@media screen and (max-width:767px) {
  .article-c-link {
    margin-top: 1.0666666667vw;
    font-size: 3.7333333333vw;
  }
}
.article-c-link a {
  position: relative;
  padding-right: 1em;
  padding-bottom: 1px;
  display: inline-block;
}
@media (hover: hover) {
  .article-c-link a:hover:before {
    opacity: 0;
  }
}
.article-c-link a:before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  display: block;
  background-color: var(--article_color_text);
}
.article-c-link a:after {
  position: absolute;
  top: calc(50% - 4px);
  right: 3px;
  z-index: 2;
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
  border-top: 1px solid var(--article_color_text);
  border-right: 1px solid var(--article_color_text);
  content: "";
  display: inline-block;
  transition: ease all 0.3s;
}
@media screen and (max-width:767px) {
  .article-c-link a:after {
    top: calc(50% - 5px);
  }
}

.article-c-paragraph > a {
  text-decoration: underline;
}
.article-c-paragraph > a:hover {
  text-decoration: none;
}

@media print, screen and (min-width: 768px) {
  .article-c-button {
    margin-top: 40px;
    margin-bottom: 80px;
    display: grid;
    justify-content: center;
    align-items: center;
  }
  .article-c-button[data-grid="1"] {
    gap: 32px;
    grid-template-columns: 100%;
  }
  .article-c-button[data-grid="2"] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .article-c-button[data-grid="2"] a {
    min-width: 0;
    width: 100%;
  }
}
@media screen and (max-width:767px) {
  .article-c-button {
    display: grid;
    grid-template-columns: 100%;
    gap: 6.4vw;
    margin-top: 8.5333333333vw;
    margin-bottom: 21.3333333333vw;
  }
}
.article-c-button a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--article_color_text);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 428px;
  max-width: 100%;
  min-height: 80px;
  margin: 0 auto;
  padding: 10px 40px;
  font-weight: 300;
  line-height: 1.5625;
  text-align: center;
  font-size: 1.6rem;
}
@media (hover: hover) {
  .article-c-button a {
    transition: ease all 0.5s;
  }
  .article-c-button a:hover {
    background-color: var(--article_color_text);
    color: #fff;
  }
}
@media screen and (max-width:767px) {
  .article-c-button a {
    min-width: 0;
    width: 100%;
    min-height: 18.6666666667vw;
    padding: 1.3333333333vw 8vw;
    font-size: 4vw;
  }
}
.article-c-button a:after {
  position: absolute;
  top: calc(50% - 4px);
  right: 30px;
  z-index: 2;
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  content: "";
  display: inline-block;
  transition: ease all 0.3s;
}
@media screen and (max-width:767px) {
  .article-c-button a:after {
    right: 20px;
  }
}

.article-c-button--white a {
  background-color: #fff;
}

/* box */
.article-c-supervisor {
  border: 1px solid #E1E1E1;
  margin: 76px auto 0;
  padding: 32px;
  max-width: 628px;
  display: flex;
  align-items: flex-start;
  gap: 0 32px;
}
@media screen and (max-width:767px) {
  .article-c-supervisor {
    flex-direction: column;
    margin: 16vw 0 21.3333333333vw;
    padding: 8vw 5.3333333333vw;
    max-width: 100%;
    gap: 6.4vw;
  }
}

.article-c-supervisor__image {
  flex-shrink: 0;
  width: 134px;
}
@media screen and (max-width:767px) {
  .article-c-supervisor__image {
    width: 41.6vw;
    margin: 0 auto;
  }
}

.article-c-supervisor__detail {
  flex-grow: 1;
}
.article-c-supervisor__detail .article-c-link {
  margin-top: 6px;
  font-size: 1.4rem;
}
@media screen and (max-width:767px) {
  .article-c-supervisor__detail .article-c-link {
    margin-top: 1.6vw;
    font-size: 3.7333333333vw;
  }
}

.article-c-supervisor__position {
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 600;
}
@media screen and (max-width:767px) {
  .article-c-supervisor__position {
    font-size: 3.4666666667vw;
  }
}

.article-c-supervisor__name {
  margin-top: 5px;
  font-weight: 600;
}
@media screen and (max-width:767px) {
  .article-c-supervisor__name {
    margin-top: 1.3333333333vw;
    font-size: 4.2666666667vw;
  }
}

.article-c-supervisor__text {
  margin-top: 10px;
  font-size: 1.5rem;
  line-height: 1.6667;
  font-weight: 300;
}
@media screen and (max-width:767px) {
  .article-c-supervisor__text {
    margin-top: 3.4666666667vw;
    font-size: 3.7333333333vw;
  }
}

.article-c-company {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 32px;
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
  margin: 120px 0;
  padding: 30px 0;
}
@media screen and (max-width:767px) {
  .article-c-company {
    margin: 25.6vw 0;
    padding: 8.8vw 0;
    gap: 4.5333333333vw;
    grid-template-columns: 100%;
  }
}

.article-c-company__image {
  text-align: center;
}
@media screen and (max-width:767px) {
  .article-c-company__image {
    margin: 0 auto;
    width: 40vw;
  }
}

.article-c-company__detail .article-c-link {
  margin-top: 4px;
}
@media screen and (max-width:767px) {
  .article-c-company__detail .article-c-link {
    margin-top: 2.6666666667vw;
  }
}

.article-c-company__name {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.6667;
}
@media screen and (max-width:767px) {
  .article-c-company__name {
    font-size: 3.7333333333vw;
  }
}

.article-c-company__text {
  margin-top: 0.6em;
  font-size: 1.5rem;
  line-height: 1.6667;
}
@media screen and (max-width:767px) {
  .article-c-company__text {
    line-height: 1.6429;
    font-size: 3.7333333333vw;
  }
}

.article-c-sns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 15px 0 0;
}
@media screen and (max-width:767px) {
  .article-c-sns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

.article-c-sns__link {
  display: flex;
  align-items: center;
  gap: 0 5px;
  color: #333333;
}
.article-c-sns__link:before {
  display: block;
  content: "";
  width: 25px;
  aspect-ratio: 1/1;
  background: 50% 50% no-repeat;
  background-size: contain;
}
.article-c-sns__link.is-fb:before {
  background-image: url(../img/icon_sns_fb.svg);
}
.article-c-sns__link.is-ig:before {
  background-image: url(../img/icon_sns_ig.svg);
}
.article-c-sns__link.is-x:before {
  background-image: url(../img/icon_sns_x.svg);
}
.article-c-sns__link:hover {
  text-decoration: underline;
}

.article-c-index {
  margin: 96px 0 92px;
  background-color: #F4F4F4;
}
@media screen and (max-width:767px) {
  .article-c-index {
    margin: 21.3333333333vw 0;
  }
}

.article-c-index__switch {
  position: relative;
  display: block;
  background: none;
  border: none;
  width: 100%;
  padding: 30px 40px;
  font-size: 1.6rem;
  font-weight: 300;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  text-align: left;
  transition: ease opacity 0.3s;
}
@media screen and (max-width:767px) {
  .article-c-index__switch {
    padding: 8vw 5.3333333333vw;
    font-size: 4vw;
  }
}
.article-c-index__switch:after {
  position: absolute;
  top: calc(50% - 6px);
  right: 45px;
  z-index: 2;
  width: 10px;
  height: 10px;
  transform: rotate(135deg);
  border-top: 2px solid var(--article_color_text);
  border-right: 2px solid var(--article_color_text);
  content: "";
  display: inline-block;
  transition: ease all 0.3s;
}
@media screen and (max-width:767px) {
  .article-c-index__switch:after {
    top: calc(50% - 5px);
    right: 20px;
    width: 6px;
    height: 6px;
  }
}
.is-open .article-c-index__switch:after {
  transform: rotate(-45deg);
}
@media (hover: hover) {
  .article-c-index__switch:hover {
    opacity: 0.6;
  }
}

.article-c-index__body {
  padding: 0 40px;
  display: none;
}
@media screen and (max-width:767px) {
  .article-c-index__body {
    padding: 0 5.3333333333vw;
  }
}

.article-c-index__list {
  margin-top: -20px;
  padding-bottom: 10px;
}
@media screen and (max-width:767px) {
  .article-c-index__list {
    margin-top: -5.3333333333vw;
    padding-bottom: 2.6666666667vw;
  }
}
.article-c-index__list a {
  display: block;
  padding: 18px 0;
}
@media (hover: hover) {
  .article-c-index__list a:hover {
    text-decoration: underline;
  }
}
@media screen and (max-width:767px) {
  .article-c-index__list a {
    padding: 5.3333333333vw 0;
  }
}
.article-c-index__list a + a {
  border-top: 1px solid #E1E1E1;
}

.article-c-table {
  margin: 35px 0 40px;
}
@media screen and (max-width:767px) {
  .article-c-table {
    margin: 26px 0 32px;
  }
}
.article-c-table table {
  width: 100%;
}
.article-c-table th {
  background-color: #F4F4F4;
  text-align: center;
}
.article-c-table th, .article-c-table td {
  border: 1px solid #707070;
  padding: 7px;
  font-size: 1.5rem;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width:767px) {
  .article-c-table th, .article-c-table td {
    font-size: 1.4rem;
  }
}
@media screen and (max-width:767px) {
  .article-c-table.is-sp-scroll {
    overflow-x: auto;
    margin-inline: -5.3333333333vw;
    padding: 0 5.3333333333vw;
  }
  .article-c-table.is-sp-scroll table {
    width: 457px;
  }
}

a[data-lightbox] img {
  transition: ease opacity 0.3s;
}
a[data-lightbox]:hover img {
  opacity: 0.5;
}