@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  line-height: 1;
  -webkit-text-size-adjust: 100%;
}

img {
  border: 0;
  vertical-align: bottom;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

sub {
  vertical-align: sub;
}

sup {
  vertical-align: super;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

pre {
  white-space: pre-wrap;
}

/* base
---------------------------------------------------------------------------- */
/*------------- General Elements -------------*/
html {
  font-size: 62.5%;
  background-color: #fff;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.75;
  width: 100%;
  overflow-y: scroll;
}
@media screen and (min-width: 600px) {
  body {
    font-size: 1.5rem;
  }
}
@media print, screen and (min-width: 1024px) {
  body {
    font-size: 1.5rem;
  }
}
@media all and (-ms-high-contrast: none) {
  body {
    font-family: "Noto Sans JP", "メイリオ", Meiryo, Verdana, sans-serif;
  }
}

a {
  text-decoration: none;
  color: #000;
  outline: none;
  cursor: pointer;
}
@media print, screen and (min-width: 1024px) {
  a {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  a:hover {
    opacity: 0.6;
  }
}
a:hover, a:active, a:focus {
  text-decoration: none;
}

img {
  max-width: 100%;
  width: 100%;
}

* {
  word-break: break-all;
}

/* 共通
---------------------------------------------------------------------------- */
.inner {
  max-width: 1280px;
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  .inner {
    width: 92%;
  }
}
@media screen and (min-width: 600px) {
  .inner {
    width: 90%;
  }
}

.note {
  color: #666;
  font-size: 1.1rem;
}
@media screen and (min-width: 600px) {
  .note {
    font-size: 1.2rem;
  }
}

.pink {
  color: #ed1e79;
}

.is-hide {
  display: none;
}

.is-show {
  display: block !important;
}

.modalBg {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: rgba(0, 0, 0, 0.5);
  z-index: 101;
}

/* パンくず
---------------------------------------------------------------------------- */
.breadcrumb {
  padding: 10px 10px 10px 10px;
  line-height: 1;
}
.breadcrumb__item {
  display: inline;
  position: relative;
}
.breadcrumb__item:nth-child(n+2) {
  margin-left: 8px;
  position: relative;
}
.breadcrumb__item:nth-child(n+2)::before {
  position: relative;
  display: inline-block;
  content: "";
  left: -4px;
  top: 0.15em;
  border-top: 1px solid #666;
  border-right: 1px solid #666;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  width: 5px;
  height: 5px;
}
.breadcrumb__txt {
  color: #666;
  font-size: 1rem;
  line-height: 1.8;
}

@media screen and (min-width: 600px) {
  .breadcrumb {
    padding-bottom: 40px;
  }
  .breadcrumb__item:nth-child(n+2)::after {
    width: 6px;
    height: 6px;
  }
  .breadcrumb__txt {
    font-size: 1.2rem;
    line-height: 1.5;
  }
}
/* タイトル系
---------------------------------------------------------------------------- */
.heading {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 5px;
}
.heading__ttl01 {
  font-size: 2rem;
  line-height: 1.2;
}
.heading__ttl02 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1.8rem;
  line-height: 1.3333333333;
  position: relative;
  margin-bottom: 10px;
  padding-left: 15px;
}
.heading__ttl02::before {
  position: absolute;
  content: "";
  left: 0;
  top: 1px;
  width: 5px;
  height: 100%;
}
.heading__ttl02_border_gray::before {
  background: #808080;
}
.heading__ttl02_border_skyblue::before {
  background: #33c4e8;
}
.heading__ttl02_border_orange::before {
  background: #ff9b33;
}
.heading__ttl02_border_green::before {
  background: #33ccc2;
}
.heading__ttl02_border_pink::before {
  background: #ed1e79;
}
.heading__total {
  color: #666;
  font-size: 1.4rem;
  line-height: 1.1428571429;
  font-weight: 600;
}
.heading__total span {
  font-size: 3rem;
  font-family: "Hind", sans-serif;
  font-weight: 700;
}

@media screen and (min-width: 600px) {
  .heading__ttl01 {
    font-size: 3rem;
    line-height: 1.3666666667;
    margin-bottom: 20px;
  }
  .heading__ttl02 {
    font-size: 2.6rem;
    line-height: 1.3076923077;
    padding-left: 28px;
    margin-bottom: 25px;
  }
  .heading__ttl02::before {
    width: 8px;
  }
  .heading__total {
    font-size: 2.8rem;
    line-height: 1.0714285714;
    font-weight: 600;
    margin-bottom: 15px;
  }
  .heading__total span {
    font-size: 4.8rem;
  }
}
@media print, screen and (min-width: 1024px) {
  .heading__ttl01 {
    font-size: 3.4rem;
  }
  .heading__ttl02 {
    font-size: 3rem;
    padding-left: 34px;
  }
  .heading__ttl02::before {
    top: 2px;
    width: 10px;
  }
}
/* 下層 見出し
---------------------------------------------------------------------------- */
/* lead
---------------------------------------------------------------------------- */
.lead {
  position: relative;
  margin-bottom: 20px;
}
.lead::after {
  position: absolute;
  content: "";
  right: 0;
  top: -58px;
  width: 236px;
  height: 71px;
  background: url(/_assets/images/common/lead_bg.png) no-repeat center center/100%;
  z-index: -1;
}
.lead__heading {
  margin-bottom: 5px;
}
.lead__heading__ttl {
  position: relative;
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: 600;
}
#content .lead__heading__ttl, #seminar .lead__heading__ttl, #document .lead__heading__ttl {
  padding-left: 60px;
}
.lead__heading__ttl::before {
  position: absolute;
  content: "";
  width: 42px;
  height: 39px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
}
.lead__heading__txt {
  font-size: 1.4rem;
  line-height: 1.7142857143;
  margin: 15px 0 0 0;
}
@media screen and (max-width: 599px) {
  .lead__heading__txt br {
    display: none;
  }
}
.lead__heading__total {
  font-size: 1.4rem;
  line-height: 1.1428571429;
  font-weight: 600;
  padding: 0 10px;
  margin: 5px 0 0 0;
}
@media screen and (max-width: 599px) {
  #content .lead__heading__total, #document .lead__heading__total {
    position: absolute;
  }
}
.lead__heading__total span {
  font-family: "Hind", sans-serif;
  font-weight: 700;
  font-size: 3rem;
  padding: 0 1px 0 2px;
}
@media screen and (max-width: 599px) {
  .lead .search,
  .lead .search__bottom2__wrapper {
    display: none;
  }
}

