@charset "utf-8";

.mainarea p {
  margin-bottom: 0;
}

#contents {
  font-family: 'メイリオ', 'Meiryo', 'Hiragino Sans', 'ヒラギノ角ゴシック',
    'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', 'ＭＳ Ｐゴシック', Osaka,
    Verdana, sans-serif;
  font-weight: normal;
}

#contents * {
  border-collapse: collapse;
}

#wrapper {
  background: #fff;
}

#contents .disp-pc {
  display: block;
}

#contents .disp-sp {
  display: none;
}

@media screen and (max-width: 850px) {
  #contents .disp-pc {
    display: none;
  }

  #contents .disp-sp {
    display: block;
  }
}

/* contents area */
.visit-contents {
  width: 100%;
  background: #f5f5f5;
  position: relative;
}

.visit-contents__inner {
  max-width: 800px;
  padding: 0 50px;
  margin: 0 auto;
}

@media screen and (max-width: 850px) {
  .visit-contents__inner {
    max-width: 100%;
    width: 100%;
    padding: 0 20px;
  }
}

.visit-section:nth-of-type(n + 2) {
  margin-top: 64px;
}

.visit-section__inner {
  padding-left: 7.14%;
  padding-right: 7.14%;
}

@media screen and (max-width: 850px) {
  .visit-section__inner {
    padding-left: 4.77%;
    padding-right: 4.77%;
  }
}

/* base style */
.visit-contents img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

@media screen and (max-width: 850px) {
  .visit-contents img {
    width: 100%;
  }
}

.visit-contents sub {
  font-size: 64%;
}

.visit-contents a {
  word-wrap: break-word;
}

/* article-link */
.visit-article-link {
  font-weight: bold;
  text-decoration: none;
  color: #333;
  position: fixed;
  left: 0;
  z-index: 99;
  bottom: 20px;
  transition: 0.3s;
}

@media screen and (max-width: 850px) {
  .visit-article-link {
    left: 0;
  }

  .visit-article-link.is-hide {
    left: -176px;
  }

  .visit-article-link.is-hide .visit-article-link__close {
    display: none;
  }

  .visit-article-link .visit-article-link__close {
    display: block;
  }

  .visit-article-link.is-hide .visit-article-link__image span {
    display: block;
  }

  .visit-article-link .visit-article-link__image span {
    display: none;
  }
}

.visit-article-link:hover {
  color: #333;
  text-decoration: none;
  transition: 0.3s;
}

@media screen and (min-width: 851px) {

  .visit-article-link:hover .visit-article-link__text,
  .visit-article-link:hover .visit-article-link__image {
    opacity: 0.5;
    transition: 0.3s;
  }
}

.visit-article-link__inner {
  display: flex;
  background: #FFF;
  border-radius: 0 100px 100px 0;
  overflow: hidden;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
}

.visit-article-link__text,
.visit-article-link__image {
  transition: 0.3s;
}

.visit-article-link__text {
  width: 195px;
  padding: 6px 7px 4px 12px;
}

@media screen and (max-width: 850px) {
  .visit-article-link__text {
    width: 176px;
    padding: 8px 13px 4px 12px;
  }
}

.visit-article-link__ttl {
  margin-top: 5px;
  line-height: 1.28;
  text-indent: -0.5em;
}

@media screen and (max-width: 850px) {
  .visit-article-link__ttl {
    margin-top: 5px;
    font-size: 12px;
    line-height: 1.3;
  }
}

.visit-article-link__sub-ttl {
  font-size: 12px;
}

@media screen and (max-width: 850px) {
  .visit-article-link__sub-ttl {
    font-size: 10px;
  }
}

.visit-article-link__sub-ttl span {
  margin-right: 9px;
  padding: 0 7px;
  font-size: 12px;
  background: #D8D8D8;
}

@media screen and (max-width: 850px) {
  .visit-article-link__sub-ttl span {
    margin-right: 7px;
    padding: 0 8px;
    font-size: 10px;
  }
}

.visit-article-link__image span {
  display: none;
}

@media screen and (max-width: 850px) {
  .visit-article-link__image {
    width: 75px;
    height: 66px;
    position: relative;
  }

  .visit-article-link__image span {
    font-size: 11px;
    color: #FFF;
    position: absolute;
    bottom: 0;
    left: 10px;
    text-shadow: 0 3px 5px rgba(0, 0, 0);
  }

  .visit-article-link__image span::after {
    content: '';
    width: 20px;
    height: 23px;
    background: url(/static/files/cleague/img/visit/01/arrow.svg)center center/contain no-repeat;
    position: absolute;
    top: 50%;
    right: -18px;
    transform: translateY(-50%);
  }
}

.visit-article-link__close {
  display: none;
}

@media screen and (max-width: 850px) {
  .visit-article-link__close {
    display: block;
    cursor: pointer;
    position: absolute;
    top: -8px;
    right: -4px;
  }
}

/* breadcrumb */
.visit-breadcrumb {
  max-width: 800px;
  padding: 16px 50px;
  margin: 0 auto;
}

@media screen and (max-width: 850px) {
  .visit-breadcrumb {
    max-width: 100%;
    width: 100%;
    padding: 12px;
  }
}

.visit-breadcrumb__item {
  display: inline;
  font-size: 14px;
  line-break: 1.2;
}

.visit-breadcrumb__item:not(:last-child)::after {
  content: '/';
  display: inline;
  font-size: 14px;
  line-break: 1.2;
  padding: 0 12px;
}

.visit-breadcrumb__item a {
  color: #333;
}

/* kv */
.visit-kv {
  width: 100%;
}

.visit-kv img {
  max-width: none;
  width: 100%;
  height: auto;
}

