@charset "UTF-8";
@import url("//fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@700;900&display=swap");
/*-----------------------------------

dazn-lp.scss

------------------------------------*/
:root {
  --v-space: clamp(47px, 4.9vw, 95px);
  --v-space2: clamp(23px, 2.45vw, 47px);
}

html {
  font-size: 62.5%;
  overflow-y: auto;
}
@media only screen and (max-width: 767px) {
  html.is-nav {
    overflow: hidden;
  }
}
@media only screen and (max-width: 767px) {
  html.is-nav body {
    overflow: scroll;
  }
}

body {
  background: #0c161c;
  width: 100%;
  font-size: 1.6rem;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

@media only screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media only screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

.dazn__lp {
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  font-weight: 700;
  font-feature-settings: "palt" 1;
}
.dazn__lp * {
  box-sizing: border-box;
}
.dazn__lp .btn {
  display: block;
  background: #e60012;
  color: #fff;
  text-decoration: none;
  font-size: clamp(10px, 2vw, 20px);
  min-height: 0;
  height: clamp(40px, 4.1vw, 80px);
  line-height: clamp(40px, 4.1vw, 80px);
  text-align: center;
  margin-top: var(--v-space2);
  position: relative;
  box-shadow: 5px 9px 0 #000;
}
@media only screen and (max-width: 767px) {
  .dazn__lp .btn {
    font-size: 1.2rem;
    max-width: 56vw;
    height: 12vw;
    line-height: 12vw;
    box-shadow: 0.5vw 0.9vw 0 #000;
    margin: 6vw auto 0;
  }
}
.dazn__lp .btn::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #fff;
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .dazn__lp .btn::after {
    width: 6vw;
    right: -3vw;
  }
}
@media only screen and (min-width: 769px) {
  .dazn__lp .btn:hover {
    box-shadow: 4px 6px 0 #000;
    transform: translate(1px, 3px);
  }
}

.header {
  background: #0c161c;
  height: 5.208vw;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .header {
    height: 13.33vw;
  }
}
.header .logo {
  position: absolute;
  top: 1.3vw;
  left: 50%;
  transform: translateX(-50%);
  width: 7.8125vw;
  z-index: 10001;
}
@media only screen and (max-width: 767px) {
  .header .logo {
    top: 3.2vw;
    width: 12.9vw;
  }
}
.header .nav {
  position: absolute;
  right: 2.86vw;
  top: 50%;
  transform: translateY(-50%);
  height: auto;
}
@media only screen and (min-width: 981px) {
  .header .nav {
    display: block !important;
  }
}
@media only screen and (max-width: 980px) {
  .header .nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translateY(0);
    width: 100%;
    height: 100vh;
    background: rgba(12, 22, 28, 0.8);
    z-index: 10000;
  }
}
.header .nav .list {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  height: auto;
  position: static;
}
@media only screen and (max-width: 980px) {
  .header .nav .list {
    justify-content: center;
    align-content: center;
    flex-direction: column;
    height: 100%;
  }
}
.header .nav .list .item {
  position: relative;
}
.header .nav .list .item:last-child {
  padding-left: 1.5em;
  margin-left: 1em;
}
@media only screen and (max-width: 980px) {
  .header .nav .list .item:last-child {
    margin-top: 5vw;
    padding-left: 0;
    margin-left: 0;
  }
}
.header .nav .list .item:last-child::before {
  content: "/";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  font-size: clamp(10px, 1.5vw, 20px);
  font-style: italic;
  color: #fff;
}
@media only screen and (max-width: 980px) {
  .header .nav .list .item:last-child::before {
    display: none;
  }
}
.header .nav .list .item a {
  color: #fff;
  text-decoration: none;
  font-size: clamp(10px, 1.5vw, 20px);
  font-weight: 900;
  font-style: italic;
  min-height: 0;
  display: block;
  white-space: nowrap;
  letter-spacing: -0.04em;
  padding: 0.5em 0;
  position: relative;
}
@media only screen and (max-width: 980px) {
  .header .nav .list .item a {
    font-size: 2rem;
  }
}
.header .nav .list .item a::after {
  content: "";
  width: 0%;
  height: 0;
  border-bottom: 2px solid;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: width 0.2s ease;
}
@media only screen and (min-width: 769px) {
  .header .nav .list .item a:hover::after {
    width: 100%;
  }
}

/* navigation */
#hamburger {
  display: none;
  width: 4vw;
  height: 3vw;
  position: absolute;
  top: 50%;
  right: 2vw;
  z-index: 10001;
  cursor: pointer;
  transition: all 0.2s ease;
  transform: translateY(-50%);
}
@media only screen and (max-width: 980px) {
  #hamburger {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  #hamburger {
    width: 8vw;
    height: 8vw;
    right: 3vw;
    top: 3vw;
    transform: translateY(0);
  }
}
#hamburger:hover {
  opacity: 0.8;
}
#hamburger span {
  display: block;
  width: 3vw;
  height: 1px;
  border-bottom: #fff 3px solid;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  #hamburger span {
    width: 8vw;
    right: 0;
  }
}
#hamburger::before, #hamburger::after {
  display: block;
  content: "";
  width: 3vw;
  height: 1px;
  border-bottom: #fff 3px solid;
  position: absolute;
  bottom: 0.25vw;
  right: 0;
  transition: all 0.5s;
}
@media only screen and (max-width: 767px) {
  #hamburger::before, #hamburger::after {
    width: 8vw;
    right: 0;
    bottom: 0.75vw;
  }
}
#hamburger::before {
  top: 0.25vw;
}
@media only screen and (max-width: 767px) {
  #hamburger::before {
    top: 0.75vw;
  }
}
@media only screen and (max-width: 767px) {
  #hamburger.is-active {
    top: 2.5vw;
  }
}
#hamburger.is-active span {
  border: none;
}
#hamburger.is-active::before, #hamburger.is-active::after {
  top: 49%;
}
#hamburger.is-active::before {
  transform: rotate(-45deg);
}
#hamburger.is-active::after {
  transform: rotate(45deg);
}

