@charset "UTF-8";
/* Break point
---------------------------------------------------------- */
/* Font
---------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
/* Mixin
---------------------------------------------------------- */
/* Animation
---------------------------------------------------------- */
.a-fadeIn {
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.a-fadeIn.-start {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@-webkit-keyframes arrowAnime {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
    opacity: 0;
  }
  51% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes arrowAnime {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
    opacity: 0;
  }
  51% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes arrowAnime2 {
  0% {
    -webkit-transform: scaleX(var(--arrow-scale)) translateX(0);
            transform: scaleX(var(--arrow-scale)) translateX(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: scaleX(var(--arrow-scale)) translateX(10px);
            transform: scaleX(var(--arrow-scale)) translateX(10px);
    opacity: 0;
  }
  51% {
    -webkit-transform: scaleX(var(--arrow-scale)) translateX(-10px);
            transform: scaleX(var(--arrow-scale)) translateX(-10px);
    opacity: 0;
  }
  100% {
    -webkit-transform: scaleX(var(--arrow-scale)) translateX(0);
            transform: scaleX(var(--arrow-scale)) translateX(0);
    opacity: 1;
  }
}
@keyframes arrowAnime2 {
  0% {
    -webkit-transform: scaleX(var(--arrow-scale)) translateX(0);
            transform: scaleX(var(--arrow-scale)) translateX(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: scaleX(var(--arrow-scale)) translateX(10px);
            transform: scaleX(var(--arrow-scale)) translateX(10px);
    opacity: 0;
  }
  51% {
    -webkit-transform: scaleX(var(--arrow-scale)) translateX(-10px);
            transform: scaleX(var(--arrow-scale)) translateX(-10px);
    opacity: 0;
  }
  100% {
    -webkit-transform: scaleX(var(--arrow-scale)) translateX(0);
            transform: scaleX(var(--arrow-scale)) translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes dengenkunAnime {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.7) translateY(10px);
            transform: scale(0.7) translateY(10px);
  }
  70% {
    opacity: 1;
    -webkit-transform: scale(1.05) translateY(-5px);
            transform: scale(1.05) translateY(-5px);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
  }
}
@keyframes dengenkunAnime {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.7) translateY(10px);
            transform: scale(0.7) translateY(10px);
  }
  70% {
    opacity: 1;
    -webkit-transform: scale(1.05) translateY(-5px);
            transform: scale(1.05) translateY(-5px);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
  }
}
/* ==========================================================================//
//
//　変数
//
// ========================================================================== */
:root {
  /* Color
  ---------------------------------------------------------- */
  --color-plus-main: #FFD600;
  --color-plus-bg: #FFFCCE;
  --color-plus-sub: #E5F3FD;
  --color-plus-line: #DDD;
  --color-plus-hover: #adb0df;
  /* font
  ---------------------------------------------------------- */
  /* width
  ---------------------------------------------------------- */
  --plus-maxWidth: 1140px;
  --plus-sidePadding: 15px;
  --plus-header: 60px;
}
@media screen and (min-width: 768px) {
  :root {
    --plus-sidePadding: 40px;
  }
}
@media screen and (min-width: 960px) {
  :root {
    --plus-header: 90px;
  }
}

.c-plus-btn-1 {
  text-align: center;
}
.c-plus-btn-1 a, .c-plus-btn-1 button {
  display: inline-grid;
  grid-template-columns: auto auto;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  min-width: 160px;
  padding: 15px 20px;
  background: var(--color-main);
  border: 1px solid var(--color-main);
  text-decoration: none !important;
  color: #fff;
  border-radius: 9999px;
  font-weight: var(--font-b);
  cursor: pointer;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-plus-btn-1 a, .c-plus-btn-1 button {
    min-width: 200px;
  }
}
@media screen and (min-width: 960px) {
  .c-plus-btn-1 a, .c-plus-btn-1 button {
    padding: 18px 20px;
  }
  .c-plus-btn-1 a > *, .c-plus-btn-1 button > * {
    position: relative;
    z-index: 1;
  }
  .c-plus-btn-1 a::before, .c-plus-btn-1 button::before {
    content: "";
    display: block;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    background: var(--color-plus-hover);
    border-radius: 9999px;
    opacity: 0;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.c-plus-btn-1 a > .c-icon-svg, .c-plus-btn-1 button > .c-icon-svg {
  width: 11px;
  height: 11px;
}
.c-plus-btn-1 a > .c-icon-svg:not(.c-plus-btn-1 a > .c-icon-svg.-tab, .c-plus-btn-1 button > .c-icon-svg.-tab), .c-plus-btn-1 button > .c-icon-svg:not(.c-plus-btn-1 a > .c-icon-svg.-tab, .c-plus-btn-1 button > .c-icon-svg.-tab) {
  width: 20px;
  height: 20px;
  padding: 4px;
  background: #fff;
  color: var(--color-main);
  border-radius: 9999px;
}
@media screen and (min-width: 960px) {
  .c-plus-btn-1 a > .c-icon-svg:not(.c-plus-btn-1 a > .c-icon-svg.-tab, .c-plus-btn-1 button > .c-icon-svg.-tab), .c-plus-btn-1 button > .c-icon-svg:not(.c-plus-btn-1 a > .c-icon-svg.-tab, .c-plus-btn-1 button > .c-icon-svg.-tab) {
    width: 23px;
    height: 23px;
    padding: 6px;
  }
}
.c-plus-btn-1 a > .c-icon-svg.-tab, .c-plus-btn-1 button > .c-icon-svg.-tab {
  width: 17px;
  height: 17px;
}
.c-plus-btn-1 a span .c-icon-svg, .c-plus-btn-1 button span .c-icon-svg {
  width: 17px;
  height: 17px;
  margin-right: 5px;
  vertical-align: text-top;
}
@media screen and (min-width: 960px) {
  .c-plus-btn-1 a:hover::before, .c-plus-btn-1 button:hover::before {
    width: 100%;
    height: 100%;
    opacity: 1;
  }
}
.c-plus-btn-1.-white a, .c-plus-btn-1.-white button {
  background: #fff;
  color: var(--color-main);
}
@media screen and (min-width: 960px) {
  .c-plus-btn-1.-white a::before, .c-plus-btn-1.-white button::before {
    background: var(--color-plus-sub);
  }
}
.c-plus-btn-1.-white a .c-icon-svg:not(.c-plus-btn-1.-white a .c-icon-svg.-tab, .c-plus-btn-1.-white button .c-icon-svg.-tab), .c-plus-btn-1.-white button .c-icon-svg:not(.c-plus-btn-1.-white a .c-icon-svg.-tab, .c-plus-btn-1.-white button .c-icon-svg.-tab) {
  background: var(--color-main);
  color: #fff;
}
.c-plus-btn-1.-prev a .c-icon-svg, .c-plus-btn-1.-prev button .c-icon-svg {
  --arrow-scale: -1;
  -webkit-transform: scaleX(var(--arrow-scale));
          transform: scaleX(var(--arrow-scale));
}
.c-plus-btn-1.-disabled a, .c-plus-btn-1.-disabled button {
  background: #D7D7D7;
  color: #929292;
  cursor: not-allowed;
  pointer-events: none;
}
.c-plus-btn-1.-disabled a .c-icon-svg, .c-plus-btn-1.-disabled button .c-icon-svg {
  fill: #929292;
}

.c-plus-link-1.-file::after {
  content: "";
  display: inline-block;
  width: 1em;
  margin-left: 3px;
  aspect-ratio: 1/1;
  background: url(/coselplus/assets/img/ico-file.svg) no-repeat center center/cover;
  vertical-align: middle;
}

.c-plus-ttl-1 {
  text-align: center;
}
.c-plus-ttl-1 .-ico {
  width: 31px;
  margin: 0 auto 5px;
}
@media screen and (min-width: 768px) {
  .c-plus-ttl-1 .-ico {
    width: 42px;
    margin-bottom: 10px;
  }
}
.c-plus-ttl-1 .-ttl {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: var(--font-b);
  color: var(--color-main);
}
@media screen and (min-width: 768px) {
  .c-plus-ttl-1 .-ttl {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
.c-plus-ttl-1 .-detail {
  margin-top: 10px;
  font-size: 16px;
  font-size: 1rem;
  font-weight: var(--font-m);
  color: var(--color-main);
  padding: 0 30px;
}
@media screen and (min-width: 768px) {
  .c-plus-ttl-1 .-detail {
    margin-top: 15px;
    font-size: 20px;
    font-size: 1.25rem;
    padding: 0 10px;
  }
}

.c-plus-dengenkun .-img {
  height: 70px;
  aspect-ratio: 1/1;
}
@media screen and (min-width: 768px) {
  .c-plus-dengenkun .-img {
    height: 97px;
  }
}
.c-plus-dengenkun .-img.-jump {
  height: 78px;
}
@media screen and (min-width: 768px) {
  .c-plus-dengenkun .-img.-jump {
    height: 107px;
  }
}
.c-plus-dengenkun .-serif {
  display: inline-block;
  padding: 10px 10px 8px;
  border-radius: 6px;
  background: var(--color-plus-main);
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: var(--font-b);
  color: var(--color-main);
  text-align: left;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-plus-dengenkun .-serif {
    font-size: 13px;
    font-size: 0.8125rem;
    -webkit-padding-start: 15px;
            padding-inline-start: 15px;
  }
}
.c-plus-dengenkun .-serif::after {
  content: "";
  display: block;
  width: 13px;
  background: var(--color-plus-main);
  aspect-ratio: 1/1;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  position: absolute;
}

.c-plus-whiteBox__tab {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
  margin-bottom: 10px;
  max-width: var(--plus-maxWidth);
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .c-plus-whiteBox__tab {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}
@media screen and (min-width: 960px) {
  .c-plus-whiteBox__tab {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    margin-bottom: 0;
    padding: 0 40px;
  }
}
.c-plus-whiteBox__tab.-col3 {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (min-width: 768px) {
  .c-plus-whiteBox__tab.-col3 {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}
@media screen and (min-width: 960px) {
  .c-plus-whiteBox__tab.-col3 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.c-plus-whiteBox__tab.-col5 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 960px) {
  .c-plus-whiteBox__tab.-col5 {
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.c-plus-whiteBox__tab.-col5 > * {
  width: calc(33.3333333333% - 7px);
}
@media screen and (min-width: 768px) {
  .c-plus-whiteBox__tab.-col5 > * {
    width: calc(20% - 7px);
  }
}
@media screen and (min-width: 960px) {
  .c-plus-whiteBox__tab.-col5 > * {
    width: auto;
  }
}
.c-plus-whiteBox__tab__btn {
  display: grid;
  grid-template-columns: auto;
  justify-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  padding: 14px;
  background: #fff;
  border: 2px solid #B7B7B7;
  border-radius: 6px;
  color: #949494;
  text-align: center;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: var(--font-b);
  position: relative;
}
@media screen and (min-width: 960px) {
  .c-plus-whiteBox__tab__btn {
    grid-template-columns: auto auto;
    gap: 15px;
    padding: 20px 30px;
    border-radius: 10px 10px 0 0;
    font-size: 15px;
    font-size: 0.9375rem;
    color: var(--color-main);
    border-color: var(--color-main);
    border-bottom: none;
  }
}
.c-plus-whiteBox__tab__btn > * {
  position: relative;
  z-index: 1;
}
.c-plus-whiteBox__tab__btn .c-icon-svg {
  width: 10px;
  aspect-ratio: 1/1;
}
.c-plus-whiteBox__tab__btn::before {
  content: "";
  display: block;
  width: calc(100% - 14px);
  height: calc(100% - 14px);
  background: var(--color-plus-sub);
  border-radius: 4px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (min-width: 960px) {
  .c-plus-whiteBox__tab__btn::before {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border-radius: 8px;
  }
}
.c-plus-whiteBox__tab__btn.-current {
  border-color: var(--color-main);
  color: #fff;
}
.c-plus-whiteBox__tab__btn.-current::before {
  background: var(--color-main);
}
.c-plus-whiteBox__tab__btn.-current span {
  color: #fff;
}
@media screen and (min-width: 960px) {
  .c-plus-whiteBox__tab__btn.-current::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    position: absolute;
    top: 100%;
    left: 0;
  }
}
@media screen and (min-width: 960px) {
  .c-plus-whiteBox__tab__btn {
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
  }
  .c-plus-whiteBox__tab__btn::before {
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
  }
  .c-plus-whiteBox__tab__btn:hover {
    color: #fff;
  }
  .c-plus-whiteBox__tab__btn:hover::before {
    background: var(--color-main);
  }
}
.c-plus-whiteBox__ttl {
  background: var(--color-main);
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 16px;
  font-size: 1rem;
  font-weight: var(--font-b);
}
@media screen and (min-width: 768px) {
  .c-plus-whiteBox__ttl {
    font-size: 18px;
    font-size: 1.125rem;
    padding: 5px 20px;
  }
}
.c-plus-whiteBox__ttl + * {
  margin-top: 20px;
}
.c-plus-whiteBox__content {
  padding: 20px 20px 0;
  max-width: var(--plus-maxWidth);
  margin-right: auto;
  margin-left: auto;
  background: #fff;
  border: 2px solid var(--color-main);
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .c-plus-whiteBox__content {
    padding: 40px;
  }
}
@media screen and (min-width: 1140px) {
  .c-plus-whiteBox__content {
    padding: 80px;
  }
}
.c-plus-whiteBox__content > * {
  padding-bottom: 20px;
  max-height: 60vh;
  overflow-y: auto;
  padding-right: 5px;
}
@media screen and (min-width: 768px) {
  .c-plus-whiteBox__content > * {
    max-height: none;
    overflow: visible;
    padding-right: 0;
    padding-bottom: 0;
  }
}

@media screen and (min-width: 768px) {
  .c-plus-article__list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 40px;
  }
}
@media screen and (min-width: 960px) {
  .c-plus-article__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.c-plus-article__list + .c-plus-whiteBox__ttl {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .c-plus-article__list + .c-plus-whiteBox__ttl {
    margin-top: 80px;
  }
}
@media screen and (min-width: 768px) {
  .c-plus-article__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (min-width: 768px) {
  .c-plus-article__item > * + * {
    padding-top: 15px;
  }
}
.c-plus-article__item + .c-plus-article__item {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .c-plus-article__item + .c-plus-article__item {
    margin-top: 0;
  }
}
.c-plus-article__item:not(:last-of-type) {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-plus-line);
}
@media screen and (min-width: 768px) {
  .c-plus-article__item:not(:last-of-type) {
    padding-bottom: 0;
    border-bottom: none;
  }
}
.c-plus-article__item.-recommend:not(:last-of-type) {
  padding-bottom: 5px;
  border-bottom: none;
}
@media screen and (min-width: 768px) {
  .c-plus-article__item.-recommend:not(:last-of-type) {
    padding-bottom: 0;
  }
}
.c-plus-article__item .-imgBox {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5px 10px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .c-plus-article__item .-imgBox {
    display: block;
    position: relative;
  }
}
.c-plus-article__item .-imgBox .-img {
  width: 105px;
  aspect-ratio: 1/1;
  border-radius: 6px;
  background: var(--color-plus-sub);
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .c-plus-article__item .-imgBox .-img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    position: absolute;
    top: 0;
    left: 0;
  }
}
.c-plus-article__item .-imgBox .-img::before {
  content: "";
  display: block;
  height: 60%;
  aspect-ratio: 1/0.761;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .c-plus-article__item .-imgBox .-img:has(img)::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    background-blend-mode: multiply;
    position: absolute;
    top: 0;
    left: 0;
  }
}
.c-plus-article__item .-imgBox .-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-plus-article__item .-imgBox .-txtBox {
    aspect-ratio: 1/0.667;
    position: relative;
    z-index: 1;
  }
}
.c-plus-article__item .-imgBox .-txtBox .-category {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 3px 5px;
}
@media screen and (min-width: 768px) {
  .c-plus-article__item .-imgBox .-txtBox .-category {
    position: absolute;
    top: 10px;
    left: 10px;
    pointer-events: none;
  }
}
.c-plus-article__item .-imgBox .-txtBox .-category span {
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid var(--color-plus-line);
  border-radius: 9999px;
  font-size: 12px;
  font-size: 0.75rem;
  color: var(--color-main);
  font-weight: var(--font-m);
}
@media screen and (min-width: 768px) {
  .c-plus-article__item .-imgBox .-txtBox .-category span {
    background: #fff;
    border: none;
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
.c-plus-article__item .-imgBox .-txtBox .-category span.-blue {
  border-color: #fff;
  color: #fff;
  background: var(--color-main);
}
.c-plus-article__item .-imgBox .-txtBox .-ttl {
  display: block;
  margin-top: 4px;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: var(--font-b);
  color: var(--color-main);
}
@media screen and (min-width: 768px) {
  .c-plus-article__item .-imgBox .-txtBox .-ttl {
    margin-top: 0;
    min-height: 100%;
    width: 100%;
    padding: 50px 20px 20px;
    font-size: 20px;
    font-size: 1.25rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
}
.c-plus-article__item .-imgBox .-txtBox .-ttl span {
  text-decoration: underline;
  text-underline-position: from-font;
}
@media screen and (min-width: 768px) {
  .c-plus-article__item .-imgBox .-txtBox .-ttl span {
    text-decoration: none;
  }
}
@media screen and (min-width: 768px) {
  .c-plus-article__item .-imgBox:has(.-img img) .-txtBox .-ttl {
    color: #fff;
  }
}
@media screen and (min-width: 960px) {
  .c-plus-article__item .-imgBox:has(.-txtBox a.-ttl) .-img::before {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .c-plus-article__item .-imgBox:has(.-txtBox a.-ttl) .-img img {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .c-plus-article__item .-imgBox:has(.-txtBox a.-ttl):hover .-img::before {
    -webkit-transform: translate(-50%, -50%) scale(1.1);
            transform: translate(-50%, -50%) scale(1.1);
  }
  .c-plus-article__item .-imgBox:has(.-txtBox a.-ttl):hover .-img img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.c-plus-article__item > .-txt {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .c-plus-article__item > .-txt {
    margin-top: 0;
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
.c-plus-article__item .-bnr {
  display: block;
  max-width: 310px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.c-plus-article__item .-bnr > .-caption {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  font-size: 0.875rem;
  color: var(--color-main);
  font-weight: var(--font-m);
}
@media screen and (min-width: 768px) {
  .c-plus-article__item .-bnr > .-caption {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
@media screen and (min-width: 960px) {
  .c-plus-article__item .-bnr {
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
  }
  .c-plus-article__item .-bnr:hover {
    opacity: 0.7;
  }
}
.c-plus-article__item.-movie .-imgBox {
  display: block;
}
.c-plus-article__item.-movie .-imgBox .-img {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 0;
}
@media screen and (min-width: 768px) {
  .c-plus-article__item.-movie .-imgBox .-img {
    position: relative;
  }
  .c-plus-article__item.-movie .-imgBox .-img::after {
    content: none;
  }
}
@media screen and (min-width: 960px) {
  .c-plus-article__item.-movie a.-imgBox .-img::before {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .c-plus-article__item.-movie a.-imgBox .-img img {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .c-plus-article__item.-movie a.-imgBox:hover .-img::before {
    -webkit-transform: translate(-50%, -50%) scale(1.1);
            transform: translate(-50%, -50%) scale(1.1);
  }
  .c-plus-article__item.-movie a.-imgBox:hover .-img img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.c-plus-article__item.-movie .-txtBox {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .c-plus-article__item.-movie .-txtBox {
    margin-top: 0;
  }
}
.c-plus-article__item.-movie .-txtBox .-time {
  display: inline-grid;
  grid-template-columns: auto auto;
  gap: 3px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 4px 10px;
  background: #EFEFEF;
  border-radius: 9999px;
  font-size: 12px;
  font-size: 0.75rem;
  color: #949494;
  font-weight: var(--font-m);
}
.c-plus-article__item.-movie .-txtBox .-time .c-icon-svg {
  width: 17px;
  aspect-ratio: 1/1;
}
.c-plus-article__item.-movie .-txtBox .-ttl {
  display: block;
  font-weight: var(--font-b);
  margin-top: 5px;
  text-decoration: underline;
  text-align: center;
}
@media screen and (min-width: 960px) {
  .c-plus-article__item.-movie .-txtBox a.-ttl:hover {
    text-decoration: none;
  }
}
.c-plus-article__item.-movie.-new {
  position: relative;
}
.c-plus-article__item.-movie.-new::before, .c-plus-article__item.-movie.-new::after {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 50% calc(100% - 6px), 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 50% calc(100% - 6px), 0 100%);
  background: #fff;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  pointer-events: none;
}
.c-plus-article__item.-movie.-new::after {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  content: "NEW";
  width: 46px;
  height: 46px;
  background: #FF3437;
  color: #fff;
  font-family: "Roboto";
  font-size: 16px;
  font-size: 1rem;
  font-weight: var(--font-b);
  top: 2px;
  right: 2px;
  z-index: 2;
}
.c-plus-article__item .c-plus-btn-1 {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-plus-article__item .c-plus-btn-1 {
    display: block;
    margin: auto auto 0;
    width: 100%;
  }
  .c-plus-article__item .c-plus-btn-1 a {
    width: 100%;
  }
}
.c-plus-article__item.-product .-imgBox .-img::before {
  background-image: url(/coselplus/assets/img/bg-ico-product.svg);
}
.c-plus-article__item.-noise .-imgBox .-img::before {
  background-image: url(/coselplus/assets/img/bg-ico-noise.svg);
}
.c-plus-article__item.-technical .-imgBox .-img::before {
  background-image: url(/coselplus/assets/img/bg-ico-technical.svg);
}
.c-plus-article__item.-movie .-imgBox .-img::before {
  background-image: url(/coselplus/assets/img/bg-ico-movie.svg);
}
.c-plus-article__item.-recommend .-imgBox .-img::before {
  background-image: url(/coselplus/assets/img/bg-ico-recommend.svg);
}

.c-qaBox > * {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  -webkit-box-align: start;
  -webkit-align-items: start;
      -ms-flex-align: start;
          align-items: start;
  padding: 20px;
  border-radius: 15px;
  font-size: 16px;
  font-size: 1rem;
  color: var(--color-main);
  font-weight: var(--font-m);
  line-height: var(--lhM);
}
@media screen and (min-width: 768px) {
  .c-qaBox > * {
    gap: 30px;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: var(--lhL);
  }
}
@media screen and (min-width: 960px) {
  .c-qaBox > * {
    padding: 50px;
  }
}
.c-qaBox > * + * {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .c-qaBox > * + * {
    margin-top: 30px;
  }
}
.c-qaBox > *::before {
  content: "";
  width: 40px;
  aspect-ratio: 1/1;
  border-radius: 9999px;
  background: no-repeat center center/calc(100% - 16px) calc(100% - 16px);
  border: 1px solid var(--color-main);
}
@media screen and (min-width: 768px) {
  .c-qaBox > *::before {
    width: 60px;
    background-size: calc(100% - 25px) calc(100% - 25px);
  }
}
@media screen and (min-width: 960px) {
  .c-qaBox > *::before {
    width: 80px;
    background-size: calc(100% - 35px) calc(100% - 35px);
  }
}
.c-qaBox__q {
  border: 1px solid var(--color-main);
  background: #fff;
}
.c-qaBox__q::before {
  background-image: url(/coselplus/assets/img/txt-qa-q.svg);
  background-color: var(--color-main);
}
.c-qaBox__a {
  background: var(--color-plus-sub);
}
.c-qaBox__a::before {
  background-image: url(/coselplus/assets/img/txt-qa-a.svg);
  background-color: #fff;
}
.c-qaBox__content > * + * {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .c-qaBox__content > * + * {
    margin-top: 20px;
  }
}

.c-plus-colorBox {
  background: var(--color-plus-sub);
  padding: 20px;
  border-radius: 15px;
}
@media screen and (min-width: 768px) {
  .c-plus-colorBox {
    padding: 40px;
  }
}
@media screen and (min-width: 960px) {
  .c-plus-colorBox {
    padding: 80px;
  }
}
.c-plus-colorBox__ttl {
  padding-top: 10px;
  font-size: 19px;
  font-size: 1.1875rem;
  font-weight: var(--font-b);
  color: var(--color-main);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-plus-colorBox__ttl {
    margin-top: 0;
    font-size: 26px;
    font-size: 1.625rem;
  }
}

.c-plus-series__list {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .c-plus-series__list {
    margin-top: 40px;
  }
}
.c-plus-series__item {
  background: #fff;
}
@media screen and (min-width: 768px) {
  .c-plus-series__item {
    display: grid;
    grid-template-columns: 46% 1fr;
  }
}
@media screen and (min-width: 768px) {
  .c-plus-series__item .-img {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    background: -webkit-gradient(linear, left top, left bottom, from(#709BE7), color-stop(50%, #709BE7), color-stop(51%, #B7D8F9), to(#B7D8F9));
    background: -webkit-linear-gradient(top, #709BE7 0%, #709BE7 50%, #B7D8F9 51%, #B7D8F9 100%);
    background: linear-gradient(to bottom, #709BE7 0%, #709BE7 50%, #B7D8F9 51%, #B7D8F9 100%);
  }
}
.c-plus-series__item .-img img {
  width: 100%;
}
.c-plus-series__item .-txtBox {
  padding: 15px 15px 20px;
}
@media screen and (min-width: 768px) {
  .c-plus-series__item .-txtBox {
    padding: 15px;
  }
}
@media screen and (min-width: 960px) {
  .c-plus-series__item .-txtBox {
    padding: 30px;
  }
}
.c-plus-series__item .-txtBox .-nameBox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 0 5px;
  border-bottom: 1px solid var(--color-plus-line);
}
.c-plus-series__item .-txtBox .-nameBox .-name {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: var(--font-b);
  color: var(--color-main);
}
@media screen and (min-width: 768px) {
  .c-plus-series__item .-txtBox .-nameBox .-name {
    font-size: 16px;
    font-size: 1rem;
  }
}
.c-plus-series__item .-txtBox .-nameBox .-name span {
  font-size: 26px;
  font-size: 1.625rem;
}
@media screen and (min-width: 768px) {
  .c-plus-series__item .-txtBox .-nameBox .-name span {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
.c-plus-series__item .-txtBox .-nameBox .-label {
  margin: 0 0 0 auto;
}
.c-plus-series__item .-txtBox .-detail {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .c-plus-series__item .-txtBox .-detail {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 960px) {
  .c-plus-series__item .-txtBox .-detail {
    margin-top: 15px;
  }
}
.c-plus-series__item .-txtBox .c-plus-btn-1 {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .c-plus-series__item .-txtBox .c-plus-btn-1 {
    text-align: left;
  }
}
.c-plus-series__item .-txtBox .c-plus-btn-1 a, .c-plus-series__item .-txtBox .c-plus-btn-1 button {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-plus-series__item .-txtBox .c-plus-btn-1 a, .c-plus-series__item .-txtBox .c-plus-btn-1 button {
    width: auto;
    min-width: 230px;
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
@media screen and (min-width: 960px) {
  .c-plus-series__item .-txtBox .c-plus-btn-1 a, .c-plus-series__item .-txtBox .c-plus-btn-1 button {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}

.c-plus-related__ttl {
  margin-top: 50px;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: var(--font-b);
  color: var(--color-main);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-plus-related__ttl {
    margin-top: 80px;
    font-size: 32px;
    font-size: 2rem;
  }
}
.c-plus-related__ttl + * {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .c-plus-related__ttl + * {
    margin-top: 30px;
  }
}
@media screen and (min-width: 768px) {
  .c-plus-related__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 40px;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
.c-plus-related__item:last-of-type a {
  border-bottom: 1px solid var(--color-plus-line);
}
@media screen and (min-width: 768px) {
  .c-plus-related__item:last-of-type a {
    border-bottom: none;
  }
}
.c-plus-related__item a {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 20px;
  min-height: 60px;
  border-top: 1px solid var(--color-plus-line);
  text-decoration: none !important;
  font-weight: var(--font-b);
}
@media screen and (min-width: 768px) {
  .c-plus-related__item a {
    height: 100%;
    min-height: 80px;
    padding: 10px 30px;
    position: relative;
  }
  .c-plus-related__item a::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: var(--color-plus-line);
    position: absolute;
    bottom: -1px;
    left: 0;
  }
}
@media screen and (min-width: 960px) {
  .c-plus-related__item a {
    position: relative;
  }
  .c-plus-related__item a > * {
    position: relative;
    z-index: 1;
  }
  .c-plus-related__item a::before {
    content: "";
    display: block;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    background: var(--color-plus-sub);
    border-radius: 9999px;
    opacity: 0;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    transition: all 0.2s;
  }
  .c-plus-related__item a:hover::before {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    opacity: 1;
  }
}
.c-plus-related__item a > .c-icon-svg {
  width: 11px;
  height: 11px;
}
.c-plus-related__item a > .c-icon-svg:not(.c-plus-related__item a > .c-icon-svg.-tab) {
  width: 20px;
  height: 20px;
  padding: 4px;
  background: var(--color-main);
  color: #fff;
  border-radius: 9999px;
}
@media screen and (min-width: 960px) {
  .c-plus-related__item a > .c-icon-svg:not(.c-plus-related__item a > .c-icon-svg.-tab) {
    width: 23px;
    height: 23px;
    padding: 6px;
  }
}
.c-plus-related__item a > .c-icon-svg.-tab {
  width: 17px;
  height: 17px;
}

.c-plus-anchor {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px 10px;
  background: #EFEFEF;
  padding: 10px;
  border-radius: 5px;
}
.c-plus-anchor + * {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .c-plus-anchor + * {
    margin-top: 40px;
  }
}
@media screen and (min-width: 768px) {
  .c-plus-anchor {
    gap: 10px 20px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 10px 20px;
  }
}
.c-plus-anchor li:not(:last-of-type) {
  padding-right: 10px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-plus-anchor li:not(:last-of-type) {
    padding-right: 20px;
  }
}
.c-plus-anchor li:not(:last-of-type)::after {
  content: "";
  display: block;
  width: 1px;
  height: 14px;
  background: #949494;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-plus-anchor a {
  display: inline-grid;
  grid-template-columns: auto auto;
  gap: 5px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  font-size: 0.75rem;
  color: var(--color-main);
  font-weight: var(--font-m);
  text-decoration: none !important;
}
@media screen and (min-width: 768px) {
  .c-plus-anchor a {
    font-size: 14px;
    font-size: 0.875rem;
    gap: 10px;
  }
}
@media screen and (min-width: 960px) {
  .c-plus-anchor a:hover {
    opacity: 0.7;
  }
}
.c-plus-anchor a::after {
  content: "";
  display: block;
  width: 14px;
  aspect-ratio: 1/1;
  border-radius: 9999px;
  background: url(/coselplus/assets/img/ico-arrow-white.svg) no-repeat center center/calc(100% - 5px) calc(100% - 5px), var(--color-main);
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media screen and (min-width: 768px) {
  .c-plus-anchor a::after {
    width: 18px;
    background-size: calc(100% - 7px) calc(100% - 7px);
  }
}

.c-plus-modalContents {
  display: none;
}

.modaal-container {
  border-radius: 15px;
  border: 2px solid var(--color-main);
}
@media screen and (min-width: 768px) {
  .modaal-container {
    max-width: 830px;
  }
}

.modaal-content-container {
  padding: 20px;
}
@media screen and (min-width: 768px) {
  .modaal-content-container {
    padding: 40px;
  }
}
@media screen and (min-width: 960px) {
  .modaal-content-container {
    padding: 60px 80px 50px;
  }
}

.modaal-close {
  border-radius: 9999px;
  background: var(--color-main) !important;
  border: 2px solid #fff !important;
}
@media screen and (min-width: 960px) {
  .modaal-close {
    position: absolute;
    top: 15px;
    right: 15px;
  }
}
.modaal-close::before, .modaal-close::after {
  background: #fff;
  width: 2px;
  top: 13px;
  left: 22px;
}

.c-plus-movie {
  width: 100%;
  aspect-ratio: 16/9;
}
@media screen and (min-width: 768px) {
  .c-plus-movie {
    display: block;
    max-width: 670px;
    margin: 0 auto;
  }
}
.c-plus-movie iframe {
  width: 100%;
  height: 100%;
}
.c-plus-movie .-time {
  margin-top: 5px;
  display: inline-grid;
  grid-template-columns: auto auto;
  gap: 3px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 4px 10px;
  background: #EFEFEF;
  border-radius: 9999px;
  font-size: 12px;
  font-size: 0.75rem;
  color: #949494;
  font-weight: var(--font-m);
}
.c-plus-movie .-time .c-icon-svg {
  width: 17px;
  aspect-ratio: 1/1;
}
.c-plus-movie .-ttl {
  font-size: 16px;
  font-size: 1rem;
  font-weight: var(--font-b);
  color: var(--color-main);
  margin-top: 5px;
}
@media screen and (min-width: 768px) {
  .c-plus-movie .-ttl {
    font-size: 20px;
    font-size: 1.25rem;
    margin-top: 10px;
  }
}
.c-plus-movie .-txt {
  font-size: 12px;
  font-size: 0.75rem;
  margin-top: 5px;
}
@media screen and (min-width: 768px) {
  .c-plus-movie .-txt {
    font-size: 15px;
    font-size: 0.9375rem;
    margin-top: 10px;
  }
}

.mt0 {
  margin-top: 0px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mt50 {
  margin-top: 50px !important;
}

html {
  scroll-padding-top: calc(var(--header) + 20px);
}
@media screen and (min-width: 960px) {
  html {
    scroll-padding-top: calc(var(--header) + 60px);
  }
}

body {
  padding-top: calc(var(--plus-header) + 20px);
  position: relative;
}
@media screen and (min-width: 960px) {
  body {
    padding-top: calc(var(--plus-header) + 40px);
  }
}
body::before {
  content: "";
  width: 100%;
  height: 100vh;
  background: url(/coselplus/assets/img/bg-geometric.webp) no-repeat center center/auto 100%, var(--color-plus-bg);
  position: fixed;
  top: 0;
  left: 0;
}
@media screen and (min-width: 960px) {
  body::before {
    background-size: cover;
  }
}
body > * {
  position: relative;
  z-index: 1;
}

.l-plus-header {
  width: calc(100% - 20px);
  position: fixed;
  top: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 777;
}
@media screen and (min-width: 960px) {
  .l-plus-header {
    max-width: var(--maxWidth);
    top: 30px;
  }
}
.l-plus-header::after {
  content: "";
  display: block;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: -10px;
  left: -10px;
  z-index: 800;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.l-plus-header__inner {
  display: grid;
  grid-template-columns: auto auto;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  background: #fff;
  height: var(--plus-header);
  padding: 5px 5px 5px 20px;
  border-radius: 9999px;
  -webkit-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.25);
          box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 960px) {
  .l-plus-header__inner {
    grid-template-columns: auto 1fr;
    padding: 0 20px 0 40px;
    gap: 20px;
  }
}
.l-plus-header__logo {
  width: 93px;
}
@media screen and (min-width: 960px) {
  .l-plus-header__logo {
    width: 120px;
  }
}
@media screen and (min-width: 1200px) {
  .l-plus-header__logo {
    width: 140px;
  }
}
@media screen and (min-width: 960px) {
  .l-plus-header__logo a {
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
  }
  .l-plus-header__logo a:hover {
    opacity: 0.7;
  }
}
.l-plus-header__navBtn {
  width: calc(var(--plus-header) - 10px);
  aspect-ratio: 1/1;
  background: var(--color-main);
  border-radius: 9999px;
  position: relative;
  z-index: 999;
}
@media screen and (min-width: 960px) {
  .l-plus-header__navBtn {
    display: none;
  }
}
.l-plus-header__navBtn span {
  display: block;
  width: 20px;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.l-plus-header__navBtn span::before, .l-plus-header__navBtn span::after {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background: #fff;
  position: absolute;
  left: 0;
  top: -7px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.l-plus-header__navBtn span::after {
  top: auto;
  bottom: -7px;
}
.l-plus-header__nav {
  display: grid;
  grid-template-columns: 195px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  justify-items: stretch;
  -webkit-align-content: start;
      -ms-flex-line-pack: start;
          align-content: start;
  width: calc(100% - 35px);
  max-width: 340px;
  height: 100vh;
  background: #fff;
  border-radius: 150px 0 0 0;
  padding: 82px 20px 0;
  position: fixed;
  top: -10px;
  right: calc(-100% - 10px);
  z-index: 888;
  -webkit-transition: right 0.25s ease-in;
  transition: right 0.25s ease-in;
}
@media screen and (min-width: 768px) {
  .l-plus-header__nav {
    grid-template-columns: 210px;
  }
}
@media screen and (min-width: 960px) {
  .l-plus-header__nav {
    grid-template-columns: 1fr auto;
    gap: 10px;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    width: auto;
    height: auto;
    max-width: none;
    background: none;
    padding: 0;
    position: static;
  }
}
.l-plus-header__nav__logo {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-plus-line);
  text-align: center;
}
@media screen and (min-width: 960px) {
  .l-plus-header__nav__logo {
    display: none;
  }
}
.l-plus-header__nav__logo a {
  display: inline-block;
}
.l-plus-header__nav__logo figure {
  width: 115px;
}
.l-plus-header__nav__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin: 30px 0;
}
@media screen and (min-width: 960px) {
  .l-plus-header__nav__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0 20px;
    margin: 0;
  }
}
@media screen and (min-width: 1110px) {
  .l-plus-header__nav__list {
    gap: 50px;
  }
}
.l-plus-header__nav__list li a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: var(--font-m);
}
@media screen and (min-width: 960px) {
  .l-plus-header__nav__list li a {
    grid-template-columns: auto auto;
    text-align: center;
    font-size: clamp(0.813rem, 0.313rem + 0.83vw, 0.938rem);
    line-height: var(--lhS);
    height: 100%;
    position: relative;
    z-index: 1;
  }
  .l-plus-header__nav__list li a > * {
    position: relative;
    z-index: 1;
  }
  .l-plus-header__nav__list li a::before {
    content: "";
    display: block;
    width: calc(100% + 10px);
    height: calc(100% - 10px);
    opacity: 0;
    background: var(--color-plus-sub);
    border-radius: 9999px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
  }
  .l-plus-header__nav__list li a:hover::before {
    opacity: 1;
    width: calc(100% + 30px);
    height: calc(100% + 10px);
  }
}
.l-plus-header__nav__list li a .-icon {
  width: 40px;
}
@media screen and (min-width: 960px) {
  .l-plus-header__nav__list li a .-icon {
    width: 30px;
  }
}
.l-plus-header__nav__list li a::after {
  content: "";
  display: block;
  width: 20px;
  padding: 5px;
  border-radius: 9999px;
  aspect-ratio: 1/1;
  background: url(/coselplus/assets/img/ico-arrow-white.svg) no-repeat center center/calc(100% - 10px) calc(100% - 10px), var(--color-main);
}
@media screen and (min-width: 960px) {
  .l-plus-header__nav__list li a::after {
    content: none;
  }
}
@media screen and (min-width: 960px) {
  .l-plus-header__nav__list li + li {
    position: relative;
  }
  .l-plus-header__nav__list li + li::before {
    content: "";
    display: block;
    width: 1px;
    height: 24px;
    background: #949494;
    position: absolute;
    left: -10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@media screen and (min-width: 960px) and (min-width: 1110px) {
  .l-plus-header__nav__list li + li::before {
    left: -25px;
  }
}
.l-plus-header__nav .c-plus-btn-1 a {
  padding: 15px;
  width: 100%;
}
@media screen and (min-width: 960px) {
  .l-plus-header__nav .c-plus-btn-1 a {
    font-size: 13px;
    font-size: 0.8125rem;
    gap: 5px;
    padding: 14px 12px;
    min-width: auto;
  }
  .l-plus-header__nav .c-plus-btn-1 a .c-icon-svg {
    width: 15px;
  }
}
.l-plus-header.-navOpen::after {
  opacity: 1;
  visibility: visible;
}
.l-plus-header.-navOpen .l-plus-header__navBtn span {
  background: transparent;
}
.l-plus-header.-navOpen .l-plus-header__navBtn span::before {
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.l-plus-header.-navOpen .l-plus-header__navBtn span::after {
  bottom: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.l-plus-header.-navOpen .l-plus-header__nav {
  right: -10px;
}

@media screen and (min-width: 960px) {
  body.l-current-product .l-plus-header__nav__list li:nth-child(1) a::before {
    opacity: 1;
    width: calc(100% + 30px);
    height: calc(100% + 10px);
  }
  body.l-current-noise .l-plus-header__nav__list li:nth-child(2) a::before {
    opacity: 1;
    width: calc(100% + 30px);
    height: calc(100% + 10px);
  }
  body.l-current-technical .l-plus-header__nav__list li:nth-child(3) a::before {
    opacity: 1;
    width: calc(100% + 30px);
    height: calc(100% + 10px);
  }
  body.l-current-recommend .l-plus-header__nav__list li:nth-child(4) a::before {
    opacity: 1;
    width: calc(100% + 30px);
    height: calc(100% + 10px);
  }
  body.l-current-movie .l-plus-header__nav__list li:nth-child(5) a::before {
    opacity: 1;
    width: calc(100% + 30px);
    height: calc(100% + 10px);
  }
}

.c-pageTop {
  display: block;
  right: 5px;
  --topBtn-bottom: 5px;
}
@media screen and (min-width: 960px) {
  .c-pageTop {
    right: 15px;
  }
}
.c-pageTop::before {
  content: "";
  display: block;
  height: 50px;
  aspect-ratio: 1/1;
  background: url(/coselplus/assets/img/img-dengenkun-topBtn.svg) no-repeat center center/cover;
  position: absolute;
  top: -7px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .c-pageTop::before {
    height: 60px;
  }
}
@media screen and (min-width: 960px) {
  .c-pageTop:hover {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
    -webkit-transition: -webkit-transform 0.2s;
    transition: -webkit-transform 0.2s;
    transition: transform 0.2s;
    transition: transform 0.2s, -webkit-transform 0.2s;
  }
}
.c-pageTop a {
  width: 100px;
  background: var(--color-main);
  border: 2.5px solid #fff;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-pageTop a {
    width: 120px;
    border-width: 3px;
  }
}
.c-pageTop a::before, .c-pageTop a::after {
  content: "";
  display: block;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
  z-index: 1;
}
.c-pageTop a::before {
  content: "TOPへ戻る";
  display: block;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: var(--font-b);
  word-break: keep-all;
  color: #fff;
  bottom: 35px;
}
@media screen and (min-width: 768px) {
  .c-pageTop a::before {
    bottom: 39px;
    font-size: 16px;
    font-size: 1rem;
  }
}
.c-pageTop a::after {
  width: 18px;
  height: 18px;
  background: url(/coselplus/assets/img/ico-arrow-blue.svg) no-repeat calc(50% - 1px) center/calc(100% - 6px) calc(100% - 6px), #fff;
  border-radius: 9999px;
  -webkit-transform: rotate(-90deg) translateX(-50%);
          transform: rotate(-90deg) translateX(-50%);
  -webkit-transform-origin: left;
          transform-origin: left;
  bottom: 10px;
}
@media screen and (min-width: 768px) {
  .c-pageTop a::after {
    width: 23px;
    height: 23px;
    bottom: 15px;
    background-size: calc(100% - 9px) calc(100% - 9px);
  }
}
.c-pageTop a:hover .c-icon-svg {
  color: var(--color-main);
}

.l-plus-footer {
  margin-top: 60px;
  background-color: #fff;
  padding: 50px 15px 95px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-plus-footer {
    margin-top: 120px;
    padding: 120px var(--sidePadding) 120px;
  }
}
.l-plus-footer::after {
  content: "";
  display: block;
  width: 100%;
  height: 90px;
  background: url(/coselplus/assets/img/bg-foot-building.svg) repeat-x bottom center/auto 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .l-plus-footer::after {
    height: 190px;
  }
}
.l-plus-footer__inner {
  max-width: var(--plus-maxWidth);
  margin: 0 auto;
  position: relative;
}
.l-plus-footer__ttl {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: var(--font-b);
  color: var(--color-main);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-plus-footer__ttl {
    font-size: 32px;
    font-size: 2rem;
  }
}
.l-plus-footer__btnList {
  margin: 35px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  max-width: 305px;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .l-plus-footer__btnList {
    margin-top: 50px;
    gap: 30px;
    max-width: 830px;
  }
}
.l-plus-footer__btnList li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  width: 100%;
  height: 100%;
  padding: 20px 10px;
  min-height: 100px;
  background: #fff;
  border: 2px solid var(--color-main);
  border-radius: 10px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-plus-footer__btnList li a {
    padding: 40px;
    min-height: 150px;
  }
}
.l-plus-footer__btnList li a > * {
  position: relative;
  z-index: 1;
}
.l-plus-footer__btnList li a::before {
  content: "";
  display: block;
  width: calc(100% - 14px);
  height: calc(100% - 14px);
  background: var(--color-plus-sub);
  border-radius: 6px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .l-plus-footer__btnList li a::before {
    width: calc(100% - 30px);
    height: calc(100% - 30px);
  }
}
.l-plus-footer__btnList li a > figure {
  max-width: 100px;
}
@media screen and (min-width: 768px) {
  .l-plus-footer__btnList li a > figure {
    max-width: 163px;
  }
}
.l-plus-footer__btnList li a .-iconTxt {
  display: inline-grid;
  grid-template-columns: auto auto;
  gap: 5px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  font-size: 1rem;
  font-weight: var(--font-m);
}
@media screen and (min-width: 768px) {
  .l-plus-footer__btnList li a .-iconTxt {
    font-size: 22px;
    font-size: 1.375rem;
    gap: 10px;
  }
}
.l-plus-footer__btnList li a .-iconTxt .c-icon-svg {
  width: 16px;
  aspect-ratio: 1/1;
}
@media screen and (min-width: 768px) {
  .l-plus-footer__btnList li a .-iconTxt .c-icon-svg {
    width: 20px;
  }
}
@media screen and (min-width: 960px) {
  .l-plus-footer__btnList li a::before {
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
  }
  .l-plus-footer__btnList li a:hover::before {
    width: 100%;
    height: 100%;
    border-radius: 8px;
  }
}
.l-plus-footer__btnList li:nth-child(3) {
  grid-column: 1/-1;
}
.l-plus-footer .c-plus-dengenkun {
  display: none;
}
@media screen and (min-width: 960px) {
  .l-plus-footer .c-plus-dengenkun {
    display: grid;
    grid-template-rows: auto auto;
    gap: 20px;
    justify-items: center;
    position: absolute;
    z-index: 1;
  }
  .l-plus-footer .c-plus-dengenkun .-serif {
    display: block;
    white-space: nowrap;
  }
  .l-plus-footer .c-plus-dengenkun .-serif::after {
    width: 10px;
    height: 9px;
    -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
            clip-path: polygon(0 0, 100% 0, 50% 100%);
    top: calc(100% + 2px);
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .l-plus-footer .c-plus-dengenkun:nth-of-type(1) {
    bottom: calc(100% - 75px);
    right: -70px;
  }
}
@media screen and (min-width: 960px) and (min-width: 1200px) {
  .l-plus-footer .c-plus-dengenkun:nth-of-type(1) {
    bottom: calc(100% - 155px);
    right: -50px;
  }
}
@media screen and (min-width: 960px) {
  .l-plus-footer .c-plus-dengenkun:nth-of-type(2) {
    bottom: -90px;
    left: -70px;
  }
}
@media screen and (min-width: 960px) and (min-width: 1200px) {
  .l-plus-footer .c-plus-dengenkun:nth-of-type(2) {
    bottom: 75px;
    left: -65px;
  }
}
.l-plus-footer.js-scroll .l-plus-footer__ttl {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.l-plus-footer.js-scroll .c-plus-dengenkun {
  opacity: 0;
}
.l-plus-footer.-start .l-plus-footer__ttl {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.l-plus-footer.-start .c-plus-dengenkun {
  -webkit-animation: dengenkunAnime 0.3s forwards ease-out;
          animation: dengenkunAnime 0.3s forwards ease-out;
}
.l-plus-footer.-start .c-plus-dengenkun:nth-of-type(1) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.l-plus-footer.-start .c-plus-dengenkun:nth-of-type(2) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.l-foot-bnr::before {
  content: none;
}

.l-plus-otherBox {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 10px;
  -webkit-align-content: stretch;
      -ms-flex-line-pack: stretch;
          align-content: stretch;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .l-plus-otherBox {
    gap: 20px;
    padding: 0;
  }
}
.l-plus-otherBox__item a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 30px;
  min-height: 80px;
  height: 100%;
  background: #fff;
  border: 2px solid var(--color-main);
  border-radius: 10px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-plus-otherBox__item a {
    padding: 20px;
  }
}
.l-plus-otherBox__item a > * {
  position: relative;
  z-index: 1;
}
.l-plus-otherBox__item a::before, .l-plus-otherBox__item a::after {
  content: "";
  display: block;
}
.l-plus-otherBox__item a::before {
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  background: var(--color-plus-sub);
  opacity: 0;
  border-radius: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.l-plus-otherBox__item a::after {
  width: 20px;
  border-radius: 9999px;
  aspect-ratio: 1/1;
  background: url(/coselplus/assets/img/ico-arrow-white.svg) no-repeat center center/calc(100% - 10px) calc(100% - 10px), var(--color-main);
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .l-plus-otherBox__item a::after {
    width: 23px;
    background-size: calc(100% - 12px) calc(100% - 12px);
  }
}
.l-plus-otherBox__item a .-ico {
  width: 35px;
}
@media screen and (min-width: 768px) {
  .l-plus-otherBox__item a .-ico {
    width: 45px;
  }
}
.l-plus-otherBox__item a .-ttl {
  font-size: 16px;
  font-size: 1rem;
  font-weight: var(--font-m);
}
@media screen and (min-width: 768px) {
  .l-plus-otherBox__item a .-ttl {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.l-plus-otherBox__item a .-ttl span {
  display: inline-block;
}
@media screen and (min-width: 960px) {
  .l-plus-otherBox__item a:hover::before {
    opacity: 1;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }
}