@charset "utf-8";

:root {
  --ky-color01: #73b23f;
  --gradation-color01: linear-gradient(
    90deg,
    rgba(115, 178, 63) 0%,
    rgba(26, 168, 214) 50%,
    rgba(161, 68, 138) 100%
  );
  --color-btn: linear-gradient(
    90deg,
    rgba(115, 178, 63) 0%,
    rgba(26, 168, 214) 50%,
    rgba(161, 68, 138) 100%
  );
  --color-btn-hover: linear-gradient(
    90deg,
    rgb(193, 236, 158) 0%,
    rgb(140, 221, 248) 50%,
    rgb(235, 184, 222) 100%
  );
  --font-set01: YakuHanJP, "Coiny", "M PLUS Rounded 1c", sans-serif;
  --font-set02: YakuHanJP, "Coiny", "M PLUS Rounded 1c",
    "Hiragino Kaku Gothic Pro", Helvetica, sans-serif;
  --font-set03: YakuHanJP, "Hiragino Kaku Gothic ProN", "Hiragino Sans",
    "BIZ UDPGothic", Helvetica, sans-serif;
  --sct-bg-color: rgba(255, 255, 255, 0.9);
}

/* --------------------------------------------------------------- ResetStyle */

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

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

ol,
ul,
li {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

img,
td {
  vertical-align: top;
}

/*img{ vertical-align:bottom; }*/
address,
em,
cite {
  font-style: normal;
}

fieldset {
  border: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

/* --------------------------------------------------------------- Common */

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  /*Base Size 1.0rem=10px*/
}

body {
  font-family: YakuHanJP, "Hiragino Kaku Gothic ProN", "Hiragino Sans",
    "BIZ UDPGothic", Helvetica, sans-serif;
  line-height: 1;
  font-feature-settings: "pkna";
  letter-spacing: 0.02em;
  /* -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; */
}

img {
  width: 100%;
  height: auto;
}

a {
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.25);
}

a:focus {
  outline: none;
}

a:link,
a:visited,
a:hover {
  color: #444;
  text-decoration: none;
}

html {
  height: 100%;
}

body {
  height: 100%;
  background-color: #fff;
  color: #444;
}

#wrapper {
  width: 100%;
}

/* ----------------------------------------------------------------------------Loding*/

#loding {
  position: fixed;
  right: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 100;
}

#loding .loader {
  --icon-count: 3;
  --inner-height: 4em;
  --ratio: 2/3;
  /* Customizable */
  --period: 1s;
  /* Customizable */
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--inner-height);
  width: calc(var(--inner-height) * var(--ratio) * var(--icon-count));
}

.loader2 {
  width: 6px;
  margin-left: 8px;
  height: 50px;
  border-top-left-radius: 1px;
  border-top-right-radius: 1px;
  background-color: rgb(78, 209, 209);
  position: relative;
}

.l1 {
  animation: l1 1s 0s infinite ease;
}

.l2 {
  animation: l1 1s 0.1s infinite ease;
}

.l3 {
  animation: l1 1s 0.2s infinite ease;
}

.l4 {
  animation: l1 1s 0.3s infinite ease;
}

.l5 {
  animation: l1 1s 0.4s infinite ease;
}

.l6 {
  animation: l1 1s 0.5s infinite ease;
}

.l7 {
  animation: l1 1s 0.6s infinite ease;
}

@keyframes l1 {
  0% {
    height: 50px;
  }
  50% {
    height: 5px;
    background-color: rgba(0, 190, 16, 0);
  }

  100% {
    height: 50px;
  }
}

/*--------------------------------------------------------------- Section Common */

.m-sct {
  margin-bottom: 250px;
  width: 100%;
  background: var(--sct-bg-color);
  -webkit-backdrop-filter: blur(0.5rem);
  backdrop-filter: blur(0.6rem);
  border-top: 10px solid var(--ky-color01);
  border-bottom: 10px solid var(--ky-color01);
  border-image: var(--gradation-color01);
  border-image-slice: 1;
  opacity: 1;
}

.m-sct-inr {
  margin: 0 auto;
  padding: 80px 40px;
  max-width: 1280px;
  overflow: hidden;
}

.m-sct-blk + .m-sct-blk {
  margin-top: 64px;
}

@media (max-width: 768px) {
  .m-sct {
    margin-bottom: 100px;
  }

  .m-sct-inr {
    padding: 50px 5.867%;
  }

  .m-sct-blk + .m-sct-blk {
    margin-top: 40px;
  }
}