/* kv
-------------------------------- */
.headArea .kv img {
  width: 100%;
}

.concept {
  background: url("/img/dazn/lp/concept_bg.jpg") center center no-repeat;
  background-size: cover;
  padding: var(--v-space);
  text-align: center;
  font-size: clamp(10px, 2vw, 20px);
  min-height: 0;
  line-height: 2.5;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .concept {
    font-size: 1.2rem;
    line-height: 2;
    padding: 6vw;
  }
}
@media only screen and (max-width: 340px) {
  .concept {
    padding: 6vw 4vw;
  }
}

/* contents01
-------------------------------- */
.contents01, .contents02 {
  background: url("/img/dazn/lp/contents01_bg.jpg") center center no-repeat;
  background-size: cover;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
}
@media only screen and (max-width: 767px) {
  .contents01, .contents02 {
    flex-direction: column;
  }
}
.contents01 .titleArea, .contents02 .titleArea {
  background: rgba(12, 22, 28, 0.7);
  width: 50%;
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .contents01 .titleArea, .contents02 .titleArea {
    width: 100%;
  }
}
.contents01 .titleArea::before, .contents02 .titleArea::before {
  content: "";
  width: 15.8854vw;
  height: 18.4895vw;
  background: url("/img/dazn/lp/contents01_leftline.png") center center no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 5.9375vw;
}
@media only screen and (max-width: 767px) {
  .contents01 .titleArea::before, .contents02 .titleArea::before {
    width: 34.9vw;
    height: 100%;
    left: -5.1vw;
  }
}
.contents01 .titleArea .title, .contents02 .titleArea .title {
  width: 490px;
  padding: var(--v-space) var(--v-space2);
}
@media only screen and (max-width: 767px) {
  .contents01 .titleArea .title, .contents02 .titleArea .title {
    width: 100%;
    padding: 6vw 3vw;
  }
}
.contents01 .titleArea .title h2, .contents02 .titleArea .title h2 {
  color: #f7ff1a;
  font-size: clamp(25px, 5.1vw, 50px);
  min-height: 0;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  .contents01 .titleArea .title h2, .contents02 .titleArea .title h2 {
    font-size: 3rem;
    text-align: center;
    line-height: 1.16;
  }
}
@media only screen and (max-width: 340px) {
  .contents01 .titleArea .title h2, .contents02 .titleArea .title h2 {
    font-size: 2.6rem;
  }
}
.contents01 .textArea, .contents02 .textArea {
  width: 50%;
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .contents01 .textArea, .contents02 .textArea {
    width: 100%;
  }
}
.contents01 .textArea::before, .contents02 .textArea::before {
  content: "";
  width: 21.1979vw;
  height: 16.927vw;
  background: url("/img/dazn/lp/contents01_rightline.png") center center no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  right: 1.9791vw;
}
.contents01 .textArea .text, .contents02 .textArea .text {
  width: 490px;
  padding: var(--v-space) var(--v-space2);
  font-size: clamp(9px, 1.8vw, 18px);
  min-height: 0;
  line-height: 2.2;
}
@media only screen and (max-width: 767px) {
  .contents01 .textArea .text, .contents02 .textArea .text {
    width: 100%;
    font-size: 1.3rem;
    padding: 6vw;
  }
}

/* contents02
-------------------------------- */
.contents02 {
  background-image: url("/img/dazn/lp/contents02_bg.jpg");
  flex-direction: row-reverse;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .contents02 {
    flex-direction: column;
    background-image: url("/img/dazn/lp/contents02_bg_sp.jpg");
  }
}
.contents02::before {
  content: "";
  width: 100%;
  height: 56.04vw;
  background: url("/img/dazn/lp/line.png") center center no-repeat;
  background-size: contain;
  position: absolute;
  top: -11.1979vw;
  left: 0;
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .contents02::before {
    background-image: url("/img/dazn/lp/line_sp.png");
    top: 21.6vw;
    height: 148.4vw;
  }
}
.contents02 .titleArea {
  background: none;
  justify-content: flex-start;
}
.contents02 .titleArea::before {
  display: none;
}
.contents02 .titleArea .title h2 {
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .contents02 .titleArea .title h2 {
    text-align: center;
  }
}
.contents02 .textArea {
  justify-content: flex-end;
}
.contents02 .textArea::before {
  display: none;
}
.contents02 .textArea .text .img {
  margin-top: var(--v-space2);
}
@media only screen and (max-width: 767px) {
  .contents02 .textArea .text .img {
    margin-top: 3vw;
  }
}

