@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 14px;
  font-family: fot-seurat-pron, sans-serif;
  font-weight: 600;
  font-style: normal;
}

@media screen and (min-width: 1025px) {
  html {
    font-size: 16px;
  }
}

p {
  line-height: 1.5rem;
  color: #153c48;
}

p:not(:last-of-type) {
  margin-bottom: 1rem;
}

a {
  color: #0066c0;
}

a:hover {
  text-decoration: underline;
}

.visible, .invisible {
  opacity: 0.0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

.visible {
  opacity: 1.0;
}

body {
  overflow-x: hidden;
  background: transparent;
}

img {
  max-width: 100%;
  width: 100%;
  vertical-align: bottom;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}

#splash {
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  background-color: #49C8F0;
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
  text-align: center;
}

#splash #splash_text {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 999;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
  width: 100%;
}

#splash_logo {
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  background: #fff;
  z-index: 9990;
  position: fixed;
  top: 0;
  left: 0;
}

#splash_logo p {
  width: 40%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

header {
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}

header #nav_open {
  width: 42px;
  height: 42px;
  background: #49C8F0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  pointer-events: all;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 9999;
  -webkit-filter: drop-shadow(1px 1px 2px #555);
          filter: drop-shadow(1px 1px 2px #555);
}

header #nav_open .hamburger {
  margin-top: 7px;
  display: block;
  width: 18px;
  height: 18px;
  cursor: pointer;
  text-align: center;
  position: relative;
}

header #nav_open .hamburger::after {
  content: "MENU";
  font-family: rogue-sans, sans-serif;
  position: absolute;
  bottom: -1rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #fff;
  font-size: 0.5rem;
}

header #nav_open .hamburger span {
  display: block;
  position: absolute;
  width: 18px;
  height: 4px;
  background: #fff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

header #nav_open .hamburger span:nth-child(1) {
  top: 0;
}

header #nav_open .hamburger span:nth-child(2) {
  top: 7px;
}

header #nav_open .hamburger span:nth-child(3) {
  top: 14px;
}

header #nav_open.active .hamburger::after {
  content: "CLOSE";
}

header #nav_open.active .hamburger span:nth-child(1) {
  top: 7px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

header #nav_open.active .hamburger span:nth-child(2) {
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0;
}

header #nav_open.active .hamburger span:nth-child(3) {
  top: 7px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

header .header_slide {
  width: 130%;
  height: 100vh;
  background-color: orange;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
  z-index: 100;
}

header nav {
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #49C8F0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
  -webkit-user-select: all;
     -moz-user-select: all;
      -ms-user-select: all;
          user-select: all;
  pointer-events: all;
}

header nav ul li {
  position: relative;
}

header nav ul li.new ::before {
  content: "new!";
  font-size: 1rem;
  font-family: rogue-sans, sans-serif;
  position: absolute;
  top: -1rem;
  left: -2rem;
}

header nav ul li:not(:first-of-type) {
  margin-top: 40px;
}

header nav ul li:nth-of-type(2) {
  margin-left: 1.25rem;
}

header nav ul li:nth-of-type(3) {
  margin-left: 2.5rem;
}

header nav ul li:nth-of-type(4) {
  margin-left: 3.75rem;
}

header nav ul li:nth-of-type(5) {
  margin-left: 4rem;
}

header nav ul li:nth-of-type(6) {
  margin-left: 5.25rem;
}

