@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400&family=Noto+Sans+JP:wght@400&family=Noto+Serif+JP:wght@300;500;700&family=Zen+Old+Mincho:wght@500;700&display=swap");
html {
  scroll-behavior: smooth;
}

dfn {
  font-style: normal;
}

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license

Copyright (c) 2013 Daniel Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

@-webkit-keyframes flashRow {
  0%, 100% {
    opacity: 1;
  }
  5% {
    opacity: 0.2;
  }
  14% {
    opacity: 0.8;
  }
  30% {
    opacity: 0.4;
  }
}

@keyframes flashRow {
  0%, 100% {
    opacity: 1;
  }
  5% {
    opacity: 0.2;
  }
  14% {
    opacity: 0.8;
  }
  30% {
    opacity: 0.4;
  }
}
.flashRow {
  -webkit-animation-name: flashRow;
  animation-name: flashRow;
}

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

.blinking {
  -webkit-animation: blink 1.5s ease-in-out infinite alternate;
  animation: blink 1.5s ease-in-out infinite alternate;
}

@-webkit-keyframes blink {
  0% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blink {
  0% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes loadingbg {
  0% {
    opacity: 0.2;
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes loadingbg {
  0% {
    opacity: 0.2;
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track::before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("../images/ajax-loader.gif") center center no-repeat;
}

/* Icons */
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 40px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover::before, .slick-prev:focus::before,
.slick-next:hover::before,
.slick-next:focus::before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev::before,
.slick-next::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  -webkit-transform: translate(0, -50%) rotate(45deg);
          transform: translate(0, -50%) rotate(45deg);
  border-style: solid;
  border-color: #69b6cc;
  position: absolute;
  top: 50%;
}

.slick-prev {
  left: -20px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -20px;
}
.slick-prev::before {
  border-width: 0 0 1px 1px;
  left: 5px;
}

.slick-next {
  right: -20px;
}
[dir=rtl] .slick-next {
  left: -20px;
  right: auto;
}
.slick-next::before {
  border-width: 1px 1px 0 0;
  right: 5px;
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 6px;
  width: 6px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 6px;
  width: 6px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover::before, .slick-dots li button:focus::before {
  opacity: 1;
}
.slick-dots li button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  font-family: "none";
  font-size: 6px;
  line-height: 6px;
  text-align: center;
  color: #69b6cc;
  background-color: #69b6cc;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  background-color: #69b6cc;
  opacity: 0.75;
}

@media screen and (max-width: 768.9px) {
  .song-slide .slide-item {
    margin: 5px;
  }
  .song-slide .slick-prev,
  .song-slide .slick-next {
    height: 60px;
    width: 20px;
  }
  .song-slide .slick-prev::before,
  .song-slide .slick-next::before {
    width: 14px;
    height: 14px;
  }
  .song-slide .slick-prev {
    left: -14px;
  }
  [dir=rtl] .song-slide .slick-prev {
    left: auto;
    right: -14px;
  }
  .song-slide .slick-prev::before {
    border-width: 0 0 1px 1px;
    left: 4px;
  }
  .song-slide .slick-next {
    right: -14px;
  }
  [dir=rtl] .song-slide .slick-next {
    left: -14px;
    right: auto;
  }
  .song-slide .slick-next::before {
    border-width: 1px 1px 0 0;
    right: 4px;
  }
}
@media screen and (min-width: 769px) {
  .song-slide .slide-item {
    margin: 0 20px;
  }
  .song-slide.slick-dotted {
    margin-bottom: 0;
  }
  .song-slide.slick-dotted .slick-dots {
    display: none;
  }
}

/* RESET
================================================================================ */
body {
  background: #000;
}

div {
  box-sizing: border-box;
}

figure {
  margin: 0;
}

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

a {
  cursor: pointer;
  color: #274a5f;
  transition: all 0.4s;
}
a:visited {
  color: #908b99;
}
a:hover, a:active, a:focus {
  color: #366683;
}
a:hover img, a:active img, a:focus img {
  -webkit-filter: brightness(120%);
          filter: brightness(120%);
}
a img {
  display: block;
  transition: all 0.6s;
}

p {
  text-align: justify;
  word-break: break-all;
  letter-spacing: 0.1em;
  line-height: 1.8;
}

div {
  box-sizing: border-box;
}

#contents,
#mainContents {
  width: 100%;
  background: transparent;
  float: none;
  clear: both;
  padding: 0;
  margin: 0;
  line-height: 1;
}

.sp_content {
  position: relative;
  font-family: "Noto Serif JP", serif;
  font-weight: 300;
  color: #1d272b;
  padding: 0;
  margin: 0;
  font-size: 14px;
  overflow: hidden;
}
.sp_content .sp_container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.sp_content .sp_container--l {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.sp_content .alt {
  display: none;
}
.sp_content .copy {
  position: relative;
  font-size: 0.8em;
  color: #4a82a5;
  font-weight: 300;
  margin-top: 0;
  background: rgba(29, 39, 43, 0.1);
  padding: 1.5em;
}

/* Background
================================================================================ */
.sp_content {
  background: url(../images/bg.jpg) no-repeat top center/cover;
  background-attachment: fixed;
}

/* HEADER
======================================== */
.bg_movie {
  position: fixed;
  left: 0;
  display: block;
  width: 100%;
  margin-top: -40px;
  height: calc(100vh + 40px);
  overflow: hidden;
  z-index: 0;
  transition: all 0.4s ease-out;
  opacity: 0;
  top: 92px;
}
.bg_movie::before {
  content: "";
  display: block;
  background: rgba(183, 206, 220, 0.1);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.bg_movie > * {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.ready .bg_movie {
  opacity: 1;
}
.fixed .bg_movie {
  top: 0;
}
@media screen and (min-width: 960px) {
  .bg_movie {
    top: 60px;
  }
  .fixed .bg_movie {
    top: 0;
  }
}

.sp_header {
  position: relative;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  transition: background-position 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0;
  color: #fff;
  background: url(../images/bg-sp.jpg) no-repeat top 40px center/120vw auto rgba(39, 74, 95, 0.8);
  background-attachment: fixed;
  padding: 1.5em;
}
.sp_header .bg_movie,
.sp_header #player {
  display: none;
}
.sp_header:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 0;
  background: linear-gradient(rgba(39, 74, 95, 0) 0, rgba(39, 74, 95, 0.8) 80%) no-repeat;
  height: 60%;
}
.sp_header .pr {
  font-family: "Cinzel", serif;
  font-weight: 700;
  color: #fff;
  font-size: clamp(18px, 3vw, 24px);
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 10;
  line-height: 1;
}
.fixed .sp_header {
  background-position: top center;
}
.scrolled--body .sp_header {
  background-attachment: scroll;
}
.sp_header .scroll {
  padding-top: 76vw;
  position: relative;
}
.sp_header h1 {
  padding: 0;
}
.sp_header h1 img {
  display: block;
  max-width: 55%;
  min-width: 280px;
  width: auto;
  max-height: 25vh;
  margin-left: auto;
  margin-right: auto;
}
.sp_header img {
  -webkit-transform: all 1s ease-out 0.1s;
          transform: all 1s ease-out 0.1s;
}
.sp_header .lead {
  text-shadow: 0 0 2px #000, 0 0 4px #000, 0 0 10px #000;
  font-size: clamp(12px, 2vw, 14px);
  position: relative;
  text-align: left;
  padding-top: 1.5em;
}
.sp_header .lead p {
  text-align: center;
}
.sp_header .lead p:not(:last-child) {
  margin-bottom: 1em;
}
@media screen and (min-width: 480px) {
  .sp_header:before {
    background: linear-gradient(rgba(39, 74, 95, 0) 0, rgba(39, 74, 95, 0.8) 80%) no-repeat;
    height: 40%;
  }
  .sp_header .lead {
    position: absolute;
    right: 0;
    top: 0;
    padding: 1.5em;
    width: 34em;
    z-index: 1;
    font-weight: bold;
  }
  .sp_header .lead p {
    text-align: right;
  }
}
@media screen and (min-width: 768px) {
  .sp_header .lead {
    position: absolute;
    right: 0;
    top: 0;
    padding: 1.5em;
  }
}
@media screen and (min-width: 769px) {
  .sp_header {
    background: #000;
  }
  .sp_header::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: url("../images/star.svg") no-repeat top 10% left 10%/50% auto;
    -webkit-animation: loadingbg 3s ease-in-out both;
            animation: loadingbg 3s ease-in-out both;
  }
  .ready .sp_header::before {
    content: none;
  }
  .sp_header .bg_movie,
  .sp_header #player {
    display: block;
  }
  .sp_header .scroll {
    padding-top: 50vh;
  }
}
@media screen and (min-width: 1200px) {
  .sp_header {
    font-size: 1.1em;
  }
}

/* SNS
======================================== */
.sp_content .share__list {
  z-index: 1;
  justify-content: center;
  margin: 1em 0 0;
}
.sp_content .share__list .share__link:hover {
  -webkit-filter: brightness(70%);
          filter: brightness(70%);
}
.sp_content .share__list .share__item:nth-of-type(n+2) {
  padding-left: 8px;
}
.sp_content .share__list .icon-hatebu,
.sp_content .share__list .icon-twitter,
.sp_content .share__list .icon-facebook-square .icon-facebook-square__f,
.sp_content .share__list .icon-line .icon-line__cloud {
  fill: #fff;
}
.sp_content .share__list .icon-line .icon-line__line {
  fill: #69b6cc;
}
.sp_content .share__list .icon-hatebu {
  width: 16px;
  height: 16px;
}
.sp_content .share__list .icon-twitter {
  width: 15px;
  height: 15px;
  margin: 2px 0 0 1px;
}
.sp_content .share__list .icon-facebook-square {
  position: relative;
  top: -1px;
  left: -1px;
}
.sp_content .share__list .icon-facebook-square,
.sp_content .share__list .icon-line {
  width: 16px;
  height: 16px;
}
.sp_content .share__list .icon-bg {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  cursor: pointer;
  border-radius: 50%;
  background: rgba(105, 182, 204, 0.6);
}
@media screen and (min-width: 768px) {
  .sp_content .share__list {
    justify-content: flex-end;
  }
}
@media screen and (min-width: 768px) {
  .sp_content .share__list {
    position: absolute;
    bottom: 0;
    right: 0;
  }
  .sp_content .share__list .icon-bg {
    width: 42px;
    height: 42px;
  }
  .sp_content .share__list .icon-hatebu {
    width: 18px;
    height: 18px;
  }
  .sp_content .share__list .icon-facebook-square,
  .sp_content .share__list .icon-line {
    width: 20px;
    height: 20px;
  }
  .sp_content .share__list .icon-facebook-square {
    top: -2px;
    left: -3px;
  }
  .sp_content .share__list .icon-twitter {
    width: 18px;
    height: 18px;
    margin: 2px 0 0 2px;
  }
}

.twitter_box iframe {
  max-width: 100%;
}

.sp_spec {
  position: relative;
  font-size: 0.875em;
  padding: 1.5em;
  background: rgba(114, 159, 187, 0.25);
}
.sp_spec dt {
  color: #35849a;
}
.sp_spec dt, .sp_spec dd {
  font-weight: 300;
}
.sp_spec dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.sp_spec dl dt, .sp_spec dl dd {
  padding: 0.4em 0;
  border-bottom: 1px solid rgba(114, 159, 187, 0.6);
}
.sp_spec dl dt {
  flex: 0 0 9.5em;
}
.sp_spec dl dd {
  flex: 0 0 calc(100% - 9.5em);
}
@media screen and (max-width: 767.9px) {
  .sp_spec dt.wide--sm {
    flex: 1 0 100%;
    border-bottom: none;
    padding-bottom: 0;
  }
  .sp_spec dd.wide--sm {
    flex: 1 0 100%;
    padding-bottom: 0.6em;
  }
}
@media screen and (min-width: 1200px) {
  .sp_spec dl dd:not(.wide--lg) {
    flex: 0 0 calc(50% - 9.5em);
  }
}

/* PARTS
======================================== */
.digit {
  display: inline-block;
  letter-spacing: -0.2em;
  margin-right: 0.3em;
}

.cap {
  font-size: 0.875em;
  line-height: 1.2;
  padding: 0.5em 0.1em;
}
a .cap {
  color: #1d272b;
  position: relative;
  transition: all 0.6s ease-out;
}
a .cap > * {
  position: relative;
  z-index: 1;
}
a .cap::before {
  z-index: 0;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 0;
  opacity: 0;
  background-color: #274a5f;
  transition: all 0.2s linear 0.2s;
}
a:hover .cap {
  padding-left: 0.5em;
}
a:hover .cap::before {
  height: 100%;
  opacity: 0.7;
}

.img169 {
  display: block;
  position: relative;
  width: 100%;
  margin: 0;
  padding-top: 56.25%;
  background: url(../images/dummy.jpg) no-repeat top center;
}
.img169 > * {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.sp_movie {
  display: block;
  position: relative;
  width: 100%;
}
.sp_movie::before {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}
.sp_movie > * {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.grid-1-2 {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .grid-1-2 {
    grid-template-columns: 1fr 1fr;
  }
}

a.outline-btn {
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding: 0.75em 1.5em 0.75em;
  max-width: 500px;
  text-align: center;
  font-size: 1.25em;
  letter-spacing: 0.15em;
  text-shadow: 0 0 2px #274a5f, 0 0 8px #274a5f;
  background-repeat: no-repeat;
  background-size: auto 1em, auto 1em, auto 1em, auto 1em, auto;
  background-position: top 5px left 5px, top 5px right 5px, bottom 5px left 5px, bottom 5px right 5px, top left;
  background-image: url(../images/cornar-tl.svg), url(../images/cornar-tr.svg), url(../images/cornar-bl.svg), url(../images/cornar-br.svg), linear-gradient(rgba(74, 130, 165, 0.8), rgba(105, 182, 204, 0.8));
  -webkit-backdrop-filter: blur(0.5em);
          backdrop-filter: blur(0.5em);
  font-weight: 500;
}
a.outline-btn, a.outline-btn:link, a.outline-btn:hover, a.outline-btn:visited {
  color: #fff;
}
a.outline-btn:hover {
  background-color: rgba(74, 130, 165, 0.8);
}

.detail {
  position: relative;
  text-align: center;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 1.25em;
  -webkit-animation: blink 1s ease-in-out infinite alternate;
          animation: blink 1s ease-in-out infinite alternate;
}
.detail::before, .detail::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 0;
  padding: 1em 0 0;
  margin: 0 0.5em;
  background: url(../images/arrow-down.svg) no-repeat bottom center/contain;
}

.outline-block {
  padding: 30px 18px;
  background-color: rgba(236, 251, 255, 0.8);
}
.outline-block .outline-body {
  margin-bottom: 2em;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
.outline-block .outline-media {
  margin-left: -4px;
  margin-right: -4px;
  margin-bottom: 1.5em;
}
.outline-block .outline-media img {
  display: block;
  width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.outline-block .outline-text {
  text-shadow: 0 0 2px #fff;
}
@media screen and (min-width: 480px) {
  .outline-block .outline-text {
    margin-top: 30px;
  }
  .outline-block .outline-media {
    margin-left: 0;
    margin-right: 0;
  }
}
@media screen and (min-width: 769px) {
  .outline-block .outline-media {
    float: right;
    width: 48%;
    margin-left: 2em;
    margin-right: 0;
    margin-bottom: 1em;
  }
  .outline-block .outline-body {
    margin-bottom: 3em;
  }
}
@media screen and (min-width: 1200px) {
  .outline-block {
    padding: 60px;
  }
  .outline-block .outline-body {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    margin-bottom: 4em;
  }
  .outline-block .outline-text {
    flex: 0 0 33em;
  }
  .outline-block .outline-media {
    float: none;
    width: auto;
    flex: 0 1 calc(100% - 36em);
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
  }
}

.pickup-btn {
  position: relative;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  background-color: rgba(74, 130, 165, 0.75);
  background-repeat: no-repeat;
  background-position: left 3px center, right 3px center;
  background-image: url(../images/btn-l.svg), url(../images/btn-r.svg);
  background-size: 0.7em auto;
  border: solid 1px #4a82a5;
  -webkit-backdrop-filter: blur(0.5em);
          backdrop-filter: blur(0.5em);
  font-weight: 500;
  text-shadow: 0 0 2px #274a5f, 0 0 8px #274a5f;
  color: #fff;
  text-shadow: 0 0 5px rgba(74, 130, 165, 0.8);
  padding: 0.4em 1.5em;
  font-size: 1em;
  letter-spacing: 0.05em;
}

div.pickup-btn {
  color: rgba(255, 255, 255, 0.4);
}
div.pickup-btn strong {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  color: #69b6cc;
  letter-spacing: 0.2em;
  background-color: rgba(0, 0, 0, 0.6);
}

a.pickup-btn, a.pickup-btn:link, a.pickup-btn:hover, a.pickup-btn:visited {
  color: #fff;
}
a.pickup-btn:hover {
  background-color: rgba(74, 130, 165, 0.8);
  box-shadow: 0 0 1em #69b6cc;
}

.pickup-item {
  background: url(../images/pickup01.jpg) no-repeat #000 center/cover;
  padding: 0 1em 1em 0;
  min-height: 36vw;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 0 1px rgba(74, 130, 165, 0.4);
}
.pickup-item::before {
  content: "";
  display: block;
  background-image: linear-gradient(150deg, rgba(236, 251, 255, 0.6) 0%, rgba(236, 251, 255, 0) 20%, rgba(39, 74, 95, 0) 45%, rgba(39, 74, 95, 0.4) 100%);
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.pickup-item h3 {
  font-weight: 500;
  letter-spacing: 0.15em;
  color: #fff;
  line-height: 1.2;
  border-left: 4px solid rgba(74, 130, 165, 0.6);
  padding-left: 0.75em;
  margin: 0.75em;
  text-shadow: 0 0 0.2em #1d272b, 0 0 0.3em #1d272b, 0 0 1em #1d272b;
  font-size: 1.2em;
  position: relative;
}
.pickup-item > div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.4em;
  margin: auto 0 0 auto;
  width: 65%;
  max-width: 21em;
}
.pickup-item figure {
  position: relative;
}
.pickup-item:nth-child(1) {
  background-position: top center;
}
.pickup-item:nth-child(2) {
  background-image: url(../images/pickup02.jpg);
}
.pickup-item:nth-child(3) {
  background-image: url(../images/pickup03.jpg);
  background-position: bottom center;
}
.pickup-item:nth-child(4) {
  background-image: url(../images/pickup04.jpg);
  background-position: top center;
}
.pickup-item:nth-child(5) {
  background-image: url(../images/pickup05.jpg);
  background-position: top center;
}
.pickup-item:nth-child(6) {
  background-image: url(../images/pickup06.jpg);
  background-position: top center;
}
@media screen and (min-width: 769px) {
  .pickup-item {
    min-height: 18em;
  }
  .pickup-item h3 {
    font-size: 1.5em;
  }
  .pickup-item.--col2 > div {
    grid-template-columns: repeat(2, 1fr);
    width: 80%;
    max-width: inherit;
  }
}

.pickup-block {
  font-size: 1.1428571429em;
  background: rgba(105, 182, 204, 0.6);
}
.pickup-block > * {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
}
@media screen and (min-width: 768px) {
  .pickup-block > * {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    padding: 2vw;
  }
}

.sp_heading {
  position: relative;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  color: #4a82a5;
  font-size: clamp(24px, 3.5vw, 36px);
  line-height: 1.2;
  letter-spacing: 0.05em;
  padding: 0;
  margin-bottom: 0.7em;
}
.sp_heading a {
  position: relative;
}
.sp_heading a, .sp_heading a:link, .sp_heading a:hover, .sp_heading a:visited {
  color: #4a82a5;
}
.sp_heading a::before {
  content: "";
  display: block;
  transition: all 0.5s ease-out;
  width: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  border-bottom: 1px solid #4a82a5;
}
.sp_heading a:hover {
  text-shadow: 0 0 0.5em rgba(255, 255, 255, 0.8);
}
.sp_heading a:hover::before {
  width: 100%;
}
.sp_heading.en {
  font-family: "Cinzel", serif;
}
.sp_heading:not(:first-child) {
  margin-top: 1.6em;
}
.sp_heading .s {
  font-size: 0.7em;
}
.sp_heading .digit {
  letter-spacing: -0.2em;
}

.sp_news_heading {
  position: relative;
  color: #4a82a5;
  text-align: center;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.2em;
  font-size: 1.25em;
  margin: 0 0 0.5em;
  padding: 0 0 1.3em;
  background: url(../images/border.svg) no-repeat bottom left/auto 0.8em, url(../images/border.svg) no-repeat bottom right/auto 0.8em;
}

.sp_news > * {
  --digit-1: 0;
  --digit-2: 0;
  --delay: calc((var(--digit-1) + var(--digit-2)) * 0.1s);
  -webkit-animation: fadeInUp 1 1s var(--delay) both;
          animation: fadeInUp 1 1s var(--delay) both;
}
.sp_news > *:nth-child(10n+0) {
  --digit-1: 0;
}
.sp_news > *:nth-child(10n+1) {
  --digit-1: 1;
}
.sp_news > *:nth-child(10n+2) {
  --digit-1: 2;
}
.sp_news > *:nth-child(10n+3) {
  --digit-1: 3;
}
.sp_news > *:nth-child(10n+4) {
  --digit-1: 4;
}
.sp_news > *:nth-child(10n+5) {
  --digit-1: 5;
}
.sp_news > *:nth-child(10n+6) {
  --digit-1: 6;
}
.sp_news > *:nth-child(10n+7) {
  --digit-1: 7;
}
.sp_news > *:nth-child(10n+8) {
  --digit-1: 8;
}
.sp_news > *:nth-child(10n+9) {
  --digit-1: 9;
}
.sp_news > *:nth-child(-n+10) {
  --digit-2: 0;
}
.sp_news > *:nth-child(n+10):nth-child(-n+20) {
  --digit-2: 10;
}
.sp_news > *:nth-child(n+20):nth-child(-n+30) {
  --digit-2: 20;
}
.sp_news > *:nth-child(n+30):nth-child(-n+40) {
  --digit-2: 30;
}
.sp_news > *:nth-child(n+40):nth-child(-n+50) {
  --digit-2: 40;
}
.sp_news > *:nth-child(n+50):nth-child(-n+60) {
  --digit-2: 50;
}
.sp_news > *:nth-child(n+60):nth-child(-n+70) {
  --digit-2: 60;
}
.sp_news > *:nth-child(n+70):nth-child(-n+80) {
  --digit-2: 70;
}
.sp_news > *:nth-child(n+80):nth-child(-n+90) {
  --digit-2: 80;
}
.sp_news > *:nth-child(n+90):nth-child(-n+100) {
  --digit-2: 90;
}
.sp_news > *:nth-child(n+100):nth-child(-n+110) {
  --digit-2: 100;
}
.sp_news > *:nth-child(n+21) {
  display: none;
}
.sp_news a {
  display: block;
  width: 100%;
  color: #1d272b;
}
.sp_news a:visited {
  color: #908b99;
}
.sp_news a:hover {
  color: #274a5f;
}
.sp_news li {
  display: block;
  width: 100%;
  transition: all 0.4s;
}
.sp_news .imgBox {
  overflow: hidden;
  margin-bottom: 0.6em;
  background-size: cover;
  background-position: center;
}
.sp_news .imgBox::before {
  content: "";
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
  height: 100%;
}
.sp_news .textWrap {
  margin-bottom: 0.8em;
}
.sp_news .title {
  font-family: "Noto Serif JP", serif;
  line-height: 1.4;
  margin-bottom: 0.2em;
  padding-bottom: 0.3em;
}
.sp_news-lead {
  color: #1d272b;
  font-size: 0.875em;
  text-align: justify;
  text-justify: inter-character;
}
.sp_news .date {
  font-size: 1em;
  line-height: 1.25;
  color: #3a6682;
  text-align: right;
  display: block;
  font-family: "Cinzel", serif;
  font-weight: normal;
  letter-spacing: 0;
}
.sp_news-cate {
  float: left;
  display: block;
  color: #000;
  border: 1px solid #000;
  padding: 0 0.5em;
  margin: 0 0.2em;
  font-size: 0.75em;
  line-height: 1.6666666667;
}
.sp_news--row li {
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #729fbb;
}
.sp_news--row li a {
  position: relative;
  transition: color 0.2s linear;
  margin-bottom: 0;
  display: flex;
  justify-content: space-between;
}
.sp_news--row li a, .sp_news--row li a:hover {
  color: #1d272b;
}
.sp_news--row li a:hover .title {
  -webkit-filter: drop-shadow(0 0 4px #69b6cc);
          filter: drop-shadow(0 0 4px #69b6cc);
}
.sp_news--row li a:hover .imgBox {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-filter: brightness(110%);
          filter: brightness(110%);
}
.sp_news--row li:first-child > a {
  padding-top: 0;
}
.sp_news--row li:last-child > a {
  padding-bottom: 0;
}
.sp_news--row .title {
  position: relative;
  transition: all 0.4s linear;
  letter-spacing: 0.1em;
}
.sp_news--row .title > * {
  position: relative;
  z-index: 1;
}
.sp_news--row .imgBox {
  flex-basis: 30%;
  margin-bottom: 0;
  transition: all 0.4s ease-out;
  height: 56.25%;
}
.sp_news--row .textWrap {
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-basis: 67%;
}

.link_block {
  display: block;
  text-align: center;
}
.link_block > * {
  display: block;
}
.link_block > *:not(:last-child) {
  margin-bottom: 18px;
}
.link_block img {
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 0 2px rgba(105, 182, 204, 0.6);
}

.sp_body {
  position: relative;
  z-index: 0;
}
.sp_body main {
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}

.sp_body-content {
  padding: 30px 18px 0;
}
.sp_body-content aside {
  margin-top: 30px;
}
.sp_body-content aside > * {
  margin: 0 0 18px;
  max-width: 100%;
  position: relative;
}
.sp_body-content .copy {
  margin-top: 30px;
  margin-left: -18px;
  margin-right: -18px;
}
.sp_body-content .copy p {
  text-align: center;
}
.sp_body-content .column_news > *:not(:last-child) {
  margin-bottom: 30px;
}
@media screen and (min-width: 769px) {
  .sp_body-content {
    padding: 60px 20px 0;
    background: url(../images/bg.jpg) no-repeat top center/cover;
    background-attachment: fixed;
  }
  .sp_body-content .copy {
    margin-left: -20px;
    margin-right: -20px;
    margin-top: 60px;
  }
  .sp_body-content > .sp_container {
    display: flex;
    flex-direction: row-reverse;
  }
  .sp_body-content .column_news {
    flex: 0 0 calc(100% - 300px);
  }
  .sp_body-content .column_news > *:not(:last-child) {
    margin-bottom: 60px;
  }
  .sp_body-content aside {
    margin-top: 0;
    display: block;
    flex: 0 0 300px;
    width: 300px;
    padding-right: 60px;
  }
  .sp_body-content aside > * {
    width: 100%;
    margin: 0 0 60px;
  }
  .sp_body-content aside .link_block {
    display: block;
  }
}
@media screen and (min-width: 1200px) {
  .sp_body-content {
    padding: 60px 60px 0;
  }
  .sp_body-content .copy {
    margin-top: 80px;
    margin-left: -60px;
    margin-right: -60px;
  }
}

.hint {
  display: none;
}

.fs-m {
  font-size: 1.125em;
}

.fs-d {
  font-size: 1em;
}

.ff-e {
  font-family: "Cinzel", serif;
}

@media screen and (max-width: 767.9px) {
  .over-md {
    display: none;
  }
}
@media screen and (min-width: 480px) {
  .under-sm {
    display: none;
  }
}
@media screen and (max-width: 479.9px) {
  .over-sm {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .under-md {
    display: none;
  }
}
.align-center {
  text-align: center;
}

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

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

.align-middle {
  vertical-align: middle;
}

.block-center {
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 767.9px) {
  .fs-m--sm {
    font-size: 1.1428571429em;
  }
  .fs-d--sm {
    font-size: 1em;
  }
  .align-center--sm {
    text-align: center;
  }
  .align-left--sm {
    text-align: left;
  }
  .align-right--sm {
    text-align: right;
  }
  .align-middle--sm {
    vertical-align: middle;
  }
}
@media screen and (max-width: 479.9px) {
  .fs-m--xs {
    font-size: 1.1428571429em;
  }
  .fs-d--xs {
    font-size: 1em;
  }
  .align-center--xs {
    text-align: center;
  }
  .align-left--xs {
    text-align: left;
  }
  .align-right--xs {
    text-align: right;
  }
  .align-middle--xs {
    vertical-align: middle;
  }
}
/* margin & padding */
.m-5em {
  margin: 0.5em;
}

.mt-5em {
  margin-top: 0.5em;
}

.mr-5em {
  margin-right: 0.5em;
}

.mb-5em {
  margin-bottom: 0.5em;
}

.ml-5em {
  margin-left: 0.5em;
}

.p-5em {
  padding: 0.5em;
}

.pt-5em {
  padding-top: 0.5em;
}

.pr-5em {
  padding-right: 0.5em;
}

.pb-5em {
  padding-bottom: 0.5em;
}

.pl-5em {
  padding-left: 0.5em;
}

.m-1em {
  margin: 1em;
}

.mt-1em {
  margin-top: 1em;
}

.mr-1em {
  margin-right: 1em;
}

.mb-1em {
  margin-bottom: 1em;
}

.ml-1em {
  margin-left: 1em;
}

.p-1em {
  padding: 1em;
}

.pt-1em {
  padding-top: 1em;
}

.pr-1em {
  padding-right: 1em;
}

.pb-1em {
  padding-bottom: 1em;
}

.pl-1em {
  padding-left: 1em;
}

.m-2em {
  margin: 2em;
}

.mt-2em {
  margin-top: 2em;
}

.mr-2em {
  margin-right: 2em;
}

.mb-2em {
  margin-bottom: 2em;
}

.ml-2em {
  margin-left: 2em;
}

.p-2em {
  padding: 2em;
}

.pt-2em {
  padding-top: 2em;
}

.pr-2em {
  padding-right: 2em;
}

.pb-2em {
  padding-bottom: 2em;
}

.pl-2em {
  padding-left: 2em;
}

.m-s {
  margin: 18px;
}

.mt-s {
  margin-top: 18px;
}

.mr-s {
  margin-right: 18px;
}

.mb-s {
  margin-bottom: 18px;
}

.ml-s {
  margin-left: 18px;
}

.p-s {
  padding: 18px;
}

.pt-s {
  padding-top: 18px;
}

.pr-s {
  padding-right: 18px;
}

.pb-s {
  padding-bottom: 18px;
}

.pl-s {
  padding-left: 18px;
}

.m-m {
  margin: 30px;
}

.mt-m {
  margin-top: 30px;
}

.mr-m {
  margin-right: 30px;
}

.mb-m {
  margin-bottom: 30px;
}

.ml-m {
  margin-left: 30px;
}

.p-m {
  padding: 30px;
}

.pt-m {
  padding-top: 30px;
}

.pr-m {
  padding-right: 30px;
}

.pb-m {
  padding-bottom: 30px;
}

.pl-m {
  padding-left: 30px;
}

.m-l {
  margin: 60px;
}

.mt-l {
  margin-top: 60px;
}

.mr-l {
  margin-right: 60px;
}

.mb-l {
  margin-bottom: 60px;
}

.ml-l {
  margin-left: 60px;
}

.p-l {
  padding: 60px;
}

.pt-l {
  padding-top: 60px;
}

.pr-l {
  padding-right: 60px;
}

.pb-l {
  padding-bottom: 60px;
}

.pl-l {
  padding-left: 60px;
}

.m-0 {
  margin: 0px;
}

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

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

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

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

.p-0 {
  padding: 0px;
}

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

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

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

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

@media screen and (min-width: 480px) {
  .m-5em {
    margin: 0.5em;
  }
  .mt-5em {
    margin-top: 0.5em;
  }
  .mr-5em {
    margin-right: 0.5em;
  }
  .mb-5em {
    margin-bottom: 0.5em;
  }
  .ml-5em {
    margin-left: 0.5em;
  }
  .p-5em {
    padding: 0.5em;
  }
  .pt-5em {
    padding-top: 0.5em;
  }
  .pr-5em {
    padding-right: 0.5em;
  }
  .pb-5em {
    padding-bottom: 0.5em;
  }
  .pl-5em {
    padding-left: 0.5em;
  }
  .m-1em {
    margin: 1em;
  }
  .mt-1em {
    margin-top: 1em;
  }
  .mr-1em {
    margin-right: 1em;
  }
  .mb-1em {
    margin-bottom: 1em;
  }
  .ml-1em {
    margin-left: 1em;
  }
  .p-1em {
    padding: 1em;
  }
  .pt-1em {
    padding-top: 1em;
  }
  .pr-1em {
    padding-right: 1em;
  }
  .pb-1em {
    padding-bottom: 1em;
  }
  .pl-1em {
    padding-left: 1em;
  }
  .m-2em {
    margin: 2em;
  }
  .mt-2em {
    margin-top: 2em;
  }
  .mr-2em {
    margin-right: 2em;
  }
  .mb-2em {
    margin-bottom: 2em;
  }
  .ml-2em {
    margin-left: 2em;
  }
  .p-2em {
    padding: 2em;
  }
  .pt-2em {
    padding-top: 2em;
  }
  .pr-2em {
    padding-right: 2em;
  }
  .pb-2em {
    padding-bottom: 2em;
  }
  .pl-2em {
    padding-left: 2em;
  }
  .m-s {
    margin: 20px;
  }
  .mt-s {
    margin-top: 20px;
  }
  .mr-s {
    margin-right: 20px;
  }
  .mb-s {
    margin-bottom: 20px;
  }
  .ml-s {
    margin-left: 20px;
  }
  .p-s {
    padding: 20px;
  }
  .pt-s {
    padding-top: 20px;
  }
  .pr-s {
    padding-right: 20px;
  }
  .pb-s {
    padding-bottom: 20px;
  }
  .pl-s {
    padding-left: 20px;
  }
  .m-m {
    margin: 60px;
  }
  .mt-m {
    margin-top: 60px;
  }
  .mr-m {
    margin-right: 60px;
  }
  .mb-m {
    margin-bottom: 60px;
  }
  .ml-m {
    margin-left: 60px;
  }
  .p-m {
    padding: 60px;
  }
  .pt-m {
    padding-top: 60px;
  }
  .pr-m {
    padding-right: 60px;
  }
  .pb-m {
    padding-bottom: 60px;
  }
  .pl-m {
    padding-left: 60px;
  }
  .m-l {
    margin: 80px;
  }
  .mt-l {
    margin-top: 80px;
  }
  .mr-l {
    margin-right: 80px;
  }
  .mb-l {
    margin-bottom: 80px;
  }
  .ml-l {
    margin-left: 80px;
  }
  .p-l {
    padding: 80px;
  }
  .pt-l {
    padding-top: 80px;
  }
  .pr-l {
    padding-right: 80px;
  }
  .pb-l {
    padding-bottom: 80px;
  }
  .pl-l {
    padding-left: 80px;
  }
  .m-0 {
    margin: 0px;
  }
  .mt-0 {
    margin-top: 0px;
  }
  .mr-0 {
    margin-right: 0px;
  }
  .mb-0 {
    margin-bottom: 0px;
  }
  .ml-0 {
    margin-left: 0px;
  }
  .p-0 {
    padding: 0px;
  }
  .pt-0 {
    padding-top: 0px;
  }
  .pr-0 {
    padding-right: 0px;
  }
  .pb-0 {
    padding-bottom: 0px;
  }
  .pl-0 {
    padding-left: 0px;
  }
}