@charset "UTF-8";
/*–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
//  カラー
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––*/
.color-blue {
  color: #003893 !important;
}

.color-yellow {
  color: #f4c800 !important;
}

.color-green {
  color: #44af35 !important;
}

.color-white {
  color: #fff !important;
}

.color-black {
  color: #333 !important;
}

/*–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
//  フォントウェイト
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––*/
.fw-mediam {
  font-weight: 500;
}

/*–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
//  リセット
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

body {
  line-height: 1.6;
  letter-spacing: 0.6px;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

img {
  vertical-align: top;
  border: 0;
  width: auto;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

ul,
ol {
  list-style-type: none;
  padding-inline-start: 0;
  list-style-position: inside;
}

#root,
#__next {
  isolation: isolate;
}

/* Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
-------------------------------------------------------------------*/
/*–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
//  メイン
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––*/
html {
  scroll-behavior: smooth;
}

#main {
  background-color: #000;
  color: #333333;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-feature-settings: "palt";
  font-style: normal;
}
#main p {
  line-height: 1.8;
}

.lp-title {
  font-size: clamp(1.25rem, 1.068rem + 0.91vw, 1.75rem);
  position: relative;
  padding-bottom: 20px;
  text-align: center;
}
.lp-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  height: 8px;
  width: clamp(3.5rem, 3.136rem + 1.82vw, 4.5rem);
  background-color: #003893;
  border-radius: 6px;
}

/*–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
//  リンク
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––*/
a {
  transition: all ease 0.6s;
}

a:link {
  color: inherit;
  text-decoration: none;
}

a:visited {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: inherit;
  text-decoration: none;
  opacity: 0.6;
  transition: all ease 0.6s;
}

a:active {
  color: inherit;
  text-decoration: none;
}

/*–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
//  PC、SP切り替え
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––*/
.onlyPc {
  display: none;
}
@media screen and (min-width: 768px) {
  .onlyPc {
    display: block;
  }
}

.onlySp {
  display: block;
}
@media screen and (min-width: 768px) {
  .onlySp {
    display: none;
  }
}

/*–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
//  フォント
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––*/
.text-xxs {
  font-size: 10px;
}

.text-xs {
  font-size: clamp(0.75rem, 0.705rem + 0.23vw, 0.875rem);
}

.text-sm {
  font-size: clamp(0.813rem, 0.767rem + 0.23vw, 0.938rem);
}

.text-md {
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
}

.text-lg {
  font-size: clamp(1.063rem, 0.994rem + 0.34vw, 1.25rem);
}

.text-xl {
  font-size: clamp(1.375rem, 1.239rem + 0.68vw, 1.75rem);
}

