@charset "UTF-8";
body, div, dl, dt, dd, ul, li, h1, h2, h3, h4, h5, h6, pre, figure, form, fieldset, input, textarea, p, blockquote, th, td, a {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-y: scroll;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

a {
  text-decoration: none;
}
a:link, a:visited, a:active {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

ul {
  list-style: none;
}

fieldset, img {
  border: 0;
}

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

table {
  border-collapse: collapse;
  border-spacing: 0;
}

address, caption, cite, code, dfn, em, th, var {
  font-style: normal;
  font-weight: normal;
}

br {
  letter-spacing: 0;
}

body {
  text-align: justify;
  line-height: 1.8;
}

p, th, td {
  text-align: justify;
  line-height: 1.8;
}

/*main*/
/*stone*/
/*crab*/
/*fish*/
/*bg*/
body, h1, h2, h3, h4, p {
  font-family: "游ゴシック", "Noto Sans JP", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", Verdana, Geneva, Tahoma, sans-serif;
  font-weight: 400;
  color: #000;
}

.bold {
  font-weight: bold;
}

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

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

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

.sp, .sp-960, .sp-748, .sp-550, .sp-375 {
  display: none;
}

@media (max-width: 960px) {
  .sp-960 {
    display: block !important;
  }
  .pc-960 {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .sp {
    display: block !important;
  }
  .pc {
    display: none !important;
  }
}
@media (max-width: 748px) {
  .sp-748 {
    display: block !important;
  }
  .pc-748 {
    display: none !important;
  }
}
@media (max-width: 550px) {
  .sp-550 {
    display: block !important;
  }
  .pc-550 {
    display: none !important;
  }
}
@media (max-width: 375px) {
  .sp-375 {
    display: block !important;
  }
  .pc-375 {
    display: none !important;
  }
}
.delay1 {
  animation-delay: 0.1s !important;
}

.delay2 {
  animation-delay: 0.2s !important;
}

.delay3 {
  animation-delay: 0.3s !important;
}

.delay4 {
  animation-delay: 0.4s !important;
}

.delay5 {
  animation-delay: 0.5s !important;
}

.delay6 {
  animation-delay: 0.6s !important;
}

.delay7 {
  animation-delay: 0.7s !important;
}

.delay8 {
  animation-delay: 0.8s !important;
}

.delay9 {
  animation-delay: 0.9s !important;
}

.delay10 {
  animation-delay: 1s !important;
}

.delay11 {
  animation-delay: 1.1s !important;
}

a {
  transition-duration: 0.3s;
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/* header ****************************/
header {
  background: url(../images/bg_kv.png) no-repeat top center;
  background-size: cover;
}

.page-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding: 15px 25px 0;
  box-sizing: border-box;
  position: relative;
  z-index: 9998;
}
@media screen and (max-width: 960px) {
  .page-header {
    padding: 15px 60px 30px 10px;
  }
  .page-header h1 {
    width: 40%;
    max-width: 150px;
    min-width: 140px;
  }
}

/* header__menu pc */
.header__menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__menu ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__menu ul li {
  border-right: 1px solid #001D70;
  padding: 5px 25px;
}
.header__menu ul li:last-child {
  border: none;
}
.header__menu--instagram {
  display: flex;
  align-items: center;
  max-width: 45px;
}
.header__menu--instagram img:hover {
  opacity: 0.6;
}

.header__menu--change {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  padding: 10px 0;
  position: fixed;
  width: 100%;
  top: -90px;
  left: 0;
  transition: 0.5s;
}
.header__menu--change ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__menu--change ul li {
  border-right: 1px solid #001D70;
  padding: 5px 25px;
}
.header__menu--change ul li:last-child {
  border: none;
}
.header__menu--change.show {
  top: 0;
}

.header__menu li a,
.header__menu--change li a {
  color: #001D70;
  position: relative;
  padding-bottom: 10px;
}
.header__menu li a::after,
.header__menu--change li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #001D70;
  transition: all 0.3s;
  transform: scale(0, 1);
  transform-origin: center top;
}
.header__menu li a:hover,
.header__menu--change li a:hover {
  text-decoration: none;
}
.header__menu li a:hover::after,
.header__menu--change li a:hover::after {
  transform: scale(1, 1);
}

/* header__menu__sp */
.header__menu__sp {
  width: 100%;
  display: flex;
  justify-content: right;
  align-items: center;
}
.header__menu__sp .header__menu--instagram {
  display: block;
  width: 35px;
}

.hamburger {
  display: block;
  position: fixed;
  z-index: 5;
  right: 10px;
  top: 11px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
  /* menu-open btn */
}
.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 6px;
  background: #001D70;
  transition: 0.3s all;
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 20px;
}
.hamburger span:nth-child(3) {
  top: 30px;
}
.hamburger.active span:nth-child(1) {
  top: 20px;
  left: 6px;
  background: #fff;
  transform: rotate(-45deg);
}
.hamburger.active span:nth-child(2), .hamburger.active span:nth-child(3) {
  top: 20px;
  background: #fff;
  transform: rotate(45deg);
}

/* menu bg　*/
nav.globalMenuSp {
  position: fixed;
  z-index: 4;
  top: 0;
  right: -1px;
  background-color: #001D70;
  text-align: center;
  width: 70%;
  transform: translateX(100%);
  transition: all 0.6s;
  height: 100vh;
}
nav.globalMenuSp ul {
  margin: 0 auto;
  width: 100%;
  padding: 70px 15%;
}
nav.globalMenuSp li {
  padding: 0;
  width: 100%;
  transition: 0.4s all;
}
nav.globalMenuSp li a {
  display: block;
  color: #fff;
  padding: 20px 0;
  text-decoration: none;
  text-align: center;
  border-bottom: 1px solid #fff;
}
nav.globalMenuSp.active {
  opacity: 100;
  display: block;
  transform: translateX(0%);
}

/* kv ****************************/
.kv {
  position: relative;
  height: 700px;
}
.kv_title {
  position: absolute;
  width: auto;
  bottom: 70px;
  right: 0;
  left: 0;
  margin: 0 auto;
}
.kv_wave {
  position: absolute;
  bottom: -1px;
  width: 100%;
}
.kv_slide__wrap {
  position: inherit;
  z-index: 1;
  width: 100%;
  padding-top: 700px;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .kv {
    height: 600px;
  }
  .kv_title {
    width: 95%;
    bottom: 0;
  }
  .kv_slide__wrap {
    padding-top: 600px;
  }
}
@media screen and (max-width: 768px) {
  .kv {
    height: 500px;
  }
  .kv_title {
    bottom: 0;
    top: 0;
  }
}
@media screen and (max-width: 550px) {
  .kv {
    height: 600px;
  }
  .kv_title {
    width: 100%;
    bottom: 0;
  }
}
@media screen and (max-width: 480px) {
  .kv {
    height: 550px;
  }
}
@media screen and (max-width: 420px) {
  .kv {
    height: 500px;
  }
}
@media screen and (max-width: 375px) {
  .kv {
    height: 450px;
  }
}
@media screen and (max-width: 320px) {
  .kv {
    height: 400px;
  }
}

.firstview_slide {
  left: 50%;
  position: absolute;
  width: 250%;
  top: 470px;
  transform: translateX(-50%);
  overflow: visible;
}
@media screen and (max-width: 960px) {
  .firstview_slide {
    top: 430px;
  }
}
@media screen and (max-width: 768px) {
  .firstview_slide {
    top: 310px;
  }
}
@media screen and (max-width: 550px) {
  .firstview_slide {
    top: 400px;
  }
}
@media screen and (max-width: 480px) {
  .firstview_slide {
    top: 350px;
  }
}
@media screen and (max-width: 375px) {
  .firstview_slide {
    top: 300px;
  }
}
@media screen and (max-width: 320px) {
  .firstview_slide {
    top: 250px;
  }
}

.firstview_list {
  display: none;
  width: 160px;
  position: absolute;
  top: 0;
  margin: 0 0 0 -80px;
}
@media screen and (max-width: 768px) {
  .firstview_list {
    width: 100px;
    margin: 0 0 0 -50px;
  }
}
@media screen and (max-width: 480px) {
  .firstview_list {
    width: 80px;
    margin: 0 0 0 -40px;
  }
}

.firstview_list1, .firstview_list2, .firstview_list3, .firstview_list4, .firstview_list5, .firstview_list6, .firstview_list7 {
  display: block;
}

.firstview_list1 {
  left: 30%;
  transform: translateX(0) scale(1);
}

.firstview_list2 {
  left: 40%;
  transform: translateX(-30px) scale(1);
}

.firstview_list3 {
  left: 50%;
  transform: translateX(0) scale(2.2);
}

.firstview_list4 {
  left: 60%;
  transform: translateX(30px) scale(1);
}

.firstview_list5, .firstview_list6, .firstview_list7 {
  transform: translateX(0) scale(1);
}

.firstview_list5 {
  left: 70%;
}

.firstview_list6 {
  left: 80%;
  opacity: 0;
}

.firstview_list7 {
  left: 90%;
  opacity: 0;
}

.firstview_list img {
  display: block;
  width: 100%;
  backface-visibility: hidden;
}

.load_off .firstview_slide {
  opacity: 0;
}

@media (min-width: 560px) and (max-width: 999px) {
  .firstview_slide {
    width: 250%;
  }
}
@media (max-width: 559px) {
  .firstview_list {
    width: 110px;
    margin: 0 0 0 -55px;
  }
  .firstview_slide {
    width: 500%;
  }
}
.txt_stone {
  color: #9DD6CC;
}

.txt_crab {
  color: #E00E0E;
}

.txt_fish {
  color: #2090BC;
}

.slide-arrow {
  position: absolute;
  display: block;
  height: 22px;
  width: 22px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}

.prev-arrow {
  left: 0;
  z-index: 10;
}

.next-arrow {
  right: 0;
}

.slick-dots {
  display: flex;
  justify-content: space-between;
  align-items: center;
  bottom: -45px !important;
}
.slick-dots li {
  width: 25px !important;
  height: 25px !important;
}
.slick-dots li button {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 0;
  color: #000;
  padding: 0;
  display: block;
}

@media screen and (max-width: 768px) {
  .slick-dotted.slick-slider {
    margin-bottom: 35px !important;
  }
}
/*close-btn*/
.modal_close {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  padding: 5px;
}
.modal_close img {
  width: 40px;
  height: 40px;
}
.modal_close:hover {
  cursor: pointer;
}
.modal_close img:hover {
  opacity: 0.5;
}
@media screen and (max-width: 768px) {
  .modal_close img {
    width: 30px;
    height: 30px;
  }
}

/*bg*/
.modal_bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  display: none;
  width: 100%;
  height: 120%;
  background-color: rgba(0, 0, 0, 0.7);
}