/* fun
-------------------------------- */
.fun, .more, .tv {
  position: relative;
}
.fun::before, .more::before, .tv::before {
  content: "";
  width: 100%;
  height: 50vw;
  background: url("/img/dazn/lp/line2.png") center center no-repeat;
  background-size: contain;
  position: absolute;
  top: -14.06vw;
  left: 0;
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .fun::before, .more::before, .tv::before {
    display: none;
  }
}
.fun .bg, .more .bg, .tv .bg {
  position: relative;
}
.fun .bg::before, .more .bg::before, .tv .bg::before {
  content: "";
  width: 100%;
  height: 50vw;
  background: url("/img/dazn/lp/line2.png") center center no-repeat;
  background-size: contain;
  position: absolute;
  top: 25vw;
  left: 0;
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .fun .bg::before, .more .bg::before, .tv .bg::before {
    display: none;
  }
}
.fun .wrapper, .more .wrapper, .tv .wrapper {
  width: 90vw;
  max-width: 980px;
  margin: 0 auto;
  padding: var(--v-space2) 0;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .fun .wrapper, .more .wrapper, .tv .wrapper {
    padding: 3vw 0;
  }
}
.fun h2, .more h2, .tv h2 {
  text-align: center;
}
.fun h2 span, .more h2 span, .tv h2 span {
  display: inline-block;
  background: #f7ff1a;
  color: #000;
  font-size: clamp(20px, 4vw, 40px);
  font-weight: 900;
  min-height: 0;
  padding: 0.5em;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 767px) {
  .fun h2 span, .more h2 span, .tv h2 span {
    font-size: 2rem;
    margin-top: 2px;
    padding: 0.25em 0.5em;
  }
}
.fun .list, .more .list, .tv .list {
  padding-top: var(--v-space2);
}
@media only screen and (max-width: 767px) {
  .fun .list, .more .list, .tv .list {
    padding-top: 3vw;
  }
}
.fun .list .item, .more .list .item, .tv .list .item {
  display: grid;
  padding: var(--v-space2) 0;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .fun .list .item, .more .list .item, .tv .list .item {
    padding: 3vw 0;
  }
}
.fun .list .item h3, .more .list .item h3, .tv .list .item h3 {
  grid-column: 1/2;
  grid-row: 1/2;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .fun .list .item h3, .more .list .item h3, .tv .list .item h3 {
    grid-column: 1/3;
    grid-row: 1/2;
    padding-bottom: 1em;
  }
}
.fun .list .item h3 .num, .more .list .item h3 .num, .tv .list .item h3 .num {
  background: #e60012;
  transform: skew(-12deg, 0deg);
  display: inline-block;
  padding: 0.25em 1em;
}
@media only screen and (max-width: 767px) {
  .fun .list .item h3 .num, .more .list .item h3 .num, .tv .list .item h3 .num {
    padding: 0.25em 0.5em;
  }
}
.fun .list .item h3 .num span, .more .list .item h3 .num span, .tv .list .item h3 .num span {
  display: inline-block;
  font-size: clamp(35px, 7.1vw, 70px);
  font-weight: 900;
  min-height: 0;
  transform: skew(12deg, 0deg);
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .fun .list .item h3 .num span, .more .list .item h3 .num span, .tv .list .item h3 .num span {
    font-size: 3.5rem;
  }
}
.fun .list .item h3 .title, .more .list .item h3 .title, .tv .list .item h3 .title {
  font-size: clamp(15px, 3vw, 30px);
  font-weight: 900;
  min-height: 0;
  color: #f7ff1a;
  padding-left: 1em;
  line-height: 1.1;
}
@media only screen and (max-width: 767px) {
  .fun .list .item h3 .title, .more .list .item h3 .title, .tv .list .item h3 .title {
    font-size: 2rem;
    padding-left: 0.5em;
  }
}
.fun .list .item .text, .more .list .item .text, .tv .list .item .text {
  grid-column: 1/2;
  grid-row: 2/3;
  font-size: clamp(9px, 1.8vw, 18px);
  font-weight: 700;
  min-height: 0;
  margin-top: 1.5em;
  line-height: 2.2;
  max-width: 560px;
  width: 47vw;
}
@media only screen and (max-width: 980px) {
  .fun .list .item .text, .more .list .item .text, .tv .list .item .text {
    width: 55vw;
  }
}
@media only screen and (max-width: 767px) {
  .fun .list .item .text, .more .list .item .text, .tv .list .item .text {
    font-size: 1.3rem;
    line-height: 1.53;
    width: 47vw;
    margin-top: 0;
  }
}
.fun .list .item .img, .more .list .item .img, .tv .list .item .img {
  grid-column: 2/3;
  grid-row: 1/3;
  text-align: center;
  max-width: 420px;
  width: 43vw;
}
@media only screen and (max-width: 980px) {
  .fun .list .item .img, .more .list .item .img, .tv .list .item .img {
    width: 35vw;
    padding: 0 7.5vw;
  }
}
@media only screen and (max-width: 767px) {
  .fun .list .item .img, .more .list .item .img, .tv .list .item .img {
    grid-column: 2/3;
    grid-row: 2/3;
    width: 43vw;
    padding: 0 0 0 4.5vw;
  }
}

/* tv
-------------------------------- */
.tv {
  background: url("/img/dazn/lp/line2.png") center bottom no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 767px) {
  .tv {
    background-image: url("/img/dazn/lp/line_sp.png");
  }
}
.tv::before {
  top: 13.64vw;
}
@media only screen and (max-width: 767px) {
  .tv::before {
    display: block;
    height: 148.4vw;
    background: url("/img/dazn/lp/line_sp.png") center top no-repeat;
    background-size: contain;
  }
}
.tv .bg::before {
  top: 60.2vw;
}
@media only screen and (max-width: 767px) {
  .tv .bg::before {
    display: block;
    top: 160.2vw;
    height: 148.4vw;
    background: url("/img/dazn/lp/line_sp.png") center top no-repeat;
    background-size: contain;
  }
}
.tv .wrapper {
  padding: var(--v-space) 0;
}
@media only screen and (max-width: 767px) {
  .tv .wrapper {
    padding: 6vw 0;
  }
}
.tv h2 span {
  padding: 0.25em 0.5em;
  margin-top: 2px;
}
.tv .lead {
  text-align: center;
  font-size: clamp(10px, 2vw, 20px);
  min-height: 0;
  line-height: 2.5;
  color: #fff;
  margin-top: var(--v-space2);
}
@media only screen and (max-width: 767px) {
  .tv .lead {
    font-size: 1.3rem;
    margin-top: 3vw;
  }
}
.tv .list .item {
  display: block;
}
@media only screen and (max-width: 767px) {
  .tv .list .item h3 {
    padding-bottom: 0;
  }
}
.tv .list .item h3 .title {
  font-size: clamp(20px, 4vw, 40px);
  padding-left: 0.5em;
}
@media only screen and (max-width: 767px) {
  .tv .list .item h3 .title {
    font-size: 2rem;
  }
}
.tv .list .item h4 {
  font-size: clamp(15px, 3vw, 30px);
  min-height: 0;
  color: #f7ff1a;
  margin-top: var(--v-space2);
  line-height: 1;
  font-weight: 900;
}
@media only screen and (max-width: 767px) {
  .tv .list .item h4 {
    font-size: 1.6rem;
    margin-top: 3vw;
  }
}
.tv .list .item .text {
  max-width: none;
  width: 100%;
}
.tv .list .item .text p {
  margin-top: 2em;
}
.tv .list .item .text a {
  color: #e60012;
  display: inline-block;
  position: relative;
  text-decoration: none;
}
.tv .list .item .text a::after {
  content: "";
  width: 0%;
  height: 0;
  border-bottom: 2px solid;
  position: absolute;
  bottom: 0.25em;
  left: 0;
  transition: width 0.4s ease;
}
.tv .list .item .text a:hover::after {
  width: 100%;
}
.tv .list .item .img {
  max-width: none;
  width: 100%;
  margin: var(--v-space2) 0;
}
@media only screen and (max-width: 767px) {
  .tv .list .item .img {
    margin: 3vw 0;
    padding: 0;
  }
}
.tv .footText {
  text-align: center;
}
.tv .footText span {
  display: inline-block;
  background: #e60012;
  color: #fff;
  font-size: clamp(15px, 3vw, 30px);
  font-weight: 900;
  min-height: 0;
  padding: 0.25em 0.5em;
  line-height: 1;
  letter-spacing: 0.04em;
  margin-top: 4px;
}
@media only screen and (max-width: 767px) {
  .tv .footText span {
    font-size: 1.6rem;
  }
}

