@charset "UTF-8";
/*-----------------------------------------------------------------------------
初期化
-------------------------------------------------------------------------------*/
* {
  box-sizing: border-box;
}

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

a {
  text-decoration: none;
  transition: all 0.3s ease-in;
}

img {
  vertical-align: bottom;
}

h1, h2, h3, h4, h5, h6, figure, p, dl, dt, dd {
  padding: 0;
  margin: 0;
}

.none {
  display: none;
}

html, body {
  scroll-behavior: smooth;
}

/*-----------------------------------------------------------------------------
break point
-------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------
PC/SP
-------------------------------------------------------------------------------*/
@media screen and (min-width: 768px) {
  .pc-only {
    display: block;
  }
  .sp-only {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}
/*-----------------------------------------------------------------------------
colors
-------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------
font
-------------------------------------------------------------------------------*/
body {
  font-family: "Zen Kaku Gothic New", serif;
  font-weight: 400;
  font-style: normal;
  font-optical-sizing: auto;
  font-size: 1rem;
  line-height: 1.4;
  overflow-x: hidden;
  width: 100%;
  color: #000;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  body {
    height: 100%;
    font-size: 0.875rem;
    width: 100%;
  }
}

.txt-center {
  text-align: center;
}

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

.txt-bold {
  font-weight: 700;
}

.txt-white {
  color: #fff;
}

.bg-white {
  background-color: #fff;
}

/*-----------------------------------------------------------------------------
a tag
-------------------------------------------------------------------------------*/
a {
  transition: all 0.3s ease-in;
}

/*-------------------------------------------------------------
ふわっと表示
-------------------------------------------------------------*/
.fadein {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fadein.visible {
  opacity: 1;
  transform: translateY(0);
}

/*-----------------------------------------------------------------------------
画像
-------------------------------------------------------------------------------*/
img {
  display: block;
  vertical-align: bottom;
}

.img-center {
  display: block;
  margin: 0 auto;
}

.w100 {
  width: 100%;
}

/*-----------------------------------------------------------------------------
枠
-------------------------------------------------------------------------------*/
.wrapper {
  position: relative;
  overflow-x: hidden;
}
.wrapper .inner {
  width: 100%;
  max-width: 66.5rem;
  margin: 0 auto;
  position: relative;
  padding: 0 1.25rem;
}

/*-----------------------------------------------------------------------------
display flex
-------------------------------------------------------------------------------*/
.dflex {
  display: flex;
}

.dflex-center {
  justify-content: center;
}

.dflex-column-reverse {
  flex-direction: column-reverse;
}

.dblock {
  display: block;
}

/*-----------------------------------------------------------------------------
ボタン
-------------------------------------------------------------------------------*/
.btn a {
  display: block;
  text-align: center;
  transition: all 0.3s ease;
}
.btn a span {
  position: relative;
}
.btn a span:before, .btn a span:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}

.btn-blue a {
  color: #fff;
  background-color: #005eb8;
  box-shadow: 0px 3px 2px 0px rgba(182, 182, 182, 0.8);
  border: 0.0625rem solid #005eb8;
}
.btn-blue a span:after {
  background: url("../img/icon_arrow_right_white.svg") no-repeat top center;
  width: 1.5rem;
  height: 1.5rem;
  right: -1.625rem;
}
@media screen and (min-width: 768px) {
  .btn-blue a:hover {
    background-color: #fff;
    color: #005eb8;
  }
  .btn-blue a:hover span:after {
    background: url("../img/icon_arrow_right_blue.svg") no-repeat top center;
    background-size: contain;
  }
}

