@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Oswald:wght@200..700&display=swap");
html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

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

header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 20;
  height: 100px;
}
@media screen and (max-width: 1199px) {
  header {
    height: 80px;
  }
}
header p {
  font-size: 14px;
  color: #000;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  header p {
    display: none;
  }
}

@media screen and (min-width: 1200px) {
  .menu {
    display: flex;
    justify-content: center;
  }
  .menu li {
    display: block;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    line-height: 1;
  }
  .menu li:hover {
    color: #26d473;
    transition: 0.3s;
  }
  .menu .title {
    font-family: "Oswald", sans-serif;
    font-size: 32px;
    padding: 31px 116.51px 0 0;
  }
  .menu .text {
    padding: 45px 24px 0 0;
  }
  .menu .cta {
    color: #fff;
    background-color: #26d473;
    border-radius: 10px;
    padding: 1.25em;
    margin: 15px 41px 0 0;
  }
  .menu a span {
    display: block;
    font-size: 10px;
    color: #fff;
    padding-bottom: 4px;
    text-align: center;
  }
  .menu .cta:hover {
    color: #fff;
    background-color: #55f59d;
    transition: 0.3s;
  }
  .menu .cta:active {
    background-color: #a9f5ca;
    position: relative;
    top: 4px;
  }
  .menu .sign {
    font-family: "Oswald", sans-serif;
    font-size: 20px;
    padding: 40px 92px 0 0;
  }
}
@media screen and (max-width: 1199px) {
  .menu {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    padding-top: 136px;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    transition: 0.3s;
  }
}

@media screen and (max-width: 1199px) {
  .menu-list {
    color: #333;
    font-size: 16px;
    font-weight: 700;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
  }
}

@media screen and (max-width: 1199px) {
  .title {
    font-family: "Oswald", sans-serif;
    font-size: 48px;
    color: #000;
    line-height: 1;
  }
}

@media screen and (max-width: 1199px) {
  .text {
    line-height: 1;
    margin-top: 48px;
  }
}

@media screen and (max-width: 1199px) {
  .cta {
    font-size: 20px;
    color: #fff;
    background-color: #26d473;
    font-weight: bold;
    line-height: 1;
    max-width: 320px;
    max-height: 70px;
    border-radius: 10px;
    padding: 16px 50px;
    margin: 64px auto 32px auto;
  }
}

@media screen and (max-width: 1199px) {
  a span {
    display: block;
    font-size: 12px;
    color: #fff;
    font-weight: 500;
    line-height: 1;
    padding-bottom: 6px;
    text-align: center;
  }
}

@media screen and (max-width: 1199px) {
  .cta:hover {
    background-color: #55f59d;
    transition: 0.3s;
  }
}

@media screen and (max-width: 1199px) {
  .sign {
    font-family: "Oswald", sans-serif;
    font-size: 28px;
    color: #333;
    font-weight: bold;
    line-height: 1;
    max-width: 320px;
    max-height: 70px;
    border: 1px solid #000;
    border-radius: 10px;
    padding: 21px 120px;
    margin: 0 auto 13px auto;
  }
}

@media screen and (max-width: 1199px) {
  .menu.fade {
    visibility: visible;
    opacity: 1;
  }
}

@media screen and (min-width: 1200px) {
  .sp-menu {
    display: none;
  }
}

.btn {
  position: fixed;
  top: 28px;
  right: 23px;
  width: 40px;
  height: 33px;
  z-index: 10;
}

.btn-line {
  display: block;
  position: relative;
  width: 100%;
  height: 3px;
  background-color: #333;
  transition: 0.2s;
}

.btn-line::before,
.btn-line::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #333;
  transition: 0.3s;
}

.btn-line::before {
  transform: translateY(-14.5px);
}

.btn-line::after {
  transform: translateY(14.5px);
}

.btn-line.open {
  background-color: transparent;
}

.btn-line.open::before,
.btn-line.open::after {
  content: "";
}