/* more
-------------------------------- */
.more {
  background: url("/img/dazn/lp/lp03_bg.jpg") center center no-repeat;
  background-size: cover;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .more {
    background-image: url("/img/dazn/lp/contents02_bg_sp.jpg");
  }
}
.more::before {
  content: "";
  width: 19.6vw;
  height: 18.2vw;
  background: url("/img/dazn/lp/more_leftline.png") center center no-repeat;
  background-size: contain;
  position: absolute;
  top: 2.81vw;
  left: 0;
  pointer-events: none;
}
.more .wrapper {
  padding: var(--v-space) 0;
}
@media only screen and (max-width: 767px) {
  .more .wrapper {
    padding: 6vw 0;
  }
}
.more h2 span {
  padding: 0.25em 0.5em;
  margin-top: 2px;
}
.more .lead {
  text-align: center;
  font-size: clamp(10px, 2vw, 20px);
  min-height: 0;
  line-height: 2.5;
  color: #fff;
  margin-top: var(--v-space2);
}
@media only screen and (max-width: 767px) {
  .more .lead {
    font-size: 1.3rem;
    margin-top: 3vw;
  }
}
.more .img {
  text-align: center;
  margin-top: var(--v-space2);
}
@media only screen and (max-width: 767px) {
  .more .img {
    margin-top: 3vw;
  }
}

/* only
-------------------------------- */
.only, .andmore, .various {
  position: relative;
}
.only::before, .andmore::before, .various::before {
  content: "";
  width: 100%;
  height: 50vw;
  background: url("/img/dazn/lp/line2.png") center center no-repeat;
  background-size: contain;
  position: absolute;
  top: -17.6vw;
  left: 0;
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .only::before, .andmore::before, .various::before {
    display: block;
    height: 148.4vw;
    background: url("/img/dazn/lp/line_sp.png") center top no-repeat;
    background-size: contain;
  }
}
.only .wrapper, .andmore .wrapper, .various .wrapper {
  width: 90vw;
  max-width: 980px;
  margin: 0 auto;
  padding: var(--v-space) 0;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .only .wrapper, .andmore .wrapper, .various .wrapper {
    padding: 6vw 0;
  }
}
.only h3, .andmore h3, .various h3 {
  font-size: clamp(20px, 4vw, 40px);
  font-weight: 900;
  min-height: 0;
  color: #f7ff1a;
  padding-left: 50px;
  position: relative;
  margin-top: var(--v-space2);
}
.only h3::before, .andmore h3::before, .various h3::before {
  content: "";
  display: block;
  background: #e60012;
  width: 30px;
  height: 80px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) skew(-12deg, 0deg);
}
@media only screen and (max-width: 767px) {
  .only h3::before, .andmore h3::before, .various h3::before {
    width: 2.5vw;
    height: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .only h3, .andmore h3, .various h3 {
    font-size: 1.6rem;
    padding: 0.25em 0 0.25em 5vw;
    margin-top: 3vw;
  }
}
.only .text, .andmore .text, .various .text {
  font-size: clamp(9px, 1.8vw, 18px);
  font-weight: 700;
  min-height: 0;
  margin-top: var(--v-space);
  line-height: 2.2;
}
@media only screen and (max-width: 767px) {
  .only .text, .andmore .text, .various .text {
    font-size: 1.3rem;
    margin-top: 6vw;
  }
}
.only .text p, .andmore .text p, .various .text p {
  margin-top: 2em;
}
.only h4, .andmore h4, .various h4 {
  font-size: clamp(15px, 3vw, 30px);
  min-height: 0;
  color: #f7ff1a;
  margin-top: var(--v-space2);
  line-height: 1;
  font-weight: 900;
}
@media only screen and (max-width: 767px) {
  .only h4, .andmore h4, .various h4 {
    font-size: 1.8rem;
    margin-top: 3vw;
  }
}
.only .emblemList, .andmore .emblemList, .various .emblemList {
  display: grid;
  justify-content: center;
  align-items: center;
  grid-template-columns: repeat(3, 136px);
  gap: 20px;
  margin-top: var(--v-space2);
}
@media only screen and (max-width: 767px) {
  .only .emblemList, .andmore .emblemList, .various .emblemList {
    grid-template-columns: repeat(3, 30%);
    gap: 2.5vw;
    align-content: center;
    margin-top: 3vw;
  }
}
.only .emblemTitle, .andmore .emblemTitle, .various .emblemTitle {
  text-align: center;
  margin-top: 1em;
  font-size: clamp(10px, 2vw, 20px);
  min-height: 0;
  color: #f7ff1a;
}
@media only screen and (max-width: 767px) {
  .only .emblemTitle, .andmore .emblemTitle, .various .emblemTitle {
    font-size: 2rem;
  }
}
.only .emblemLeague, .andmore .emblemLeague, .various .emblemLeague {
  list-style-type: disc;
  margin-top: 0.5em;
  text-align: center;
}
.only .emblemLeague li, .andmore .emblemLeague li, .various .emblemLeague li {
  display: inline-block;
  font-size: clamp(10px, 1.6vw, 16px);
  min-height: 0;
}
@media only screen and (max-width: 767px) {
  .only .emblemLeague li, .andmore .emblemLeague li, .various .emblemLeague li {
    display: block;
    font-size: 1.6rem;
  }
}
.only .emblemLeague li:not(:first-child), .andmore .emblemLeague li:not(:first-child), .various .emblemLeague li:not(:first-child) {
  padding-left: 1em;
}
@media only screen and (max-width: 767px) {
  .only .emblemLeague li:not(:first-child), .andmore .emblemLeague li:not(:first-child), .various .emblemLeague li:not(:first-child) {
    padding-left: 0;
    padding-top: 0.5em;
  }
}

/* various
-------------------------------- */
.various {
  background: #182228;
}
.various::before {
  top: -27.6vw;
}
.various .img {
  margin: var(--v-space2) 0;
}
@media only screen and (max-width: 767px) {
  .various .img {
    margin: 3vw 0;
  }
}
.various .img figcaption {
  background: #b6b6b6;
  font-size: clamp(8px, 1.1vw, 11px);
  min-height: 0;
  color: #000;
  padding: 1em;
  line-height: 1.25;
  margin-top: 1px;
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", Meiryo, "メイリオ", sans-serif;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .various .img figcaption {
    font-size: 0.8rem;
  }
}

