@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;
  }
}

.l-loading {
  display: none;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999999;
}
.l-loading__inner {
  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: 50px;
  width: 100%;
  height: 100vh;
  background: #fff;
}
.l-loading__logo {
  width: 200px;
}
@media screen and (min-width: 960px) {
  .l-loading__logo {
    width: 250px;
  }
}
.l-loading__logo img {
  width: 100%;
}
.l-loading__dot {
  width: 60px;
  aspect-ratio: 2;
  --_g: no-repeat radial-gradient(circle closest-side,var(--color-sub2) 90%,#0000);
  background: var(--_g) 0% 50%, var(--_g) 50% 50%, var(--_g) 100% 50%;
  background-size: 33.3333333333% 50%;
  -webkit-animation: l3 1.2s infinite linear;
          animation: l3 1.2s infinite linear;
}
@-webkit-keyframes l3 {
  20% {
    background-position: 0% 0%, 50% 50%, 100% 50%;
  }
  40% {
    background-position: 0% 100%, 50% 0%, 100% 50%;
  }
  60% {
    background-position: 0% 50%, 50% 100%, 100% 0%;
  }
  80% {
    background-position: 0% 50%, 50% 50%, 100% 100%;
  }
}
@keyframes l3 {
  20% {
    background-position: 0% 0%, 50% 50%, 100% 50%;
  }
  40% {
    background-position: 0% 100%, 50% 0%, 100% 50%;
  }
  60% {
    background-position: 0% 50%, 50% 100%, 100% 0%;
  }
  80% {
    background-position: 0% 50%, 50% 50%, 100% 100%;
  }
}

.l-plus-mv {
  margin: 45px 0 0;
  padding: 30px 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-plus-mv {
    margin-top: 50px;
    padding: 50px 0;
  }
}
.l-plus-mv > * {
  position: relative;
  z-index: 1;
}
.l-plus-mv::before {
  content: "";
  display: block;
  width: calc(100% - 30px);
  max-width: var(--plus-maxWidth);
  height: 100%;
  background: #fff;
  border-radius: 20px;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.l-plus-mv__slide .slick-track {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.l-plus-mv__slide__item {
  height: auto !important;
  display: grid !important;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  margin: 0 10px;
  border: 2px solid var(--color-main);
  background: #fff;
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .l-plus-mv__slide__item {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    border-radius: 14px;
    margin: 0 25px;
  }
}
@media screen and (min-width: 960px) {
  .l-plus-mv__slide__item {
    max-width: 785px;
    width: 100%;
  }
}
.l-plus-mv__slide__item .-img {
  aspect-ratio: 1/0.6;
  background: var(--color-plus-sub);
  border-radius: 18px 18px 0 0;
  position: relative;
  overflow: hidden;
}
.l-plus-mv__slide__item .-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) {
  .l-plus-mv__slide__item .-img {
    aspect-ratio: auto;
    border-radius: 11px 0 0 11px;
    min-height: 240px;
  }
}
@media screen and (min-width: 960px) {
  .l-plus-mv__slide__item .-img {
    min-height: 300px;
  }
}
.l-plus-mv__slide__item .-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
}
.l-plus-mv__slide__item .-txtBox {
  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: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 20px 25px 25px;
}
@media screen and (min-width: 768px) {
  .l-plus-mv__slide__item .-txtBox {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (min-width: 960px) {
  .l-plus-mv__slide__item .-txtBox {
    padding: 20px 40px;
  }
}
.l-plus-mv__slide__item .-txtBox .-category {
  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;
  color: var(--color-main);
  font-weight: var(--font-m);
  font-size: 12px;
  font-size: 0.75rem;
  padding: 4px 10px 3px;
  background: var(--color-plus-sub);
  border-radius: 9999px;
}
@media screen and (min-width: 960px) {
  .l-plus-mv__slide__item .-txtBox .-category {
    font-size: 13px;
    font-size: 0.8125rem;
    padding: 7px 15px 5px;
  }
}
.l-plus-mv__slide__item .-txtBox .-category figure {
  width: 15px;
}
@media screen and (min-width: 960px) {
  .l-plus-mv__slide__item .-txtBox .-category figure {
    width: 23px;
  }
}
.l-plus-mv__slide__item .-txtBox .-ttl {
  margin-top: 10px;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: var(--font-b);
  color: var(--color-main);
}
@media screen and (min-width: 960px) {
  .l-plus-mv__slide__item .-txtBox .-ttl {
    margin-top: 15px;
    line-height: var(--lhL);
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.l-plus-mv__slide__item .-txtBox .c-plus-btn-1 {
  padding-top: 20px;
  margin: auto 0 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .l-plus-mv__slide__item .-txtBox .c-plus-btn-1 {
    margin: 0 auto;
  }
}
.l-plus-mv__slide__item .-txtBox .c-plus-btn-1 a {
  max-width: 255px;
  width: 100%;
}
@media screen and (min-width: 960px) {
  .l-plus-mv__slide__item .-txtBox .c-plus-btn-1 a {
    max-width: none;
  }
}
.l-plus-mv__slide__item.-product .-img::before {
  background-image: url(/coselplus/assets/img/bg-ico-product.svg);
}
.l-plus-mv__slide__item.-noise .-img::before {
  background-image: url(/coselplus/assets/img/bg-ico-noise.svg);
}
.l-plus-mv__slide__item.-technical .-img::before {
  background-image: url(/coselplus/assets/img/bg-ico-technical.svg);
}
.l-plus-mv__slide__item.-movie .-img::before {
  background-image: url(/coselplus/assets/img/bg-ico-movie.svg);
}
.l-plus-mv__slide__item.-recommend .-img::before {
  background-image: url(/coselplus/assets/img/bg-ico-recommend.svg);
}
.l-plus-mv__slide .slick-prev, .l-plus-mv__slide .slick-next {
  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;
  width: 45px;
  height: 45px;
  background: var(--color-main);
  color: #fff;
  border-radius: 9999px;
  border: 2px solid #fff;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .l-plus-mv__slide .slick-prev, .l-plus-mv__slide .slick-next {
    width: 55px;
    height: 55px;
  }
}
@media screen and (min-width: 960px) {
  .l-plus-mv__slide .slick-prev, .l-plus-mv__slide .slick-next {
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
  }
  .l-plus-mv__slide .slick-prev:hover, .l-plus-mv__slide .slick-next:hover {
    background: var(--color-plus-hover);
  }
}
.l-plus-mv__slide .slick-prev::before, .l-plus-mv__slide .slick-next::before {
  content: none;
}
.l-plus-mv__slide .slick-prev .c-icon-svg, .l-plus-mv__slide .slick-next .c-icon-svg {
  width: 13px;
  aspect-ratio: 1/1;
}
@media screen and (min-width: 768px) {
  .l-plus-mv__slide .slick-prev .c-icon-svg, .l-plus-mv__slide .slick-next .c-icon-svg {
    width: 15px;
  }
}
.l-plus-mv__slide .slick-prev {
  left: 10px;
}
@media screen and (min-width: 768px) {
  .l-plus-mv__slide .slick-prev {
    left: 100px;
  }
}
@media screen and (min-width: 960px) {
  .l-plus-mv__slide .slick-prev {
    left: calc(50% - 392.5px - 27.5px);
  }
}
.l-plus-mv__slide .slick-prev .c-icon-svg {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.l-plus-mv__slide .slick-next {
  right: 10px;
}
@media screen and (min-width: 768px) {
  .l-plus-mv__slide .slick-next {
    right: 100px;
  }
}
@media screen and (min-width: 960px) {
  .l-plus-mv__slide .slick-next {
    right: calc(50% - 392.5px - 27.5px);
  }
}
.l-plus-mv .c-plus-dengenkun {
  display: grid;
  grid-template-columns: auto auto auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: start;
      -ms-flex-pack: start;
          justify-content: start;
  position: absolute;
}
.l-plus-mv .c-plus-dengenkun .-img + .-img {
  margin-left: -15px;
}
.l-plus-mv .c-plus-dengenkun:nth-of-type(1) {
  -webkit-box-pack: end;
  -webkit-justify-content: end;
      -ms-flex-pack: end;
          justify-content: end;
  bottom: calc(100% + 7px);
  right: 0;
}
@media screen and (min-width: 960px) {
  .l-plus-mv .c-plus-dengenkun:nth-of-type(1) {
    top: calc(100% + 10px);
    left: 0;
    bottom: auto;
    right: auto;
  }
}
@media screen and (min-width: 1150px) {
  .l-plus-mv .c-plus-dengenkun:nth-of-type(1) {
    left: calc(50% - var(--plus-maxWidth) / 2);
  }
}
.l-plus-mv .c-plus-dengenkun:nth-of-type(1) .-serif {
  grid-column: 1/2;
  grid-row: 1/2;
}
@media screen and (min-width: 960px) {
  .l-plus-mv .c-plus-dengenkun:nth-of-type(1) .-serif {
    grid-column: auto;
    grid-row: auto;
  }
}
.l-plus-mv .c-plus-dengenkun:nth-of-type(1) .-serif::after {
  top: 50%;
  right: -7px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 960px) {
  .l-plus-mv .c-plus-dengenkun:nth-of-type(1) .-serif::after {
    right: auto;
    left: -7px;
    -webkit-transform: translateY(-50%) rotate(180deg);
            transform: translateY(-50%) rotate(180deg);
  }
}
.l-plus-mv .c-plus-dengenkun:nth-of-type(2) {
  top: calc(100% + 7px);
  left: 0;
}
@media screen and (min-width: 960px) {
  .l-plus-mv .c-plus-dengenkun:nth-of-type(2) {
    display: none;
  }
}
.l-plus-mv .c-plus-dengenkun:nth-of-type(2) .-img:not(.-jump) {
  margin-top: 8px;
}
.l-plus-mv .c-plus-dengenkun:nth-of-type(2) .-serif {
  margin-bottom: 20px;
}
.l-plus-mv .c-plus-dengenkun:nth-of-type(2) .-serif::after {
  top: 50%;
  left: -7px;
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
.l-plus-mv.js-animeStart .l-plus-mv__slide {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.4s 0.3s;
  transition: all 0.4s 0.3s;
}
.l-plus-mv.js-animeStart .c-plus-dengenkun .-img {
  opacity: 0;
  -webkit-transform: scale(0.5) translateY(10px);
          transform: scale(0.5) translateY(10px);
}
.l-plus-mv.js-animeStart .c-plus-dengenkun .-serif {
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: all 0.4s 1.6s;
  transition: all 0.4s 1.6s;
}
.l-plus-mv.js-animeStart.-start .l-plus-mv__slide {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.l-plus-mv.js-animeStart.-start .c-plus-dengenkun .-img {
  -webkit-animation: dengenkunAnime 0.3s forwards ease-out;
          animation: dengenkunAnime 0.3s forwards ease-out;
}
.l-plus-mv.js-animeStart.-start .c-plus-dengenkun .-img:nth-of-type(1) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.l-plus-mv.js-animeStart.-start .c-plus-dengenkun .-img:nth-of-type(2) {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}
.l-plus-mv.js-animeStart.-start .c-plus-dengenkun .-serif {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.l-plus-top-section {
  margin-top: 120px;
}
@media screen and (min-width: 768px) {
  .l-plus-top-section__inner {
    text-align: center;
  }
  .l-plus-top-section__inner > * {
    text-align: left;
  }
}
.l-plus-top-section .c-plus-ttl-1 {
  padding-bottom: 10px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-plus-top-section .c-plus-ttl-1 {
    display: inline-block;
    text-align: center;
    padding: 0 15px 10px;
    max-width: 45%;
  }
}
.l-plus-top-section .c-plus-ttl-1 + * {
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  .l-plus-top-section .c-plus-ttl-1 + * {
    margin-top: 30px;
  }
}
.l-plus-top-section .c-plus-ttl-1::before {
  content: "";
  width: calc(100% - 30px - 15px);
  height: 3px;
  background: var(--color-plus-main);
  position: absolute;
  bottom: 0;
  left: 15px;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}
@media screen and (min-width: 768px) {
  .l-plus-top-section .c-plus-ttl-1::before {
    width: 100%;
    height: 4px;
    left: 0;
  }
}
.l-plus-top-section .c-plus-ttl-1::after {
  content: "";
  display: block;
  width: 18px;
  aspect-ratio: 1/1;
  background: url(/coselplus/assets/img/ico-plug.svg) no-repeat center center/cover;
  position: absolute;
  bottom: 0;
  right: 15px;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}
@media screen and (min-width: 768px) {
  .l-plus-top-section .c-plus-ttl-1::after {
    width: 26px;
    right: auto;
    left: 100%;
  }
}
.l-plus-top-section .c-plus-ttl-1 .-ttl, .l-plus-top-section .c-plus-ttl-1 .-detail {
  position: relative;
  z-index: 1;
}
.l-plus-top-section .c-plus-ttl-1 .c-plus-dengenkun {
  display: block;
  width: 100%;
  height: calc(100% + 30px);
  position: absolute;
  bottom: 0;
  left: 0;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .l-plus-top-section .c-plus-ttl-1 .c-plus-dengenkun {
    height: auto;
    overflow: visible;
  }
}
.l-plus-top-section .c-plus-ttl-1 .c-plus-dengenkun .-img {
  position: absolute;
  top: 65px;
}
@media screen and (min-width: 768px) {
  .l-plus-top-section .c-plus-ttl-1 .c-plus-dengenkun .-img {
    top: auto;
    bottom: -10px;
  }
}
.l-plus-top-section .c-plus-ttl-1 .c-plus-dengenkun .-img:nth-of-type(1) {
  left: -28px;
  -webkit-transform: rotate(34deg);
          transform: rotate(34deg);
}
@media screen and (min-width: 768px) {
  .l-plus-top-section .c-plus-ttl-1 .c-plus-dengenkun .-img:nth-of-type(1) {
    left: auto;
    right: calc(100% + 50px);
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
.l-plus-top-section .c-plus-ttl-1 .c-plus-dengenkun .-img:nth-of-type(2) {
  right: -28px;
  -webkit-transform: rotate(-34deg);
          transform: rotate(-34deg);
}
@media screen and (min-width: 768px) {
  .l-plus-top-section .c-plus-ttl-1 .c-plus-dengenkun .-img:nth-of-type(2) {
    right: auto;
    left: calc(100% + 50px);
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
.l-plus-top-section .c-plus-ttl-1 .c-plus-dengenkun .-serif {
  position: absolute;
  right: 15px;
  top: 0;
}
@media screen and (min-width: 768px) {
  .l-plus-top-section .c-plus-ttl-1 .c-plus-dengenkun .-serif {
    top: auto;
    bottom: 105px;
    right: auto;
    left: calc(100% + 70px);
    word-break: keep-all;
  }
}
.l-plus-top-section .c-plus-ttl-1 .c-plus-dengenkun .-serif::after {
  bottom: -7px;
  right: 15px;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%);
}
@media screen and (min-width: 768px) {
  .l-plus-top-section .c-plus-ttl-1 .c-plus-dengenkun .-serif::after {
    right: calc(50% - 7px);
    -webkit-clip-path: polygon(0 0, 0 100%, 100% 0);
            clip-path: polygon(0 0, 0 100%, 100% 0);
  }
}
.l-plus-top-section .c-plus-ttl-1 .c-plus-dengenkun .-serif.-left {
  right: auto;
  left: 15px;
}
@media screen and (min-width: 768px) {
  .l-plus-top-section .c-plus-ttl-1 .c-plus-dengenkun .-serif.-left {
    left: auto;
    right: calc(100% + 70px);
  }
}
.l-plus-top-section .c-plus-ttl-1 .c-plus-dengenkun .-serif.-left::after {
  right: auto;
  left: 15px;
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 0);
          clip-path: polygon(0 0, 0 100%, 100% 0);
}
@media screen and (min-width: 768px) {
  .l-plus-top-section .c-plus-ttl-1 .c-plus-dengenkun .-serif.-left::after {
    left: calc(50% - 7px);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%);
  }
}
.l-plus-top-section .c-plus-ttl-1.js-scroll .-ico, .l-plus-top-section .c-plus-ttl-1.js-scroll .-ttl {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.l-plus-top-section .c-plus-ttl-1.js-scroll .c-plus-dengenkun .-img {
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.l-plus-top-section .c-plus-ttl-1.js-scroll .c-plus-dengenkun .-img:nth-child(1) {
  -webkit-transform: rotate(34deg) translate(-20px, 30px);
          transform: rotate(34deg) translate(-20px, 30px);
}
@media screen and (min-width: 768px) {
  .l-plus-top-section .c-plus-ttl-1.js-scroll .c-plus-dengenkun .-img:nth-child(1) {
    -webkit-transform: rotate(0deg) translateY(20px);
            transform: rotate(0deg) translateY(20px);
  }
}
.l-plus-top-section .c-plus-ttl-1.js-scroll .c-plus-dengenkun .-img:nth-child(2) {
  -webkit-transform: rotate(-34deg) translate(20px, 30px);
          transform: rotate(-34deg) translate(20px, 30px);
}
@media screen and (min-width: 768px) {
  .l-plus-top-section .c-plus-ttl-1.js-scroll .c-plus-dengenkun .-img:nth-child(2) {
    -webkit-transform: rotate(0deg) translateY(20px);
            transform: rotate(0deg) translateY(20px);
  }
}
.l-plus-top-section .c-plus-ttl-1.js-scroll .c-plus-dengenkun .-img:nth-of-type(1) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.l-plus-top-section .c-plus-ttl-1.js-scroll .c-plus-dengenkun .-img:nth-of-type(2) {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
.l-plus-top-section .c-plus-ttl-1.js-scroll .c-plus-dengenkun .-serif {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.4s 1.2s;
  transition: all 0.4s 1.2s;
}
.l-plus-top-section .c-plus-ttl-1.-start .-ico, .l-plus-top-section .c-plus-ttl-1.-start .-ttl {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.l-plus-top-section .c-plus-ttl-1.-start .c-plus-dengenkun .-img {
  opacity: 1;
  -webkit-transform: rotate(34deg) translate(0, 0);
          transform: rotate(34deg) translate(0, 0);
}
.l-plus-top-section .c-plus-ttl-1.-start .c-plus-dengenkun .-img:nth-child(1) {
  -webkit-transform: rotate(34deg) translate(0, 0);
          transform: rotate(34deg) translate(0, 0);
}
@media screen and (min-width: 768px) {
  .l-plus-top-section .c-plus-ttl-1.-start .c-plus-dengenkun .-img:nth-child(1) {
    -webkit-transform: rotate(0deg) translateY(0);
            transform: rotate(0deg) translateY(0);
  }
}
.l-plus-top-section .c-plus-ttl-1.-start .c-plus-dengenkun .-img:nth-child(2) {
  -webkit-transform: rotate(-34deg) translate(0, 0);
          transform: rotate(-34deg) translate(0, 0);
}
@media screen and (min-width: 768px) {
  .l-plus-top-section .c-plus-ttl-1.-start .c-plus-dengenkun .-img:nth-child(2) {
    -webkit-transform: rotate(0deg) translateY(0);
            transform: rotate(0deg) translateY(0);
  }
}
.l-plus-top-section .c-plus-ttl-1.-start .c-plus-dengenkun .-serif {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.l-plus-top-section .c-plus-whiteBox__content + .c-plus-btn-1 {
  margin-top: 20px;
}
.l-plus-top-section .c-plus-whiteBox__content + .c-plus-btn-1 a {
  min-width: 200px;
}
.l-plus-top-section .c-plus-whiteBox {
  padding: 0 var(--plus-sidePadding);
}
@media screen and (min-width: 768px) {
  .l-plus-top-section .c-plus-whiteBox.p-top-btnIn {
    position: relative;
  }
  .l-plus-top-section .c-plus-whiteBox.p-top-btnIn .c-plus-whiteBox__content {
    padding-bottom: 180px;
  }
  .l-plus-top-section .c-plus-whiteBox.p-top-btnIn > .c-plus-btn-1 {
    position: absolute;
    bottom: 60px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}