@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,900;1,400&display=swap');

html, body {
	margin: 0;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}
body {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
body::-webkit-scrollbar {
  display:none;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
p {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
  transition: opacity .5s;
}
a:hover {
  opacity: .7;
  transition: opacity .5s;
}


@media screen and (max-width: 768px) {
  .pc {
    display: none!important;
  }
}
@media screen and (min-width: 769px) {
  .sp {
    display: none!important;
  }
}

/*------------
  common
------------*/
.container {
  position: relative;
  width: 980px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .container {
    width: 100%;
  }
}

/*
  pagetop
------------*/

.pagetop {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: fixed;
  z-index: 99;
  bottom: 5%;
  right: 20px;
  max-height: 100vh;
  opacity: 0;
  pointer-events: none;
  transition: .5s;
}
.pagetop.on {
  opacity: 1;
  pointer-events: auto;
  transition: .5s;
}
.pagetop img {
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .pagetop {
    right: 10px;
  }
}


/*------------
  header
------------*/

header {
  position: fixed;
  z-index: 999;
  top: 25px;
  left: 0;
  width: 100%;
  text-align: right;
}
header .logo {
  display: none;
}
header .trigger {
  display: inline-block;
  position: relative;
  z-index: 9;
  right: 25px;
  width: 25px;
  height: 22px;
  cursor: pointer;
}
header .trigger span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  border-radius: 5px;
  transition: background .5s;
}
header.scroll .trigger span {
  background: #000;
}
header.scroll.index .trigger span,
header.scroll.active .trigger span {
  background: #fff;
}
header .trigger span:nth-child(1) {
  top: 0;
}
header .trigger span:nth-child(2) {
  top: 0;
  bottom: 0;
  margin: auto;
}
header .trigger span:nth-child(3) {
  bottom: 0;
}
header.active .trigger span:nth-child(1) {
  bottom: 0;
  margin: auto;
  transform: rotate(45deg);
}
header.active .trigger span:nth-child(2) {
  opacity: 0;
}
header.active .trigger span:nth-child(3) {
  top: 0;
  margin: auto;
  transform: rotate(-45deg);
}
header .drop-menu {
  overflow-y: scroll;
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 260px;
  height: 100vh;
  max-height: 100vh;
  padding: 25px 30px;
  background: #3c78a6;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
header .drop-menu::-webkit-scrollbar {
  display:none;
}
header .drop-menu .menu-logo {
  text-align: center;
}
header .drop-menu .menu-list {
  margin: 25px auto;
  text-align: left;
}
header .drop-menu .menu-list p {
  margin-top: 5px;
}
header .drop-menu .menu-list a {
  display: inline-block;
  position: relative;
}
header .drop-menu .menu-list .wave a {
  padding-bottom: 5px;
}
header .drop-menu .menu-list .wave a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: url(../img/common/drop_wave.png) repeat-x center/auto 100%;
}
header .drop-menu .menu-list .wave + p {
  margin-top: 10px;
}
header .drop-menu .menu-list a:hover {
  opacity: 1;
}

@media screen and (max-width: 768px) {
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    top: 0;
    width: 100%;
    padding: 20px 5%;
    background: #fff;
    transition: .5s;
  }
  header.index {
    background: transparent;
  }
  header.active {
    background: #3c78a6;
    transition: .5s;
  }
  header .logo {
    display: block;
    width: 20%;
    opacity: 1;
    transition: .5s;
  }
  header.active .logo {
    opacity: 0;
    transition: .5s;
  }
  header .trigger {
    right: 0;
    width: 24px;
    height: 17px;
  }
  header.index .trigger {
    margin-left: auto;
  }
  header .trigger span {
    background: #000;
  }
  header.index .trigger span,
  header.active .trigger span {
    background: #fff;
  }
  header .drop-menu {
    overflow-y: auto;
    width: 100%;
    max-height: 80vh;
    padding: 10%;
  }
  header .drop-menu .menu-logo {
    width: 200px;
    margin: 0 auto 50px;
  }
  header .drop-menu .menu-list {
    width: 200px;
    margin: 20px auto 0;
  }
}

/*------------
  footer
------------*/

.footer-link {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 50px;
}
.footer-link a {
  display: flex;
  align-items: center;
  width: 320px;
  background: #3c78a6;
}
.footer-link .link-icon {
  flex-shrink: 0;
  width: 82px;
}
.footer-link .link-txt {
  margin: 0 auto;
  padding: 0 20px;
}
.footer-link .link-txt img {
  width: auto;
  height: 67px;
}
.footer-link ._raintex .link-txt img {
  height: 48px;
}
.footer-link ._howto .link-txt img {
  height: 76px;
}
footer .copyright {
  margin: 20px auto;
  text-align: center;
  font-size: 10px;
  color: #003333;
}

@media screen and (max-width: 768px) {
  footer .container {
    display: block;
    width: 90%;
    margin: 0 auto;
  }
  .footer-link {
    margin-top: 30px;
  }
  .footer-link a {
    width: 100%;
    height: 80px;
  }
  .footer-link a + a {
    margin-top: 10px;
  }
  .footer-link .link-icon {
    width: auto;
    height: 80px;
  }
  .footer-link .link-icon img {
    width: auto;
    height: 100%;
  }
  .footer-link .link-txt {
    max-height: 80px;
  }
  .footer-link .link-txt img {
    height: 46px;
  }
  .footer-link ._raintex .link-txt img {
    height: 36px;
  }
  .footer-link ._howto .link-txt img {
    height: 58px;
  }
  footer .copyright {
    margin: 30px auto;
    font-size: 8px;
    line-height: 10px;
  }
}


/*------------
  rellax-parent
------------*/

.rellax-parent {
  display: flex;
  position: relative;
  width: 1080px;
  margin: 50px auto 0;
  pointer-events: none;
}
.rellax-parent + .rellax-parent {
  margin-top: 80px;
}
.rellax-parent figure {
  position: relative;
  opacity: 0;
}
.rellax-parent figure.active {
  opacity: 1;
  transition: opacity .5s;
}
.rellax-parent figure p {
  display: inline-flex;
  align-items: center;
  padding-top: 5px;
  font-size: 0!important;
  line-height: 1!important;
  cursor: pointer;
  pointer-events: auto;
}
.rellax-parent figure p img.arrow {
  padding-right: 5px;
  height: 11px;
}
.rellax-parent figure p img.detail {
  height: 14px;
}
.rellax-parent .fig-illust {
  position: absolute;
  max-width: none;
}


@media screen and (max-width: 768px) {
  .rellax-parent {
    width: 100%;
    padding: 0 5%;
  }
  .rellax-parent figure p img.arrow {
    height: 7px;
  }
  .rellax-parent figure p img.detail {
    height: 11px;
  }
}


/*------------
  index
------------*/