@media screen and (min-width: 600px) {
  .lead::after {
    top: -55px;
  }
  .lead__heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 25px;
  }
  .lead__heading__ttl {
    font-size: 2.6rem;
    line-height: 1.3846153846;
    font-weight: 600;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    padding-right: 30px;
    padding-bottom: 20px;
  }
}
@media screen and (min-width: 600px) and (min-width: 1024px) {
  .lead__heading__ttl {
    padding-bottom: 0;
  }
}
@media screen and (min-width: 600px) {
  #content .lead__heading__ttl, #seminar .lead__heading__ttl, #document .lead__heading__ttl {
    padding-left: 85px;
  }
  .lead__heading__ttl::before {
    width: 66px;
    height: 62px;
  }
  .lead__heading__txt {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    font-size: 1.4rem;
    line-height: 1.7142857143;
    margin: 10px 0;
  }
  .lead__heading__total {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    white-space: nowrap;
    font-size: 3rem;
    line-height: 1;
    font-weight: 600;
    padding: 0;
    margin: 13px 0 0 25px;
  }
  .lead__heading__total span {
    font-size: 5.4rem;
  }
}
@media print, screen and (min-width: 1024px) {
  .lead__heading {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .lead__heading__ttl {
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
    font-size: 3rem;
  }
  .lead__heading__txt {
    -webkit-box-flex: inherit;
        -ms-flex-positive: inherit;
            flex-grow: inherit;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
    font-size: 1.5rem;
    padding: 0 0 0 30px;
    border-left: 1px solid #ccc;
    margin: 0;
  }
}
/* ボタン系
---------------------------------------------------------------------------- */
/* すべて表示 */
.btn-show {
  color: #666;
  position: relative;
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 600;
  padding-right: 22px;
}
.btn-show::after {
  position: absolute;
  content: "";
  top: 50%;
  border-top: 1px solid #666;
  border-right: 1px solid #666;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  right: 5px;
  width: 8px;
  height: 8px;
}

@media screen and (min-width: 600px) {
  .btn-show {
    font-size: 1.4rem;
    line-height: 1.2142857143;
    font-weight: 600;
  }
  .btn-show::after {
    right: 5px;
    width: 8px;
    height: 8px;
  }
}
/* 黒ボタン */
.btn {
  font-size: 2rem;
  line-height: 1.25;
  font-weight: 600;
  color: #fff;
  text-align: center;
  background: #000;
  display: inline-block;
  padding: 15px 28px;
  border-radius: 6px;
  margin-top: 10px;
}
.is-disable .btn {
  pointer-events: none;
  background: #bbb;
}
.btn__download span {
  padding-right: 20px;
  position: relative;
}
.btn__download span::after {
  position: absolute;
  content: "";
  right: -4px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: url(/_assets/images/content/detail/icn_download_white.svg) no-repeat center center/100%;
}
.btn__link {
  position: relative;
}
.btn__link::after {
  position: absolute;
  content: "";
  right: 18px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

/* クリップ */
.clip__btn button.simplefavorite-button,
.clip__btn button.pointfavorite-button {
  border: none;
  cursor: pointer;
  background: transparent url(/_assets/images/common/icn_clip_gray.svg) no-repeat center left/2rem;
  position: relative;
  padding-left: 32px;
}
.card__clip .clip__btn button.simplefavorite-button, .point__item .clip__btn button.simplefavorite-button,
.card__clip .clip__btn button.pointfavorite-button,
.point__item .clip__btn button.pointfavorite-button {
  background-size: 13px;
  padding-left: 22px;
}
.clip__btn button.simplefavorite-button.active,
.clip__btn button.pointfavorite-button.active {
  background-image: url(/_assets/images/common/icn_clip_pink.svg);
}
.clip__btn button.simplefavorite-button.active .clip__btn__txt,
.clip__btn button.pointfavorite-button.active .clip__btn__txt {
  display: none;
}
.clip__btn button.simplefavorite-button.active:not(.listLoading)::before,
.clip__btn button.pointfavorite-button.active:not(.listLoading)::before {
  -webkit-animation: scaleout 0.5s ease-in-out;
          animation: scaleout 0.5s ease-in-out;
}
.clip__btn button.simplefavorite-button::before,
.clip__btn button.pointfavorite-button::before {
  position: absolute;
  content: "";
  left: -0.6em;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background-color: #ed1e79;
  border-radius: 100%;
  -webkit-animation: none;
          animation: none;
  opacity: 0;
}
@-webkit-keyframes scaleout-load {
  0% {
    -webkit-transform: translateY(-50%) scale(0);
            transform: translateY(-50%) scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-50%) scale(1);
            transform: translateY(-50%) scale(1);
    opacity: 0;
  }
}
@keyframes scaleout-load {
  0% {
    -webkit-transform: translateY(-50%) scale(0);
            transform: translateY(-50%) scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-50%) scale(1);
            transform: translateY(-50%) scale(1);
    opacity: 0;
  }
}
@-webkit-keyframes scaleout {
  0% {
    -webkit-transform: translateY(-50%) scale(0);
            transform: translateY(-50%) scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-50%) scale(1);
            transform: translateY(-50%) scale(1);
    opacity: 0;
  }
}
@keyframes scaleout {
  0% {
    -webkit-transform: translateY(-50%) scale(0);
            transform: translateY(-50%) scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-50%) scale(1);
            transform: translateY(-50%) scale(1);
    opacity: 0;
  }
}
.clip__btn__txt {
  padding-left: 0;
  padding-right: 8px;
}
.clip__btn__txt > span {
  display: inline-block;
  font-size: 1.1rem;
  line-height: 1.6363636364;
  font-weight: 600;
  color: #666;
  border-right: 1px solid #ccc;
  letter-spacing: 0.2em;
  padding-right: 8px;
}
.clip__btn .simplefavorite-button-count,
.clip__btn .pointfavorite-button-count {
  font-size: 1.6rem;
  text-align: left;
  display: inline-block;
  position: relative;
  top: 1px;
  min-width: 1em;
  color: #666;
  font-family: "Hind", sans-serif;
  font-weight: 700;
}

/* ソート */
.tab__sort {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: 10px 0 0 0;
}
.tab__sort__wrapper .tab__sort {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.tab__sort__ttl {
  font-size: 1.2rem;
  line-height: 2;
  margin: 0 5px 0 0;
}
.tab__sort__box {
  position: relative;
}
.tab__sort__box::after {
  position: absolute;
  content: "";
  border-bottom: 1px solid #666;
  border-right: 1px solid #666;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  cursor: pointer;
  pointer-events: none;
  top: 45%;
  right: 3px;
  width: 6px;
  height: 6px;
}
.tab__sort__box select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  cursor: pointer;
  border: none;
  padding-right: 20px;
  font-size: 1.2rem;
  line-height: 2;
  font-weight: 600;
  color: #000;
  background: transparent;
}
.tab__sort__box select::-ms-expand {
  display: none;
}
.tab__sort__box option {
  text-align: right;
}