.m-clm {
  width: 100%;
}
.m-info + .m-clm {
  margin-top: 40px;
}

@media (min-width: 769px) {
  .m-clm {
    display: flex;
    flex-wrap: wrap;
  }
  .m-info + .m-clm {
    margin-top: 80px;
  }

  .m-clm02 .m-clm-item {
    width: calc(50% - 30px);
  }

  .m-clm02 .m-clm-item:nth-child(2n) {
    margin-left: 60px;
  }

  .m-clm02 .m-clm-item:nth-child(n + 3) {
    margin-top: 48px;
  }

  .m-clm03 .m-clm-item {
    margin-left: 40px;
    width: calc(33.333% - 80px / 3);
  }

  .m-clm03 .m-clm-item:nth-child(3n + 1) {
    margin-left: 0;
  }

  .m-clm03 .m-clm-item:nth-child(n + 4) {
    margin-top: 48px;
  }
}

@media (max-width: 768px) {
  .m-clm-item:not(:first-child) {
    margin-top: 50px;
  }
}

.m-info {
  width: 100%;
}

@media (min-width: 769px) {
  .m-info {
    display: flex;
    justify-content: space-between;
  }

  .m-info-img {
    width: calc(50% - 30px);
  }

  .m-info-txt {
    width: calc(50% - 30px);
  }
}

@media (max-width: 768px) {
  .m-info-txt {
    margin-top: 40px;
  }
}

/*----------- Title */

.m-hd2 {
  display: inline-flex;
  margin-bottom: 40px;
  padding-bottom: 5px;
  border-bottom: 3px solid var(--ky-color01);
  border-image: var(--gradation-color01);
  border-image-slice: 1;
  font-family: var(--font-set01);
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}
.m-hd2:not(:first-of-type) {
  margin-top: 80px;
}

.m-hd2 span {
  color: var(--ky-color01);
  font-weight: 700;
}

.m-hd3 {
  background: var(--gradation-color01);
  -webkit-background-clip: text;
  color: transparent;
  font-family: var(--font-set01);
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}

.m-hd3:not(:first-of-type) {
  margin-top: 32px;
}

@media (max-width: 768px) {
  .m-hd2 {
    margin-bottom: 32px;
    font-size: 2.6rem;
  }
  .m-hd2:not(:first-of-type) {
    margin-top: 50px;
  }

  .m-hd3 {
    font-size: 2.2rem;
  }

  .m-hd3:not(:first-of-type) {
    margin-top: 24px;
  }
}

/*----------- Text */

.m-member {
  margin-top: 4px;
  font-family: var(--font-set01);
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.6;
}

.m-lead {
  margin-top: 24px;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.7;
}

.m-cap {
  margin-top: 24px;
  font-size: 1.5rem;
  line-height: 1.8;
}

.m-notes {
  margin-top: 24px;
  font-size: 1.3rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .m-lead {
    margin-top: 16px;
    font-size: 1.6rem;
  }

  .m-cap {
    margin-top: 16px;
  }

  .m-notes {
    margin-top: 16px;
  }
}

/*----------- link */

.a-btn {
  display: block;
  min-height: 40px;
  padding: 10px 12px;
  background: var(--color-btn);
  text-align: center;
}

.a-btn span {
  display: inline-block;
  padding-left: 15px;
  background-image: url(../images/icon_arrow_wht.svg);
  background-repeat: no-repeat;
  background-position: 0% center;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}

.a-btn,
.a-btn:hover span {
  transition: all 0.4s;
}

.a-btn:hover {
  background: var(--color-btn-hover);
}

.a-btn:hover span {
  background-image: url(../images/icon_arrow_blk.svg);
  color: #000;
}

.m-btn .a-btn + .a-btn {
  margin-top: 24px;
}

.m-btn-profile {
  width: 100%;
}