#main-block {
  background: #80bdc4;
}
#main-block .block-gif {
  position: relative;
}
#main-block .block-logo {
  position: absolute;
  width: 35%;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
}
#main-block .block-logo h1 {
  width: 100%;
  margin: 15px auto 20px;
}
#main-block .block-logo img {
  width: 100%;
}
#main-block .block-logo .logo-tnf {
  display: block;
  width: 20%;
  margin: 0 auto;
}
#main-block .block-logo .logo-sub {
  width: 80%;
  margin: 0 auto;
}
#main-block .block-txt {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: clamp(16px, calc(16px + 12 * (100vw - 1080px) / 860), 28px);
  line-height: 1.625;
}
#main-block .block-txt h2 {
  margin-bottom: 30px;
  font-size: 24px;
  font-size: clamp(24px, calc(24px + 18 * (100vw - 1080px) / 860), 42px);
  line-height: calc(34 / 24);
}
#main-block .block-link {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
#main-block .block-link .link-box {
  margin-top: 45px;
}
#main-block .block-link .link-box a {
  display: inline-block;
  position: relative;
  padding-bottom: 10px;
}
#main-block .block-link .link-box a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: url(../img/common/drop_wave.png) repeat-x center/auto 100%;
}
#main-block .block-link .link-box a._on::before {
  background: url(../img/common/drop_wave_on.png) repeat-x center/auto 100%;
}
#main-block .block-link .link-box a:hover {
  opacity: 1;
}
#main-block .block-link .link-box p {
  margin-top: 15px;
}
#main-block .block-menu {
  padding: 0 50px;
}
#main-block .block-menu .menu-link {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
#main-block .block-menu .menu-link a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(25% - (30px / 4));
  height: 120px;
  text-align: center;
  color: #fff;
  background: #3c78a6;
  line-height: 1.5;
}
#main-block .block-menu .menu-link a img {
  position: relative;
  width: auto;
  height: 67px;
}
#main-block .block-menu .menu-credits {
  display: flex;
  margin-top: 20px;
  padding-bottom: 50px;
  font-family: 'Lato', sans-serif;
}
#main-block .block-menu .menu-credits div {
  width: calc(100% / 3);
  font-size: 10px;
  color: #fff;
  line-height: 13px;
}
#main-block .block-menu .menu-credits small {
  display: block;
  font-size: 8px;
  line-height: 10px;
}
#main-block .block-menu .menu-credits .credits-ttl {
  margin-bottom: 5px;
  font-weight: bold;
}

@media screen and (max-width: 1080px) {
  #main-block .block-txt {
    font-size: 16px;
    line-height: 26px;
  }
  #main-block .block-txt h2 {
    font-size: 24px;
    line-height: 34px;
  }
}

@media screen and (max-width: 768px) {
  #main-block .block-logo {
    top: 20px;
    width: 65%;
  }
  #main-block .block-logo .logo-tnf {
    width: 30%;
  }
  #main-block .block-logo h1 {
    margin: 25px auto 10px;
  }
  #main-block .block-logo .logo-sub {
    width: 90%;
  }
  #main-block .block-txt {
    top: -40vw;
    font-size: 13px;
    line-height: 24px;
    width: 90%;
  }
  #main-block .block-txt h2 {
    margin-bottom: 25px;
    font-size: 20px;
  }
  #main-block .block-link {
    top: -110vw;
    width: 80%;
    max-width: 80%;
  }
  #main-block .block-link .link-box {
    margin-top: 30px;
  }

  #main-block .block-menu {
    padding: 0 5%;
  }
  #main-block .block-menu .menu-link {
    display: block;
    padding: 10px 0;
  }
  #main-block .block-menu .menu-link a {
    width: 100%;
    height: 80px;
  }
  #main-block .block-menu .menu-link a + a {
    margin-top: 10px;
  }
  #main-block .block-menu .menu-link a img {
    width: auto;
    height: 42px;
  }
  #main-block .block-menu .menu-credits {
    display: block;
    margin-top: 30px;
    text-align: center;
  }
  #main-block .block-menu .menu-credits div {
    width: 100%;
  }
  #main-block .block-menu .menu-credits div + div {
    margin-top: 30px;
  }
}


/*------------
  mv
------------*/

#mv {
  position: relative;
  height: 100vh;
}
#mv.mv-raintex {
  background: url(../img/raintex/mv_raintex.jpg) no-repeat center/cover;
}
#mv.mv-scene {
  background: url(../img/scene/mv_scene.jpg) no-repeat center/cover;
}
#mv.mv-howto {
  background: url(../img/howto/mv_howto.jpg) no-repeat center/cover;
}
#mv.mv-items {
  background: url(../img/items/mv_items.jpg) no-repeat center/cover;
}
#mv .mv-ttl {
  position: absolute;
  top: 20px;
  left: 30px;
}
#mv.mv-scene .mv-logo {
  position: absolute;
  bottom: 40px;
  right: 55px;
}
#mv.mv-items .mv-logo {
  position: absolute;
  bottom: 35px;
  left: 80px;
}

@media screen and (max-width: 768px) {
  #mv {
    height: 250px;
  }
  #mv.mv-raintex {
    background: url(../img/raintex/sp/mv_raintex.jpg) no-repeat center/cover;
  }
  #mv.mv-scene {
    background: url(../img/scene/sp/mv_scene.jpg) no-repeat center/cover;
  }
  #mv.mv-howto {
    height: 210px;
    background: url(../img/howto/sp/mv_howto.jpg) no-repeat center/cover;
  }
  #mv.mv-items {
    background: url(../img/items/sp/mv_items.jpg) no-repeat center/cover;
  }
  #mv .mv-ttl {
    top: 10px;
    left: 10px;
    height: 90%;
  }
  #mv .mv-ttl img {
    width: auto;
    height: 230px;
  }
  #mv.mv-scene .mv-logo {
    width: 35%;
    bottom: 10px;
    right: 20px;
  }
  #mv.mv-items .mv-logo {
    width: 35%;
    bottom: 10px;
    left: 50px;
  }
}




/*------------
  raintex
------------*/

/*
  raintex-item
------------*/

#raintex-item {
  padding: 50px 0;
}
#raintex-item h2 {
  margin: 20px auto 40px;
  text-align: center;
}
#raintex-item h2 img {
  height: 44px;
}
#raintex-item p {
  text-align: center;
  font-size: 16px;
  line-height: 26px;
}
#raintex-item .item-sub {
  text-align: center;
}
#raintex-item .item-sub span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 8px 18px;
  border: 1px solid #3c78a6;
}
#raintex-item .item-sub img {
  height: 14px;
}

#raintex-item .parent01 {
  width: 500px;
}
#raintex-item .parent02 {
  justify-content: space-between;
  padding: 0 50px;
}
#raintex-item .parent03 {
  display: block;
}