/*–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
//  コンテンツ幅
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––*/
.width-md {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

/*–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
//  横幅、縦幅空き
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––*/
.padding-md {
  padding: clamp(2rem, 0.545rem + 7.27vw, 6rem) clamp(2rem, 1.636rem + 1.82vw, 3rem);
}

.webrelease-js__picture {
  display: none;
}

/*–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
//  ボタン
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––*/
.cta {
  background-color: #003893;
}

.cta-title {
  max-width: 415px;
  width: 100%;
  margin: 0 auto;
}

.button {
  display: inline-block;
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  font-weight: 600;
  max-width: 350px;
  width: 100%;
  cursor: pointer;
}

.button-inner {
  border-radius: 30px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button__kodate {
  background-color: #f4c800;
  box-shadow: 0 4px 0 0 #977d00;
  color: #333;
}
.button__kodate::before {
  display: inline-block;
  content: "";
  background: url(../images/icon_kodate.svg);
  width: 32px;
  height: 32px;
  margin-right: 8px;
}

.button__syugo {
  background-color: #44af35;
  box-shadow: 0 4px 0 0 #008020;
  color: #fff;
}
.button__syugo::before {
  display: inline-block;
  content: "";
  background: url(../images/icon_syugo.svg);
  width: 32px;
  height: 32px;
  margin-right: 8px;
}

.button-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .button-wrapper {
    flex-direction: row;
    justify-content: center;
    gap: 56px;
  }
}

/*–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
//  ヘッダー
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––*/
.header {
  width: 100%;
  background: #003893;
}

.header-inner {
  display: grid;
  align-items: center;
  height: 60px;
  padding-left: 5%;
}
@media screen and (min-width: 768px) {
  .header-inner {
    height: 80px;
  }
}

.header-logo {
  width: 140px;
}
@media screen and (min-width: 768px) {
  .header-logo {
    width: 182px;
  }
}

/*–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
//  フッター
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––*/
.footer {
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
}

.footer-inner {
  text-align: center;
  padding: 48px 20px;
}

.footer-logo {
  margin-top: 24px;
  display: grid;
  justify-items: center;
}

/*–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
//  新規ご加入者様限定特典
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––*/
.special {
  background-image: url(../images/bg_specialoffer.jpg);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

.special-inner {
  max-width: 800px;
  margin: 0 auto;
}

.special-text {
  margin-top: 16px;
  font-weight: 300;
  text-align: justify;
}

.special-text__2 {
  margin-top: 8px;
  font-weight: 500;
}
.special-text__2 a {
  text-decoration: underline;
}

/*–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
//  プロ野球見るならイッツコム
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––*/
.itscom {
  background-image: url(../images/bg_itscom.jpg);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

.itscom-title {
  max-width: 920px;
  margin: 0 auto;
}

.itscom-text {
  text-align: justify;
  margin-top: clamp(2rem, 1.273rem + 3.64vw, 4rem);
  line-height: 2 !important;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .itscom-text {
    text-align: center;
    line-height: 2.4 !important;
  }
}

.itscom-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .itscom-card {
    flex-direction: row;
    justify-content: center;
    gap: 56px;
    margin-top: 64px;
  }
}

.itscom-card__item {
  max-width: 426px;
  width: 100%;
}

/*–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
//  おすすめTVコース
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––*/
.tvcourse {
  background-color: #607981;
  background-image: url(../images/icon_tv.png);
  background-repeat: no-repeat;
  background-position: top 40% right;
  background-size: 50%;
}
@media screen and (min-width: 768px) {
  .tvcourse {
    background-size: auto;
  }
}

.tvcourse-title {
  max-width: 488px;
  margin: 0 auto;
}

.tvcourse-copy {
  max-width: 654px;
  width: 100%;
  margin: clamp(1.5rem, 1.136rem + 1.82vw, 2.5rem) auto 0;
}

.tvcourse-card {
  background-color: #fff;
  border-radius: 20px;
  padding: clamp(1rem, 0.636rem + 1.82vw, 2rem) clamp(1.5rem, 0.955rem + 2.73vw, 3rem);
  margin-top: clamp(2rem, 1.273rem + 3.64vw, 4rem);
}

.tvcourse-link {
  display: block;
  margin-top: 24px;
  text-align: center;
  text-decoration: underline !important;
  cursor: pointer;
}
.tvcourse-link::after {
  display: inline-block;
  content: "";
  background: url(../images/icon_arrowDown.svg);
  background-size: cover;
  width: 20px;
  height: 12px;
  margin-left: 8px;
}

/*–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
//  放送チャンネル
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––*/
.channel {
  background-image: url(../images/bg_channel.jpg);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  position: relative;
}

.triangle {
  background-color: #607981;
  width: clamp(2rem, 1.273rem + 3.64vw, 4rem);
  height: clamp(1.5rem, 0.955rem + 2.73vw, 3rem);
  clip-path: polygon(50% 100%, 0% 0%, 100% 0%);
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
}

.channel-title {
  max-width: 686px;
  margin: 0 auto;
}

.channel-team {
  display: flex;
  gap: clamp(1.5rem, 0.955rem + 2.73vw, 3rem);
  max-width: 686px;
  margin: clamp(2rem, 1.455rem + 2.73vw, 3.5rem) auto 0;
}

/*–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
//  放送プログラム
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––*/
.program {
  background: linear-gradient(0deg, #333, #000);
  padding-top: 0;
}
@media screen and (min-width: 768px) {
  .program {
    padding-top: 32px;
  }
}

.program-title {
  max-width: 648px;
  margin: 0 auto;
}

.program-card {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: clamp(1.5rem, 1.136rem + 1.82vw, 2.5rem);
}
@media screen and (min-width: 768px) {
  .program-card {
    gap: 50px;
  }
}
.program-card--fighters {
  background-color: #005292;
  border: 1px solid #005292;
}
.program-card--tigers {
  background-color: #fccf00;
  border: 1px solid #fccf00;
}
.program-card--hawks {
  background-color: #f5aa00;
  border: 1px solid #f5aa00;
}
.program-card--dragons {
  background-color: #004097;
  border: 1px solid #004097;
}
.program-card--carp {
  background-color: #e50012;
  border: 1px solid #e50012;
}
.program-card--orixB {
  background-color: #c89e4a;
  border: 1px solid #c89e4a;
}
.program-card--baystars {
  background-color: #005bab;
  border: 1px solid #005bab;
}
.program-card--swallows {
  background-color: #1d2087;
  border: 1px solid #1d2087;
}
.program-card--lions {
  background-color: #008bd5;
  border: 1px solid #008bd5;
}
.program-card--eagles {
  background-color: #af1d36;
  border: 1px solid #af1d36;
}
.program-card--marines {
  background-color: #595757;
  border: 1px solid #595757;
}

.program-card__item {
  line-height: 1.2 !important;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .program-card__item {
    max-width: 284px;
  }
}
.program-card__item h3 {
  display: grid;
  align-items: center;
  height: 50px;
  padding: 0 16px 4px;
}
.program-card__item h4 {
  display: grid;
  align-items: center;
  background-color: #fff;
  padding: 10px 16px;
  height: 54px;
}
.program-card__item small {
  display: block;
  font-size: 10px;
  padding: 8px;
  text-align: right;
}

.program-card__image {
  position: relative;
}
.program-card__image .tap-wrapper {
  border-radius: 50%;
  position: absolute;
  top: 8px;
  right: 8px;
  width: 48px;
  height: 48px;
}
.program-card__image .tap {
  width: 35px;
  height: 27px;
  position: absolute;
  top: 12px;
  right: 7px;
}

.bg-fighters {
  background-color: #005292;
}

.bg-tigers {
  background-color: #fccf00;
}

.bg-hawks {
  background-color: #f5aa00;
}

.bg-dragons {
  background-color: #004097;
}

.bg-carp {
  background-color: #e50012;
}

.bg-orixB {
  background-color: #c89e4a;
}

.bg-baystars {
  background-color: #005bab;
}

.bg-swallows {
  background-color: #1d2087;
}

.bg-lions {
  background-color: #008bd5;
}

.bg-eagles {
  background-color: #af1d36;
}

.bg-marines {
  background-color: #595757;
}

/* モーダル
-------------------------------------------------------------------*/
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.modal.is-show {
  display: flex;
}

.modal-content {
  background: #d9d9d9;
  padding: clamp(3.5rem, 3.318rem + 0.91vw, 4rem) clamp(1rem, 0.818rem + 0.91vw, 1.5rem) clamp(1rem, 0.636rem + 1.82vw, 2rem);
  border-radius: 12px;
  max-width: 440px;
  width: 90%;
  position: relative;
  animation: fadeInUp 0.4s ease forwards;
}

.modal-image {
  margin-top: 16px;
}

.modal-content small {
  font-size: 10px;
  display: block;
  text-align: right;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 24px;
  width: 80px;
  cursor: pointer;
}

.modal-program {
  margin-top: 8px;
  font-size: clamp(0.938rem, 0.869rem + 0.34vw, 1.125rem);
  line-height: 1 !important;
}

.modal-team {
  border-radius: 20px;
  font-size: clamp(1rem, 0.909rem + 0.45vw, 1.25rem);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  gap: 10px;
}
.modal-team img {
  width: 24px;
  height: 22px;
}

.modal-channel {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}
.modal-channel img {
  height: clamp(2.5rem, 2.136rem + 1.82vw, 3.5rem);
  width: auto;
}

.modal-channel__text {
  font-weight: 500;
  line-height: 1 !important;
}

/*–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
//  イッツコムch
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––*/
.itscomCh {
  background-image: url(../images/pattern01.png);
  padding: 0 clamp(2rem, 1.636rem + 1.82vw, 3rem) clamp(2rem, 0.545rem + 7.27vw, 6rem);
}

.itscomCh-title {
  max-width: 900px;
}

.itscomCh-program {
  max-width: 900px;
  margin: 24px auto 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .itscomCh-program {
    flex-direction: row;
    align-items: center;
    margin-top: 0;
    gap: 48px;
  }
}

.itscomCh-program__image {
  box-shadow: 10px 10px #adc0cc;
}

.itscomCh-program__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: justify;
}

.itscomCh-column {
  background-color: #003893;
  border: 4px solid #2abfff;
  border-radius: 20px;
  margin-top: 32px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .itscomCh-column {
    margin-top: 64px;
    flex-direction: row;
    align-items: center;
    gap: 32px;
  }
}

@media screen and (min-width: 768px) {
  .itscomCh-column__image {
    flex-basis: 45%;
  }
}

.itscomCh-column__text {
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .itscomCh-column__text {
    flex-basis: 55%;
  }
}

/*–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
//  おトクな料金プラン
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––*/
.plan {
  background-image: url(../images/pattern01.png);
}

.plan-tabs {
  display: flex;
}

.plan-tab {
  flex: 1;
  padding: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
  cursor: pointer;
  border-radius: 20px 20px 0 0;
  border: none;
  transition: all 0.3s ease;
}
.plan-tab__yellow {
  background-color: #f4c800;
}
.plan-tab__green {
  background-color: #44af35;
}

.plan-tab.is-active {
  font-weight: 600;
}

.plan-container {
  max-width: 880px;
  margin: clamp(1.5rem, 0.955rem + 2.73vw, 3rem) auto 0;
}

.plan-content {
  display: none;
  padding: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
}
.plan-content__yellow {
  background-color: #f4c800;
}
.plan-content__green {
  background-color: #44af35;
}

.plan-content__inner {
  background-color: #fff;
  padding: clamp(1rem, 0.636rem + 1.82vw, 2rem);
}

.plan-content.is-active {
  display: block;
}

.plan-text {
  font-size: clamp(0.75rem, 0.705rem + 0.23vw, 0.875rem);
  text-align: justify;
  margin-top: 16px;
}

/*–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
//  サービス開始までの流れ
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––*/
.step {
  background-image: url(../images/pattern01.png);
}

.step-content {
  max-width: 840px;
  margin: clamp(1.5rem, 0.955rem + 2.73vw, 3rem) auto 0;
}

/*–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
//  よくあるご質問
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––*/
.faq {
  background-image: url(../images/pattern01.png);
  padding: clamp(2rem, 0.545rem + 7.27vw, 6rem) clamp(1rem, 0.273rem + 3.64vw, 3rem);
}

.faq-inner {
  max-width: 840px;
  margin: 0 auto;
}

.faq-card {
  margin-top: clamp(1.5rem, 0.955rem + 2.73vw, 3rem);
}

.faq-card__item {
  background-color: #fff;
  border-radius: 10px;
  padding: clamp(0.5rem, -0.045rem + 2.73vw, 2rem);
  margin-top: 24px;
}

.faq-card__header {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.faq-card__question {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .faq-card__question {
    gap: 16px;
  }
}
.faq-card__question h3 {
  font-size: clamp(1rem, 0.909rem + 0.45vw, 1.25rem);
}

.toggleBtn {
  position: relative;
  width: 16px;
  height: 16px;
  border: none;
  background: none;
  cursor: pointer;
  transition: ease 0.3s;
  flex-shrink: 0;
}
.toggleBtn::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}
.toggleBtn::after {
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  transform: translateX(-50%) scaleY(1);
  transform-origin: center center;
  opacity: 1;
}

.toggleBtn::before,
.toggleBtn::after {
  content: "";
  position: absolute;
  background-color: #333;
  transition: all 0.3s ease-in-out;
}

.toggleBtn.is-active::after {
  transform: translateX(-50%) scaleY(0);
  opacity: 0;
}

.faq-card__footer {
  display: none;
}
.faq-card__footer.is-active {
  display: block;
}

.faq-card__answer {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: clamp(1rem, 0.636rem + 1.82vw, 2rem);
}
@media screen and (min-width: 768px) {
  .faq-card__answer {
    gap: 16px;
  }
}
.faq-card__answer p {
  text-align: justify;
}

.faq-card__icon {
  display: inline-block;
  border-radius: 6px;
  color: #fff;
  font-size: clamp(1rem, 0.727rem + 1.36vw, 1.75rem);
  font-weight: 600;
  text-align: center;
  line-height: 1.3em;
  width: 2em;
  height: 1.5em;
  background-color: #003893;
  flex-shrink: 0;
}

/*–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
//  ベースボールナビ
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––*/
.bbnavi {
  background-image: url(../images/bg_baseballnavi.jpg);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  position: relative;
}

.bbnavi-title {
  max-width: 890px;
  margin: 0 auto;
}

.bbnavi-check {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 0.091rem + 4.55vw, 3.5rem);
  margin: clamp(1.5rem, 0.955rem + 2.73vw, 3rem) auto 0;
}
@media screen and (min-width: 768px) {
  .bbnavi-check {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.bbnavi-check__item {
  color: #fff;
  font-size: 4.2666666667vw;
  font-weight: 500;
  position: relative;
  padding-left: 16%;
}
@media screen and (min-width: 768px) {
  .bbnavi-check__item {
    font-size: 18px;
    padding-left: 60px;
  }
}
.bbnavi-check__item::before {
  content: "";
  display: inline-block;
  background: url(../images/icon_check.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 10.6666666667vw;
  height: 10.6666666667vw;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .bbnavi-check__item::before {
    width: 50px;
    height: 50px;
  }
}

.bbnavi-text {
  color: #f4c800;
  font-size: clamp(1.25rem, 1.159rem + 0.45vw, 1.5rem);
  font-weight: 500;
  text-align: center;
  margin-top: clamp(2rem, 0.545rem + 7.27vw, 6rem);
  position: relative;
  padding-bottom: 32px;
  line-height: 1.4 !important;
}
.bbnavi-text::after {
  display: block;
  content: url(../images/icon_arrowDown.svg);
  width: 32px;
  height: 20px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.bbnavi-bnr {
  display: block;
  max-width: 468px;
  margin: 24px auto 0;
}/*# sourceMappingURL=style.css.map */