.btn-whitebase a {
  color: #fff;
  background-color: #005eb8;
  border: 0.0625rem solid #fff;
  text-align: left;
  padding-left: 1.625rem;
}
@media screen and (max-width: 767px) {
  .btn-whitebase a {
    padding-left: 3vw;
  }
}
.btn-whitebase a span:after {
  background: url("../img/icon_arrow_white.svg") no-repeat center center;
  background-size: contain;
  width: 1.375rem;
  height: 1.375rem;
  right: -1.5rem;
}
@media screen and (max-width: 767px) {
  .btn-whitebase a span:after {
    width: 4vw;
    height: 4vw;
    right: -4vw;
  }
}
@media screen and (min-width: 768px) {
  .btn-whitebase a:hover {
    background-color: #fff;
    color: #005eb8;
  }
  .btn-whitebase a:hover span:after {
    background: url("../img/icon_arrow_blue.svg") no-repeat top center;
    background-size: contain;
  }
}

.btn-bluebase a {
  color: #005eb8;
  background-color: #fff;
  border: 0.0625rem solid #005eb8;
  text-align: left;
  padding-left: 1.625rem;
}
@media screen and (max-width: 767px) {
  .btn-bluebase a {
    padding-left: 4vw;
  }
}
.btn-bluebase a span:after {
  background: url("../img/icon_arrow_blue.svg") no-repeat top center;
  background-size: contain;
  width: 1.375rem;
  height: 1.375rem;
  right: -1.5rem;
}
@media screen and (max-width: 767px) {
  .btn-bluebase a span:after {
    width: 4vw;
    height: 4vw;
    right: -4vw;
  }
}
@media screen and (min-width: 768px) {
  .btn-bluebase a:hover {
    background-color: #005eb8;
    color: #fff;
  }
  .btn-bluebase a:hover span:after {
    background: url("../img/icon_arrow_white.svg") no-repeat top center;
    background-size: contain;
  }
}

/*-----------------------------------------------------------------------------
ヘッダー
-------------------------------------------------------------------------------*/
.header {
  padding-bottom: 0.4375rem;
  background-color: #fff;
  border-bottom: 0.0625rem solid #ccc;
}
@media screen and (max-width: 767px) {
  .header {
    padding-bottom: 0.21875rem;
  }
}
.header .logo img {
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .header .logo img {
    width: 7.0625rem;
  }
}