#raintex-item .rellax-parent .fig01 {
  width: 100%;
  text-align: left;
}
#raintex-item .rellax-parent .fig02 {
  width: 485px;
  text-align: left;
}
#raintex-item .rellax-parent .fig03 {
  width: 360px;
  margin-left: auto;
  margin-right: 50px;
}
#raintex-item .rellax-parent .fig04 {
  width: 535px;
  margin-top: -257px;
  margin-right: auto;
}
#raintex-item .rellax-parent .fig05 {
  width: 485px;
  margin-top: -234px;
  margin-left: auto;
  margin-right: 50px;
  text-align: right;
}
#raintex-item .rellax-parent .fig06 {
  width: 360px;
  margin-top: -189px;
  margin-left: 50px;
  margin-right: auto;
}
#raintex-item .rellax-parent .fig07 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 550px;
  margin-top: -35px;
  margin-left: auto;
  margin-right: 50px;
}
#raintex-item .rellax-parent .fig07 img {
  width: 270px;
}
#raintex-item .rellax-parent .fig08 {
  width: 100%;
}

#raintex-item .rellax-parent .illust01 {
  top: 47%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 589px;
  height: auto;
}
#raintex-item .rellax-parent .illust02 {
  bottom: 20px;
  left: -30px;
  width: 1163px;
  height: auto;
}
#raintex-item .rellax-parent .illust03 {
  top: -70px;
  right: 16px;
  width: 342px;
  height: auto;
}
#raintex-item .rellax-parent .illust04 {
  top: -140px;
  right: 10px;
  width: 286px;
  height: auto;
}
#raintex-item .rellax-parent .illust05 {
  top: -70px;
  left: -60px;
  width: 941px;
  height: auto;
}
#raintex-item .rellax-parent .illust06 {
  top: -118px;
  left: 55px;
  width: 276px;
  height: auto;
}

@media screen and (max-width: 768px) {
  #raintex-item {
    overflow-x: hidden;
  }
  #raintex-item h2 {
    width: 222px;
    margin: 15px auto 25px;
  }
  #raintex-item h2 img {
    height: auto;
  }
  #raintex-item p {
    font-size: 12px;
    line-height: 20px;
  }
  #raintex-item .item-sub span {
    width: 100px;
    padding: 2px 9px;
  }
  #raintex-item .item-sub img {
    height: 7px;
  }

  #raintex-item .parent01 {
    width: 90%;
    margin: 50px auto 0;
  }
  #raintex-item .parent02 {
    display: block;
    width: 90%;
    margin: 25px auto 0;
  }
  #raintex-item .parent03 {
    display: flex;
    flex-wrap: wrap;
    width: 90%;
    margin: 100px auto 0;
  }

  #raintex-item .rellax-parent .fig01 {
    width: 240px;
    margin: 0 auto;
  }
  #raintex-item .rellax-parent .fig02 {
    width: 195px;
    margin: 0 auto;
  }
  #raintex-item .rellax-parent .fig02 + .fig02 {
    margin-top: 5px;
  }
  #raintex-item .rellax-parent .fig03 {
    order: 2;
    width: 195px;
    margin: 30px auto 0;
  }
  #raintex-item .rellax-parent .fig04 {
    width: 100%;
    margin: 0 auto;
  }
  #raintex-item .rellax-parent .fig05 {
    order: 3;
    width: 265px;
    margin-top: 80px;
    margin-left: auto;
    margin-right: 0;
    text-align: left;
  }
  #raintex-item .rellax-parent .fig06 {
    order: 4;
    width: 210px;
    margin-top: 30px;
    margin-left: 0;
  }
  #raintex-item .rellax-parent .fig07 {
    order: 5;
    width: 100%;
    margin: 30px auto 0;
  }
  #raintex-item .rellax-parent .fig07 img {
    width: 48%;
  }

  #raintex-item .rellax-parent .illust01 {
    width: 282px;
    top: 43%;
    left: 52%;
  }
  #raintex-item .rellax-parent .illust02a {
    width: 198px;
    left: -75px;
    bottom: -5px;
  }
  #raintex-item .rellax-parent .illust02b {
    width: 268px;
    left: -20px;
    bottom: -5px;
  }
  #raintex-item .rellax-parent .illust03 {
    width: 65%;
    top: -50px;
  }
  #raintex-item .rellax-parent .illust04 {
    width: 112px;
    top: -55px;
    right: -15px;
  }
  #raintex-item .rellax-parent .illust05a {
    width: 358px;
    top: -10px;
    left: -30px;
  }
  #raintex-item .rellax-parent .illust05b {
    width: 133px;
    top: 80px;
    left: -75px;
  }
  #raintex-item .rellax-parent .illust06 {
    width: 110px;
    top: -40px;
    left: 20px;
  }
}


/*
  raintex-description
------------*/

#raintex-description {
  padding: 50px 0;
  background: #ecf2f6;
}
#raintex-description h2 {
  margin-bottom: 40px;
  text-align: center;
}
#raintex-description h2 img {
  height: 28px;
}
#raintex-description .description-txt {
  text-align: center;
  font-size: 14px;
  line-height: 24px;
}
#raintex-description .description-item {
  display: flex;
  justify-content: space-between;
  margin-top: 70px;
  margin-left: -50px;
}
#raintex-description .description-image {
  position: relative;
  width: 653px;
  margin-top: 12px;
}
#raintex-description .description-image img {
  position: relative;
  left: -14px;
  width: 667px;
  max-width: none;
}
#raintex-description .description-list {
  width: 340px;
}
#raintex-description .description-list .list-box {
  position: relative;
  padding: 12px 10px 18px;
  text-align: center;
  font-size: 12px;
  color: #fff;
  background: #3c78a6;
  line-height: 18px;
}
#raintex-description .description-list .list-box + .list-box {
  margin-top: 30px;
}
#raintex-description .description-list .list-ttl {
  line-height: 1;
}
#raintex-description .description-list .list-ttl img {
  height: 11px;
}
#raintex-description .description-list .list-image {
  margin: 12px auto 15px;
}
#raintex-description .description-list .list-line {
  position: absolute;
  right: 100%;
  max-width: none;
}
#raintex-description .description-list .list-line.line01 {
  top: 15px;
  right: calc(100% - 10px);
  width: 423px;
}
#raintex-description .description-list .list-line.line02 {
  top: 5px;
  right: calc(100% - 10px);
  width: 323px;
}
#raintex-description .description-list .list-line.line03 {
  top: calc(100% - 50px);
  right: 100%;
  width: 273px;
}
#raintex-description .description-list .list-hyvent {
  margin-top: 50px;
  text-align: left;
  font-size: 12px;
  line-height: 18px;
}
#raintex-description .description-list .list-hyvent .hyvent-ttl {
  margin-bottom: 25px;
}
#raintex-description .description-list .list-hyvent .hyvent-ttl img {
  height: 17px;
}
#raintex-description .description-list .list-hyvent .color {
  display: flex;
  align-items: center;
}
#raintex-description .description-list .list-hyvent span {
  display: inline-block;
  position: relative;
  width: 20px;
  height: 10px;
}
#raintex-description .description-list .list-hyvent span:nth-child(odd) {
  margin-left: 3px;
  margin-right: 1px;
}
#raintex-description .description-list .list-hyvent span:nth-child(even) {
  margin-right: 6px;
}
#raintex-description .description-list .list-hyvent span.red {
  background: #d20028;
}
#raintex-description .description-list .list-hyvent span.navy {
  background: #212740;
}
#raintex-description .description-list .list-hyvent span.blue {
  background: #2800c9;
}
#raintex-description .description-list .list-hyvent span.yellow {
  background: #fad200;
}
#raintex-description .description-list .list-hyvent .hyvent-store {
  display: inline-block;
  margin: 20px auto;
}
#raintex-description .description-list .list-hyvent .function-popup {
  margin-top: 5px;
  padding: 15px 0;
  text-align: center;
  background: #fff;
  border: 1px solid #3c78a6;
  transition: .5s;
  cursor: pointer;
}
#raintex-description .description-list .list-hyvent .function-popup:hover {
  background: #3c78a6;
}