@media (min-width: 769px) {
  .m-btn {
    margin-top: 32px;
    max-width: 320px;
  }

  .m-btn-profile {
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .m-btn-profile .a-btn {
    width: calc(50% - 10px);
  }

  .m-btn-profile .a-btn:nth-child(n + 3) {
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .m-btn {
    margin-top: 24px;
  }

  .m-btn-profile {
    margin-top: 24px;
  }

  .m-btn-profile .a-btn:not(:first-child) {
    margin-top: 16px;
  }
}

/*--------------------------------------------------------------- List Crad */

.card-hd {
  margin-top: 32px;
  padding: 12px 2px;
  border-top: 1px solid var(--ky-color01);
  border-bottom: 1px solid var(--ky-color01);
  border-image: var(--gradation-color01);
  border-image-slice: 1;
  background: var(--gradation-color01);
  -webkit-background-clip: text;
  color: transparent;
  text-align: center;
  font-family: var(--font-set02);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.4;
  letter-spacing: 0.08em;
  font-feature-settings: "palt";
}

.card-hd span {
  font-size: 1.3rem;
}

.card-price {
  margin-top: 20px;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  text-align: center;
}

.card-cap {
  margin-top: 12px;
  font-size: 1.4rem;
  line-height: 1.7;
  letter-spacing: 0.05em;
  text-align: left;
}

.card-hd + .card-cap {
  margin-top: 20px;
}

.card-notes {
  margin-top: 12px;
  font-size: 1.2rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .card-hd {
    margin-top: 20px;
    padding: 8px 2px;
    font-size: 1.8rem;
  }
}

/*----------- Goods */

.card-goods {
  display: block;
  color: #444;
  text-decoration: none;
}

.card-goods .card-price,
.card-goods .card-cap {
  text-align: left;
}

/*----------- Item */

.card-item {
  width: 100%;
}

.card-item .card-item-link a + a {
  margin-top: 16px;
}

@media (min-width: 769px) {
  .card-item {
    display: flex;
    justify-content: space-between;
  }

  .card-item .card-item-info {
    width: 60%;
  }

  .card-item .card-item-link {
    width: calc(40% - 30px);
  }
}

@media (max-width: 768px) {
  .card-item .card-item-link {
    margin-top: 24px;
  }
}

/*--------------------------------------------------------------- Info */

.m-info-ttl {
  margin-bottom: 24px;
}

.m-info-ttl span {
  display: block;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--ky-color01);
  border-image: var(--gradation-color01);
  border-image-slice: 1;
}

.m-info-ttl span img {
  max-width: 450px;
}

.m-info-ttl em {
  display: block;
  margin-top: 20px;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

.m-info-catch {
  margin-top: 30px;
  color: var(--ky-color01);
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}

.m-info-date {
  margin-top: 20px;
  display: table;
}

.m-info-date dt,
.m-info-date dd {
  display: table-cell;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.4;
}

.m-info-date dt {
  width: 210px;
}

.m-info-date dd {
  font-size: 2rem;
}

.m-info-date dd span {
  font-size: 1.7rem;
}

@media (max-width: 768px) {
  .m-info-date,
  .m-info-date dt,
  .m-info-date dd {
    display: block;
  }

  .m-info-ttl {
    /* margin-top: 60px; */
  }

  .m-info-ttl span img {
    max-width: 100%;
  }

  .m-info-date dd {
    margin-top: 8px;
  }
}

.m-info-guest {
  margin-top: 10px;
  font-weight: 700;
  font-size: 2.3rem;
  line-height: 1.4;
  letter-spacing: 1px;
}

.m-info-guest span {
  font-size: 1.6rem;
}

/*--------------------------------------------------------------- Track List*/

/*
.m-track h3{
  font-weight: 700;
  font-size: 2.0rem;
  line-height: 1.4;
}
*/
.m-track .card-hd {
  margin-top: 0;
}
.m-track dl {
  display: flex;
  padding-top: 15px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  font-feature-settings: "palt";
}
.m-track dl dt {
  color: #73b23f;
  font-family: var(--font-set01);
  font-weight: 700;
  font-size: 2.4rem;
}
.m-track dl dd {
  padding-left: 16px;
}
.m-track dl dd .m-track-list {
  font-family: var(--font-set01);
  font-size: 2.4rem;
  font-weight: 600;
  font-feature-settings: "palt";
  word-wrap: break-word;
}
.m-track dl dd .m-track-list span {
  padding-left: 8px;
  font-weight: 400;
  font-size: 1.6rem;
}
.m-track dl dd .m-track-cap {
  margin-top: 0px;
  font-size: 1.4rem;
}

@media (max-width: 768px) {
  .m-track dl dt {
    font-size: 2rem;
  }
  .m-track dl dd {
    padding-left: 8px;
  }
  .m-track dl dd .m-track-list {
    font-size: 2rem;
  }
  .m-track dl dd .m-track-list span {
    display: block;
    padding-left: 0;
    margin-top: 2px;
  }
}

/*--------------------------------------------------------------- Schedule */

.m-schedule .card-hd {
  margin-top: 0;
}

.m-schedule dl {
  display: flex;
  line-height: 1.4;
  letter-spacing: 0.08em;
  font-feature-settings: "palt";
}
.m-schedule dl:not(:first-child) {
  margin-top: 22px;
}

.m-schedule dl dt {
  width: 114px;
  color: var(--ky-color01);
  font-family: var(--font-set01);
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.2;
}

.m-schedule dl dt .-date-small {
  font-size: 1.8rem;
}

.m-schedule dl dd {
  padding-left: 16px;
  width: calc(100% - 96px);
}

.m-schedule dl dd .m-schedule-list {
  font-family: var(--font-set01);
  font-size: 2.4rem;
  font-weight: 700;
  font-feature-settings: "palt";
  word-wrap: break-word;
}

.m-schedule dl dd .m-schedule-list span {
  padding-left: 8px;
  font-weight: 400;
  font-size: 1.6rem;
}

.m-schedule dl dd .m-schedule-cap {
  margin-top: 4px;
  font-size: 1.4rem;
}

.m-schedule dl dd .m-schedule-cap a {
  color: var(--ky-color01);
  text-decoration: underline;
}

.m-schedule dl dd .m-schedule-cap a:hover {
  color: var(--ky-color01);
  text-decoration: none;
}

.m-schedule .-year {
  color: #444;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.2;
}

.m-schedule .-year-small {
  color: #444;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.m-schedule .-soldout {
  display: inline-block;
  margin-top: 2px;
  padding: 5px 6px 5px 6px;
  color: #fff;
  width: 94px;
  background: #d73352;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.m-schedule .-new {
  display: inline-block;
  margin-top: 2px;
  padding: 5px 6px 5px 6px;
  color: #fff;
  width: 94px;
  background: #367fd8;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.m-schedule .logo img {
  max-width: 500px;
}

.m-schedule .visual img {
  max-width: 640px;
}

@media (max-width: 768px) {
  .m-schedule dl {
    display: block;
    line-height: 1.4;
    letter-spacing: 0.08em;
    font-feature-settings: "palt";
  }
  .m-schedule dl:not(:first-child) {
    margin-top: 20px;
  }

  .m-schedule dl dt {
    width: 100%;
    font-size: 2.6rem;
    line-height: 1.2;
  }

  .m-schedule dl dt span {
    font-size: 1.5rem;
  }

  .m-schedule dl dd {
    margin-top: 6px;
    padding-left: 0;
    width: 100%;
  }

  .m-schedule dl dd .m-schedule-list {
    font-size: 2rem;
  }

  .m-schedule dl dd .m-schedule-list span {
    display: block;
    padding-left: 0;
    margin-top: 2px;
  }

  .m-schedule .-year {
    color: #444;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
  }

  .m-schedule .-year-small {
    color: #444;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
  }

  .m-schedule .-soldout {
    padding: 5px 3px 7px 3px;
    width: 84px;
    font-size: 13px;
    vertical-align: center;
  }

  .m-schedule .-new {
    padding: 5px 3px 7px 3px;
    width: 84px;
    font-size: 13px;
    vertical-align: center;
  }
}

/*---------------------------------------------------------------Movie Block*/

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

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

/*--------------------------------------------------------------- Crad Digital*/

.card-digital h3 + .m-digital,
.card-digital p + .m-digital {
  margin-top: 24px !important;
}

.m-digital {
  position: relative;
  padding-top: 138%;
  width: 100%;
}
.m-digital iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

@media (max-width: 768px) {
  .m-digital {
    padding-top: 460px;
  }
}

/*---------------------------------------------------------------Common*/

.pc {
  display: block;
}

.sp {
  display: none;
}

@media (max-width: 768px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
}

/*Link Img*/
a img.over {
  opacity: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

a:hover img.over {
  filter: alpha(opacity=60);
  -moz-opacity: 0.6;
  opacity: 0.6;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/*---------------------------------------------------------------for Fade*/

#naviBlock,
.m-header {
  opacity: 0;
}

/*---------------------------------------------------------------Layout Format*/

/*Content*/
#content {
  width: 100%;
  z-index: 10;
}

/*---------------------------------------------------------------Navigation Block*/

/*Menu Button Open*/
#naviBlock .naviBtn {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 55;
}

#naviBlock .naviBtn a {
  display: block;
  width: 59px;
  height: 59px;
  background: rgba(0, 0, 0, 0.9);
  font-size: 0;
  cursor: pointer;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

#naviBlock .naviBtn a span {
  display: block;
  position: absolute;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

#naviBlock .naviBtn a span.line {
  left: 17px;
  width: 25px;
  height: 1px;
  background: var(--gradation-color01);
}

#naviBlock .naviBtn a span:first-child {
  top: 13px;
}