/*-----------------------------------------------------------------------------
パンくずリスト
-------------------------------------------------------------------------------*/
.breadlist {
  padding: 0.75rem 0;
  background-color: #fff;
}
.breadlist .inner {
  width: 100%;
  max-width: 75rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .breadlist .inner {
    max-width: unset;
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .breadlist {
    padding: 0.25rem 0.375rem 0.25rem;
    width: 100%;
  }
}
.breadlist .list {
  align-items: center;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .breadlist .list {
    padding: 0;
    flex-wrap: wrap;
    gap: 4px 0;
  }
}
.breadlist .list .item {
  font-size: 0.875rem;
  letter-spacing: 0.045rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .breadlist .list .item {
    font-size: 0.75rem;
  }
}
.breadlist .list .item:not(:last-of-type):after {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  background: url("../img/icon_arrow_breadlist.svg") no-repeat top center;
  background-size: contain;
  margin-left: 4px;
  position: relative;
  top: 0.25rem;
}
@media screen and (max-width: 767px) {
  .breadlist .list .item:not(:last-of-type):after {
    vertical-align: 4px;
    width: 10px;
    height: 10px;
  }
}
.breadlist .list .item a {
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.045rem;
  padding-top: 0.125rem;
  display: inline-block;
  color: #298BFF;
}
@media screen and (max-width: 767px) {
  .breadlist .list .item a {
    font-weight: 400;
    font-size: 0.75rem;
  }
}
.breadlist .list .item a:hover {
  text-decoration: underline;
}

/*-----------------------------------------------------------------------------
footer
-------------------------------------------------------------------------------*/
.footer {
  background-color: #1F1F1F;
  color: #fff;
}
.footer .copy small {
  display: block;
  text-align: center;
  color: #fff;
  font-weight: 700;
  line-height: 2.8125rem;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .footer .copy small {
    font-size: 0.75rem;
    line-height: 1.42;
    font-weight: 500;
    line-height: 2.25rem;
  }
}

.sec-sns {
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .sec-sns {
    margin-bottom: 2.5rem;
  }
}
.sec-sns .sec-sns_ttl {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .sec-sns .sec-sns_ttl {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }
}

.sns ul {
  gap: 2.125rem;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .sns ul {
    gap: 1.5rem;
  }
}
.sns ul li a {
  cursor: pointer;
  display: block;
}
@media screen and (min-width: 768px) {
  .sns ul li a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .sns ul li a {
    width: 2.75rem;
  }
  .sns ul li a img {
    width: 100%;
  }
}

/*-----------------------------------------------------------------------------
各セクションの共通パーツ
-------------------------------------------------------------------------------*/
.sec .sec_ttl {
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .sec .sec_ttl img {
    width: 80%;
  }
}
.sec .label-bblue {
  border: 0.125rem solid #005eb8;
  color: #005eb8;
  line-height: 1.5625rem;
  padding: 0 0.75rem;
  border-radius: 1rem;
  font-weight: 700;
}
.sec .label-blue {
  border: 0.125rem solid #005eb8;
  background-color: #005eb8;
  color: #fff;
  line-height: 1.5625rem;
  padding: 0 0.75rem;
  border-radius: 1rem;
  font-weight: 700;
}
.sec .box-event:not(:last-of-type) {
  margin-bottom: 4.375rem;
}
.sec .box-event .box_header {
  padding-bottom: 1.75rem;
  border-bottom: 0.3125rem dotted #fff;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .sec .box-event .box_header {
    padding-bottom: 1rem;
    margin-bottom: 2.5rem;
  }
}
.sec .box-event .box_header .box_ttl {
  text-align: center;
  width: 26.375rem;
  line-height: 4.625rem;
  color: #00A0DF;
  background-color: #fff;
  font-size: 2.5rem;
  margin: 0 auto;
  border-radius: 2.375rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .sec .box-event .box_header .box_ttl {
    font-size: 6vw;
    width: 70%;
    line-height: 12vw;
  }
}
.sec .box-event .box_header .box_ttl:before, .sec .box-event .box_header .box_ttl:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 0.75rem;
  height: 0.75rem;
  background: url("../img/icon_nail.svg") no-repeat center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .sec .box-event .box_header .box_ttl:before, .sec .box-event .box_header .box_ttl:after {
    width: 0.5rem;
    height: 0.5rem;
  }
}
.sec .box-event .box_header .box_ttl:before {
  left: 0.875rem;
}
@media screen and (max-width: 767px) {
  .sec .box-event .box_header .box_ttl:before {
    left: 0.5rem;
  }
}
.sec .box-event .box_header .box_ttl:after {
  right: 0.875rem;
}
@media screen and (max-width: 767px) {
  .sec .box-event .box_header .box_ttl:after {
    right: 0.5rem;
  }
}