/* and more
-------------------------------- */
.andmore h2 {
  text-align: center;
}
.andmore h2 span {
  display: inline-block;
  background: #f7ff1a;
  color: #000;
  font-size: clamp(20px, 4vw, 40px);
  font-weight: 900;
  min-height: 0;
  padding: 0.5em 0.5em;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 767px) {
  .andmore h2 span {
    font-size: 2rem;
  }
}
.andmore .photo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: var(--v-space);
}
@media only screen and (max-width: 767px) {
  .andmore .photo {
    margin-top: 6vw;
  }
}
.andmore .photo img:nth-child(2) {
  margin-left: 20px;
}
@media only screen and (max-width: 767px) {
  .andmore .photo img:nth-child(2) {
    margin-left: 0;
    margin-top: 20px;
  }
}
.andmore .photo img:nth-child(3) {
  margin-top: 20px;
}
.andmore .footText {
  text-align: center;
  margin-top: var(--v-space2);
}
@media only screen and (max-width: 767px) {
  .andmore .footText {
    margin-top: 3vw;
  }
}
.andmore .footText span {
  display: inline-block;
  background: #e60012;
  color: #fff;
  font-size: clamp(15px, 3vw, 30px);
  font-weight: 900;
  min-height: 0;
  padding: 0.25em 0.5em;
  line-height: 1;
  letter-spacing: 0.04em;
  margin-top: 4px;
}
@media only screen and (max-width: 767px) {
  .andmore .footText span {
    font-size: 1.6rem;
  }
}