@media screen and (max-width: 768px) {
  #raintex-description {
    padding: 50px 5% 30px;
  }
  #raintex-description h2 {
    width: 234px;
    margin: 0 auto 25px;
  }
  #raintex-description h2 img {
    height: auto;
  }
  #raintex-description .description-txt {
    font-size: 12px;
    line-height: 20px;
  }
  #raintex-description .description-item {
    display: block;
    margin: 40px 0 0;
  }
  #raintex-description .description-image {
    width: 100%;
    margin: 0 auto;
  }
  #raintex-description .description-image img {
    width: 100%;
    max-width: 100%;
    left: 0;
  }
  #raintex-description .description-list {
    width: 100%;
    margin: 30px auto 0;
  }
  #raintex-description .description-list .list-box {
    width: 280px;
    margin: 0 auto;
  }
  #raintex-description .description-list .list-ttl img {
    height: 8px;
  }
  #raintex-description .description-list .list-line {
    display: none;
  }
  #raintex-description .description-list .list-function {
    width: 280px;
    margin: 25px auto 30px;
  }
  #raintex-description .description-list .list-function .function-popup {
    margin-top: 5px;
    padding: 15px 0;
    text-align: center;
    background: #fff;
    border: 1px solid #3c78a6;
    transition: .5s;
    cursor: pointer;
  }
  #raintex-description .description-list .list-function .function-popup:hover {
    background: #3c78a6;
  }
  #raintex-description .description-list .list-hyvent {
    margin-top: 30px;
  }
  #raintex-description .description-list .list-hyvent .hyvent-ttl {
    margin-bottom: 10px;
  }
}


/*------------
  scene
------------*/

/*
  scene-item
------------*/

.scene-item .item-title {
  font-size: 14px;
  line-height: 24px;
}
.scene-item .item-title h2 {
  margin-bottom: 35px;
}
.scene-item .rellax-parent {
  margin-top: 0;
}

@media screen and (max-width: 768px) {
  .scene-item .item-title {
    font-size: 10px;
    line-height: 18px;
  }
}


/*
  scene-trip
------------*/

#scene-trip {
  padding: 60px 0 95px;
  background: #fdf7f7;
}
#scene-trip .item-title {
  margin-top: 70px;
  margin-right: auto;
  margin-left: 50px;
}
#scene-trip .item-title h2 {
  width: 315px;
}

#scene-trip .rellax-parent .fig01 {
  z-index: 9;
  width: 300px;
  margin-right: 100px;
}
#scene-trip .rellax-parent .fig02 {
  width: 535px;
  margin-top: -110px;
  margin-right: auto;
}
#scene-trip .rellax-parent .fig02 p {
  margin-left: 50px;
}
#scene-trip .rellax-parent .fig03 {
  display: flex;
  align-items: flex-start;
  position: absolute;
  z-index: 9;
  right: 0;
  top: 95px;
}
#scene-trip .rellax-parent .fig03 img {
  width: 187px;
  margin-left: 5px;
}
#scene-trip .rellax-parent .fig04 {
  width: 430px;
  margin-top: -261px;
  margin-right: 50px;
  margin-left: auto;
}

#scene-trip .rellax-parent .illust01 {
  z-index: 5;
  top: -60px;
  left: 31%;
  width: 470px;
  height: auto;
}
#scene-trip .rellax-parent .illust02 {
  top: 380px;
  left: -37px;
  width: 989px;
  height: auto;
}

@media screen and (max-width: 768px) {
  #scene-trip {
    overflow-x: hidden;
    padding: 80px 0 40px;
  }
  #scene-trip .item-title {
    order: 2;
    width: 90%;
    margin: 25px auto 0;
    text-align: center;
  }
  #scene-trip .item-title h2 {
    width: 158px;
    margin: 0 auto 25px;
  }

  #scene-trip .parent01 {
    flex-wrap: wrap;
    padding: 0 5%;
  }
  #scene-trip .parent02 {
    display: block;
    margin-top: 20px;
    padding: 0 5%;
  }
  #scene-trip .parent03 {
    display: block;
    margin-top: 40px;
    padding: 0 5%;
  }

  #scene-trip .rellax-parent .fig01 {
    width: 105px;
    margin: 0 auto;
  }
  #scene-trip .rellax-parent .fig02 {
    z-index: 3;
    width: 60%;
    margin: 0;
  }
  #scene-trip .rellax-parent .fig03 {
    justify-content: space-between;
    position: relative;
    top: 0;
    width: 100%;
    margin-top: 110px;
  }
  #scene-trip .rellax-parent .fig03 img {
    width: calc((100% / 3) - (10px / 3));
    margin: 0;
  }
  #scene-trip .rellax-parent .fig04 {
    width: 270px;
    margin: 0 auto;
  }

  #scene-trip .rellax-parent .illust01 {
    top: -80px;
    left: 53%;
    width: 137px;
  }
  #scene-trip .rellax-parent .illust02 {
    width: 85%;
    top: 190px;
    left: -4px;
  }
  #scene-trip .rellax-parent .illust02b {
    position: relative;
    z-index: 5;
  }
}


/*
  scene-trekking
------------*/

#scene-trekking {
  padding: 50px 0 95px;
  background: #faf7f4;
}
#scene-trekking .item-title {
  order: 2;
  margin-top: 80px;
  margin-left: auto;
  margin-right: 70px;
}
#scene-trekking .item-title h2 {
  width: 210px;
}


#scene-trekking .parent01 {
  flex-wrap: wrap;
  padding-top: 179px;
}
#scene-trekking .parent02 {
  margin-top: 50px;
}