header nav ul li a {
  font-family: rogue-sans, sans-serif;
  font-size: 2rem;
  color: #fff;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

header.active .header_slide {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

header.active nav {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

@media screen and (min-width: 1025px) {
  header {
    width: 100%;
    height: 100%;
    height: calc(var(--vh, 1vh) * 100);
    position: fixed;
    z-index: 99;
  }
  header .header_slide {
    display: none;
  }
  header nav {
    padding-left: 40px;
    width: 400px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    background: #49C8F0;
    background: -webkit-gradient(linear, right top, left top, from(#49C8F0), to(transparent));
    background: linear-gradient(270deg, #49C8F0 0%, transparent 100%);
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
  }
  header nav ul {
    padding: 40px;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    -ms-grid-column-align: center;
        justify-self: center;
  }
  header nav ul li {
    text-align: right;
  }
  header nav ul li.new ::before {
    content: "new!";
    font-size: 1rem;
    font-family: rogue-sans, sans-serif;
    position: absolute;
    top: -1rem;
    right: -1rem;
    pointer-events: none;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
  header nav ul li:not(:first-of-type) {
    margin-top: 40px;
  }
  header nav ul li:nth-of-type(2) {
    margin-left: 0;
  }
  header nav ul li:nth-of-type(3) {
    margin-left: 0;
  }
  header nav ul li:nth-of-type(4) {
    margin-left: 0;
  }
  header nav ul li a {
    display: inline-block;
    padding: 10px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  header nav ul li a:hover {
    padding-right: calc(40px / 4 + 1rem);
  }
  header.active .header_slide {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  header.active nav {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

#hero {
  width: 100%;
  max-width: 100%;
  height: 100%;
  height: calc(var(--vh, 1vh) * 100);
  background-color: transparent;
  position: relative;
}

#hero #key_visual {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

#hero #key_visual img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#hero p {
  width: 75%;
  max-width: 400px;
  position: absolute;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

#hero p img {
  width: 100%;
  max-width: none !important;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: drop-shadow(4px 4px 4px #333);
          filter: drop-shadow(4px 4px 4px #333);
}

main {
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-backdrop-filter 0.2s ease;
  transition: -webkit-backdrop-filter 0.2s ease;
  transition: backdrop-filter 0.2s ease;
  transition: backdrop-filter 0.2s ease, -webkit-backdrop-filter 0.2s ease;
}

main section {
  position: relative;
}

main section:not(:first-of-type) {
  margin-top: 40px;
}

main h3 {
  color: #49C8F0;
  font-size: 1.1rem;
  font-weight: bold;
  padding-bottom: 10px;
  margin-bottom: 1rem;
  position: relative;
}

main h3::after {
  content: "";
  width: 100%;
  height: 2px;
  border-radius: 1px;
  background: #49C8F0;
  position: absolute;
  bottom: 0;
  left: 0;
}

main .container {
  width: 95%;
  height: 100%;
  margin: 0 auto;
  position: relative;
  padding-bottom: 40px;
  overflow: hidden;
  border-radius: 20px;
}

main .container .grid_wrap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: calc(95% - 40px) 1fr;
      grid-template-columns: calc(95% - 40px) 1fr;
  background-color: rgba(255, 255, 255, 0.8);
  position: relative;
  opacity: 0;
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
  border-radius: 20px;
  border: 4px solid #49C8F0;
}

main .container .grid_wrap.right .title::after {
  right: 0;
}

main .container .grid_wrap.right .content {
  padding: 20px;
  padding-right: 5px;
}

main .container .grid_wrap.left {
  -ms-grid-columns: 1fr calc(95% - 40px);
      grid-template-columns: 1fr calc(95% - 40px);
}

main .container .grid_wrap.left .title {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

main .container .grid_wrap.left .title::after {
  left: 0;
}

main .container .grid_wrap.left .content {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  padding: 20px;
  padding-left: 5px;
}

main .container .grid_wrap.left::after {
  left: 0 !important;
}

main .container .grid_wrap.full {
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
}

main .container .grid_wrap.full .content {
  padding: 20px;
}

main .container .grid_wrap::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: radial-gradient(#49C8F0 30%, transparent 50%);
  background-size: 8px 8px;
  background-position: 0 0, 20px 20px;
  position: absolute;
  top: 20px;
  z-index: -1;
  -webkit-transform: translateZ(-1px);
          transform: translateZ(-1px);
}

main .container .grid_wrap .title {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

main .container .grid_wrap .title h2 {
  padding: 20px 0;
  display: inline-block;
  font-size: 3rem;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  color: #49C8F0;
  font-family: rogue-sans, sans-serif;
}

main .container .grid_wrap .content {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

main #first.container {
  padding-bottom: 20px;
  overflow: visible;
}

main #first .content {
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.8);
  border: 4px solid #49C8F0;
  border-radius: 20px;
  position: relative;
}

main #first .content::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: radial-gradient(#49c8f0 30%, transparent 50%);
  background-size: 8px 8px;
  background-position: 0 0, 20px 20px;
  position: absolute;
  top: 20px;
  right: 0;
  z-index: -1;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

main #first .content .btn {
  text-align: center;
}

main #first .content .btn a {
  display: inline-block;
  padding: 1rem;
  background: #153C48;
  color: #fff;
  font-size: 1.5rem;
  text-align: center;
  border-radius: 50px;
  border: 3px solid #fff;
  -webkit-box-shadow: 0px 3px 10px -4px rgba(0, 0, 0, 0.6);
          box-shadow: 0px 3px 10px -4px rgba(0, 0, 0, 0.6);
}

main #first .content .pc_view {
  display: none;
}

main #news .news_wrap {
  max-height: 300px;
  overflow-y: scroll;
  padding-right: 20px;
}

main #news .news_wrap .news_item {
  padding-bottom: 1rem;
  font-size: 0.8rem;
  line-height: 1.5;
  position: relative;
}

main #news .news_wrap .news_item:not(:last-of-type) {
  margin-bottom: 40px;
}

main #news .news_wrap .news_item::before {
  content: "";
  width: 2px;
  height: 0.8rem;
  background-color: #49C8F0;
  position: absolute;
  bottom: 0;
  right: 0;
}

main #news .news_wrap .news_item::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #49C8F0;
  position: absolute;
  bottom: 0;
  right: 0;
}

main #news .news_wrap .news_item .info {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  font-size: 0.8rem;
}

main #news .news_wrap .news_item .info .date {
  margin-bottom: 0;
}