.btn-line.open::before {
  transform: rotate(45deg);
}

.btn-line.open::after {
  transform: rotate(-45deg);
}

.noscroll {
  overflow: hidden;
}

h1 {
  font-size: 120px;
  font-weight: 700;
  color: #000;
  line-height: 1;
  font-family: "Oswald", sans-serif;
}
@media screen and (max-width: 599px) {
  h1 {
    font-size: 72px;
  }
}

h2 {
  font-size: 72px;
  font-weight: 700;
  color: #000;
  line-height: 1;
  font-family: "Oswald", sans-serif;
  margin-bottom: 80px;
}
@media screen and (max-width: 599px) {
  h2 {
    font-size: 56px;
  }
}

h3 {
  font-size: 36px;
  font-weight: 700;
  color: #000;
  line-height: 1.5;
}
@media screen and (max-width: 599px) {
  h3 {
    font-size: 24px;
  }
}

h4 {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  line-height: 1.5;
}
@media screen and (max-width: 599px) {
  h4 {
    font-size: 20px;
    letter-spacing: -0.05em;
  }
}

h5 {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  line-height: 1.5;
}
@media screen and (max-width: 599px) {
  h5 {
    font-size: 16px;
  }
}

p {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  line-height: 1.7;
}

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

.cta-btn {
  width: 100%;
  max-width: 368px;
  height: 72px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  color: #333;
  padding: 17px 39px 18px 40px;
  border: 1px solid #000;
  box-shadow: 2px 2px 2px 2px rgba(51, 51, 51, 0.15);
}
@media screen and (max-width: 599px) {
  .cta-btn {
    max-width: 345px;
    height: 60px;
    font-size: 20px;
    padding: 16px 53px 13px 51px;
    margin-left: -1px;
  }
}

.cta-btn:hover {
  color: #fff;
  background-color: #000;
  transition: 0.3s;
}

.cta-btn:active {
  color: #000;
  background-color: #fff;
  box-shadow: none;
  position: relative;
  top: 4px;
}

.cta-p {
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  color: #333;
  margin-left: 39px;
  margin-bottom: 32px;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 599px) {
  .cta-p {
    font-size: 16px;
    margin-left: 55px;
    margin-bottom: 29.5px;
  }
}

.fv {
  padding: 280px 0 175px;
  background-image: url(../images/fv/pc-bg.jpg);
  background-position: center 100px;
  background-size: 1168px 777px;
  height: 1012px;
  background-repeat: no-repeat;
  padding-left: 56.38%;
}
@media screen and (max-width: 975px) {
  .fv {
    background-image: url(../images/fv/sp-bg.jpg);
    background-position: center 50px;
    background-size: 373px 492.86px;
    height: 692px;
    padding: 160px 4% 0px 3.8%;
  }
}
.fv h1 {
  margin: 64px 0 80px;
}
@media screen and (max-width: 975px) {
  .fv h1 {
    margin-top: 41px;
    margin-bottom: 79px;
    letter-spacing: 0.1px;
  }
}
.fv .sub-title {
  font-size: 36px;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 975px) {
  .fv .sub-title {
    padding-left: -1px;
  }
}
@media screen and (max-width: 599px) {
  .fv .sub-title {
    font-size: 24px;
  }
}