@media screen and (min-width: 600px) {
  .clip__btn,
  .point__btn {
    position: relative;
  }
  .clip [data-tooltip] > button:not(.active):hover::after,
  .point [data-tooltip] > button:not(.active):hover::after {
    content: "クリップする";
    position: absolute;
    display: block;
    width: 6.5em;
    height: 1.5em;
    padding: 0.2em 0;
    overflow: hidden;
    font-size: 1rem;
    text-align: center;
    text-overflow: ellipsis;
    word-break: break-all;
    white-space: nowrap;
    pointer-events: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    opacity: 0;
    -webkit-animation: tooltipAnimation 0.2s cubic-bezier(1, 0, 0, 1) 0.2s forwards;
            animation: tooltipAnimation 0.2s cubic-bezier(1, 0, 0, 1) 0.2s forwards;
    top: 0;
    left: 1.9rem;
    -webkit-transform: translateX(-50%) translateY(-100%);
            transform: translateX(-50%) translateY(-100%);
    background-color: #f6f6f6;
  }
  @-webkit-keyframes tooltipAnimation {
    0% {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  @keyframes tooltipAnimation {
    0% {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  .tab__sort {
    margin: 10px 0 0;
  }
  .tab__sort__ttl {
    font-size: 1.4rem;
    line-height: 1.8571428571;
    margin-right: 5px;
  }
  .tab__sort__box::after {
    top: 35%;
    width: 8px;
    height: 8px;
  }
  .tab__sort__box select {
    font-size: 1.5rem;
    line-height: 1.6;
    font-weight: 600;
  }
}
/* シェア
---------------------------------------------------------------------------- */
.share {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: end;
  -webkit-box-pack: end;
          justify-content: flex-end;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  margin-top: 20px;
}
.share__btn {
  width: 28px;
  margin-left: 10px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}
.share__btn button.copy-url {
  width: 100%;
  padding: 0;
  border: none;
  height: 100%;
  background: transparent;
  cursor: pointer;
}
.share__btn a:hover {
  opacity: 1;
}
.share__ttl {
  color: #666;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.2em;
  font-weight: 600;
  margin-right: 5px;
  display: block;
}

ul.share__btn__wrap {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  margin: 0;
}

.success-msg {
  display: none;
  position: absolute !important;
  background-color: #ed1e79;
  color: #fff;
  font-size: 1rem;
  padding: 4px 8px;
  width: 120px !important;
  height: auto !important;
  line-height: 1.4;
  top: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin: auto;
  text-align: center;
  border-radius: 5px;
}

.share__side {
  display: none;
  position: relative;
  z-index: 2;
}
.share__side__inner {
  width: 32px;
  margin: 0 25% 0 auto;
}
.share__side .share__btn__wrap {
  display: block;
}
.share__side .share__btn {
  width: 32px;
  margin-top: 15px;
  margin-left: 0;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.share__side .share__btn a:hover {
  opacity: 1;
}
.share__side__ttl {
  color: #666;
  font-size: 1.3rem;
  line-height: 1.3846153846;
  font-weight: 600;
  padding: 0 9px;
  display: block;
}
.share__side button.copy-url {
  width: 100%;
  padding: 0;
  border: none;
  height: 100%;
  background: transparent;
  cursor: pointer;
}

@media screen and (max-width: 599px) {
  .success-msg {
    -webkit-transform: translateX(-72%);
            transform: translateX(-72%);
  }
}
@media screen and (min-width: 600px) {
  .share__btn {
    width: 32px;
    margin-left: 14px;
  }
  .share__ttl {
    font-size: 1.2rem;
    line-height: 1.5;
    letter-spacing: 0.2em;
    font-weight: 600;
    margin-right: 10px;
  }
  .share .share__btn > a,
  .share .share__btn > div,
  .share .share__btn > button,
  .share__side .share__btn > a,
  .share__side .share__btn > div,
  .share__side .share__btn > button {
    position: relative;
    width: 100%;
    height: 100%;
  }
  .share .share__btn > a,
  .share__side .share__btn > a {
    display: block;
  }
  .share [data-tooltip]:hover::after,
  .share__side [data-tooltip]:hover::after {
    position: absolute;
    display: block;
    max-width: 200px;
    padding: 4px 8px;
    overflow: hidden;
    font-size: 1rem;
    text-align: center;
    text-overflow: ellipsis;
    word-break: break-all;
    white-space: nowrap;
    pointer-events: none;
    content: attr(data-tooltip);
    border: 1px solid #ccc;
    border-radius: 4px;
    opacity: 0;
    -webkit-animation: tooltipAnimation 0.2s cubic-bezier(1, 0, 0, 1) 0.2s forwards;
            animation: tooltipAnimation 0.2s cubic-bezier(1, 0, 0, 1) 0.2s forwards;
    top: -5px;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-100%);
            transform: translateX(-50%) translateY(-100%);
    background-color: #f6f6f6;
    -webkit-transition: opacity 0.2s ease-out;
    transition: opacity 0.2s ease-out;
    opacity: 0;
  }
  @-webkit-keyframes tooltipAnimation {
    0% {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  @keyframes tooltipAnimation {
    0% {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  .share [data-tooltip].copied:hover::after,
  .share__side [data-tooltip].copied:hover::after {
    content: "コピーしました";
    opacity: 1;
  }
}
@media print, screen and (min-width: 1024px) {
  .share__side {
    width: calc((100% - 880px) / 2);
    display: block;
  }
  .share__side__inner {
    position: sticky;
    top: 10px;
    -webkit-transition: top 0.3s ease;
    transition: top 0.3s ease;
  }
  .upMove .share__side__inner {
    top: 110px;
  }
}
/* 検索
---------------------------------------------------------------------------- */
.search {
  background: rgba(246, 246, 246, 0.7);
  padding: 18px 32px 18px;
  margin: 0 auto;
}
.search__txt {
  font-size: 1.6rem;
  line-height: 1.1875;
  font-weight: 600;
  text-align: center;
  padding-bottom: 6px;
}
.search-box {
  margin: 12px 0;
  position: relative;
}
.search-box::before {
  position: absolute;
  content: "";
  left: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 17px;
  height: 17px;
  background: url(/_assets/images/common/icn_search.svg) no-repeat center center/100%;
  z-index: 2;
}
.search-box__input {
  border: 1px solid #ccc;
  outline-style: none;
  width: 100%;
  padding: 14px 10px 14px 44px;
  font-size: 1.4rem;
  border-radius: 4px;
}
.header__seek .search-box__input {
  padding-left: 20px;
}
.search__tag {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.search__tag__item {
  margin: 0 15px 0 0;
  display: inline-block;
}
.search__tag__link {
  font-size: 1.3rem;
  line-height: 1.3846153846;
  color: #666;
}
.search__tag__link:hover {
  opacity: 1;
  color: #000;
}
.search__bottom {
  padding: 25px 0 0;
}
.search__cat {
  margin-top: 10px;
}
.search__cat__item:first-child .search__cat_link {
  border-top: 1px solid #ccc;
}
.search__cat_link {
  font-size: 1.4rem;
  line-height: 2.5;
  font-weight: 600;
  border-bottom: 1px solid #ccc;
  text-align: center;
  position: relative;
  display: block;
  padding: 6px 0;
}
@media screen and (min-width: 600px) {
  .search__cat_link {
    padding: 0 14px;
  }
}
.search__cat_link::after {
  position: absolute;
  content: "";
  right: 5px;
  width: 8px;
  height: 8px;
  top: 50%;
  border-top: 1px solid #666;
  border-right: 1px solid #666;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.search__cat_link.is-active {
  background: #000;
  color: #fff;
}
.search__cat_link.is-active::after {
  border-color: #000;
}

#content .search__tag > ul.content {
  display: block;
}
#content .search__tag > ul.default {
  display: none;
}

#seminar .search__tag > ul.seminar {
  display: block;
}
#seminar .search__tag > ul.default {
  display: none;
}

#document .search__tag > ul.document {
  display: block;
}
#document .search__tag > ul.default {
  display: none;
}

@media screen and (min-width: 600px) {
  .search {
    padding: 24px 30px 20px;
    width: 100%;
  }
  .search__top {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-bottom: 20px;
    border-bottom: 1px solid #ccc;
    flex-wrap: wrap;
  }
  .search__txt {
    margin: 0 20px 0 0;
    min-width: 100px;
    text-align: left;
  }
  .search-box {
    margin: 10px 0;
  }
  .search-box::before {
    width: 18px;
    height: 18px;
  }
  .search-box__input {
    width: 394px;
    padding: 11px 10px 11px 45px;
    font-size: 1.4rem;
    border-radius: 8px;
  }
  .search__tag {
    margin-left: 20px;
  }
  .search__tag > ul {
    line-height: 1.4;
  }
  .search__tag__item {
    margin-right: 12px;
  }
  .search__bottom {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
            align-items: center;
    padding: 15px 0 0;
  }
  .search__cat {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 0;
  }
  .search__cat__item {
    margin: 3px 0;
  }
  .search__cat__item:not(:last-child) {
    border-right: 1px solid #ccc;
  }
  .search__cat__item:first-child .search__cat_link {
    border-top: 0;
  }
  .search__cat_link {
    font-size: 1.4rem;
    line-height: 1.5714285714;
    font-weight: 600;
    border-bottom: 0;
    text-align: left;
    padding-bottom: 2px;
  }
  .search__cat_link::after {
    display: none;
  }
}
@media print, screen and (min-width: 1024px) {
  .search {
    padding: 24px 30px 15px;
  }
  .search__top {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .search__txt {
    margin: 0 20px 0 25px;
    min-width: 144px;
  }
  .search-box {
    margin: 0;
  }
  .search__tag {
    margin-left: 35px;
  }
  .search___bottom {
    padding-top: 21px;
  }
  .search__bottom2 {
    padding: 17px 0;
  }
  .search__cat {
    margin-left: -15px;
  }
}
/* card
---------------------------------------------------------------------------- */
.cards {
  position: relative;
}
.theme__box .cards {
  left: -3px;
}
.cards__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 4vw 4%;
}
@media screen and (max-width: 599px) {
  .cards__wrap {
    width: 104%;
    gap: 0;
    margin-left: -2%;
  }
}
@media screen and (min-width: 600px) {
  .cards__wrap {
    gap: 3vw 3%;
  }
}
.theme__box .cards__wrap {
  position: relative;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  width: 100%;
  overflow-x: scroll;
  overflow-y: hidden;
  -ms-overflow-style: none; /* IE, Edge 対応 */
  scrollbar-width: none; /* Firefox 対応 */
  -webkit-overflow-scrolling: touch;
  padding: 10px 5px 10px 3px;
  gap: 0 2%;
}
.theme__box .cards__wrap::-webkit-scrollbar {
  display: none; /* Chrome, Safari 対応 */
}
@media screen and (max-width: 599px) {
  .theme__box .cards__wrap {
    gap: 0;
    width: 105%;
    margin-left: 0;
    margin-bottom: 10px;
  }
}
.cards__wrap::before {
  width: 1px;
  height: 100%;
  left: 6px;
  content: "";
  position: absolute;
  z-index: 999;
}
.cards .card {
  position: relative;
  background: #fff;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  width: 46%;
}
@media screen and (max-width: 599px) {
  .cards .card {
    margin: 2vw 2%;
  }
}
.theme__box .cards .card {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 43%;
          flex: 0 0 43%;
}
@media screen and (max-width: 599px) {
  .theme__box .cards .card {
    margin: 0 3% 0 0;
  }
}
@media screen and (min-width: 600px) {
  .theme__box .cards .card {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 27%;
            flex: 0 0 27%;
  }
}
@media print, screen and (min-width: 1024px) {
  .theme__box .cards .card {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20.2%;
            flex: 0 0 20.2%;
  }
}
@media screen and (min-width: 600px) {
  .cards .card {
    width: 31.3333%;
  }
}
@media print, screen and (min-width: 1024px) {
  .cards .card {
    width: 22.75%;
  }
}
.cards .card__link {
  display: block;
  position: relative;
  height: 100%;
  padding-bottom: 35px;
}
.cards .card__link--feature {
  padding-bottom: 0;
}
.cards .card__body {
  padding: 10px 5px 0 10px;
}
.cards .card__img-wrapper {
  overflow: hidden;
  height: 24.42vw;
  max-height: 160px;
}
@media screen and (min-width: 600px) {
  .cards .card__img-wrapper {
    height: 15.43vw;
  }
}
@media print, screen and (min-width: 1024px) {
  .cards .card__img-wrapper {
    height: 11.2vw;
  }
}
.theme__box .cards .card__img-wrapper {
  height: 22.54vw;
  max-height: 141px;
}
@media screen and (min-width: 600px) {
  .theme__box .cards .card__img-wrapper {
    height: 13.24vw;
  }
}
@media print, screen and (min-width: 1024px) {
  .theme__box .cards .card__img-wrapper {
    height: 9.92vw;
  }
}
.cards .card__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cards .card__desc {
  margin-bottom: 5px;
}
@media screen and (min-width: 600px) {
  .cards .card__desc {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
            align-items: center;
  }
}
.cards .card__desc__label {
  color: #666;
  font-size: 1.2rem;
  line-height: 1.1666666667;
}
@media screen and (min-width: 600px) {
  .cards .card__desc__label {
    font-size: 1.3rem;
  }
  .theme__box .cards .card__desc__label {
    font-size: 1.2rem;
  }
}
.cards .card__desc__label_icn {
  display: inline-block;
  border-radius: 50%;
  margin-right: 5px;
  width: 8px;
  height: 8px;
}
@media screen and (min-width: 600px) {
  .cards .card__desc__label_icn {
    width: 11px;
    height: 11px;
  }
}
.cards .card__desc__label_icn_seminar {
  background: #33c4e8;
}
.cards .card__desc__label_icn_content {
  background: #ff9b33;
}
.cards .card__desc__label_icn_document {
  background: #33ccc2;
}
.cards .card__desc__label_icn_pink {
  background: #ed1e79;
}
.cards .card__desc__label_icn_gray {
  background: #666;
}
.cards .card__desc__date {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
}
@media screen and (min-width: 600px) {
  .cards .card__desc__date {
    font-size: 1.1rem;
    position: relative;
    margin-left: 8px;
    padding-left: 8px;
  }
  .cards .card__desc__date::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0.3em;
    background: #ccc;
    width: 1px;
    height: 13px;
  }
}
.cards .card__ttl {
  margin-bottom: 5px;
  font-size: 1.3rem;
  line-height: 1.4615384615;
  font-weight: 600;
}
@media screen and (min-width: 600px) {
  .cards .card__ttl {
    font-size: 1.6rem;
  }
  .theme__box .cards .card__ttl {
    font-size: 1.45rem;
  }
}
.cards .card__info__item {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.6363636364;
}
@media screen and (min-width: 600px) {
  .cards .card__info__item {
    font-size: 1.2rem;
  }
}
.cards .card__clip {
  position: absolute;
  bottom: 10px;
  left: 15px;
}
.cards .card .badge {
  position: absolute;
  left: 0;
  top: 0;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}
.cards .card .badge__item {
  display: inline-block;
  padding: 0.15em 0.3em;
  background: #fff;
  margin-right: 0.3em;
}
.cards .card .badge__item__new {
  color: #ed1e79;
  border: 1px solid #ed1e79;
  font-family: "Hind", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.2727272727;
  font-weight: 600;
  padding: 0.17em 0.3em 0;
}
@media screen and (min-width: 600px) {
  .cards .card .badge__item__new {
    font-size: 1.2rem;
  }
}
.cards .card .badge__item__deadline {
  color: #00b5e2;
  border: 1px solid #00b5e2;
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 600;
}
@media screen and (min-width: 600px) {
  .cards .card .badge__item__deadline {
    font-size: 1.1rem;
  }
}
.cards .card .badge__item__end {
  color: #808080;
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 600;
  border: 1px solid #808080;
}
.cards .card.is-seminarEnd .card__desc__label_icn {
  background: #808080;
}
.cards .card.is-seminarEnd .card__ttl {
  opacity: 0.3;
}
@media screen and (max-width: 599px) {
  .cards__arrow {
    display: none;
  }
}
.cards__arrow .arrow {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
  z-index: 10;
  border: none;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
.cards__arrow .arrow.next {
  right: -20px;
  background: #fff url(/_assets/images/common/icn_slider_arrow_right.svg) no-repeat center center/12px;
}
.cards__arrow .arrow.prev {
  display: none;
  left: -20px;
  background: #fff url(/_assets/images/common/icn_slider_arrow_left.svg) no-repeat center center/12px;
}
.cards__arrow .arrow.is_disabled {
  display: none;
}

.cards-loading {
  text-align: center;
  font-family: "Hind", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  padding-top: 40px;
}

.cards-noPost {
  display: none;
  text-align: center;
  padding: 50px 0;
}

/* slick
---------------------------------------------------------------------------- */
.slick-arrow {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: transparent;
  cursor: pointer;
  z-index: 10;
  border: none;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 599px) {
  .slick-arrow {
    display: none !important;
  }
}
.slick-arrow.slick-next {
  right: -20px;
  background: #fff url(/_assets/images/common/icn_slider_arrow_right.svg) no-repeat center center/12px;
}
.slick-arrow.slick-prev {
  left: -20px;
  background: #fff url(/_assets/images/common/icn_slider_arrow_left.svg) no-repeat center center/12px;
}
.slick-arrow.slick-disabled, .slick-arrow .slick-next.slick-disabled {
  display: none !important;
}

.slick-dots {
  padding-top: 5px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
}
.slick-dots li.slick-active button {
  background: #000;
}
.slick-dots li button {
  border: none;
  padding: 0;
  border-radius: 50%;
  background: #999;
  width: 8px;
  height: 8px;
  color: transparent;
  margin: 0 4px;
  cursor: pointer;
}

/* theme__box
---------------------------------------------------------------------------- */
.theme__box {
  position: relative;
  padding-bottom: 30px;
}
@media screen and (max-width: 599px) {
  .theme__box {
    margin-bottom: 50px;
  }
  .theme__box .btn-show {
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media screen and (min-width: 600px) {
  .theme__box {
    padding-bottom: 50px;
  }
}

/* クリップとは？ボタン
---------------------------------------------------------------------------- */
.clipModal.afterHeader {
  right: 10px;
  margin-top: 4px;
  position: absolute;
}
@media screen and (max-width: 1023px) {
  .clipModal.afterHeader {
    display: none;
  }
}
.clipModal__btn {
  font-size: 1.2rem !important;
  display: block !important;
  cursor: pointer;
  line-height: 1 !important;
  background: url(../images/common/icn_clip_gray.svg) no-repeat left center/12px;
  margin-top: 4px;
  padding: 0.5em 0;
  padding-left: 16px;
}
.clipModal__btn::before {
  display: none;
}
.clipModal__btn::after {
  display: none;
}
.clipModal__txt {
  line-height: 1;
  color: #000;
}
.clipModal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.6);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 9999;
}
.clipModal-container::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
.clipModal-container.active {
  opacity: 1;
  visibility: visible;
}
.clipModal-body {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 600px;
  width: 98%;
}
.clipModal-close {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: 20px;
  right: 15px;
  width: 24px;
  height: 24px;
  font-size: 3rem;
  color: #666;
  cursor: pointer;
}
@media screen and (min-width: 600px) {
  .clipModal-close {
    top: 25px;
    right: 25px;
    font-size: 4rem;
  }
}
.clipModal-content {
  background: #fff;
  text-align: left;
}
.clipModal-content__head {
  text-align: center;
  background: #F6F6F6;
  padding: 13px 0;
}
@media screen and (min-width: 600px) {
  .clipModal-content__head {
    padding: 17px 0;
  }
}
.clipModal-content__ttl {
  display: inline-block;
  padding-left: 32px;
  font-size: 2.2rem;
  font-weight: bold;
  color: #666;
  background: url(../images/common/icn_clip_gray.svg) no-repeat center left/22px;
}
@media screen and (min-width: 600px) {
  .clipModal-content__ttl {
    font-size: 2.6rem;
    background-size: 24px;
  }
}
.clipModal-content__main {
  padding: 15px 15px 25px;
}
.clipModal-content__main__lead {
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
}
.clipModal-content__main__list {
  margin-top: 20px;
}
.clipModal-content__main__item {
  margin-top: 12px;
}
@media screen and (min-width: 600px) {
  .clipModal-content__main__item {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
            justify-content: center;
    -ms-flex-align: center;
    -webkit-box-align: center;
            align-items: center;
  }
}
.clipModal-content__main__item__num {
  font-size: 4.4rem;
  font-weight: 600;
  font-family: "Hind", sans-serif;
  font-weight: 700;
  color: #999;
  line-height: 1;
  width: 108px;
}
@media screen and (min-width: 600px) {
  .clipModal-content__main__item__num {
    font-size: 5.4rem;
  }
}
.clipModal-content__main__item__num span {
  font-size: 2.4rem;
  display: inline-block;
  line-height: 1;
  margin-right: 8px;
}
@media screen and (min-width: 600px) {
  .clipModal-content__main__item__num span {
    font-size: 3rem;
  }
}
.clipModal-content__main__item__body {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 600px) {
  .clipModal-content__main__item__body {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.clipModal-content__main__item__txt {
  font-size: 1.4rem;
  line-height: 1.5;
  width: 58%;
}
@media screen and (min-width: 600px) {
  .clipModal-content__main__item__txt {
    font-size: 1.5rem;
    width: 220px;
  }
}
.clipModal-content__main__item__img {
  width: 40%;
}
@media screen and (min-width: 600px) {
  .clipModal-content__main__item__img {
    max-width: 140px;
    width: 100%;
  }
}

/* RWD表示切り替え
---------------------------------------------------------------------------- */
.sp, .tb, .pc {
  display: none;
}

@media screen and (max-width: 599px) {
  .sp {
    display: inherit;
  }
}
@media screen and (min-width: 600px) {
  .tb {
    display: inherit;
  }
}
@media print, screen and (min-width: 1024px) {
  .tb {
    display: none;
  }
  .pc {
    display: inherit;
  }
}
.header {
  position: sticky;
  top: 0;
  background: #fff;
  width: 100%;
  z-index: 999;
  border-bottom: 1px solid #ccc;
  padding: 8px 0;
}
@media screen and (min-width: 600px) {
  .header {
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  .header.is-stickyActive {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}
.header__inner {
  text-align: center;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
.header__inner:after {
  content: "";
  display: block;
  clear: both;
}
@media screen and (max-width: 1023px) {
  .header__inner__middle {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #ccc;
  }
}
.header__inner__left {
  float: left;
}
.header__inner__left:after {
  content: "";
  display: block;
  clear: both;
}
.header__inner__right {
  float: right;
  text-align: left;
}
.header__inner__right:after {
  content: "";
  display: block;
  clear: both;
}
.header__inner__right.is_simple {
  display: none;
}
.header__link {
  display: block;
}
.header__link:after {
  content: "";
  display: block;
  clear: both;
}
.header__logo {
  float: left;
  max-width: 43px;
  margin-right: 20px;
}
.header__catch {
  float: left;
  white-space: nowrap;
  font-size: 1.1rem;
  line-height: 1.4545454545;
  letter-spacing: 0.4em;
  margin-top: 6px;
}
.header .gloNav {
  text-align: left;
  display: none;
}
.header__nav {
  width: 92%;
  max-width: 500px;
  margin: 0 auto;
}
.header__nav:after {
  content: "";
  display: block;
  clear: both;
}
.header__nav .gloNav {
  text-align: left;
  display: none;
}
.header__nav__item {
  float: left;
  width: 33.3333%;
}
.header__nav__link {
  text-align: center;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  padding: 8px 0;
}
.header__nav__link:hover {
  opacity: 0.7;
}
.header__nav__link.active:hover {
  opacity: 1;
}
.header__nav__icn {
  width: 40px;
}
.header__nav__ttl {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 600;
  margin-top: 5px;
}
.header__menu {
  float: left;
  margin-top: 0;
}
.header__menu-btn {
  cursor: pointer;
  position: relative;
  z-index: 9999;
  padding-top: 8px;
  min-width: 3em;
}
.header__menu-btn span {
  background: #000;
  display: block;
  margin: 0 auto;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  width: 18px;
  height: 2px;
}
.header__menu-btn span:not(:first-child) {
  margin-top: 4px;
}
.header__menu-btn.active::after {
  position: absolute;
  content: "";
  width: 74px;
  height: 62px;
  right: -20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #f6f6f6;
  z-index: -1;
}
.header__menu-btn.active span:nth-of-type(1) {
  -webkit-transform: translateY(6px) rotate(-45deg);
          transform: translateY(6px) rotate(-45deg);
}
.header__menu-btn.active span:nth-of-type(2) {
  opacity: 0;
}
.header__menu-btn.active span:nth-of-type(3) {
  -webkit-transform: translateY(-6px) rotate(45deg);
          transform: translateY(-6px) rotate(45deg);
}
.header__menu-btn__txt {
  text-align: center;
  white-space: nowrap;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 600;
  margin-top: 11px;
}
.header__menu__panel {
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  background: #f6f6f6;
  opacity: 1;
  visibility: visible;
  display: none;
  -webkit-transition: none;
  transition: none;
}
.header__menu__panel .nav {
  padding: 20px 0;
}
.header__menu__panel .nav__heading {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  margin-bottom: 10px;
}
.header__menu__panel .nav__heading.sp {
  display: none;
}
.header__menu__panel .nav__heading__ttl {
  font-size: 1.8rem;
  line-height: 1.5555555556;
  margin-right: 15px;
}
.header__menu__panel .nav__heading .btn-show {
  font-size: 1.1rem;
  padding-right: 18px;
}
.header__menu__panel .left {
  width: 100%;
  margin: 30px 0;
}
@media screen and (min-width: 600px) {
  .header__menu__panel .left {
    margin: 0;
  }
}
.header__menu__panel .left__list li:last-child a {
  border-bottom: 1px solid #ccc;
}
.header__menu__panel .left__list li a {
  display: block;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  letter-spacing: 0.08em;
  font-weight: 600;
  border-top: 1px solid #ccc;
  padding: 8px 25px 8px 8px;
  position: relative;
}
.header__menu__panel .left__list li a::after {
  position: absolute;
  content: "";
  top: 50%;
  border-top: 1px solid #666;
  border-right: 1px solid #666;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  right: 5px;
  width: 8px;
  height: 8px;
}
.header__menu__panel .middle {
  width: 100%;
  margin-bottom: 20px;
}
.header__menu__panel .middle__list li:last-child a {
  border-bottom: 1px solid #ccc;
}
.header__menu__panel .middle__list li a {
  display: block;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  letter-spacing: 0.08em;
  font-weight: 600;
  border-top: 1px solid #ccc;
  padding: 8px 25px 8px 8px;
  position: relative;
}
.header__menu__panel .middle__list li a::after {
  position: absolute;
  content: "";
  top: 50%;
  border-top: 1px solid #666;
  border-right: 1px solid #666;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  right: 5px;
  width: 8px;
  height: 8px;
}
.header__menu__panel .right {
  width: 100%;
}
.header__menu__panel .right__list li:not(:first-child) {
  margin-top: 8px;
}
.header__menu__panel .right__list li:not(:first-child).clipModal {
  text-align: left;
  padding: 0;
  margin-top: 0;
}
.header__menu__panel .right__list li:not(:first-child).clipModal .clipModal__txt {
  font-size: 1.1rem;
}
.header__menu__panel .right__list li a {
  display: inline-block;
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.08em;
  padding-right: 18px;
  position: relative;
}
.header__menu__panel .right__list li a::after {
  position: absolute;
  content: "";
  top: 50%;
  border-top: 1px solid #666;
  border-right: 1px solid #666;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  right: 5px;
  width: 8px;
  height: 8px;
}
.header__menu__panel .right__tag {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 10px;
}
.header__menu__panel .right__tag li {
  margin-right: 20px;
}
.header__menu__panel .right__tag li a {
  display: inline-block;
  color: #666;
  font-size: 1.2rem;
  line-height: 1.6666666667;
}
.header__menu__panel .right__tag li a:hover {
  opacity: 1;
  color: #000;
}
.header__menu__panel .share {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  padding: 0 0 30px;
}
@media screen and (min-width: 600px) {
  .header__menu__panel .share {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: end;
    -webkit-box-pack: end;
            justify-content: flex-end;
    -ms-flex-align: center;
    -webkit-box-align: center;
            align-items: center;
  }
}
.header__menu__panel .share__btn {
  width: 40px;
  margin-left: 15px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header__menu__panel .share__btn button.copy-url {
  width: 100%;
  padding: 0;
  border: none;
  height: 100%;
  background: transparent;
  cursor: pointer;
}
.header__menu__panel .share__ttl {
  color: #666;
  font-size: 1.2rem;
  line-height: 1.5;
  letter-spacing: 0.2em;
  font-weight: 600;
  margin-right: 5px;
  display: block;
}
.header__menu__panel ul.share__btn__wrap {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  margin: 0;
}
.header__menu__panel .success-msg {
  display: none;
  position: fixed;
  width: 300px;
  height: 40px;
  line-height: 40px;
  background-color: #29aba4;
  color: #fff;
  top: 100px;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  border-radius: 5px;
}
.header__search-box__input {
  max-width: 320px;
  margin: 5px 0 40px;
}

@media screen and (max-width: 599px) {
  .header__seek {
    float: left;
    margin-top: 3px;
  }
  .header__seek-btn {
    text-align: center;
    cursor: pointer;
    width: 54px;
    margin: 0 10px 0 0;
    position: relative;
  }
  .header__seek-btn.active::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 60px;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    background: #f6f6f6;
    z-index: -1;
  }
  .header__seek__img {
    width: 20px;
    margin-bottom: 2px;
  }
  .header__seek__ttl {
    font-size: 1rem;
    line-height: 1.2;
    font-weight: 600;
    margin-top: 5px;
  }
  .header__seek__panel {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #f6f6f6;
    opacity: 1;
    visibility: visible;
    display: none;
    -webkit-transition: none;
    transition: none;
  }
  .header__seek__panel-inner {
    padding: 20px 25px 15px;
    text-align: center;
  }
  .header__seek__panel__txt {
    font-size: 1.8rem;
    line-height: 1.0555555556;
    font-weight: 600;
    padding-bottom: 6px;
  }
  .header__seek__panel__list {
    margin: 10px 0;
  }
  .header__seek__panel__list li {
    border-top: 1px solid #ccc;
  }
  .header__seek__panel__list li:last-child {
    border-bottom: 1px solid #ccc;
  }
  .header__seek__panel__list li a {
    font-size: 1.4rem;
    line-height: 2.5;
    font-weight: 600;
    display: block;
    position: relative;
    padding: 6px 0;
  }
  .header__seek__panel__list li a::after {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    right: 12px;
    top: 50%;
    border-top: 1px solid #666;
    border-right: 1px solid #666;
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
  }
  .header__seek__panel__close {
    font-size: 1.5rem;
    line-height: 1.2;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    padding: 10px 0;
  }
  .header__seek__panel__close span {
    position: relative;
  }
  .header__seek__panel__close span::before {
    position: absolute;
    content: "";
    width: 17px;
    height: 1px;
    background: #666;
    right: -25px;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(-45deg);
            transform: translateY(-50%) rotate(-45deg);
  }
  .header__seek__panel__close span::after {
    position: absolute;
    content: "";
    width: 17px;
    height: 1px;
    background: #666;
    right: -25px;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
  }
  .header__menu__panel-inner {
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 180px;
  }
  .header__menu__panel .close {
    font-size: 1.5rem;
    line-height: 1.2;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    padding: 10px 0;
    text-align: center;
  }
  .header__menu__panel .close span {
    position: relative;
  }
  .header__menu__panel .close span::before {
    position: absolute;
    content: "";
    width: 17px;
    height: 1px;
    background: #666;
    right: -25px;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(-45deg);
            transform: translateY(-50%) rotate(-45deg);
  }
  .header__menu__panel .close span::after {
    position: absolute;
    content: "";
    width: 17px;
    height: 1px;
    background: #666;
    right: -25px;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
  }
}
@media screen and (min-width: 600px) {
  .header {
    padding: 0 0;
  }
  .header__inner {
    padding: 0 20px;
  }
  .header__inner__right {
    margin-top: 12px;
  }
  .header__logo {
    max-width: 70px;
    margin-right: 15px;
    padding: 10px 0;
  }
  .header__catch {
    font-size: 1.2rem;
    line-height: 2.1666666667;
    letter-spacing: 0.4em;
    margin-top: 20px;
  }
  .header__search-box {
    float: left;
    margin-right: 15px;
  }
  .header__search-box__input {
    max-width: 100%;
    width: 200px;
    padding: 15px 10px 15px 43px;
    margin: 0;
  }
  .header__clip {
    float: left;
    text-align: center;
    margin-top: 11px;
    margin-right: 20px;
  }
  .header__clip > a {
    display: block;
  }
  .header__clip__img {
    width: 20px;
  }
  .header__clip__ttl {
    font-size: 1rem;
    line-height: 1.2;
    font-weight: 600;
    margin-top: 6px;
  }
  .header__menu {
    margin-top: 11px;
  }
  .header__menu-btn.active::after {
    width: 74px;
    height: 93px;
  }
  .header__menu__panel {
    top: 92px;
  }
  .header__menu__panel .nav {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
            justify-content: center;
    gap: 30px;
    padding: 30px 0 20px;
  }
  .header__menu__panel .left {
    max-width: 300px;
    margin-bottom: 0;
  }
  .header__menu__panel .middle {
    max-width: 300px;
    margin-bottom: 0;
  }
  .header__menu__panel .right {
    max-width: 340px;
  }
  .header__menu__panel .share__btn {
    width: 32px;
    margin-left: 14px;
  }
  .header__menu__panel .share__ttl {
    font-size: 1.2rem;
    line-height: 1.5;
    letter-spacing: 0.2em;
    font-weight: 600;
    margin-right: 10px;
  }
}
@media print, screen and (min-width: 1024px) {
  .header__logo {
    max-width: 77px;
    margin-right: 30px;
  }
  .header__catch {
    font-size: 1.5rem;
    line-height: 1.7333333333;
    letter-spacing: 0.4em;
    margin-top: 23px;
  }
  .header__inner__middle {
    display: inline-block;
    margin-top: 11px;
  }
  .header__inner__middle.tb {
    display: none;
  }
  .header__inner__right {
    margin-top: 26px;
  }
  .header__nav {
    width: 100%;
  }
  .header__nav__item {
    width: 147px;
  }
  .header__nav__item.header__nav__item--content.active-bg > a {
    position: relative;
  }
  .header__nav__item.header__nav__item--content.active-bg > a::after {
    position: absolute;
    content: "";
    height: 100px;
    width: 100%;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    background: #f6f6f6;
    z-index: -1;
  }
  .header__nav__link--content {
    position: relative;
  }
  .header__nav__link--content.active::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100px;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    background: #f6f6f6;
    z-index: -1;
  }
  .header__nav .gloNav {
    position: absolute;
    top: 99px;
    left: 0;
    width: 100%;
    background: #f6f6f6;
    opacity: 1;
    visibility: visible;
    -webkit-transition: none;
    transition: none;
  }
  .header__nav .gloNav__inner {
    padding: 20px 10px;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
            justify-content: space-between;
  }
  .header__nav .gloNav__item {
    background: #fff;
    -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
            box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 19.5%;
            flex: 0 0 19.5%;
  }
  .header__nav .gloNav__item:nth-child(1) .gloNav__item__ttl {
    background-image: url(../images/common/icn_glonav1.png);
  }
  .header__nav .gloNav__item:nth-child(2) .gloNav__item__ttl {
    background-image: url(../images/common/icn_glonav2.png);
  }
  .header__nav .gloNav__item:nth-child(3) .gloNav__item__ttl {
    background-image: url(../images/common/icn_glonav3.png);
  }
  .header__nav .gloNav__item:nth-child(4) .gloNav__item__ttl {
    background-image: url(../images/common/icn_glonav4.png);
  }
  .header__nav .gloNav__item:nth-child(5) .gloNav__item__ttl {
    background-image: url(../images/common/icn_glonav5.png);
  }
  .header__nav .gloNav__item__head {
    padding: 4px 4px 10px 4px;
    -webkit-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.05);
            box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.05);
    display: block;
  }
  .header__nav .gloNav__item__head:hover {
    opacity: 1;
  }
  .header__nav .gloNav__item__head:hover .gloNav__item__ttl {
    opacity: 0.95;
    background-color: #ff8200;
  }
  .header__nav .gloNav__item__head .btn-show {
    font-size: 1.1rem;
    padding-right: 18px;
  }
  .header__nav .gloNav__item__ttl {
    background: #ff9b33 url(../images/common/icn_glonav.png) no-repeat center left 15px/auto 35px;
    color: #fff;
    font-size: 1.7rem;
    line-height: 1.4117647059;
    font-weight: 600;
    height: 76px;
    padding-left: 27%;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
            align-items: center;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .header__nav .gloNav__item__txt {
    font-size: 1.1rem;
    line-height: 1.5454545455;
    color: #666;
    padding: 10px;
  }
  .header__nav .gloNav__item__btn {
    text-align: right;
  }
  .header__nav .gloNav__item__body {
    padding: 0 8px;
  }
  .header__nav .gloNav__item__body__ttl {
    font-size: 1.2rem;
    line-height: 1.5;
    margin: 15px 0 10px;
  }
  .header__nav .gloNav__item__body__ttl span {
    font-weight: bold;
    color: #ed1e79;
    margin-right: 5px;
  }
  .header__nav .gloNav__item__body__list li {
    border-top: 1px solid #ccc;
  }
  .header__nav .gloNav__item__body__list li a {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    padding: 15px 0;
  }
  .header__nav .gloNav__item__body__img {
    width: 80px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 80px;
            flex: 0 0 80px;
    height: 46px;
    margin-top: 3px;
    margin-right: 10px;
  }
  .header__nav .gloNav__item__body__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .header__nav .gloNav__item__body__txt {
    font-size: 1.2rem;
    line-height: 1.4166666667;
    font-weight: 600;
  }
  .header__nav__icn {
    width: 44px;
    height: 41px;
  }
  .header__nav__ttl {
    white-space: nowrap;
    font-size: 1.35rem;
    line-height: 1.037037037;
    font-weight: 600;
  }
  .header__search-box {
    margin-right: 25px;
  }
  .header__clip {
    margin-top: 2px;
    margin-right: 30px;
  }
  .header__clip__img {
    width: 24px;
  }
  .header__menu {
    margin-top: 2px;
  }
  .header__menu-btn.active::after {
    height: 100px;
  }
  .header__menu__panel {
    top: 99px;
  }
  .header__menu__panel .nav {
    gap: 64px;
  }
  .header__menu__panel .nav__heading__ttl {
    font-size: 2.2rem;
    line-height: 1.3636363636;
  }
  .header__menu__panel .left__list li a {
    font-size: 1.5rem;
    line-height: 1.4666666667;
    letter-spacing: 0.08em;
    font-weight: 600;
    padding: 12px 30px 12px 8px;
  }
  .header__menu__panel .middle__list li a {
    font-size: 1.5rem;
    line-height: 1.8666666667;
    letter-spacing: 0.08em;
    font-weight: 600;
    padding: 7px 30px 7px 12px;
  }
  .header__menu__panel .right__list li:not(:first-child) {
    margin-top: 16px;
  }
  .header__menu__panel .right__list li a {
    font-size: 2.1rem;
    line-height: 1.3333333333;
    letter-spacing: 0.08em;
  }
  .header__menu__panel .right__tag li a {
    font-size: 1.2rem;
    line-height: 2;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1150px) {
  .header__nav__item {
    width: 125px;
  }
  .header__nav .gloNav__item__ttl {
    font-size: 1.4rem;
    padding-left: 27%;
    background-size: auto 29px;
    background-position: center left 10px;
  }
  .header__nav .gloNav__item__body__txt {
    font-size: 1rem;
  }
  .header__nav__ttl {
    font-size: 1.2rem;
  }
  .header__search-box {
    margin-right: 20px;
  }
  .header__clip {
    margin-right: 20px;
  }
}
/* footer
---------------------------------------------------------------------------- */
.footer {
  background: #000;
  color: #fff;
  position: relative;
  overflow-x: hidden;
}
.footer .inner {
  max-width: none;
}
@media screen and (min-width: 600px) {
  .footer .inner {
    width: 100%;
    padding: 0 30px;
  }
}
.footer::after {
  position: absolute;
  content: "";
  right: -30px;
  top: -5px;
  width: 158px;
  height: 50px;
  background: url(../images/common/lead_bg.png) no-repeat center center/100%;
}
.footer__top {
  padding: 45px 0 20px;
}
.footer__top__lead {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}
.footer__top__lead__txt {
  font-size: 1.4rem;
  line-height: 1.4285714286;
  letter-spacing: 0.1em;
}
.footer__logo {
  display: inline-block;
  max-width: 214px;
  width: 100%;
  padding-left: 18px;
  border-left: 6px solid #ed1e79;
}
.footer__menu {
  position: relative;
}
.footer__menu__left__item {
  margin-top: 20px;
}
.footer__menu__left__item__ttl {
  font-size: 1.6rem;
  line-height: 1.375;
  margin-bottom: 16px;
}
.footer__menu__right {
  width: 100%;
  border-top: 1px solid #fff;
  margin-top: 20px;
  padding-top: 20px;
}
.footer__menu .pagetop {
  position: absolute;
  right: 0;
  bottom: 0;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.footer__menu .pagetop.isFix {
  display: block;
  position: fixed;
  z-index: 99;
  right: 15px;
  bottom: 15px;
}
@media print, screen and (min-width: 1024px) {
  .footer__menu .pagetop.isFix {
    right: 30px;
    bottom: 15px;
  }
}
.footer__menu .pagetop.isFooter {
  display: block;
}
.footer__menu .pagetop a {
  display: block;
  width: 40px;
  height: 40px;
  background: #fff url(../images/common/icn_pagetop.svg) no-repeat center center/12px;
}
.footer__nav__list li .clipModal {
  display: inline-block;
  margin-left: -10px;
}
.footer__nav__list li .clipModal .clipModal__btn .clipModal__txt {
  font-size: 1.1rem;
  color: #fff;
}
.footer__nav__list li a {
  color: #fff;
  display: inline-block;
  font-size: 1.4rem;
  line-height: 2;
  padding: 4px 20px 4px 18px;
  position: relative;
}
.footer__nav__list li a::before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  border-top: 1px solid #666;
  border-right: 1px solid #666;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  width: 6px;
  height: 6px;
}
.footer__bottom {
  text-align: center;
  border-top: 1px solid #fff;
  padding: 20px 0 10px;
}
.footer__bottom__logo {
  display: inline-block;
  max-width: 176px;
  width: 100%;
  margin: 8px 0 16px;
}
@media print, screen and (min-width: 1024px) {
  .footer__bottom__logo {
    margin: 0;
  }
}
.footer__bottom__nav {
  margin-bottom: 10px;
}
@media screen and (min-width: 600px) {
  .footer__bottom__nav {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.footer__bottom__nav li:not(:last-child) {
  margin-right: 20px;
}
.footer__bottom__nav li a {
  display: inline-block;
  font-size: 1.2rem;
  line-height: 1.3333333333;
  color: #fff;
  padding-bottom: 8px;
}
.footer__copy {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 10px;
  margin-top: 20px;
}
.footer__share {
  padding: 40px 0 25px;
}
.footer__share .share {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: end;
  -webkit-box-pack: end;
          justify-content: flex-end;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  margin-top: 0;
}

@media screen and (min-width: 600px) {
  .footer__menu {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 5%;
  }
  .footer__menu__left {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    gap: 40px;
  }
  .footer__menu__left__item {
    margin-top: 0;
  }
  .footer__menu__left__item__ttl {
    font-size: 1.8rem;
    line-height: 1.4444444444;
    margin-bottom: 20px;
  }
  .footer__menu__right {
    margin-top: 25px;
  }
  .footer__nav__list li a {
    font-size: 1.4rem;
    line-height: 2.1428571429;
  }
  .footer__nav__list li a::before {
    width: 8px;
    height: 8px;
  }
}
@media print, screen and (min-width: 1024px) {
  .footer::after {
    width: 229px;
    height: 71px;
  }
  .footer__top {
    padding: 45px 0 25px;
  }
  .footer__top__lead {
    margin-bottom: 65px;
  }
  .footer__top__lead__txt {
    font-size: 1.3rem;
    line-height: 1.7692307692;
    letter-spacing: 0.1em;
  }
  .footer__logo {
    max-width: 319px;
    padding-left: 25px;
    border-left: 10px solid #ed1e79;
    margin: 0 15px 0 0;
  }
  .footer__menu__left {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    gap: 40px;
  }
  .footer__menu__left__item {
    margin-top: 0;
  }
  .footer__menu__left__item__ttl {
    font-size: 1.8rem;
    line-height: 1.4444444444;
    margin-bottom: 20px;
  }
  .footer__menu__right {
    width: auto;
    border-left: 1px solid #fff;
    border-top: 0;
    margin-top: 45px;
    padding: 0 0 0 30px;
  }
  .footer__nav {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
  }
  .footer__nav__list li a {
    font-size: 1.4rem;
    line-height: 2.1428571429;
  }
  .footer__nav__list li a::before {
    width: 8px;
    height: 8px;
  }
  .footer__bottom {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
            justify-content: space-between;
    -ms-flex-align: center;
    -webkit-box-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 0 20px;
  }
  .footer__bottom__logo {
    margin-bottom: 0;
  }
  .footer__bottom__nav li a {
    font-size: 1.2rem;
    line-height: 1.5;
  }
  .footer__copy {
    margin-top: 0;
  }
}
/* reset
---------------------------------------------------------------------------- */
/* module
---------------------------------------------------------------------------- */
/* header
-----------------------------------------------------------------------------*/
/* footer
-----------------------------------------------------------------------------*/
/*# sourceMappingURL=common.css.map */