main #news .news_wrap .news_item .info .date span {
  color: #fff;
  display: inline-block;
  background-color: #49C8F0;
  text-align: center;
  padding: 2px 4px;
}

main #news .news_wrap .news_item .info .tag span {
  color: #fff;
  display: inline-block;
  background-color: #49C8F0;
  text-align: center;
  padding: 2px 4px;
}

main #goods .content, main #apology .content {
  max-height: 600px;
  overflow-y: hidden;
  -webkit-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
}

main #goods .content::before, main #apology .content::before {
  content: "";
  width: 100%;
  height: 50px;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 20px;
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0.8) 50%, #fff 100%);
}

main #goods .content.on, main #apology .content.on {
  max-height: 9999px;
}

main #goods .content.on .read_more, main #apology .content.on .read_more {
  background-color: #49C8F0;
}

main #goods .content.on .read_more::before, main #apology .content.on .read_more::before {
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
          transform: translate(-50%, -50%) rotate(180deg);
}

main #goods .content.on .read_more::after, main #apology .content.on .read_more::after {
  content: "閉じる";
}

main #goods .content .goods_list, main #apology .content .goods_list {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 10px;
}

main #goods .content .goods_list:last-of-type, main #apology .content .goods_list:last-of-type {
  padding-bottom: 50px;
}

main #goods .content .goods_list:not(:last-of-type), main #apology .content .goods_list:not(:last-of-type) {
  margin-bottom: 20px;
}

main #goods .content .goods_list .goods_item, main #apology .content .goods_list .goods_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: rgba(21, 60, 72, 0.1);
  border: 2px solid #49C8F0;
  border-radius: 6px;
  overflow: hidden;
}

main #goods .content .goods_list .goods_item > a, main #apology .content .goods_list .goods_item > a {
  height: 100%;
  display: block;
}

main #goods .content .goods_list .goods_item > a:hover, main #apology .content .goods_list .goods_item > a:hover {
  text-decoration: none;
}

main #goods .content .goods_list .goods_item p, main #apology .content .goods_list .goods_item p {
  color: #153c48;
  margin-bottom: 0.5rem;
}

main #goods .content .goods_list .goods_item .name, main #goods .content .goods_list .goods_item .price, main #apology .content .goods_list .goods_item .name, main #apology .content .goods_list .goods_item .price {
  padding: 0 0.2rem;
  font-size: 0.8rem;
  line-height: 1.2rem;
}

