@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
/*
//PC-SPのみ

@mixin sp {
  @media only screen and (max-width: $width-smartphone) {
    @content;
  }
}
@mixin pc {
  @media only screen and (min-width: $width-smartphone + 1) {
    @content;
  }
}
*/
/*!
	Modaal - accessible modals - v0.4.4
	by Humaan, for all humans.
	http://humaan.com
 */
.modaal-noscroll {
  overflow: hidden;
}

.modaal-accessible-hide {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

.modaal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  opacity: 0;
}

.modaal-wrapper {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: auto;
  opacity: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.modaal-wrapper * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
}
.modaal-wrapper .modaal-close {
  border: none;
  background: transparent;
  padding: 0;
  -webkit-appearance: none;
}
.modaal-wrapper.modaal-start_none {
  display: none;
  opacity: 1;
}
.modaal-wrapper.modaal-start_fade {
  opacity: 0;
}
.modaal-wrapper *[tabindex="0"] {
  outline: none !important;
}
.modaal-wrapper.modaal-fullscreen {
  overflow: hidden;
}

.modaal-outer-wrapper {
  display: table;
  position: relative;
  width: 100%;
}
.modaal-fullscreen .modaal-outer-wrapper {
  display: block;
}

.modaal-inner-wrapper {
  display: table-cell;
  width: 100%;
  position: relative;
  vertical-align: middle;
  text-align: center;
  padding: 80px 25px;
}
.modaal-fullscreen .modaal-inner-wrapper {
  padding: 0;
  display: block;
  vertical-align: top;
}

.modaal-container {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: auto;
  text-align: left;
  color: #000;
  max-width: 1000px;
  border-radius: 0px;
  background: #fff;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: auto;
}
.modaal-container.is_loading {
  height: 100px;
  width: 100px;
  overflow: hidden;
}
.modaal-fullscreen .modaal-container {
  max-width: none;
  height: 100%;
  overflow: auto;
}