/*-----------------------------------------------------------------------------
リードエリア
-------------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .slideshowarea {
    height: 14.125rem;
    padding: 0.5rem 0;
    width: 100%;
    overflow: hidden;
    background-color: #43B02A;
    position: relative;
  }
  .slideshow-wrap {
    display: flex;
    width: 1906px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    animation: scrollBg 25s linear infinite;
    transform: translateZ(0);
  }
  .slideshow-wrap span {
    flex: 1;
    height: 100%;
    background: url("../img/slide_sp.png") no-repeat center/auto 13.125rem;
  }
  @keyframes scrollBg {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-50%);
    }
  }
}
.lead {
  background-color: #00A0DF;
}
.lead .lead_inner {
  background: linear-gradient(180deg, #46C3D6 -53.76%, rgba(70, 195, 214, 0.96) -39.09%, rgba(70, 195, 214, 0.85) -17.09%, rgba(70, 195, 214, 0.66) 12.25%, rgba(70, 195, 214, 0.41) 45.99%, rgba(70, 195, 214, 0.09) 82.66%, rgba(70, 195, 214, 0) 92.93%);
  padding: 3.375rem 0 0;
}
@media screen and (max-width: 767px) {
  .lead .lead_inner {
    padding: 2rem 0 0;
  }
}
.lead .lead_logo {
  margin-bottom: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .lead .lead_logo {
    margin-bottom: 4vw;
  }
}
.lead .lead_logo img {
  width: 35.125rem;
}
@media screen and (max-width: 767px) {
  .lead .lead_logo img {
    width: 90%;
  }
}
.lead .lead_txt {
  font-size: 1.5rem;
  line-height: 3;
  margin-bottom: 1.625rem;
}
@media screen and (max-width: 767px) {
  .lead .lead_txt {
    font-size: 4.8vw;
    line-height: 2.4;
    margin-bottom: 9vw;
  }
}
.lead .lead_img img {
  width: 100%;
  max-width: 52.25rem;
}

/*-----------------------------------------------------------------------------
EVENT
-------------------------------------------------------------------------------*/
.sec-event {
  background: url("../img/bg_event_pc.png") repeat top center;
  background-size: 90rem auto;
  padding: 4.375rem 0;
}
@media screen and (max-width: 767px) {
  .sec-event {
    background: url("../img/bg_event_sp.png") repeat top center;
    background-size: 23.4375rem auto;
    padding: 3.75rem 0;
  }
}
.sec-event .bg-white {
  padding: 2.75rem 3.875rem 2.75rem 4.25rem;
  padding: min(4vw, 44px) min(4vw, 62px) min(4vw, 44px) 4vw;
  border-radius: 1.25rem;
  box-shadow: 0px 3px 6px 0px rgba(0, 65, 128, 0.8);
  margin-bottom: 4.5rem;
}
@media screen and (max-width: 767px) {
  .sec-event .bg-white {
    margin-bottom: 3.125rem;
  }
}
.sec-event .bg-white .youtube {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .sec-event .bg-white .youtube {
    margin-bottom: 1rem;
  }
}
.sec-event .bg-white .dflex {
  flex-direction: row-reverse;
  justify-content: space-between;
}
.sec-event .bg-white .dflex img {
  border-radius: 2.5rem;
}
.sec-event .bg-white .dflex .img {
  width: 55%;
}
.sec-event .bg-white .dflex .contents {
  width: 40%;
}
@media screen and (max-width: 767px) {
  .sec-event .bg-white .dflex .contents {
    width: 100%;
  }
}
.sec-event .bg-white .dflex .contents .label-blue {
  font-size: 0.875rem;
  padding: 0 1.625rem;
}
.sec-event .bg-white .dflex .contents .dflex {
  flex-direction: row;
  justify-content: unset;
  gap: 0.625rem;
  margin-bottom: 1.375rem;
}
@media screen and (max-width: 767px) {
  .sec-event .bg-white .dflex .contents .dflex {
    gap: unset;
    justify-content: space-between;
  }
}
.sec-event .bg-white .dflex .contents .ttl {
  font-size: min(2.3vw, 24px);
  line-height: 1.6;
  margin-bottom: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .sec-event .bg-white .dflex .contents .ttl {
    font-size: 5vw;
  }
}
@media screen and (max-width: 767px) {
  .sec-event .bg-white .dflex .contents img {
    border-radius: 1.25rem;
    margin-bottom: 1.25rem;
  }
}
.sec-event .bg-white .dflex .contents .txt {
  font-size: min(1.4vw, 16px);
  line-height: 1.6;
  letter-spacing: 0.48px;
  margin-bottom: 1.25rem;
  padding-right: min(2vw, 0.75rem);
}
@media screen and (max-width: 767px) {
  .sec-event .bg-white .dflex .contents .txt {
    font-size: 0.75rem;
    line-height: 1.4;
  }
}
.sec-event .bg-white .btn-blue {
  width: 100%;
  max-width: 19.75rem;
}
@media screen and (max-width: 767px) {
  .sec-event .bg-white .btn-blue {
    width: 90%;
    max-width: unset;
    margin: 0 auto;
  }
}
.sec-event .bg-white .btn-blue a {
  font-size: min(2vw, 20px);
  line-height: 3.75rem;
  border-radius: 2.125rem;
  text-align: left;
  padding-left: 2.125rem;
}
@media screen and (max-width: 767px) {
  .sec-event .bg-white .btn-blue a {
    font-size: 4.5vw;
  }
}
.sec-event .bg-white .btn-blue a span {
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .sec-event .bg-white .btn-blue a:hover span:before {
    background: url("../img/icon_movie_white.svg") no-repeat top center;
    background-size: contain;
  }
}
@media screen and (min-width: 768px) {
  .sec-event .swiper-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.4375rem 5.1875rem;
  }
}
@media screen and (max-width: 1050px) {
  .sec-event .swiper-wrapper {
    display: flex;
    flex-direction: column;
  }
  .sec-event .swiper-wrapper .card {
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .sec-event .swiper-wrapper {
    flex-direction: unset;
  }
}
.sec-event .dgrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(286px, 1fr));
  gap: 1.875rem min(40px, 3vw);
  max-width: 58.75rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .sec-event .dgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5vw 3vw;
  }
}