#naviBlock .naviBtn a span:nth-child(2) {
  top: 21px;
}

#naviBlock .naviBtn a span:nth-child(3) {
  top: 29px;
}

#naviBlock .naviBtn a span.menu {
  left: 0px;
  bottom: 9px;
  width: 59px;
  color: var(--ky-color01);
  background: var(--gradation-color01);
  -webkit-background-clip: text;
  color: transparent;
  text-align: center;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 1px;
}

/*Menu Button Open Close*/
#naviBlock .naviBtn.close a span:first-child {
  -webkit-transform: translateY(8px) rotate(45deg);
  -moz-transform: translateY(8px) rotate(45deg);
  -ms-transform: translateY(8px) rotate(45deg);
  transform: translateY(8px) rotate(45deg);
}

#naviBlock .naviBtn.close a span:nth-child(2) {
  opacity: 0;
}

#naviBlock .naviBtn.close a span:nth-child(3) {
  -webkit-transform: translateY(-8px) rotate(-45deg);
  -moz-transform: translateY(-8px) rotate(-45deg);
  -ms-transform: translateY(-8px) rotate(-45deg);
  transform: translateY(-8px) rotate(-45deg);
}

/*Menu Button Hover*/
@media (min-width: 769px) {
  #naviBlock .naviBtn a:hover {
    background: var(--color-btn);
  }

  #naviBlock .naviBtn a:hover span.line {
    background: #000000;
  }

  #naviBlock .naviBtn a:hover span.menu {
    color: #000000;
  }
}