.modal_box {
  position: fixed;
  z-index: 9999;
  display: none;
  width: 90%;
  max-width: 1200px;
  margin: 0;
  padding: 50px;
  background: #fff;
  box-sizing: border-box;
}
.modal_box h3 {
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 30px;
}
.modal_box a {
  color: #001D70;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .modal_box {
    padding: 20px;
  }
  .modal_box h3 {
    font-size: 1.25rem;
  }
  .modal_box p {
    font-size: 0.8125rem;
  }
  .modal_box .modal_txt {
    height: 500px;
    overflow-y: scroll;
    padding: 2%;
  }
}

.modal_return {
  text-align: left;
}
.modal_return dl {
  margin: 20px 0;
}
.modal_return dl dd {
  margin-bottom: 20px;
}
.modal_return dl dd:last-child {
  margin-bottom: 0;
}
.modal_return dl ul {
  list-style: disc;
  margin-left: 30px;
}
@media screen and (max-width: 768px) {
  .modal_return dl {
    font-size: 0.8125rem;
  }
}

.modal_size .modal_txt img {
  width: 100%;
}

.modal_lineup h5 {
  padding: 0 !important;
  margin: 0 auto;
  text-align: center;
  font-weight: bold;
  font-size: 1rem;
}
.modal_lineup p {
  text-align: center;
  font-size: 0.8125rem !important;
}
.modal_lineup .modal_slider {
  width: 100%;
  max-width: 450px;
  background: #fff;
  margin: 0 auto;
}

.prev-arrow, .next-arrow {
  width: 30px;
  height: 30px;
}

.prev-arrow {
  background: url(../images/slick_prev.svg) no-repeat;
  background-size: 100%;
}

.next-arrow {
  background: url(../images/slick_next.svg) no-repeat;
  background-size: 100%;
}

/* pagetop ****************************/
#page_top {
  position: fixed;
  width: 65px;
  right: 5%;
  z-index: 9997;
}
#page_top img {
  display: block;
  width: 100%;
  margin-bottom: 10px;
}
#page_top p {
  text-align: center;
  font-size: 0.9375rem;
  line-height: 1.2;
}
#page_top:hover {
  cursor: pointer;
  text-decoration: none;
}
#page_top:hover p {
  color: #9DD6CC;
}

/* onlineshop_btn--change ****************************/
/* ishinomachi ****************************/
.ishinomachi {
  max-width: 600px;
  margin: 3rem auto 10rem;
  text-align: center;
  width: 90%;
}
.ishinomachi h2, .ishinomachi p, .ishinomachi__bnr {
  opacity: 0;
}
.ishinomachi h2 {
  width: 100%;
  max-width: 455px;
  margin: 0 auto 2.5rem;
}
.ishinomachi p {
  text-align: left;
  margin-bottom: 2.5rem;
}
.ishinomachi__bnr {
  margin: 0 auto;
  max-width: 400px;
  width: 100%;
}
.ishinomachi__bnr a {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: 20px 0;
  background: #001D70;
  box-sizing: border-box;
  border: 3px solid #001D70;
  font-weight: bold;
  color: #fff;
}
.ishinomachi__bnr a::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 0;
  height: 0;
  margin-right: 0;
  border-style: solid;
  border-width: 8px 0px 8px 10px;
  border-color: transparent transparent transparent #fff;
  transform: translate(0, -50%);
  transition: all 0.3s;
}
.ishinomachi__bnr a:hover {
  text-decoration: none;
  background: #fff;
  color: #001D70;
  cursor: pointer;
}
.ishinomachi__bnr a:hover::after {
  border-color: transparent transparent transparent #001D70;
  right: 15px;
}
@media screen and (max-width: 768px) {
  .ishinomachi__bnr {
    font-size: 0.8125rem;
  }
  .ishinomachi__bnr a {
    padding: 10px 0;
  }
  .ishinomachi__bnr a::after {
    right: 15px;
    border-width: 5px 0px 5px 7px;
  }
  .ishinomachi__bnr a:hover {
    background: #001D70;
    color: #fff;
  }
  .ishinomachi__bnr a:hover::after {
    right: 15px;
    border-color: transparent transparent transparent #fff;
  }
}
@media screen and (max-width: 768px) {
  .ishinomachi {
    margin: 1.5rem auto 7rem;
  }
}