/*-----------------------------------------------------------------------------
期間限定イベント
-------------------------------------------------------------------------------*/
.box-event .card {
  box-shadow: 0px 3px 6px 0px rgba(0, 65, 128, 0.8);
  width: 29.375rem;
  border-radius: 1.875rem;
  overflow: hidden;
  border-radius: 1.875rem;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .box-event .card {
    width: 18.75rem;
    margin: 0 auto;
  }
}
.box-event .card > .dflex {
  flex-direction: column-reverse;
  height: 100%;
}
.box-event .card > .dflex .img {
  position: relative;
}
@media screen and (max-width: 767px) {
  .box-event .card > .dflex .img {
    height: 18.75rem;
  }
}
.box-event .card > .dflex .img img {
  width: 100%;
}
.box-event .card > .dflex .img .label-blue {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 8rem;
  line-height: 2.5rem;
  text-align: center;
  border-radius: 1.5rem;
  padding: 0;
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .box-event .card > .dflex .img .label-blue {
    font-size: 3.2vw;
    line-height: 5.8vw;
    width: 18vw;
    top: 0.625rem;
    right: 0.625rem;
    font-size: 0.875rem;
    line-height: 1.8125rem;
    padding: 0 1.625rem;
    width: auto;
  }
}
.box-event .card > .dflex .contents {
  background-color: #005eb8;
  color: #fff;
  padding: 1rem 1.75rem 1.25rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .box-event .card > .dflex .contents {
    padding: 4vw;
    height: calc(100% - 300px);
    flex: 1;
  }
}
.box-event .card > .dflex .contents > .dflex {
  justify-content: space-between;
  align-items: center;
}
.box-event .card > .dflex .contents > .dflex .label {
  font-size: 1.3125rem;
  color: #005eb8;
  background-color: #fff;
  font-weight: 700;
  line-height: 2.8125rem;
  padding: 0 1rem;
  border-radius: 1.75rem;
}
@media screen and (max-width: 767px) {
  .box-event .card > .dflex .contents > .dflex .label {
    font-size: 0.875rem;
    line-height: 1.5625rem;
  }
}
.box-event .card > .dflex .contents time {
  background-color: #fff;
  color: #005eb8;
  padding: 0 1.5625rem;
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 2.8125rem;
  border-radius: 1.75rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .box-event .card > .dflex .contents time {
    font-size: 4vw;
    font-size: 1rem;
    padding: 0.7vw 3vw;
    padding: 0.25rem 0.625rem;
    margin-top: unset;
    line-height: 1;
  }
}
.box-event .card > .dflex .contents .ttl {
  font-size: 1.5rem;
  line-height: 1.4;
  letter-spacing: -0.1px;
  margin: 0.875rem 0 1rem;
  padding: 0 0.5rem;
}
@media screen and (max-width: 767px) {
  .box-event .card > .dflex .contents .ttl {
    font-size: 5vw;
    font-size: 1.125rem;
    margin: 4vw 0 2.5vw;
    margin: 1rem 0 0.625rem;
  }
}
.box-event .card > .dflex .contents .txt {
  font-size: 1.125rem;
  line-height: 1.6;
  letter-spacing: -0.1px;
  padding: 0 0.5rem;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .box-event .card > .dflex .contents .txt {
    font-size: 3.5vw;
    font-size: 0.75rem;
    margin-bottom: 0;
  }
}
.box-event .card > .dflex .contents .btn {
  width: 14.875rem;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .box-event .card > .dflex .contents .btn {
    margin-top: auto;
  }
}
@media screen and (max-width: 767px) {
  .box-event .card > .dflex .contents .btn {
    width: 35vw;
    width: 9.5rem;
    margin-top: auto;
  }
}
.box-event .card > .dflex .contents .btn a {
  line-height: 2.6875rem;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.66px;
  border-radius: 1.5rem;
}
@media screen and (max-width: 767px) {
  .box-event .card > .dflex .contents .btn a {
    font-size: 3.5vw;
    line-height: 7vw;
    font-size: 0.875rem;
    line-height: 1.875rem;
  }
  .box-event .card > .dflex .contents .btn a span:after {
    width: 1.0625rem !important;
    height: 1.0625rem !important;
    right: -1.25rem !important;
  }
}
.box-event .swiper {
  overflow: unset;
  padding-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .box-event .swiper {
    height: 40rem;
  }
  .box-event .swiper .swiper-slide {
    height: 100%;
  }
}
.box-event .swiper-scrollbar {
  background-color: #fff;
  width: 60vw;
  left: 50%;
  transform: translateX(-50%);
}
.box-event .swiper-scrollbar-drag {
  background-color: #005eb8;
}
.box-event .swiper-button-prev,
.box-event .swiper-button-next {
  width: 8vw;
  height: 8vw;
  top: unset;
  bottom: -2.8vw;
}
.box-event .swiper-button-prev:after,
.box-event .swiper-button-next:after {
  display: none;
}
.box-event .swiper-button-prev {
  background: url("../img/icon_swiper_prev.svg") no-repeat top center;
  background-size: contain;
}
.box-event .swiper-button-next {
  background: url("../img/icon_swiper_next.svg") no-repeat top center;
  background-size: contain;
}

