@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@700&display=swap");
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, *::before, *::after {
  margin: 0;
  padding: 0;
  border: 0;
  word-break: break-word;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  vertical-align: baseline;
  background: transparent;
}

html, body {
  overflow-x: hidden;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main {
  display: block;
}

li {
  list-style-type: none;
}

blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after, q::before, q::after {
  content: '';
  content: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img, picture {
  vertical-align: middle;
  max-width: 100%;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input, select {
  vertical-align: middle;
}

br {
  line-height: 0;
}

/* safariでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -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;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: inherit;
}

/* -----------------------------------------------------
	basic
----------------------------------------------------- */
html {
  font-size: 62.5%;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  -webkit-text-size-adjust: 100%;
  font-size: min(1.14583vw,22px);
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  letter-spacing: 0.03em;
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
  background: #000;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 3.64583vw;
  }
}

main {
  width: 100%;
  position: relative;
}

#contents {
  padding-top: min(5vw,96px);
}

@media screen and (max-width: 768px) {
  #contents {
    padding-top: 12.5vw;
  }
}

.inner {
  max-width: min(62.5vw,1200px);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .inner {
    max-width: 100%;
    padding: 0 5.20833vw;
  }
}

a {
  opacity: 1;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  text-decoration: none;
}

/* -----------------------------------------------------
	header
----------------------------------------------------- */
header {
  background: rgba(127, 103, 255, 0.8);
  -webkit-backdrop-filter: blur(calc(10 * 2px));
  backdrop-filter: blur(calc(10 * 2px));
  width: 100%;
  position: fixed;
  z-index: 4;
}

@media screen and (max-width: 768px) {
  header {
    -webkit-backdrop-filter: blur(calc(10 * calc(100vw / 768)));
    backdrop-filter: blur(calc(10 * calc(100vw / 768)));
  }
}

header .inner {
  max-width: 96%;
  padding: 0;
  display: -webkit-box;
  /*Android4.3*/
  display: -ms-flexbox;
  /*IE10*/
  display: -webkit-flex;
  /*PC-Safari,iOS8.4*/
  display: flex;
  -ms-flex-align: center;
  /*IE10*/
  -webkit-box-align: center;
  /* Android4.3以下、Safari3.1〜6.0 */
  -webkit-align-items: center;
  /* Safari6.1以降 */
  align-items: center;
  -ms-flex-pack: justify;
  /*IE10*/
  -webkit-box-pack: justify;
  /* Android4.3以下、Safari3.1〜6.0 */
  -webkit-justify-content: space-between;
  /* Safari6.1以降 */
  justify-content: space-between;
  height: min(5vw,96px);
}

@media screen and (max-width: 768px) {
  header .inner {
    max-width: 100%;
    display: block;
    height: 12.5vw;
  }
}

header .site_logo {
  font-size: 100%;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  header .site_logo {
    display: -webkit-box;
    /*Android4.3*/
    display: -ms-flexbox;
    /*IE10*/
    display: -webkit-flex;
    /*PC-Safari,iOS8.4*/
    display: flex;
    -ms-flex-align: center;
    /*IE10*/
    -webkit-box-align: center;
    /* Android4.3以下、Safari3.1〜6.0 */
    -webkit-align-items: center;
    /* Safari6.1以降 */
    align-items: center;
    height: 12.5vw;
    padding-left: 4%;
  }
}

header .site_logo a img {
  width: min(5.20833vw,100px);
}

@media screen and (max-width: 768px) {
  header .site_logo a img {
    width: 13.02083vw;
  }
}

header nav {
  display: -webkit-box;
  /*Android4.3*/
  display: -ms-flexbox;
  /*IE10*/
  display: -webkit-flex;
  /*PC-Safari,iOS8.4*/
  display: flex;
}

@media screen and (max-width: 768px) {
  header nav {
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    text-align: center;
    padding-top: 10.41667vw;
  }
}

header nav img {
  width: min(2.08333vw,40px);
}

@media screen and (max-width: 768px) {
  header nav img {
    display: none;
  }
}

header nav ul {
  display: -webkit-box;
  /*Android4.3*/
  display: -ms-flexbox;
  /*IE10*/
  display: -webkit-flex;
  /*PC-Safari,iOS8.4*/
  display: flex;
  padding-top: min(0.20833vw,4px);
}

@media screen and (max-width: 768px) {
  header nav ul {
    display: block;
    padding-top: 0;
  }
}

@media screen and (max-width: 768px) {
  header nav ul.nav_menu {
    width: 80%;
    margin: 7.29167vw auto;
  }
}

header nav ul.nav_menu li:first-child {
  display: none;
}

@media screen and (max-width: 768px) {
  header nav ul.nav_menu li:first-child {
    display: block;
  }
}

header nav ul.nav_menu li a {
  display: block;
  font-size: min(0.9375vw,18px);
  font-weight: 400;
  margin-right: min(2.08333vw,40px);
  padding-bottom: min(0.41667vw,8px);
  position: relative;
}

@media screen and (max-width: 768px) {
  header nav ul.nav_menu li a {
    font-size: 4.16667vw;
    font-weight: 700;
    border-bottom: 0.26042vw solid #fff;
    margin-right: 0;
    padding: 5.20833vw 0;
  }
}

header nav ul.nav_menu li a.current {
  position: relative;
}

header nav ul.nav_menu li a.current::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: min(0.15625vw,3px);
  border-bottom: min(0.10417vw,2px) solid;
  -webkit-border-image: -webkit-gradient(linear, left top, right top, from(white), to(white));
  -webkit-border-image: -webkit-linear-gradient(left, white 0%, white 100%);
  -o-border-image: -o-linear-gradient(left, white 0%, white 100%);
  border-image: -webkit-gradient(linear, left top, right top, from(white), to(white));
  border-image: linear-gradient(90deg, white 0%, white 100%);
  border-image-slice: 1;
  bottom: min(-0.05208vw,-1px);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

@media screen and (max-width: 768px) {
  header nav ul.nav_menu li a.current::after {
    content: none;
  }
}

header nav ul.nav_menu li a::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: min(0.15625vw,3px);
  border-bottom: min(0.10417vw,2px) solid;
  -webkit-border-image: -webkit-gradient(linear, left top, right top, from(white), to(white));
  -webkit-border-image: -webkit-linear-gradient(left, white 0%, white 100%);
  -o-border-image: -o-linear-gradient(left, white 0%, white 100%);
  border-image: -webkit-gradient(linear, left top, right top, from(white), to(white));
  border-image: linear-gradient(90deg, white 0%, white 100%);
  border-image-slice: 1;
  bottom: min(-0.05208vw,-1px);
  -webkit-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

@media screen and (max-width: 768px) {
  header nav ul.nav_menu li a::after {
    content: none;
  }
}

header nav ul.nav_menu li a:hover::after {
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}

@media screen and (max-width: 768px) {
  header nav ul.nav_menu li a:hover::after {
    content: none;
  }
}

header .sp_menu {
  display: none;
}

@media screen and (max-width: 768px) {
  header .sp_menu {
    display: -webkit-box;
    /*Android4.3*/
    display: -ms-flexbox;
    /*IE10*/
    display: -webkit-flex;
    /*PC-Safari,iOS8.4*/
    display: flex;
    -ms-flex-align: center;
    /*IE10*/
    -webkit-box-align: center;
    /* Android4.3以下、Safari3.1〜6.0 */
    -webkit-align-items: center;
    /* Safari6.1以降 */
    align-items: center;
  }
  header .sp_menu .icon_insta {
    width: 6.25vw;
    position: absolute;
    top: 50%;
    right: 16.66667vw;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
  }
}

@media screen and (max-width: 768px) {
  .open nav {
    pointer-events: inherit;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    right: 0;
  }
}

@media screen and (max-width: 768px) {
  header nav {
    pointer-events: none;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    position: fixed;
    top: 0;
    right: -120%;
  }
}

/* -----------------------------------------------------
	menu
----------------------------------------------------- */
.menu {
  display: none;
}