/*Navi Menu*/
#naviBlock .naviMenu {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.75);
  -webkit-backdrop-filter: blur(0.5rem);
  backdrop-filter: blur(0.6rem);
  z-index: 50;
}

#naviBlock .naviMenu ul {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 50px;
  margin: auto;
  width: 100%;
  height: 454px;
}

#naviBlock .naviMenu ul li {
  text-align: center;
}

#naviBlock .naviMenu ul li a {
  display: block;
  margin-bottom: 1px;
  padding: 16px 15px 16px 15px;
  background: rgba(206, 53, 190, 0);
  color: #444;
  text-align: center;
  font-family: var(--font-set01);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

#naviBlock .naviMenu ul a span {
  color: var(--ky-color01);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

#naviBlock .naviMenu ul li.special a {
  font-size: 22px;
}

/*Navi Menu Hover*/
#naviBlock .naviMenu li a:hover {
  background: var(--color-btn);
  color: #fff;
}

#naviBlock .naviMenu li a:hover span {
  color: #fff;
}

/*--------------------------------------------------------------- Header Block */

.m-header {
  opacity: 1;
  position: relative;
  height: 100vh;
  height: 100dvh;
  width: 100%;
  margin-bottom: 100px;
}

/*Sns Set*/
.m-header .snsSet {
  position: fixed;
  right: 50px;
  top: 20px;
  z-index: 55;
}

.m-header .snsSet p {
  float: left;
}

.m-header .snsSet p.twitterBtn {
  padding-right: 25px;
}

.m-header .snsSet p.facebookBtn {
  width: 120px;
}

@media (max-width: 768px) {
  /*Sns Set*/
  .m-header .snsSet {
    left: 5.867%;
    right: auto;
  }

  .m-header .snsSet p.twitterBtn {
    padding-right: 10px;
  }

  .m-header .snsSet p.facebookBtn {
    width: 120px;
  }
}

/*Title*/
.m-header h1 {
  display: block;
  position: absolute;
  width: calc(30%);
  /* margin: auto; */
  /* bottom: 30px; */
  top: 45%;
  left: 10%;
  transform: translate(-10%, -45%);
  /* right: 0; */
  /* text-align: center; */
}

.m-header h1 img {
  /* width: 80%; */
  /* height: auto; */
}

/*Scroll*/
.m-header p.scroll a {
  display: block;
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 40px;
  margin: auto;
  bottom: 40px;
  left: 0;
  right: 0;
  background-color: #fff;
}

.m-header p.scroll a span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  border-image: var(--gradation-color01);
  border-image-slice: 1;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: sdb 2s infinite;
  animation: sdb 2s infinite;
  opacity: 1;
  box-sizing: border-box;
  /*
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 1));
  */
}