/* contact ****************************/
.contact {
  margin: 0 auto;
  text-align: center;
  max-width: 600px;
  width: 90%;
}
.contact h2, .contact .btn_white, .contact .company {
  opacity: 0;
}
.contact h2 {
  font-family: "memoir", sans-serif;
  font-weight: 900;
  color: #001D70;
  font-size: 2.1875rem;
  display: inline-block;
  padding-bottom: 10px;
  background-image: linear-gradient(to right, #60DCFF, #FFC04D);
  background-repeat: no-repeat;
  background-size: 100% 7px;
  background-position: bottom;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 768px) {
  .contact h2 {
    font-size: 1.875rem;
  }
}
.contact .btn_white {
  position: relative;
  display: block;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  padding: 3.75rem 0;
  box-sizing: border-box;
  border: 3px solid #001D70;
  background: #fff;
  font-size: 1.5625rem;
  font-weight: bold;
  color: #001D70;
}
.contact .btn_white::before {
  content: "";
  position: absolute;
  display: inline-block;
  background-size: contain;
  left: 50px;
  top: 50%;
  width: 40px;
  height: 32px;
  transform: translate(0, -50%);
}
.contact .btn_white::after {
  content: "";
  position: absolute;
  display: inline-block;
  right: 50px;
  top: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 0px 12px 17px;
  border-color: transparent transparent transparent #001D70;
  transform: translate(0, -50%);
  transition: all 0.3s;
}
.contact .btn_white:hover {
  text-decoration: none;
  background: #F5f5F5;
}
.contact .btn_white:hover::after {
  right: 40px;
}
.contact .btn_white::before {
  background: url(../images/icon_bnr_contact.png) no-repeat left;
}
@media screen and (max-width: 768px) {
  .contact .btn_white {
    padding: 1.5rem 0;
    font-size: 1rem;
  }
  .contact .btn_white::before {
    left: 20px;
    background-size: 20px;
  }
  .contact .btn_white::after {
    right: 15px;
    border-width: 8px 0px 8px 12px;
  }
  .contact .btn_white:hover {
    background: #fff;
  }
  .contact .btn_white:hover::after {
    right: 15px;
  }
}
.contact .company {
  max-width: 600px;
  width: 100%;
  margin: 2.5rem auto 7rem;
  padding: 30px 30px 50px;
  background: #F6F6F1;
  text-align: center;
}
.contact .company dt {
  font-size: 1.25rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .contact .company dt {
    font-size: 1rem;
  }
  .contact .company dd {
    font-size: 0.8125rem;
  }
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-delay: 0.5s;
  animation-timing-function: ease-out;
  opacity: 0;
}
.animated.infinite {
  animation-iteration-count: infinite;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-50%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(50%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes rote {
  0%, 100% {
    transform: rotate(3deg);
  }
  50% {
    transform: rotate(-3deg);
  }
}
@keyframes fluffy1 {
  0% {
    transform: translateY(0);
  }
  5% {
    transform: translateY(0);
  }
  10% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(-10px);
  }
  25% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes fluffy2 {
  0% {
    transform: translateY(0);
  }
  5% {
    transform: translateY(0);
  }
  10% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(-5px);
  }
  25% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-5px);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes zoomIn {
  from {
    transform: scale(0.8);
  }
  to {
    transform: scale(1);
  }
}
@keyframes zoomInFade {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.zoomInFade {
  animation-name: zoomInFade;
}

@keyframes blurIn {
  from {
    opacity: 0;
    filter: blur(20px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}
.blurIn {
  animation-name: blurIn;
}

@keyframes noFilter {
  100% {
    opacity: 1;
    filter: none;
  }
}
.noFilter {
  animation-name: noFilter;
}

@keyframes noTransform {
  100% {
    opacity: 1;
    transform: none;
  }
}
.noTransform {
  animation-name: noTransform;
}

.lineanime {
  fill: none;
  stroke: #ffffff;
  stroke-width: 19;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
  stroke-dasharray: 1800px;
  stroke-dashoffset: 1800px;
  animation: line 2.5s 0.1s forwards;
}
.lineanime.st2 {
  animation-delay: 0.3s;
}
.lineanime.st3 {
  animation-delay: 0.6s;
}
.lineanime.st4 {
  animation-delay: 0.9s;
}
.lineanime.st5 {
  animation-delay: 1.2s;
}
.lineanime.st6 {
  animation-delay: 1.5s;
}
.lineanime.st7 {
  animation-delay: 1.8s;
}

@keyframes line {
  0% {
    stroke-dashoffset: 1800px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
.slide_on .firstview_list1 {
  animation: slide_on1 1s ease-in-out 0.5s forwards;
}

@keyframes slide_on1 {
  0% {
    left: 30%;
    transform: translateX(0) scale(1);
    opacity: 1;
  }
  100% {
    left: 20%;
    transform: translateX(0) scale(1);
    opacity: 0;
  }
}
.slide_on .firstview_list2 {
  animation: slide_on2 1s ease-in-out 0.5s forwards;
}

@keyframes slide_on2 {
  0% {
    left: 40%;
    transform: translateX(-30px) scale(1);
  }
  100% {
    left: 30%;
    transform: translateX(0) scale(1);
  }
}
.slide_on .firstview_list3 {
  animation: slide_on3 1s ease-in-out 0.5s forwards;
}

@keyframes slide_on3 {
  0% {
    left: 50%;
    transform: translateX(0) scale(2.2);
  }
  100% {
    left: 40%;
    transform: translateX(-30px) scale(1);
  }
}
.slide_on .firstview_list4 {
  animation: slide_on4 1s ease-in-out 0.5s forwards;
}

@keyframes slide_on4 {
  0% {
    left: 60%;
    transform: translateX(30px) scale(1);
  }
  100% {
    left: 50%;
    transform: translateX(0) scale(2.2);
  }
}
.slide_on .firstview_list5 {
  animation: slide_on5 1s ease-in-out 0.5s forwards;
}

@keyframes slide_on5 {
  0% {
    left: 70%;
    transform: translateX(0) scale(1);
  }
  100% {
    left: 60%;
    transform: translateX(30px) scale(1);
  }
}
.slide_on .firstview_list6 {
  animation: slide_on6 1s ease-in-out 0.5s forwards;
}

@keyframes slide_on6 {
  0% {
    left: 80%;
    transform: translateX(0) scale(1);
    opacity: 0;
  }
  100% {
    left: 70%;
    transform: translateX(0) scale(1);
    opacity: 1;
  }
}
.slide_on .firstview_list7 {
  animation: slide_on7 1s ease-in-out 0.5s forwards;
}

@keyframes slide_on7 {
  0% {
    left: 90%;
    transform: translateX(0) scale(1);
  }
  100% {
    left: 80%;
    transform: translateX(0) scale(1);
  }
}
.slide_on .firstview_list1 img {
  animation: slide_on8 2.5s ease-in-out forwards;
}

.slide_on .firstview_list2 img {
  animation: slide_on9 2.5s ease-in-out forwards;
}

.slide_on .firstview_list3 img {
  animation: slide_on10 2.5s ease-in-out forwards;
}

.slide_on .firstview_list4 img {
  animation: slide_on11 2.5s ease-in-out forwards;
}

.slide_on .firstview_list5 img {
  animation: slide_on12 2.5s ease-in-out forwards;
}

.slide_on .firstview_list6 img {
  animation: slide_on13 2.5s ease-in-out forwards;
}

.slide_on .firstview_list7 a img {
  animation: slide_on14 2.5s ease-in-out forwards;
}

@keyframes slide_on8 {
  0%, 100% {
    transform: rotate(0);
    transform-origin: left bottom;
  }
  22% {
    transform: rotate(7.5deg);
    transform-origin: right bottom;
  }
  44% {
    transform: rotate(-7.5deg);
    transform-origin: left bottom;
  }
  66% {
    transform: rotate(3.75deg);
    transform-origin: right bottom;
  }
  77% {
    transform: rotate(-1.875deg);
    transform-origin: left bottom;
  }
  88% {
    transform: rotate(0.9375deg);
    transform-origin: right bottom;
  }
}
@keyframes slide_on9 {
  0%, 100% {
    transform: rotate(0);
    transform-origin: left bottom;
  }
  22% {
    transform: rotate(7.5deg);
    transform-origin: right bottom;
  }
  44% {
    transform: rotate(-7.5deg);
    transform-origin: left bottom;
  }
  66% {
    transform: rotate(3.75deg);
    transform-origin: right bottom;
  }
  77% {
    transform: rotate(-1.875deg);
    transform-origin: left bottom;
  }
  88% {
    transform: rotate(0.9375deg);
    transform-origin: right bottom;
  }
}
@keyframes slide_on10 {
  0%, 100% {
    transform: rotate(0);
    transform-origin: left bottom;
  }
  22% {
    transform: rotate(7.5deg);
    transform-origin: right bottom;
  }
  44% {
    transform: rotate(-7.5deg);
    transform-origin: left bottom;
  }
  66% {
    transform: rotate(3.75deg);
    transform-origin: right bottom;
  }
  77% {
    transform: rotate(-1.875deg);
    transform-origin: left bottom;
  }
  88% {
    transform: rotate(0.9375deg);
    transform-origin: right bottom;
  }
}
@keyframes slide_on11 {
  0%, 100% {
    transform: rotate(0);
    transform-origin: left bottom;
  }
  22% {
    transform: rotate(7.5deg);
    transform-origin: right bottom;
  }
  44% {
    transform: rotate(-7.5deg);
    transform-origin: left bottom;
  }
  66% {
    transform: rotate(3.75deg);
    transform-origin: right bottom;
  }
  77% {
    transform: rotate(-1.875deg);
    transform-origin: left bottom;
  }
  88% {
    transform: rotate(0.9375deg);
    transform-origin: right bottom;
  }
}
@keyframes slide_on12 {
  0%, 100% {
    transform: rotate(0);
    transform-origin: left bottom;
  }
  22% {
    transform: rotate(7.5deg);
    transform-origin: right bottom;
  }
  44% {
    transform: rotate(-7.5deg);
    transform-origin: left bottom;
  }
  66% {
    transform: rotate(3.75deg);
    transform-origin: right bottom;
  }
  77% {
    transform: rotate(-1.875deg);
    transform-origin: left bottom;
  }
  88% {
    transform: rotate(0.9375deg);
    transform-origin: right bottom;
  }
}
@keyframes slide_on13 {
  0%, 100% {
    transform: rotate(0);
    transform-origin: left bottom;
  }
  22% {
    transform: rotate(7.5deg);
    transform-origin: right bottom;
  }
  44% {
    transform: rotate(-7.5deg);
    transform-origin: left bottom;
  }
  66% {
    transform: rotate(3.75deg);
    transform-origin: right bottom;
  }
  77% {
    transform: rotate(-1.875deg);
    transform-origin: left bottom;
  }
  88% {
    transform: rotate(0.9375deg);
    transform-origin: right bottom;
  }
}
@keyframes slide_on14 {
  0%, 100% {
    transform: rotate(0);
    transform-origin: left bottom;
  }
  22% {
    transform: rotate(7.5deg);
    transform-origin: right bottom;
  }
  44% {
    transform: rotate(-7.5deg);
    transform-origin: left bottom;
  }
  66% {
    transform: rotate(3.75deg);
    transform-origin: right bottom;
  }
  77% {
    transform: rotate(-1.875deg);
    transform-origin: left bottom;
  }
  88% {
    transform: rotate(0.9375deg);
    transform-origin: right bottom;
  }
}
/* oshirase ****************************/
.oshirase {
  background-color: #F5f5F5;
  padding: 50px;
  max-width: 750px;
  width: 90%;
  margin: 0 auto;
  box-sizing: border-box;
}
.oshirase h2 {
  margin-bottom: 20px;
  font-size: 1.4375rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.5rem;
}
.oshirase p {
  border-left: 3px solid #000;
  padding-left: 15px;
}
.oshirase p .day {
  display: block;
  font-size: 0.75rem;
  color: #999999;
}
@media screen and (max-width: 768px) {
  .oshirase {
    padding: 30px;
  }
  .oshirase h2 {
    font-size: 1.125rem;
  }
  .oshirase p {
    font-size: 0.875rem;
  }
}

/* concept ****************************/
.concept {
  margin: 0 auto;
  padding-bottom: 130px;
  text-align: center;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(232, 248, 251) 50%, rgb(254, 242, 221) 100%);
}
.concept .inner {
  padding: 10rem 0 10rem;
  background: url(../images/concept_bg.png) no-repeat center bottom;
  background-size: 90%;
}
.concept h2, .concept h3, .concept p {
  opacity: 0;
}
.concept h2 {
  font-family: "memoir", sans-serif;
  font-weight: 900;
  color: #001D70;
  font-size: 2.1875rem;
  display: inline-block;
  padding-bottom: 10px;
  background-image: linear-gradient(to right, #60DCFF, #FFC04D);
  background-repeat: no-repeat;
  background-size: 100% 7px;
  background-position: bottom;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 768px) {
  .concept h2 {
    font-size: 1.875rem;
  }
}
.concept h3, .concept p {
  width: 90%;
  margin: 0 auto;
}
.concept h3 {
  font-size: 1.375rem;
  margin-bottom: 3.75rem;
  font-weight: bold;
}
.concept p {
  text-align: center;
  margin-bottom: 1.8rem;
}
@media screen and (max-width: 768px) {
  .concept {
    margin: 3rem auto 0;
    padding-bottom: 70px;
  }
  .concept .inner {
    padding: 0rem 0 5rem;
    background: url(../images/concept_bg_sp.png) no-repeat;
    background-position: center bottom 50px;
    background-size: 90%;
  }
  .concept h2 {
    margin-bottom: 2.5rem;
  }
  .concept h3 {
    font-size: 1.125rem;
  }
  .concept p {
    font-size: 0.8125rem;
  }
}

/* lineup ****************************/
.lineup {
  margin: 0 auto;
  text-align: center;
  background: url(../images/lineup_bg.png) repeat-y;
  background-size: 100%;
  position: relative;
  padding-bottom: 15rem;
}
.lineup h2 {
  font-family: "memoir", sans-serif;
  font-weight: 900;
  color: #001D70;
  font-size: 2.1875rem;
  display: inline-block;
  padding-bottom: 10px;
  background-image: linear-gradient(to right, #60DCFF, #FFC04D);
  background-repeat: no-repeat;
  background-size: 100% 7px;
  background-position: bottom;
  position: absolute;
  top: -240px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .lineup h2 {
    font-size: 1.875rem;
  }
}
@media screen and (max-width: 768px) {
  .lineup {
    padding-bottom: 7rem;
  }
  .lineup h2 {
    top: -170px;
  }
}

/* lineup tab */
.lineup-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 820px;
  gap: 1rem;
  margin: 0 auto;
  position: absolute;
  top: -105px;
  left: 50%;
  transform: translateX(-50%);
  /*tab stone*/
  /*tab crab*/
  /*tab fish*/
}
@media screen and (max-width: 768px) {
  .lineup-btn {
    width: 100%;
    padding: 0 3%;
    top: -58.8px;
  }
}
@media screen and (max-width: 480px) {
  .lineup-btn {
    gap: 0.1rem;
  }
}
.lineup-btn li {
  width: 237px;
  max-width: 237px;
  background: #D4D4D4;
  padding: 30px 0;
  cursor: pointer;
  position: relative;
}
.lineup-btn li:hover, .lineup-btn li.active {
  filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.2));
  transform: translateZ(0);
}
.lineup-btn li:hover {
  transition: all 0.3s;
}
.lineup-btn li p {
  font-size: 1.5625rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
}
.lineup-btn li p::before {
  display: inline-block;
  content: "";
  vertical-align: middle;
  margin-right: 10px;
  width: 40px;
  height: 28px;
  background-size: 100%;
}
@media screen and (max-width: 768px) {
  .lineup-btn li {
    width: 32%;
    padding: 15px 0;
  }
  .lineup-btn li p {
    font-size: 1rem;
  }
  .lineup-btn li p::before {
    margin-right: 5px;
    width: 30px;
  }
}
.lineup-btn--stone p:hover, .lineup-btn--crab p:hover, .lineup-btn--fish p:hover {
  transform: translateX(0) scale(1.1);
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .lineup-btn--stone p:hover, .lineup-btn--crab p:hover, .lineup-btn--fish p:hover {
    transform: translateX(0) scale(1);
  }
}
.lineup-btn--stone.tab.active p:hover, .lineup-btn--crab.tab.active p:hover, .lineup-btn--fish.tab.active p:hover {
  transform: translateX(0) scale(1);
}
.lineup-btn--stone:hover {
  background: #9DD6CC;
}
.lineup-btn--stone:hover::before {
  opacity: 1;
}
.lineup-btn--stone::before {
  content: "";
  position: absolute;
  display: block;
  bottom: -34px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s;
  border: 20px solid transparent;
  border-top: 15px solid;
  border-top-color: #9DD6CC;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .lineup-btn--stone::before {
    bottom: -20px;
    border: 10px solid transparent;
    border-top: 10px solid;
    border-top-color: #9DD6CC;
  }
}
.lineup-btn--stone p::before {
  background: url(../images/icon_tab_stone.png) no-repeat left;
  background-size: 100%;
}
.lineup-btn--stone.tab.active {
  background: #9DD6CC;
}
.lineup-btn--stone.tab.active:hover {
  background: #9DD6CC;
}
.lineup-btn--stone.tab.active:hover::before {
  opacity: 1;
}
.lineup-btn--stone.tab.active::before {
  content: "";
  position: absolute;
  display: block;
  bottom: -34px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s;
  border: 20px solid transparent;
  border-top: 15px solid;
  border-top-color: #9DD6CC;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .lineup-btn--stone.tab.active::before {
    bottom: -20px;
    border: 10px solid transparent;
    border-top: 10px solid;
    border-top-color: #9DD6CC;
  }
}
.lineup-btn--stone.tab.active p::before {
  background: url(../images/icon_tab_stone.png) no-repeat left;
  background-size: 100%;
}
.lineup-btn--crab:hover {
  background: #E00E0E;
}
.lineup-btn--crab:hover::before {
  opacity: 1;
}
.lineup-btn--crab::before {
  content: "";
  position: absolute;
  display: block;
  bottom: -34px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s;
  border: 20px solid transparent;
  border-top: 15px solid;
  border-top-color: #E00E0E;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .lineup-btn--crab::before {
    bottom: -20px;
    border: 10px solid transparent;
    border-top: 10px solid;
    border-top-color: #E00E0E;
  }
}
.lineup-btn--crab p::before {
  background: url(../images/icon_tab_crab.png) no-repeat left;
  background-size: 100%;
}
.lineup-btn--crab.tab.active {
  background: #E00E0E;
}
.lineup-btn--crab.tab.active:hover {
  background: #E00E0E;
}
.lineup-btn--crab.tab.active:hover::before {
  opacity: 1;
}
.lineup-btn--crab.tab.active::before {
  content: "";
  position: absolute;
  display: block;
  bottom: -34px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s;
  border: 20px solid transparent;
  border-top: 15px solid;
  border-top-color: #E00E0E;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .lineup-btn--crab.tab.active::before {
    bottom: -20px;
    border: 10px solid transparent;
    border-top: 10px solid;
    border-top-color: #E00E0E;
  }
}
.lineup-btn--crab.tab.active p::before {
  background: url(../images/icon_tab_crab.png) no-repeat left;
  background-size: 100%;
}
.lineup-btn--fish:hover {
  background: #2090BC;
}
.lineup-btn--fish:hover::before {
  opacity: 1;
}
.lineup-btn--fish::before {
  content: "";
  position: absolute;
  display: block;
  bottom: -34px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s;
  border: 20px solid transparent;
  border-top: 15px solid;
  border-top-color: #2090BC;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .lineup-btn--fish::before {
    bottom: -20px;
    border: 10px solid transparent;
    border-top: 10px solid;
    border-top-color: #2090BC;
  }
}
.lineup-btn--fish p::before {
  background: url(../images/icon_tab_fish.png) no-repeat left;
  background-size: 100%;
}
.lineup-btn--fish.tab.active {
  background: #2090BC;
}
.lineup-btn--fish.tab.active:hover {
  background: #2090BC;
}
.lineup-btn--fish.tab.active:hover::before {
  opacity: 1;
}
.lineup-btn--fish.tab.active::before {
  content: "";
  position: absolute;
  display: block;
  bottom: -34px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s;
  border: 20px solid transparent;
  border-top: 15px solid;
  border-top-color: #2090BC;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .lineup-btn--fish.tab.active::before {
    bottom: -20px;
    border: 10px solid transparent;
    border-top: 10px solid;
    border-top-color: #2090BC;
  }
}
.lineup-btn--fish.tab.active p::before {
  background: url(../images/icon_tab_fish.png) no-repeat left;
  background-size: 100%;
}