.what {
  padding: 100px 0 41px;
  background-image: url(../images/what/rectangle.png);
  background-position: right 30px;
  background-size: 55.5vw 750px;
  background-repeat: no-repeat;
}
@media screen and (max-width: 975px) {
  .what {
    padding-top: 0;
    padding-left: 4%;
    padding-right: 4%;
    background-image: none;
  }
}
.what .container {
  display: flex;
  max-width: 1040px;
  margin: 0 auto;
}
@media screen and (max-width: 975px) {
  .what .container {
    max-width: 351px;
    flex-direction: column-reverse;
  }
}
.what .imgs {
  width: 50%;
  height: 50%;
}
@media screen and (max-width: 975px) {
  .what .imgs {
    width: 100%;
    height: 100%;
  }
}
.what .text {
  max-width: 434px;
  margin-left: 8.26%;
}
@media screen and (max-width: 975px) {
  .what .text {
    margin-left: 0;
  }
}
.what .text h2 {
  margin-left: 2.5px;
  margin-bottom: 80px;
}
@media screen and (max-width: 975px) {
  .what .text h2 {
    padding-top: 100px;
    margin-left: -0.01px;
    margin-bottom: 64.5px;
    letter-spacing: 0.1px;
  }
}
@media screen and (max-width: 599px) {
  .what .text h2 {
    padding-top: 0;
  }
}
.what .text h4 {
  margin-bottom: 40px;
}
@media screen and (max-width: 975px) {
  .what .text h4 {
    margin-bottom: 39px;
  }
}
.what .text p {
  white-space: pre-line;
  margin-bottom: 40px;
}
@media screen and (max-width: 975px) {
  .what .text p {
    line-height: 1.69;
    margin-left: 1px;
    margin-bottom: 18px;
  }
}

.slick-dots li button:before {
  font-size: 14px;
}

.slick-dots li {
  width: 15px;
}

.slick-dots {
  bottom: -48px;
}
@media screen and (max-width: 599px) {
  .slick-dots {
    bottom: -33.5px;
  }
}

.feature {
  padding: 61px 0 0px;
  text-align: center;
}
@media screen and (max-width: 975px) {
  .feature {
    padding-left: 4%;
    padding-right: 4%;
    padding-top: 98px;
  }
}
.feature .container {
  display: flex;
  justify-content: center;
  margin-left: -7px;
}
@media screen and (max-width: 975px) {
  .feature .container {
    flex-direction: column;
    align-items: center;
    margin-left: 0px;
  }
}
.feature img {
  max-width: 280px;
}
@media screen and (max-width: 975px) {
  .feature img {
    max-width: 345px;
  }
}
.feature .center-img {
  margin: 0 24px;
}
@media screen and (max-width: 975px) {
  .feature .center-img {
    margin: 64px 0;
  }
}
.feature h2 {
  background-image: url(../images/feature/bg.svg);
  background-position: bottom;
  background-size: 200px;
  padding-top: 128px;
  background-repeat: no-repeat;
}
@media screen and (max-width: 975px) {
  .feature h2 {
    background-size: 160px;
    padding-top: 104px;
  }
}
.feature h3 {
  margin-bottom: 79px;
}
.feature h5 {
  margin-top: 16px;
}
.feature p {
  font-size: 10px;
  font-weight: 700;
  line-height: 1.5;
  color: #717171;
  margin-top: 4px;
}
@media screen and (max-width: 975px) {
  .feature p {
    margin-top: 9px;
  }
}