#scene-trekking .rellax-parent .fig01 {
  position: absolute;
  z-index: 9;
  top: 0;
  right: 295px;
  width: 240px;
}
#scene-trekking .rellax-parent .fig02 {
  width: 573px;
  margin-left: 50px;
  margin-right: auto;
}
#scene-trekking .rellax-parent .fig03 {
  order: 3;
  width: 320px;
  margin-top: -294px;
  margin-left: auto;
  margin-right: 50px;
}
#scene-trekking .rellax-parent .fig04 {
  display: flex;
  align-items: flex-start;
}
#scene-trekking .rellax-parent .fig04 img {
  width: 280px;
  height: auto;
  margin-right: 5px;
}

#scene-trekking .rellax-parent .illust01 {
  width: 318px;
  margin-bottom: 20px;
}
#scene-trekking .rellax-parent .illust02 {
  bottom: -94px;
  left: 11px;
  width: 512px;
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  #scene-trekking {
    overflow-x: hidden;
    padding: 50px 0;
  }
  #scene-trekking .item-title {
    order: 2;
    position: relative;
    width: 100%;
    margin: 30px auto;
    text-align: center;
  }
  #scene-trekking .item-title h2 {
    width: 105px;
    margin: 0 auto 25px;
  }

  #scene-trekking .parent01 {
    margin: 0 auto;
    padding: 0 5%;
  }
  #scene-trekking .parent02 {
    margin-top: 75px;
  }

  #scene-trekking .rellax-parent .fig01 {
    order: 3;
    position: relative;
    right: 0;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
  }
  #scene-trekking .rellax-parent .fig01 p {
    position: absolute;
    bottom: 0;
    left: calc(100% + 5px);
    width: 70px;
  }
  #scene-trekking .rellax-parent .fig02 {
    order: 4;
    width: 100%;
    max-width: 200px;
    margin: 5px auto 0;
  }
  #scene-trekking .rellax-parent .fig03 {
    order: 1;
    width: 100%;
    max-width: 120px;
    margin: 0 auto;
  }
  #scene-trekking .rellax-parent .fig04 {
    justify-content: space-between;
    width: 100%;
  }
  #scene-trekking .rellax-parent .fig04 img {
    width: calc((100% / 3) - (10px / 3));
    margin: 0;
  }

  #scene-trekking .rellax-parent .illust01 {
    position: absolute;
    z-index: 9;
    right: 0;
    top: -90px;
    width: 138px;
    margin: 0;
  }
  #scene-trekking .rellax-parent .illust02 {
    bottom: -44px;
    left: -40px;
    width: 260px;
  }
}


/*
  scene-camp
------------*/

#scene-camp {
  padding: 170px 0 90px;
  background: #eef3ef;
}
#scene-camp .item-title {
  margin-top: 360px;
  margin-left: 50px;
  margin-right: auto;
}
#scene-camp .item-title h2 {
  width: 122px;
}

#scene-camp .parent03 {
  margin-top: 60px;
  justify-content: space-between;
}

#scene-camp .rellax-parent .fig01 {
  width: 550px;
  margin-right: 80px;
  margin-left: auto;
}
#scene-camp .rellax-parent .fig02 {
  display: flex;
  align-items: flex-start;
  position: absolute;
  top: 50px;
  left: 0;
}
#scene-camp .rellax-parent .fig02 img {
  width: 165px;
  height: auto;
  margin-right: 5px;
}

#scene-camp .rellax-parent .fig03 {
  z-index: 5;
  width: 320px;
  margin-top: -50px;
  margin-left: 50px;
  margin-right: auto;
}
#scene-camp .rellax-parent .fig04 {
  width: 356px;
}
#scene-camp .rellax-parent .fig04 p {
  margin-left: 50px;
}
#scene-camp .rellax-parent .illust01 {
  top: -120px;
  left: -40px;
  width: 225px;
}
#scene-camp .rellax-parent .illust02 {
  bottom: 25px;
  left: -115px;
  width: 788px;
  pointer-events: none;
}
#scene-camp .rellax-parent .illust03 {
  bottom: 15px;
  left: 370px;
  width: 750px;
  pointer-events: none;
}
#scene-camp .rellax-parent .illust04 {
  top: 56px;
  left: -40px;
  width: 95px;
}

@media screen and (max-width: 768px) {
  #scene-camp {
    overflow-x: hidden;
    padding: 50px 0 40px;
  }
  #scene-camp .item-title {
    order: 3;
    width: 100%;
    margin: 30px auto;
    text-align: center;
  }
  #scene-camp .item-title h2 {
    width: 61px;
    margin: 0 auto 25px;
  }

  #scene-camp .parent01 {
    flex-wrap: wrap;
    padding: 0 5%;
  }
  #scene-camp .parent03 {
    display: block;
    margin-top: 150px;
  }

  #scene-camp .rellax-parent .fig01 {
    width: 240px;
    margin: 0 auto;
  }
  #scene-camp .rellax-parent .fig01 p {
    margin-left: 35px;
  }
  #scene-camp .rellax-parent .fig02 {
    order: 2;
    justify-content: space-between;
    position: relative;
    top: 0;
    width: 100%;
    margin-top: 50px;
  }
  #scene-camp .rellax-parent .fig02 img {
    width: calc((100% / 3) - (10px / 3));
    margin: 0;
  }
  #scene-camp .rellax-parent .fig03 {
    width: 240px;
    margin: 0 auto;
  }
  #scene-camp .rellax-parent .fig04 {
    width: 200px;
    margin: 0 auto;
  }
  #scene-camp .rellax-parent .fig04 + .fig04 {
    margin-top: 5px;
  }
  #scene-camp .rellax-parent .fig04 p {
    margin-left: 0;
  }

  #scene-camp .rellax-parent .illust01 {
    width: 105px;
    left: -40px;
    top: -26px;
  }
  #scene-camp .rellax-parent .illust02 {
    bottom: -25px;
    left: -50px;
    width: 353px;
  }
  #scene-camp .rellax-parent .illust03 {
    z-index: 9;
    left: -5%;
    bottom: -115px;
    width: 110%;
  }
  #scene-camp .rellax-parent .illust04 {
    top: 30px;
    left: -25px;
    width: 57px;
  }
}


/*
  scene-water
------------*/

#scene-water {
  padding: 0 0 65px;
  background: #e9eff8;
}
#scene-water .item-title {
  position: absolute;
  z-index: 9;
  top: 185px;
  left: 265px;
}
#scene-water .item-title h2 {
  width: 240px;
}

#scene-water .parent02 {
  margin-top: 70px;
}
#scene-water .parent05 {
  align-items: flex-end;
  margin-top: -115px;
}