/*-----------------------------------------------------------------------------
常設イベント
-------------------------------------------------------------------------------*/
.box-event2 .card {
  border: 0.0625rem solid #fff;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .box-event2 .card {
    max-width: unset;
    width: 48.2%;
    width: 100%;
  }
}
.box-event2 .card > .dflex .img {
  background-color: #69B3E7;
}
@media screen and (max-width: 767px) {
  .box-event2 .card > .dflex .img {
    height: 30vw;
  }
}
.box-event2 .card > .dflex .img img {
  height: 12rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .box-event2 .card > .dflex .img img {
    height: 30vw;
  }
}
.box-event2 .card > .dflex .img .label-blue {
  width: auto;
  line-height: 2.125rem;
  font-size: 1.0625rem;
  letter-spacing: 0.52px;
  padding: 0 1rem;
}
@media screen and (max-width: 767px) {
  .box-event2 .card > .dflex .img .label-blue {
    width: auto;
    font-size: 2vw;
    line-height: 3vw;
    padding: 0 0.625rem;
  }
}
.box-event2 .card > .dflex .contents {
  color: #005eb8;
  background-color: #fff;
  padding-left: 0;
  padding-right: 0;
}
@media screen and (max-width: 767px) {
  .box-event2 .card > .dflex .contents {
    padding: 2vw 0;
  }
}
.box-event2 .card > .dflex .contents .ttl {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 1rem;
}
.box-event2 .card > .dflex .contents .ttl-narrow {
  letter-spacing: -2px;
}
@media screen and (max-width: 767px) {
  .box-event2 .card > .dflex .contents .ttl {
    font-size: 3.3vw;
    margin: 0 0 0.5rem;
    padding: unset;
  }
}
.box-event2 .card > .dflex .contents .btn {
  width: 12.5rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .box-event2 .card > .dflex .contents .btn {
    width: 80%;
  }
}
.box-event2 .card > .dflex .contents .btn a {
  line-height: 2.25rem;
  font-size: 1.125rem;
  letter-spacing: 0.54px;
}
@media screen and (max-width: 767px) {
  .box-event2 .card > .dflex .contents .btn a {
    font-size: 3vw;
    line-height: 6vw;
  }
}
.box-event2 .card-wide {
  height: 240px;
  margin-bottom: 2.75rem;
  max-width: 58.75rem;
  margin: 0 auto 2.75rem;
}
@media screen and (max-width: 767px) {
  .box-event2 .card-wide {
    height: auto;
    margin-bottom: 5vw;
  }
}
.box-event2 .card-wide > .dflex {
  flex-direction: row;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .box-event2 .card-wide > .dflex {
    flex-direction: column;
  }
}
.box-event2 .card-wide > .dflex .contents,
.box-event2 .card-wide > .dflex .img {
  width: 50%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .box-event2 .card-wide > .dflex .contents,
  .box-event2 .card-wide > .dflex .img {
    width: 100%;
  }
}
.box-event2 .card-wide > .dflex .img .dflex {
  height: 100%;
  width: 100%;
  align-items: center;
  justify-self: center;
  background-color: #3DB049;
}
@media screen and (max-width: 767px) {
  .box-event2 .card-wide > .dflex .img .dflex {
    padding: 1vw 0;
  }
}
.box-event2 .card-wide > .dflex .img .dflex img {
  width: 202px;
  height: 202px;
  display: block;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .box-event2 .card-wide > .dflex .img .dflex img {
    width: 28vw;
    height: 28vw;
  }
}
.box-event2 .card-wide > .dflex .contents {
  padding: 2.5rem 1.5rem;
  align-items: center;
  display: block;
}
@media screen and (max-width: 767px) {
  .box-event2 .card-wide > .dflex .contents {
    padding: 2vw;
  }
  .box-event2 .card-wide > .dflex .contents .btn {
    width: 32.5vw;
  }
}
.box-event2 .card-wide > .dflex .contents .ttl {
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 28px */
  letter-spacing: 0.6px;
  margin: 0;
  padding: 0;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .box-event2 .card-wide > .dflex .contents .ttl {
    text-align: center;
    font-size: 4vw;
    margin-bottom: 2vw;
  }
}
.box-event2 .card-wide > .dflex .contents .ttl span {
  display: block;
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .box-event2 .card-wide > .dflex .contents .ttl span {
    font-size: 3.5vw;
    margin-top: 0;
  }
}