.schedule {
  padding: 101.5px 0 135px;
  text-align: center;
}
@media screen and (max-width: 975px) {
  .schedule {
    padding-top: 140px;
    padding-bottom: 79px;
  }
}
.schedule .container {
  display: grid;
  display: -ms-grid;
  grid-template-columns: repeat(3, minmax(276px, 1fr));
  grid-template-rows: repeat(2, minmax(375px, 1fr));
  grid-column-gap: 40px;
  grid-row-gap: 96px;
  max-width: 908px;
  margin: 0 auto;
}
@media screen and (max-width: 975px) {
  .schedule .container {
    padding-left: 3.7%;
    grid-template-columns: repeat(6, minmax(276px, 1fr));
    grid-template-rows: repeat(1, minmax(375px, 1fr));
    overflow-x: scroll;
  }
}
.schedule .wrapper {
  position: relative;
  z-index: 3;
}
.schedule .wrapper img {
  max-width: 276px;
  max-height: 375px;
}
.schedule .date {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  color: #fff;
  width: 188px;
  background-color: #5e5959;
  padding: 15px 48px 14px 48px;
  position: absolute;
  z-index: 6;
  top: 300px;
  left: 44px;
}
.schedule .date span {
  display: block;
  font-size: 16px;
  padding-top: 6px;
  padding-left: 9px;
}
.schedule .name {
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  color: #fff;
  width: 188px;
  background-color: #313131;
  padding: 16px 51px;
  margin-left: 44px;
}
.schedule h2 {
  background-image: url(../images/schedule/bg.svg);
  background-position: bottom;
  background-size: 200px;
  padding-top: 128px;
  background-repeat: no-repeat;
}
@media screen and (max-width: 975px) {
  .schedule h2 {
    background-size: 160px;
    padding-top: 103px;
    margin-left: -2px;
  }
}
.schedule .wrapper h5 {
  color: #000;
  margin-top: 22px;
  text-align: left;
}
.schedule .ranking {
  display: flex;
  max-width: 908px;
  margin: 120px auto 0 auto;
  position: relative;
}
@media screen and (max-width: 975px) {
  .schedule .ranking {
    max-width: 345px;
    margin: 80px auto 80px auto;
    flex-direction: column;
  }
}
.schedule .text {
  width: 438px;
  margin-right: 20px;
}
@media screen and (max-width: 1199px) {
  .schedule .text {
    margin-top: 0;
  }
}
@media screen and (max-width: 975px) {
  .schedule .text {
    width: 345px;
    margin-top: 48px;
    margin-right: 0;
    margin-bottom: 64px;
  }
}
.schedule .text h3 {
  color: #333;
  line-height: 1.2;
  text-align: left;
  margin: 34px auto 49px 6px;
}
@media screen and (max-width: 975px) {
  .schedule .text h3 {
    font-size: 24px;
    margin: 0 auto 49px 6px;
  }
}
.schedule .text h5 {
  line-height: 1.9;
  text-align: left;
  margin-top: 32.5px;
  padding-bottom: 3px;
  border-bottom: 1px solid #E3E3E3;
}
@media screen and (max-width: 975px) {
  .schedule .text h5 {
    font-size: 16px;
    margin-top: 36.5px;
  }
}
.schedule .text span {
  display: inline-block;
  font-family: "Oswald", sans-serif;
  font-size: 16px;
  font-weight: bold;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #fff;
  text-align: center;
}
.schedule .text .ranking1 {
  background-color: #000;
}
.schedule .text .ranking2 {
  background-color: #333;
}
.schedule .text .ranking3 {
  background-color: #666;
}
.schedule .text .ranking4 {
  background-color: #999;
}
.schedule .text .ranking5 {
  background-color: #ccc;
}
.schedule .text a {
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  color: #666;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.11rem;
  position: absolute;
  top: 467px;
  left: 290px;
}
@media screen and (max-width: 975px) {
  .schedule .text a {
    top: 920.5px;
    left: 105px;
  }
}
@media screen and (max-width: 599px) {
  .schedule .text a {
    left: 98px;
  }
}
.schedule .imgs {
  max-width: 450px;
  max-height: 450px;
}
@media screen and (max-width: 975px) {
  .schedule .imgs {
    max-width: 345px;
    max-height: 345px;
  }
}
.schedule .slick-dots li {
  width: 14px;
}
.schedule .slick-dots {
  bottom: -32.5px;
}
@media screen and (max-width: 975px) {
  .schedule .slick-dots {
    bottom: -33.5px;
  }
}
@media screen and (max-width: 975px) {
  .schedule .ellipsis {
    width: 330px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

.cta1, .cta2 {
  padding: 56.5px 0 79.3px;
  background: linear-gradient(to bottom, #7d7d7d, #383838);
  text-align: center;
}
@media screen and (max-width: 599px) {
  .cta1, .cta2 {
    padding-top: 56px;
    padding-bottom: 74px;
    padding-left: 4%;
    padding-right: 4%;
  }
}
.cta1 h3, .cta2 h3 {
  color: #fff;
  margin-bottom: 56px;
}
@media screen and (max-width: 599px) {
  .cta1 h3, .cta2 h3 {
    margin-left: -3px;
  }
}
.cta1 .cta-btn, .cta2 .cta-btn {
  max-width: 368px;
  font-weight: 700;
  color: #fff;
  background-color: #26d473;
  color: white;
  padding: 17px 39px 18px 38.5px;
  border: 1px solid #26d473;
  box-shadow: none;
}
.cta1 .cta-btn.shiny, .cta2 .cta-btn.shiny {
  background: #26d473;
  background: linear-gradient(-45deg, #26d473 50%, #79e7aa 60%, #26d473 70%);
  background-size: 600% 100%;
  animation: shine 20s infinite;
  animation-delay: 0s;
  animation-timing-function: linear;
}
@media screen and (max-width: 599px) {
  .cta1 .cta-btn, .cta2 .cta-btn {
    max-width: 345px;
    height: 60px;
    font-size: 20px;
    padding: 16.5px 52.6px 13px 52px;
  }
}
@keyframes shine {
  0% {
    background-position-x: 400%;
  }
  50% {
    background-position-x: 0%;
  }
  100% {
    background-position-x: -400%;
  }
}
.cta1 .cta-p, .cta2 .cta-p {
  color: #fff;
  margin-left: 0.01px;
  margin-bottom: 30.5px;
}
@media screen and (max-width: 599px) {
  .cta1 .cta-p, .cta2 .cta-p {
    font-size: 16px;
    margin-left: 20px;
    margin-bottom: 30px;
  }
}

.how {
  padding: 100px 0 0px;
}
@media screen and (max-width: 599px) {
  .how {
    padding-top: 140px;
    padding-bottom: 0;
  }
}
.how .container {
  padding-left: 18.47%;
  padding-right: 13.88%;
}
@media screen and (max-width: 1199px) {
  .how .container {
    padding-left: 9.23%;
    padding-right: 6.94%;
  }
}
@media screen and (max-width: 975px) {
  .how .container {
    padding-left: 0;
    padding-right: 0;
  }
}
.how h2 {
  max-width: 974px;
  background-image: url(../images/how/bg.svg);
  background-position: left;
  background-size: 200px;
  padding-top: 129px;
  background-repeat: no-repeat;
}
@media screen and (max-width: 599px) {
  .how h2 {
    text-align: center;
    background-position: bottom;
    background-size: 160px;
    padding-top: 103px;
  }
}
.how .card {
  display: flex;
  max-width: 974px;
}
@media screen and (max-width: 599px) {
  .how .card {
    max-width: 100vw;
    min-height: 240px;
  }
}
.how .card .number {
  font-family: "Oswald", sans-serif;
  font-size: 72px;
  font-weight: bold;
  line-height: 1;
  padding: 40px 0 0 5.74%;
}
@media screen and (max-width: 599px) {
  .how .card .number {
    font-size: 48px;
    line-height: 1;
    padding: 33px 0 0 3.85%;
  }
}
.how .card .number::before {
  content: "STEP";
  display: block;
  font-size: 24px;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 8px;
}
@media screen and (max-width: 599px) {
  .how .card .number::before {
    font-size: 18px;
    text-align: left;
    padding-left: 8px;
    margin-bottom: 0;
  }
}
.how .bg-black {
  background-color: #333;
}
@media screen and (max-width: 599px) {
  .how .bg-black {
    max-height: 240px;
  }
}
.how .bg-black h2, .how .bg-black h4, .how .bg-black p {
  color: #fff;
}
.how .bg-white {
  min-height: 212px;
}
@media screen and (max-width: 599px) {
  .how .bg-white {
    min-height: 240px;
  }
}
.how .bg-white h2, .how .bg-white h4, .how .bg-white p {
  color: #333;
}
.how .text {
  margin: 40px 0;
}
@media screen and (max-width: 599px) {
  .how .text {
    margin-top: 33px;
  }
}
@media screen and (max-width: 599px) {
  .how .text h4 {
    letter-spacing: -0.03em;
  }
}
.how .text p {
  font-size: 14px;
  line-height: 1.5;
  margin-top: 8px;
}
@media screen and (max-width: 599px) {
  .how .text p {
    margin-top: 16px;
    max-width: 267px;
  }
}
.how .step01 {
  max-width: 440px;
  margin-left: 5.74%;
}
@media screen and (max-width: 599px) {
  .how .step01 {
    margin-left: 4.4%;
  }
}
.how .step01 a {
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  display: block;
  margin-top: 24px;
  width: 144px;
  border-bottom: solid 1px;
}
@media screen and (max-width: 599px) {
  .how .step01 a {
    margin-top: 32px;
  }
}
.how .step02 {
  max-width: 444px;
  margin-left: 6.46%;
}
@media screen and (max-width: 599px) {
  .how .step02 {
    max-width: 265px;
    margin-left: 4.4%;
  }
}
.how .step03 {
  width: 440px;
  margin-left: 4.82%;
}
@media screen and (max-width: 599px) {
  .how .step03 {
    margin-left: 4.4%;
  }
}
.how .step03 p {
  white-space: pre-line;
}
@media screen and (max-width: 599px) {
  .how img {
    display: none;
  }
}
.how .wifi {
  max-width: 110px;
  max-height: 77px;
  margin-top: 69px;
  margin-left: 15.19%;
  margin-right: 9.85%;
}
.how .sp {
  max-width: 64px;
  max-height: 100px;
  margin-top: 56px;
  margin-left: 15.5%;
  margin-right: 12.21%;
}
.how .headphones {
  max-width: 92px;
  max-height: 92px;
  margin-top: 58px;
  margin-left: 16.11%;
  margin-right: 10.78%;
}

.special {
  padding: 100px 0 9px;
}
@media screen and (max-width: 975px) {
  .special {
    padding-left: 4%;
    padding-right: 4%;
    padding-top: 82px;
    padding-bottom: 40px;
  }
}
.special h2 {
  background-image: url(../images/special/bg.svg);
  background-position: bottom;
  background-size: 200px;
  padding-top: 128px;
  background-repeat: no-repeat;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .special h2 {
    background-size: 160px 160px;
    padding-top: 104px;
  }
}
.special .container {
  justify-content: center;
  margin: 0 auto;
  max-width: 800px;
}
.special img {
  margin-bottom: 40px;
}
@media screen and (max-width: 599px) {
  .special img {
    margin-bottom: 0;
  }
}
.special .text {
  display: flex;
}
@media screen and (max-width: 599px) {
  .special .text {
    flex-direction: column;
  }
}
.special .text h2 {
  color: #fff;
  font-size: 24px;
  line-height: 1.2;
  padding: 10px 36px;
  background: none;
  background-color: #333;
  width: 166px;
  border-radius: 0 0 20px 0;
  margin-bottom: 24px;
}
.special .text h4 {
  color: #333;
  line-height: 1.3;
}
@media screen and (max-width: 599px) {
  .special .text h4 {
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: 0;
  }
}
.special .text p {
  color: #333;
  line-height: 19.2px;
}
@media screen and (max-width: 599px) {
  .special .text p {
    font-size: 12px;
    line-height: 1.2;
    margin-bottom: 1px;
  }
}
.special .special01 {
  margin-right: 68px;
}
@media screen and (max-width: 599px) {
  .special .special01 {
    margin-bottom: 73px;
  }
}
@media screen and (max-width: 599px) {
  .special .special02 h2 {
    padding: 10px 36px 10px 33.5px;
  }
}

.faq {
  padding: 100px 0 55px;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .faq {
    padding: 102px 4% 56.5px 4%;
  }
}
.faq h2 {
  background-image: url(../images/schedule/bg.svg);
  background-position: bottom;
  background-size: 200px;
  padding-top: 128px;
  background-repeat: no-repeat;
}
@media screen and (max-width: 975px) {
  .faq h2 {
    background-size: 160px;
    padding-top: 103px;
    margin-left: 11px;
  }
}
.faq .accordion {
  display: block;
  max-width: 701px;
  margin: 0 auto;
}
.faq li {
  text-align: left;
  margin-bottom: 24px;
}
@media screen and (max-width: 599px) {
  .faq li {
    margin-bottom: 23px;
  }
}
.faq .question {
  background-color: #F5F5F5;
  position: relative;
  display: flex;
  padding: 24px 0 24px 32px;
  cursor: pointer;
}
@media screen and (max-width: 599px) {
  .faq .question {
    padding: 25.5px 0 26px 16px;
  }
}
.faq .answer {
  display: flex;
  padding: 24px 34px 0 32px;
}
@media screen and (max-width: 599px) {
  .faq .answer {
    padding: 21px 0 0 16px;
  }
}
.faq .qa {
  font-family: "Oswald", sans-serif;
  font-size: 24px;
  color: #000;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
  padding-right: 20px;
}
@media screen and (max-width: 599px) {
  .faq .qa {
    padding-right: 16px;
  }
}
.faq .textQ, .faq .textA {
  color: #333;
  letter-spacing: 0.05em;
  padding-top: 6px;
}
@media screen and (max-width: 599px) {
  .faq .textQ, .faq .textA {
    padding-top: 4.5px;
  }
}
.faq .textQ {
  font-size: 18px;
  line-height: 1;
}
@media screen and (max-width: 599px) {
  .faq .textQ {
    font-size: 14px;
    line-height: 1.4;
    max-width: 211px;
  }
}
.faq .question::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 3px;
  background-color: #333;
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 1s;
}
@media screen and (max-width: 599px) {
  .faq .question::before {
    right: 16px;
  }
}
.faq .question::after {
  content: "";
  display: inline-block;
  width: 25px;
  height: 3px;
  background-color: #333;
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transition: transform 1s;
}
@media screen and (max-width: 599px) {
  .faq .question::after {
    right: 16px;
  }
}
.faq .question.show::before {
  opacity: 0;
}
.faq .question.show::after {
  transform: translateY(-50%) rotate(180deg);
}
.faq .textA {
  font-size: 14px;
  max-width: 600px;
}
.faq a {
  display: block;
  font-size: 14px;
  color: #277DAD;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.05em;
  padding: 12px 0 0 5px;
}

footer {
  padding: 82px 0 22px;
}
@media screen and (max-width: 599px) {
  footer {
    padding-top: 80px;
    padding-bottom: 102px;
  }
}
footer img {
  max-width: 478px;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  footer img {
    max-width: 345px;
    max-height: 224px;
    display: block;
  }
}
footer ul {
  display: flex;
  margin: 81px auto 64px auto;
  max-width: 504px;
}
@media screen and (max-width: 599px) {
  footer ul {
    flex-direction: column;
    text-align: center;
    margin: 89px auto 40px auto;
  }
}
footer li {
  color: #333;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}
footer .li-r {
  margin-right: 40px;
}
@media screen and (max-width: 599px) {
  footer .li-r {
    margin-right: 0;
    margin-bottom: 40px;
  }
}
footer p {
  font-size: 12px;
  color: #333;
  line-height: 1;
  text-align: center;
}
footer .sp-footer {
  background-color: #333;
  position: fixed;
  width: 100%;
  z-index: 10;
  height: 80px;
  bottom: 0;
}
@media screen and (min-width: 600px) {
  footer .sp-footer {
    display: none;
  }
}
footer .sp-footer .footer-cta {
  display: block;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
  width: 240px;
  margin: 20px auto 19px auto;
}
footer .sp-footer a span {
  display: block;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  text-align: center;
}
footer .sp-footer .footer-cta:hover {
  color: #f0bd55;
  transition: 0.3s;
}/*# sourceMappingURL=style.css.map */