#scene-water .rellax-parent .fig01 {
  width: 865px;
  margin-left: auto;
}
#scene-water .rellax-parent .fig02 {
  width: 550px;
  margin-right: auto;
  margin-left: 50px;
}
#scene-water .rellax-parent .fig03 {
  width: 320px;
  margin-top: 107px;
  margin-right: 50px;
  margin-left: auto;
}
#scene-water .rellax-parent .fig04 {
  width: 450px;
  margin-top: -154px;
  margin-left: auto;
}
#scene-water .rellax-parent .fig05 {
  width: 600px;
  margin-top: -181px;
  margin-right: auto;
}
#scene-water .rellax-parent .fig05 p {
  margin-left: 50px;
}
#scene-water .rellax-parent .fig06 {
  order: 2;
  width: 320px;
  margin-right: 50px;
  margin-left: auto;
}
#scene-water .rellax-parent .fig07 {
  width: 360px;
  margin-right: auto;
  margin-left: 175px;
}

#scene-water .rellax-parent .illust01 {
  top: -50px;
  right: 405px;
  width: 135px;
}
#scene-water .rellax-parent .illust02 {
  top: 42px;
  left: -188px;
  width: 364px;
}
#scene-water .rellax-parent .illust03 {
  z-index: 9;
  bottom: -97px;
  left: -15px;
  width: 1129px;
}
#scene-water .rellax-parent .illust04 {
  z-index: 9;
  bottom: -136px;
  right: -34px;
  width: 486px;
  pointer-events: none;
}
#scene-water .rellax-parent .illust05 {
  top: -189px;
  right: 36px;
  width: 315px;
}
#scene-water .rellax-parent .illust06 {
  bottom: 10px;
  left: -65px;
  width: 166px;
}
#scene-water .rellax-parent .illust07 {
  bottom: -10px;
  left: -81px;
  width: 118px;
}

@media screen and (max-width: 768px) {
  #scene-water {
    overflow-x: hidden;
    padding: 50px 0;
  }
  #scene-water .item-title {
    order: 2;
    position: relative;
    top: 0;
    left: 0;
    margin: 75px auto 35px;
    text-align: center;
  }
  #scene-water .item-title h2 {
    width: 120px;
    margin: 0 auto 25px;
  }

  #scene-water .parent01 {
    flex-wrap: wrap;
    padding: 0 5%;
  }
  #scene-water .parent02 {
    margin: 0;
  }
  #scene-water .parent05 {
    display: block;
    margin: 0 auto;
  }

  #scene-water .rellax-parent .fig01 {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  #scene-water .rellax-parent .fig02 {
    width: 65%;
    margin: 0;
  }
  #scene-water .rellax-parent .fig03 {
    position: absolute;
    right: 0;
    top: 85px;
    width: 40%;
    margin: 0;
  }
  #scene-water .rellax-parent .fig04 {
    width: 100%;
    max-width: 250px;
    margin: 65px auto 0;
  }
  #scene-water .rellax-parent .fig05 {
    width: 100%;
    margin: 90px auto 0;
  }
  #scene-water .rellax-parent .fig05 p {
    margin-left: 0;
  }
  #scene-water .rellax-parent .fig06 {
    width: 100%;
    max-width: 200px;
    margin: 40px auto 0;
  }
  #scene-water .rellax-parent .fig07 {
    width: 100%;
    margin: 40px auto 0;
  }

  #scene-water .rellax-parent .illust01 {
    top: 8px;
    left: 40%;
    width: 47px;
  }
  #scene-water .rellax-parent .illust02 {
    top: 65px;
    left: -35px;
    width: 127px;
  }
  #scene-water .rellax-parent .illust03 {
    width: 110%;
    left: -5%;
    bottom: 58px;
  }
  #scene-water .rellax-parent .illust04 {
    width: 170px;
    bottom: -20px;
    right: -100px;
  }
  #scene-water .rellax-parent .illust05 {
    width: 154px;
    top: auto;
    bottom: -55px;
    right: calc(100% - 115px);
  }
  #scene-water .rellax-parent .illust06 {
    bottom: 15px;
    width: 95px;
  }
  #scene-water .rellax-parent .illust07 {
    bottom: calc(100% - 55px);
    left: calc(100% - 110px);
    width: 63px;
  }
}


/*------------
  howto
------------*/

/*
  howto-content
------------*/

#howto-content {
  padding: 60px 0 0;
}
#howto-content .container {
  width: 865px;
}
#howto-content h2 {
  margin-bottom: 50px;
  text-align: center;
}
#howto-content h2 img {
  height: 115px;
}
#howto-content .howto-desc {
  text-align: center;
  font-size: 16px;
  line-height: 26px;
}
#howto-content .howto-tab {
  display: flex;
  margin: 50px auto 20px;
}
#howto-content .howto-tab .tab-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 145px;
  height: 145px;
  padding: 5px;
  border: 1px solid #000;
  cursor: pointer;
}
#howto-content .howto-tab .tab-btn.active::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: url(../img/howto/line_dashed.png) no-repeat center/100% 100%;
}
#howto-content .howto-tab .tab-btn.active::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 13px 6.5px 0 6.5px;
  border-color: #000 transparent transparent transparent;
}
#howto-content .howto-tab .tab-btn + .tab-btn {
  border-left: none;
}
#howto-content .howto-tab .tab-btn .image {
  margin: auto 0;
}
#howto-content .howto-tab .tab-btn .text {
  margin-top: auto;
  height: 10px;
}
#howto-content .howto-wrapper {
  border: 1px solid #000;
}
#howto-content .howto-box {
  display: none;
  padding: 55px 30px;
}
#howto-content .howto-box.active {
  display: flex;
}
#howto-content .howto-main {
  width: 375px;
  margin-right: auto;
  text-align: center;
}
#howto-content .howto-detail {
  flex-shrink: 0;
  width: 400px;
  margin-left: auto;
}
#howto-content .howto-detail h3 {
  margin-bottom: 25px;
}
#howto-content .howto-detail h3 img {
  width: auto;
  height: 23px;
}
#howto-content .howto-detail .detail-item {
  margin-top: 20px;
  padding-top: 20px;
  font-size: 12px;
  line-height: 18px;
  border-top: 1px solid #000;
}
#howto-content .howto-detail .detail-ttl {
  margin-top: 15px;
  font-size: 16px;
  font-weight: bold;
}
#howto-content .howto-detail .detail-ttl small {
  font-size: 12px;
}
#howto-content .howto-detail .detail-list {
  margin-top: 20px;
}
#howto-content .howto-detail .detail-bold {
  font-weight: bold;
}
#howto-content .howto-btn {
  display: block;
  margin: 20px auto 15px;
  padding: 10px 0;
  text-align: center;
  background: #000;
}
#howto-content .howto-repair {
  margin-top: 20px;
  background: #e6e6e6;
}
#howto-content .howto-repair .repair-txt {
  display: flex;
  padding: 50px 40px 20px;
  font-size: 12px;
  line-height: 18px;
}
#howto-content .howto-repair .repair-txt small {
  display: block;
  margin-top: 20px;
  font-size: 10px;
  line-height: 16px;
}
#howto-content .howto-repair .repair-ttl {
  flex-shrink: 0;
  margin-right: 35px;
  font-size: 18px;
  font-weight: bold;
  line-height: 24px;
}
#howto-content .howto-repair .repair-ttl img {
  width: 319px;
}
#howto-content .howto-repair .repair-ttl p {
  margin-top: 20px;
}
#howto-content .howto-repair .repair-link {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  font-size: 12px;
  font-weight: bold;
  border-top: 1px solid #000;
  line-height: 16px;
}
#howto-content .howto-repair .repair-link img {
  margin: 0 10px;
}
#howto-content .howto-repair .repair-link a {
  font-size: 28px;
  line-height: 42px;
}