@media screen and (max-width: 768px) {
  .menu {
    display: -webkit-box;
    /*Android4.3*/
    display: -ms-flexbox;
    /*IE10*/
    display: -webkit-flex;
    /*PC-Safari,iOS8.4*/
    display: flex;
    -ms-flex-pack: center;
    /*IE10*/
    -webkit-box-pack: center;
    /* Android4.3以下、Safari3.1〜6.0 */
    -webkit-justify-content: center;
    /* Safari6.1以降 */
    justify-content: center;
    -ms-flex-align: center;
    /*IE10*/
    -webkit-box-align: center;
    /* Android4.3以下、Safari3.1〜6.0 */
    -webkit-align-items: center;
    /* Safari6.1以降 */
    align-items: center;
    width: 12.5vw;
    height: 12.5vw;
    position: fixed;
    top: 0;
    right: 2%;
    z-index: 3;
    cursor: pointer;
  }
  .menu .menu-trigger, .menu .menu-trigger span {
    display: inline-block;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .menu .menu-trigger {
    position: relative;
    width: 5.20833vw;
    height: 3.90625vw;
    z-index: 4;
  }
  .menu .menu-trigger span {
    position: absolute;
    right: 0;
    width: 100%;
    height: 0.52083vw;
    background-color: #fff;
  }
  .menu .menu-trigger span:nth-of-type(1) {
    top: 0;
  }
  .menu .menu-trigger span:nth-of-type(2) {
    top: 1.69271vw;
  }
  .menu .menu-trigger span:nth-of-type(3) {
    bottom: 0;
  }
  .menu .menu-trigger span:nth-of-type(1) {
    -webkit-animation: menu-bar01 .75s forwards;
    animation: menu-bar01 .75s forwards;
  }
  @-webkit-keyframes menu-bar01 {
    0% {
      -webkit-transform: translateY(0.65104vw) rotate(45deg);
      transform: translateY(0.65104vw) rotate(45deg);
    }
    50% {
      -webkit-transform: translateY(0.65104vw) rotate(0);
      transform: translateY(0.65104vw) rotate(0);
    }
    100% {
      -webkit-transform: translateY(0) rotate(0);
      transform: translateY(0) rotate(0);
    }
  }
  @keyframes menu-bar01 {
    0% {
      -webkit-transform: translateY(0.65104vw) rotate(45deg);
      transform: translateY(0.65104vw) rotate(45deg);
    }
    50% {
      -webkit-transform: translateY(0.65104vw) rotate(0);
      transform: translateY(0.65104vw) rotate(0);
    }
    100% {
      -webkit-transform: translateY(0) rotate(0);
      transform: translateY(0) rotate(0);
    }
  }
  .menu .menu-trigger span:nth-of-type(2) {
    -webkit-transition: all .25s .25s;
    -o-transition: all .25s .25s;
    transition: all .25s .25s;
    opacity: 1;
  }
  .menu .menu-trigger span:nth-of-type(3) {
    -webkit-animation: menu-bar02 .75s forwards;
    animation: menu-bar02 .75s forwards;
  }
  @-webkit-keyframes menu-bar02 {
    0% {
      -webkit-transform: translateY(-0.65104vw) rotate(-45deg);
      transform: translateY(-0.65104vw) rotate(-45deg);
    }
    50% {
      -webkit-transform: translateY(-0.65104vw) rotate(0);
      transform: translateY(-0.65104vw) rotate(0);
    }
    100% {
      -webkit-transform: translateY(0) rotate(0);
      transform: translateY(0) rotate(0);
    }
  }
  @keyframes menu-bar02 {
    0% {
      -webkit-transform: translateY(-0.65104vw) rotate(-45deg);
      transform: translateY(-0.65104vw) rotate(-45deg);
    }
    50% {
      -webkit-transform: translateY(-0.65104vw) rotate(0);
      transform: translateY(-0.65104vw) rotate(0);
    }
    100% {
      -webkit-transform: translateY(0) rotate(0);
      transform: translateY(0) rotate(0);
    }
  }
  .menu .active span:nth-of-type(1) {
    -webkit-animation: active-menu-bar01 .75s forwards;
    animation: active-menu-bar01 .75s forwards;
    background-color: #fff;
  }
  @-webkit-keyframes active-menu-bar01 {
    0% {
      -webkit-transform: translateY(0) rotate(0);
      transform: translateY(0) rotate(0);
    }
    50% {
      -webkit-transform: translateY(1.69271vw) rotate(0);
      transform: translateY(1.69271vw) rotate(0);
    }
    100% {
      -webkit-transform: translateY(1.69271vw) rotate(45deg);
      transform: translateY(1.69271vw) rotate(45deg);
    }
  }
  @keyframes active-menu-bar01 {
    0% {
      -webkit-transform: translateY(0) rotate(0);
      transform: translateY(0) rotate(0);
    }
    50% {
      -webkit-transform: translateY(1.69271vw) rotate(0);
      transform: translateY(1.69271vw) rotate(0);
    }
    100% {
      -webkit-transform: translateY(1.69271vw) rotate(45deg);
      transform: translateY(1.69271vw) rotate(45deg);
    }
  }
  .menu .active span:nth-of-type(2) {
    opacity: 0;
  }
  .menu .active span:nth-of-type(3) {
    -webkit-animation: active-menu-bar03 .75s forwards;
    animation: active-menu-bar03 .75s forwards;
    background-color: #fff;
  }
  @-webkit-keyframes active-menu-bar03 {
    0% {
      -webkit-transform: translateY(0) rotate(0);
      transform: translateY(0) rotate(0);
    }
    50% {
      -webkit-transform: translateY(-1.69271vw) rotate(0);
      transform: translateY(-1.69271vw) rotate(0);
    }
    100% {
      -webkit-transform: translateY(-1.69271vw) rotate(-45deg);
      transform: translateY(-1.69271vw) rotate(-45deg);
    }
  }
  @keyframes active-menu-bar03 {
    0% {
      -webkit-transform: translateY(0) rotate(0);
      transform: translateY(0) rotate(0);
    }
    50% {
      -webkit-transform: translateY(-1.69271vw) rotate(0);
      transform: translateY(-1.69271vw) rotate(0);
    }
    100% {
      -webkit-transform: translateY(-1.69271vw) rotate(-45deg);
      transform: translateY(-1.69271vw) rotate(-45deg);
    }
  }
}

/* -----------------------------------------------------
	footer
----------------------------------------------------- */
footer {
  padding: min(2.08333vw,40px) 0 min(4.16667vw,80px);
  text-align: center;
  position: relative;
}

@media screen and (max-width: 768px) {
  footer {
    padding: 5.20833vw 0 10.41667vw;
  }
}

footer .contact_ttl {
  font-size: min(2.5vw,48px);
  margin-bottom: min(1.25vw,24px);
}

@media screen and (max-width: 768px) {
  footer .contact_ttl {
    font-size: 6.25vw;
    margin-bottom: 3.125vw;
  }
}

footer .text {
  font-weight: 400;
  line-height: 2.5;
}

@media screen and (max-width: 768px) {
  footer .text {
    line-height: 2;
  }
}

footer .copyright {
  font-size: min(0.83333vw,16px);
  font-weight: 400;
  margin-top: min(2.91667vw,56px);
}

@media screen and (max-width: 768px) {
  footer .copyright {
    font-size: 2.34375vw;
    margin-top: 7.29167vw;
  }
}

/* -----------------------------------------------------
	totop
----------------------------------------------------- */
#totop {
  position: absolute;
  right: min(-6.25vw,-120px);
  bottom: 0;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  #totop {
    right: 5.20833vw;
    top: -7.29167vw;
    bottom: inherit;
  }
}

#totop a {
  display: block;
}

#totop a img {
  width: min(6.25vw,120px);
}

@media screen and (max-width: 768px) {
  #totop a img {
    width: 12.5vw;
  }
}

#totop a:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

@media screen and (max-width: 768px) {
  #totop a:hover {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

/* -----------------------------------------------------
	br
----------------------------------------------------- */
br.pc {
  display: block;
}

@media screen and (max-width: 768px) {
  br.pc {
    display: none;
  }
}

br.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  br.sp {
    display: block;
  }
}

/* -----------------------------------------------------
  btn
----------------------------------------------------- */
.btn a {
  max-width: min(25vw,480px);
  margin: min(2.08333vw,40px) auto 0;
  display: block;
  width: 100%;
  font-size: min(1.45833vw,28px);
  line-height: min(4.16667vw,80px);
  color: #fff;
  overflow: hidden;
  border-radius: 50vh;
  position: relative;
}

@media screen and (max-width: 768px) {
  .btn a {
    max-width: 72.91667vw;
    margin-top: 5.20833vw;
    font-size: 4.16667vw;
    line-height: 12.5vw;
  }
}

.btn a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.5)));
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 100%);
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 100%);
  width: 100%;
  height: 100%;
  -webkit-transform: skewX(-30deg);
  -ms-transform: skewX(-30deg);
  transform: skewX(-30deg);
}

@media screen and (max-width: 768px) {
  .btn a::before {
    content: none;
  }
}

.btn a::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 50%;
  right: min(1.25vw,24px);
  width: min(0.83333vw,16px);
  height: min(0.83333vw,16px);
  border: min(0.10417vw,2px) solid #fff;
  border-left: 0;
  border-bottom: 0;
  -webkit-transform: translate(-25%, -50%) rotate(45deg);
  -ms-transform: translate(-25%, -50%) rotate(45deg);
  transform: translate(-25%, -50%) rotate(45deg);
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

@media screen and (max-width: 768px) {
  .btn a::after {
    right: 5.20833vw;
    width: 2.08333vw;
    height: 2.08333vw;
    border: 0.52083vw solid #fff;
    border-left: 0;
    border-bottom: 0;
  }
}