/* entry
-------------------------------- */
.entry {
  background: #ced0d2;
}
.entry .wrapper {
  width: 90vw;
  max-width: 980px;
  margin: 0 auto;
  padding: var(--v-space) 0;
}
@media only screen and (max-width: 767px) {
  .entry .wrapper {
    padding: 6vw 0;
  }
}
.entry h2 {
  text-align: center;
}
.entry h2 span {
  display: inline-block;
  background: #f7ff1a;
  color: #0c161c;
  font-size: clamp(20px, 4vw, 40px);
  font-weight: 900;
  min-height: 0;
  padding: 0.25em 0.35em;
  line-height: 1;
  letter-spacing: 0.04em;
  margin-top: 2px;
}
@media only screen and (max-width: 767px) {
  .entry h2 span {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 340px) {
  .entry h2 span {
    font-size: 1.8rem;
  }
}
.entry h3 {
  text-align: center;
  color: #e60012;
  font-size: clamp(9px, 1.8vw, 18px);
  min-height: 0;
  margin-top: 2em;
}
@media only screen and (max-width: 767px) {
  .entry h3 {
    font-size: 1.3rem;
  }
}
.entry h3 span {
  position: relative;
  display: inline-block;
  padding-bottom: 0.5em;
}
@media only screen and (max-width: 767px) {
  .entry h3 span {
    padding-bottom: 0.25em;
  }
}
.entry h3 span:after {
  content: "";
  width: 100%;
  height: 0;
  border-bottom: 2px solid;
  position: absolute;
  bottom: 0;
  left: 0;
}
.entry .text {
  font-size: clamp(10px, 2vw, 20px);
  min-height: 0;
  text-align: center;
  margin-top: 2em;
  line-height: 2;
  color: #0c161c;
}
@media only screen and (max-width: 767px) {
  .entry .text {
    font-size: 1.3rem;
    line-height: 1.53;
  }
}
@media only screen and (max-width: 340px) {
  .entry .text {
    font-size: 1.2rem;
  }
}
.entry .list {
  margin-top: 2em;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media only screen and (max-width: 767px) {
  .entry .list {
    grid-template-columns: repeat(1, 1fr);
    gap: 5vw;
  }
}
@media only screen and (max-width: 340px) {
  .entry .list {
    gap: 0;
  }
}
.entry .list .item {
  background: #000;
  padding: 10px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media only screen and (max-width: 340px) {
  .entry .list .item:not(:first-child) {
    margin-top: 5vw;
  }
}
.entry .list .title {
  text-align: center;
  font-size: clamp(15px, 3vw, 30px);
  font-weight: 900;
  min-height: 0;
  line-height: 1.33;
  padding: 0.5em 0;
}
@media only screen and (max-width: 767px) {
  .entry .list .title {
    font-size: 2rem;
  }
}
.entry .list .title .note {
  font-size: 66%;
}
.entry .list .img {
  margin-top: auto;
  width: 100%;
}
.entry .list .img img {
  width: 100%;
}
.entry .footText {
  text-align: center;
  margin-top: 2em;
}
@media only screen and (max-width: 767px) {
  .entry .footText {
    margin-top: 1em;
  }
}
.entry .footText span {
  display: inline-block;
  background: #e60012;
  color: #fff;
  font-size: clamp(10px, 2vw, 20px);
  min-height: 0;
  padding: 0.5em;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .entry .footText span {
    font-size: 1.5rem;
    padding: 0.5em 0.25em;
  }
}

/* support
-------------------------------- */
.support {
  padding: var(--v-space) 0;
}
@media only screen and (max-width: 767px) {
  .support {
    padding: 6vw 0;
  }
}
.support h2 {
  font-size: clamp(15px, 3vw, 30px);
  font-weight: 900;
  min-height: 0;
  text-align: center;
  line-height: 1.33;
}
@media only screen and (max-width: 767px) {
  .support h2 {
    font-size: 2rem;
    line-height: 1.25;
  }
}
.support h2 em {
  color: #f7ff1a;
}
.support .column {
  max-width: 980px;
  width: 90vw;
  margin: var(--v-space2) auto;
}
@media only screen and (max-width: 767px) {
  .support .column {
    margin: 3vw auto;
  }
}
.support .column .lead {
  background: #f7ff1a;
  color: #000;
  font-size: clamp(10px, 2vw, 20px);
  min-height: 0;
  text-align: center;
  line-height: 1.5;
  border-radius: 10px 10px 0 0;
  padding: 1em 0;
  margin-bottom: 1px;
}
@media only screen and (max-width: 767px) {
  .support .column .lead {
    font-size: 1.5rem;
    line-height: 1.33;
  }
}
.support .club {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
}
.support .club dt {
  width: 15%;
  background: #4c4c4c;
  padding: 20px 40px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 1200px) {
  .support .club dt {
    padding: 1.5vw 3vw;
  }
}
@media only screen and (max-width: 767px) {
  .support .club dt {
    width: 100%;
    padding: 2.5vw;
  }
}
.support .club dt:nth-of-type(even) {
  background: #464646;
}
.support .club dt img {
  width: 70px;
}
@media only screen and (max-width: 1200px) {
  .support .club dt img {
    width: 5vw;
  }
}
@media only screen and (max-width: 767px) {
  .support .club dt img {
    width: 10vw;
  }
}
.support .club dd {
  width: 85%;
  background: #fff;
  padding: 20px 20px 30px;
}
@media only screen and (max-width: 1200px) {
  .support .club dd {
    padding: 1.5vw 1.5vw 2.5vw;
  }
}
@media only screen and (max-width: 767px) {
  .support .club dd {
    width: 100%;
    padding: 5vw;
  }
}
.support .club dd:nth-of-type(even) {
  background: #ebebeb;
}
@media only screen and (max-width: 767px) {
  .support .club dd:nth-of-type(even) {
    background: #fff;
  }
}
.support .foot {
  background: #ebebeb;
  color: #000;
  font-size: clamp(10px, 2vw, 20px);
  min-height: 0;
  text-align: center;
  line-height: 1.5;
  border-radius: 0 0 10px 10px;
  padding: 1em 0;
}
@media only screen and (max-width: 767px) {
  .support .foot {
    font-size: 1.5rem;
    line-height: 1.33;
  }
}
.support .foot em {
  font-size: 120%;
  color: #e60012;
}
.support .j-link {
  text-align: center;
  margin-top: 4em;
}
@media only screen and (max-width: 767px) {
  .support .j-link {
    margin-top: 0;
  }
}
.support .j-link a {
  font-size: clamp(10px, 2vw, 20px);
  min-height: 0;
  text-decoration: none;
  color: #fff;
  letter-spacing: 0.04em;
  padding: 0.25em 0 0.25em 50px;
  background: url("/img/dazn/lp/j-logo.png") left center no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 767px) {
  .support .j-link a {
    font-size: 1.5rem;
    padding: 0.5em 0 0.5em 3em;
  }
}
@media only screen and (max-width: 340px) {
  .support .j-link a {
    font-size: 1.3rem;
    padding: 0.35em 0 0.35em 3em;
  }
}
.support .j-link a span {
  padding: 0.1em 0;
  position: relative;
}
.support .j-link a span::after {
  content: "";
  width: 0%;
  height: 0;
  border-bottom: 2px solid;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: width 0.4s ease;
}
.support .j-link a span:hover::after {
  width: 100%;
}

.club__list {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 10px;
}
@media only screen and (max-width: 1200px) {
  .club__list {
    gap: 0.75vw;
  }
}
@media only screen and (max-width: 767px) {
  .club__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5vw;
  }
}
.club__listItem {
  padding: 5px 0;
}
.club__listItem a {
  color: #000;
  transition: opacity 0.2s ease;
  display: block;
}
@media only screen and (max-width: 767px) {
  .club__listItem a {
    border: #ccc 2px solid;
    border-radius: 5px;
    padding: 0.25em 0.25em 0.5em;
  }
}
@media only screen and (min-width: 769px) {
  .club__listItem a:hover {
    opacity: 0.7;
  }
}

.embM2 {
  overflow: visible;
  line-height: 1.2;
  text-align: center;
  text-indent: 0;
  height: 0;
  color: #000;
  padding-top: 60px;
  font-size: 1.3rem;
  font-weight: 700;
  transform: scale(0.9);
  width: auto;
}
@media only screen and (max-width: 980px) {
  .embM2 {
    padding-top: 32px;
    font-size: 1.1rem;
    display: block;
    width: 32px;
    height: 32px;
    margin: 0 auto 10px;
    white-space: nowrap;
    background: url("/img/sp/common/sp_team_emb_m.png") no-repeat;
    background-position: -9999px -9999px;
    background-size: 256px;
    transform: scale(1);
  }
}

.embM2.embAnt,
.embM2.embKashima {
  background-position: -356px 0px;
}

.embM2.embFro,
.embM2.embKawasakif {
  background-position: -58px -120px;
}

.embM2.embYfc,
.embM2.embYokohamafc {
  background-position: -176px -120px;
}

.embM2.embGra,
.embM2.embNagoya {
  background-position: 3px -240px;
}

.embM2.embGam,
.embM2.embGosaka {
  background-position: -178px -240px;
}

.embM2.embVis,
.embM2.embKobe {
  background-position: -296px -240px;
}

.embM2.embTri,
.embM2.embOita {
  background-position: -58px -360px;
}

.embM2.embMon,
.embM2.embYamagata {
  background-position: -238px 0px;
}

.embM2.embJef,
.embM2.embChiba {
  background-position: -238px -60px;
}

.embM2.embZwk,
.embM2.embKanazawa {
  background-position: -238px -180px;
}

.embM2.embJub,
.embM2.embIwata {
  background-position: -358px -180px;
}

.embM2.embGkk,
.embM2.embKitakyushu {
  background-position: -298px -300px;
}

.embM2.embHac,
.embM2.embHachinohe {
  background-position: -296px -540px;
}

.embM2.embGrm,
.embM2.embMorioka {
  background-position: -116px 0px;
}

.embM2.embFku,
.embM2.embFukushima {
  background-position: -298px 0px;
}

.embM2.embNgp,
.embM2.embNagano {
  background-position: 3px -180px;
}

.embM2.embFmy,
.embM2.embFujieda {
  background-position: -418px -180px;
}

.embM2.embFcg,
.embM2.embGifu {
  background-position: -56px -240px;
}

.embM2.embGat,
.embM2.embTottori {
  background-position: -357px -240px;
}

.embM2.embKam,
.embM2.embSanuki {
  background-position: -58px -300px;
}

.embM2.embMiyazaki {
  background-position: -418px -540px;
}

@media screen and (max-width: 980px) {
  .embM2.embCon,
.embM2.embSapporo {
    background-position: 0px 0px;
  }
  .embM2.embBla,
.embM2.embAkita {
    background-position: -32px 0px;
  }
  .embM2.embGrm,
.embM2.embMorioka {
    background-position: -64px 0px;
  }
  .embM2.embHac,
.embM2.embHachinohe {
    background-position: -128px -288px;
  }
  .embM2.embVeg,
.embM2.embSendai {
    background-position: -96px 0px;
  }
  .embM2.embMon,
.embM2.embYamagata {
    background-position: -128px 0px;
  }
  .embM2.embFku,
.embM2.embFukushima {
    background-position: -160px 0px;
  }
  .embM2.embAnt,
.embM2.embKashima {
    background-position: -192px 0px;
  }
  .embM2.embHol,
.embM2.embMito {
    background-position: -224px 0px;
  }
  .embM2.embToc,
.embM2.embTochigi {
    background-position: 0px -32px;
  }
  .embM2.embThe,
.embM2.embKusatsu {
    background-position: -32px -32px;
  }
  .embM2.embRed,
.embM2.embUrawa {
    background-position: -64px -32px;
  }
  .embM2.embArd,
.embM2.embOmiya {
    background-position: -96px -32px;
  }
  .embM2.embJef,
.embM2.embChiba {
    background-position: -128px -32px;
  }
  .embM2.embRey,
.embM2.embKashiwa {
    background-position: -160px -32px;
  }
  .embM2.embFct,
.embM2.embFctokyo,
.embM2.embFtokyo {
    text-indent: -0.5em;
    background-position: -192px -32px;
  }
  .embM2.embVer,
.embM2.embTokyov {
    background-position: -224px -32px;
  }
  .embM2.embFcm,
.embM2.embMachida {
    background-position: 0px -64px;
  }
  .embM2.embFro,
.embM2.embKawasakif {
    background-position: -32px -64px;
  }
  .embM2.embMar,
.embM2.embYokohamafm {
    text-indent: -0.5em;
    background-position: -64px -64px;
  }
  .embM2.embYfc,
.embM2.embYokohamafc {
    text-indent: -0.4em;
    background-position: -96px -64px;
  }
  .embM2.embYsc,
.embM2.embYsyokohama,
.embM2.embYsccyokohama {
    text-indent: -0.4em;
    background-position: -128px -64px;
  }
  .embM2.embSgm,
.embM2.embSagamihara {
    background-position: -160px -64px;
  }
  .embM2.embBel,
.embM2.embShonan {
    background-position: -192px -64px;
  }
  .embM2.embVen,
.embM2.embKofu {
    background-position: -224px -64px;
  }
  .embM2.embNgp,
.embM2.embNagano {
    background-position: 0px -96px;
  }
  .embM2.embMfc,
.embM2.embMatsumoto {
    background-position: -32px -96px;
  }
  .embM2.embAlb,
.embM2.embNiigata {
    background-position: -64px -96px;
  }
  .embM2.embKat,
.embM2.embToyama {
    background-position: -96px -96px;
  }
  .embM2.embZwk,
.embM2.embKanazawa {
    background-position: -128px -96px;
  }
  .embM2.embSpu,
.embM2.embShimizu {
    background-position: -160px -96px;
  }
  .embM2.embJub,
.embM2.embIwata {
    background-position: -192px -96px;
  }
  .embM2.embFmy,
.embM2.embFujieda {
    background-position: -224px -96px;
  }
  .embM2.embGra,
.embM2.embNagoya {
    background-position: 0px -128px;
  }
  .embM2.embFcg,
.embM2.embGifu {
    background-position: -32px -128px;
  }
  .embM2.embPur,
.embM2.embKyoto {
    background-position: -64px -128px;
  }
  .embM2.embGam,
.embM2.embGosaka {
    text-indent: -0.5em;
    background-position: -96px -128px;
  }
  .embM2.embCer,
.embM2.embCosaka {
    background-position: -128px -128px;
  }
  .embM2.embVis,
.embM2.embKobe {
    background-position: -160px -128px;
  }
  .embM2.embGat,
.embM2.embTottori {
    background-position: -192px -128px;
  }
  .embM2.embFag,
.embM2.embOkayama {
    background-position: -224px -128px;
  }
  .embM2.embSan,
.embM2.embHiroshima {
    background-position: 0px -160px;
  }
  .embM2.embKam,
.embM2.embSanuki {
    background-position: -32px -160px;
  }
  .embM2.embIma,
.embM2.embImabari {
    text-indent: -0.5em;
    background-position: -160px -288px;
  }
  .embM2.embVor,
.embM2.embTokushima {
    background-position: -64px -160px;
  }
  .embM2.embEfc,
.embM2.embEhime {
    background-position: -96px -160px;
  }
  .embM2.embAvi,
.embM2.embFukuoka {
    background-position: -128px -160px;
  }
  .embM2.embGkk,
.embM2.embKitakyushu {
    background-position: -160px -160px;
  }
  .embM2.embSag,
.embM2.embTosu {
    background-position: -192px -160px;
  }
  .embM2.embVvn,
.embM2.embNagasaki {
    background-position: -224px -160px;
  }
  .embM2.embRoa,
.embM2.embKumamoto {
    background-position: 0px -192px;
  }
  .embM2.embTri,
.embM2.embOita {
    background-position: -32px -192px;
  }
  .embM2.embFcr,
.embM2.embRyukyu {
    background-position: -64px -192px;
  }
  .embM2.embU22,
.embM2.embＪ22 {
    background-position: -96px -192px;
  }
  .embM2.embRya,
.embM2.embYam,
.embM2.embYamaguchi {
    background-position: -128px -192px;
  }
  .embM2.embJEONBUKHYUNDAIMOTORS,
.embM2.embJEO {
    background-position: -160px -192px;
  }
  .embM2.embSHANDONGLUNENGFC,
.embM2.embSHD {
    background-position: -192px -192px;
  }
  .embM2.embBINHDUONG,
.embM2.embBIN {
    background-position: -224px -192px;
  }
  .embM2.embSEONGNAMFC,
.embM2.embSEG {
    background-position: 0px -224px;
  }
  .embM2.embBURIRAMUNITED,
.embM2.embBUR {
    background-position: -32px -224px;
  }
  .embM2.embGUANGZHOURF,
.embM2.embGRF {
    background-position: -64px -224px;
  }
  .embM2.embBEIJINGGUOAN,
.embM2.embBEI {
    background-position: -96px -224px;
  }
  .embM2.embSUWONSAMSUNGFC,
.embM2.embSUW {
    background-position: -128px -224px;
  }
  .embM2.embBRISBANEROAR,
.embM2.embBRI {
    background-position: -160px -224px;
  }
  .embM2.embGUANGZHOUEVERGRANDE,
.embM2.embGUA {
    background-position: -192px -224px;
  }
  .embM2.embFCSEOUL,
.embM2.embSEO {
    background-position: -224px -224px;
  }
  .embM2.embWESTERNSYDNEYWANDERERS,
.embM2.embWSW {
    background-position: 0px -256px;
  }
  .embM2.embAl-Ahli,
.embM2.embALA {
    background-position: -32px -256px;
  }
  .embM2.embAUCKLANDCITY {
    background-position: -64px -256px;
  }
  .embM2.embCLUBAMERICA {
    background-position: -96px -256px;
  }
  .embM2.embBARCELONA {
    background-position: -128px -256px;
  }
  .embM2.embRIVERPLATE {
    background-position: -160px -256px;
  }
  .embM2.embTPMAZEMBE {
    background-position: -192px -256px;
  }
  .embM2.embKAGOSHIMA,
.embM2.embKagoshima {
    background-position: -224px -256px;
  }
  .embM2.embGosaka23,
.embM2.embGamba_u23 {
    background-position: 0px -288px;
  }
  .embM2.embFctokyo23,
.embM2.embFtokyo_u23 {
    text-indent: -0.5em;
    background-position: -32px -288px;
  }
  .embM2.embCosaka23,
.embM2.embCosaka_u23 {
    background-position: -64px -288px;
  }
  .embM2.embAzu,
.embM2.embNumazu {
    background-position: -96px -288px;
  }
  .embM2.embMiyazaki {
    background-position: -192px -288px;
  }
  .embM2.embIwaki {
    background-position: -224px -288px;
  }
  .embM2.embFCosaka {
    background-position: 0px -320px;
  }
  .embM2.embNaraCLUB {
    background-position: -32px -320px;
  }
}
/* Inquiry
----------------------------------- */
.inquiry {
  background: #252e33;
  padding: var(--v-space2) 0;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .inquiry {
    padding: 3vw 0;
  }
}
.inquiry h3 span {
  display: inline-block;
  background: #f7ff1a;
  color: #0c161c;
  font-size: clamp(15px, 3vw, 30px);
  font-weight: 900;
  min-height: 0;
  padding: 0.25em 0.5em;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 767px) {
  .inquiry h3 span {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 340px) {
  .inquiry h3 span {
    font-size: 1.6rem;
  }
}
.inquiry a {
  color: #fff;
  font-size: clamp(10px, 2vw, 20px);
  min-height: 0;
  text-decoration: none;
  margin-top: 1em;
  display: inline-block;
  padding: 0.5em 0;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .inquiry a {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 340px) {
  .inquiry a {
    margin-top: 0;
  }
}
.inquiry a::after {
  content: "";
  width: 0%;
  height: 0;
  border-bottom: 2px solid;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: width 0.4s ease;
}
.inquiry a:hover::after {
  width: 100%;
}

/* Footer
----------------------------------- */
@media screen and (min-width: 768px) and (max-width: 997px) {
  footer #partnersArea #titlepartnersList,
footer #partnersArea #broadingpartnersList,
footer #clubArea {
    width: 94vw;
    max-width: 980px;
  }
  footer #clubArea .j1List dt,
footer #clubArea .j2List dt,
footer #clubArea .j3List dt {
    margin: 4px 0.5vw 0 0;
  }
  footer #clubArea dd {
    margin-right: 0.5vw;
  }
  footer #footerNav #listArea {
    width: 88vw;
    max-width: 980px;
  }
  footer #footerNav #listArea div dt a {
    font-size: 14px;
  }
  footer #bottomArea {
    width: 94vw;
    max-width: 980px;
    margin: 0 auto;
  }
  footer #bottomArea li {
    padding: 0 6px 0 0;
    display: inline-block;
    line-height: 0;
  }
}
@media only screen and (max-width: 767px) {
  .switchArea ul li:last-child {
    display: none;
  }
}
/*# sourceMappingURL=dazn-lp.css.map */