@media screen and (max-width: 768px) {
  #howto-content {
    padding: 35px 0 0;
  }
  #howto-content .container {
    width: 100%;
    padding: 0 5%;
  }
  #howto-content h2 {
    width: 297px;
    margin: 0 auto 30px;
  }
  #howto-content h2 img {
    height: auto;
  }
  #howto-content .howto-desc {
    font-size: 10px;
    line-height: 18px;
  }
  #howto-content .howto-tab {
    margin: 20px auto 10px;
  }
  #howto-content .howto-tab .tab-btn {
    width: calc(100% / 6);
    height: auto;
  }
  #howto-content .howto-tab .tab-btn.active::before {
    background: url(../img/howto/sp/line_dashed.png) no-repeat center/100% 100%;
  }
  #howto-content .howto-tab .tab-btn.active::after {
    border-width: 8px 4px 0 4px;
  }
  #howto-content .howto-tab .tab-btn .text {
    display: none;
  }

  #howto-content .howto-box {
    padding: 45px 30px 30px;
  }
  #howto-content .howto-box.active {
    display: block;
  }
  #howto-content .howto-main {
    width: 100%;
  }
  #howto-content .howto-detail {
    width: 100%;
    margin-top: 60px;
  }
  #howto-content .howto-detail .detail-bold {
    padding-left: 1rem;
    text-indent: -1rem;
  }
  #howto-content .howto-btn {
    margin: 20px auto;
    padding: 10px;
  }
  #howto-content .howto-repair .repair-txt {
    display: block;
    padding: 30px;
  }
  #howto-content .howto-repair .repair-ttl {
    margin: 0;
    font-size: 14px;
  }
  #howto-content .howto-repair .repair-ttl img {
    width: 100%;
    max-width: 230px;
  }
  #howto-content .howto-repair .repair-ttl p {
    margin: 15px auto 25px;
  }
  #howto-content .howto-repair .repair-link {
    flex-direction: column;
    padding: 30px 20px 25px;
  }
  #howto-content .howto-repair .repair-link img {
    margin: 5px 0;
  }
  #howto-content .howto-repair .repair-link a {
    font-size: 13px;
    line-height: 24px;
  }
}


/*------------
  items
------------*/

#item {

}
#items .items-list {
  padding: 50px 0;
  text-align: center;
  font-size: 14px;
  border-bottom: 1px solid #000;
  line-height: 24px;
}
#items .items-list h2 {
  margin-bottom: 35px;
}
#items .items-list h2 img {
  height: 28px;
}
#items .items-flex {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
#items .items-flex._end {
  align-items: flex-end;
}
#items .items-box {
  width: 485px;
}
#items .items-box._text {
  width: 465px;
}
#items .items-box area {
  cursor: pointer;
}
#items .items-info {
  margin-top: 35px;
  text-align: left;
  font-size: 12px;
  line-height: 18px;
  font-family: 'Lato', sans-serif;
}
#items .items-info span {
  font-weight: bold;
}
#items .items-info span.color {
  font-size: 10px;
  font-weight: normal;
}
#items .items-info small {
  font-size: 10px;
  font-style: italic;
}
#items .items-info .info-ttl {
  margin-bottom: 15px;
}
#items .items-info .info-ttl img {
  height: 16px;
}
#items .items-link {
  margin-top: 30px;
}
#items .items-link a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 320px;
  height: 40px;
}
#items .items-link a._climb {
  background: #ffcd2f;
}
#items .items-link a._trip {
  background: #da5a64;
}
#items .items-link a._trekking {
  background: #d0ae8d;
}
#items .items-link a._camp {
  background: #55825a;
}
#items .items-link a._water {
  background: #1e5ab9;
}
#items .items-link a img {
  height: 15px;
}

@media screen and (max-width: 768px) {
  #items .items-list h2 {
    margin-bottom: 25px;
  }
  #items .items-list h2 img {
    width: auto;
    height: 15px;
  }
  #items .items-list {
    width: 90%;
    margin: 0 auto;
    padding: 30px 0;
    font-size: 10px;
    line-height: 18px;
  }
  #items .items-flex {
    display: block;
    margin-top: 20px;
  }
  #items .items-box,
  #items .items-box._text {
    width: 100%;
  }
  #items .items-box + .items-box {
    margin-top: 20px;
  }
  #items .items-info {
    margin-top: 25px;
  }
  #items .items-info .info-ttl {
    margin-bottom: 15px;
  }
  #items .items-info .info-ttl img {
    width: auto;
    height: 11px;
  }
  #items .items-link a {
    width: 100%;
  }
}


/*------------
  modal
------------*/

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, .7);
}
.modal .modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: auto;
  width: 320px;
  height: 100vh;
  max-height: 80vh;
  padding: 60px 20px;
  text-align: center;
  background: #fff;
}
.modal .modal-content .close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}
.modal .modal-content .inner {
  overflow-y: auto;
  height: 100%;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.modal .modal-content .inner::-webkit-scrollbar {
  display:none;
}
.modal .modal-item {
  margin: 60px auto 0;
  font-family: 'Lato', sans-serif;
}
.modal .modal-item img {
  display: block;
  max-height: 300px;
  margin: 0 auto;
}
.modal .modal-item img + img {
  margin-top: 20px;
}
.modal .modal-item .item-price p {
  display: block;
  font-size: 14px;
}
.modal .modal-hyvent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: auto;
  width: 950px;
  padding: 60px;
  text-align: center;
  background: #fff;
}
.modal .modal-hyvent .close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .modal .modal-content {
    width: 80%;
    max-height: 90vh;
    padding: 60px 20px 20px;
  }
  .modal .modal-item {
    width: 90%;
  }
  .modal .modal-item .item-price p {
    font-size: 12px;
  }
  .modal .modal-hyvent {
    width: 90%;
    padding: 60px 20px 20px;
  }
}


/*
  modal-slick
------------*/