.btn a.red {
  background: #a70100;
  background: -webkit-gradient(linear, left bottom, left top, from(#a70100), to(#ed3b4b));
  background: -webkit-linear-gradient(bottom, #a70100 0%, #ed3b4b 100%);
  background: -o-linear-gradient(bottom, #a70100 0%, #ed3b4b 100%);
  background: linear-gradient(0deg, #a70100 0%, #ed3b4b 100%);
}

.btn a.blue {
  background: #2070C0;
  background: -webkit-gradient(linear, left bottom, left top, from(#2070c0), to(#20abc0));
  background: -webkit-linear-gradient(bottom, #2070c0 0%, #20abc0 100%);
  background: -o-linear-gradient(bottom, #2070c0 0%, #20abc0 100%);
  background: linear-gradient(0deg, #2070c0 0%, #20abc0 100%);
}

.btn a.orange {
  background: #FF7200;
  background: -webkit-gradient(linear, left bottom, left top, from(#ff7200), to(#ffcc00));
  background: -webkit-linear-gradient(bottom, #ff7200 0%, #ffcc00 100%);
  background: -o-linear-gradient(bottom, #ff7200 0%, #ffcc00 100%);
  background: linear-gradient(0deg, #ff7200 0%, #ffcc00 100%);
}

.btn a span.insta {
  padding-left: min(2.91667vw,56px);
  position: relative;
}

@media screen and (max-width: 768px) {
  .btn a span.insta {
    padding-left: 7.29167vw;
  }
}

.btn a span.insta::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: min(2.08333vw,40px);
  height: min(2.08333vw,40px);
  background: url(../img/icon_insta_wh.svg) no-repeat;
  background-size: contain;
}

@media screen and (max-width: 768px) {
  .btn a span.insta::after {
    width: 5.20833vw;
    height: 5.20833vw;
  }
}

.btn a:hover::before {
  -webkit-animation: shine .5s linear;
  animation: shine .5s linear;
}

@-webkit-keyframes shine {
  100% {
    left: 100%;
  }
}

@keyframes shine {
  100% {
    left: 100%;
  }
}

/* -----------------------------------------------------
	fl
----------------------------------------------------- */
.fl {
  position: fixed;
  right: min(-4.16667vw,-80px);
  bottom: min(6.25vw,120px);
  z-index: 3;
}

@media screen and (max-width: 768px) {
  .fl {
    right: -12.5vw;
    bottom: 10.41667vw;
  }
}

.fl a {
  display: block;
  -webkit-box-shadow: min(-0.26042vw,-5px) min(0.26042vw,5px) min(0.52083vw,10px) 0px rgba(10, 10, 10, 0.5);
  box-shadow: min(-0.26042vw,-5px) min(0.26042vw,5px) min(0.52083vw,10px) 0px rgba(10, 10, 10, 0.5);
  border-radius: min(1.04167vw,20px) 0 0 min(1.04167vw,20px);
}

@media screen and (max-width: 768px) {
  .fl a {
    -webkit-box-shadow: -0.65104vw 0.65104vw 1.30208vw 0px rgba(10, 10, 10, 0.5);
    box-shadow: -0.65104vw 0.65104vw 1.30208vw 0px rgba(10, 10, 10, 0.5);
    border-radius: 3.125vw 0 0 3.125vw;
  }
}

.fl a img {
  width: min(4.16667vw,80px);
}

@media screen and (max-width: 768px) {
  .fl a img {
    width: 12.5vw;
  }
}

.fl a:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

@media screen and (max-width: 768px) {
  .fl a:hover {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

section {
  text-align: center;
  padding: min(6.25vw,120px) 0;
}

@media screen and (max-width: 768px) {
  section {
    padding: 12.5vw 0;
  }
}

section .sec_ttl {
  font-size: min(2.5vw,48px);
  line-height: 1;
  margin-bottom: min(2.08333vw,40px);
}

@media screen and (max-width: 768px) {
  section .sec_ttl {
    font-size: 7.29167vw;
    margin-bottom: 7.29167vw;
  }
}

section .sec_sub_ttl {
  font-size: min(1.875vw,36px);
  line-height: 1;
  margin-bottom: min(1.25vw,24px);
}

@media screen and (max-width: 768px) {
  section .sec_sub_ttl {
    font-size: 5.20833vw;
    line-height: 1.5;
    margin-bottom: 3.125vw;
  }
}

section .sec_ttl_img {
  margin: min(0.41667vw,8px) 0 min(2.91667vw,56px);
}

@media screen and (max-width: 768px) {
  section .sec_ttl_img {
    margin: 2.08333vw 0 7.29167vw;
  }
}

section .sec_ttl_img img {
  width: auto;
  height: min(5.9375vw,114px);
}

@media screen and (max-width: 768px) {
  section .sec_ttl_img img {
    height: 12.5vw;
  }
}

section .sec_ttl_img span {
  display: block;
  font-size: min(1.45833vw,28px);
}

@media screen and (max-width: 768px) {
  section .sec_ttl_img span {
    font-size: 4.16667vw;
  }
}

@media screen and (max-width: 768px) {
  section .sec_ttl_img.program_ttl img {
    height: 26.95313vw;
  }
}

section .sec_ttl_img.virtual_ttl img {
  height: min(12.39583vw,238px);
}

@media screen and (max-width: 768px) {
  section .sec_ttl_img.virtual_ttl img {
    height: 24.73958vw;
  }
}

section .sec_ttl_img.supporter_ttl img {
  height: min(12.03125vw,231px);
}

@media screen and (max-width: 768px) {
  section .sec_ttl_img.supporter_ttl img {
    height: 36.45833vw;
  }
}

/* -----------------------------------------------------
  kv
----------------------------------------------------- */
.kv {
  margin-bottom: min(2.08333vw,40px);
}

@media screen and (max-width: 768px) {
  .kv {
    margin-bottom: 7.29167vw;
  }
}

.kv .kv_slide {
  display: none;
}

.kv .kv_slide.slick-initialized {
  display: block;
}

.kv .kv_slide .next-arrow, .kv .kv_slide .prev-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: min(2.08333vw,40px);
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .kv .kv_slide .next-arrow, .kv .kv_slide .prev-arrow {
    width: 5.20833vw;
  }
}

.kv .kv_slide .next-arrow:hover, .kv .kv_slide .prev-arrow:hover {
  cursor: pointer;
}

.kv .kv_slide .next-arrow {
  right: 2%;
}

.kv .kv_slide .prev-arrow {
  left: 2%;
}

.kv img {
  width: 100%;
}

/* -----------------------------------------------------
  anc
----------------------------------------------------- */
.anc {
  padding: min(4.16667vw,80px) 0;
}

@media screen and (max-width: 768px) {
  .anc {
    padding: 11.45833vw 0 12.5vw;
  }
}

.anc .item {
  display: -webkit-box;
  /*Android4.3*/
  display: -ms-flexbox;
  /*IE10*/
  display: -webkit-flex;
  /*PC-Safari,iOS8.4*/
  display: flex;
  -ms-flex-pack: justify;
  /*IE10*/
  -webkit-box-pack: justify;
  /* Android4.3以下、Safari3.1〜6.0 */
  -webkit-justify-content: space-between;
  /* Safari6.1以降 */
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  /*IE10*/
  -webkit-flex-wrap: wrap;
  /*PC-Safari,iOS8.4*/
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .anc .item {
    display: block;
  }
}

.anc .item li {
  width: 49%;
}

@media screen and (max-width: 768px) {
  .anc .item li {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .anc .item li + li {
    margin-top: 15.625vw;
  }
}

.anc .item li a {
  display: block;
  overflow: hidden;
  border-radius: min(5.20833vw,100px);
  position: relative;
  margin-top: min(2.91667vw,56px);
}

@media screen and (max-width: 768px) {
  .anc .item li a {
    border-radius: inherit;
  }
}

.anc .item li a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.5)));
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 100%);
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 100%);
  width: 100%;
  height: 100%;
  -webkit-transform: skewX(-30deg);
  -ms-transform: skewX(-30deg);
  transform: skewX(-30deg);
}

@media screen and (max-width: 768px) {
  .anc .item li a::before {
    content: none;
  }
}

.anc .item li a:hover::before {
  -webkit-animation: shine .5s linear;
  animation: shine .5s linear;
}

.anc .item li.closed {
  position: relative;
}

.anc .item li.closed::before {
  display: -webkit-box;
  /*Android4.3*/
  display: -ms-flexbox;
  /*IE10*/
  display: -webkit-flex;
  /*PC-Safari,iOS8.4*/
  display: flex;
  -ms-flex-align: center;
  /*IE10*/
  -webkit-box-align: center;
  /* Android4.3以下、Safari3.1〜6.0 */
  -webkit-align-items: center;
  /* Safari6.1以降 */
  align-items: center;
  -ms-flex-pack: center;
  /*IE10*/
  -webkit-box-pack: center;
  /* Android4.3以下、Safari3.1〜6.0 */
  -webkit-justify-content: center;
  /* Safari6.1以降 */
  justify-content: center;
  min-height: min(4.58333vw,88px);
  position: absolute;
  top: -3.2em;
  right: 0;
  left: 0;
  background: #fff;
  font-size: min(0.83333vw,16px);
  color: #c00000;
  padding: min(0.41667vw,8px) min(0.83333vw,16px);
}

@media screen and (max-width: 768px) {
  .anc .item li.closed::before {
    min-height: inherit;
    top: -8.33333vw;
    font-size: 2.47396vw;
    padding: 1.04167vw;
  }
}

.anc .item li:nth-child(1).closed::before {
  content: '1マイルランについては定員に達したため、エントリー受付は終了しました。';
}

@media screen and (max-width: 768px) {
  .anc .item li:nth-child(2) a {
    padding-top: 7.29167vw;
  }
}

.anc .item li:nth-child(2).closed::before {
  content: 'エントリー受付は終了しました\A※ハーフマラソンリレーエントリー済みの方は7/1〜21までに\Aバーチャルランを実施してください';
  white-space: pre;
}

/* -----------------------------------------------------
  about
----------------------------------------------------- */
.about {
  background: url(../img/sec_about_bg.png) center top/cover no-repeat;
}

@media screen and (max-width: 768px) {
  .about {
    background: url(../img/sp/sec_about_bg.png) center top/cover no-repeat;
  }
}

.about .text {
  font-weight: 400;
}

.about .wrap {
  background: rgba(0, 0, 0, 0.6);
  margin-top: min(1.25vw,24px);
  padding: min(2.91667vw,56px);
  border-radius: min(1.04167vw,20px);
  display: -webkit-box;
  /*Android4.3*/
  display: -ms-flexbox;
  /*IE10*/
  display: -webkit-flex;
  /*PC-Safari,iOS8.4*/
  display: flex;
  -ms-flex-pack: center;
  /*IE10*/
  -webkit-box-pack: center;
  /* Android4.3以下、Safari3.1〜6.0 */
  -webkit-justify-content: center;
  /* Safari6.1以降 */
  justify-content: center;
  -ms-flex-align: center;
  /*IE10*/
  -webkit-box-align: center;
  /* Android4.3以下、Safari3.1〜6.0 */
  -webkit-align-items: center;
  /* Safari6.1以降 */
  align-items: center;
}

@media screen and (max-width: 768px) {
  .about .wrap {
    margin-top: 3.125vw;
    padding: 5.20833vw;
    border-radius: 2.60417vw;
  }
}

.about .wrap .wrap_inner .overview {
  display: -webkit-box;
  /*Android4.3*/
  display: -ms-flexbox;
  /*IE10*/
  display: -webkit-flex;
  /*PC-Safari,iOS8.4*/
  display: flex;
  -ms-flex-pack: justify;
  /*IE10*/
  -webkit-box-pack: justify;
  /* Android4.3以下、Safari3.1〜6.0 */
  -webkit-justify-content: space-between;
  /* Safari6.1以降 */
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  /*IE10*/
  -webkit-flex-wrap: wrap;
  /*PC-Safari,iOS8.4*/
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .about .wrap .wrap_inner .overview {
    display: block;
  }
}

.about .wrap .wrap_inner .overview li {
  display: -webkit-box;
  /*Android4.3*/
  display: -ms-flexbox;
  /*IE10*/
  display: -webkit-flex;
  /*PC-Safari,iOS8.4*/
  display: flex;
  -ms-flex-align: center;
  /*IE10*/
  -webkit-box-align: center;
  /* Android4.3以下、Safari3.1〜6.0 */
  -webkit-align-items: center;
  /* Safari6.1以降 */
  align-items: center;
  width: 48%;
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  .about .wrap .wrap_inner .overview li {
    width: 100%;
  }
}

.about .wrap .wrap_inner .overview li.w100 {
  width: 100%;
}

.about .wrap .wrap_inner .overview li dl {
  display: -webkit-box;
  /*Android4.3*/
  display: -ms-flexbox;
  /*IE10*/
  display: -webkit-flex;
  /*PC-Safari,iOS8.4*/
  display: flex;
  -ms-flex-align: center;
  /*IE10*/
  -webkit-box-align: center;
  /* Android4.3以下、Safari3.1〜6.0 */
  -webkit-align-items: center;
  /* Safari6.1以降 */
  align-items: center;
}

.about .wrap .wrap_inner .overview li dl dt {
  display: -webkit-box;
  /*Android4.3*/
  display: -ms-flexbox;
  /*IE10*/
  display: -webkit-flex;
  /*PC-Safari,iOS8.4*/
  display: flex;
  -ms-flex-pack: center;
  /*IE10*/
  -webkit-box-pack: center;
  /* Android4.3以下、Safari3.1〜6.0 */
  -webkit-justify-content: center;
  /* Safari6.1以降 */
  justify-content: center;
  -ms-flex-align: center;
  /*IE10*/
  -webkit-box-align: center;
  /* Android4.3以下、Safari3.1〜6.0 */
  -webkit-align-items: center;
  /* Safari6.1以降 */
  align-items: center;
  width: min(8.33333vw,160px);
  background: #fff;
  font-weight: 700;
  color: #000;
  margin-right: min(1.25vw,24px);
  padding: min(0.20833vw,4px) 0;
}

@media screen and (max-width: 768px) {
  .about .wrap .wrap_inner .overview li dl dt {
    width: 20.83333vw;
    margin-right: 3.125vw;
    padding: 0.52083vw 0;
  }
}

@media screen and (max-width: 768px) {
  .about .wrap .wrap_inner .overview li dl dd {
    width: calc(100% - 20.83333vw - 3.125vw);
    font-size: 3.38542vw;
    text-align: left;
  }
}

.about .wrap .wrap_inner .overview li:nth-child(n+3) {
  margin-top: min(1.25vw,24px);
}

@media screen and (max-width: 768px) {
  .about .wrap .wrap_inner .overview li:nth-child(n+3) {
    margin-top: 3.125vw;
  }
}

@media screen and (max-width: 768px) {
  .about .wrap .wrap_inner .overview li + li {
    margin-top: 3.125vw;
  }
}

/* -----------------------------------------------------
  program
----------------------------------------------------- */
.program p {
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  .program .scroll {
    overflow: auto;
    padding-bottom: 7.29167vw;
  }
}

.program .scroll .img {
  width: min(58.33333vw,1120px);
  margin: min(2.91667vw,56px) auto 0;
}

@media screen and (max-width: 768px) {
  .program .scroll .img {
    width: 145.83333vw;
    margin-top: 7.29167vw;
  }
}

/* -----------------------------------------------------
  campaign
----------------------------------------------------- */
.campaign {
  position: relative;
}

.campaign::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #2070C0;
  background: -webkit-linear-gradient(320deg, #c00000 0%, black 100%);
  background: -o-linear-gradient(320deg, #c00000 0%, black 100%);
  background: linear-gradient(130deg, #c00000 0%, black 100%);
  opacity: .2;
}

.campaign::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: min(-4.16667vw,-80px);
  right: 0;
  width: min(27.76042vw,533px);
  height: 100vh;
  background: url(../img/bg01.png) right top/contain no-repeat;
  mix-blend-mode: screen;
}

@media screen and (max-width: 768px) {
  .campaign::after {
    top: 15.625vw;
    width: 30.85938vw;
    background: url(../img/sp/bg01.png) right top/contain no-repeat;
  }
}

.campaign .logo img {
  width: min(9.375vw,180px);
}

@media screen and (max-width: 768px) {
  .campaign .logo img {
    width: 23.4375vw;
  }
}

.campaign .lead .lead_ttl {
  font-size: min(1.97917vw,38px);
}

@media screen and (max-width: 768px) {
  .campaign .lead .lead_ttl {
    font-size: 4.6875vw;
  }
}

.campaign .lead .lead_ttl span {
  font-size: min(2.5vw,48px);
  line-height: 1.2;
}

@media screen and (max-width: 768px) {
  .campaign .lead .lead_ttl span {
    font-size: 6.25vw;
  }
}

.campaign .lead .lead_ttl + p {
  font-weight: 400;
  margin-top: min(1.25vw,24px);
}

@media screen and (max-width: 768px) {
  .campaign .lead .lead_ttl + p {
    margin-top: 5.20833vw;
  }
}

.campaign .wrap {
  margin-top: min(4.16667vw,80px);
}

@media screen and (max-width: 768px) {
  .campaign .wrap {
    margin-top: 10.41667vw;
  }
}

.campaign .wrap .text {
  font-weight: 400;
}

.campaign .wrap .text span {
  font-size: min(0.9375vw,18px);
  display: block;
}

@media screen and (max-width: 768px) {
  .campaign .wrap .text span {
    font-size: 2.60417vw;
  }
}

.campaign .wrap.flow .img {
  margin-top: min(1.25vw,24px);
}

@media screen and (max-width: 768px) {
  .campaign .wrap.flow .img {
    margin-top: 5.20833vw;
  }
}

.campaign .wrap.select .col2 {
  display: -webkit-box;
  /*Android4.3*/
  display: -ms-flexbox;
  /*IE10*/
  display: -webkit-flex;
  /*PC-Safari,iOS8.4*/
  display: flex;
  -ms-flex-pack: justify;
  /*IE10*/
  -webkit-box-pack: justify;
  /* Android4.3以下、Safari3.1〜6.0 */
  -webkit-justify-content: space-between;
  /* Safari6.1以降 */
  justify-content: space-between;
  margin-top: min(5vw,96px);
}

@media screen and (max-width: 768px) {
  .campaign .wrap.select .col2 {
    display: block;
    margin-top: 15.625vw;
  }
}

.campaign .wrap.select .col2 li {
  width: 48%;
  background: #fff;
  color: #000;
  border-radius: min(1.04167vw,20px);
  padding: min(4.16667vw,80px) min(2.08333vw,40px) min(2.91667vw,56px);
  position: relative;
}

@media screen and (max-width: 768px) {
  .campaign .wrap.select .col2 li {
    width: 78.125vw;
    margin: auto;
    border-radius: 2.60417vw;
    padding: 10.41667vw 6.25vw 6.25vw;
  }
}

.campaign .wrap.select .col2 li .icon {
  position: absolute;
  top: -2.5em;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: min(5.20833vw,100px);
}

@media screen and (max-width: 768px) {
  .campaign .wrap.select .col2 li .icon {
    top: -6.51042vw;
    width: 13.02083vw;
  }
}

.campaign .wrap.select .col2 li .col_ttl {
  display: -webkit-box;
  /*Android4.3*/
  display: -ms-flexbox;
  /*IE10*/
  display: -webkit-flex;
  /*PC-Safari,iOS8.4*/
  display: flex;
  -ms-flex-pack: center;
  /*IE10*/
  -webkit-box-pack: center;
  /* Android4.3以下、Safari3.1〜6.0 */
  -webkit-justify-content: center;
  /* Safari6.1以降 */
  justify-content: center;
  -ms-flex-align: center;
  /*IE10*/
  -webkit-box-align: center;
  /* Android4.3以下、Safari3.1〜6.0 */
  -webkit-align-items: center;
  /* Safari6.1以降 */
  align-items: center;
  font-size: min(1.66667vw,32px);
}

@media screen and (max-width: 768px) {
  .campaign .wrap.select .col2 li .col_ttl {
    font-size: 4.16667vw;
  }
}

.campaign .wrap.select .col2 li .col_ttl span.red {
  color: #c00000;
}

.campaign .wrap.select .col2 li .img {
  margin-top: min(2.08333vw,40px);
}

@media screen and (max-width: 768px) {
  .campaign .wrap.select .col2 li .img {
    margin-top: 3.125vw;
  }
}

@media screen and (max-width: 768px) {
  .campaign .wrap.select .col2 li + li {
    margin-top: 11.45833vw;
  }
}

.campaign .wrap.method {
  border-top: min(0.05208vw,1px) solid #fff;
  padding-top: min(4.16667vw,80px);
}

@media screen and (max-width: 768px) {
  .campaign .wrap.method {
    border-top: 0.26042vw solid #fff;
    padding-top: 10.41667vw;
  }
}

.campaign .wrap.method .item li {
  background: #fff;
  color: #000;
  border-radius: min(1.04167vw,20px);
  margin-top: min(5vw,96px);
  padding: min(4.16667vw,80px) min(2.91667vw,56px) min(2.91667vw,56px);
  position: relative;
}

@media screen and (max-width: 768px) {
  .campaign .wrap.method .item li {
    border-radius: 2.60417vw;
    margin-top: 15.625vw;
    padding: 14.58333vw 5.20833vw 7.29167vw;
  }
}

.campaign .wrap.method .item li .step_ttl {
  position: absolute;
  top: -1.5em;
  right: 0;
  left: 0;
  background: #000;
  font-size: min(1.45833vw,28px);
  color: #fff;
  line-height: min(4.16667vw,80px);
  border-radius: 50vh;
  border: min(0.10417vw,2px) solid #fff;
  margin: auto;
  padding: 0 min(2.91667vw,56px);
  display: table;
}

@media screen and (max-width: 768px) {
  .campaign .wrap.method .item li .step_ttl {
    top: -9.11458vw;
    font-size: 3.38542vw;
    height: 18.22917vw;
    line-height: inherit;
    border: 0.26042vw solid #fff;
    padding: 0 8.33333vw;
    width: 96%;
    margin: 0 auto;
  }
}

.campaign .wrap.method .item li .step_ttl b {
  font-size: min(2.08333vw,40px);
}

@media screen and (max-width: 768px) {
  .campaign .wrap.method .item li .step_ttl b {
    font-size: 4.6875vw;
  }
}

.campaign .wrap.method .item li .step_ttl span {
  font-style: normal;
  color: #c00000;
  border-right: min(0.10417vw,2px) solid #fff;
  margin-right: min(1.25vw,24px);
  padding-right: min(1.25vw,24px);
}

@media screen and (max-width: 768px) {
  .campaign .wrap.method .item li .step_ttl span {
    border-bottom: 0.26042vw solid #fff;
    border-right: none;
    margin: 0 auto 1.04167vw;
    padding-right: 0;
    padding-bottom: 1.04167vw;
    display: table;
  }
}

.campaign .wrap.method .item li p {
  font-size: min(1.25vw,24px);
}

@media screen and (max-width: 768px) {
  .campaign .wrap.method .item li p {
    font-size: 4.16667vw;
  }
}

.campaign .wrap.method .item li p span {
  font-size: min(1.04167vw,20px);
  font-weight: 400;
  display: block;
  margin-top: min(0.41667vw,8px);
}

@media screen and (max-width: 768px) {
  .campaign .wrap.method .item li p span {
    font-size: 3.125vw;
    margin-top: 3.125vw;
  }
}

.campaign .wrap.method .item li p a {
  text-decoration: underline;
}

.campaign .wrap.method .item li .step {
  display: -webkit-box;
  /*Android4.3*/
  display: -ms-flexbox;
  /*IE10*/
  display: -webkit-flex;
  /*PC-Safari,iOS8.4*/
  display: flex;
  -ms-flex-pack: center;
  /*IE10*/
  -webkit-box-pack: center;
  /* Android4.3以下、Safari3.1〜6.0 */
  -webkit-justify-content: center;
  /* Safari6.1以降 */
  justify-content: center;
  -ms-flex-wrap: wrap;
  /*IE10*/
  -webkit-flex-wrap: wrap;
  /*PC-Safari,iOS8.4*/
  flex-wrap: wrap;
  margin-top: min(2.91667vw,56px);
}

@media screen and (max-width: 768px) {
  .campaign .wrap.method .item li .step {
    display: block;
    margin-top: 5.20833vw;
  }
}

.campaign .wrap.method .item li .step li {
  margin: 0;
  padding: 0;
  position: relative;
}

.campaign .wrap.method .item li .step li:not(:first-child)::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 30%;
  left: -1.6em;
  -webkit-transform: translateY(-30%);
  -ms-transform: translateY(-30%);
  transform: translateY(-30%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: min(1.30208vw,25px) 0px min(1.30208vw,25px) min(1.04167vw,20px);
  border-color: transparent transparent transparent #b5b5b6;
}

@media screen and (max-width: 768px) {
  .campaign .wrap.method .item li .step li:not(:first-child)::after {
    top: -7.29167vw;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    margin: auto;
    border-width: 2.60417vw 3.25521vw 0 3.25521vw;
    border-color: #b5b5b6 transparent transparent transparent;
  }
}

.campaign .wrap.method .item li .step li .img {
  margin-bottom: min(0.83333vw,16px);
  text-align: center;
}

@media screen and (max-width: 768px) {
  .campaign .wrap.method .item li .step li .img {
    margin-bottom: 2.08333vw;
  }
}

.campaign .wrap.method .item li .step li p {
  font-size: min(0.83333vw,16px);
  font-weight: 400;
  text-align: left;
  color: #000;
  padding: 0 min(0.83333vw,16px);
}

@media screen and (max-width: 768px) {
  .campaign .wrap.method .item li .step li p {
    font-size: 3.64583vw;
    padding: 0;
  }
}

.campaign .wrap.method .item li .step li .note p {
  text-indent: -1em;
  margin-left: 1em;
}

@media screen and (max-width: 768px) {
  .campaign .wrap.method .item li .step li .note p {
    font-size: 3.125vw;
  }
}

@media screen and (max-width: 768px) {
  .campaign .wrap.method .item li .step li + li {
    margin-top: 12.5vw;
  }
}

.campaign .wrap.method .item li .step._01 {
  -ms-flex-pack: justify;
  /*IE10*/
  -webkit-box-pack: justify;
  /* Android4.3以下、Safari3.1〜6.0 */
  -webkit-justify-content: space-between;
  /* Safari6.1以降 */
  justify-content: space-between;
}

.campaign .wrap.method .item li .step._01 li {
  width: 16%;
  padding-top: min(1.66667vw,32px);
}

@media screen and (max-width: 768px) {
  .campaign .wrap.method .item li .step._01 li {
    width: 100%;
    padding-top: 0;
  }
}

.campaign .wrap.method .item li .step._01 li:nth-child(3) {
  width: 18%;
  border: min(0.05208vw,1px) solid #c00000;
  border-radius: 0;
  padding: min(1.66667vw,32px) min(0.41667vw,8px) min(0.83333vw,16px);
  position: relative;
}

@media screen and (max-width: 768px) {
  .campaign .wrap.method .item li .step._01 li:nth-child(3) {
    width: 100%;
    border: 0.52083vw solid #c00000;
    padding: 7.29167vw 0 3.125vw;
  }
}

.campaign .wrap.method .item li .step._01 li:nth-child(3)::before {
  content: '重要';
  display: inline-block;
  position: absolute;
  top: -0.8vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background: #c00000;
  color: #fff;
  padding: min(0.10417vw,2px) min(1.25vw,24px);
  border-radius: 50vh;
}

@media screen and (max-width: 768px) {
  .campaign .wrap.method .item li .step._01 li:nth-child(3)::before {
    top: -3.125vw;
    padding: 1.04167vw 5.20833vw;
  }
}

.campaign .wrap.method .item li .step._01 li img {
  max-height: min(8.33333vw,160px);
}

@media screen and (max-width: 768px) {
  .campaign .wrap.method .item li .step._01 li img {
    width: 26.04167vw;
    max-height: inherit;
  }
}

.campaign .wrap.method .item li .step._01 li p {
  font-size: min(0.9375vw,18px);
  color: #c00000;
  font-weight: 700;
  text-align: center;
  padding: 0;
}

@media screen and (max-width: 768px) {
  .campaign .wrap.method .item li .step._01 li p {
    font-size: 4.16667vw;
  }
}

.campaign .wrap.method .item li .step._01 li p span {
  font-size: min(0.83333vw,16px);
  color: #000;
  font-weight: 400;
  display: block;
}

@media screen and (max-width: 768px) {
  .campaign .wrap.method .item li .step._01 li p span {
    font-size: 3.64583vw;
  }
}

.campaign .wrap.method .item li .step._02 li .ttl {
  font-size: min(1.25vw,24px);
  color: #c00000;
  font-weight: 700;
  text-align: center !important;
  letter-spacing: 0;
  margin: 0 0 min(0.41667vw,8px);
  padding: 0;
}

@media screen and (max-width: 768px) {
  .campaign .wrap.method .item li .step._02 li .ttl {
    font-size: 4.16667vw;
    margin-bottom: 2.08333vw;
  }
}

.campaign .wrap.method .item li .step._02 li .ttl span {
  width: min(1.66667vw,32px);
  line-height: min(1.66667vw,32px);
  background: #c00000;
  color: #fff;
  font-weight: 700;
  border-radius: 50vh;
  display: inline-block;
  margin-right: min(0.41667vw,8px);
}

@media screen and (max-width: 768px) {
  .campaign .wrap.method .item li .step._02 li .ttl span {
    width: 5.20833vw;
    line-height: 5.20833vw;
    margin-right: 2.08333vw;
  }
}

.campaign .wrap.method .item li .step._02 li:not(:nth-child(3n)) {
  margin-right: 4%;
}

@media screen and (max-width: 768px) {
  .campaign .wrap.method .item li .step._02 li:not(:nth-child(3n)) {
    margin-right: 0;
  }
}

.campaign .wrap.method .item li .step._02 li:last-child {
  margin-top: 4%;
}

@media screen and (max-width: 768px) {
  .campaign .wrap.method .item li .step._02 li:last-child {
    margin-top: 12.5vw;
  }
}

@media screen and (max-width: 768px) {
  .campaign .wrap.method .item li .step._02 li:last-child img {
    width: 65.10417vw;
    max-height: inherit;
  }
}

.campaign .wrap.method .item li .step._02 li:nth-child(1), .campaign .wrap.method .item li .step._02 li:nth-child(3) {
  width: 26%;
}

@media screen and (max-width: 768px) {
  .campaign .wrap.method .item li .step._02 li:nth-child(1), .campaign .wrap.method .item li .step._02 li:nth-child(3) {
    width: 100%;
  }
}

.campaign .wrap.method .item li .step._02 li:nth-child(2) {
  width: 40%;
}

@media screen and (max-width: 768px) {
  .campaign .wrap.method .item li .step._02 li:nth-child(2) {
    width: 100%;
  }
}

.campaign .wrap.method .item li .step._02 li img {
  width: auto;
  max-height: min(9.375vw,180px);
}

@media screen and (max-width: 768px) {
  .campaign .wrap.method .item li .step._02 li img {
    max-height: 36.45833vw;
  }
}

.campaign .wrap.method .btn {
  margin-top: min(2.08333vw,40px);
}

@media screen and (max-width: 768px) {
  .campaign .wrap.method .btn {
    margin-top: 5.20833vw;
  }
}

.campaign .wrap.method .btn p {
  color: #c00000;
}

.campaign .wrap.method .btn a {
  margin-top: min(0.83333vw,16px);
}

@media screen and (max-width: 768px) {
  .campaign .wrap.method .btn a {
    margin-top: 2.08333vw;
  }
}

.campaign .wrap.method .cap {
  display: inline-block;
  text-align: center;
  margin-top: min(0.83333vw,16px);
}

@media screen and (max-width: 768px) {
  .campaign .wrap.method .cap {
    margin-top: 2.08333vw;
  }
}

.campaign .wrap.method .cap p {
  font-size: min(0.83333vw,16px) !important;
  font-weight: 400;
  text-align: left;
  text-indent: -1em;
  margin-left: 1em;
}

@media screen and (max-width: 768px) {
  .campaign .wrap.method .cap p {
    font-size: 2.60417vw !important;
  }
}

.campaign .wrap.method .cap.closed p {
  font-weight: 700;
  color: #c00000;
}

.campaign .wrap.method .cap.closed p span {
  text-align: center;
  font-weight: 700;
}

.campaign .wrap.guideline {
  border-top: min(0.05208vw,1px) solid #fff;
  padding-top: min(4.16667vw,80px);
}

@media screen and (max-width: 768px) {
  .campaign .wrap.guideline {
    border-top: 0.26042vw solid #fff;
    padding-top: 10.41667vw;
  }
}

.campaign .wrap.guideline .wrap {
  text-align: left;
  display: inline-block;
  margin-top: 0;
}

.campaign .wrap.guideline .wrap dl {
  display: -webkit-box;
  /*Android4.3*/
  display: -ms-flexbox;
  /*IE10*/
  display: -webkit-flex;
  /*PC-Safari,iOS8.4*/
  display: flex;
}

.campaign .wrap.guideline .wrap dl dt {
  display: -webkit-box;
  /*Android4.3*/
  display: -ms-flexbox;
  /*IE10*/
  display: -webkit-flex;
  /*PC-Safari,iOS8.4*/
  display: flex;
  -ms-flex-pack: center;
  /*IE10*/
  -webkit-box-pack: center;
  /* Android4.3以下、Safari3.1〜6.0 */
  -webkit-justify-content: center;
  /* Safari6.1以降 */
  justify-content: center;
  -ms-flex-align: center;
  /*IE10*/
  -webkit-box-align: center;
  /* Android4.3以下、Safari3.1〜6.0 */
  -webkit-align-items: center;
  /* Safari6.1以降 */
  align-items: center;
  width: min(9.375vw,180px);
  background: #fff;
  font-size: min(1.04167vw,20px);
  color: #000;
  line-height: min(2.08333vw,40px);
  text-align: center;
  margin-right: min(1.25vw,24px);
}

@media screen and (max-width: 768px) {
  .campaign .wrap.guideline .wrap dl dt {
    width: 28.64583vw;
    font-size: 3.64583vw;
    line-height: 1.5;
    margin-right: 3.125vw;
  }
}

.campaign .wrap.guideline .wrap dl dd {
  font-weight: 400;
  line-height: min(2.08333vw,40px);
}

@media screen and (max-width: 768px) {
  .campaign .wrap.guideline .wrap dl dd {
    width: calc(100% - 28.64583vw - 3.125vw);
    line-height: 7.29167vw;
  }
}

.campaign .wrap.guideline .wrap dl dd ul li {
  text-indent: -1em;
  margin-left: 1em;
}

.campaign .wrap.guideline .wrap dl dd p {
  font-size: min(0.83333vw,16px);
  line-height: 1.5;
  text-indent: -1em;
  margin-left: 1em;
}

@media screen and (max-width: 768px) {
  .campaign .wrap.guideline .wrap dl dd p {
    font-size: 3.125vw;
  }
}

.campaign .wrap.guideline .wrap dl + dl {
  margin-top: min(0.83333vw,16px);
}

@media screen and (max-width: 768px) {
  .campaign .wrap.guideline .wrap dl + dl {
    margin-top: 3.125vw;
  }
}

/* -----------------------------------------------------
  enjoy
----------------------------------------------------- */
.enjoy {
  position: relative;
}

.enjoy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FFC000;
  background: -webkit-linear-gradient(45deg, black 0%, #ffc000 100%);
  background: -o-linear-gradient(45deg, black 0%, #ffc000 100%);
  background: linear-gradient(45deg, black 0%, #ffc000 100%);
  opacity: .2;
}

.enjoy::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: min(-4.16667vw,-80px);
  left: 0;
  width: min(34.375vw,660px);
  height: 100vh;
  background: url(../img/bg02.png) left top/contain no-repeat;
  mix-blend-mode: screen;
}

@media screen and (max-width: 768px) {
  .enjoy::after {
    top: 7.29167vw;
    width: 45.57292vw;
    background: url(../img/sp/bg02.png) left top/contain no-repeat;
  }
}

.enjoy .logo img {
  width: min(9.01042vw,173px);
}

@media screen and (max-width: 768px) {
  .enjoy .logo img {
    width: 23.4375vw;
  }
}

.enjoy .lead {
  margin-top: min(1.25vw,24px);
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  .enjoy .lead {
    margin-top: 3.125vw;
  }
}

.enjoy .lead .lead_ttl {
  font-size: min(1.66667vw,32px);
  font-weight: 700;
  margin-bottom: min(1.25vw,24px);
}

@media screen and (max-width: 768px) {
  .enjoy .lead .lead_ttl {
    font-size: 4.16667vw;
    margin-bottom: 3.125vw;
  }
}

.enjoy .lead .lead_ttl span {
  font-size: min(2.5vw,48px);
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .enjoy .lead .lead_ttl span {
    font-size: 6.25vw;
  }
  .enjoy .lead .lead_ttl span.mile, .enjoy .lead .lead_ttl span.half {
    font-size: 8.33333vw;
  }
  .enjoy .lead .lead_ttl span.guinness {
    font-size: 5.46875vw;
  }
}

.enjoy .lead .lead_ttl + p {
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  .enjoy .lead .lead_ttl + p {
    font-size: 4.16667vw;
  }
}

.enjoy .lead .lead_ttl + p span {
  font-size: min(0.83333vw,16px);
  margin-bottom: min(1.25vw,24px);
  display: block;
}

@media screen and (max-width: 768px) {
  .enjoy .lead .lead_ttl + p span {
    font-size: 2.60417vw;
    margin-bottom: 5.20833vw;
  }
}

.enjoy .lead .type {
  display: inline-block;
  margin-top: min(0.41667vw,8px);
  padding: min(0.20833vw,4px) min(1.25vw,24px);
  border: min(0.05208vw,1px) solid #fff;
  border-radius: 50vh;
}

@media screen and (max-width: 768px) {
  .enjoy .lead .type {
    margin-top: 1.04167vw;
    padding: 0.52083vw 5.20833vw;
    border: 0.26042vw solid #fff;
    font-size: 4.16667vw;
  }
}

.enjoy .lead .type + p {
  margin-top: min(1.25vw,24px);
}

@media screen and (max-width: 768px) {
  .enjoy .lead .type + p {
    margin-top: 3.125vw;
    font-size: 4.16667vw;
  }
}

.enjoy .lead .detail {
  margin-top: min(1.25vw,24px);
}

@media screen and (max-width: 768px) {
  .enjoy .lead .detail {
    margin-top: 5.20833vw;
  }
}

.enjoy .lead .detail .day {
  text-align: center;
}

.enjoy .lead .detail .capacity {
  text-align: center;
  margin-top: min(1.25vw,24px);
}

@media screen and (max-width: 768px) {
  .enjoy .lead .detail .capacity {
    margin-top: 5.20833vw;
  }
}

.enjoy .lead .detail .eligible {
  margin-top: min(1.25vw,24px);
}

@media screen and (max-width: 768px) {
  .enjoy .lead .detail .eligible {
    margin-top: 5.20833vw;
  }
}

.enjoy .lead .detail .eligible .note {
  text-align: left;
}

.enjoy .lead .detail .eligible .note li {
  width: 100%;
  text-indent: -1em;
  margin-left: 1em;
  border: none;
  margin-top: 0;
  padding-top: 0;
}

.enjoy .cap {
  font-size: min(0.83333vw,16px);
  font-weight: 400;
  margin-top: min(0.83333vw,16px);
}

@media screen and (max-width: 768px) {
  .enjoy .cap {
    font-size: 2.60417vw;
    margin-top: 2.08333vw;
  }
}

.enjoy .closed {
  display: inline-block;
  background: #fff;
  font-size: min(0.83333vw,16px);
  color: #c00000;
  margin-top: min(0.83333vw,16px);
  padding: min(0.41667vw,8px);
}

@media screen and (max-width: 768px) {
  .enjoy .closed {
    font-size: 2.34375vw;
    margin-top: 2.08333vw;
    padding: 1.04167vw 2.08333vw;
  }
}

.enjoy .col2 {
  border-bottom: min(0.10417vw,2px) solid #fff;
  margin: min(4.16667vw,80px) 0;
  padding-bottom: min(4.16667vw,80px);
  display: -webkit-box;
  /*Android4.3*/
  display: -ms-flexbox;
  /*IE10*/
  display: -webkit-flex;
  /*PC-Safari,iOS8.4*/
  display: flex;
  -ms-flex-pack: justify;
  /*IE10*/
  -webkit-box-pack: justify;
  /* Android4.3以下、Safari3.1〜6.0 */
  -webkit-justify-content: space-between;
  /* Safari6.1以降 */
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .enjoy .col2 {
    border-bottom: 0.26042vw solid #fff;
    margin: 7.29167vw 0 10.41667vw;
    padding-bottom: 10.41667vw;
    display: block;
  }
}

.enjoy .col2 li {
  width: 50%;
  padding: 0 2%;
}

@media screen and (max-width: 768px) {
  .enjoy .col2 li {
    width: 100%;
    padding: 0;
  }
}

.enjoy .col2 li + li {
  border-left: min(0.10417vw,2px) solid #fff;
}

@media screen and (max-width: 768px) {
  .enjoy .col2 li + li {
    border-top: 0.26042vw solid #fff;
    border-left: none;
    margin-top: 10.41667vw;
    padding-top: 10.41667vw;
  }
}

/* -----------------------------------------------------
  art_pj
----------------------------------------------------- */
.art_pj {
  background: #262626;
}

@media screen and (max-width: 768px) {
  .art_pj .sec_ttl {
    line-height: 1.3;
  }
}

.art_pj .text {
  font-weight: 400;
}

.art_pj .text span {
  display: block;
  margin-top: min(0.83333vw,16px);
  font-size: min(0.83333vw,16px);
}

@media screen and (max-width: 768px) {
  .art_pj .text span {
    margin-top: 2.08333vw;
    font-size: 2.60417vw;
  }
}

.art_pj .col2 {
  display: -webkit-box;
  /*Android4.3*/
  display: -ms-flexbox;
  /*IE10*/
  display: -webkit-flex;
  /*PC-Safari,iOS8.4*/
  display: flex;
  -ms-flex-pack: justify;
  /*IE10*/
  -webkit-box-pack: justify;
  /* Android4.3以下、Safari3.1〜6.0 */
  -webkit-justify-content: space-between;
  /* Safari6.1以降 */
  justify-content: space-between;
  margin-top: min(2.91667vw,56px);
}

@media screen and (max-width: 768px) {
  .art_pj .col2 {
    display: block;
    margin-top: 7.29167vw;
  }
}

.art_pj .col2 li {
  width: 49%;
}

@media screen and (max-width: 768px) {
  .art_pj .col2 li {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .art_pj .col2 li + li {
    margin-top: 3.125vw;
  }
}

.art_pj .flow {
  display: -webkit-box;
  /*Android4.3*/
  display: -ms-flexbox;
  /*IE10*/
  display: -webkit-flex;
  /*PC-Safari,iOS8.4*/
  display: flex;
  -ms-flex-pack: justify;
  /*IE10*/
  -webkit-box-pack: justify;
  /* Android4.3以下、Safari3.1〜6.0 */
  -webkit-justify-content: space-between;
  /* Safari6.1以降 */
  justify-content: space-between;
  margin-top: min(2.08333vw,40px);
  padding: min(2.5vw,48px);
  background: #fff;
  border-radius: min(1.04167vw,20px);
  font-size: min(0.83333vw,16px);
  font-weight: 400;
  color: #000;
}

@media screen and (max-width: 768px) {
  .art_pj .flow {
    display: block;
    margin-top: 7.29167vw;
    padding: 7.29167vw 5.20833vw;
    border-radius: 2.60417vw;
    font-size: 3.64583vw;
  }
}

.art_pj .flow li {
  width: 22%;
  position: relative;
}

@media screen and (max-width: 768px) {
  .art_pj .flow li {
    width: 100%;
  }
}

.art_pj .flow li:not(:last-child)::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 40%;
  right: -2em;
  -webkit-transform: translateY(-40%);
  -ms-transform: translateY(-40%);
  transform: translateY(-40%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: min(1.30208vw,25px) 0px min(1.30208vw,25px) min(1.04167vw,20px);
  border-color: transparent transparent transparent #b5b5b6;
}

@media screen and (max-width: 768px) {
  .art_pj .flow li:not(:last-child)::after {
    top: inherit;
    right: 0;
    bottom: -7.29167vw;
    left: 0;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    margin: auto;
    border-width: 2.60417vw 3.25521vw 0 3.25521vw;
    border-color: #b5b5b6 transparent transparent transparent;
  }
}

@media screen and (max-width: 768px) {
  .art_pj .flow li:not(:last-child) {
    margin-bottom: 12.5vw;
  }
}

@media screen and (max-width: 768px) {
  .art_pj .flow li .img {
    width: 41.66667vw;
    margin: 0 auto;
  }
}

.art_pj .flow li p {
  margin-top: min(0.83333vw,16px);
}

@media screen and (max-width: 768px) {
  .art_pj .flow li p {
    margin-top: 2.08333vw;
  }
}

/* -----------------------------------------------------
  supporter
----------------------------------------------------- */
.supporter {
  position: relative;
}

.supporter::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: min(-4.16667vw,-80px);
  right: 0;
  width: min(26.66667vw,512px);
  height: 100vh;
  background: url(../img/bg03.png) right top/contain no-repeat;
  mix-blend-mode: screen;
}

@media screen and (max-width: 768px) {
  .supporter::after {
    top: 0;
    width: 34.76563vw;
    background: url(../img/sp/bg03.png) left top/contain no-repeat;
  }
}

.supporter .text {
  font-weight: 400;
}

.supporter .col3 {
  display: -webkit-box;
  /*Android4.3*/
  display: -ms-flexbox;
  /*IE10*/
  display: -webkit-flex;
  /*PC-Safari,iOS8.4*/
  display: flex;
  -ms-flex-pack: center;
  /*IE10*/
  -webkit-box-pack: center;
  /* Android4.3以下、Safari3.1〜6.0 */
  -webkit-justify-content: center;
  /* Safari6.1以降 */
  justify-content: center;
  -ms-flex-wrap: wrap;
  /*IE10*/
  -webkit-flex-wrap: wrap;
  /*PC-Safari,iOS8.4*/
  flex-wrap: wrap;
  margin-top: min(2.91667vw,56px);
}

@media screen and (max-width: 768px) {
  .supporter .col3 {
    -ms-flex-pack: justify;
    /*IE10*/
    -webkit-box-pack: justify;
    /* Android4.3以下、Safari3.1〜6.0 */
    -webkit-justify-content: space-between;
    /* Safari6.1以降 */
    justify-content: space-between;
    margin-top: 7.29167vw;
  }
}

.supporter .col3 li {
  width: 31%;
}

@media screen and (max-width: 768px) {
  .supporter .col3 li {
    width: 48%;
  }
}

.supporter .col3 li .detail {
  background: #fff;
  border-radius: 0 0 min(1.04167vw,20px) min(1.04167vw,20px);
  padding: min(2.08333vw,40px) min(1.25vw,24px) min(1.25vw,24px);
  color: #000;
}

@media screen and (max-width: 768px) {
  .supporter .col3 li .detail {
    border-radius: 0 0 2.60417vw 2.60417vw;
    padding: 5.20833vw 3.125vw 3.125vw;
  }
}

.supporter .col3 li .detail .name {
  font-size: min(1.875vw,36px);
}

@media screen and (max-width: 768px) {
  .supporter .col3 li .detail .name {
    font-size: 4.6875vw;
  }
}

.supporter .col3 li .detail .name ruby {
  ruby-position: under;
}

.supporter .col3 li .detail .name ruby rt {
  margin-top: min(0.10417vw,2px);
}

.supporter .col3 li .detail .btn a {
  margin-top: min(1.66667vw,32px);
}

@media screen and (max-width: 768px) {
  .supporter .col3 li .detail .btn a {
    margin-top: 3.125vw;
  }
}

@media screen and (max-width: 768px) {
  .supporter .col3 li .detail .btn a::after {
    right: 3.125vw;
  }
}

.supporter .col3 li:not(:nth-child(3n)) {
  margin-right: 3%;
}

@media screen and (max-width: 768px) {
  .supporter .col3 li:not(:nth-child(3n)) {
    margin-right: 0;
  }
}

.supporter .col3 li:nth-child(n+4) {
  margin-top: 3%;
}

@media screen and (max-width: 768px) {
  .supporter .col3 li:nth-child(n+4) {
    margin-top: 4%;
  }
}

@media screen and (max-width: 768px) {
  .supporter .col3 li:nth-child(n+3) {
    margin-top: 4%;
  }
}

.supporter .btn a {
  font-size: min(1.14583vw,22px);
}

@media screen and (max-width: 768px) {
  .supporter .btn a {
    font-size: 3.125vw;
    line-height: 1.2;
    padding: 2.08333vw 0;
  }
}

.supporter .bnr {
  border-top: min(0.05208vw,1px) solid #595757;
  margin-top: min(4.16667vw,80px);
  padding-top: min(4.16667vw,80px);
}

@media screen and (max-width: 768px) {
  .supporter .bnr {
    border-top: 0.26042vw solid #595757;
    margin-top: 10.41667vw;
    padding-top: 10.41667vw;
  }
}

.supporter .bnr a {
  display: block;
  width: min(33.85417vw,650px);
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .supporter .bnr a {
    width: 100%;
    padding: 0 5.20833vw;
  }
}

.supporter .bnr a:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

@media screen and (max-width: 768px) {
  .supporter .bnr a:hover {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

/* -----------------------------------------------------
  link
----------------------------------------------------- */
.link {
  padding-top: 0;
}

.link .col3 {
  display: -webkit-box;
  /*Android4.3*/
  display: -ms-flexbox;
  /*IE10*/
  display: -webkit-flex;
  /*PC-Safari,iOS8.4*/
  display: flex;
  -ms-flex-pack: justify;
  /*IE10*/
  -webkit-box-pack: justify;
  /* Android4.3以下、Safari3.1〜6.0 */
  -webkit-justify-content: space-between;
  /* Safari6.1以降 */
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  /*IE10*/
  -webkit-flex-wrap: wrap;
  /*PC-Safari,iOS8.4*/
  flex-wrap: wrap;
}

.link .col3 li {
  width: 32%;
}

@media screen and (max-width: 768px) {
  .link .col3 li {
    width: 48%;
  }
}

.link .col3 li:nth-child(n+4) {
  margin-top: 2%;
}

@media screen and (max-width: 768px) {
  .link .col3 li:nth-child(n+4) {
    margin-top: 4%;
  }
}

@media screen and (max-width: 768px) {
  .link .col3 li:nth-child(n+3) {
    margin-top: 4%;
  }
}

/* -----------------------------------------------------
  slick
----------------------------------------------------- */
.slick-dots {
  bottom: min(-1.66667vw,-32px);
}

@media screen and (max-width: 768px) {
  .slick-dots {
    bottom: -7.29167vw;
  }
}

.slick-dots li {
  width: min(0.52083vw,10px);
  height: min(0.52083vw,10px);
  margin: 0 min(0.41667vw,8px);
  padding: 0;
}

@media screen and (max-width: 768px) {
  .slick-dots li {
    width: 1.5625vw !important;
    height: 1.5625vw;
    margin: 0 1.04167vw !important;
  }
}

.slick-dots li button {
  width: min(0.52083vw,10px);
  height: min(0.52083vw,10px);
}

@media screen and (max-width: 768px) {
  .slick-dots li button {
    width: 1.5625vw;
    height: 1.5625vw;
  }
}

.slick-dots li button:before {
  width: min(0.52083vw,10px);
  height: min(0.52083vw,10px);
  opacity: 1;
  background: #9fa0a0;
  border-radius: 50vh;
}

@media screen and (max-width: 768px) {
  .slick-dots li button:before {
    width: 1.5625vw;
    height: 1.5625vw;
  }
}

.slick-dots li.slick-active {
  width: min(0.52083vw,10px);
}

@media screen and (max-width: 768px) {
  .slick-dots li.slick-active {
    width: 1.5625vw;
  }
}

.slick-dots li.slick-active button:before {
  opacity: 1;
  background: #fff;
  width: min(0.52083vw,10px);
}

@media screen and (max-width: 768px) {
  .slick-dots li.slick-active button:before {
    width: 1.5625vw;
  }
}

@media screen and (max-width: 768px) {
  .slick-list {
    max-width: 100%;
    overflow: visible;
  }
}

/* -----------------------------------------------------
	modal
----------------------------------------------------- */
#modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 100;
}

#modal .modalMask {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.5);
}

#modal .modalCont {
  display: none;
}

#modal .modalCont .video {
  background: #fff;
  padding: min(2.08333vw,40px) min(2.91667vw,56px) min(2.91667vw,56px);
  border-radius: min(1.04167vw,20px);
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 20;
  margin: auto;
}

@media screen and (max-width: 768px) {
  #modal .modalCont .video {
    width: 90%;
    padding: 3.125vw 5.20833vw 5.20833vw;
    border-radius: 2.60417vw;
  }
}

#modal .modalCont .video .detail {
  display: -webkit-box;
  /*Android4.3*/
  display: -ms-flexbox;
  /*IE10*/
  display: -webkit-flex;
  /*PC-Safari,iOS8.4*/
  display: flex;
  -ms-flex-align: center;
  /*IE10*/
  -webkit-box-align: center;
  /* Android4.3以下、Safari3.1〜6.0 */
  -webkit-align-items: center;
  /* Safari6.1以降 */
  align-items: center;
  -ms-flex-pack: justify;
  /*IE10*/
  -webkit-box-pack: justify;
  /* Android4.3以下、Safari3.1〜6.0 */
  -webkit-justify-content: space-between;
  /* Safari6.1以降 */
  justify-content: space-between;
  margin-bottom: min(0.83333vw,16px);
}

@media screen and (max-width: 768px) {
  #modal .modalCont .video .detail {
    margin-bottom: 2.08333vw;
  }
}

#modal .modalCont .video .detail .name {
  display: -webkit-box;
  /*Android4.3*/
  display: -ms-flexbox;
  /*IE10*/
  display: -webkit-flex;
  /*PC-Safari,iOS8.4*/
  display: flex;
  -ms-flex-align: center;
  /*IE10*/
  -webkit-box-align: center;
  /* Android4.3以下、Safari3.1〜6.0 */
  -webkit-align-items: center;
  /* Safari6.1以降 */
  align-items: center;
  font-size: min(1.45833vw,28px);
  color: #000;
}

@media screen and (max-width: 768px) {
  #modal .modalCont .video .detail .name {
    font-size: 4.16667vw;
  }
}

#modal .modalCont .video .detail .name .thum {
  width: min(6.25vw,120px);
  margin-right: min(1.25vw,24px);
}

@media screen and (max-width: 768px) {
  #modal .modalCont .video .detail .name .thum {
    width: 15.625vw;
    margin-right: 3.125vw;
  }
}

#modal .modalCont .video .detail .sns_link {
  display: -webkit-box;
  /*Android4.3*/
  display: -ms-flexbox;
  /*IE10*/
  display: -webkit-flex;
  /*PC-Safari,iOS8.4*/
  display: flex;
  -ms-flex-align: center;
  /*IE10*/
  -webkit-box-align: center;
  /* Android4.3以下、Safari3.1〜6.0 */
  -webkit-align-items: center;
  /* Safari6.1以降 */
  align-items: center;
}

#modal .modalCont .video .detail .sns_link li {
  width: min(4.16667vw,80px);
}

@media screen and (max-width: 768px) {
  #modal .modalCont .video .detail .sns_link li {
    width: 10.41667vw;
  }
}