/*-----------------------------------------------------------------------------
PROMOTION VIDEO
-------------------------------------------------------------------------------*/
.sec-pvideo {
  background-color: #DA291C;
  padding: 4.5rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .sec-pvideo {
    padding: 3.75rem 0;
  }
}
.sec-pvideo .thumbnail {
  width: 54.1875rem;
  margin-bottom: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .sec-pvideo .thumbnail {
    width: 100%;
  }
}
.sec-pvideo .btn-blue {
  width: 32.125rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .sec-pvideo .btn-blue {
    width: 85%;
  }
}
.sec-pvideo .btn-blue a {
  line-height: 6.25rem;
  border-radius: 3.125rem;
  box-shadow: 0px 5px 4px 0px rgba(109, 19, 10, 0.8);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.931px;
}
@media screen and (max-width: 767px) {
  .sec-pvideo .btn-blue a {
    font-size: 4.3vw;
    line-height: 15vw;
  }
}
.sec-pvideo .btn-blue a span {
  position: relative;
  z-index: 10;
}
.sec-pvideo .btn-blue a span:after {
  width: 2.5625rem;
  height: 2.5625rem;
  background-size: contain;
  right: -2.25rem;
}
@media screen and (max-width: 767px) {
  .sec-pvideo .btn-blue a span:after {
    width: 6vw;
    height: 6vw;
    right: -6vw;
  }
}
.sec-pvideo .btn-blue a span:before {
  width: 4.25rem;
  height: 4.4375rem;
  background: url("../img/icon_cracker_blue.svg") no-repeat left center;
  left: -2rem;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .sec-pvideo .btn-blue a span:before {
    background-size: 10vw auto;
    left: -4vw;
  }
}
@media screen and (min-width: 768px) {
  .sec-pvideo .btn-blue a:hover span:before {
    background: url("../img/icon_cracker_white.svg") no-repeat left center;
  }
}

