@charset "UTF-8";
/* カラーリスト
*****************************/
/* カラーリスト
*****************************/
/* GROUND animation
***********************************/
.upShow {
  animation: jsUpShow 1.2s 1s cubic-bezier(0.165, 0.84, 0.44, 1) backwards;
}

@keyframes jsUpShow {
  0% {
    opacity: 0;
    transform: translateY(40px);
    visibility: hidden;
  }
  60% {
    opacity: 0.8;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
}
@keyframes jsDownShow {
  0% {
    opacity: 0;
    transform: translateY(-30px);
    visibility: hidden;
  }
  60% {
    opacity: 0.8;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
}
@keyframes jsFedeShow {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
@keyframes jsFedeHide {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes moveFromTop {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes moveFromLeft {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes moveFromRight {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes moveFromBottom {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes moveToTop {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}
@keyframes moveToLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes moveToRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes moveToBottom {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes maskFromTop {
  0% {
    clip-path: inset(0 0 100% 0);
    visibility: visible;
  }
  100% {
    clip-path: inset(0 0 0 0);
    visibility: visible;
  }
}
@keyframes maskFromLeft {
  0% {
    clip-path: inset(0 0 0 100%);
    visibility: visible;
  }
  100% {
    clip-path: inset(0 0 0 0);
    visibility: visible;
  }
}
@keyframes maskFromRight {
  0% {
    clip-path: inset(0 100% 0 0);
    visibility: visible;
  }
  100% {
    clip-path: inset(0 0 0 0);
    visibility: visible;
  }
}
@keyframes maskFromBottom {
  0% {
    clip-path: inset(100% 0 0 0);
    visibility: visible;
  }
  100% {
    clip-path: inset(0 0 0 0);
    visibility: visible;
  }
}
@keyframes maskToTop {
  0% {
    clip-path: inset(0 0 0 0);
    visibility: visible;
  }
  100% {
    clip-path: inset(0 0 100% 0);
    visibility: visible;
  }
}
@keyframes maskToLeft {
  0% {
    clip-path: inset(0 0 0 0);
    visibility: visible;
  }
  100% {
    clip-path: inset(0 100% 0 0);
    visibility: visible;
  }
}
@keyframes maskToRight {
  0% {
    clip-path: inset(0 0 0 0);
    visibility: visible;
  }
  100% {
    clip-path: inset(0 0 0 100%);
    visibility: visible;
  }
}
@keyframes maskToBottom {
  0% {
    clip-path: inset(0 0 0 0);
    visibility: visible;
  }
  100% {
    clip-path: inset(100% 0 0 0);
    visibility: visible;
  }
}
[data-mask=FromTop] {
  animation: maskFromTop 0.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

[data-mask=FromLeft] {
  animation: maskFromLeft 0.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

[data-mask=FromRight] {
  animation: maskFromRight 0.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

[data-mask=FromBottom] {
  animation: maskFromBottom 0.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

[data-mask=ToTop] {
  animation: maskToTop 0.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

[data-mask=ToLeft] {
  animation: maskToLeft 0.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

[data-mask=ToRight] {
  animation: maskToRight 0.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

[data-mask=ToBottom] {
  animation: maskToBottom 0.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

@keyframes ScalefadeIn {
  0% {
    transform: scale(1.12);
    opacity: 0;
    visibility: hidden;
  }
  100% {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
  }
}
@keyframes ScalefadeInIconSp {
  0% {
    transform: scale(1.5);
    opacity: 0;
    visibility: hidden;
  }
  100% {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes accordionHeight {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}
.jsStanby {
  visibility: hidden;
}

.scrAnim {
  position: relative;
}

@keyframes jsBlurShow {
  0% {
    filter: blur(8px);
    opacity: 0;
  }
  50% {
    filter: blur(2px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}
.animShow {
  animation: jsUpShow 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
.animShow.blur {
  animation: jsBlurShow 1.25s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.animShow.ScalefadeIn {
  animation: ScalefadeInIconSp 0.7s cubic-bezier(0.165, 0.84, 0.44, 1) 0.6s forwards;
  opacity: 0;
}

.scrAnimMask {
  visibility: hidden;
}

.animMaskShow {
  visibility: visible;
  animation: maskFromTop 0.75s cubic-bezier(0.19, 1, 0.22, 1);
}

@keyframes moveAround {
  0% {
    transform: translateY(-15px);
  }
  50% {
    transform: translateY(15px);
  }
  100% {
    transform: translateY(-15px);
  }
}
.moveAround {
  animation: moveAround 10s ease-in-out infinite;
}

.swap-enter-active {
  z-index: 101 !important;
}

.swap-leave-to {
  transition: all 0.5s ease-out;
  opacity: 0;
}

.modal-fade-enter-active, .modal-fade-leave-active {
  transition: opacity 0.5s;
}

.modal-fade-enter-from, .modal-fade-leave-to {
  opacity: 0;
}

/* カラーリスト
*****************************/
/* GROUND override
***********************************/
html {
  font-size: 62.5%;
}
@media screen and (max-width: 767.4px) {
  html {
    font-size: 2.6666666667vw;
  }
}
@media screen and (min-width: 767.5px) {
  html {
    font-size: 10px;
  }
}
@media print {
  html {
    font-size: 10px;
  }
}

.main-wrap {
  --scale: 1;
  color: #000;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  position: relative;
  line-height: 1.5;
  letter-spacing: normal;
  font-weight: normal;
  font-feature-settings: "palt";
  font-family: "Sawarabi Gothic", sans-serif;
  background-color: #fff;
}
.main-wrap::after {
  content: "";
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0vw;
  z-index: 10;
  pointer-events: none;
  background-color: #FFF;
}
.main-wrap.ready::after {
  pointer-events: none;
  animation: fadeOut 1s both;
}
.main-wrap *, .main-wrap *:before, .main-wrap *:after {
  box-sizing: border-box;
}
.main-wrap .bold {
  font-weight: bold;
}
.main-wrap ::selection {
  color: #000;
  background-color: #D9D9D9;
}
.main-wrap h1, .main-wrap h2, .main-wrap h3, .main-wrap h4, .main-wrap h5, .main-wrap h6, .main-wrap p {
  margin: 0;
}
.main-wrap a {
  text-decoration: none;
  color: #000;
  outline: none;
}
.main-wrap a:focus {
  outline: none;
}
.main-wrap a:hover {
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.main-wrap a:visited {
  color: #000;
}
.main-wrap .en {
  font-family: "Prata", serif;
}
.main-wrap .en-m {
  font-family: "Montserrat", sans-serif;
}
.main-wrap i {
  display: inline-block;
}
.main-wrap ul, .main-wrap ol {
  padding: 0;
  margin: 0;
}
.main-wrap li {
  list-style: none;
}
.main-wrap figure {
  margin: 0;
}
.main-wrap img {
  width: 100%;
  backface-visibility: hidden;
  vertical-align: top;
  height: auto;
}
.main-wrap canvas, .main-wrap video {
  vertical-align: top;
}
.main-wrap button {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  text-transform: inherit;
  white-space: normal;
  cursor: pointer;
}
.main-wrap input, .main-wrap button, .main-wrap textarea, .main-wrap select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  appearance: none;
  font-family: inherit;
  font-weight: inherit;
  color: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  backface-visibility: hidden;
}
.main-wrap input:focus, .main-wrap textarea:focus, .main-wrap input[type]:focus, .main-wrap .uneditable-input:focus {
  outline: 0;
  box-shadow: none;
  border: none;
  background-color: transparent;
}
.main-wrap select,
.main-wrap input[type=text],
.main-wrap input[type=search],
.main-wrap input[type=tel],
.main-wrap input[type=url],
.main-wrap input[type=email],
.main-wrap input[type=password],
.main-wrap input[type=number],
.main-wrap input[type=file],
.main-wrap input[type=date],
.main-wrap textarea,
.main-wrap select:focus,
.main-wrap input[type=text]:focus,
.main-wrap input[type=search]:focus,
.main-wrap input[type=tel]:focus,
.main-wrap input[type=url]:focus,
.main-wrap input[type=email]:focus,
.main-wrap input[type=password]:focus,
.main-wrap input[type=number]:focus,
.main-wrap input[type=file]:focus,
.main-wrap input[type=date]:focus,
.main-wrap textarea:focus {
  padding: 0 1rem;
  border: 2px solid #000;
  width: 335px;
  height: 56px;
  font-size: 15px;
  font-weight: bold;
}
@media (max-width: 766px) {
  .main-wrap select,
  .main-wrap input[type=text],
  .main-wrap input[type=search],
  .main-wrap input[type=tel],
  .main-wrap input[type=url],
  .main-wrap input[type=email],
  .main-wrap input[type=password],
  .main-wrap input[type=number],
  .main-wrap input[type=file],
  .main-wrap input[type=date],
  .main-wrap textarea,
  .main-wrap select:focus,
  .main-wrap input[type=text]:focus,
  .main-wrap input[type=search]:focus,
  .main-wrap input[type=tel]:focus,
  .main-wrap input[type=url]:focus,
  .main-wrap input[type=email]:focus,
  .main-wrap input[type=password]:focus,
  .main-wrap input[type=number]:focus,
  .main-wrap input[type=file]:focus,
  .main-wrap input[type=date]:focus,
  .main-wrap textarea:focus {
    padding: 0 15px;
    height: 42px;
    font-size: 12px;
    border: 1px solid #000;
    width: 100%;
  }
  html.ANDROID .main-wrap select,
  html.ANDROID .main-wrap input[type=text],
  html.ANDROID .main-wrap input[type=search],
  html.ANDROID .main-wrap input[type=tel],
  html.ANDROID .main-wrap input[type=url],
  html.ANDROID .main-wrap input[type=email],
  html.ANDROID .main-wrap input[type=password],
  html.ANDROID .main-wrap input[type=number],
  html.ANDROID .main-wrap input[type=file],
  html.ANDROID .main-wrap input[type=date],
  html.ANDROID .main-wrap textarea,
  html.ANDROID .main-wrap select:focus,
  html.ANDROID .main-wrap input[type=text]:focus,
  html.ANDROID .main-wrap input[type=search]:focus,
  html.ANDROID .main-wrap input[type=tel]:focus,
  html.ANDROID .main-wrap input[type=url]:focus,
  html.ANDROID .main-wrap input[type=email]:focus,
  html.ANDROID .main-wrap input[type=password]:focus,
  html.ANDROID .main-wrap input[type=number]:focus,
  html.ANDROID .main-wrap input[type=file]:focus,
  html.ANDROID .main-wrap input[type=date]:focus,
  html.ANDROID .main-wrap textarea:focus {
    padding: 0 15px;
  }
}
.main-wrap input[type=search]::-webkit-search-cancel-button {
  display: none;
}
.main-wrap select {
  cursor: pointer;
  font-weight: bold;
}
@media (max-width: 767.4px) {
  .main-wrap select {
    background-position: right 1.2rem top 50%;
    background-size: 1.2rem;
  }
}
.main-wrap textarea, .main-wrap textarea:focus {
  font-weight: bold;
  height: 135px;
}
.main-wrap input[type=checkbox],
.main-wrap input[type=radio],
.main-wrap input[type=checkbox]:focus,
.main-wrap input[type=radio]:focus {
  width: 20px;
  height: 20px;
  border: 1px solid #CCCCCC;
  margin-right: 10px;
  position: relative;
}
.main-wrap input[type=checkbox][type=radio],
.main-wrap input[type=radio][type=radio],
.main-wrap input[type=checkbox]:focus[type=radio],
.main-wrap input[type=radio]:focus[type=radio] {
  border-radius: 20px;
}
.main-wrap input[type=checkbox]:checked:before,
.main-wrap input[type=radio]:checked:before {
  background-color: #333333;
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
}
.main-wrap input[type=checkbox]:checked[type=radio],
.main-wrap input[type=radio]:checked[type=radio] {
  border-radius: 20px;
}
.main-wrap input[type=checkbox]:checked[type=radio]:before,
.main-wrap input[type=radio]:checked[type=radio]:before {
  border-radius: 20px;
}
.main-wrap * {
  -webkit-tap-highlight-color: transparent;
}

/* カラーリスト
*****************************/
.main-wrap svg {
  width: 100%;
  height: auto;
}
.main-wrap img, .main-wrap svg {
  width: 100%;
  height: auto;
}
.main-wrap img {
  backface-visibility: hidden;
}
.main-wrap picture {
  display: block;
}
@media (min-width: 767.5px) {
  .main-wrap .spOnly {
    display: none;
  }
  .main-wrap .btn {
    text-decoration: none;
  }
}
@media (max-width: 767.4px) {
  .main-wrap .pcOnly {
    display: none;
  }
}
.main-wrap svg.sprite,
.main-wrap svg.sprite use {
  fill: currentColor;
}
.main-wrap .bg-muted {
  background-color: #F2F2F0;
}
.main-wrap * {
  backface-visibility: hidden;
}
.main-wrap .btn {
  transition: opacity 0.5s;
}
@media (min-width: 767.5px) {
  .main-wrap .btn:hover {
    opacity: 0.5;
  }
  .main-wrap .btn:hover.round {
    opacity: 0.8;
  }
}
.main-wrap .hide {
  display: none;
}
.main-wrap .hidden {
  visibility: hidden;
}

/* ========================================================================
  Component: Modal
========================================================================== */
/*
* 1. Hide by default
* 2. Set position
* 3. Allow scrolling for the modal dialog
* 4. Horizontal padding
* 5. Mask the background page
* 6. Fade-in transition
*/
.uk-modal {
  /* 1 */
  display: none;
  /* 2 */
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1010;
  /* 3 */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  /* 4 */
  padding: 15px 15px;
  /* 5 */
  background: rgba(0, 0, 0, 0.6);
  /* 6 */
  opacity: 0;
  transition: opacity 0.15s linear;
}

/* Phone landscape and bigger */
@media (min-width: 640px) {
  .uk-modal {
    padding: 50px 30px;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .uk-modal {
    padding-left: 40px;
    padding-right: 40px;
  }
}
/*
* Open
*/
.uk-modal.uk-open {
  opacity: 1;
}

/* Page
========================================================================== */
/*
* Prevent scrollbars
*/
.uk-modal-page {
  overflow: hidden;
}

/* Dialog
========================================================================== */
/*
* 1. Create position context for spinner and close button
* 2. Dimensions
* 3. Fix `max-width: 100%` not working in combination with flex and responsive images in IE11
*    `!important` needed to overwrite `uk-width-auto`. See `#modal-media-image` in tests
* 4. Style
* 5. Slide-in transition
*/
.uk-modal-dialog {
  /* 1 */
  position: relative;
  /* 2 */
  box-sizing: border-box;
  margin: 0 auto;
  width: 600px;
  /* 3 */
  max-width: calc(100% - 0.01px) !important;
  /* 4 */
  background: #fff;
  /* 5 */
  opacity: 0;
  will-change: transform;
  transform: scale(0.8);
  transition: 0.5s;
  transition-property: opacity, transform;
}

/*
* Open
*/
.uk-open > .uk-modal-dialog {
  will-change: transform;
  opacity: 1;
  transform: scale(1);
  transition: all 0.5s;
}

/* Close
* Adopts `uk-close`
========================================================================== */
[class*=uk-modal-close-] {
  position: absolute;
  z-index: 1010;
  top: 10px;
  right: 10px;
  padding: 5px;
}

/*
* Remove margin from adjacent element
*/
[class*=uk-modal-close-]:first-child + * {
  margin-top: 0;
}

.uk-modal-dialog {
  background-color: #fff;
}

.uk-flex {
  display: flex;
}

.uk-flex-top {
  align-items: flex-start;
}

.uk-margin-auto-vertical {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.uk-width-auto {
  width: auto;
}

.uk-switcher > li {
  display: none;
}
.uk-switcher > li.uk-active {
  display: block;
}

/* ========================================================================
  Component: Dropdown
========================================================================== */
/* Show */
.uk-dropdown {
  display: none;
}
.uk-dropdown.uk-open {
  display: block;
}

@media (min-width: 767.5px) {
  br.sp {
    display: none;
  }
}
@media (max-width: 767.4px) {
  br.pc {
    display: none;
  }
}

@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
  touch-action: pan-y;
}

.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
}

.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-lock {
  display: none;
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-vertical > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-vertical {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

/* Preloader */
:root {
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  */
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev,
.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-top,
.swiper-cube .swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-right {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-top,
.swiper-flip .swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-right {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  backface-visibility: hidden;
  overflow: hidden;
}

/*
 * Fade
 */
.uk-animation-fade {
  animation-name: uk-fade;
  animation-duration: 0.8s;
  animation-timing-function: linear;
}

/* Keyframes used by animation classes
 ========================================================================== */
/*
 * Fade
 */
@keyframes uk-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* Direction modifier
 ========================================================================== */
.uk-animation-reverse {
  animation-direction: reverse;
  animation-timing-function: ease-in;
}

/* Duration modifier
 ========================================================================== */
.uk-animation-fast {
  animation-duration: 0.1s;
}

/* Toggle animation based on the State of the Parent Element
 ========================================================================== */
.uk-animation-toggle:not(:hover):not(:focus) [class*=uk-animation-] {
  animation-name: none;
}

/* カラーリスト
*****************************/
/* 共通部分
*******************/
/*****************************************
/* パーツ
/*****************************************


/* button シェアボタン
*****************************/
.article-share {
  display: flex;
  flex-wrap: wrap;
}
@media all and (min-width: 767.5px) {
  .article-share {
    gap: calc( 20px * var(--scale));
  }
}
@media all and (max-width: 767.4px) {
  .article-share {
    gap: calc( 10px * var(--scale));
  }
}
.article-share .hvr-color {
  border-radius: 50%;
}
@media (hover: hover) and (pointer: fine) {
  .article-share .hvr-color:focus .article-share-button::after {
    background: rgba(19, 50, 130, 0.2);
  }
  .article-share .hvr-color:hover .article-share-button::after {
    background: rgba(19, 50, 130, 0.2);
  }
}

.article-share-button {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 50%;
}
@media all and (min-width: 767.5px) {
  .article-share-button {
    width: calc( 60px * var(--scale));
  }
}
@media all and (max-width: 767.4px) {
  .article-share-button {
    width: calc( 60px * var(--scale));
  }
}
@media all and (min-width: 767.5px) {
  .article-share-button {
    height: calc( 60px * var(--scale));
  }
}
@media all and (max-width: 767.4px) {
  .article-share-button {
    height: calc( 60px * var(--scale));
  }
}
@media all and (min-width: 767.5px) {
  .article-share-button .btn-icon {
    width: calc( 60px * var(--scale));
  }
}
@media all and (max-width: 767.4px) {
  .article-share-button .btn-icon {
    width: calc( 60px * var(--scale));
  }
}
.article-share-button::after {
  content: "";
  width: 100%;
  height: 100%;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.2s;
}
@media all and (min-width: 767.5px) {
  .article-share-button::after {
    border-radius: calc( 60px * var(--scale));
  }
}
@media all and (max-width: 767.4px) {
  .article-share-button::after {
    border-radius: calc( 60px * var(--scale));
  }
}

/* button リンクボタン
*****************************/
.link-list {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
  justify-content: center;
}
@media all and (min-width: 767.5px) {
  .link-list {
    gap: calc( 23px * var(--scale)) calc( 40px * var(--scale));
  }
}
@media all and (max-width: 767.4px) {
  .link-list {
    gap: calc( 14px * var(--scale)) calc( 0px * var(--scale));
  }
}
@media all and (min-width: 767.5px) {
  .link-list {
    width: calc( 840px * var(--scale));
  }
}
@media all and (max-width: 767.4px) {
  .link-list {
    width: calc( 350px * var(--scale));
  }
}
@media (max-width: 767.4px) {
  .link-list {
    flex-direction: column;
  }
}

.link-button {
  display: block;
  display: flex;
  align-items: center;
}
@media all and (min-width: 767.5px) {
  .link-button {
    padding: calc( 0px * var(--scale)) calc( 24px * var(--scale)) calc( 0px * var(--scale)) calc( 39px * var(--scale));
  }
}
@media all and (max-width: 767.4px) {
  .link-button {
    padding: calc( 0px * var(--scale)) calc( 0px * var(--scale)) calc( 0px * var(--scale)) calc( 26px * var(--scale));
  }
}
@media all and (min-width: 767.5px) {
  .link-button {
    width: calc( 400px * var(--scale));
  }
}
@media all and (max-width: 767.4px) {
  .link-button {
    width: calc( 350px * var(--scale));
  }
}
@media all and (min-width: 767.5px) {
  .link-button {
    height: calc( 37px * var(--scale));
  }
}
@media all and (max-width: 767.4px) {
  .link-button {
    height: calc( 37px * var(--scale));
  }
}
@media all and (min-width: 767.5px) {
  .link-button {
    gap: calc( 12px * var(--scale));
  }
}
@media all and (max-width: 767.4px) {
  .link-button {
    gap: calc( 0px * var(--scale));
  }
}
@media (max-width: 767.4px) {
  .link-button {
    justify-content: space-between;
  }
}
.link-button .btn-text {
  display: inline-block;
  line-height: 1.2;
  letter-spacing: 0.015em;
  font-weight: 600;
  color: #4E5975;
  white-space: pre-wrap;
  position: relative;
  letter-spacing: 0.015em;
}
@media all and (min-width: 767.5px) {
  .link-button .btn-text {
    width: calc( 288px * var(--scale));
  }
}
@media all and (max-width: 767.4px) {
  .link-button .btn-text {
    width: calc( 277px * var(--scale));
  }
}
@media all and (min-width: 767.5px) {
  .link-button .btn-text {
    max-width: calc( 288px * var(--scale));
  }
}
@media all and (max-width: 767.4px) {
  .link-button .btn-text {
    max-width: calc( 277px * var(--scale));
  }
}
@media (min-width: 767.5px) {
  .link-button .btn-text {
    width: auto;
  }
}
@media all and (min-width: 767.5px) {
  .link-button .btn-text {
    font-size: calc( 18px * var(--scale));
  }
}
@media all and (max-width: 767.4px) {
  .link-button .btn-text {
    font-size: calc( 16px * var(--scale));
  }
}
.link-button .btn-text::before {
  content: "";
  border-radius: 50%;
  background-color: #4E5975;
  display: inline-block;
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
}
@media all and (min-width: 767.5px) {
  .link-button .btn-text::before {
    width: calc( 7px * var(--scale));
  }
}
@media all and (max-width: 767.4px) {
  .link-button .btn-text::before {
    width: calc( 6px * var(--scale));
  }
}
@media all and (min-width: 767.5px) {
  .link-button .btn-text::before {
    height: calc( 7px * var(--scale));
  }
}
@media all and (max-width: 767.4px) {
  .link-button .btn-text::before {
    height: calc( 6px * var(--scale));
  }
}
@media all and (min-width: 767.5px) {
  .link-button .btn-text::before {
    margin-left: calc( -19px * var(--scale));
  }
}
@media all and (max-width: 767.4px) {
  .link-button .btn-text::before {
    margin-left: calc( -16px * var(--scale));
  }
}
.link-button:nth-of-type(n+3) {
  margin-left: 0;
  margin-right: auto;
}
.link-button .icon-link {
  display: inline-block;
}
@media all and (min-width: 767.5px) {
  .link-button .icon-link {
    width: calc( 37px * var(--scale));
  }
}
@media all and (max-width: 767.4px) {
  .link-button .icon-link {
    width: calc( 37px * var(--scale));
  }
}

/* tag タグ
*****************************/
.article-tag-list {
  display: flex;
}
@media all and (min-width: 767.5px) {
  .article-tag-list {
    gap: calc( 10px * var(--scale)) calc( 10px * var(--scale));
  }
}
@media all and (max-width: 767.4px) {
  .article-tag-list {
    gap: calc( 8px * var(--scale)) calc( 5px * var(--scale));
  }
}

.-tag {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media all and (min-width: 767.5px) {
  .-tag {
    padding: calc( 0px * var(--scale)) calc( 20px * var(--scale));
  }
}
@media all and (max-width: 767.4px) {
  .-tag {
    padding: calc( 0px * var(--scale)) calc( 20px * var(--scale));
  }
}
@media all and (min-width: 767.5px) {
  .-tag {
    height: calc( 48px * var(--scale));
  }
}
@media all and (max-width: 767.4px) {
  .-tag {
    height: calc( 48px * var(--scale));
  }
}
@media all and (min-width: 767.5px) {
  .-tag {
    border-radius: calc( 60px * var(--scale));
  }
}
@media all and (max-width: 767.4px) {
  .-tag {
    border-radius: calc( 60px * var(--scale));
  }
}
.-tag::before {
  content: "#";
  display: inline;
}
.-tag .tag-text, .-tag::before {
  line-height: 1.5;
  letter-spacing: 0.015em;
  color: #FFFFEC;
  font-weight: bold;
}
@media all and (min-width: 767.5px) {
  .-tag .tag-text, .-tag::before {
    font-size: calc( 16px * var(--scale));
  }
}
@media all and (max-width: 767.4px) {
  .-tag .tag-text, .-tag::before {
    font-size: calc( 16px * var(--scale));
  }
}

/* 共通部分
*******************/
.area-green {
  --key-color: #BEE946;
}

.area-pink {
  --key-color: #EA71BF;
}

.area-blue {
  --key-color: #62C1C1;
}

.area-livgreen {
  --key-color: #75D449;
}

[data-pageid=vol2] .area-pink {
  --key-color: #EA71BF;
}
[data-pageid=vol2] .area-white {
  --key-color: #EAEAE4;
}
[data-pageid=vol2] .area-purple {
  --key-color: #BE7ADD;
}
[data-pageid=vol2] .area-beige {
  --key-color: #CBB57E;
}

[data-pageid=vol3] .area-orange {
  --key-color: #F29B4A;
}
[data-pageid=vol3] .area-navy {
  --key-color: #225CC4;
}
[data-pageid=vol3] .area-blue {
  --key-color: #8BE1F2;
}
[data-pageid=vol3] .area-greenred {
  --key-color: #E14B5E;
}

.btn {
  transition: all 0.2s;
}
@media (hover: hover) and (pointer: fine) {
  .btn:focus {
    opacity: 0.7;
  }
  .btn:hover {
    opacity: 0.7;
  }
}

body {
  overflow: visible;
}

.hide {
  display: none;
}

.section-wrap {
  width: 100%;
}

.section-wrap-inner {
  position: relative;
  background-color: #F9F4E9;
}
@media (min-width: 767.5px) {
  .section-wrap-inner {
    display: flex;
  }
}

@media (min-width: 767.5px) {
  .contents-left {
    width: 50%;
    margin-top: -80px;
  }
}
.contents-left .contents-left-inner {
  height: 100%;
  z-index: 3;
  text-align: center;
}
@media (min-width: 767.5px) {
  .contents-left .contents-left-inner {
    position: sticky;
    top: 0;
    height: 100vh;
    min-height: 580px;
    overflow-x: hidden;
  }
}

.kv-contents {
  background-color: #EFC457;
}
@media (min-width: 767.5px) {
  .kv-contents {
    width: 50%;
  }
}
@media (max-width: 767.4px) {
  .kv-contents {
    overflow: hidden;
    width: 100%;
  }
}
.kv-contents .kv-contents-inner {
  height: 100%;
  text-align: center;
}
@media all and (min-width: 767.5px) {
  .kv-contents .kv-contents-inner {
    padding-bottom: 28.4rem;
  }
}
@media all and (max-width: 767.4px) {
  .kv-contents .kv-contents-inner {
    padding-bottom: 0.5rem;
  }
}

.fixed-wrap {
  display: inline-block;
  transition: 0.5s;
}
@media (min-width: 767.5px) {
  .fixed-wrap {
    width: 79.47%;
    max-width: 573px;
    margin: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -36.8%);
  }
}
@media (max-width: 767.4px) {
  .fixed-wrap {
    position: relative;
  }
}
.fixed-wrap .section-icon {
  position: absolute;
  z-index: 1;
  transition: 0.3s;
}
@media (min-width: 767.5px) {
  .fixed-wrap .section-icon {
    opacity: 0;
    transform: scale(1.2);
  }
  body[data-pagenum="0"] .fixed-wrap .section-icon {
    opacity: 1;
    transform: scale(1);
    transition-delay: 1.1s;
  }
  body[data-pagenum="1"] .fixed-wrap .section-icon:nth-child(-n+1) {
    opacity: 1;
    transform: scale(1);
  }
  body[data-pagenum="2"] .fixed-wrap .section-icon:nth-child(-n+2) {
    opacity: 1;
    transform: scale(1);
  }
  body[data-pagenum="3"] .fixed-wrap .section-icon:nth-child(-n+3) {
    opacity: 1;
    transform: scale(1);
  }
  body[data-pagenum="4"] .fixed-wrap .section-icon:nth-child(-n+4) {
    opacity: 1;
    transform: scale(1);
  }
}
@media (max-width: 767.4px) {
  .fixed-wrap .section-icon {
    opacity: 0;
    transform: scale(1.2);
  }
}
@media all and (min-width: 767.5px) {
  .fixed-wrap .section-icon.-marinepink {
    width: 15.7rem;
  }
}
@media all and (max-width: 767.4px) {
  .fixed-wrap .section-icon.-marinepink {
    width: 9.4rem;
  }
}
@media all and (min-width: 767.5px) {
  .fixed-wrap .section-icon.-marinepink {
    top: 6.3rem;
  }
}
@media all and (max-width: 767.4px) {
  .fixed-wrap .section-icon.-marinepink {
    top: 1.2rem;
  }
}
@media all and (min-width: 767.5px) {
  .fixed-wrap .section-icon.-marinepink {
    right: -10.6rem;
  }
}
@media all and (max-width: 767.4px) {
  .fixed-wrap .section-icon.-marinepink {
    right: -2.2rem;
  }
}
@media (min-width: 767.5px) {
  .fixed-wrap .section-icon.-marinepink {
    width: 27.53%;
    top: -4%;
    right: -6.2%;
  }
}
@media all and (min-width: 767.5px) {
  .fixed-wrap .section-icon.-sheergreen {
    width: 17.9rem;
  }
}
@media all and (max-width: 767.4px) {
  .fixed-wrap .section-icon.-sheergreen {
    width: 10.4rem;
  }
}
@media all and (min-width: 767.5px) {
  .fixed-wrap .section-icon.-sheergreen {
    top: 38.8rem;
  }
}
@media all and (max-width: 767.4px) {
  .fixed-wrap .section-icon.-sheergreen {
    top: 16.9rem;
  }
}
@media all and (min-width: 767.5px) {
  .fixed-wrap .section-icon.-sheergreen {
    right: -11.5rem;
  }
}
@media all and (max-width: 767.4px) {
  .fixed-wrap .section-icon.-sheergreen {
    right: -2.4rem;
  }
}
@media (min-width: 767.5px) {
  .fixed-wrap .section-icon.-sheergreen {
    width: 31.6%;
    top: 69.9%;
    right: -7.8%;
  }
}
@media all and (min-width: 767.5px) {
  .fixed-wrap .section-icon.-ladycyan {
    width: 14.8rem;
  }
}
@media all and (max-width: 767.4px) {
  .fixed-wrap .section-icon.-ladycyan {
    width: 8.6rem;
  }
}
@media all and (min-width: 767.5px) {
  .fixed-wrap .section-icon.-ladycyan {
    top: 40.5rem;
  }
}
@media all and (max-width: 767.4px) {
  .fixed-wrap .section-icon.-ladycyan {
    top: 18.3rem;
  }
}
@media all and (min-width: 767.5px) {
  .fixed-wrap .section-icon.-ladycyan {
    right: 39.1rem;
  }
}
@media all and (max-width: 767.4px) {
  .fixed-wrap .section-icon.-ladycyan {
    right: 27.4rem;
  }
}
@media (min-width: 767.5px) {
  .fixed-wrap .section-icon.-ladycyan {
    width: 26.7%;
    top: 74%;
    right: 80.3%;
  }
}
@media all and (min-width: 767.5px) {
  .fixed-wrap .section-icon.-livelygreen {
    width: 10rem;
  }
}
@media all and (max-width: 767.4px) {
  .fixed-wrap .section-icon.-livelygreen {
    width: 5.9rem;
  }
}
@media all and (min-width: 767.5px) {
  .fixed-wrap .section-icon.-livelygreen {
    top: 3.1rem;
  }
}
@media all and (max-width: 767.4px) {
  .fixed-wrap .section-icon.-livelygreen {
    top: 1.9rem;
  }
}
@media all and (min-width: 767.5px) {
  .fixed-wrap .section-icon.-livelygreen {
    right: 43.8rem;
  }
}
@media all and (max-width: 767.4px) {
  .fixed-wrap .section-icon.-livelygreen {
    right: 29rem;
  }
}
@media (min-width: 767.5px) {
  .fixed-wrap .section-icon.-livelygreen {
    width: 17.52%;
    top: -10.8%;
    right: 86%;
  }
}
.fixed-wrap .page-details-wrap {
  width: 100%;
  max-width: 452px;
  margin: auto;
}
@media (min-width: 767.5px) {
  .fixed-wrap .page-copy {
    position: relative;
    left: -1%;
    width: 26.8%;
    margin: auto;
  }
}
@media (max-width: 767.4px) {
  .fixed-wrap .page-copy {
    width: 11rem;
    margin: auto;
    margin-top: 4.8rem;
  }
}
.fixed-wrap .page-title {
  position: relative;
  z-index: 3;
}
@media (min-width: 767.5px) {
  .fixed-wrap .page-title {
    left: -2.4%;
    padding-top: 9.4%;
  }
}
@media (max-width: 767.4px) {
  .fixed-wrap .page-title {
    width: 34.1rem;
    margin: auto;
    margin-top: 2.1rem;
  }
}

.page-vol {
  margin: 0 auto;
  display: flex;
  align-items: center;
  background-color: #FFF;
}
@media all and (min-width: 767.5px) {
  .page-vol {
    width: 37rem;
  }
}
@media all and (max-width: 767.4px) {
  .page-vol {
    width: 30rem;
  }
}
@media all and (min-width: 767.5px) {
  .page-vol {
    margin-top: 2.3rem;
  }
}
@media all and (max-width: 767.4px) {
  .page-vol {
    margin-top: 3.7rem;
  }
}
@media all and (min-width: 767.5px) {
  .page-vol {
    padding: 1.5rem 0rem;
  }
}
@media all and (max-width: 767.4px) {
  .page-vol {
    padding: 1.6rem 0rem;
  }
}
@media (min-width: 767.5px) {
  .page-vol {
    position: relative;
    left: -2.5%;
    width: 64.7%;
    padding: 2.6% 0;
    margin-top: 10.4%;
  }
}
.page-vol .num {
  width: 29.4%;
  line-height: 1;
  text-align: center;
  border-right: dotted 2px #000;
}
@media all and (min-width: 767.5px) {
  .page-vol .num {
    padding-top: 0.4rem;
  }
}
@media all and (max-width: 767.4px) {
  .page-vol .num {
    padding-top: 0.4rem;
  }
}
@media all and (min-width: 767.5px) {
  .page-vol .num {
    margin-left: -0.3rem;
  }
}
@media all and (max-width: 767.4px) {
  .page-vol .num {
    margin-left: 0rem;
  }
}
@media all and (min-width: 767.5px) {
  .page-vol .num {
    font-size: 2rem;
  }
}
@media all and (max-width: 767.4px) {
  .page-vol .num {
    font-size: 1.5rem;
  }
}
@media (max-width: 1440px) {
  .page-vol .num {
    font-size: 1.39vw;
  }
}
@media (max-width: 767.4px) {
  .page-vol .num {
    width: 24%;
    font-size: 1.5rem;
  }
}
.page-vol .name {
  width: 70.6%;
  line-height: 1;
  text-align: center;
}
@media all and (min-width: 767.5px) {
  .page-vol .name {
    padding-right: 1rem;
  }
}
@media all and (max-width: 767.4px) {
  .page-vol .name {
    padding-right: 0rem;
  }
}
@media all and (min-width: 767.5px) {
  .page-vol .name {
    font-size: 2.4rem;
  }
}
@media all and (max-width: 767.4px) {
  .page-vol .name {
    font-size: 1.8rem;
  }
}
@media (max-width: 1440px) {
  .page-vol .name {
    font-size: 1.67vw;
    padding-right: 0.69vw;
  }
}
@media (max-width: 767.4px) {
  .page-vol .name {
    width: 76%;
    padding-left: 0.2rem;
    font-size: 1.8rem;
  }
}

.contents-right {
  overflow: hidden;
}
@media (min-width: 767.5px) {
  .contents-right {
    width: 50%;
  }
}
@media (max-width: 767.4px) {
  .contents-right {
    width: 100%;
  }
}

/* kv
*******************/
.section-kv .kv-img {
  position: relative;
  margin: auto;
}
.section-kv .kv-logo {
  position: absolute;
  z-index: 1;
}
@media all and (min-width: 767.5px) {
  .section-kv .kv-logo {
    top: 2.4rem;
  }
}
@media all and (max-width: 767.4px) {
  .section-kv .kv-logo {
    top: 1.5rem;
  }
}
@media all and (min-width: 767.5px) {
  .section-kv .kv-logo {
    right: 2.6rem;
  }
}
@media all and (max-width: 767.4px) {
  .section-kv .kv-logo {
    right: 1.4rem;
  }
}
@media all and (min-width: 767.5px) {
  .section-kv .kv-logo {
    width: 19.4rem;
  }
}
@media all and (max-width: 767.4px) {
  .section-kv .kv-logo {
    width: 13.1rem;
  }
}
@media (min-width: 767.5px) {
  .section-kv .kv-logo {
    width: 26.9%;
    top: 3.3%;
    right: 3.6%;
  }
}
.section-kv .kv-logo-btn {
  display: block;
}
.section-kv .kv-text-1 {
  position: absolute;
}
@media all and (min-width: 767.5px) {
  .section-kv .kv-text-1 {
    top: 13rem;
  }
}
@media all and (max-width: 767.4px) {
  .section-kv .kv-text-1 {
    top: 7.2rem;
  }
}
@media all and (min-width: 767.5px) {
  .section-kv .kv-text-1 {
    right: 6.9rem;
  }
}
@media all and (max-width: 767.4px) {
  .section-kv .kv-text-1 {
    right: 3rem;
  }
}
@media all and (min-width: 767.5px) {
  .section-kv .kv-text-1 {
    width: 1.9rem;
  }
}
@media all and (max-width: 767.4px) {
  .section-kv .kv-text-1 {
    width: 1.6rem;
  }
}
@media (min-width: 767.5px) {
  .section-kv .kv-text-1 {
    width: 2.76%;
    top: 16.3%;
    right: 7.9%;
  }
}
.section-kv .kv-text-2 {
  position: absolute;
}
@media all and (min-width: 767.5px) {
  .section-kv .kv-text-2 {
    top: 22.7rem;
  }
}
@media all and (max-width: 767.4px) {
  .section-kv .kv-text-2 {
    top: 9.8rem;
  }
}
@media all and (min-width: 767.5px) {
  .section-kv .kv-text-2 {
    right: 10.6rem;
  }
}
@media all and (max-width: 767.4px) {
  .section-kv .kv-text-2 {
    right: 5.7rem;
  }
}
@media all and (min-width: 767.5px) {
  .section-kv .kv-text-2 {
    width: 1.8rem;
  }
}
@media all and (max-width: 767.4px) {
  .section-kv .kv-text-2 {
    width: 1.45rem;
  }
}
@media (min-width: 767.5px) {
  .section-kv .kv-text-2 {
    width: 2.5%;
    top: 20.52%;
    right: 12.62%;
  }
}
.section-kv .kv-scroll {
  position: absolute;
}
@media (min-width: 767.5px) {
  .section-kv .kv-scroll {
    width: 2.34%;
    bottom: 4%;
    left: 6%;
  }
}
@media (max-width: 767.4px) {
  .section-kv .kv-scroll {
    position: relative;
    right: auto;
    bottom: auto;
    width: 5.6rem;
    margin: auto;
    margin-top: 4.4rem;
  }
}
@media (min-width: 767.5px) {
  .section-kv .kv-text {
    width: 100%;
    max-width: 585px;
    margin: auto;
    padding: 0 2.25rem;
  }
}
@media (max-width: 767.4px) {
  .section-kv .kv-text {
    padding: 0 2.6rem;
  }
}
@media all and (min-width: 767.5px) {
  .section-kv .kv-text {
    margin-top: 6.4rem;
  }
}
@media all and (max-width: 767.4px) {
  .section-kv .kv-text {
    margin-top: 4.2rem;
  }
}
@media all and (min-width: 767.5px) {
  .section-kv .kv-text {
    font-size: 1.6rem;
  }
}
@media all and (max-width: 767.4px) {
  .section-kv .kv-text {
    font-size: 1.4rem;
  }
}
.section-kv .kv-text .kv-note-text {
  display: block;
}
@media all and (min-width: 767.5px) {
  .section-kv .kv-text .kv-note-text {
    margin-top: 1rem;
  }
}
@media all and (max-width: 767.4px) {
  .section-kv .kv-text .kv-note-text {
    margin-top: 0.6rem;
  }
}
@media all and (min-width: 767.5px) {
  .section-kv .kv-text .kv-note-text {
    font-size: 1rem;
  }
}
@media all and (max-width: 767.4px) {
  .section-kv .kv-text .kv-note-text {
    font-size: 1.2rem;
  }
}
.section-kv .profile {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
@media (min-width: 767.5px) {
  .section-kv .profile {
    width: 100%;
    max-width: 630px;
  }
}
@media (max-width: 767.4px) {
  .section-kv .profile {
    width: 32.4rem;
  }
}
@media all and (min-width: 767.5px) {
  .section-kv .profile {
    margin-top: 5.2rem;
  }
}
@media all and (max-width: 767.4px) {
  .section-kv .profile {
    margin-top: 4.8rem;
  }
}
@media all and (min-width: 767.5px) {
  .section-kv .profile {
    padding: 4.7rem 4.6rem 3.8rem 4.4rem;
  }
}
@media all and (max-width: 767.4px) {
  .section-kv .profile {
    padding: 2.8rem 0rem 3rem 0rem;
  }
}
.section-kv .profile .profile-title {
  position: absolute;
  right: 0;
  left: 0;
  z-index: 1;
  display: inline-block;
  margin: auto;
  text-align: center;
}
@media all and (min-width: 767.5px) {
  .section-kv .profile .profile-title {
    top: -1.2rem;
  }
}
@media all and (max-width: 767.4px) {
  .section-kv .profile .profile-title {
    top: -1.2rem;
  }
}
@media all and (min-width: 767.5px) {
  .section-kv .profile .profile-title {
    font-size: 1.8rem;
  }
}
@media all and (max-width: 767.4px) {
  .section-kv .profile .profile-title {
    font-size: 1.8rem;
  }
}
@media (max-width: 767.4px) {
  .section-kv .profile .profile-title {
    right: auto;
  }
}
.section-kv .profile .profile-title:before {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  z-index: -1;
  margin: auto;
  display: inline-block;
  background-color: #F9F4E9;
}
@media all and (min-width: 767.5px) {
  .section-kv .profile .profile-title:before {
    top: -0.8rem;
  }
}
@media all and (max-width: 767.4px) {
  .section-kv .profile .profile-title:before {
    top: 0rem;
  }
}
@media all and (min-width: 767.5px) {
  .section-kv .profile .profile-title:before {
    width: 8.2rem;
  }
}
@media all and (max-width: 767.4px) {
  .section-kv .profile .profile-title:before {
    width: 6.9rem;
  }
}
@media all and (min-width: 767.5px) {
  .section-kv .profile .profile-title:before {
    height: 2.7rem;
  }
}
@media all and (max-width: 767.4px) {
  .section-kv .profile .profile-title:before {
    height: 2rem;
  }
}
@media (min-width: 767.5px) {
  .section-kv .profile .profile-wrap {
    display: flex;
    justify-content: center;
  }
}
@media all and (min-width: 767.5px) {
  .section-kv .profile .pic {
    width: 14rem;
  }
}
@media all and (max-width: 767.4px) {
  .section-kv .profile .pic {
    width: 14rem;
  }
}
@media all and (min-width: 767.5px) {
  .section-kv .profile .pic {
    padding-left: 0rem;
  }
}
@media all and (max-width: 767.4px) {
  .section-kv .profile .pic {
    padding-left: 4.6rem;
  }
}
.section-kv .profile .profile-details {
  position: relative;
}
@media all and (min-width: 767.5px) {
  .section-kv .profile .profile-details {
    width: 40rem;
  }
}
@media all and (max-width: 767.4px) {
  .section-kv .profile .profile-details {
    width: 32.1rem;
  }
}
@media all and (min-width: 767.5px) {
  .section-kv .profile .profile-details {
    padding-left: 3.5rem;
  }
}
@media all and (max-width: 767.4px) {
  .section-kv .profile .profile-details {
    padding-left: 0rem;
  }
}
@media (max-width: 767.4px) {
  .section-kv .profile .profile-head {
    display: flex;
  }
}
@media all and (min-width: 767.5px) {
  .section-kv .profile .profile-name-wrap {
    margin-top: 0rem;
  }
}
@media all and (max-width: 767.4px) {
  .section-kv .profile .profile-name-wrap {
    margin-top: 2.6rem;
  }
}
@media all and (min-width: 767.5px) {
  .section-kv .profile .profile-name-wrap {
    padding-left: 0rem;
  }
}
@media all and (max-width: 767.4px) {
  .section-kv .profile .profile-name-wrap {
    padding-left: 2.7rem;
  }
}
@media all and (min-width: 767.5px) {
  .section-kv .profile .profile-prof {
    margin-top: -0.5rem;
  }
}
@media all and (max-width: 767.4px) {
  .section-kv .profile .profile-prof {
    margin-top: 0rem;
  }
}
@media all and (min-width: 767.5px) {
  .section-kv .profile .profile-prof {
    font-size: 1.2rem;
  }
}
@media all and (max-width: 767.4px) {
  .section-kv .profile .profile-prof {
    font-size: 1rem;
  }
}
@media all and (min-width: 767.5px) {
  .section-kv .profile .profile-name {
    margin-top: 0.6rem;
  }
}
@media all and (max-width: 767.4px) {
  .section-kv .profile .profile-name {
    margin-top: 0.3rem;
  }
}
@media all and (min-width: 767.5px) {
  .section-kv .profile .profile-name {
    font-size: 2rem;
  }
}
@media all and (max-width: 767.4px) {
  .section-kv .profile .profile-name {
    font-size: 1.6rem;
  }
}
@media all and (min-width: 767.5px) {
  .section-kv .profile .profile-text {
    margin-top: 1.3rem;
  }
}
@media all and (max-width: 767.4px) {
  .section-kv .profile .profile-text {
    margin-top: 1.9rem;
  }
}
@media all and (min-width: 767.5px) {
  .section-kv .profile .profile-text {
    font-size: 1.2rem;
  }
}
@media all and (max-width: 767.4px) {
  .section-kv .profile .profile-text {
    font-size: 1.1rem;
  }
}
.section-kv .profile .profile-link {
  display: inline-block;
  letter-spacing: 0.07em;
  line-height: 1;
}
@media all and (min-width: 767.5px) {
  .section-kv .profile .profile-link {
    margin-top: 2rem;
  }
}
@media all and (max-width: 767.4px) {
  .section-kv .profile .profile-link {
    margin-top: 1.2rem;
  }
}
@media all and (min-width: 767.5px) {
  .section-kv .profile .profile-link {
    font-size: 1.1rem;
  }
}
@media all and (max-width: 767.4px) {
  .section-kv .profile .profile-link {
    font-size: 1.1rem;
  }
}
@media all and (min-width: 767.5px) {
  .section-kv .profile .profile-link.n2 {
    margin-top: 0.4rem;
  }
}
@media all and (max-width: 767.4px) {
  .section-kv .profile .profile-link.n2 {
    margin-top: 0.4rem;
  }
}
.section-kv .profile .profile-link-text {
  display: inline-block;
  text-decoration: underline;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}
.section-kv .profile .link-icon {
  display: inline-block;
}
@media all and (min-width: 767.5px) {
  .section-kv .profile .link-icon {
    width: 1.4rem;
  }
}
@media all and (max-width: 767.4px) {
  .section-kv .profile .link-icon {
    width: 1.4rem;
  }
}
@media all and (min-width: 767.5px) {
  .section-kv .profile .link-icon {
    height: 1.4rem;
  }
}
@media all and (max-width: 767.4px) {
  .section-kv .profile .link-icon {
    height: 1.4rem;
  }
}
@media all and (min-width: 767.5px) {
  .section-kv .profile .link-icon {
    margin-top: 0.3rem;
  }
}
@media all and (max-width: 767.4px) {
  .section-kv .profile .link-icon {
    margin-top: 0.3rem;
  }
}
@media all and (min-width: 767.5px) {
  .section-kv .profile .link-icon {
    margin-right: 1.1rem;
  }
}
@media all and (max-width: 767.4px) {
  .section-kv .profile .link-icon {
    margin-right: 1.1rem;
  }
}
@media all and (min-width: 767.5px) {
  .section-kv .profile .link-icon {
    margin-left: 0rem;
  }
}
@media all and (max-width: 767.4px) {
  .section-kv .profile .link-icon {
    margin-left: 0.3rem;
  }
}
@media all and (min-width: 767.5px) {
  .section-kv .profile .link-icon.youtube {
    width: 1.6rem;
  }
}
@media all and (max-width: 767.4px) {
  .section-kv .profile .link-icon.youtube {
    width: 1.6rem;
  }
}
@media all and (min-width: 767.5px) {
  .section-kv .profile .link-icon.youtube {
    height: 1.2rem;
  }
}
@media all and (max-width: 767.4px) {
  .section-kv .profile .link-icon.youtube {
    height: 1.2rem;
  }
}
@media all and (min-width: 767.5px) {
  .section-kv .profile .link-icon.youtube {
    margin-right: 0.9rem;
  }
}
@media all and (max-width: 767.4px) {
  .section-kv .profile .link-icon.youtube {
    margin-right: 0.9rem;
  }
}

/* コンテンツブロック
*******************/
@media (min-width: 767.5px) {
  .section-contents {
    width: 100%;
    max-width: 720px;
    margin: auto;
  }
}

.contents-block {
  display: flex;
  flex-direction: column;
}
.contents-block .section-icon {
  position: absolute;
  z-index: 2;
}
@media (min-width: 767.5px) {
  .contents-block .section-icon {
    display: none;
  }
}

@media all and (min-width: 767.5px) {
  .contents-block-inner:not(:first-of-type) {
    margin-top: 7rem;
  }
}
@media all and (max-width: 767.4px) {
  .contents-block-inner:not(:first-of-type) {
    margin-top: 3.8rem;
  }
}

.picArea .-pic-wrap {
  position: relative;
  margin: 0 auto;
}
.picArea .border-color::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 6px solid var(--key-color);
}

.btn-credit {
  font-family: "Montserrat", sans-serif;
  position: absolute;
  bottom: 0;
  z-index: 2;
}
@media all and (min-width: 767.5px) {
  .btn-credit {
    transform: translateY(43%);
  }
}
@media all and (max-width: 767.4px) {
  .btn-credit {
    transform: translateY(43%);
  }
}
.btn-credit svg {
  line-height: 0;
}
@media all and (min-width: 767.5px) {
  .btn-credit .uk-button {
    width: 11rem;
  }
}
@media all and (max-width: 767.4px) {
  .btn-credit .uk-button {
    width: 8.6rem;
  }
}
@media all and (min-width: 767.5px) {
  .btn-credit .uk-button {
    height: 3rem;
  }
}
@media all and (max-width: 767.4px) {
  .btn-credit .uk-button {
    height: 2.8rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .btn-credit .uk-button:focus .button-inner {
    animation: shake 0.2s;
  }
  .btn-credit .uk-button:hover .button-inner {
    animation: shake 0.2s;
  }
}
.btn-credit .button-inner {
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media all and (min-width: 767.5px) {
  .btn-credit .button-inner {
    width: 11rem;
  }
}
@media all and (max-width: 767.4px) {
  .btn-credit .button-inner {
    width: 8.6rem;
  }
}
@media all and (min-width: 767.5px) {
  .btn-credit .button-inner {
    height: 3rem;
  }
}
@media all and (max-width: 767.4px) {
  .btn-credit .button-inner {
    height: 2.8rem;
  }
}
@media all and (min-width: 767.5px) {
  .btn-credit .button-inner {
    border-radius: 0.6rem;
  }
}
@media all and (max-width: 767.4px) {
  .btn-credit .button-inner {
    border-radius: 0.6rem;
  }
}
@media all and (min-width: 767.5px) {
  .btn-credit .button-inner {
    padding: 0rem 1.5rem;
  }
}
@media all and (max-width: 767.4px) {
  .btn-credit .button-inner {
    padding: 0rem 0.8rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .btn-credit .button-inner:focus {
    animation: shake 0.2s;
  }
  .btn-credit .button-inner:hover {
    animation: shake 0.2s;
  }
}

@keyframes shake {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-15deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.credit-bubble {
  position: absolute;
  transform: translateY(-100%);
}
@media all and (min-width: 767.5px) {
  .credit-bubble {
    width: 20rem;
  }
}
@media all and (max-width: 767.4px) {
  .credit-bubble {
    width: 20rem;
  }
}
@media all and (min-width: 767.5px) {
  .credit-bubble {
    top: -2.8rem;
  }
}
@media all and (max-width: 767.4px) {
  .credit-bubble {
    top: -2.8rem;
  }
}
.credit-bubble::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  border-bottom: solid transparent;
  border-left: solid #000;
}
@media all and (min-width: 767.5px) {
  .credit-bubble::before {
    bottom: -1.5rem;
  }
}
@media all and (max-width: 767.4px) {
  .credit-bubble::before {
    bottom: -1.5rem;
  }
}
@media all and (min-width: 767.5px) {
  .credit-bubble::before {
    right: 2.8rem;
  }
}
@media all and (max-width: 767.4px) {
  .credit-bubble::before {
    right: 2.8rem;
  }
}
@media all and (min-width: 767.5px) {
  .credit-bubble::before {
    width: 1.6rem;
  }
}
@media all and (max-width: 767.4px) {
  .credit-bubble::before {
    width: 1.6rem;
  }
}
@media all and (min-width: 767.5px) {
  .credit-bubble::before {
    height: 1.7rem;
  }
}
@media all and (max-width: 767.4px) {
  .credit-bubble::before {
    height: 1.7rem;
  }
}
@media all and (min-width: 767.5px) {
  .credit-bubble::before {
    border-bottom-width: 1.8rem;
  }
}
@media all and (max-width: 767.4px) {
  .credit-bubble::before {
    border-bottom-width: 1.8rem;
  }
}
@media all and (min-width: 767.5px) {
  .credit-bubble::before {
    border-left-width: 1.7rem;
  }
}
@media all and (max-width: 767.4px) {
  .credit-bubble::before {
    border-left-width: 1.7rem;
  }
}
.credit-bubble::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 3;
  border-bottom: solid transparent;
  border-left: solid #fff;
}
@media all and (min-width: 767.5px) {
  .credit-bubble::after {
    bottom: -1.3rem;
  }
}
@media all and (max-width: 767.4px) {
  .credit-bubble::after {
    bottom: -1.3rem;
  }
}
@media all and (min-width: 767.5px) {
  .credit-bubble::after {
    right: 2.9rem;
  }
}
@media all and (max-width: 767.4px) {
  .credit-bubble::after {
    right: 2.9rem;
  }
}
@media all and (min-width: 767.5px) {
  .credit-bubble::after {
    width: 1.4rem;
  }
}
@media all and (max-width: 767.4px) {
  .credit-bubble::after {
    width: 1.4rem;
  }
}
@media all and (min-width: 767.5px) {
  .credit-bubble::after {
    height: 1.5rem;
  }
}
@media all and (max-width: 767.4px) {
  .credit-bubble::after {
    height: 1.5rem;
  }
}
@media all and (min-width: 767.5px) {
  .credit-bubble::after {
    border-bottom-width: 1.6rem;
  }
}
@media all and (max-width: 767.4px) {
  .credit-bubble::after {
    border-bottom-width: 1.6rem;
  }
}
@media all and (min-width: 767.5px) {
  .credit-bubble::after {
    border-left-width: 1.5rem;
  }
}
@media all and (max-width: 767.4px) {
  .credit-bubble::after {
    border-left-width: 1.5rem;
  }
}

.close {
  display: block;
  position: absolute;
  cursor: pointer;
}
@media all and (min-width: 767.5px) {
  .close {
    width: 1rem;
  }
}
@media all and (max-width: 767.4px) {
  .close {
    width: 1rem;
  }
}
@media all and (min-width: 767.5px) {
  .close {
    height: 1rem;
  }
}
@media all and (max-width: 767.4px) {
  .close {
    height: 1rem;
  }
}
@media all and (min-width: 767.5px) {
  .close {
    top: 0.9rem;
  }
}
@media all and (max-width: 767.4px) {
  .close {
    top: 0.9rem;
  }
}
@media all and (min-width: 767.5px) {
  .close {
    right: 0.9rem;
  }
}
@media all and (max-width: 767.4px) {
  .close {
    right: 0.9rem;
  }
}

.close::before, .close::after {
  content: "";
  display: block;
  width: 100%; /*長さ*/
  height: 1px; /*太さ*/
  background: #000;
  transform: rotate(45deg);
  transform-origin: 0% 50%;
  position: absolute;
  top: 14%;
  left: 16%;
}

.close::after {
  transform: rotate(-45deg);
  transform-origin: 100% 50%;
  left: auto;
  right: 13%;
}

.credit-bubble-inner {
  z-index: 1;
  position: relative;
  border: 1px solid #000;
  background-color: #fff;
  line-height: 1.2;
}
@media all and (min-width: 767.5px) {
  .credit-bubble-inner {
    padding: 1.5rem 1.5rem 2.2rem 1.6rem;
  }
}
@media all and (max-width: 767.4px) {
  .credit-bubble-inner {
    padding: 1.5rem 1.5rem 2.2rem 1.6rem;
  }
}
@media all and (min-width: 767.5px) {
  .credit-bubble-inner {
    border-radius: 0.6rem;
  }
}
@media all and (max-width: 767.4px) {
  .credit-bubble-inner {
    border-radius: 0.6rem;
  }
}
@media all and (min-width: 767.5px) {
  .credit-bubble-inner {
    font-size: 1rem;
  }
}
@media all and (max-width: 767.4px) {
  .credit-bubble-inner {
    font-size: 1rem;
  }
}
.credit-bubble-inner .-cate {
  font-weight: 700;
  color: #959595;
}
@media all and (min-width: 767.5px) {
  .credit-bubble-inner .-items + .-cate {
    margin-top: 3rem;
  }
}
@media all and (max-width: 767.4px) {
  .credit-bubble-inner .-items + .-cate {
    margin-top: 3rem;
  }
}
@media all and (min-width: 767.5px) {
  .credit-bubble-inner .-items {
    margin-top: 1.6rem;
  }
}
@media all and (max-width: 767.4px) {
  .credit-bubble-inner .-items {
    margin-top: 1.6rem;
  }
}
.credit-bubble-inner .-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media all and (min-width: 767.5px) {
  .credit-bubble-inner .-item + .-item {
    margin-top: 1.1rem;
  }
}
@media all and (max-width: 767.4px) {
  .credit-bubble-inner .-item + .-item {
    margin-top: 1.1rem;
  }
}
.credit-bubble-inner .-btn-buy {
  font-weight: 700;
  background-color: #000;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 0;
}
@media all and (min-width: 767.5px) {
  .credit-bubble-inner .-btn-buy {
    width: 4rem;
  }
}
@media all and (max-width: 767.4px) {
  .credit-bubble-inner .-btn-buy {
    width: 4rem;
  }
}
@media all and (min-width: 767.5px) {
  .credit-bubble-inner .-btn-buy {
    height: 1.7rem;
  }
}
@media all and (max-width: 767.4px) {
  .credit-bubble-inner .-btn-buy {
    height: 1.7rem;
  }
}
@media all and (min-width: 767.5px) {
  .credit-bubble-inner .-btn-buy {
    border-radius: 1.5rem;
  }
}
@media all and (max-width: 767.4px) {
  .credit-bubble-inner .-btn-buy {
    border-radius: 1.5rem;
  }
}
@media all and (min-width: 767.5px) {
  .credit-bubble-inner .-btn-buy {
    padding: 0.5rem 0.6rem 0.5rem 0.6rem;
  }
}
@media all and (max-width: 767.4px) {
  .credit-bubble-inner .-btn-buy {
    padding: 0.4rem 0.6rem 0.4rem 0.6rem;
  }
}

.textArea {
  margin: 0 auto;
}
@media all and (min-width: 767.5px) {
  .textArea {
    width: 54rem;
  }
}
@media all and (max-width: 767.4px) {
  .textArea {
    width: 32rem;
  }
}
.textArea .-title {
  text-align: center;
  text-decoration-line: underline;
  text-decoration-color: var(--key-color);
  text-decoration-style: dotted;
  white-space: nowrap;
}
@media all and (min-width: 767.5px) {
  .textArea .-title {
    margin-top: 6rem;
  }
}
@media all and (max-width: 767.4px) {
  .textArea .-title {
    margin-top: 4rem;
  }
}
@media all and (min-width: 767.5px) {
  .textArea .-title {
    font-size: 1.6rem;
  }
}
@media all and (max-width: 767.4px) {
  .textArea .-title {
    font-size: 1.4rem;
  }
}
@media all and (min-width: 767.5px) {
  .textArea .-title {
    text-underline-offset: 1rem;
  }
}
@media all and (max-width: 767.4px) {
  .textArea .-title {
    text-underline-offset: 1rem;
  }
}
@media all and (min-width: 767.5px) {
  .textArea .-text {
    margin-top: 6rem;
  }
}
@media all and (max-width: 767.4px) {
  .textArea .-text {
    margin-top: 4rem;
  }
}
@media all and (min-width: 767.5px) {
  .textArea .-text {
    font-size: 1.4rem;
  }
}
@media all and (max-width: 767.4px) {
  .textArea .-text {
    font-size: 1.2rem;
  }
}
@media all and (min-width: 767.5px) {
  .textArea .-title + .-text {
    margin-top: 3.3rem;
  }
}
@media all and (max-width: 767.4px) {
  .textArea .-title + .-text {
    margin-top: 2.7rem;
  }
}

@media all and (min-width: 767.5px) {
  [data-pageid=vol1] .contents-block .section-icon.-marinepink {
    width: 15.7rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol1] .contents-block .section-icon.-marinepink {
    width: 9.4rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol1] .contents-block .section-icon.-marinepink {
    top: 0rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol1] .contents-block .section-icon.-marinepink {
    top: -2rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol1] .contents-block .section-icon.-marinepink {
    right: 0rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol1] .contents-block .section-icon.-marinepink {
    right: -8rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol1] .contents-block .section-icon.-sheergreen {
    width: 17.9rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol1] .contents-block .section-icon.-sheergreen {
    width: 10.4rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol1] .contents-block .section-icon.-sheergreen {
    top: 0rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol1] .contents-block .section-icon.-sheergreen {
    top: -3rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol1] .contents-block .section-icon.-sheergreen {
    right: 0rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol1] .contents-block .section-icon.-sheergreen {
    right: -6rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol1] .contents-block .section-icon.-ladycyan {
    width: 14.8rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol1] .contents-block .section-icon.-ladycyan {
    width: 8.6rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol1] .contents-block .section-icon.-ladycyan {
    top: 0rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol1] .contents-block .section-icon.-ladycyan {
    top: 43.9rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol1] .contents-block .section-icon.-ladycyan {
    right: 0rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol1] .contents-block .section-icon.-ladycyan {
    right: 29.3rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol1] .contents-block .section-icon.-livelygreen {
    width: 10rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol1] .contents-block .section-icon.-livelygreen {
    width: 5.9rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol1] .contents-block .section-icon.-livelygreen {
    top: 0rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol1] .contents-block .section-icon.-livelygreen {
    top: -2.8rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol1] .contents-block .section-icon.-livelygreen {
    right: 0rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol1] .contents-block .section-icon.-livelygreen {
    right: 30.8rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol1] .contents-block.n1 {
    padding-top: 6.6rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol1] .contents-block.n1 {
    padding-top: 8.3rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol1] .contents-block.n2 {
    padding-top: 14rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol1] .contents-block.n2 {
    padding-top: 9.5rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol1] .contents-block.n2 .textArea .-title {
    margin-top: 5.1rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol1] .contents-block.n2 .textArea .-title {
    margin-top: 4.3rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol1] .contents-block.n3 {
    padding-top: 10.7rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol1] .contents-block.n3 {
    padding-top: 10rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol1] .contents-block.n3 .textArea .-title {
    margin-top: 6.7rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol1] .contents-block.n3 .textArea .-title {
    margin-top: 5.7rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol1] .contents-block.n4 {
    padding-top: 10rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol1] .contents-block.n4 {
    padding-top: 10rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol1] .contents-block.n4 .textArea .-title {
    margin-top: 6.5rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol1] .contents-block.n4 .textArea .-title {
    margin-top: 6.1rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol1] .btn-credit.n1 {
    right: 2.4rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol1] .btn-credit.n1 {
    right: 2rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol1] .btn-credit.n2 {
    right: 3.2rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol1] .btn-credit.n2 {
    right: 1.1rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol1] .btn-credit.n3 {
    right: 3.2rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol1] .btn-credit.n3 {
    right: 2.1rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol1] .btn-credit.n4 {
    left: 3rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol1] .btn-credit.n4 {
    left: auto;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol1] .btn-credit.n4 {
    right: auto;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol1] .btn-credit.n4 {
    right: 3.5rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol1] .credit-bubble#prie-list-1 {
    left: 2.4rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol1] .credit-bubble#prie-list-1 {
    left: -8rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol1] .credit-bubble#prie-list-2 {
    left: 2.4rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol1] .credit-bubble#prie-list-2 {
    left: -6.5rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol1] .credit-bubble#prie-list-3 {
    left: -9rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol1] .credit-bubble#prie-list-3 {
    left: -10.8rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol1] .credit-bubble#prie-list-4 {
    left: -1.6rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol1] .credit-bubble#prie-list-4 {
    left: -9.4rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol1] .-pic-wrap.n1-1 {
    width: 31.3rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol1] .-pic-wrap.n1-1 {
    width: 22.7rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol1] .-pic-wrap.n1-2 {
    width: 42rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol1] .-pic-wrap.n1-2 {
    width: 31.7rem;
  }
}
[data-pageid=vol1] .-pic-wrap.n2-1 {
  z-index: 1;
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol1] .-pic-wrap.n2-1 {
    width: 36rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol1] .-pic-wrap.n2-1 {
    width: 26.8rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol1] .-pic-wrap.n2-2 {
    width: 72rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol1] .-pic-wrap.n2-2 {
    width: 37.5rem;
  }
}
[data-pageid=vol1] .-pic-wrap.n3-1 {
  z-index: 1;
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol1] .-pic-wrap.n3-1 {
    width: 27.9rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol1] .-pic-wrap.n3-1 {
    width: 14.6rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol1] .-pic-wrap.n3-1 {
    margin-bottom: -29.6rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol1] .-pic-wrap.n3-1 {
    margin-bottom: -7.1rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol1] .-pic-wrap.n3-1 {
    margin-left: 5.5rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol1] .-pic-wrap.n3-1 {
    margin-left: 3rem;
  }
}
@media (min-width: 767.5px) {
  [data-pageid=vol1] .-pic-wrap.n3-1 {
    width: 38.75%;
    margin-left: 7.63%;
    margin-bottom: -41.11%;
  }
}
[data-pageid=vol1] .-pic-wrap.n3-2 {
  margin-right: 0;
  margin-left: auto;
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol1] .-pic-wrap.n3-2 {
    width: 47rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol1] .-pic-wrap.n3-2 {
    width: 32.5rem;
  }
}
@media (min-width: 767.5px) {
  [data-pageid=vol1] .-pic-wrap.n3-2 {
    width: 65%;
  }
}

[data-pageid=vol2] .section-kv .kv-text-1 {
  position: absolute;
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol2] .section-kv .kv-text-1 {
    top: 13rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol2] .section-kv .kv-text-1 {
    top: 8.2rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol2] .section-kv .kv-text-1 {
    right: 6.9rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol2] .section-kv .kv-text-1 {
    right: 4.4rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol2] .section-kv .kv-text-1 {
    width: 1.9rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol2] .section-kv .kv-text-1 {
    width: 1.47rem;
  }
}
@media (min-width: 767.5px) {
  [data-pageid=vol2] .section-kv .kv-text-1 {
    width: 2.76%;
    top: 18.6%;
    right: 11%;
  }
}
[data-pageid=vol2] .section-kv .kv-text-2 {
  position: absolute;
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol2] .section-kv .kv-text-2 {
    top: 22.7rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol2] .section-kv .kv-text-2 {
    top: 10.8rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol2] .section-kv .kv-text-2 {
    right: 10.6rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol2] .section-kv .kv-text-2 {
    right: 6.9rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol2] .section-kv .kv-text-2 {
    width: 1.8rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol2] .section-kv .kv-text-2 {
    width: 1.33rem;
  }
}
@media (min-width: 767.5px) {
  [data-pageid=vol2] .section-kv .kv-text-2 {
    width: 2.5%;
    top: 23.5%;
    right: 16%;
  }
}
[data-pageid=vol2] .kv-contents {
  background-color: #817969 !important;
}
@media (min-width: 767.5px) {
  [data-pageid=vol2] .page-vol {
    width: 80.7%;
  }
}
@media (min-width: 767.5px) {
  [data-pageid=vol2] .page-vol .num {
    width: 24%;
  }
}
@media (max-width: 1440px) {
  [data-pageid=vol2] .page-vol .name {
    padding-right: 0vw;
    width: 76.6%;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol2] .fixed-wrap .section-icon.-pink {
    width: 18.9rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol2] .fixed-wrap .section-icon.-pink {
    width: 11.56rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol2] .fixed-wrap .section-icon.-pink {
    top: 6.3rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol2] .fixed-wrap .section-icon.-pink {
    top: 1.2rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol2] .fixed-wrap .section-icon.-pink {
    right: -10.6rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol2] .fixed-wrap .section-icon.-pink {
    right: -3.5rem;
  }
}
@media (min-width: 767.5px) {
  [data-pageid=vol2] .fixed-wrap .section-icon.-pink {
    width: 33.0785340314%;
    top: -14%;
    right: -15.4%;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol2] .fixed-wrap .section-icon.-white {
    width: 19.1rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol2] .fixed-wrap .section-icon.-white {
    width: 11.7rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol2] .fixed-wrap .section-icon.-white {
    top: 38.8rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol2] .fixed-wrap .section-icon.-white {
    top: 17.5rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol2] .fixed-wrap .section-icon.-white {
    right: -11.5rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol2] .fixed-wrap .section-icon.-white {
    right: -3.1rem;
  }
}
@media (min-width: 767.5px) {
  [data-pageid=vol2] .fixed-wrap .section-icon.-white {
    width: 33.502617801%;
    top: 67%;
    right: -14.8%;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol2] .fixed-wrap .section-icon.-purple {
    width: 10rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol2] .fixed-wrap .section-icon.-purple {
    width: 6.1rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol2] .fixed-wrap .section-icon.-purple {
    top: 40.5rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol2] .fixed-wrap .section-icon.-purple {
    top: 18.3rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol2] .fixed-wrap .section-icon.-purple {
    right: 39.1rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol2] .fixed-wrap .section-icon.-purple {
    right: 30.4rem;
  }
}
@media (min-width: 767.5px) {
  [data-pageid=vol2] .fixed-wrap .section-icon.-purple {
    width: 17.4520069808%;
    top: 73%;
    right: 90.3%;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol2] .fixed-wrap .section-icon.-beige {
    width: 22.6rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol2] .fixed-wrap .section-icon.-beige {
    width: 13.8rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol2] .fixed-wrap .section-icon.-beige {
    top: 3.1rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol2] .fixed-wrap .section-icon.-beige {
    top: -0.3rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol2] .fixed-wrap .section-icon.-beige {
    right: 43.8rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol2] .fixed-wrap .section-icon.-beige {
    right: 24rem;
  }
}
@media (min-width: 767.5px) {
  [data-pageid=vol2] .fixed-wrap .section-icon.-beige {
    width: 39.4415357766%;
    top: -19.3%;
    right: 76.3%;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol2] .contents-block .section-icon.-pink {
    width: 18.9rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol2] .contents-block .section-icon.-pink {
    width: 11.5rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol2] .contents-block .section-icon.-pink {
    top: 0rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol2] .contents-block .section-icon.-pink {
    top: -5rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol2] .contents-block .section-icon.-pink {
    right: 0rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol2] .contents-block .section-icon.-pink {
    right: -2rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol2] .contents-block .section-icon.-white {
    width: 19.1rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol2] .contents-block .section-icon.-white {
    width: 11.7rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol2] .contents-block .section-icon.-white {
    top: 0rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol2] .contents-block .section-icon.-white {
    top: -3rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol2] .contents-block .section-icon.-white {
    right: 0rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol2] .contents-block .section-icon.-white {
    right: -6rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol2] .contents-block .section-icon.-purple {
    width: 10rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol2] .contents-block .section-icon.-purple {
    width: 6.1rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol2] .contents-block .section-icon.-purple {
    top: 0rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol2] .contents-block .section-icon.-purple {
    top: -4.3rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol2] .contents-block .section-icon.-purple {
    left: 0rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol2] .contents-block .section-icon.-purple {
    left: -0.9rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol2] .contents-block .section-icon.-beige {
    width: 22.6rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol2] .contents-block .section-icon.-beige {
    width: 13.8rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol2] .contents-block .section-icon.-beige {
    top: 0rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol2] .contents-block .section-icon.-beige {
    top: -4rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol2] .contents-block .section-icon.-beige {
    right: 0rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol2] .contents-block .section-icon.-beige {
    right: 18.5rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol2] .contents-block.n1 {
    padding-top: 6.6rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol2] .contents-block.n1 {
    padding-top: 6rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol2] .contents-block.n2 {
    padding-top: 12.3rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol2] .contents-block.n2 {
    padding-top: 8.5rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol2] .contents-block.n2 .textArea .-title {
    margin-top: 6.5rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol2] .contents-block.n2 .textArea .-title {
    margin-top: 3.9rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol2] .contents-block.n3 {
    padding-top: 12rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol2] .contents-block.n3 {
    padding-top: 8.3rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol2] .contents-block.n4 {
    padding-top: 12rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol2] .contents-block.n4 {
    padding-top: 8rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol2] .contents-block.n4 .textArea .-title {
    margin-top: 16rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol2] .contents-block.n4 .textArea .-title {
    margin-top: 14.5rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol2] .btn-credit.n1 {
    right: 2.2rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol2] .btn-credit.n1 {
    right: auto;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol2] .btn-credit.n1 {
    left: auto;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol2] .btn-credit.n1 {
    left: 2.8rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol2] .btn-credit.n2 {
    right: 7.7rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol2] .btn-credit.n2 {
    right: 2.4rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol2] .btn-credit.n3 {
    right: 2.4rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol2] .btn-credit.n3 {
    right: 2rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol2] .btn-credit.n4 {
    left: 2.3rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol2] .btn-credit.n4 {
    left: 2.8rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol2] .credit-bubble#prie-list-1 {
    left: -9rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol2] .credit-bubble#prie-list-1 {
    left: -1.4rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol2] .credit-bubble#prie-list-1 {
    top: -2.8rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol2] .credit-bubble#prie-list-1 {
    top: -3.2rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol2] .credit-bubble#prie-list-2 {
    left: -7.3rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol2] .credit-bubble#prie-list-2 {
    left: -10.4rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol2] .credit-bubble#prie-list-3 {
    left: 2.4rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol2] .credit-bubble#prie-list-3 {
    left: -7.9rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol2] .credit-bubble#prie-list-4 {
    left: 0rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol2] .credit-bubble#prie-list-4 {
    left: -1.3rem;
  }
}
[data-pageid=vol2] .-pic-wrap.n1-1 {
  margin-right: 0;
  margin-left: auto;
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol2] .-pic-wrap.n1-1 {
    width: 43.7rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol2] .-pic-wrap.n1-1 {
    width: 32.3rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol2] .-pic-wrap.n1-1 {
    margin-bottom: -22.3rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol2] .-pic-wrap.n1-1 {
    margin-bottom: -3.3rem;
  }
}
@media (min-width: 767.5px) {
  [data-pageid=vol2] .-pic-wrap.n1-1 {
    width: 60.6944444444%;
    margin-bottom: -53.4722222222%;
  }
}
@media (max-width: 767.4px) {
  [data-pageid=vol2] .-pic-wrap.n1-1 {
    margin-right: auto;
    margin-left: 0;
  }
}
[data-pageid=vol2] .-pic-wrap.n1-2 {
  z-index: 1;
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol2] .-pic-wrap.n1-2 {
    width: 32.1rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol2] .-pic-wrap.n1-2 {
    width: 23.1rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol2] .-pic-wrap.n1-2 {
    margin-left: 5.5rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol2] .-pic-wrap.n1-2 {
    margin-left: auto;
  }
}
@media (min-width: 767.5px) {
  [data-pageid=vol2] .-pic-wrap.n1-2 {
    width: 44.5%;
    margin-left: 7.5%;
  }
}
@media (max-width: 767.4px) {
  [data-pageid=vol2] .-pic-wrap.n1-2 {
    margin-right: 0;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol2] .-pic-wrap.n2-1 {
    width: 72rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol2] .-pic-wrap.n2-1 {
    width: 37.5rem;
  }
}
@media (min-width: 767.5px) {
  [data-pageid=vol2] .-pic-wrap.n2-1 {
    width: 100%;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol2] .-pic-wrap.n3-1 {
    width: 31.3rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol2] .-pic-wrap.n3-1 {
    width: 22.7rem;
  }
}
@media (min-width: 767.5px) {
  [data-pageid=vol2] .-pic-wrap.n3-1 {
    width: 43.4722222222%;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol2] .-pic-wrap.n3-2 {
    width: 42rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol2] .-pic-wrap.n3-2 {
    width: 31.7rem;
  }
}
@media (min-width: 767.5px) {
  [data-pageid=vol2] .-pic-wrap.n3-2 {
    width: 58.3333333333%;
  }
}
[data-pageid=vol2] .-pic-wrap.n4-1 {
  z-index: 1;
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol2] .-pic-wrap.n4-1 {
    width: 27.9rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol2] .-pic-wrap.n4-1 {
    width: 14.4rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol2] .-pic-wrap.n4-1 {
    margin-left: 5.5rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol2] .-pic-wrap.n4-1 {
    margin-left: auto;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol2] .-pic-wrap.n4-1 {
    margin-bottom: -21.7rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol2] .-pic-wrap.n4-1 {
    margin-bottom: -7.4rem;
  }
}
@media (min-width: 767.5px) {
  [data-pageid=vol2] .-pic-wrap.n4-1 {
    width: 38.75%;
    margin-left: 57.5%;
    margin-bottom: -49.8611111111%;
  }
}
@media (max-width: 767.4px) {
  [data-pageid=vol2] .-pic-wrap.n4-1 {
    margin-right: 2.7rem;
  }
}
[data-pageid=vol2] .-pic-wrap.n4-2 {
  margin-left: 0;
  margin-right: auto;
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol2] .-pic-wrap.n4-2 {
    width: 44.1rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol2] .-pic-wrap.n4-2 {
    width: 32.5rem;
  }
}
@media (min-width: 767.5px) {
  [data-pageid=vol2] .-pic-wrap.n4-2 {
    width: 61.25%;
  }
}
[data-pageid=vol2] .deco-dog {
  position: absolute;
  z-index: 2;
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol2] .deco-dog {
    width: 19.4rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol2] .deco-dog {
    width: 13.4rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol2] .deco-dog {
    top: 0rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol2] .deco-dog {
    top: 33.8rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol2] .deco-dog {
    right: 0rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol2] .deco-dog {
    right: -3.2rem;
  }
}
@media (min-width: 767.5px) {
  [data-pageid=vol2] .deco-dog {
    width: 43.9909297052%;
    top: 64.3990929705%;
    right: -28.5714285714%;
  }
}

[data-pageid=vol3] .section-kv .kv-text-1 {
  position: absolute;
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol3] .section-kv .kv-text-1 {
    top: 13rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol3] .section-kv .kv-text-1 {
    top: 6.5rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol3] .section-kv .kv-text-1 {
    right: 6.9rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol3] .section-kv .kv-text-1 {
    right: 3.8rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol3] .section-kv .kv-text-1 {
    width: 1.82rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol3] .section-kv .kv-text-1 {
    width: 1.45rem;
  }
}
@media (min-width: 767.5px) {
  [data-pageid=vol3] .section-kv .kv-text-1 {
    width: 2.64%;
    top: 13.8%;
    right: 10.5%;
  }
}
[data-pageid=vol3] .section-kv .kv-text-2 {
  position: absolute;
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol3] .section-kv .kv-text-2 {
    top: 22.7rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol3] .section-kv .kv-text-2 {
    top: 9.5rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol3] .section-kv .kv-text-2 {
    right: 10.6rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol3] .section-kv .kv-text-2 {
    right: 6.4rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol3] .section-kv .kv-text-2 {
    width: 1.8rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol3] .section-kv .kv-text-2 {
    width: 1.44rem;
  }
}
@media (min-width: 767.5px) {
  [data-pageid=vol3] .section-kv .kv-text-2 {
    width: 2.64%;
    top: 18.5%;
    right: 15%;
  }
}
[data-pageid=vol3] .kv-contents {
  background-color: #62C1C1 !important;
}
@media (min-width: 767.5px) {
  [data-pageid=vol3] .page-vol {
    width: 80.7%;
    margin-top: 12.5%;
  }
}
@media (min-width: 767.5px) {
  [data-pageid=vol3] .page-vol .num {
    width: 24%;
  }
}
@media (max-width: 1440px) {
  [data-pageid=vol3] .page-vol .name {
    padding-right: 0vw;
    width: 76.6%;
  }
}
@media (min-width: 767.5px) {
  [data-pageid=vol3] .fixed-wrap {
    transform: translate(-50%, -39.8%);
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol3] .fixed-wrap .section-icon.-orange {
    width: 22.5rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol3] .fixed-wrap .section-icon.-orange {
    width: 12.2rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol3] .fixed-wrap .section-icon.-orange {
    top: 0rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol3] .fixed-wrap .section-icon.-orange {
    top: -0.5rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol3] .fixed-wrap .section-icon.-orange {
    right: 0rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol3] .fixed-wrap .section-icon.-orange {
    right: -3.5rem;
  }
}
@media (min-width: 767.5px) {
  [data-pageid=vol3] .fixed-wrap .section-icon.-orange {
    width: 39.2670157068%;
    top: -27%;
    right: -17%;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol3] .fixed-wrap .section-icon.-blue {
    width: 16.2rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol3] .fixed-wrap .section-icon.-blue {
    width: 7.9rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol3] .fixed-wrap .section-icon.-blue {
    top: 0rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol3] .fixed-wrap .section-icon.-blue {
    top: 23rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol3] .fixed-wrap .section-icon.-blue {
    right: 0rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol3] .fixed-wrap .section-icon.-blue {
    right: 28.6rem;
  }
}
@media (min-width: 767.5px) {
  [data-pageid=vol3] .fixed-wrap .section-icon.-blue {
    width: 28.2722513089%;
    top: 50%;
    right: 85.6%;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol3] .fixed-wrap .section-icon.-green {
    width: 18.1rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol3] .fixed-wrap .section-icon.-green {
    width: 9.9rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol3] .fixed-wrap .section-icon.-green {
    top: 0rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol3] .fixed-wrap .section-icon.-green {
    top: 2.8rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol3] .fixed-wrap .section-icon.-green {
    right: 0rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol3] .fixed-wrap .section-icon.-green {
    right: 26.3rem;
  }
}
@media (min-width: 767.5px) {
  [data-pageid=vol3] .fixed-wrap .section-icon.-green {
    width: 31.5881326353%;
    top: -11.5%;
    right: 84%;
  }
}
[data-pageid=vol3] .fixed-wrap .-red {
  position: absolute;
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol3] .fixed-wrap .-red {
    width: 10rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol3] .fixed-wrap .-red {
    width: 5.4rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol3] .fixed-wrap .-red {
    top: 0rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol3] .fixed-wrap .-red {
    top: 13rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol3] .fixed-wrap .-red {
    right: 0rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol3] .fixed-wrap .-red {
    right: -1.2rem;
  }
}
@media (min-width: 767.5px) {
  [data-pageid=vol3] .fixed-wrap .-red {
    width: 17.4520069808%;
    top: 38.7005649718%;
    right: -14.1361256545%;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol3] .fixed-wrap .section-icon.-navy {
    width: 19.3rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol3] .fixed-wrap .section-icon.-navy {
    width: 10.4rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol3] .fixed-wrap .section-icon.-navy {
    top: 0rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol3] .fixed-wrap .section-icon.-navy {
    top: 18.7rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol3] .fixed-wrap .section-icon.-navy {
    right: 0rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol3] .fixed-wrap .section-icon.-navy {
    right: -1.8rem;
  }
}
@media (min-width: 767.5px) {
  [data-pageid=vol3] .fixed-wrap .section-icon.-navy {
    width: 33.6823734729%;
    top: 70%;
    right: -9.5%;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol3] .contents-block .section-icon.-orange {
    width: 22.5rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol3] .contents-block .section-icon.-orange {
    width: 12.2rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol3] .contents-block .section-icon.-orange {
    top: 0rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol3] .contents-block .section-icon.-orange {
    top: -4.1rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol3] .contents-block .section-icon.-orange {
    right: 0rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol3] .contents-block .section-icon.-orange {
    right: -5rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol3] .contents-block .section-icon.-blue {
    width: 17.9rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol3] .contents-block .section-icon.-blue {
    width: 8.6rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol3] .contents-block .section-icon.-blue {
    top: 0rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol3] .contents-block .section-icon.-blue {
    top: -5rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol3] .contents-block .section-icon.-blue {
    right: 0rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol3] .contents-block .section-icon.-blue {
    right: 22rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol3] .contents-block .section-icon.-green {
    width: 18.1rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol3] .contents-block .section-icon.-green {
    width: 9.9rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol3] .contents-block .section-icon.-green {
    top: 0rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol3] .contents-block .section-icon.-green {
    top: -2.4rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol3] .contents-block .section-icon.-green {
    left: 0rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol3] .contents-block .section-icon.-green {
    left: -0.3rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol3] .contents-block .section-icon.-navy {
    width: 19.3rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol3] .contents-block .section-icon.-navy {
    width: 10.4rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol3] .contents-block .section-icon.-navy {
    top: 0rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol3] .contents-block .section-icon.-navy {
    top: 0.9rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol3] .contents-block .section-icon.-navy {
    right: 0rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol3] .contents-block .section-icon.-navy {
    right: -3.2rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol3] .contents-block.n1 {
    padding-top: 8.8rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol3] .contents-block.n1 {
    padding-top: 6.9rem;
  }
}
@media (max-width: 767.4px) {
  [data-pageid=vol3] .contents-block.n1 .contents-block-inner:nth-of-type(1) .textArea .-title {
    margin-top: 5.4rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol3] .contents-block.n1 .contents-block-inner:nth-of-type(2) .textArea .-text {
    margin-top: 4.8rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol3] .contents-block.n1 .contents-block-inner:nth-of-type(2) .textArea .-text {
    margin-top: 4rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol3] .contents-block.n2 {
    padding-top: 5.8rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol3] .contents-block.n2 {
    padding-top: 8.9rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol3] .contents-block.n2 .textArea .-title {
    margin-top: 6.8rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol3] .contents-block.n2 .textArea .-title {
    margin-top: 3.7rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol3] .contents-block.n3 {
    padding-top: 12rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol3] .contents-block.n3 {
    padding-top: 7.7rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol3] .contents-block.n3 .textArea {
    width: 35.5rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol3] .contents-block.n3 .textArea {
    width: 19.6rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol3] .contents-block.n3 .textArea {
    margin-left: 7rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol3] .contents-block.n3 .textArea {
    margin-left: 2.8rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol3] .contents-block.n3 .textArea .-title {
    margin-top: 6.9rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol3] .contents-block.n3 .textArea .-title {
    margin-top: 3.7rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol3] .contents-block.n3 .textArea .-text {
    margin-top: 4.6rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol3] .contents-block.n3 .textArea .-text {
    margin-top: 4rem;
  }
}
[data-pageid=vol3] .contents-block.n3 .br {
  display: inline-block;
  text-decoration-line: underline;
  text-decoration-color: var(--key-color);
  text-decoration-style: dotted;
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol3] .contents-block.n3 .br {
    margin-top: 2rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol3] .contents-block.n3 .br {
    margin-top: 1.3rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol3] .contents-block.n4 {
    padding-top: 13.3rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol3] .contents-block.n4 {
    padding-top: 9rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol3] .contents-block.n4 .textArea .-title {
    margin-top: 8rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol3] .contents-block.n4 .textArea .-title {
    margin-top: 4.8rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol3] .btn-credit.n1 {
    right: 2.4rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol3] .btn-credit.n1 {
    right: 1.4rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol3] .btn-credit.n2 {
    left: 3rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol3] .btn-credit.n2 {
    left: 2.3rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol3] .btn-credit.n3 {
    left: 3rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol3] .btn-credit.n3 {
    left: auto;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol3] .btn-credit.n3 {
    right: auto;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol3] .btn-credit.n3 {
    right: 2.1rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol3] .btn-credit.n4 {
    right: 3rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol3] .btn-credit.n4 {
    right: 1.4rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol3] .contents-block-inner:not(:first-of-type) {
    margin-top: 4.1rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol3] .contents-block-inner:not(:first-of-type) {
    margin-top: 4.1rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol3] .credit-bubble#prie-list-1 {
    left: 2.5rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol3] .credit-bubble#prie-list-1 {
    left: -8.1rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol3] .credit-bubble#prie-list-1 {
    top: -2.8rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol3] .credit-bubble#prie-list-1 {
    top: -3.2rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol3] .credit-bubble#prie-list-2 {
    left: 3rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol3] .credit-bubble#prie-list-2 {
    left: -1rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol3] .credit-bubble#prie-list-3 {
    left: 3rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol3] .credit-bubble#prie-list-3 {
    left: -10.7rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol3] .credit-bubble#prie-list-4 {
    left: 2.4rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol3] .credit-bubble#prie-list-4 {
    left: -8.4rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol3] .-pic-wrap.n1-1 {
    width: 42rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol3] .-pic-wrap.n1-1 {
    width: 30.8rem;
  }
}
@media (min-width: 767.5px) {
  [data-pageid=vol3] .-pic-wrap.n1-1 {
    width: 58.3333333333%;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol3] .-pic-wrap.n1-2 {
    width: 32rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol3] .-pic-wrap.n1-2 {
    width: 24.8rem;
  }
}
@media (min-width: 767.5px) {
  [data-pageid=vol3] .-pic-wrap.n1-2 {
    width: 44.4444444444%;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol3] .-pic-wrap.n2-1 {
    width: 42rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol3] .-pic-wrap.n2-1 {
    width: 29.8rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol3] .-pic-wrap.n2-1 {
    margin-bottom: -35.8rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol3] .-pic-wrap.n2-1 {
    margin-bottom: 2.2rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol3] .-pic-wrap.n2-1 {
    margin-left: 0rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol3] .-pic-wrap.n2-1 {
    margin-left: 0rem;
  }
}
@media (min-width: 767.5px) {
  [data-pageid=vol3] .-pic-wrap.n2-1 {
    width: 58.3333333333%;
    margin-bottom: -49.7222222222%;
    margin-right: auto;
  }
}
[data-pageid=vol3] .-pic-wrap.n2-2 {
  z-index: 1;
  margin-left: auto;
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol3] .-pic-wrap.n2-2 {
    width: 31rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol3] .-pic-wrap.n2-2 {
    width: 23rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol3] .-pic-wrap.n2-2 {
    margin-right: 4rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol3] .-pic-wrap.n2-2 {
    margin-right: 0rem;
  }
}
@media (min-width: 767.5px) {
  [data-pageid=vol3] .-pic-wrap.n2-2 {
    width: 43.0555555556%;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol3] .-pic-wrap.n4-1 {
    width: 44rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol3] .-pic-wrap.n4-1 {
    width: 31.5rem;
  }
}
@media (min-width: 767.5px) {
  [data-pageid=vol3] .-pic-wrap.n4-1 {
    width: 61.1111111111%;
  }
}
[data-pageid=vol3] .deco-boy {
  position: absolute;
  z-index: 2;
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol3] .deco-boy {
    width: 22.1rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol3] .deco-boy {
    width: 14.3rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol3] .deco-boy {
    top: 0rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol3] .deco-boy {
    top: 45.5rem;
  }
}
@media all and (min-width: 767.5px) {
  [data-pageid=vol3] .deco-boy {
    right: 0rem;
  }
}
@media all and (max-width: 767.4px) {
  [data-pageid=vol3] .deco-boy {
    right: 0rem;
  }
}
@media (min-width: 767.5px) {
  [data-pageid=vol3] .deco-boy {
    width: 33.8888888889%;
    top: 96.8911917098%;
    right: 3.0555555556%;
  }
}
[data-pageid=vol3] .deco-boy .pic {
  position: absolute;
  width: 100%;
  opacity: 0;
  animation: change-img-anim 5s infinite;
}
[data-pageid=vol3] .deco-boy .pic:nth-of-type(1) {
  animation-delay: 1s;
  opacity: 1;
}
[data-pageid=vol3] .deco-boy .pic:nth-of-type(2) {
  animation-delay: 3.5s;
}
@keyframes change-img-anim {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  51% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* other
*******************/
@media all and (min-width: 767.5px) {
  .section-other .section-other-inner {
    padding: 5rem 0rem 10rem;
  }
}
@media all and (max-width: 767.4px) {
  .section-other .section-other-inner {
    padding: 5rem 0rem 10rem;
  }
}
.section-other .other-title {
  text-align: center;
}
@media all and (min-width: 767.5px) {
  .section-other .other-title {
    font-size: 2rem;
  }
}
@media all and (max-width: 767.4px) {
  .section-other .other-title {
    font-size: 1.8rem;
  }
}
.section-other .other-list {
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
@media all and (min-width: 767.5px) {
  .section-other .other-list {
    width: 70.2rem;
  }
}
@media all and (max-width: 767.4px) {
  .section-other .other-list {
    width: 27.3rem;
  }
}
@media all and (min-width: 767.5px) {
  .section-other .other-list {
    margin-top: 5rem;
  }
}
@media all and (max-width: 767.4px) {
  .section-other .other-list {
    margin-top: 5rem;
  }
}
@media (max-width: 767.4px) {
  .section-other .other-list {
    flex-direction: column;
  }
}
.section-other .other-list-link {
  display: block;
}
@media (max-width: 767.4px) {
  .section-other .other-list-link {
    display: flex;
    align-items: center;
  }
}
@media all and (min-width: 767.5px) {
  .section-other .other-list-item {
    width: 32.6rem;
  }
}
@media all and (max-width: 767.4px) {
  .section-other .other-list-item {
    width: 27.3rem;
  }
}
@media all and (min-width: 767.5px) {
  .section-other .other-list-item:nth-child(n+2) {
    margin-left: 5rem;
  }
}
@media all and (max-width: 767.4px) {
  .section-other .other-list-item:nth-child(n+2) {
    margin-left: 0rem;
  }
}
@media all and (min-width: 767.5px) {
  .section-other .other-list-item .pic {
    width: 32.6rem;
  }
}
@media all and (max-width: 767.4px) {
  .section-other .other-list-item .pic {
    width: 14.1rem;
  }
}
.section-other .other-list-item .other-list-details {
  flex: 1;
}
@media all and (min-width: 767.5px) {
  .section-other .other-list-item .other-list-details {
    padding-left: 0rem;
  }
}
@media all and (max-width: 767.4px) {
  .section-other .other-list-item .other-list-details {
    padding-left: 2.4rem;
  }
}
@media all and (min-width: 767.5px) {
  .section-other .other-list-item .other-list-title {
    margin-top: 2.5rem;
  }
}
@media all and (max-width: 767.4px) {
  .section-other .other-list-item .other-list-title {
    margin-top: 0rem;
  }
}
@media all and (min-width: 767.5px) {
  .section-other .other-list-item .other-list-title {
    font-size: 1.6rem;
  }
}
@media all and (max-width: 767.4px) {
  .section-other .other-list-item .other-list-title {
    font-size: 1.2rem;
  }
}
@media (min-width: 767.5px) {
  .section-other .other-list-item .other-list-title {
    text-align: center;
  }
}
@media all and (min-width: 767.5px) {
  .section-other .other-list-item .other-list-name {
    margin-top: 1rem;
  }
}
@media all and (max-width: 767.4px) {
  .section-other .other-list-item .other-list-name {
    margin-top: 1rem;
  }
}
@media all and (min-width: 767.5px) {
  .section-other .other-list-item .other-list-name {
    font-size: 1.2rem;
  }
}
@media all and (max-width: 767.4px) {
  .section-other .other-list-item .other-list-name {
    font-size: 1rem;
  }
}
@media (min-width: 767.5px) {
  .section-other .other-list-item .other-list-name {
    text-align: center;
  }
}
@media all and (min-width: 767.5px) {
  .section-other .other-list-item + .other-list-item {
    margin-top: 0rem;
  }
}
@media all and (max-width: 767.4px) {
  .section-other .other-list-item + .other-list-item {
    margin-top: 5rem;
  }
}
.section-other .pageTop-wrap {
  text-align: center;
}
@media all and (min-width: 767.5px) {
  .section-other .pageTop-wrap {
    margin-top: 5.4rem;
  }
}
@media all and (max-width: 767.4px) {
  .section-other .pageTop-wrap {
    margin-top: 5.4rem;
  }
}
.section-other .pageTop-wrap .pageTop {
  display: inline-block;
}
.section-other .pageTop-wrap .pageTop-arrow {
  margin: auto;
}
@media all and (min-width: 767.5px) {
  .section-other .pageTop-wrap .pageTop-arrow {
    width: 2.2rem;
  }
}
@media all and (max-width: 767.4px) {
  .section-other .pageTop-wrap .pageTop-arrow {
    width: 2.2rem;
  }
}
.section-other .pageTop-wrap .pageTop-text {
  display: inline-block;
}
@media all and (min-width: 767.5px) {
  .section-other .pageTop-wrap .pageTop-text {
    margin-top: 1.1rem;
  }
}
@media all and (max-width: 767.4px) {
  .section-other .pageTop-wrap .pageTop-text {
    margin-top: 1.1rem;
  }
}
.section-other .brand-link {
  display: block;
  margin: 0 auto;
}
@media all and (min-width: 767.5px) {
  .section-other .brand-link {
    width: 10rem;
  }
}
@media all and (max-width: 767.4px) {
  .section-other .brand-link {
    width: 10rem;
  }
}
@media all and (min-width: 767.5px) {
  .section-other .brand-link {
    margin-top: 8.6rem;
  }
}
@media all and (max-width: 767.4px) {
  .section-other .brand-link {
    margin-top: 8.6rem;
  }
}
.section-other .sns-list {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media all and (min-width: 767.5px) {
  .section-other .sns-list {
    margin-top: 5.5rem;
  }
}
@media all and (max-width: 767.4px) {
  .section-other .sns-list {
    margin-top: 5.5rem;
  }
}
@media all and (min-width: 767.5px) {
  .section-other .sns-list .sns-list-item {
    margin: 0rem 1.2rem;
  }
}
@media all and (max-width: 767.4px) {
  .section-other .sns-list .sns-list-item {
    margin: 0rem 1.2rem;
  }
}
@media all and (min-width: 767.5px) {
  .section-other .sns-list .sns-list-item.-line {
    width: 4.2rem;
  }
}
@media all and (max-width: 767.4px) {
  .section-other .sns-list .sns-list-item.-line {
    width: 4.2rem;
  }
}
@media all and (min-width: 767.5px) {
  .section-other .sns-list .sns-list-item.-insta {
    width: 3.6rem;
  }
}
@media all and (max-width: 767.4px) {
  .section-other .sns-list .sns-list-item.-insta {
    width: 3.6rem;
  }
}
@media all and (min-width: 767.5px) {
  .section-other .sns-list .sns-list-item.-tw {
    width: 4.1rem;
  }
}
@media all and (max-width: 767.4px) {
  .section-other .sns-list .sns-list-item.-tw {
    width: 4.1rem;
  }
}
.section-other .sns-list .sns-list-link {
  display: block;
}
@media all and (min-width: 767.5px) {
  .section-other .sns-list .sns-list-link {
    padding: 0.4rem;
  }
}
@media all and (max-width: 767.4px) {
  .section-other .sns-list .sns-list-link {
    padding: 0.4rem;
  }
}

@media all and (min-width: 767.5px) {
  .staff-credit {
    padding-top: 8.2rem;
  }
}
@media all and (max-width: 767.4px) {
  .staff-credit {
    padding-top: 7.5rem;
  }
}
@media all and (min-width: 767.5px) {
  .staff-credit {
    padding-bottom: 7rem;
  }
}
@media all and (max-width: 767.4px) {
  .staff-credit {
    padding-bottom: 7rem;
  }
}
.staff-credit .text {
  text-align: center;
}
@media all and (min-width: 767.5px) {
  .staff-credit .text {
    font-size: 1rem;
  }
}
@media all and (max-width: 767.4px) {
  .staff-credit .text {
    font-size: 1rem;
  }
}
/*# sourceMappingURL=main.css.map */