#modal .modalCont .video .detail .sns_link li + li {
  margin-left: min(1.25vw,24px);
}

@media screen and (max-width: 768px) {
  #modal .modalCont .video .detail .sns_link li + li {
    margin-left: 3.125vw;
  }
}

#modal .modalCont .video .detail .sns_link li:last-child {
  width: min(2.91667vw,56px);
}

@media screen and (max-width: 768px) {
  #modal .modalCont .video .detail .sns_link li:last-child {
    width: 7.29167vw;
  }
}

#modal .modalCont .video .movie {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

#modal .modalCont .video .movie video {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

#modal .modalCont .video .movie.disabled {
  pointer-events: none;
}

#modal .modalCont .video .movie.disabled::after {
  content: 'Coming Soon';
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  /*Android4.3*/
  display: -ms-flexbox;
  /*IE10*/
  display: -webkit-flex;
  /*PC-Safari,iOS8.4*/
  display: flex;
  -ms-flex-pack: center;
  /*IE10*/
  -webkit-box-pack: center;
  /* Android4.3以下、Safari3.1〜6.0 */
  -webkit-justify-content: center;
  /* Safari6.1以降 */
  justify-content: center;
  -ms-flex-align: center;
  /*IE10*/
  -webkit-box-align: center;
  /* Android4.3以下、Safari3.1〜6.0 */
  -webkit-align-items: center;
  /* Safari6.1以降 */
  align-items: center;
  background: rgba(0, 0, 0, 0.8);
  font-size: min(2.91667vw,56px);
  color: #fff;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  #modal .modalCont .video .movie.disabled::after {
    font-size: 5.20833vw;
  }
}