/* heading */
.visit-heading-01 {
  font-size: 24px;
  line-height: 1.2;
  font-weight: bold;
  padding: 21px 24px;
  border-left: 8px solid #333;
  background: #eaeaea;
  margin: 40px 0;
}

@media screen and (max-width: 850px) {
  .visit-heading-01 {
    font-size: 18px;
    padding: 24px 12px;
    border-left-width: 6px;
  }
}

/* key visual */
#contents .visit-main-title {
  width: 100%;
  height: auto;
}

/* index */
.visit-index {
  background: #fff;
  border: 1px solid #d8d8d8;
  padding: 32px 7.14%;
  margin: 47px auto 50px;
}

@media screen and (max-width: 850px) {
  .visit-index {
    padding: 18px 4.77% 16px;
  }
}

.visit-index__title {
  font-size: 20px;
  line-height: 1.2;
  font-weight: bold;
  padding-bottom: 14px;
  border-bottom: 3px solid #333;
  margin-bottom: 20px;
}

@media screen and (max-width: 850px) {
  .visit-index__title {
    font-size: 18px;
    padding-bottom: 14px;
  }
}

.visit-index__list {
  padding-left: 1em;
}

.visit-index__list li::before {
  content: '・';
  display: inline-block;
  font-size: 16px;
  color: #0015b7;
  text-indent: -1em;
}

.visit-index__list li:nth-child(n + 2) {
  margin-top: 8px;
}

@media screen and (max-width: 850px) {
  .visit-index__list li:nth-child(n + 2) {
    margin-top: 10px;
  }
}

.visit-index__list a {
  font-size: 16px;
  line-height: 1.2;
  color: #0015b7;
  text-decoration: underline;
}

@media screen and (max-width: 850px) {
  .visit-index__list a {
    font-size: 14px;
  }
}

/* figure */
.visit-figure {
  display: block;
  margin: 24px auto;
}

/* text */
.visit-text {
  font-size: 16px;
  line-height: 1.5;
  margin: 24px 0;
}

@media screen and (max-width: 850px) {
  .visit-text {
    font-size: 14px;
    line-height: 1.57;
  }
}

.visit-text>a {
  color: #0015B7;
  text-decoration: underline;
}

.visit-text>span,
.visit-comment__text>span {
  font-weight: bold;
  background: linear-gradient(transparent 60%, #ffffc3 0%);
  display: inline;
  padding: 0 2px;
}

/* list */
.visit-order-list {
  font-size: 16px;
  line-height: 1.5;
  margin: 24px 0;
  padding-left: 2em;
}

.visit-order-list li {
  text-indent: -2em;
}

@media screen and (max-width: 850px) {
  .visit-order-list {
    font-size: 14px;
    line-height: 1.57;
  }
}


/* comment */
.visit-comment {
  display: flex;
  align-items: center;
  margin: 24px 0;
}

.visit-comment__avatar {
  width: 42px;
  margin-right: 12px;
}

.visit-comment__avatar-img {
  display: block;
  width: 42px;
  height: 42px;
  margin: 0 auto;
  border: 2px solid #707070;
  border-radius: 50%;
  overflow: hidden;
}

.visit-comment__avatar-text {
  display: block;
  font-size: 10px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  margin-top: 5px;
}

.visit-comment__text {
  font-size: 16px;
  line-height: 1.57;
  flex: 1;
}

@media screen and (max-width: 850px) {
  .visit-comment__text {
    font-size: 14px;
  }
}


.visit-aside {
  margin-top: 20px;
  background: #FFF;
  border: 1px solid #D8D8D8;
  text-align: center;
  padding: 25px;
  font-size: 14px;
  line-height: 1.7;
  font-weight: bold;
}

.visit-aside a {
  color: #0015B7;
  text-decoration: underline;
}


@media screen and (max-width: 850px) {
  .visit-aside {
    padding: 16px 5.2%;
    font-size: 12px;
  }
}

/* social */
.social {
  margin-top: 0;
  background: #f5f5f5;
}

.social:first-of-type {
  padding-top: 104px;
}

@media screen and (max-width: 850px) {
  .social:first-of-type {
    padding-top: 50px;
  }

  .social a:not(:last-of-type) {
    margin-bottom: 0;
  }
}

@media screen and (min-width: 851px) {
  .social a {
    width: 250px;
  }
}


/*add*/
footer {
  margin-top: 0;
}

.cont1k {
  margin-top: 0
}

.social {
  padding-bottom: 100px;
}

.social .social {
  padding-bottom: 0;
}

@media screen and (max-width: 850px) {
  footer {
    margin-top: 0;
    padding-top: 0;
  }

  .social {
    padding-bottom: 40px;
  }

  .social .social {
    padding-bottom: 0;
  }
}

/* 202303調整追加 */

.l-sub-logo,
.l-nav {
  background: #f5f5f5;
}

.visit-contents {
  letter-spacing: 0;
}

.visit-contents a {
  text-decoration: underline;
}

.visit-aside *,
.visit-article-link * {
  font-weight: bold;
}

.visit-contents .visit-article-link {
  text-decoration: none;
}

.visit-article-link__ttl {
  font-size: 14px;
}

.visit-article-link__image {
  width: 75px;
}

.social {
  text-align: center;
}

.social a {
  display: inline-block;
  line-height: 1;
  margin: 0 10px;
  -o-object-fit: contain;
  object-fit: contain;
}

.social img {
  width: 100%;
}

@media screen and (max-width: 850px) {

  .visit-article-link__ttl {
    font-size: 12px;
  }

  .social a {
    width: 80%;
    margin: 15px;
  }
}