/*-----------------------------------------------------------------------------
LINKS
-------------------------------------------------------------------------------*/
.sec-links {
  background-color: #FFCD00;
  padding: 4.5rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .sec-links {
    padding: 3.75rem 0;
  }
}
.sec-links .dflex {
  justify-content: center;
  gap: min(4vw, 30px);
}
@media screen and (max-width: 767px) {
  .sec-links .dflex {
    justify-content: unset;
    flex-direction: column;
    gap: 2.1875rem;
  }
}
.sec-links .dflex a {
  width: 100%;
  max-width: 30.125rem;
}
@media screen and (max-width: 767px) {
  .sec-links .dflex a {
    max-width: unset;
  }
}
.sec-links .dflex a img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .sec-links .dflex a:hover {
    transform: rotate(-5deg);
  }
}

@media screen and (min-width: 768px) {
  .linkopacity:hover {
    opacity: 0.7;
  }
}

/*-----------------------------------------------------------------------------
SHARE
-------------------------------------------------------------------------------*/
.sec-share {
  background-color: #00A3E0;
  padding: 4.5rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .sec-share {
    padding: 3.75rem 0;
  }
}
.sec-share ul {
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .sec-share ul {
    gap: 4vw;
  }
}
@media screen and (max-width: 767px) {
  .sec-share ul a {
    width: 13vw;
    display: block;
  }
  .sec-share ul a img {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .sec-share ul a:hover {
    opacity: 0.7;
  }
}
.sec-share .copyarea {
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  .sec-share .copyarea {
    gap: 2vw;
  }
  .sec-share .copyarea img {
    width: 10vw;
  }
}
.sec-share .copyarea .txt {
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .sec-share .copyarea .txt {
    font-size: 2.5vw;
  }
}

/*-----------------------------------------------------------------------------
KV
-------------------------------------------------------------------------------*/
.kv_inner {
  width: 100%;
  position: relative;
}
.kv_inner .img_chracters,
.kv_inner .kv_txt {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
}
.kv_inner .img_chracters {
  bottom: 23.2vw;
  animation: fadeIn 2s forwards;
}
@media screen and (max-width: 767px) {
  .kv_inner .img_chracters {
    bottom: -0.0625rem;
  }
}
.kv_inner .kv_txt {
  top: 3vw;
  animation: fadeInBounce 0.5s 1.2s forwards;
  z-index: 20;
}
@media screen and (max-width: 767px) {
  .kv_inner .kv_txt {
    top: 10vw;
  }
}
.kv_inner .kv_txt img {
  width: 55vw;
}
@media screen and (max-width: 767px) {
  .kv_inner .kv_txt img {
    width: 90vw;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.kv_inner {
  /* フェードインしながら、最後に軽くバウンスさせるアニメーション */
}
@keyframes fadeInBounce {
  0% {
    opacity: 0;
    transform: scale(0.5, 0.5) translateX(-45%);
  }
  70% {
    opacity: 1;
    transform: scale(1.3, 1.3) translateX(-45%);
  }
  100% {
    opacity: 1;
    transform: scale(1, 1) translateX(-50%);
  }
}

.youtube {
  width: 100%;
  aspect-ratio: 16/9;
  max-width: 52rem;
  margin: 0 auto 3.4375rem;
}
.youtube iframe {
  width: 100%;
  height: 100%;
}

.thumbnail {
  max-width: 31.125rem;
  max-height: 28.875rem;
}
.thumbnail img {
  width: 100%;
  height: 100%;
}

.txt-tm {
  font-size: 0.625rem;
  top: -8px;
}
@media screen and (max-width: 767px) {
  .txt-tm {
    font-size: 1.5vw;
    top: -2vw;
  }
}/*# sourceMappingURL=style.css.map */