.modal-slick {
  margin: 0 auto 50px;
}
.modal-slick p {
  margin-top: 5px;
  font-size: 12px;
  line-height: 1.5;
}
.modal-slick .slick-prev,
.modal-slick .slick-next {
  width: 30px;
  height: 30px;
}
.modal-slick .slick-prev {
  left: -35px;
}
.modal-slick .slick-next {
  right: -35px;
}
.modal-slick .slick-prev::before,
.modal-slick .slick-next::before {
  content: '';
  display: block;
  width: 30px;
  height: 30px;
  opacity: 1;
}
.modal-slick._blue .slick-prev::before {
  background: url(../img/modal/common/modal_prev_blue.svg) no-repeat center/contain;
}
.modal-slick._blue .slick-next::before {
  background: url(../img/modal/common/modal_next_blue.svg) no-repeat center/contain;
}
.modal-slick._beige .slick-prev::before {
  background: url(../img/modal/common/modal_prev_beige.svg) no-repeat center/contain;
}
.modal-slick._beige .slick-next::before {
  background: url(../img/modal/common/modal_next_beige.svg) no-repeat center/contain;
}
.modal-slick._green .slick-prev::before {
  background: url(../img/modal/common/modal_prev_green.svg) no-repeat center/contain;
}
.modal-slick._green .slick-next::before {
  background: url(../img/modal/common/modal_next_green.svg) no-repeat center/contain;
}
.modal-slick .slick-dots li,
.modal-slick .slick-dots li button {
  width: 5px;
  height: 5px;
}
.modal-slick .slick-dots li button::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  background: #3c78a6;
  border: 1px solid #3c78a6;
  border-radius: 100%;
  opacity: 1;
}
.modal-slick .slick-dots li.slick-active button::before {
  background: #fff;
}
.modal-slick._blue .slick-dots li button::before {
  background: #3c78a6;
  border: 1px solid #3c78a6;
}
.modal-slick._beige .slick-dots li button::before {
  background: #d0ae8d;
  border: 1px solid #d0ae8d;
}
.modal-slick._green .slick-dots li button::before {
  background: #55825a;
  border: 1px solid #55825a;
}
.modal-slick._blue .slick-dots li.slick-active button::before,
.modal-slick._beige .slick-dots li.slick-active button::before,
.modal-slick._green .slick-dots li.slick-active button::before {
  background: #fff;
}

@media screen and (max-width: 768px) {
  
}


/*
  item-price
------------*/

.item-price {
  margin-top: 20px;
  text-align: center;
  font-size: 12px;
  line-height: 18px;
}
.item-price + .item-price {
  margin-top: 5px;
}
.item-price p {
  font-size: 12px;
  line-height: 18px;
}
.item-price div p {
  display: inline-block;
}
.item-price span {
  font-weight: bold;
}
.item-price span.color {
  font-size: 10px;
  font-weight: normal;
}
.item-price small {
  font-size: 10px;
  font-style: italic;
}
.item-price a {
  display: inline-block;
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  .item-price p {
    display: inline-block;
  }
}


/*
  modal-items
------------*/

.modal-close {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.modal-items {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: auto;
  padding: 20px;
  font-size: 12px;
  background: #fff;
  line-height: 18px;
}
.modal-items .items-ttl {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
}
.modal-items .items-ttl img {
  height: 20px;
}
.modal-items.red {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 550px;
  font-size: 14px;
  line-height: 20px;
  border: 1px solid #da5a64;
  color: #da5a64;
}
.modal-items.beige {
  display: flex;
  flex-direction: column;
  width: 320px;
  min-height: 388px;
  font-size: 14px;
  line-height: 20px;
  border: 1px solid #d0ae8d;
  color: #d0ae8d;
}
.modal-items.red .items-image {
  width: 250px;
}
.modal-items.beige .items-image {
  width: 100%;
}
.modal-items.beige .items-image p {
  margin-top: 10px;
}


.image-slick .slick-prev,
.image-slick .slick-next {
  z-index: 9;
  top: 0;
  width: 25px;
  height: 200px;
  transform: none;
}
.image-slick .slick-prev {
  left: 0;
  padding-left: 15px;
}
.image-slick .slick-next {
  right: 0;
  padding-right: 15px;
}
.image-slick .slick-prev::before,
.image-slick .slick-next::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 25px;
  height: 25px;
  opacity: 1;
}
.image-slick .slick-prev::before {
  left: 5px;
  background: url(../img/modal/common/modal_prev_white.svg) no-repeat center/contain;
}
.image-slick .slick-next::before {
  right: 5px;
  background: url(../img/modal/common/modal_next_white.svg) no-repeat center/contain;
}
.image-slick .slick-prev.slick-disabled:before,
.image-slick .slick-next.slick-disabled:before {
  display: none;
}
.modal-items.red .items-txt {
  width: 240px;
}
.modal-items.beige .items-txt {
  width: 100%;
  margin-top: auto;
  padding-top: 45px;
}
.modal-items .items-txt .txt-slick {
  margin: 0;
}
.txt-slick .slick-dots {
  left: 0;
  bottom: calc(100% + 20px);
  text-align: left;
}
.beige .txt-slick .slick-dots {
  bottom: calc(100% + 15px);
  text-align: center;
}
.txt-slick .slick-dots li {
  width: 16px;
  height: 8px;
  margin: 0;
}
.txt-slick .slick-dots li + li {
  margin-left: 5px;
}
.txt-slick .slick-dots li button {
  width: 100%;
  height: 100%;
  padding: 0;
}
.txt-slick .slick-dots li button::before {
  content: '';
  width: 100%;
  height: 100%;
}
.red .txt-slick .slick-dots li button::before {
  background: #f0bdc1;
}
.red .txt-slick .slick-dots li.slick-active button::before {
  background: #da5a64;
}
.beige .txt-slick .slick-dots li button::before {
  background: #ecdfd1;
}
.beige .txt-slick .slick-dots li.slick-active button::before {
  background: #d0ae8d;
}

@media screen and (max-width: 768px) {
  .modal-items .items-ttl img {
    height: 16px;
  }
  .modal-items.red {
    flex-direction: column;
    justify-content: normal;
    align-items: normal;
    width: 100%;
    max-width: 320px;
    font-size: 12px;
    line-height: 18px;
  }
  .modal-items.beige {
    width: 100%;
    max-width: 320px;
    font-size: 12px;
    line-height: 18px;
  }

  .modal-items.red .items-image {
    width: 100%;
  }
  .modal-items.red .items-image img {
    width: 100%;
  }
  .modal-items.red .items-txt {
    width: 100%;
    margin-top: auto;
    padding-top: 30px;
  }
  .red .txt-slick .slick-dots {
    bottom: calc(100% + 8px);
    text-align: center;
  }
  .image-slick .slick-prev,
  .image-slick .slick-next {
    width: 25px;
  }
  .image-slick .slick-prev::before,
  .image-slick .slick-next::before {
    width: 25px;
    height: 25px;
  }
}