/* lineup-btn scroll */
.lineup-btn.fixed {
  position: sticky;
  display: block;
  width: 170px;
  top: 65px;
  left: 100%;
  transform: none;
  z-index: 3;
  animation: linup-btn 0.3s;
}
@keyframes linup-btn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.lineup-btn.fixed li {
  padding: 25px 0;
  margin-bottom: 1px;
  width: 100%;
}
.lineup-btn.fixed li:hover {
  padding-right: 15px;
}
.lineup-btn.fixed li::before {
  bottom: 0;
  border-top-color: rgba(255, 255, 255, 0);
}
.lineup-btn.fixed li.active::before {
  bottom: 0;
  border-top-color: rgba(255, 255, 255, 0);
}
.lineup-btn.fixed li.active:hover {
  padding: 25px 0;
}
.lineup-btn.fixed li p {
  font-size: 1.25rem;
}
.lineup-btn.fixed li p:hover {
  transform: translateX(0) scale(1) !important;
}
@media screen and (max-width: 960px) {
  .lineup-btn.fixed {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1px;
    width: calc(100% - 60px);
    margin: 0;
    padding: 0;
    top: 0;
    left: 0;
    right: calc(100% - 60px);
  }
  .lineup-btn.fixed li {
    padding: 15px 0;
  }
  .lineup-btn.fixed li:hover {
    padding: 15px 0;
  }
  .lineup-btn.fixed li.active:hover {
    padding: 15px 0;
  }
  .lineup-btn.fixed li p {
    font-size: 1rem;
  }
  .lineup-btn.fixed li p::before {
    margin-right: 5px;
    width: 30px;
  }
}
@media screen and (max-width: 480px) {
  .lineup-btn.fixed li {
    padding: 10px 0;
  }
  .lineup-btn.fixed li:hover {
    padding: 10px 0;
  }
  .lineup-btn.fixed li.active:hover {
    padding: 10px 0;
  }
}