#modal .modalCont .video .btn_close {
  position: absolute;
  top: -.8em;
  right: -.8em;
}

@media screen and (max-width: 768px) {
  #modal .modalCont .video .btn_close {
    top: -2.60417vw;
    right: -2.60417vw;
  }
}

#modal .modalCont .video .btn_close a {
  display: -webkit-box;
  /*Android4.3*/
  display: -ms-flexbox;
  /*IE10*/
  display: -webkit-flex;
  /*PC-Safari,iOS8.4*/
  display: flex;
  -ms-flex-pack: center;
  /*IE10*/
  -webkit-box-pack: center;
  /* Android4.3以下、Safari3.1〜6.0 */
  -webkit-justify-content: center;
  /* Safari6.1以降 */
  justify-content: center;
  -ms-flex-align: center;
  /*IE10*/
  -webkit-box-align: center;
  /* Android4.3以下、Safari3.1〜6.0 */
  -webkit-align-items: center;
  /* Safari6.1以降 */
  align-items: center;
  background: #000;
  display: block;
  width: min(2.08333vw,40px);
  height: min(2.08333vw,40px);
  border: min(0.10417vw,2px) solid #fff;
  border-radius: 50vh;
  position: relative;
}

@media screen and (max-width: 768px) {
  #modal .modalCont .video .btn_close a {
    width: 7.29167vw;
    height: 7.29167vw;
  }
}

#modal .modalCont .video .btn_close a::before, #modal .modalCont .video .btn_close a::after {
  content: "";
  display: block;
  position: absolute;
  top: min(0.10417vw,2px);
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: min(1.04167vw,20px);
  height: min(0.10417vw,2px);
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  #modal .modalCont .video .btn_close a::before, #modal .modalCont .video .btn_close a::after {
    top: 0.26042vw;
    width: 3.125vw;
    height: 0.39063vw;
  }
}

#modal .modalCont .video .btn_close a::before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 3px;
}

@media screen and (max-width: 768px) {
  #modal .modalCont .video .btn_close a::before {
    top: 0.39063vw;
  }
}

#modal .modalCont .video .btn_close a::after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  bottom: 0;
}