.m-header p.scroll a:hover span {
  border-left: 2px solid var(--ky-color01);
  border-bottom: 2px solid var(--ky-color01);
}

.m-header p.scroll a span:nth-of-type(1) {
  top: 6px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.m-header p.scroll a span:nth-of-type(2) {
  top: 22px;
  -webkit-animation-delay: 0.15s;
  animation-delay: 0.15s;
}

.m-header p.scroll a span:nth-of-type(3) {
  top: 38px;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

@-webkit-keyframes sdb {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes sdb {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .m-header {
    margin-bottom: 0;
  }

  /*Title*/
  .m-header h1 {
    width: 100%;
    top: 200px;
    margin: auto;
    /* left: auto; */
    text-align: center;
  }

  .m-header h1 img {
    width: 70%;
  }

  /*Scroll*/
  .m-header p.scroll a {
    bottom: 40px;
  }
}

/*--------------------------------------------------------------- Footer */

.m-footer {
  width: 100%;
  height: 80px;
  background: var(--sct-bg-color);
  backdrop-filter: blur(0.6rem);
}

.m-footer-inr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 15px 40px;
  max-width: 1280px;
  overflow: hidden;
}

.m-footer-bnr {
  display: flex;
}

.m-footer-bnr li {
  max-width: 280px;
}

.m-footer-bnr li:not(:first-child) {
  margin-left: 24px;
}

.m-footer-bnr li.current {
  opacity: 0.5;
}

.m-footer-copyright {
  font-size: 12px;
  letter-spacing: 1px;
}

@media (max-width: 1440px) {
  .m-footer-copyright {
    padding-right: 80px;
  }
}

.m-footer-copyright span {
  padding-right: 2px;
  font-size: 20px;
  vertical-align: middle;
}

/*Pagetop*/
.m-footer .pagetop {
  display: none;
  position: fixed;
  right: 40px;
  bottom: 10px;
  z-index: 40;
}

.m-footer .pagetop img {
  width: 59px;
  height: 59px;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.3s;
}

.m-footer .pagetop:hover img {
  opacity: 0.5;
  transition: opacity 0.3s;
}

@media (max-width: 768px) {
  .m-footer {
    position: relative;
    height: auto;
  }

  .m-footer .m-footer-inr {
    display: block;
    padding: 30px 5.867% 20px 5.867%;
  }

  .m-footer-bnr {
    display: block;
  }

  .m-footer-bnr li {
    max-width: 100%;
  }

  .m-footer-bnr li:not(:first-child) {
    margin-top: 24px;
    margin-left: 0;
  }

  .m-footer-copyright {
    margin-top: 56px;
    padding-right: 0;
  }

  .m-footer .pagetop {
    position: absolute;
    right: 5.867%;
    bottom: 15px;
  }
}

/*--------------------------------------------------------------- Option */

.o-dsp-iln {
  display: inline;
}

.o-dsp-ilb {
  display: inline-block;
}

.o-dsp-blk {
  display: block;
}

.o-indent {
  padding-left: 1em;
  text-indent: -1em;
}

.o-txt-justify {
  text-align: justify;
}

.o-txt-r {
  text-align: right;
}

.o-txt-l {
  text-align: left;
}

.o-maxwid360 {
  max-width: 360px;
}

.o-maxwid320 {
  max-width: 320px;
}

.o-margin-top20 {
  margin-top: 20px;
}

/* .o-img-small {
  width: calc(85%);
} */

@media (min-width: 769px) {
  .o-img-small {
    width: calc(90%);
  }
  .o-img-x-small {
    width: calc(80%);
  }
  .o-img-xx-small {
    width: calc(60%);
  }
}

.o-text01 {
  font-family: YakuHanJP, "Coiny", "M PLUS Rounded 1c",
    "Hiragino Kaku Gothic Pro", Helvetica, sans-serif;
}

.o-fw700 {
  font-weight: 700;
}
.o-mt00 {
  margin-top: 0px !important;
}
.o-mt04 {
  margin-top: 4px !important;
}
.o-mt08 {
  margin-top: 8px !important;
}
.o-mt16 {
  margin-top: 16px !important;
}
.o-mt24 {
  margin-top: 24px !important;
}
.o-mt32 {
  margin-top: 32px !important;
}
.o-mt40 {
  margin-top: 40px !important;
}
.o-mt48 {
  margin-top: 48px !important;
}
.o-mt56 {
  margin-top: 56px !important;
}
.o-mt64 {
  margin-top: 64px !important;
}