/* lineup-list */
.lineup-list.show {
  visibility: visible;
  height: auto;
}

.lineup-list {
  visibility: hidden;
  height: 0;
}
.lineup-list h3 {
  width: 100%;
}
.lineup-list h3 img {
  display: block;
  margin: 0 auto;
}
.lineup-list__title--stone h3 {
  background: #9DD6CC;
}
.lineup-list__title--crab h3 {
  background: #E00E0E;
}
.lineup-list__title--fish h3 {
  background: #2090BC;
}
.lineup-list__wrap {
  width: 90%;
  margin: 0 auto;
  padding-top: 80px;
}
.lineup-list__box {
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .lineup-list__wrap {
    padding-top: 3rem;
  }
}

/* lineup-list__overview */
.lineup-list__overview {
  width: 100%;
  max-width: 700px;
  margin: 0 auto 4rem;
}
.lineup-list__overview__price {
  padding: 30px 40px 15px;
}
.lineup-list__overview__price h4 {
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 5px;
  line-height: 1.2rem;
}
.lineup-list__overview__price h4 span {
  font-size: 0.75rem;
  font-weight: normal;
}
.lineup-list__overview__price table {
  margin: 0 auto;
  border-spacing: 0 10px;
  border-collapse: separate;
}
.lineup-list__overview__price th, .lineup-list__overview__price td {
  line-height: 1.2rem;
}
.lineup-list__overview__price th {
  padding-right: 10px;
  text-align: center;
}
.lineup-list__overview__price th span {
  font-size: 0.75rem;
}
.lineup-list__overview__price td {
  padding-left: 10px;
  border-left: 1px solid #000;
  font-size: 1rem;
  font-weight: bold;
}
.lineup-list__overview__price td span {
  font-weight: normal;
}
.lineup-list__overview__price--stone {
  background: #E7F8F6;
}
.lineup-list__overview__price--crab {
  background: #FFEEEE;
}
.lineup-list__overview__price--fish {
  background: #E4EFF6;
}
.lineup-list__overview p.att {
  text-align: center;
  margin-top: 10px;
}
.lineup-list__overview p.att .att--pc {
  display: inline-block;
}
.lineup-list__overview p.att .att--tb {
  display: none;
}
@media screen and (max-width: 960px) {
  .lineup-list__overview p.att .att--pc {
    display: none;
  }
  .lineup-list__overview p.att .att--tb {
    display: inline-block;
  }
}
@media screen and (max-width: 768px) {
  .lineup-list__overview {
    margin-bottom: 3rem;
  }
  .lineup-list__overview__price {
    padding: 25px 5px 12px;
  }
  .lineup-list__overview__price h4 {
    font-size: 0.9375rem;
  }
  .lineup-list__overview__price th {
    font-size: 0.8125rem;
  }
  .lineup-list__overview__price td {
    font-size: 0.875rem;
  }
  .lineup-list__overview p.att {
    font-size: 0.75rem;
  }
}