main #goods .content .goods_list .goods_item .price, main #apology .content .goods_list .goods_item .price {
  margin-top: auto;
  text-align: right;
}

main #goods .content .read_more, main #apology .content .read_more {
  width: 50%;
  max-width: 300px;
  height: 36px;
  position: absolute;
  bottom: 5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin: 0 auto;
  z-index: 2;
  padding: 0 10px;
  background-color: #49C8F0;
  border-radius: 18px;
  color: #FFF;
  cursor: pointer;
}

main #goods .content .read_more::before, main #apology .content .read_more::before {
  content: "";
  width: 18px;
  height: 18px;
  background-image: url(../img/arrow-down.svg);
  position: absolute;
  top: 50%;
  left: 72.5%;
  -webkit-transform: translate(-50%, -50%) rotate(0);
          transform: translate(-50%, -50%) rotate(0);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

main #goods .content .read_more::after, main #apology .content .read_more::after {
  content: "もっと見る";
  display: block;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  padding-top: 1.25px;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 45%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

main #goods_notes {
  color: #153c48;
}

main #goods_notes dl:not(:last-of-type) {
  margin-bottom: 1rem;
}

main #goods_notes dl dt {
  margin-bottom: 0.5rem;
}

main #goods_notes dl dd table {
  width: 100%;
}

main #goods_notes dl dd table tbody tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 2px solid #49C8F0;
}

main #goods_notes dl dd table tbody tr:not(:last-of-type) {
  border-bottom: none;
}

main #goods_notes dl dd table tbody tr.head {
  background: #49C8F0;
  color: #fff;
}

main #goods_notes dl dd table tbody tr.head th {
  border-right: 1px solid #fff;
}

main #goods_notes dl dd table tbody tr th, main #goods_notes dl dd table tbody tr td {
  padding: 0.5rem;
}

main #goods_notes dl dd table tbody tr th {
  width: 35%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 0.25rem;
  border-right: 2px solid #49C8F0;
}

main #goods_notes dl dd table tbody tr td {
  width: 65%;
}

main #access .content .store_wrap .store_item:not(:last-of-type) {
  margin-bottom: 40px;
}

main #access .content .store_wrap .store_item .store_data {
  margin-bottom: 20px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 100%;
      grid-template-columns: 100%;
  gap: 20px;
}

main #access .content .store_wrap .store_item .store_data .store_map {
  min-height: 200px;
}

main #access .content .store_wrap .store_item .store_data table {
  width: 100%;
}

main #access .content .store_wrap .store_item .store_data table tbody {
  width: 100%;
}

main #access .content .store_wrap .store_item .store_data table tbody tr {
  width: 100%;
  color: #153c48;
  border-collapse: collapse;
}

main #access .content .store_wrap .store_item .store_data table tbody tr th, main #access .content .store_wrap .store_item .store_data table tbody tr td {
  padding: 6px;
  border: 1px solid #49C8F0;
}

main #access .content .store_wrap .store_item .store_data table tbody tr th {
  font-size: 0.8rem;
}

main #notes .notes_wrap:not(:last-of-type) {
  margin-bottom: 40px;
}

main #notes .notes_wrap p {
  font-size: 0.8rem;
  line-height: 1.2rem;
}

main #notes .notes_wrap p:not(:last-of-type) {
  margin-bottom: 0.8rem;
}

main #notes .notes_wrap .modal_wrap {
  margin-bottom: 0.8rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 10px;
}

main #notes .notes_wrap .modal_wrap p {
  margin-bottom: 0 !important;
  border: 3px solid #49C8F0;
  border-radius: 10px;
  overflow: hidden;
}

main #notes .notes_wrap .modal_wrap p a {
  display: block;
}

main .share {
  margin-top: 80px;
  padding: 20px 0;
  background-color: rgba(0, 0, 0, 0.75);
}

main .share p {
  margin-bottom: 10px;
  color: #fff;
  text-align: center;
  font-family: rogue-sans, sans-serif;
  font-size: 1.5rem;
}

main .share ul {
  width: 50%;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

main .share ul li {
  max-width: 40px;
  -ms-grid-column-align: center;
      justify-self: center;
}

main .share ul li a {
  display: block;
}

main #waves_wrap {
  display: none;
}