.modaal-close {
  position: fixed;
  right: 20px;
  top: 20px;
  color: #fff;
  cursor: pointer;
  opacity: 1;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0);
  border-radius: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.modaal-close:focus, .modaal-close:hover {
  outline: none;
  background: #fff;
}
.modaal-close:focus:before, .modaal-close:focus:after, .modaal-close:hover:before, .modaal-close:hover:after {
  background: #b93d0c;
}
.modaal-close span {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}
.modaal-close:before, .modaal-close:after {
  display: block;
  content: " ";
  position: absolute;
  top: 14px;
  left: 23px;
  width: 4px;
  height: 22px;
  border-radius: 4px;
  background: #fff;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}
.modaal-close:before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.modaal-close:after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.modaal-fullscreen .modaal-close {
  background: #afb7bc;
  right: 10px;
  top: 10px;
}

.modaal-content-container {
  padding: 30px;
}

.modaal-confirm-wrap {
  padding: 30px 0 0;
  text-align: center;
  font-size: 0;
}

.modaal-confirm-btn {
  font-size: 14px;
  display: inline-block;
  margin: 0 10px;
  vertical-align: middle;
  cursor: pointer;
  border: none;
  background: transparent;
}
.modaal-confirm-btn.modaal-ok {
  padding: 10px 15px;
  color: #fff;
  background: #555;
  border-radius: 3px;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}
.modaal-confirm-btn.modaal-ok:hover {
  background: #2f2f2f;
}
.modaal-confirm-btn.modaal-cancel {
  text-decoration: underline;
}
.modaal-confirm-btn.modaal-cancel:hover {
  text-decoration: none;
  color: #2f2f2f;
}

@keyframes instaReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes instaReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.modaal-instagram .modaal-container {
  width: auto;
  background: transparent;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.modaal-instagram .modaal-content-container {
  padding: 0;
  background: transparent;
}
.modaal-instagram .modaal-content-container > blockquote {
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}
.modaal-instagram iframe {
  opacity: 0;
  margin: -6px !important;
  border-radius: 0 !important;
  width: 1000px !important;
  max-width: 800px !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  -webkit-animation: instaReveal 1s linear forwards;
          animation: instaReveal 1s linear forwards;
}

.modaal-image .modaal-inner-wrapper {
  padding-left: 140px;
  padding-right: 140px;
}
.modaal-image .modaal-container {
  width: auto;
  max-width: 100%;
}

.modaal-gallery-wrap {
  position: relative;
  color: #fff;
}

.modaal-gallery-item {
  display: none;
}
.modaal-gallery-item img {
  display: block;
  width: auto !important;
  height: 86vh;
}
@media only screen and (max-width: 768px) {
  .modaal-gallery-item img {
    height: auto;
  }
}
.modaal-gallery-item.is_active {
  display: block;
  position: relative;
}
.modaal-gallery-item.is_active:after {
  text-align: center;
  content: "SAMPLE";
  display: inline;
  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;
  font-size: 6rem;
  letter-spacing: 3px;
  padding: 0 10px;
  font-weight: bold;
  color: #fff;
  opacity: 0.7;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  font-family: a-otf-midashi-go-mb31-pr6n, sans-serif;
  font-weight: 600;
  font-style: normal;
}

.modaal-gallery-label {
  position: absolute;
  left: 0;
  width: 100%;
  margin: 20px 0 0;
  font-size: 18px;
  text-align: center;
  color: #fff;
}
.modaal-gallery-label:focus {
  outline: none;
}

.modaal-gallery-control {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 1;
  cursor: pointer;
  color: #fff;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0);
  border: none;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.modaal-gallery-control.is_hidden {
  opacity: 0;
  cursor: default;
}
.modaal-gallery-control:focus, .modaal-gallery-control:hover {
  outline: none;
  background: #fff;
}
.modaal-gallery-control:focus:before, .modaal-gallery-control:focus:after, .modaal-gallery-control:hover:before, .modaal-gallery-control:hover:after {
  background: #afb7bc;
}
.modaal-gallery-control span {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}
.modaal-gallery-control:before, .modaal-gallery-control:after {
  display: block;
  content: " ";
  position: absolute;
  top: 16px;
  left: 25px;
  width: 4px;
  height: 18px;
  border-radius: 4px;
  background: #fff;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}
.modaal-gallery-control:before {
  margin: -5px 0 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.modaal-gallery-control:after {
  margin: 5px 0 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.modaal-gallery-next-inner {
  left: 100%;
  margin-left: 40px;
}
.modaal-gallery-next-outer {
  right: 45px;
}

.modaal-gallery-prev:before, .modaal-gallery-prev:after {
  left: 22px;
}
.modaal-gallery-prev:before {
  margin: 5px 0 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.modaal-gallery-prev:after {
  margin: -5px 0 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.modaal-gallery-prev-inner {
  right: 100%;
  margin-right: 40px;
}
.modaal-gallery-prev-outer {
  left: 45px;
}

.modaal-video-wrap {
  margin: auto 50px;
  position: relative;
}

.modaal-video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  background: #000;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}
.modaal-video-container iframe,
.modaal-video-container object,
.modaal-video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modaal-iframe .modaal-content {
  width: 100%;
  height: 100%;
}

.modaal-iframe-elem {
  width: 100%;
  height: 100%;
  display: block;
}

@media only screen and (min-width: 1400px) {
  .modaal-video-container {
    padding-bottom: 0;
    height: 731px;
  }
}
@media only screen and (max-width: 1140px) {
  .modaal-image .modaal-inner-wrapper {
    padding-left: 25px;
    padding-right: 25px;
  }
  .modaal-gallery-control {
    top: auto;
    bottom: 20px;
    -webkit-transform: none;
            transform: none;
    background: rgba(0, 0, 0, 0.7);
  }
  .modaal-gallery-control:before, .modaal-gallery-control:after {
    background: #fff;
  }
  .modaal-gallery-next {
    left: auto;
    right: 20px;
  }
  .modaal-gallery-prev {
    left: 20px;
    right: auto;
  }
}
@media screen and (max-width: 900px) {
  .modaal-instagram iframe {
    width: 500px !important;
  }
}
@media screen and (max-height: 1100px) {
  .modaal-instagram iframe {
    width: 700px !important;
  }
}
@media screen and (max-height: 1000px) {
  .modaal-inner-wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .modaal-instagram iframe {
    width: 600px !important;
  }
}
@media screen and (max-height: 900px) {
  .modaal-instagram iframe {
    width: 500px !important;
  }
  .modaal-video-container {
    max-width: 900px;
    max-height: 510px;
  }
}
@media only screen and (max-width: 600px) {
  .modaal-instagram iframe {
    width: 280px !important;
  }
}
@media only screen and (max-height: 820px) {
  .modaal-gallery-label {
    display: none;
  }
}
.modaal-loading-spinner {
  background: none;
  position: absolute;
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  margin: -100px 0 0 -100px;
  -webkit-transform: scale(0.25);
          transform: scale(0.25);
}
@-webkit-keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    opacity: 0.1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    opacity: 0.1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.modaal-loading-spinner > div {
  width: 24px;
  height: 24px;
  margin-left: 4px;
  margin-top: 4px;
  position: absolute;
}

.modaal-loading-spinner > div > div {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background: #fff;
}

.modaal-loading-spinner > div:nth-of-type(1) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.modaal-loading-spinner > div:nth-of-type(2) > div, .modaal-loading-spinner > div:nth-of-type(3) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(1) {
  -webkit-transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(2) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
          animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.12s;
  animation-delay: 0.12s;
}

.modaal-loading-spinner > div:nth-of-type(2) {
  -webkit-transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(3) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
          animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.25s;
  animation-delay: 0.25s;
}

.modaal-loading-spinner > div:nth-of-type(4) > div, .modaal-loading-spinner > div:nth-of-type(5) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(3) {
  -webkit-transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(4) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
          animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.37s;
  animation-delay: 0.37s;
}

.modaal-loading-spinner > div:nth-of-type(4) {
  -webkit-transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(5) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
          animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.modaal-loading-spinner > div:nth-of-type(6) > div, .modaal-loading-spinner > div:nth-of-type(7) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(5) {
  -webkit-transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(6) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
          animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.62s;
  animation-delay: 0.62s;
}

.modaal-loading-spinner > div:nth-of-type(6) {
  -webkit-transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(7) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
          animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.75s;
  animation-delay: 0.75s;
}

.modaal-loading-spinner > div:nth-of-type(7) {
  -webkit-transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(8) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.87s;
  animation-delay: 0.87s;
}

.modaal-loading-spinner > div:nth-of-type(8) {
  -webkit-transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main {
  display: block;
}

html {
  font-size: 62.5%;
}

body {
  line-height: 1;
  -webkit-text-size-adjust: 100%;
  font-family: "游ゴシック", "游ゴシック体", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, -apple-system, BlinkMacSystemFont, "Yu Gothic", YuGothic, Arial, "メイリオ", Meiryo, sans-serif;
  color: #000;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  color: #000;
  text-decoration: none;
}

input[type=submit],
input[type=button] {
  -webkit-appearance: button;
     -moz-appearance: button;
          appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

input {
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

select::-ms-expand {
  display: none;
}

@media screen and (min-width: 1025px) {
  .sp-only {
    display: none !important;
  }
  .sp_tab-only {
    display: none !important;
  }
  .br-sp {
    display: block !important;
  }
}
@media screen and (max-width: 1024px) {
  .pc-only {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .br-sp {
    display: none !important;
  }
  .sp-only {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
  .pc_tab-only {
    display: none !important;
  }
}
.wrap-l {
  width: 1080px;
  margin: auto;
}
@media screen and (max-width: 1080px) {
  .wrap-l {
    width: calc(100% - 20px);
  }
}



.wrap-s {
  width: 880px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .wrap-s {
    width: calc(100% - 20px);
  }
}

.wrap-pc {
  width: 990px;
  margin: auto;
}
@media screen and (max-width: 1080px) {
  .wrap-pc {
    width: calc(100% - 20px);
  }
}
@media only screen and (max-width: 768px) {
  .wrap-pc {
    width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  .wrap-sp {
    width: calc(100% - 20px);
    margin: auto;
  }
}

.text-center {
  text-align: center;
  display: block;
}

.text-left {
  text-align: left;
  display: block;
}

.text-right {
  text-align: right;
  display: block;
}

@media only screen and (min-width: 1025px) {
  .pc-text-center {
    text-align: center;
    display: block;
  }
}

@media only screen and (min-width: 1025px) {
  .pc-text-left {
    text-align: left;
    display: block;
  }
}

@media only screen and (min-width: 1025px) {
  .pc-text-right {
    text-align: right;
    display: block;
  }
}

@media only screen and (max-width: 768px) {
  .sp-text-center {
    text-align: center;
    display: block;
  }
}

@media only screen and (max-width: 768px) {
  .sp-text-left {
    text-align: left;
    display: block;
  }
}

@media only screen and (max-width: 768px) {
  .sp-text-right {
    text-align: right;
    display: block;
  }
}

.text-bold {
  font-weight: bold;
}

.text-size-basic {
  font-size: 1.6rem;
  line-height: 1.6;
}
@media only screen and (max-width: 768px) {
  .text-size-basic {
    font-size: 1.6rem;
  }
}

.text-size-heading {
  font-size: 3.2rem;
  line-height: 1.6;
}

.text-size-small {
  line-height: 1.6;
  font-size: 1.4rem;
}
@media only screen and (max-width: 768px) {
  .text-size-small {
    font-size: 1.2rem;
  }
}

.text-size-large {
  font-size: 2.4rem;
  line-height: 1.6;
}

.right {
  float: right !important;
}

.left {
  float: left !important;
}

.pc-right {
  float: right !important;
}
@media only screen and (max-width: 768px) {
  .pc-right {
    float: none !important;
  }
}

.pc-left {
  float: left !important;
}
@media only screen and (max-width: 768px) {
  .pc-left {
    float: none !important;
  }
}

@media only screen and (max-width: 768px) {
  .sp-right {
    float: right !important;
  }
}

@media only screen and (max-width: 768px) {
  .sp-left {
    float: left !important;
  }
}

.clearfix:after {
  content: "";
  clear: both;
  display: table;
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 768px) {
  .flex > * {
    min-height: 0%;
  }
}

@media only screen and (max-width: 768px) {
  .sp-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
@media only screen and (max-width: 768px) and (max-width: 768px) {
  .sp-flex > * {
    min-height: 0%;
  }
}

.flex-wrap {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.flex-between {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.flex-between.flex-column-3 > * {
  width: 31.666%;
}
@media only screen and (max-width: 768px) {
  .flex-between.flex-column-3 > * {
    width: 100%;
  }
}
.flex-between.flex-column-2 > * {
  width: 48%;
}

.flex-around {
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
}

.flex-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex-end {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.flex-item-start {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.flex-item-end {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.flex-item-center {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
      -ms-flex-flow: column;
          flex-flow: column;
}

@media only screen and (max-width: 768px) {
  .sp-flex-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
        -ms-flex-flow: column;
            flex-flow: column;
  }
  .sp-flex-column.flex-column-3 > *, .sp-flex-column.flex-column-2 > * {
    width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  .sp-flex-wrap {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}

@media only screen and (max-width: 768px) {
  .sp-flex-column-reverce {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-flow: column-reverse;
        -ms-flex-flow: column-reverse;
            flex-flow: column-reverse;
  }
}

@media only screen and (max-width: 768px) {
  .sp-flex-row-reverce {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-flow: row-reverse;
        -ms-flex-flow: row-reverse;
            flex-flow: row-reverse;
  }
}

@media screen and (max-width: 1024px) {
  .tab-flex-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
        -ms-flex-flow: column;
            flex-flow: column;
  }
  .tab-flex-column.flex-column-3 > *, .tab-flex-column.flex-column-2 > * {
    width: 100%;
  }
}

.wid-5 {
  width: 5% !important;
}

.wid-10 {
  width: 10% !important;
}

.wid-15 {
  width: 15% !important;
}

.wid-20 {
  width: 20% !important;
}

.wid-25 {
  width: 25% !important;
}

.wid-30 {
  width: 30% !important;
}

.wid-35 {
  width: 35% !important;
}

.wid-40 {
  width: 40% !important;
}

.wid-45 {
  width: 45% !important;
}

.wid-50 {
  width: 50% !important;
}

.wid-55 {
  width: 55% !important;
}

.wid-60 {
  width: 60% !important;
}

.wid-65 {
  width: 65% !important;
}

.wid-70 {
  width: 70% !important;
}

.wid-75 {
  width: 75% !important;
}

.wid-80 {
  width: 80% !important;
}

.wid-85 {
  width: 85% !important;
}

.wid-90 {
  width: 90% !important;
}

.wid-95 {
  width: 95% !important;
}

.wid-100 {
  width: 100% !important;
}

@media only screen and (max-width: 768px) {
  .sp-wid-100 {
    width: 100% !important;
  }
}

.img-center {
  display: block;
  margin: auto;
  max-width: 100%;
}

.m-auto {
  margin: auto;
}

.mv-0 {
  margin: 0;
}

.mv-10 {
  margin: 10px auto;
}

.mv-20 {
  margin: 20px auto;
}

.mv-30 {
  margin: 30px auto;
}

.mv-40 {
  margin: 40px auto;
}

.mv-50 {
  margin: 50px auto;
}

.mv-60 {
  margin: 60px auto;
}

.mv-70 {
  margin: 70px auto;
}

.mv-80 {
  margin: 80px auto;
}

.mv-90 {
  margin: 90px auto;
}

.mv-100 {
  margin: 100px auto;
}

.mt-0 {
  margin-top: 0;
}

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

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

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

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

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

.mt-60 {
  margin-top: 60px !important;
}

.mt-70 {
  margin-top: 70px !important;
}

.mt-80 {
  margin-top: 80px !important;
}

.mt-90 {
  margin-top: 90px !important;
}

.mt-100 {
  margin-top: 100px 0;
}

.mr-0 {
  margin-right: 0;
}

.mr-10 {
  margin-right: 10px !important;
}

.mr-20 {
  margin-right: 20px !important;
}

.mr-30 {
  margin-right: 30px !important;
}

.mr-40 {
  margin-right: 40px !important;
}

.mr-50 {
  margin-right: 50px !important;
}

.mr-60 {
  margin-right: 60px !important;
}

.mr-70 {
  margin-right: 70px !important;
}

.mr-80 {
  margin-right: 80px !important;
}

.mr-90 {
  margin-right: 90px !important;
}

.mr-100 {
  margin-right: 100px !important;
}

.ml-0 {
  margin-left: 0;
}

.ml-10 {
  margin-left: 10px !important;
}

.ml-20 {
  margin-left: 20px !important;
}

.ml-30 {
  margin-left: 30px !important;
}

.ml-40 {
  margin-left: 40px !important;
}

.ml-50 {
  margin-left: 50px !important;
}

.ml-60 {
  margin-left: 60px !important;
}

.ml-70 {
  margin-left: 70px !important;
}

.ml-80 {
  margin-left: 80px !important;
}

.ml-90 {
  margin-left: 90px !important;
}

.ml-100 {
  margin-left: 100px !important;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.mb-90 {
  margin-bottom: 90px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.mb-110 {
  margin-bottom: 110px !important;
}

.mb-120 {
  margin-bottom: 120px !important;
}

.mb-130 {
  margin-bottom: 130px !important;
}

.mb-140 {
  margin-bottom: 140px !important;
}

.mb-150 {
  margin-bottom: 150px !important;
}

.mb-160 {
  margin-bottom: 160px !important;
}

.mb-170 {
  margin-bottom: 170px !important;
}

.mb-180 {
  margin-bottom: 180px !important;
}

.mb-190 {
  margin-bottom: 190px !important;
}

.mb-200 {
  margin-bottom: 200px !important;
}

.pv-0 {
  padding: 0;
}

.pv-10 {
  padding: 10px 0;
}

.pv-20 {
  padding: 20px 0;
}

.pv-30 {
  padding: 30px 0;
}

.pv-40 {
  padding: 40px 0;
}

.pv-50 {
  padding: 50px 0;
}

.pv-60 {
  padding: 60px 0;
}

.pv-70 {
  padding: 70px 0;
}

.pv-80 {
  padding: 80px 0;
}

.pv-90 {
  padding: 90px 0;
}

.pv-100 {
  padding: 100px 0;
}

.pt-0 {
  padding-top: 0;
}

.pt-10 {
  padding-top: 10px !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.pt-30 {
  padding-top: 30px !important;
}

.pt-40 {
  padding-top: 40px !important;
}

.pt-50 {
  padding-top: 50px !important;
}

.pt-60 {
  padding-top: 60px !important;
}

.pt-70 {
  padding-top: 70px !important;
}

.pt-80 {
  padding-top: 80px !important;
}

.pt-90 {
  padding-top: 90px !important;
}

.pt-100 {
  padding-top: 100px 0;
}

.pr-0 {
  padding-right: 0;
}

.pr-10 {
  padding-right: 10px !important;
}

.pr-20 {
  padding-right: 20px !important;
}

.pr-30 {
  padding-right: 30px !important;
}

.pr-40 {
  padding-right: 40px !important;
}

.pr-50 {
  padding-right: 50px !important;
}

.pr-60 {
  padding-right: 60px !important;
}

.pr-70 {
  padding-right: 70px !important;
}

.pr-80 {
  padding-right: 80px !important;
}

.pr-90 {
  padding-right: 90px !important;
}

.pr-100 {
  padding-right: 100px !important;
}

.pl-0 {
  padding-left: 0;
}

.pl-10 {
  padding-left: 10px !important;
}

.pl-20 {
  padding-left: 20px !important;
}

.pl-30 {
  padding-left: 30px !important;
}

.pl-40 {
  padding-left: 40px !important;
}

.pl-50 {
  padding-left: 50px !important;
}

.pl-60 {
  padding-left: 60px !important;
}

.pl-70 {
  padding-left: 70px !important;
}

.pl-80 {
  padding-left: 80px !important;
}

.pl-90 {
  padding-left: 90px !important;
}

.pl-100 {
  padding-left: 100px !important;
}

.pb-0 {
  padding-bottom: 0;
}

.pb-10 {
  padding-bottom: 10px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.pb-40 {
  padding-bottom: 40px !important;
}

.pb-50 {
  padding-bottom: 50px !important;
}

.pb-60 {
  padding-bottom: 60px !important;
}

.pb-70 {
  padding-bottom: 70px !important;
}

.pb-80 {
  padding-bottom: 80px !important;
}

.pb-90 {
  padding-bottom: 90px !important;
}

.pb-100 {
  padding-bottom: 100px !important;
}

.padding-0 {
  padding: 0;
}

.padding-10 {
  padding: 10px !important;
}

.padding-20 {
  padding: 20px !important;
}

.padding-30 {
  padding: 30px !important;
}

.padding-40 {
  padding: 40px !important;
}

.padding-50 {
  padding: 50px !important;
}

.padding-60 {
  padding: 60px !important;
}

.padding-70 {
  padding: 70px !important;
}

.padding-80 {
  padding: 80px !important;
}

.padding-90 {
  padding: 90px !important;
}

.padding-100 {
  padding: 100px !important;
}

/*-------------------------*/
/* TAB                  */
/*-------------------------*/
/*-------------------------*/
/* SP                       */
/*-------------------------*/
@media screen and (max-width: 768px) {
  .mv-10 {
    margin: 5px auto;
  }
  .mv-20 {
    margin: 10px auto;
  }
  .mv-30 {
    margin: 15px auto;
  }
  .mv-40 {
    margin: 20px auto;
  }
  .mv-50 {
    margin: 25px auto;
  }
  .mv-60 {
    margin: 30px auto;
  }
  .mv-70 {
    margin: 35px auto;
  }
  .mv-80 {
    margin: 40px auto;
  }
  .mv-90 {
    margin: 45px auto;
  }
  .mv-100 {
    margin: 50px auto;
  }
  .mt-10 {
    margin-top: 5px !important;
  }
  .mt-20 {
    margin-top: 10px !important;
  }
  .mt-30 {
    margin-top: 15px !important;
  }
  .mt-40 {
    margin-top: 20px !important;
  }
  .mt-50 {
    margin-top: 25px !important;
  }
  .mt-60 {
    margin-top: 30px !important;
  }
  .mt-70 {
    margin-top: 35px !important;
  }
  .mt-80 {
    margin-top: 40px !important;
  }
  .mt-90 {
    margin-top: 45px !important;
  }
  .mt-100 {
    margin-top: 50px !important;
  }
  .mr-10 {
    margin-right: 5px !important;
  }
  .mr-20 {
    margin-right: 10px !important;
  }
  .mr-30 {
    margin-right: 15px !important;
  }
  .mr-40 {
    margin-right: 20px !important;
  }
  .mr-50 {
    margin-right: 25px !important;
  }
  .mr-60 {
    margin-right: 30px !important;
  }
  .mr-70 {
    margin-right: 35px !important;
  }
  .mr-80 {
    margin-right: 40px !important;
  }
  .mr-90 {
    margin-right: 45px !important;
  }
  .mr-100 {
    margin-right: 50px !important;
  }
  .ml-10 {
    margin-left: 5px !important;
  }
  .ml-20 {
    margin-left: 10px !important;
  }
  .ml-30 {
    margin-left: 15px !important;
  }
  .ml-40 {
    margin-left: 20px !important;
  }
  .ml-50 {
    margin-left: 25px !important;
  }
  .ml-60 {
    margin-left: 30px !important;
  }
  .ml-70 {
    margin-left: 35px !important;
  }
  .ml-80 {
    margin-left: 40px !important;
  }
  .ml-90 {
    margin-left: 45px !important;
  }
  .ml-100 {
    margin-left: 50px !important;
  }
  .mb-10 {
    margin-bottom: 5px !important;
  }
  .mb-20 {
    margin-bottom: 10px !important;
  }
  .mb-30 {
    margin-bottom: 15px !important;
  }
  .mb-40 {
    margin-bottom: 20px !important;
  }
  .mb-50 {
    margin-bottom: 25px !important;
  }
  .mb-60 {
    margin-bottom: 30px !important;
  }
  .mb-70 {
    margin-bottom: 35px !important;
  }
  .mb-80 {
    margin-bottom: 40px !important;
  }
  .mb-90 {
    margin-bottom: 45px !important;
  }
  .mb-100 {
    margin-bottom: 50px !important;
  }
  .mb-110 {
    margin-bottom: 50px !important;
  }
  .mb-120 {
    margin-bottom: 60px !important;
  }
  .mb-130 {
    margin-bottom: 65px !important;
  }
  .mb-140 {
    margin-bottom: 70px !important;
  }
  .mb-150 {
    margin-bottom: 75px !important;
  }
  .mb-160 {
    margin-bottom: 80px !important;
  }
  .mb-170 {
    margin-bottom: 85px !important;
  }
  .mb-180 {
    margin-bottom: 80px !important;
  }
  .mb-190 {
    margin-bottom: 95px !important;
  }
  .mb-200 {
    margin-bottom: 100px !important;
  }
  .pv-10 {
    padding: 5px 0;
  }
  .pv-20 {
    padding: 10px 0;
  }
  .pv-30 {
    padding: 15px 0;
  }
  .pv-40 {
    padding: 20px 0;
  }
  .pv-50 {
    padding: 25px 0;
  }
  .pv-60 {
    padding: 30px 0;
  }
  .pv-70 {
    padding: 35px 0;
  }
  .pv-80 {
    padding: 40px 0;
  }
  .pv-90 {
    padding: 45px 0;
  }
  .pv-100 {
    padding: 50px 0;
  }
  .pt-10 {
    padding-top: 5px !important;
  }
  .pt-20 {
    padding-top: 10px !important;
  }
  .pt-30 {
    padding-top: 15px !important;
  }
  .pt-40 {
    padding-top: 20px !important;
  }
  .pt-50 {
    padding-top: 25px !important;
  }
  .pt-60 {
    padding-top: 30px !important;
  }
  .pt-70 {
    padding-top: 35px !important;
  }
  .pt-80 {
    padding-top: 40px !important;
  }
  .pt-90 {
    padding-top: 45px !important;
  }
  .pt-100 {
    padding-top: 50px !important;
  }
  .pr-10 {
    padding-right: 5px !important;
  }
  .pr-20 {
    padding-right: 10px !important;
  }
  .pr-30 {
    padding-right: 15px !important;
  }
  .pr-40 {
    padding-right: 20px !important;
  }
  .pr-50 {
    padding-right: 25px !important;
  }
  .pr-60 {
    padding-right: 30px !important;
  }
  .pr-70 {
    padding-right: 35px !important;
  }
  .pr-80 {
    padding-right: 40px !important;
  }
  .pr-90 {
    padding-right: 45px !important;
  }
  .pr-100 {
    padding-right: 50px !important;
  }
  .pb-10 {
    padding-bottom: 5px !important;
  }
  .pb-20 {
    padding-bottom: 10px !important;
  }
  .pb-30 {
    padding-bottom: 15px !important;
  }
  .pb-40 {
    padding-bottom: 20px !important;
  }
  .pb-50 {
    padding-bottom: 25px !important;
  }
  .pb-60 {
    padding-bottom: 30px !important;
  }
  .pb-70 {
    padding-bottom: 35px !important;
  }
  .pb-80 {
    padding-bottom: 40px !important;
  }
  .pb-90 {
    padding-bottom: 45px !important;
  }
  .pb-100 {
    padding-bottom: 50px !important;
  }
  .pl-10 {
    padding-left: 5px !important;
  }
  .pl-20 {
    padding-left: 10px !important;
  }
  .pl-30 {
    padding-left: 15px !important;
  }
  .pl-40 {
    padding-left: 20px !important;
  }
  .pl-50 {
    padding-left: 25px !important;
  }
  .pl-60 {
    padding-left: 30px !important;
  }
  .pl-70 {
    padding-left: 35px !important;
  }
  .pl-80 {
    padding-left: 40px !important;
  }
  .pl-90 {
    padding-left: 45px !important;
  }
  .pl-100 {
    padding-left: 50px !important;
  }
  .padding-10 {
    padding: 5px !important;
  }
  .padding-20 {
    padding: 10px !important;
  }
  .padding-30 {
    padding: 15px !important;
  }
  .padding-40 {
    padding: 20px !important;
  }
  .padding-50 {
    padding: 25px !important;
  }
  .padding-60 {
    padding: 30px !important;
  }
  .padding-70 {
    padding: 35px !important;
  }
  .padding-80 {
    padding: 40px !important;
  }
  .padding-90 {
    padding: 45px !important;
  }
  .padding-100 {
    padding: 50px !important;
  }
  .sp-mb-0 {
    margin-bottom: 0px !important;
  }
  .sp-mb-10 {
    margin-bottom: 10px !important;
  }
  .sp-mb-20 {
    margin-bottom: 20px !important;
  }
  .sp-mb-30 {
    margin-bottom: 30px !important;
  }
  .sp-mb-40 {
    margin-bottom: 40px !important;
  }
  .sp-mb-50 {
    margin-bottom: 50px !important;
  }
  .sp-mb-60 {
    margin-bottom: 60px !important;
  }
  .sp-mb-70 {
    margin-bottom: 70px !important;
  }
  .sp-mb-80 {
    margin-bottom: 80px !important;
  }
  .sp-mb-90 {
    margin-bottom: 90px !important;
  }
  .sp-mb-100 {
    margin-bottom: 100px !important;
  }
  .sp-mt-10 {
    margin-top: 10px !important;
  }
  .sp-mt-20 {
    margin-top: 20px !important;
  }
  .sp-mt-30 {
    margin-top: 30px !important;
  }
  .sp-mt-40 {
    margin-top: 40px !important;
  }
  .sp-mt-50 {
    margin-top: 50px !important;
  }
  .sp-mt-60 {
    margin-top: 60px !important;
  }
  .sp-mt-70 {
    margin-top: 70px !important;
  }
  .sp-mt-80 {
    margin-top: 80px !important;
  }
  .sp-mt-90 {
    margin-top: 90px !important;
  }
  .sp-mt-100 {
    margin-top: 100px !important;
  }
  .sp-nobg {
    background: none !important;
  }
}
.header__nav__inner {
  line-height: 1.4;
}

.header__nav__col--sns a {
  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;
}

.category-border {
  width: 70%;
  max-width: 790px;
  margin: 0 auto 60px;
  height: 1px;
  background-color: #fff;
}
@media only screen and (max-width: 768px) {
  .category-border {
    max-width: calc(100% - 50px);
    margin-bottom: 30px;
  }
}

.button {
  text-align: center;
}
.button-black {
  border: solid 1px #fff;
  max-width: 320px;
  margin: auto;
}
.button-black__link {
  background-color: #000;
  font-size: 2rem;
  color: #fff;
  font-weight: bold;
  display: block;
  padding: 17px 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
@media only screen and (max-width: 768px) {
  .button-black__link {
    font-size: 1.6rem;
  }
}
.button-black__link:hover {
  color: #000;
  background-color: #fff;
}
.button-black__link-small {
  font-size: 1.5rem;
  margin: auto;
}
@media only screen and (max-width: 768px) {
  .button-black__link-small {
    font-size: 1.4rem;
  }
}
.button-goldsmall__link {
  background-color: #c69032;
  font-size: 2rem;
  color: #fff;
  font-weight: bold;
  display: block;
  padding: 17px 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
@media only screen and (max-width: 768px) {
  .button-goldsmall__link {
    font-size: 1.6rem;
  }
}
.button-goldsmall__link:hover {
  background-color: #f5b442;
}
.button-goldsmall__link-small {
  font-size: 1.5rem;
}
@media only screen and (max-width: 768px) {
  .button-goldsmall__link-small {
    font-size: 1.4rem;
  }
}
.button-red {
  background-color: #9f2d2f;
  border-radius: 20px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.button-red:hover {
  background-color: #da4040;
}
.button-red__link {
  display: block;
  padding: 20px 0;
  font-size: 2.8rem;
  padding: 40px 0;
  font-weight: bold;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .button-red__link {
    padding: 20px 0;
    font-size: 2rem;
  }
}
.button-gold {
  background-color: #c69032;
  border-radius: 20px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.button-gold:hover {
  background-color: #f5b442;
}
.button-gold__link {
  display: block;
  padding: 20px 0;
  font-size: 2.8rem;
  padding: 40px 0;
  font-weight: bold;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .button-gold__link {
    padding: 20px 0;
    font-size: 2rem;
  }
}

.sns-bottom {
  position: relative;
}
.sns-bottom .sns__list {
  margin-bottom: 50px;
}
@media only screen and (max-width: 768px) {
  .sns-bottom .sns__list {
    margin-bottom: 0;
  }
}

.sns__list {
  position: absolute;
  bottom: 50%;
  right: 0%;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  padding: 5px 5px 5px 5px;
  z-index: 10;
}
@media only screen and (max-width: 768px) {
  .sns__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
    background: none;
    bottom: auto;
    line-height: 0;
    padding: 7.8125vw 0 21.875vw;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.sns__item {
  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;
  margin-bottom: 12px;
  border-radius: 100%;
  border: solid 2px #fff;
  padding: 2px;
  width: 40px;
  height: 40px;
}
@media only screen and (max-width: 768px) {
  .sns__item {
    margin: 0 8px;
    padding: 2px;
  }
}
.sns__item a {
  display: block;
  width: 60%;
}
.sns__item a img {
  width: 100%;
  vertical-align: bottom;
}

.nav-category {
  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;
  padding: 100px 0 100px;
}
@media only screen and (max-width: 768px) {
  .nav-category {
    padding: 0 0 14.0625vw;
  }
}
.nav-category__list {
  width: 83%;
  max-width: 1000px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .nav-category__list {
    width: 60%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.nav-category__item {
  width: 30%;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .nav-category__item {
    width: 100%;
  }
}
.nav-category__item__link {
  display: block;
  width: 100%;
}
.nav-category__item__link img {
  width: 100%;
  vertical-align: bottom;
}
@media only screen and (max-width: 768px) {
  .nav-category__item:nth-of-type(2) {
    margin: 4.6875vw 0;
  }
}
.nav-category__item:hover {
  opacity: 0.7;
}

main {
  position: relative;
  background: url(../images/bg.jpg) center center no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

@-webkit-keyframes bggradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes bggradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.bg-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(-50deg, rgba(0, 173, 255, 0.9), rgba(255, 0, 153, 0.15), rgb(37, 161, 74));
  background-size: 200% 200%;
  -webkit-animation: bggradient 10s ease infinite;
          animation: bggradient 10s ease infinite;
  z-index: 0;
}

@-webkit-keyframes fixed-footer-active {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}

@keyframes fixed-footer-active {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}
.fixed-footer-active {
  -webkit-animation: fixed-footer-active 0.4s ease;
          animation: fixed-footer-active 0.4s ease;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes fixed-footer-noactive {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fixed-footer-noactive {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.fixed-footer-noactive {
  -webkit-animation: fixed-footer-noactive 0.4s ease;
          animation: fixed-footer-noactive 0.4s ease;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.fixed-footer {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  position: fixed;
  bottom: 0;
  z-index: 100;
  width: 100%;
  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;
  background: rgba(255, 255, 255, 0.5);
  padding: 25px 0;
}
@media only screen and (max-width: 768px) {
  .fixed-footer {
    padding: 4.6875vw 0;
  }
}
.fixed-footer a {
  display: block;
  width: 25%;
  max-width: 580px;
  cursor: pointer;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media only screen and (max-width: 768px) {
  .fixed-footer a {
    width: 60%;
    max-width: none;
  }
}
.fixed-footer a img {
  width: 100%;
  vertical-align: bottom;
}
.fixed-footer a:hover {
  opacity: 0.7;
}

.vector {
  font-size: xx-small;
  opacity: 0.1;
  display: block;
  padding: 0 0 15px;
  display: block;
  text-align: center;
  pointer-events: none;
}

.scroll-top {
  position: fixed;
  bottom: 2%;
  right: 2%;
  z-index: 101;
  width: 7%;
  max-width: 120px;
  cursor: pointer;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media only screen and (max-width: 768px) {
  .scroll-top {
    max-width: none;
    width: 12%;
    bottom: 0.75%;
    right: 2%;
  }
}
.scroll-top figure {
  width: 100%;
}
.scroll-top figure img {
  width: 100%;
  vertical-align: bottom;
}

.scroll-top:hover {
  opacity: 0.7;
}

.content-wrap {
  position: relative;
  z-index: 10;
}

.hero {
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 439px) {
  .hero {
    margin-top: 16.3371298405vw;
  }
}
@media screen and (min-width: 440px) {
  .hero {
    margin-top: 71.88px;
  }
}
.hero .hero-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 0 100px;
}
@media only screen and (max-width: 768px) {
  .hero .hero-content {
    margin: 0 0 25vw;
  }
}
.hero .hero-content .hero__logo {
  width: 70%;
  max-width: 820px;
  margin: 80px 0 0;
}
@media only screen and (max-width: 768px) {
  .hero .hero-content .hero__logo {
    width: 90%;
    max-width: none;
    margin: 7.8125vw 0 0;
  }
}
.hero .hero-content .hero__logo img {
  width: 100%;
  vertical-align: bottom;
}
.hero .hero-content .hero__lead {
  margin: 25px 25px 100px 25px;
}
@media only screen and (max-width: 768px) {
  .hero .hero-content .hero__lead {
    margin: 7.8125vw 3.125vw 0 3.125vw;
  }
}
.hero .hero-content .hero__lead .hero__lead__text {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.085em;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .hero .hero-content .hero__lead .hero__lead__text {
    font-size: 3.4375vw;
    text-align: center;
    line-height: 2;
  }
}
.hero .hero-content .hero__lead .hero__lead__text .sp-space {
  display: none;
}
@media only screen and (max-width: 768px) {
  .hero .hero-content .hero__lead .hero__lead__text .sp-space {
    display: block;
    margin: 1.5625vw 0 0;
  }
}
.hero .hero__top {
  width: 45%;
  max-width: 428px;
  position: absolute;
  top: 0;
  right: 0;
}
.hero .hero__top img {
  width: 100%;
  vertical-align: bottom;
}
.hero .hero__bottom {
  width: 35%;
  max-width: 470px;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: translateY(43%);
          transform: translateY(43%);
}
.hero .hero__bottom img {
  width: 100%;
  vertical-align: bottom;
}
@-webkit-keyframes arrow {
  0% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, -8px, 0);
    transform: translate3d(-50%, -8px, 0);
  }
}
@keyframes arrow {
  0% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, -8px, 0);
    transform: translate3d(-50%, -8px, 0);
  }
}
.hero .arrowWrap {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.hero .arrowWrap p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 15px;
  color: #fff;
  letter-spacing: 0.105em;
}
@media screen and (max-width: 768px) and (min-width: 501px) {
  .hero .arrowWrap p {
    font-size: 24px;
  }
}
@media screen and (max-width: 500px) {
  .hero .arrowWrap p {
    font-size: 3.75vw;
  }
}
.hero .arrowWrap .arrow {
  margin: 0 auto;
  -webkit-animation: arrow 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0s infinite alternate;
  animation: arrow 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0s infinite alternate;
}
.hero .arrowWrap .arrow span {
  position: relative;
  display: block;
  left: 50%;
  width: 30px;
  height: 30px;
}
@media screen and (max-width: 768px) and (min-width: 501px) {
  .hero .arrowWrap .arrow span {
    width: 50px;
    height: 50px;
  }
}
.hero .arrowWrap .arrow span:before {
  content: "";
  width: 10px;
  height: 10px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 768px) and (min-width: 501px) {
  .hero .arrowWrap .arrow span:before {
    width: 18px;
    height: 18px;
    border-top: solid 3px #fff;
    border-right: solid 3px #fff;
  }
}

.register:first-of-type {
  margin: 15px 0;
}
@media only screen and (max-width: 768px) {
  .register:first-of-type {
    margin: 4.6875vw 0;
  }
}

.register:last-of-type {
  margin: 75px 0 0;
}
@media only screen and (max-width: 768px) {
  .register:last-of-type {
    margin: 23.4375vw 0 0;
  }
}

.register {
  position: relative;
  z-index: 10;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.register div {
  width: 85%;
  max-width: 1032px;
  background: #fff;
  border: solid 1px #fff;
  border-radius: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.register div img {
  width: 100%;
  vertical-align: bottom;
}
.register div a {
  display: block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  cursor: pointer;
}
.register div a:hover {
  opacity: 0.7;
}
.register div .resister_ttl {
  width: 50%;
  margin: 70px 0 0;
}
@media only screen and (max-width: 768px) {
  .register div .resister_ttl {
    width: 80%;
    margin: 10.9375vw 0 0;
  }
}
.register div p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #000;
  letter-spacing: 0.085em;
  line-height: 1.7;
  text-align: center;
  margin: 35px 0 0;
}
@media only screen and (max-width: 768px) {
  .register div p {
    width: 90%;
    letter-spacing: 0.02em;
    font-size: 3.75vw;
    margin: 10.9375vw 0 0;
    line-height: 1.6;
  }
}
.register div p .sp-space {
  display: none;
}
@media only screen and (max-width: 768px) {
  .register div p .sp-space {
    display: block;
    margin: 3.125vw 0 0;
  }
}
.register div .calendar_bnr {
  width: 60%;
  margin: 40px 0;
}
@media only screen and (max-width: 768px) {
  .register div .calendar_bnr {
    width: 80%;
    margin: 10.9375vw 0;
  }
}
.register div .buy_btn {
  width: 30%;
  margin: 0 0 60px;
}
@media only screen and (max-width: 768px) {
  .register div .buy_btn {
    width: 80%;
    margin: 0 0 10.9375vw;
  }
}

.ranking_ttl {
  width: 20%;
  max-width: 220px;
  margin: 0 auto;
  min-width: 180px;
}
@media only screen and (max-width: 768px) {
  .ranking_ttl {
    width: 50%;
    min-width: 160px;
    max-width: none;
    margin: 0 auto 9.375vw;
  }
}
.ranking_ttl img {
  width: 100%;
  vertical-align: bottom;
}

.ranking {
  width: 90%;
  max-width: 1152px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .ranking {
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.ranking .ranking-box-wrap {
  width: 43%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 3.5%;
}
@media only screen and (max-width: 768px) {
  .ranking .ranking-box-wrap {
    width: 90%;
  }
}
.ranking .ranking-box-wrap .ranking-box {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 55px 0 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .ranking .ranking-box-wrap .ranking-box {
    margin: 9.375vw 0 0;
  }
}
.ranking .ranking-box-wrap .ranking-box figure {
  width: 100%;
  position: relative;
}
.ranking .ranking-box-wrap .ranking-box figure img:first-of-type {
  width: 20%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: 5%;
  left: 1%;
  z-index: 10;
}
.ranking .ranking-box-wrap .ranking-box figure img:nth-of-type(2) {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 98.5%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  vertical-align: bottom;
  z-index: 0;
}
.ranking .ranking-box-wrap .ranking-box figure img:nth-of-type(3) {
  height: 9%;
  position: absolute;
  bottom: 1.5%;
  right: 0.8%;
  z-index: 10;
}
.ranking .ranking-box-wrap .ranking-box figure img:last-of-type {
  position: relative;
  width: 100%;
  vertical-align: bottom;
  z-index: 5;
}
.ranking .ranking-box-wrap .ranking-box p:first-of-type {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  margin: 30px 0 0;
}
@media only screen and (max-width: 768px) {
  .ranking .ranking-box-wrap .ranking-box p:first-of-type {
    margin: 3.125vw 0 0;
  }
}
.ranking .ranking-box-wrap .ranking-box p:first-of-type object a {
  font-size: 24px;
  color: #dfd40d;
  letter-spacing: 0.105em;
}
@media only screen and (max-width: 768px) {
  .ranking .ranking-box-wrap .ranking-box p:first-of-type object a {
    font-size: 3.75vw;
  }
}
.ranking .ranking-box-wrap .ranking-box p:first-of-type object a:hover {
  text-decoration: underline;
}
.ranking .ranking-box-wrap .ranking-box p:first-of-type span:first-of-type {
  font-size: 24px;
  color: #dfd40d;
  letter-spacing: 0.105em;
}
@media only screen and (max-width: 768px) {
  .ranking .ranking-box-wrap .ranking-box p:first-of-type span:first-of-type {
    font-size: 3.75vw;
  }
}
.ranking .ranking-box-wrap .ranking-box p:first-of-type span:last-of-type {
  font-size: 14px;
  color: #fff;
  letter-spacing: 0.105em;
}
@media only screen and (max-width: 768px) {
  .ranking .ranking-box-wrap .ranking-box p:first-of-type span:last-of-type {
    display: inline-block;
    font-size: 3.75vw;
    margin: 3.125vw 0 0;
  }
}
.ranking .ranking-box-wrap .ranking-box p:last-of-type {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 16px;
  color: #fff;
  line-height: 1.7;
  letter-spacing: 0.105em;
  margin: 20px 0 50px;
  text-align: justify;
}
@media only screen and (max-width: 768px) {
  .ranking .ranking-box-wrap .ranking-box p:last-of-type {
    font-size: 3.75vw;
    margin: 3.125vw 0 6.25vw;
    line-height: 1.8;
  }
}
.ranking .ranking-box-wrap .ranking-box p:hover {
  text-decoration: underline;
  color: #dfd40d;
}
.ranking .ranking-box-wrap .ranking-box figure:hover {
  opacity: 0.7;
}
.ranking .ranking-box-wrap:first-of-type {
  margin: 0 30%;
}
@media only screen and (max-width: 768px) {
  .ranking .ranking-box-wrap:first-of-type {
    margin: 0;
  }
}

.special__lead__text {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.105em;
  text-align: center;
  margin: 50px 0 0;
  line-height: 1.7;
}
@media only screen and (max-width: 768px) {
  .special__lead__text {
    width: 90%;
    font-size: 3.75vw;
    margin: 9.375vw auto 0;
    line-height: 1.5;
  }
}
.special__lead__text .sp-space {
  display: none;
}
@media only screen and (max-width: 768px) {
  .special__lead__text .sp-space {
    display: block;
    margin: 3.125vw 0 0;
  }
}

#special-dazn .special_ttl {
  width: 27.109375vw;
  max-width: 280px;
}
@media only screen and (max-width: 768px) {
  #special-dazn .special_ttl {
    width: 57.8333333333vw;
  }
}

#special-jsports .special_ttl {
  width: 27.109375vw;
  max-width: 280px;
}
@media only screen and (max-width: 768px) {
  #special-jsports .special_ttl {
    width: 57.8333333333vw;
  }
}

#special-linenews .special_ttl {
  width: 27.109375vw;
  max-width: 280px;
}
@media only screen and (max-width: 768px) {
  #special-linenews .special_ttl {
    width: 57.8333333333vw;
  }
}

#special-line .special_ttl {
  width: 16.40625vw;
  max-width: 280px;
}
@media only screen and (max-width: 768px) {
  #special-line .special_ttl {
    width: 35vw;
  }
}

#special-suponavi .special_ttl {
  width: 27.109375vw;
  max-width: 280px;
}
@media only screen and (max-width: 768px) {
  #special-suponavi .special_ttl {
    width: 57.8333333333vw;
  }
}

#special-footballistavideo .special_ttl {
  width: 30.78125vw;
  max-width: 280px;
}
@media only screen and (max-width: 768px) {
  #special-footballistavideo .special_ttl {
    width: 65.6666666667vw;
  }
}

.special {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 90%;
  max-width: 1100px;
  margin: 60px auto 0;
}
@media only screen and (max-width: 768px) {
  .special {
    width: 80%;
    margin: 9.375vw auto 0;
  }
}
.special .special_ttl img {
  width: 100%;
  vertical-align: bottom;
}
.special .special-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 45px 0 0;
}
@media only screen and (max-width: 768px) {
  .special .special-box {
    margin: 7.8125vw 0 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.special .special-box .special-img {
  display: block;
  width: 48%;
  margin: 0 1%;
  position: relative;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .special .special-box .special-img {
    width: 100%;
  }
}
.special .special-box .special-img figure {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 98%;
  height: 98%;
  overflow: hidden;
  z-index: 0;
}
.special .special-box .special-img figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.special .special-box .special-img > img:first-of-type {
  height: 9%;
  position: absolute;
  bottom: 1.5%;
  z-index: 20;
}
.special .special-box .special-img > img:last-of-type {
  width: 100%;
  vertical-align: bottom;
  position: relative;
  z-index: 10;
}
.special .special-box .special-img:hover {
  opacity: 0.7;
}
.special .special-box .special-box-right {
  width: 48%;
  margin: 0 1%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media only screen and (max-width: 768px) {
  .special .special-box .special-box-right {
    width: 100%;
  }
}
.special .special-box .special-box-right p:first-of-type {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .special .special-box .special-box-right p:first-of-type {
    margin: 3.125vw auto 0;
  }
}
.special .special-box .special-box-right p:first-of-type span:first-of-type {
  font-size: 24px;
  color: #dfd40d;
  letter-spacing: 0.105em;
  margin: 0 5px 0 0;
}
@media only screen and (max-width: 768px) {
  .special .special-box .special-box-right p:first-of-type span:first-of-type {
    font-size: 3.75vw;
  }
}
.special .special-box .special-box-right p:first-of-type span:last-of-type {
  font-size: 14px;
  color: #fff;
  letter-spacing: 0.105em;
}
@media only screen and (max-width: 768px) {
  .special .special-box .special-box-right p:first-of-type span:last-of-type {
    display: inline-block;
    margin: 3.125vw 0 0;
    font-size: 3.75vw;
  }
}
.special .special-box .special-box-right p:first-of-type .writer-link {
  color: #dfd40d;
}
.special .special-box .special-box-right p:first-of-type .writer-link:hover {
  text-decoration: underline;
}
.special .special-box .special-box-right p:last-of-type {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 20px;
  color: #fff;
  line-height: 1.8;
  letter-spacing: 0.105em;
  text-align: justify;
  margin: 25px 0;
}
@media only screen and (max-width: 768px) {
  .special .special-box .special-box-right p:last-of-type {
    font-size: 3.75vw;
    margin: 7.8125vw 0;
  }
}
.special .special-box .special-box-right .heading-link {
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .special .special-box .special-box-right .heading-link {
    font-size: 3.75vw;
    margin: 7.8125vw 0;
  }
}
.special .special-box .special-box-right .heading-link:hover {
  color: #dfd40d;
  text-decoration: underline;
}
.special .special-box .special-box-right .special-box-right-bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 768px) {
  .special .special-box .special-box-right .special-box-right-bottom {
    -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;
  }
}
.special .special-box .special-box-right .special-box-right-bottom .special-selector {
  display: block;
  width: 16%;
  margin: 0 2%;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .special .special-box .special-box-right .special-box-right-bottom .special-selector {
    width: 35%;
  }
}
.special .special-box .special-box-right .special-box-right-bottom .special-selector img {
  width: 100%;
  vertical-align: bottom;
}
.special .special-box .special-box-right .special-box-right-bottom .special-selector:hover {
  opacity: 0.7;
}
.special .special-box .special-box-right .special-box-right-bottom .selector-text-box {
  width: 80%;
}
@media only screen and (max-width: 768px) {
  .special .special-box .special-box-right .special-box-right-bottom .selector-text-box {
    width: 100%;
    margin: 3.125vw 0;
  }
}
.special .special-box .special-box-right .special-box-right-bottom .selector-text-box p:first-of-type {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 20px;
  color: #fff;
  letter-spacing: 0.105em;
}
@media only screen and (max-width: 768px) {
  .special .special-box .special-box-right .special-box-right-bottom .selector-text-box p:first-of-type {
    font-size: 3.75vw;
  }
}
.special .special-box .special-box-right .special-box-right-bottom .selector-text-box .selector-border {
  width: 100%;
  margin: 20px auto;
  height: 1px;
  background-color: #fff;
}
@media only screen and (max-width: 768px) {
  .special .special-box .special-box-right .special-box-right-bottom .selector-text-box .selector-border {
    margin: 3.125vw auto;
  }
}
.special .special-box .special-box-right .special-box-right-bottom .selector-text-box p:last-of-type {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: 1.6;
  letter-spacing: 0.105em;
  text-align: justify;
  margin: 0;
}
@media only screen and (max-width: 768px) {
  .special .special-box .special-box-right .special-box-right-bottom .selector-text-box p:last-of-type {
    font-size: 3.75vw;
  }
}

.lead-sample {
  margin-top: 80px;
}
@media only screen and (max-width: 768px) {
  .lead-sample {
    margin-top: 30px;
  }
}
.lead-sample__fig {
  text-align: center;
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  .lead-sample__fig {
    margin-bottom: 15px;
  }
}
.lead-sample__fig__img {
  width: 960px;
}
@media only screen and (max-width: 768px) {
  .lead-sample__fig__img {
    width: 100%;
  }
}
.lead-sample__btn {
  margin: 0 auto 40px;
  text-align: center;
  max-width: 390px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.lead-sample__btn:hover {
  opacity: 0.7;
}
@media only screen and (max-width: 768px) {
  .lead-sample__btn {
    max-width: 100%;
  }
}
.lead-sample__btn__link {
  padding: 30px 0;
  display: block;
}
.lead-sample__imglist {
  display: none;
}

.ranking-link {
  width: 100%;
}
.ranking-link > div {
  width: 50%;
  max-width: 500px;
  margin: 100px auto 0;
}
@media only screen and (max-width: 768px) {
  .ranking-link > div {
    width: 85%;
    max-width: none;
    margin: 15.625vw auto;
  }
}
.ranking-link > div > p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 20px;
  color: #fff;
  letter-spacing: 0.105em;
  text-align: center;
  margin: 25px 0;
}
.ranking-link > div > a {
  display: block;
  cursor: pointer;
}
.ranking-link > div > a > img {
  width: 100%;
  vertical-align: bottom;
}

/*TOP*//*# sourceMappingURL=common.css.map */