/* lineup-goods */
.lineup-goods {
  display: grid;
  justify-content: flex-start;
  align-items: stretch;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px 40px;
  max-width: 1024px;
  width: 100%;
  margin: 0 auto;
}
.lineup-goods__detail {
  max-width: 226px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}
.lineup-goods__detail h4 {
  text-align: left;
  font-size: 1.25rem;
  padding-left: 10px;
  margin-bottom: 15px;
  font-weight: bold;
}
.lineup-goods__detail p {
  flex-grow: 1;
  padding-bottom: 10px;
  font-size: 0.9375rem;
  line-height: 1.6em;
}
.lineup-goods__bnr {
  display: block;
  margin-top: auto;
}
.lineup-goods__slider {
  width: 100%;
  background: #fff;
  border: 1px solid #000;
  margin-top: 0 auto;
}
.lineup-goods__photo {
  width: 100%;
  background: #fff;
  position: relative;
}
.lineup-goods__photo img {
  border: 1px solid #000;
  margin-top: 0 auto;
}
.lineup-goods__photo .scaling {
  position: absolute;
  border: none;
  width: 30px;
  height: 30px;
  right: 3px;
  bottom: 15px;
  transition: all 0.3s;
}
.lineup-goods__photo .scaling:hover {
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .lineup-goods__photo .scaling {
    bottom: 14px;
  }
}
@media screen and (max-width: 1280px) {
  .lineup-goods {
    grid-template-columns: repeat(3, 1fr);
    max-width: 758px;
  }
}
@media screen and (max-width: 768px) {
  .lineup-goods {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
    max-width: 472px;
  }
  .lineup-goods__detail h4 {
    font-size: 1rem;
  }
  .lineup-goods__detail p {
    font-size: 0.875rem;
  }
  .lineup-goods__bnr li a {
    padding: 5px 0 !important;
  }
}
@media screen and (max-width: 480px) {
  .lineup-goods {
    max-width: 380px;
  }
  .lineup-goods__detail {
    max-width: 180px;
  }
}
@media screen and (max-width: 375px) {
  .lineup-goods {
    max-width: 320px;
  }
  .lineup-goods__detail {
    max-width: 150px;
  }
  .lineup-goods__detail h4 {
    font-size: 0.9375rem;
  }
  .lineup-goods__detail p {
    font-size: 0.8125rem;
  }
}
@media screen and (max-width: 320px) {
  .lineup-goods {
    max-width: 290px;
    gap: 30px 10px;
  }
  .lineup-goods__detail {
    max-width: 140px;
  }
}

.lineup-goods__stone__bnr li,
.lineup-goods__crab__bnr li,
.lineup-goods__fish__bnr li {
  margin-bottom: 5px;
}
.lineup-goods__stone__bnr li a::after,
.lineup-goods__crab__bnr li a::after,
.lineup-goods__fish__bnr li a::after {
  right: 10px !important;
  border-width: 5px 0px 5px 7px !important;
}