.modaal-content-container {
  padding: 20px;
}

.modaal-content-container p:not(:last-of-type) {
  margin-bottom: 10px;
}

.modaal-content-container .spec,
.modaal-content-container .illustrator {
  margin-bottom: 10px;
  font-size: 0.8rem;
  color: #6e6e6e;
}

.modaal-content-container .spec dt,
.modaal-content-container .illustrator dt {
  margin-bottom: 0.3rem;
}

.modaal-content-container .price {
  font-size: 2rem;
  text-align: right;
}

.modaal-content-container .price span {
  font-size: 1.5rem;
}

@media screen and (min-width: 1025px) {
  .pc_grid #hero {
    width: 40%;
    height: 100%;
    height: calc(var(--vh, 1vh) * 100);
    position: fixed;
    top: 0;
    left: 0;
  }
  .pc_grid #hero #key_visual {
    width: 40%;
    height: 100%;
  }
  .pc_grid #hero #key_visual img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .pc_grid #hero p {
    width: 60%;
    max-width: 600px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .pc_grid #hero p img {
    width: 100%;
    max-width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-filter: drop-shadow(4px 4px 4px #333);
            filter: drop-shadow(4px 4px 4px #333);
  }
  .pc_grid main {
    padding: 40px 0;
    margin-left: 40%;
    width: 60%;
    height: auto;
    background: transparent;
    position: relative;
  }
  .pc_grid main section:not(:first-of-type) {
    margin-top: 80px;
  }
  .pc_grid main::before {
    content: "";
    width: 60%;
    height: 100%;
    background: url(../img/pc_bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 1000px 1000px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: -1;
  }
  .pc_grid main .container {
    width: calc(100% - (40px*2));
    height: auto;
    margin: 0 auto;
    margin-bottom: 80px;
  }
  .pc_grid main #first.container {
    padding-bottom: 20px;
    overflow: visible;
  }
  .pc_grid main #first .content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 40px;
  }
  .pc_grid main #first .content > .txt {
    display: none;
  }
  .pc_grid main #first .content .pc_view {
    display: block;
  }
  .pc_grid main #first .content .pc_view .btn {
    margin: 40px 0;
  }
  .pc_grid main #first .content .pc_view .btn a {
    padding: 1.5rem;
    font-size: 2rem;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .pc_grid main #first .content .pc_view .btn a:hover {
    text-decoration: none;
    background: #fff;
    border: 3px solid #153C48;
    color: #153C48;
  }
  .pc_grid main #first .content .pc_view .txt {
    font-size: 0.8rem;
    line-height: 1.2rem;
  }
  .pc_grid main #news .news_wrap {
    min-height: 150px;
    max-height: 300px;
    overflow-y: scroll;
  }
  .pc_grid main #news .news_wrap .news_item {
    max-width: 90%;
    padding-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.5;
    position: relative;
  }
  .pc_grid main #news .news_wrap .news_item:not(:last-of-type) {
    margin-bottom: 40px;
  }
  .pc_grid main #news .news_wrap .news_item::before {
    content: "";
    width: 2px;
    height: 0.8rem;
    background-color: #49C8F0;
    position: absolute;
    bottom: 0;
    right: 0;
  }
  .pc_grid main #news .news_wrap .news_item::after {
    content: "";
    width: 100%;
    height: 2px;
    background-color: #49C8F0;
    position: absolute;
    bottom: 0;
    right: 0;
  }
  .pc_grid main #news .news_wrap .news_item .info {
    margin-bottom: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5px;
    font-size: 0.8rem;
  }
  .pc_grid main #news .news_wrap .news_item .info .date {
    margin-bottom: 0;
  }
  .pc_grid main #news .news_wrap .news_item .info .date span {
    color: #fff;
    display: inline-block;
    background-color: #49C8F0;
    text-align: center;
    padding: 2px 4px;
    border-radius: 4px;
  }
  .pc_grid main #news .news_wrap .news_item .info .tag span {
    color: #fff;
    display: inline-block;
    background-color: #49C8F0;
    text-align: center;
    padding: 2px 4px;
    border-radius: 4px;
  }
  .pc_grid main #goods .content.on .read_more::before {
    -webkit-transform: translate(-50%, -50%) rotate(180deg);
            transform: translate(-50%, -50%) rotate(180deg);
  }
  .pc_grid main #goods .content.on .read_more::after {
    content: "閉じる";
  }
  .pc_grid main #goods .content .goods_list {
    -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
  }
  .pc_grid main #goods .content .read_more::before {
    left: 65%;
    -webkit-transform: translate(-50%, -50%) rotate(0);
            transform: translate(-50%, -50%) rotate(0);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .pc_grid main #goods .content .read_more::after {
    content: "もっと見る";
    padding-top: 0;
    font-size: 1rem;
    top: 50%;
    left: 45%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .pc_grid main #notes .notes_wrap .modal_wrap {
    -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
  }
  .pc_grid main .share {
    width: 30px;
    margin-top: 0;
    margin-left: 10px;
    padding: 0 0;
    background-color: transparent;
    position: fixed;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.85));
            filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.85));
  }
  .pc_grid main .share p {
    margin-bottom: 20px;
    padding-left: 0.15rem;
    color: #fff;
    text-align: center;
    font-family: rogue-sans, sans-serif;
    font-size: 1.5rem;
    -webkit-writing-mode: vertical-lr;
        -ms-writing-mode: tb-lr;
            writing-mode: vertical-lr;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
  .pc_grid main .share ul {
    width: 100%;
    margin: 0;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 20px;
  }
  .pc_grid main .share ul li {
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  .pc_grid main .share ul li:hover {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .pc_grid main #waves_wrap {
    margin-left: 40%;
    width: 60%;
    display: block;
    position: fixed;
    bottom: 60px;
    left: 0;
    z-index: -1;
  }
  .pc_grid main #waves_wrap::after {
    content: "";
    width: 100%;
    height: 60px;
    background-color: #49c8f0;
    position: absolute;
    bottom: -60px;
    left: 0;
  }
  .pc_grid main #waves_wrap .waves {
    width: 100%;
    height: 15vh;
    min-height: 100px;
    max-height: 150px;
    margin-bottom: -7px;
  }
  .pc_grid main #waves_wrap .waves .parallax > use {
    -webkit-animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
            animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
  }
  .pc_grid main #waves_wrap .waves .parallax > use:nth-child(1) {
    -webkit-animation-delay: -2s;
            animation-delay: -2s;
    -webkit-animation-duration: 7s;
            animation-duration: 7s;
  }
  .pc_grid main #waves_wrap .waves .parallax > use:nth-child(2) {
    -webkit-animation-delay: -3s;
            animation-delay: -3s;
    -webkit-animation-duration: 10s;
            animation-duration: 10s;
  }
  .pc_grid main #waves_wrap .waves .parallax > use:nth-child(3) {
    -webkit-animation-delay: -4s;
            animation-delay: -4s;
    -webkit-animation-duration: 13s;
            animation-duration: 13s;
  }
  .pc_grid main #waves_wrap .waves .parallax > use:nth-child(3) {
    -webkit-animation-delay: -5s;
            animation-delay: -5s;
    -webkit-animation-duration: 20s;
            animation-duration: 20s;
  }
}

footer {
  width: 100%;
  padding-top: 40px;
  padding-bottom: 80px;
  overflow: hidden;
  background-color: rgba(73, 200, 240, 0.75);
  position: relative;
}

footer > p {
  margin-bottom: 10px;
  font-size: 1rem;
  text-align: center;
  color: #fff;
}

footer ul {
  width: 95%;
  max-width: 450px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

footer ul li {
  width: 30%;
}

footer ul li a {
  display: block;
}

footer ul li a img {
  -webkit-filter: drop-shadow(1px 1px 1px #333);
          filter: drop-shadow(1px 1px 1px #333);
}

footer small {
  display: block;
  color: #fff;
  position: absolute;
  bottom: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media screen and (min-width: 1025px) {
  footer {
    height: 60px;
    width: 60%;
    margin-left: 40%;
    padding: 0;
  }
}