.lineup-goods__stone h4 {
  border-left: 5px solid #9DD6CC;
}
.lineup-goods__stone__bnr li {
  max-width: 100%;
  width: 100%;
}
.lineup-goods__stone__bnr li a {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: 5px 0;
  background: #9DD6CC;
  box-sizing: border-box;
  border: 3px solid #9DD6CC;
  font-weight: bold;
  color: #fff;
}
.lineup-goods__stone__bnr li a::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 0;
  height: 0;
  margin-right: 0;
  border-style: solid;
  border-width: 8px 0px 8px 10px;
  border-color: transparent transparent transparent #fff;
  transform: translate(0, -50%);
  transition: all 0.3s;
}
.lineup-goods__stone__bnr li a:hover {
  text-decoration: none;
  background: #fff;
  color: #9DD6CC;
  cursor: pointer;
}
.lineup-goods__stone__bnr li a:hover::after {
  border-color: transparent transparent transparent #9DD6CC;
  right: 15px;
}
@media screen and (max-width: 768px) {
  .lineup-goods__stone__bnr li {
    font-size: 0.8125rem;
  }
  .lineup-goods__stone__bnr li a {
    padding: 10px 0;
  }
  .lineup-goods__stone__bnr li a::after {
    right: 15px;
    border-width: 5px 0px 5px 7px;
  }
  .lineup-goods__stone__bnr li a:hover {
    background: #9DD6CC;
    color: #fff;
  }
  .lineup-goods__stone__bnr li a:hover::after {
    right: 15px;
    border-color: transparent transparent transparent #fff;
  }
}

.lineup-goods__crab h4 {
  border-left: 5px solid #E00E0E;
}
.lineup-goods__crab__bnr li {
  max-width: 100%;
  width: 100%;
}
.lineup-goods__crab__bnr li a {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: 5px 0;
  background: #E00E0E;
  box-sizing: border-box;
  border: 3px solid #E00E0E;
  font-weight: bold;
  color: #fff;
}
.lineup-goods__crab__bnr li a::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 0;
  height: 0;
  margin-right: 0;
  border-style: solid;
  border-width: 8px 0px 8px 10px;
  border-color: transparent transparent transparent #fff;
  transform: translate(0, -50%);
  transition: all 0.3s;
}
.lineup-goods__crab__bnr li a:hover {
  text-decoration: none;
  background: #fff;
  color: #E00E0E;
  cursor: pointer;
}
.lineup-goods__crab__bnr li a:hover::after {
  border-color: transparent transparent transparent #E00E0E;
  right: 15px;
}
@media screen and (max-width: 768px) {
  .lineup-goods__crab__bnr li {
    font-size: 0.8125rem;
  }
  .lineup-goods__crab__bnr li a {
    padding: 10px 0;
  }
  .lineup-goods__crab__bnr li a::after {
    right: 15px;
    border-width: 5px 0px 5px 7px;
  }
  .lineup-goods__crab__bnr li a:hover {
    background: #E00E0E;
    color: #fff;
  }
  .lineup-goods__crab__bnr li a:hover::after {
    right: 15px;
    border-color: transparent transparent transparent #fff;
  }
}

.lineup-goods__fish h4 {
  border-left: 5px solid #2090BC;
}
.lineup-goods__fish__bnr li {
  max-width: 100%;
  width: 100%;
}
.lineup-goods__fish__bnr li a {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: 5px 0;
  background: #2090BC;
  box-sizing: border-box;
  border: 3px solid #2090BC;
  font-weight: bold;
  color: #fff;
}
.lineup-goods__fish__bnr li a::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 0;
  height: 0;
  margin-right: 0;
  border-style: solid;
  border-width: 8px 0px 8px 10px;
  border-color: transparent transparent transparent #fff;
  transform: translate(0, -50%);
  transition: all 0.3s;
}
.lineup-goods__fish__bnr li a:hover {
  text-decoration: none;
  background: #fff;
  color: #2090BC;
  cursor: pointer;
}
.lineup-goods__fish__bnr li a:hover::after {
  border-color: transparent transparent transparent #2090BC;
  right: 15px;
}
@media screen and (max-width: 768px) {
  .lineup-goods__fish__bnr li {
    font-size: 0.8125rem;
  }
  .lineup-goods__fish__bnr li a {
    padding: 10px 0;
  }
  .lineup-goods__fish__bnr li a::after {
    right: 15px;
    border-width: 5px 0px 5px 7px;
  }
  .lineup-goods__fish__bnr li a:hover {
    background: #2090BC;
    color: #fff;
  }
  .lineup-goods__fish__bnr li a:hover::after {
    right: 15px;
    border-color: transparent transparent transparent #fff;
  }
}

/* buy ****************************/
.buy {
  background: #F6F6F1;
  margin: 0 auto;
  padding: 9rem 0;
  text-align: center;
}
.buy .inner {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
}
.buy h2, .buy--txt {
  opacity: 0;
}
.buy h2 {
  font-family: "memoir", sans-serif;
  font-weight: 900;
  color: #001D70;
  font-size: 2.1875rem;
  display: inline-block;
  padding-bottom: 10px;
  background-image: linear-gradient(to right, #60DCFF, #FFC04D);
  background-repeat: no-repeat;
  background-size: 100% 7px;
  background-position: bottom;
}
@media screen and (max-width: 768px) {
  .buy h2 {
    font-size: 1.875rem;
  }
}
.buy--txt {
  max-width: 600px;
  width: 90%;
  text-align: center;
  margin: 3.75rem auto 20px;
}
@media screen and (max-width: 768px) {
  .buy {
    padding: 4.5rem 0;
  }
  .buy--txt {
    font-size: 0.8125rem;
    margin: 3rem auto;
  }
}

/* buy onlineshop-bnr */
.onlineshop {
  max-width: 600px;
  width: 90%;
  margin: 0 auto;
  opacity: 0;
}
.onlineshop .bnr_white {
  position: relative;
  display: block;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  padding: 3.75rem 0;
  box-sizing: border-box;
  border: 3px solid #001D70;
  background: #fff;
  font-size: 1.5625rem;
  font-weight: bold;
  color: #001D70;
}
.onlineshop .bnr_white::before {
  content: "";
  position: absolute;
  display: inline-block;
  background-size: contain;
  left: 50px;
  top: 50%;
  width: 40px;
  height: 32px;
  transform: translate(0, -50%);
}
.onlineshop .bnr_white::after {
  content: "";
  position: absolute;
  display: inline-block;
  right: 50px;
  top: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 0px 12px 17px;
  border-color: transparent transparent transparent #001D70;
  transform: translate(0, -50%);
  transition: all 0.3s;
}
.onlineshop .bnr_white:hover {
  text-decoration: none;
  background: #F5f5F5;
}
.onlineshop .bnr_white:hover::after {
  right: 40px;
}
.onlineshop .bnr_white::before {
  background: url(../images/icon_bnr_onlineshop.png) no-repeat left;
}
@media screen and (max-width: 768px) {
  .onlineshop .bnr_white {
    padding: 1.5rem 0;
    font-size: 1rem;
  }
  .onlineshop .bnr_white::before {
    left: 20px;
    background-size: 20px;
  }
  .onlineshop .bnr_white::after {
    right: 15px;
    border-width: 8px 0px 8px 12px;
  }
  .onlineshop .bnr_white:hover {
    background: #fff;
  }
  .onlineshop .bnr_white:hover::after {
    right: 15px;
  }
}
.onlineshop__bnr--detail {
  max-width: 600px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin: 20px auto 0;
}
.onlineshop__bnr--detail li {
  max-width: 295px;
  width: 100%;
}
.onlineshop__bnr--detail li a {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: 20px 0;
  background: #001D70;
  box-sizing: border-box;
  border: 3px solid #001D70;
  font-weight: bold;
  color: #fff;
}
.onlineshop__bnr--detail li a::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 0;
  height: 0;
  margin-right: 0;
  border-style: solid;
  border-width: 8px 0px 8px 10px;
  border-color: transparent transparent transparent #fff;
  transform: translate(0, -50%);
  transition: all 0.3s;
}
.onlineshop__bnr--detail li a:hover {
  text-decoration: none;
  background: #fff;
  color: #001D70;
  cursor: pointer;
}
.onlineshop__bnr--detail li a:hover::after {
  border-color: transparent transparent transparent #001D70;
  right: 15px;
}
@media screen and (max-width: 768px) {
  .onlineshop__bnr--detail li {
    font-size: 0.8125rem;
  }
  .onlineshop__bnr--detail li a {
    padding: 10px 0;
  }
  .onlineshop__bnr--detail li a::after {
    right: 15px;
    border-width: 5px 0px 5px 7px;
  }
  .onlineshop__bnr--detail li a:hover {
    background: #001D70;
    color: #fff;
  }
  .onlineshop__bnr--detail li a:hover::after {
    right: 15px;
    border-color: transparent transparent transparent #fff;
  }
}
@media screen and (max-width: 768px) {
  .onlineshop__bnr--detail {
    display: block;
    max-width: 80%;
  }
  .onlineshop__bnr--detail li {
    display: block;
    margin-bottom: 5px;
    max-width: 100%;
  }
  .onlineshop__bnr--detail li a {
    max-width: 100%;
  }
  .onlineshop__bnr--detail li:last-child {
    margin-bottom: 0;
  }
}

/* buy shop-list */
.shop {
  display: grid;
  justify-content: space-between;
  align-items: flex-start;
  grid-template-columns: repeat(2, 1fr);
  max-width: 920px;
  gap: 2.5em;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .shop {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  .shop {
    display: block;
  }
}

.shop__box {
  opacity: 0;
}
.shop__box--photo {
  position: relative;
}
.shop__box--photo .shop__icon {
  position: absolute;
  top: 0;
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 5px;
  margin: 10px;
}
.shop__box--photo .shop__icon img {
  width: 100%;
}
.shop__box--photo .shop__icon li img {
  width: 63px;
  height: 63px;
}
.shop__box--overview {
  text-align: left;
}
.shop__box--overview dt {
  font-weight: bold;
}
.shop__box--overview dd {
  font-size: 0.8125rem;
}
.shop__box--overview .shop_10off {
  background: #fff;
  margin-top: 10px;
  padding: 10px 15px;
}
.shop__box--overview .shop_10off dd {
  line-height: 1.3rem;
}
.shop__box--buy {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  margin: 10px 0;
  padding: 10px 0;
  font-size: 0.8125rem;
}
.shop__box--bnr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}
.shop__box--bnr li {
  max-width: 216px;
  width: 100%;
}
.shop__box--bnr li a {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: 10px 0;
  background: #001D70;
  box-sizing: border-box;
  border: 3px solid #001D70;
  font-weight: bold;
  color: #fff;
}
.shop__box--bnr li a::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 0;
  height: 0;
  margin-right: 0;
  border-style: solid;
  border-width: 8px 0px 8px 10px;
  border-color: transparent transparent transparent #fff;
  transform: translate(0, -50%);
  transition: all 0.3s;
}
.shop__box--bnr li a:hover {
  text-decoration: none;
  background: #fff;
  color: #001D70;
  cursor: pointer;
}
.shop__box--bnr li a:hover::after {
  border-color: transparent transparent transparent #001D70;
  right: 15px;
}
@media screen and (max-width: 768px) {
  .shop__box--bnr li {
    font-size: 0.8125rem;
  }
  .shop__box--bnr li a {
    padding: 5px 0;
  }
  .shop__box--bnr li a::after {
    right: 15px;
    border-width: 5px 0px 5px 7px;
  }
  .shop__box--bnr li a:hover {
    background: #001D70;
    color: #fff;
  }
  .shop__box--bnr li a:hover::after {
    right: 15px;
    border-color: transparent transparent transparent #fff;
  }
}
@media screen and (max-width: 960px) {
  .shop__box--bnr {
    margin-bottom: 3rem;
  }
  .shop__box--bnr li {
    max-width: 100%;
    width: 49%;
  }
}
@media screen and (max-width: 768px) {
  .shop__box--photo .shop_10off {
    width: 125px;
    height: 122px;
  }
}

/* sns ****************************/
.sns {
  position: relative;
  background: linear-gradient(180deg, #6A21F5 0%, #E9336B 50%, #F7D146 100%);
  margin: 0 auto;
  padding-top: 6.25rem;
  padding-bottom: 17.5rem;
}
.sns .inner {
  background: url(../images/sns_bg.png) no-repeat top center;
}
.sns h2, .sns p {
  opacity: 0;
}
.sns h2 {
  font-family: "memoir", sans-serif;
  color: #fff;
  font-size: 3.125rem;
  background: url(../images/icon_instagram_white.png) no-repeat top center;
  padding-top: 7rem;
  text-align: center;
  font-weight: bold;
}
.sns h2 span {
  font-family: "游ゴシック", "Noto Sans JP", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1.5625rem;
}
.sns p {
  color: #fff;
  font-weight: bold;
  text-align: center;
  margin: 3rem auto 1.8rem;
}
.sns__bg--wave {
  position: absolute;
  bottom: 0;
  width: 100%;
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .sns {
    padding-top: 5rem;
    padding-bottom: 20rem;
  }
  .sns .inner {
    width: 90%;
    margin: 0 auto;
    background-size: 100%;
  }
  .sns h2 {
    background-size: 15%;
    font-size: 1.875rem;
    padding-top: 4rem;
  }
  .sns h2 span {
    font-size: 1.125rem;
  }
  .sns p {
    font-size: 0.8125rem;
    margin: 2rem auto;
  }
}
@media screen and (max-width: 480px) {
  .sns {
    padding-bottom: 10rem;
  }
}

.sns__bnr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 790px;
  width: 100%;
  margin: 0 auto;
  opacity: 0;
}
.sns__bnr li {
  max-width: 375px;
  width: 100%;
  text-align: center;
  font-weight: bold;
}
.sns__bnr a {
  display: block;
  background-color: #fff;
  background-image: url(../images/icon_instagram_black.png);
  background-repeat: no-repeat;
  background-size: 40px;
  background-position: top 20px center;
  width: 100%;
  padding: 4.8rem 0 1.25rem;
  color: #000;
  border-radius: 10px;
}
.sns__bnr a:hover {
  text-decoration: none;
  background-color: #000;
  background-image: url(../images/icon_instagram_white.png);
  color: #fff;
}
@media screen and (max-width: 768px) {
  .sns__bnr {
    display: block;
  }
  .sns__bnr li {
    max-width: 90%;
    margin: 0 auto 10px;
  }
  .sns__bnr li:last-child {
    margin-bottom: 0;
  }
  .sns__bnr a {
    padding: 4rem 0 20px;
  }
  .sns__bnr a:hover {
    background-color: #fff;
    background-image: url(../images/icon_instagram_black.png);
    color: #000;
  }
}

.sns__instagram {
  display: grid;
  justify-content: space-between;
  align-items: center;
  grid-template-columns: repeat(3, 1fr);
  max-width: 790px;
  gap: 2.5em;
  margin: 3.75rem auto 0;
}
.sns__instagram li {
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .sns__instagram {
    grid-template-columns: repeat(1, 1fr);
    width: 60%;
  }
}/*# sourceMappingURL=common_style.css.map */