@charset "UTF-8";
/*
	HTML5 Reset :: style.css
	----------------------------------------------------------
	We have learned much from/been inspired by/taken code where offered from:

	Eric Meyer					:: http://meyerweb.com
	HTML5 Doctor				:: http://html5doctor.com
	and the HTML5 Boilerplate	:: http://html5boilerplate.com

-------------------------------------------------------------------------------*/
/* Let's default this puppy out
-------------------------------------------------------------------------------*/
html, body, body div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figure, footer, header, menu, nav, section, time, mark, audio, video, details, summary {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent;
}

article, aside, figure, footer, header, nav, section, details, summary {
  display: block;
}

/* Handle box-sizing while better addressing child elements:
   http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

/* consider resetting the default cursor: https://gist.github.com/murtaugh/5247154 */
/* Responsive images and other embedded objects */
/* if you don't have full control over `img` tags (if you have to overcome attributes), consider adding height: auto */
img,
object,
embed {
  max-width: 100%;
}

/*
   Note: keeping IMG here will cause problems if you're using foreground images as sprites.
	In fact, it *will* cause problems with Google Maps' controls at small size.
	If this is the case for you, try uncommenting the following:

#map img {
		max-width: none;
}
*/
/* force a vertical scrollbar to prevent a jumpy page */
html {
  overflow-y: scroll;
}

/* we use a lot of ULs that aren't bulleted.
	you'll have to restore the bullets within content,
	which is fine because they're probably customized anyway */
ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}

/* tables still need cellspacing="0" in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

th {
  font-weight: bold;
  vertical-align: bottom;
}

td {
  font-weight: normal;
  vertical-align: top;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

pre {
  white-space: pre;
  /* CSS2 */
  white-space: pre-wrap;
  /* CSS 2.1 */
  white-space: pre-line;
  /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word;
  /* IE */
}

input[type=radio] {
  vertical-align: text-bottom;
}

input[type=checkbox] {
  vertical-align: bottom;
}

.ie7 input[type=checkbox] {
  vertical-align: baseline;
}

.ie6 input {
  vertical-align: text-bottom;
}

select, input, textarea {
  font: 99% sans-serif;
}

table {
  font-size: inherit;
  font: 100%;
}

small {
  font-size: 85%;
}

strong {
  font-weight: bold;
}

td, td img {
  vertical-align: top;
}

/* Make sure sup and sub don't mess with your line-heights http://gist.github.com/413930 */
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* standardize any monospaced elements */
pre, code, kbd, samp {
  font-family: monospace, sans-serif;
}

/* hand cursor on clickable elements */
.clickable,
label,
input[type=button],
input[type=submit],
input[type=file],
button {
  cursor: pointer;
}

/* Webkit browsers add a 2px margin outside the chrome of form elements */
button, input, select, textarea {
  margin: 0;
}

/* make buttons play nice in IE */
button,
input[type=button] {
  width: auto;
  overflow: visible;
}

/* scale images in IE7 more attractively */
.ie7 img {
  -ms-interpolation-mode: bicubic;
}

/* prevent BG image flicker upon hover
   (commented out as usage is rare, and the filter syntax messes with some pre-processors)
.ie6 html {filter: expression(document.execCommand("BackgroundImageCache", false, true));}
*/
/* let's clear some floats */
.clearfix:before, .clearfix:after {
  content: " ";
  display: block;
  height: 0;
  overflow: hidden;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  zoom: 1;
}

html {
  font-size: 62.5%;
  height: auto;
  overflow: visible;
}

body {
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  font-size: 1.6rem;
  color: #0e0e0e;
  height: auto;
  overflow: visible;
  font-weight: 400;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
  opacity: 1;
  background-color: #f7f8f8;
}
body.is__fix {
  overflow: hidden;
  height: 100%;
  position: static;
}
body.is_show {
  overflow: hidden;
  height: 100%;
  position: static;
}
body.is_show .main {
  position: relative;
}
body.is_show .main:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.85);
  width: 100%;
  height: 100%;
  z-index: 3;
}
body:after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 0.8s ease;
  transition: opacity 0.8s ease;
}
body.fade:after {
  opacity: 1;
}

html,
body,
body div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
figure,
footer,
header,
menu,
nav,
section,
time,
mark,
audio,
video,
details,
summary {
  font-weight: 400;
}

img {
  vertical-align: bottom;
}

input,
button,
select {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: #000;
}

@supports (-webkit-touch-callout: none) {
  body {
    font-size-adjust: 0.5;
    /* Safariだけ補正 */
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadein {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 1s;
  transition: all 1s;
}
.fadein.jsActive {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media screen and (max-width: 960px) {
  .fadein.spAnimationNone {
    -webkit-transform: none;
            transform: none;
    -webkit-transition: none;
    transition: none;
    opacity: 1;
  }
}
.fadein.initial-visible {
  -webkit-transition: none;
  transition: none;
}

/* Page transition overlay */
.page-transition-overlay {
  position: fixed;
  inset: 0;
  background: #fff;
  pointer-events: all;
  opacity: 1;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  z-index: 9999;
}
.page-transition-overlay.is-hidden {
  opacity: 0;
  pointer-events: none;
}

body.is-transitioning {
  pointer-events: none;
}

@-webkit-keyframes scrollDownBar {
  0% {
    top: 0;
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    top: 18px;
    opacity: 0;
  }
}

@keyframes scrollDownBar {
  0% {
    top: 0;
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    top: 18px;
    opacity: 0;
  }
}
@-webkit-keyframes zoomOut {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes zoomOut {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.shopButton {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  text-decoration: none;
  width: 300px;
  height: 66px;
  background-color: #0e0e0e;
  border-radius: 66px;
  border: 1px solid #fff;
  position: relative;
  padding-bottom: 2px;
}
@media screen and (max-width: 768px) {
  .shopButton {
    height: 61px;
  }
}
.shopButton:after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background: url(../images/icon_new_tab.svg) no-repeat center center/cover;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.shopButton:hover {
  opacity: 0.75;
}
.container {
  padding-left: 30px;
  padding-right: 30px;
  max-width: 1060px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media screen and (max-width: 1060px) {
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 768px) {
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.pcnon {
  display: none;
}
@media screen and (max-width: 768px) {
  .pcnon {
    display: block;
  }
}

.spnon {
  display: block;
}
@media screen and (max-width: 768px) {
  .spnon {
    display: none;
  }
}

.sectionTtl {
  font-size: 3.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .sectionTtl {
    font-size: 2.5rem;
    line-height: 1.6;
  }
}

.sectionSubTtl {
  font-size: 2.4rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 1.8333333333;
}
@media screen and (max-width: 768px) {
  .sectionSubTtl {
    font-size: 1.8rem;
    line-height: 1.6666666667;
  }
}

.footer {
  padding-top: 150px;
  padding-bottom: 30px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .footer {
    padding-top: 88px;
  }
}
.footer:before {
  content: "";
  display: block;
  width: 657.9577px;
  height: 271.4985px;
  background: url(../images/bg_treat_01.svg) no-repeat center center/cover;
  position: absolute;
  top: 105px;
  right: -250px;
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .footer:before {
    width: 191.5px;
    height: 79.0202px;
    top: 30px;
    right: -90px;
    background: url(../images/bg_treat_sp.svg) no-repeat center center/cover;
  }
}
.footer:after {
  content: "";
  display: block;
  width: 657.9577px;
  height: 271.4985px;
  background: url(../images/bg_treat_01.svg) no-repeat center center/cover;
  position: absolute;
  bottom: 142px;
  left: -250px;
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .footer:after {
    width: 191.5px;
    height: 79.0202px;
    bottom: 73px;
    left: -90px;
    background: url(../images/bg_treat_sp.svg) no-repeat center center/cover;
  }
}
.footer__inner {
  position: relative;
  z-index: 2;
}
.footer__top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__logo {
  width: 220px;
}
@media screen and (max-width: 768px) {
  .footer__logo {
    width: 126.6301px;
  }
}
.footer__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 60px;
  margin-bottom: 45px;
}
@media screen and (max-width: 960px) {
  .footer__list {
    display: none;
  }
}
.footer__link {
  color: #0e0e0e;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.125;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: 0.1em;
}
.footer__link:hover {
  text-decoration: underline;
}
.footer__link_type_sub {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 1em;
}
.footer__link_type_sub:before {
  content: "";
  display: block;
  width: 1px;
  height: 5px;
  margin-bottom: 8px;
  background-color: #0e0e0e;
}
@media screen and (max-width: 960px) {
  .footer__sns {
    margin-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .footer__sns .snsList__item {
    width: 29px;
  }
}
.footer__bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 35px;
  margin-top: 148px;
}
@media screen and (max-width: 960px) {
  .footer__bottom {
    margin-top: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .footer__bottom {
    margin-top: 76px;
    gap: 3px;
  }
}
.footer__privacyLink {
  color: inherit;
  text-decoration: none;
  font-size: 1.2rem;
}
.footer__privacyLink:hover {
  text-decoration: underline;
}
.footer__copyrightText {
  font-size: 1.2rem;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 5;
}
.header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 30px 35px 0 30px;
}
@media screen and (max-width: 960px) {
  .header__inner {
    padding: 15px;
  }
}
.header__logo {
  width: 118px;
  position: fixed;
  z-index: 6;
  outline: none;
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 59.38855px;
  }
}
.header__fixContents {
  position: fixed;
  top: 30px;
  right: 35px;
  z-index: 5;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 960px) {
  .header__fixContents {
    top: 15px;
    right: 15px;
  }
}
.header.jsActive .gNav {
  visibility: visible;
  opacity: 1;
  z-index: 4;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  right: 0;
}
@media screen and (max-width: 960px) {
  .header.jsActive .gNav {
    height: 100dvh;
  }
}
.header.jsActive .ham {
  width: 34px;
  height: 34px;
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
  top: 0px;
}
@media screen and (max-width: 960px) {
  .header.jsActive .ham {
    width: 30px;
    height: 16px;
    top: 3px;
  }
}
@media screen and (max-width: 768px) {
  .header.jsActive .ham {
    width: 24.4814px;
    height: 24.4814px;
    top: 2px;
  }
}
.header.jsActive .ham__bar {
  position: absolute;
  background-color: #0e0e0e;
  height: 2px;
  width: 100%;
  -webkit-transition: top 0.3s ease, bottom 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: top 0.3s ease, bottom 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, top 0.3s ease, bottom 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, top 0.3s ease, bottom 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}
.header.jsActive .ham__bar:nth-of-type(1) {
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.header.jsActive .ham__bar:nth-of-type(2) {
  opacity: 0;
  pointer-events: none;
}
.header.jsActive .ham__bar:nth-of-type(3) {
  top: 50%;
  left: 0;
  bottom: auto;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}
.header.jsActive .header__bg {
  opacity: 1;
  visibility: visible;
  z-index: 3;
}
.header.isScrolled .ham__bar {
  background-color: #0e0e0e;
}

.langSelect {
  margin-left: auto;
  width: 121px;
  background-color: #0e0e0e;
  border-radius: 16px;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 960px) {
  .langSelect {
    width: 90px;
  }
}
@media screen and (max-width: 768px) {
  .langSelect {
    width: 94.31485px;
    border-radius: 13px;
  }
  @supports (-webkit-touch-callout: none) {
    .langSelect {
      width: 100.31485px;
    }
  }
}
.langSelect__label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 32px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 400;
  padding-bottom: 2px;
}
@media screen and (max-width: 768px) {
  .langSelect__label {
    font-size: 1rem;
    height: 26px;
    padding: 0 10px;
  }
  @supports (-webkit-touch-callout: none) {
    .langSelect__label {
      padding-bottom: 2px;
    }
  }
}
.langSelect__label:before {
  content: "";
  display: block;
  width: 14px;
  min-width: 14px;
  height: 14px;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_2%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC%202%22%20viewBox%3D%220%200%2014.333%2014.333%22%3E%20%3Cg%20id%3D%22_%E3%83%8F%E3%83%B3%E3%83%90%E3%83%BC%E3%82%AC%E3%83%BC%22%20data-name%3D%22%E3%83%8F%E3%83%B3%E3%83%90%E3%83%BC%E3%82%AC%E3%83%BC%22%3E%20%3Cpath%20d%3D%22M7.167%2C14.333c-.99%2C0-1.921-.187-2.792-.561-.871-.374-1.631-.886-2.28-1.535-.649-.649-1.161-1.409-1.535-2.28-.374-.871-.561-1.801-.561-2.792s.187-1.925.561-2.794c.374-.869.886-1.628%2C1.535-2.277.649-.649%2C1.409-1.161%2C2.28-1.535.871-.374%2C1.801-.561%2C2.792-.561s1.925.187%2C2.794.561c.869.374%2C1.628.886%2C2.277%2C1.535.649.649%2C1.161%2C1.408%2C1.535%2C2.277.374.869.561%2C1.801.561%2C2.794s-.187%2C1.921-.561%2C2.792c-.374.871-.886%2C1.631-1.535%2C2.28-.649.649-1.408%2C1.161-2.277%2C1.535-.869.374-1.801.561-2.794.561ZM7.167%2C13.652c.364-.364.691-.901.981-1.611.289-.71.513-1.516.67-2.419h-3.301c.178.945.407%2C1.773.686%2C2.483.279.71.6%2C1.226.965%2C1.547ZM6.377%2C13.652c-.333-.417-.64-.987-.919-1.71-.279-.723-.484-1.497-.613-2.32H1.128c.478%2C1.133%2C1.186%2C2.056%2C2.125%2C2.768.939.712%2C1.98%2C1.133%2C3.124%2C1.262ZM7.957%2C13.652c1.143-.129%2C2.184-.55%2C3.124-1.262.939-.712%2C1.647-1.635%2C2.125-2.768h-3.716c-.183.834-.414%2C1.613-.693%2C2.336-.279.723-.559%2C1.288-.839%2C1.694ZM.934%2C8.955h3.883c-.049-.328-.08-.647-.092-.958-.012-.31-.019-.601-.019-.873%2C0-.271.006-.555.019-.852.012-.297.043-.595.092-.895H.934c-.091.275-.158.568-.202.881-.044.312-.066.615-.066.908s.022.595.066.908c.044.312.111.606.202.881ZM5.505%2C8.955h3.324c.049-.342.08-.656.092-.942.012-.286.019-.568.019-.847s-.006-.565-.019-.857c-.012-.293-.043-.603-.092-.931h-3.324c-.049.328-.08.638-.092.931-.012.293-.019.578-.019.857%2C0%2C.279.006.565.019.857.012.293.043.603.092.931ZM9.516%2C8.955h3.883c.091-.275.158-.568.202-.881.044-.313.066-.615.066-.908s-.022-.599-.066-.918c-.044-.319-.111-.61-.202-.87h-3.883c.049.328.08.647.092.958.012.31.019.601.019.873s-.006.555-.019.852c-.012.297-.043.595-.092.895ZM9.489%2C4.711h3.716c-.488-1.155-1.189-2.078-2.101-2.768-.912-.691-1.962-1.117-3.148-1.278.333.47.634%2C1.059.903%2C1.766.269.707.478%2C1.468.629%2C2.28ZM5.516%2C4.711h3.301c-.178-.935-.415-1.77-.71-2.507-.295-.737-.608-1.244-.941-1.523-.332.279-.646.787-.941%2C1.523-.295.737-.532%2C1.572-.71%2C2.507ZM1.128%2C4.711h3.716c.151-.813.36-1.573.629-2.28.269-.707.57-1.296.903-1.766-1.197.161-2.248.59-3.155%2C1.286-.907.696-1.605%2C1.616-2.093%2C2.76Z%22%20fill%3D%22%23fff%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center center/cover;
  margin-right: 5px;
  position: relative;
  top: 1px;
}
@media screen and (max-width: 960px) {
  .langSelect__label:before {
    width: 11.55425px;
    height: 11.55425px;
    margin-right: 3px;
    min-width: 11.55425px;
  }
}
.langSelect__list {
  padding: 0 15px 10px 15px;
  display: none;
}
@media screen and (max-width: 960px) {
  .langSelect__list {
    padding: 0 10px 5px 10px;
  }
}
.langSelect__item {
  line-height: 2.5;
}
.langSelect__link {
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.langSelect__link::before {
  content: "・";
}
.langSelect__link:hover {
  text-decoration: underline;
}

.gNav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  background-color: #fff;
  z-index: 4;
  visibility: hidden;
  opacity: 0;
  z-index: -2;
  right: -100vw;
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
  -webkit-transition: opacity 0.15s, -webkit-transform 0.5s;
  transition: opacity 0.15s, -webkit-transform 0.5s;
  transition: opacity 0.15s, transform 0.5s;
  transition: opacity 0.15s, transform 0.5s, -webkit-transform 0.5s;
}
@media screen and (max-width: 960px) {
  .gNav__ham {
    height: 100%;
  }
}
.gNav__hamInner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 960px) {
  .gNav__hamInner {
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%;
  }
}
.gNav__hamFig {
  width: 61.30136986vw;
}
@media screen and (max-width: 960px) {
  .gNav__hamFig {
    width: 100%;
    left: 0;
    bottom: 0;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
    height: 42dvh;
  }
}
.gNav__hamContents {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 315px;
  margin: 0 auto;
  padding-top: 105px;
  padding-bottom: 105px;
}
@media screen and (max-width: 960px) {
  .gNav__hamContents {
    width: 100%;
    z-index: 5;
    background-color: #fff;
    max-width: 100%;
    padding-left: 45px;
    padding-right: 45px;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    padding-bottom: 52px;
  }
}
.gNav__hamImg {
  width: 100%;
  height: 100dvh;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 960px) {
  .gNav__hamImg {
    height: 100%;
  }
}
.gNav__item {
  border-bottom: 1px solid #efefef;
}
@media screen and (max-width: 768px) {
  .gNav__item:last-of-type {
    border-bottom: none;
  }
}
.gNav__link {
  color: inherit;
  text-decoration: none;
  font-size: 1.6rem;
  display: block;
  padding: 15px 0 17px;
}
@media screen and (max-width: 768px) {
  .gNav__link {
    font-size: 1.5rem;
    padding: 11px 0 12px;
  }
}
.gNav__link:hover {
  text-decoration: underline;
}
.gNav__link_type_sub {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.gNav__link_type_sub:before {
  content: "-";
  display: block;
  margin-right: 0.5em;
  text-indent: 1em;
}
.gNav__sns.snsList {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 29px;
}
@media screen and (max-width: 768px) {
  .gNav__sns.snsList {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.gNavPcList {
  position: absolute;
  right: 27px;
  top: 84px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 960px) {
  .gNavPcList {
    display: none;
  }
}
.gNavPcList__item {
  width: 34px;
}
.gNavPcList__link {
  color: #fff;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.125;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: 0.1em;
}
.gNavPcList__link:hover {
  text-decoration: underline;
}
.gNavPcList__link_type_sub {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 1em;
}
.gNavPcList__link_type_sub:before {
  content: "";
  display: block;
  width: 1px;
  height: 5px;
  background-color: #fff;
  margin-bottom: 8px;
}

.snsList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .snsList {
    gap: 14px;
  }
}
.snsList__item {
  width: 24px;
}
@media screen and (max-width: 768px) {
  .snsList__item {
    width: 28px;
  }
}
.snsList__link:hover {
  opacity: 0.75;
}
.ham {
  width: 41px;
  height: 22px;
  margin-left: 30px;
  cursor: pointer;
  position: relative;
  z-index: 6;
  -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;
  top: 5px;
}
@media screen and (max-width: 960px) {
  .ham {
    width: 30px;
    height: 16px;
    margin-left: 15px;
    top: 3px;
  }
}
@media screen and (max-width: 768px) {
  .ham {
    width: 30px;
    height: 18px;
    margin-left: 23px;
    top: 2px;
  }
}
.ham__inner {
  width: 100%;
  height: 100%;
  position: relative;
}
.ham__bar {
  display: block;
  background-color: #fff;
  height: 2px;
  right: 0;
  -webkit-transition: top 0.3s ease, bottom 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: top 0.3s ease, bottom 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, top 0.3s ease, bottom 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, top 0.3s ease, bottom 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}
.ham__bar:nth-of-type(1) {
  position: absolute;
  top: 0;
  width: 100%;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.ham__bar:nth-of-type(2) {
  position: absolute;
  top: calc(50% - 1px);
  width: 29px;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .ham__bar:nth-of-type(2) {
    width: 21px;
  }
}
.ham__bar:nth-of-type(3) {
  position: absolute;
  bottom: 0;
  width: 15px;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
@media screen and (max-width: 768px) {
  .ham__bar:nth-of-type(3) {
    width: 11px;
  }
}

.main {
  display: block;
}

.top {
  overflow: hidden;
}

.topMv {
  margin-bottom: 176px;
}
@media screen and (max-width: 768px) {
  .topMv {
    margin-bottom: 64px;
  }
}
.topMv__inner {
  position: relative;
}
.topMv__banner {
  position: absolute;
  z-index: 2;
  width: 290px;
  background-color: #fff;
  left: 40px;
  bottom: 35px;
}
@media screen and (max-width: 768px) {
  .topMv__banner {
    width: 190px;
    bottom: 18px;
    left: 15px;
  }
}
.topMv__bannerLink {
  display: block;
}
@media screen and (max-width: 768px) {
  .topMv__bannerLink {
    padding: 4px;
  }
}
.topMv__bannerLink:hover .topMv__bannerImg {
  opacity: 0.75;
}
.topMv__bannerClose {
  position: absolute;
  z-index: 2;
  right: 0;
  top: 0;
  background-color: #0e0e0e;
  border-radius: 26px;
  width: 26px;
  height: 26px;
  top: -12px;
  right: -12px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .topMv__bannerClose {
    width: 25px;
    height: 25px;
    top: -10px;
    right: -10px;
  }
}
.topMv__bannerCloseInner {
  position: relative;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.topMv__bannerCloseInner:before {
  content: "";
  display: block;
  width: 12px;
  height: 1px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .topMv__bannerCloseInner:before {
    width: 11px;
  }
}
.topMv__bannerCloseInner:after {
  content: "";
  display: block;
  width: 12px;
  height: 1px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .topMv__bannerCloseInner:after {
    width: 11px;
  }
}
.topMv__button {
  position: fixed;
  z-index: 2;
  width: 105px;
  height: 105px;
  background-color: #5e0f14;
  border-radius: 105px;
  right: 34px;
  bottom: 34px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  text-decoration: none;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .topMv__button {
    width: 64.0277px;
    height: 64.0277px;
    right: 10px;
    bottom: 15px;
  }
}
.topMv__button:hover {
  opacity: 0.75;
}
.topMv__buttonIcon {
  height: 14.5px;
  display: block;
  width: auto;
  margin-bottom: 7px;
}
@media screen and (max-width: 768px) {
  .topMv__buttonIcon {
    width: 7.5207px;
    height: 8.8419px;
    margin-bottom: 5px;
  }
}
.topMv__buttonText {
  font-size: 1.4rem;
  color: #fff;
  text-align: center;
  text-decoration: none !important;
  line-height: 1.4285714286;
}
@media screen and (max-width: 768px) {
  .topMv__buttonText {
    font-size: 0.85rem;
    line-height: 1.4117647059;
  }
}
.topMv__scrollDown {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 50px;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .topMv__scrollDown {
    display: none;
  }
}
.topMv__scrollDownText {
  color: #fff;
  font-size: 1rem;
  font-family: "Figtree", sans-serif;
}
.topMv__scrollDownBar {
  width: 1.5px;
  height: 28px;
  background-color: #fff;
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.topMv__scrollDownBar:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 10px;
  z-index: 2;
  background-color: #9fa0a0;
  -webkit-animation: scrollDownBar 1.2s infinite ease-out;
          animation: scrollDownBar 1.2s infinite ease-out;
}
.topMv__bgPicture {
  width: 100%;
  height: 100%;
  display: block;
}
.topMv__bgImg {
  width: 100%;
  height: 100dvh;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: -webkit-transform 12s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: -webkit-transform 12s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 12s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 12s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 12s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.topMv__bgImg.isAnimating {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 12s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: -webkit-transform 12s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 12s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 12s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 12s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

@media screen and (min-width: 961px) {
  .topSaltKiyoProducts__listSwiper.swiper {
    overflow: visible !important;
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
    position: relative !important;
  }

  .topSaltKiyoProducts__listSwiper.swiper .topSaltKiyoProducts__list.swiper-wrapper {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: row !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
    gap: 80px !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    -webkit-transform: none !important;
            transform: none !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative !important;
    z-index: auto !important;
    -webkit-transition: none !important;
    transition: none !important;
    -webkit-box-sizing: border-box !important;
            box-sizing: border-box !important;
    -webkit-flex-wrap: nowrap !important;
        -ms-flex-wrap: nowrap !important;
            flex-wrap: nowrap !important;
    -webkit-box-align: stretch !important;
    -webkit-align-items: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
    -webkit-box-pack: start !important;
    -webkit-justify-content: flex-start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }

  .topSaltKiyoProducts__listSwiper.swiper .topSaltKiyoProducts__item.swiper-slide {
    width: calc((100% - 160px) / 3) !important;
    max-width: none !important;
    min-width: 0 !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
    -webkit-transform: none !important;
            transform: none !important;
    -webkit-transition: none !important;
    transition: none !important;
    opacity: 1 !important;
    position: relative !important;
    -webkit-flex-shrink: 0 !important;
        -ms-flex-negative: 0 !important;
            flex-shrink: 0 !important;
    -webkit-box-flex: 0 !important;
    -webkit-flex-grow: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
    -webkit-box-sizing: border-box !important;
            box-sizing: border-box !important;
  }
}
@media screen and (max-width: 768px) {
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    .topMiyajimaSalt {
      margin-bottom: -6px;
    }
  }
}
.topMiyajimaSalt__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0;
  position: relative;
}
@media screen and (max-width: 960px) {
  .topMiyajimaSalt__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.topMiyajimaSalt__inner:before {
  content: "";
  display: block;
  width: 657.9577px;
  height: 271.4985px;
  background: url(../images/bg_treat_01.svg) no-repeat center center/cover;
  position: absolute;
  top: -120px;
  right: -250px;
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .topMiyajimaSalt__inner:before {
    width: 278.1353px;
    height: 114.76925px;
    background: url(../images/bg_treat_sp.svg) no-repeat center center/cover;
    top: -32px;
    right: -106px;
  }
}
.topMiyajimaSalt__inner:after {
  content: "";
  display: block;
  width: 657.9577px;
  height: 271.4985px;
  background: url(../images/bg_treat_01.svg) no-repeat center center/cover;
  position: absolute;
  bottom: -35px;
  left: -250px;
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .topMiyajimaSalt__inner:after {
    width: 278.1353px;
    height: 114.76925px;
    background: url(../images/bg_treat_sp.svg) no-repeat center center/cover;
    bottom: 85vw;
    left: -110px;
  }
}
.topMiyajimaSalt__text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 960px) {
  .topMiyajimaSalt__text {
    width: 100%;
  }
}
.topMiyajimaSalt__ttl {
  margin-bottom: 78px;
}
@media screen and (max-width: 768px) {
  .topMiyajimaSalt__ttl {
    margin-bottom: 27px;
  }
}
.topMiyajimaSalt__subTtl {
  margin-bottom: 33px;
}
@media screen and (max-width: 768px) {
  .topMiyajimaSalt__subTtl {
    margin-bottom: 18px;
  }
}
.topMiyajimaSalt__descText {
  font-size: 1.6rem;
  line-height: 1.875;
  margin-bottom: 1.85em;
}
@media screen and (max-width: 768px) {
  .topMiyajimaSalt__descText {
    font-size: 1.6rem;
    line-height: 1.5625;
    margin-bottom: 1.5em;
    letter-spacing: -0.01em;
  }
}
.topMiyajimaSalt__descText:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 960px) {
  .topMiyajimaSalt__descText .pc {
    display: none;
  }
}
.topMiyajimaSalt__pictures {
  width: 574px;
  margin-left: -145px;
  margin-right: -145px;
  position: relative;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  -webkit-align-self: flex-start;
      -ms-flex-item-align: start;
          align-self: flex-start;
  margin-top: 112px;
  z-index: 2;
}
@media screen and (max-width: 1300px) {
  .topMiyajimaSalt__pictures {
    width: 39.3150684932vw;
    margin-right: 0;
  }
}
@media screen and (max-width: 960px) {
  .topMiyajimaSalt__pictures {
    width: calc(100% + 30px);
    margin-left: 0;
    margin-right: -30px;
  }
}
@media screen and (max-width: 768px) {
  .topMiyajimaSalt__pictures {
    margin-top: 40px;
  }
}
.topMiyajimaSalt__pictureItem {
  position: relative;
}
.topMiyajimaSalt__pictureItem.fadein {
  -webkit-transition: opacity 6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 6s cubic-bezier(0.22, 1, 0.36, 1);
}
.topMiyajimaSalt__pictureItem_type_01 {
  width: 429px;
  margin-right: 69px;
  margin-left: auto;
  top: 0;
  z-index: 1;
}
@media screen and (max-width: 1300px) {
  .topMiyajimaSalt__pictureItem_type_01 {
    width: 29.3835616438vw;
    margin-right: 4.7260273973vw;
  }
}
@media screen and (max-width: 960px) {
  .topMiyajimaSalt__pictureItem_type_01 {
    width: 57.80596vw;
    margin-right: 0;
  }
}
.topMiyajimaSalt__pictureImg {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  will-change: transform;
  -webkit-transition: -webkit-transform 0.1s ease-out;
  transition: -webkit-transform 0.1s ease-out;
  transition: transform 0.1s ease-out;
  transition: transform 0.1s ease-out, -webkit-transform 0.1s ease-out;
}
.topMiyajimaSalt__pictureItem_type_02 {
  width: 228px;
  left: 0;
  margin-top: 77px;
  z-index: 2;
}
@media screen and (max-width: 1300px) {
  .topMiyajimaSalt__pictureItem_type_02 {
    width: 15.6164383562vw;
    margin-top: 5.2739726027vw;
  }
}
@media screen and (max-width: 960px) {
  .topMiyajimaSalt__pictureItem_type_02 {
    width: 27.2402666667vw;
    margin-top: -3.0666666667vw;
  }
}
.topMiyajimaSalt__pictureItem_type_03 {
  width: 274px;
  margin-left: auto;
  top: -160px;
  z-index: 3;
  margin-bottom: -160px;
}
@media screen and (max-width: 1300px) {
  .topMiyajimaSalt__pictureItem_type_03 {
    width: 18.7671232877vw;
    margin-bottom: -10.9589041096vw;
  }
}
@media screen and (max-width: 960px) {
  .topMiyajimaSalt__pictureItem_type_03 {
    width: 40.5427733333vw;
    top: -18.6666666667vw;
    margin-bottom: -21.3333333333vw;
    margin-right: 30px;
  }
}

.topMiyajimaSaltTop {
  margin-bottom: 138px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 960px) {
  .topMiyajimaSaltTop {
    margin-bottom: 0;
  }
}

.topMiyajimaSaltBottom {
  background: url(../images/bg_01.jpg) no-repeat center center/cover;
  padding-top: 135px;
  padding-bottom: 174px;
}
@media screen and (max-width: 960px) {
  .topMiyajimaSaltBottom {
    background-image: url(../images/bg_01_sp.jpg);
  }
}
@media screen and (max-width: 768px) {
  .topMiyajimaSaltBottom {
    margin-top: -110px;
    padding-top: 88px;
    padding-bottom: 77px;
  }
}
.topMiyajimaSaltBottom__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 960px) {
  .topMiyajimaSaltBottom__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.topMiyajimaSaltBottom__text {
  width: 450px;
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
  padding-top: 90px;
}
@media screen and (max-width: 960px) {
  .topMiyajimaSaltBottom__text {
    width: 100%;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
}
.topMiyajimaSaltBottom__ttl {
  color: #fff;
  margin-bottom: 33px;
}
@media screen and (max-width: 768px) {
  .topMiyajimaSaltBottom__ttl {
    margin-bottom: 28px;
  }
}
.topMiyajimaSaltBottom__descText {
  color: #fff;
  line-height: 1.875;
  font-size: 1.6rem;
  margin-bottom: 1.85em;
}
@media screen and (max-width: 960px) {
  .topMiyajimaSaltBottom__descText .pc {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .topMiyajimaSaltBottom__descText {
    font-size: 1.6rem;
    line-height: 1.5625;
    margin-bottom: 1.5em;
  }
}
.topMiyajimaSaltBottom__descText:last-of-type {
  margin-bottom: 0;
}
.topMiyajimaSaltBottom__pictures {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
  margin-left: -150px;
}
@media screen and (max-width: 1300px) {
  .topMiyajimaSaltBottom__pictures {
    margin-left: -10.2739726027vw;
    margin-left: 0;
  }
}
@media screen and (max-width: 960px) {
  .topMiyajimaSaltBottom__pictures {
    width: calc(100% + 30px);
    margin-top: 140px;
    margin-left: -30px;
  }
}
.topMiyajimaSaltBottom__pictureItem.fadein {
  -webkit-transition: opacity 6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 6s cubic-bezier(0.22, 1, 0.36, 1);
}
.topMiyajimaSaltBottom__pictureItem_type_01 {
  width: 430px;
  margin-left: 70px;
}
@media screen and (max-width: 1300px) {
  .topMiyajimaSaltBottom__pictureItem_type_01 {
    width: 29.4520547945vw;
    margin-left: 4.7945205479vw;
  }
}
@media screen and (max-width: 960px) {
  .topMiyajimaSaltBottom__pictureItem_type_01 {
    width: 58.13196vw;
    margin-left: 0;
  }
}
.topMiyajimaSaltBottom__pictureImg {
  border-radius: 4px;
  will-change: transform;
  -webkit-transition: -webkit-transform 0.1s ease-out;
  transition: -webkit-transform 0.1s ease-out;
  transition: transform 0.1s ease-out;
  transition: transform 0.1s ease-out, -webkit-transform 0.1s ease-out;
}
.topMiyajimaSaltBottom__pictureItem_type_02 {
  width: 228px;
  margin-top: 80px;
  margin-left: auto;
  margin-right: -75px;
}
@media screen and (max-width: 1300px) {
  .topMiyajimaSaltBottom__pictureItem_type_02 {
    width: 15.6164383562vw;
    margin-top: 5.4794520548vw;
    margin-right: -5.1369863014vw;
  }
}
@media screen and (max-width: 960px) {
  .topMiyajimaSaltBottom__pictureItem_type_02 {
    width: 28.49464vw;
    margin-top: -14.6666666667vw;
    margin-right: -4px;
  }
}
.topMiyajimaSaltBottom__pictureItem_type_03 {
  width: 274px;
  margin-top: -160px;
}
@media screen and (max-width: 1300px) {
  .topMiyajimaSaltBottom__pictureItem_type_03 {
    width: 18.7671232877vw;
    margin-top: -10.9589041096vw;
  }
}
@media screen and (max-width: 960px) {
  .topMiyajimaSaltBottom__pictureItem_type_03 {
    width: 40.3197066667vw;
    margin-top: -12vw;
    margin-right: 0px;
    margin-left: 43px;
  }
}

.topSaltAji {
  margin: 15px;
  background: url(../images/bg_02.jpg) no-repeat center center/cover;
  padding-top: 146px;
  padding-bottom: 175px;
  border-radius: 4px;
}
@media screen and (max-width: 960px) {
  .topSaltAji {
    background-image: url(../images/bg_02_sp.jpg);
  }
}
@media screen and (max-width: 768px) {
  .topSaltAji {
    margin: 10px;
    padding-top: 32px;
    padding-bottom: 41px;
  }
}
@media screen and (max-width: 768px) {
  .topSaltAji__inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.topSaltAji .topSaltAjiTop {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 134px;
}
@media screen and (max-width: 960px) {
  .topSaltAji .topSaltAjiTop {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .topSaltAji .topSaltAjiTop {
    margin-bottom: 107px;
  }
}
.topSaltAji__text {
  width: 480px;
}
@media screen and (max-width: 960px) {
  .topSaltAji__text {
    width: 100%;
  }
}
.topSaltAji__ttl {
  color: #fff;
  margin-bottom: 84px;
}
@media screen and (max-width: 768px) {
  .topSaltAji__ttl {
    margin-bottom: 15px;
  }
}
.topSaltAji__subTtl {
  color: #fff;
  line-height: 1.8333333333;
  font-weight: 300;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .topSaltAji__subTtl {
    margin-bottom: 18px;
  }
}
.topSaltAji__descText {
  color: #fff;
  line-height: 1.875;
  font-size: 1.6rem;
  margin-bottom: 1.85em;
}
@media screen and (max-width: 960px) {
  .topSaltAji__descText .pc {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .topSaltAji__descText {
    font-size: 1.6rem;
    line-height: 1.5625;
    margin-bottom: 1.5em;
  }
}
.topSaltAji__descText:last-of-type {
  margin-bottom: 0;
}
.topSaltAji__fig {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 30px;
  max-width: 386px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
  padding-top: 70px;
}
@media screen and (max-width: 1060px) {
  .topSaltAji__fig {
    max-width: 26.4383561644vw;
    padding-top: 4.7945205479vw;
  }
}
@media screen and (max-width: 960px) {
  .topSaltAji__fig {
    max-width: 100%;
    width: 100%;
    padding-left: 45px;
    padding-right: 45px;
    padding-top: 9.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .topSaltAji__fig {
    padding-top: 9.0666666667vw;
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width: 960px) {
  .topSaltAji__figMain {
    width: 100%;
  }
}
.topSaltAji__figMainImg {
  border-radius: 4px;
}
@media screen and (max-width: 960px) {
  .topSaltAji__figMainImg {
    width: 100%;
  }
}
.topSaltAji__figSub {
  position: absolute;
  bottom: -90px;
  left: -60px;
  -webkit-box-shadow: 0 0 6px rgba(51, 47, 46, 0.2);
          box-shadow: 0 0 6px rgba(51, 47, 46, 0.2);
  border-radius: 182px;
}
@media screen and (max-width: 1060px) {
  .topSaltAji__figSub {
    bottom: -6.1643835616vw;
    left: -4.1095890411vw;
  }
}
@media screen and (max-width: 960px) {
  .topSaltAji__figSub {
    bottom: -4vw;
    left: auto;
    right: 0vw;
  }
}
@media screen and (max-width: 768px) {
  .topSaltAji__figSub {
    bottom: -18vw;
    left: auto;
    right: 0.4vw;
  }
}
.topSaltAji__figSubImg {
  width: 182px;
}
@media screen and (max-width: 1060px) {
  .topSaltAji__figSubImg {
    width: 12.4657534247vw;
  }
}
@media screen and (max-width: 960px) {
  .topSaltAji__figSubImg {
    width: 20vw;
  }
}
@media screen and (max-width: 768px) {
  .topSaltAji__figSubImg {
    width: 34.6666666667vw;
  }
}

.topSaltAjiDetails__list {
  padding: 0 50px;
  border: 1px solid #fff;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .topSaltAjiDetails__list {
    border: none;
    padding: 0;
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .topSaltAjiDetails__list.swiper {
    width: 100%;
  }
}
.topSaltAjiDetails__listInner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 960px) {
  .topSaltAjiDetails__listInner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    height: 100%;
  }
  .topSaltAjiDetails__listInner.swiper-wrapper {
    width: 100% !important;
  }
}
.topSaltAjiDetails__item {
  width: 100%;
}
@media screen and (max-width: 960px) {
  .topSaltAjiDetails__item {
    display: block;
    border: 1px solid #fff;
    padding: 30px;
    width: 100% !important;
    max-width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    height: auto;
  }
  .topSaltAjiDetails__item.swiper-slide {
    width: 100% !important;
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .topSaltAjiDetails__item {
    padding: 15px;
  }
}
.topSaltAjiDetails__item:first-of-type .topSaltAjiDetails__itemInner {
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 960px) {
  .topSaltAjiDetails__item:first-of-type .topSaltAjiDetails__itemInner {
    border-bottom: none;
  }
}
.topSaltAjiDetails__item:nth-of-type(1) .topSaltAjiDetails__itemPics {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}
@media screen and (max-width: 960px) {
  .topSaltAjiDetails__item:nth-of-type(1) .topSaltAjiDetails__itemPics {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
}
.topSaltAjiDetails__item:nth-of-type(1) .topSaltAjiDetails__itemInfo {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
}
@media screen and (max-width: 960px) {
  .topSaltAjiDetails__item:nth-of-type(1) .topSaltAjiDetails__itemInfo {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
}
.topSaltAjiDetails__item:nth-of-type(2) .topSaltAjiDetails__itemPics {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
}
@media screen and (max-width: 960px) {
  .topSaltAjiDetails__item:nth-of-type(2) .topSaltAjiDetails__itemPics {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
}
.topSaltAjiDetails__item:nth-of-type(2) .topSaltAjiDetails__itemInfo {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}
@media screen and (max-width: 960px) {
  .topSaltAjiDetails__item:nth-of-type(2) .topSaltAjiDetails__itemInfo {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
}
.topSaltAjiDetails__itemInner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 50px 0 47px;
  gap: 50px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 960px) {
  .topSaltAjiDetails__itemInner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
    gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  .topSaltAjiDetails__itemInner {
    gap: 12px;
  }
}
.topSaltAjiDetails__itemPics {
  width: 398px;
}
@media screen and (max-width: 960px) {
  .topSaltAjiDetails__itemPics {
    width: 100%;
  }
}
.topSaltAjiDetails__itemPicsImg {
  border-radius: 4px;
}
@media screen and (max-width: 768px) {
  .topSaltAjiDetails__itemPicsImg {
    width: 100%;
    height: auto;
    aspect-ratio: 471.0618/333.9513;
  }
}
.topSaltAjiDetails__itemPicsPagination {
  position: absolute;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  bottom: 10px;
  gap: 11px;
  right: 10px;
  padding-right: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .topSaltAjiDetails__itemPicsPagination {
    gap: 6px;
    bottom: 10px !important;
    padding-right: 7px;
  }
}
.topSaltAjiDetails__itemPicsPagination.swiper-pagination {
  position: absolute;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  bottom: 10px;
  gap: 11px;
  right: 10px;
  padding-right: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.topSaltAjiDetails__itemPicsPagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background-color: #a8a7a7;
  border-radius: 0;
  opacity: 1;
  margin: 0 0 0 0 !important;
}
.topSaltAjiDetails__itemPicsPagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .topSaltAjiDetails__itemPicsPagination .swiper-pagination-bullet {
    width: 5.5px;
    height: 5.5px;
  }
}
.topSaltAjiDetails__itemInfo {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 960px) {
  .topSaltAjiDetails__itemInfo {
    width: 100%;
  }
}
.topSaltAjiDetails__itemUnit {
  font-size: 1.4rem;
  padding-left: 13px;
  border-left: 1px solid #fff;
  color: #fff;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .topSaltAjiDetails__itemUnit {
    font-size: 1rem;
    padding-left: 9px;
    margin-bottom: 8px;
  }
}
.topSaltAjiDetails__itemTtl {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 13px;
}
@media screen and (max-width: 768px) {
  .topSaltAjiDetails__itemTtl {
    font-size: 1.8rem;
    margin-bottom: 10px;
    line-height: 1.6666666667;
    letter-spacing: 0.1em;
  }
}
.topSaltAjiDetails__itemDesc {
  font-size: 1.6rem;
  color: #fff;
  line-height: 1.875;
  margin-bottom: 19px;
}
@media screen and (max-width: 768px) {
  .topSaltAjiDetails__itemDesc {
    font-size: 1.6rem;
    line-height: 1.5;
    margin-bottom: 11px;
  }
}
.spSwiper__buttonPrev, .spSwiper__buttonNext, .spSwiper__pagination {
  display: none;
}
@media screen and (max-width: 960px) {
  .spSwiper__buttonPrev, .spSwiper__buttonNext {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .spSwiper__pagination {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.spSwiper__button {
  display: none;
  margin-top: 30px;
}
@media screen and (max-width: 960px) {
  .spSwiper__button {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 15px;
  }
}
.spSwiper__buttonPrev, .spSwiper__buttonNext {
  color: #fff;
  width: 40px;
  height: 40px;
  margin-top: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
  position: absolute;
  z-index: 10;
}
.spSwiper__buttonPrev.swiper-button-prev, .spSwiper__buttonPrev.swiper-button-next, .spSwiper__buttonNext.swiper-button-prev, .spSwiper__buttonNext.swiper-button-next {
  color: #fff;
  width: 40px;
  height: 40px;
  margin-top: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.spSwiper__buttonPrev::after, .spSwiper__buttonNext::after {
  font-size: 20px;
}
.spSwiper__buttonPrev {
  width: 38px;
  height: 38px;
  background-color: #0e0e0e;
  border-radius: 38px;
  border: 1px solid #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  position: relative;
  top: auto;
  -webkit-transform: none;
          transform: none;
  margin-top: 0;
}
.spSwiper__buttonPrev:after {
  content: "";
  display: block;
  width: 7.9882px;
  height: 13.62415px;
  height: 10px;
  background: url(../images/icon_arrow_swiper.svg) no-repeat center center/cover;
}
.spSwiper__buttonPrev.swiper-button-prev {
  left: 10px;
}
.spSwiper__buttonNext {
  width: 38px;
  height: 38px;
  background-color: #0e0e0e;
  border-radius: 38px;
  border: 1px solid #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  position: relative;
  top: auto;
  -webkit-transform: none;
          transform: none;
  margin-top: 0;
}
.spSwiper__buttonNext:after {
  content: "";
  display: block;
  width: 7.9882px;
  height: 13.62415px;
  height: 10px;
  background: url(../images/icon_arrow_swiper.svg) no-repeat center center/cover;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.spSwiper__buttonNext.swiper-button-next {
  right: 10px;
}
.spSwiper__pagination {
  position: absolute;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  bottom: 10px;
  gap: 11px;
  padding: 0 10px;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .spSwiper__pagination {
    gap: 6px;
  }
}
.spSwiper__pagination.swiper-pagination {
  position: absolute;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  bottom: 10px;
  gap: 11px;
  padding: 0 10px;
}
@media screen and (max-width: 768px) {
  .spSwiper__pagination.swiper-pagination {
    gap: 6px !important;
  }
}
.spSwiper__pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background-color: #a8a7a7;
  border-radius: 9px;
  opacity: 1;
  margin: 0 0 0 0 !important;
}
.spSwiper__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .spSwiper__pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
  }
}
@media screen and (max-width: 960px) {
  .spSwiper__pagination {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    margin-top: 30px;
    position: static;
  }
  .spSwiper__pagination .swiper-pagination-bullet {
    background-color: #bbbcbc;
    opacity: 1;
    margin: 0 !important;
  }
  .spSwiper__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1;
    background-color: #fff;
  }
}
@media screen and (max-width: 768px) {
  .spSwiper__pagination {
    margin-top: 15px;
  }
}

.topGallery {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.topGallery__item {
  width: 25%;
}
.topGallery__img {
  width: 100%;
  aspect-ratio: 730/600;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 960px) {
  .topGallery_type_01 .topGallery__item {
    width: 42.1721733333vw;
  }
}

.topSaltKiyo {
  margin: 15px;
  background: url(../images/bg_03.jpg) no-repeat center center/cover;
  padding-top: 164px;
  padding-bottom: 180px;
  border-radius: 4px;
}
@media screen and (max-width: 960px) {
  .topSaltKiyo {
    background-image: url(../images/bg_03_sp.jpg);
  }
}
@media screen and (max-width: 768px) {
  .topSaltKiyo {
    margin: 10px;
    padding-top: 32px;
    padding-bottom: 41px;
  }
}
@media screen and (max-width: 768px) {
  .topSaltKiyo__inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.topSaltKiyo .topSaltKiyoTop {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 138px;
}
@media screen and (max-width: 960px) {
  .topSaltKiyo .topSaltKiyoTop {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .topSaltKiyo .topSaltKiyoTop {
    margin-bottom: 107px;
  }
}
.topSaltKiyo__text {
  width: 450px;
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
}
@media screen and (max-width: 960px) {
  .topSaltKiyo__text {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
  }
}
.topSaltKiyo__ttl {
  color: #fff;
  margin-bottom: 82px;
}
@media screen and (max-width: 768px) {
  .topSaltKiyo__ttl {
    margin-bottom: 15px;
  }
}
.topSaltKiyo__subTtl {
  color: #fff;
  line-height: 1.8333333333;
  font-weight: 300;
  margin-bottom: 33px;
}
@media screen and (max-width: 768px) {
  .topSaltKiyo__subTtl {
    margin-bottom: 18px;
  }
}
.topSaltKiyo__desc {
  font-size: 1.6rem;
  color: #fff;
  line-height: 1.875;
}
.topSaltKiyo__desc:last-of-type {
  margin-bottom: 0;
}
.topSaltKiyo__descText {
  font-size: 1.6rem;
  color: #fff;
  line-height: 1.875;
  margin-bottom: 1.85em;
}
@media screen and (max-width: 768px) {
  .topSaltKiyo__descText {
    font-size: 1.6rem;
    line-height: 1.5625;
    margin-bottom: 1.5em;
  }
}
@media screen and (max-width: 960px) {
  .topSaltKiyo__descText .pc {
    display: none;
  }
}
.topSaltKiyo__descText:last-of-type {
  margin-bottom: 0;
}
.topSaltKiyo__fig {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
  position: relative;
  padding-top: 50px;
}
@media screen and (max-width: 960px) {
  .topSaltKiyo__fig {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
    padding-left: 45px;
    padding-right: 45px;
    padding-top: 9.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .topSaltKiyo__fig {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.topSaltKiyo__figMain {
  width: 386px;
  padding-right: 30px;
}
@media screen and (max-width: 1060px) {
  .topSaltKiyo__figMain {
    width: 26.4383561644vw;
    padding-right: 2.0547945205vw;
  }
}
@media screen and (max-width: 960px) {
  .topSaltKiyo__figMain {
    width: 100%;
    padding-right: 0;
  }
}
.topSaltKiyo__figMainImg {
  border-radius: 4px;
}
.topSaltKiyo__figSub {
  position: absolute;
  bottom: -90px;
  right: -60px;
  -webkit-box-shadow: 0 0 6px rgba(51, 47, 46, 0.2);
          box-shadow: 0 0 6px rgba(51, 47, 46, 0.2);
  border-radius: 182px;
}
@media screen and (max-width: 1060px) {
  .topSaltKiyo__figSub {
    bottom: -6.1643835616vw;
    right: -4.1095890411vw;
  }
}
@media screen and (max-width: 960px) {
  .topSaltKiyo__figSub {
    bottom: -4vw;
    right: auto;
    left: 0vw;
  }
}
@media screen and (max-width: 768px) {
  .topSaltKiyo__figSub {
    bottom: -17vw;
    right: auto;
    left: 0.4vw;
  }
}
.topSaltKiyo__figSubImg {
  width: 182px;
}
@media screen and (max-width: 1060px) {
  .topSaltKiyo__figSubImg {
    width: 12.4657534247vw;
  }
}
@media screen and (max-width: 960px) {
  .topSaltKiyo__figSubImg {
    width: 20vw;
  }
}
@media screen and (max-width: 768px) {
  .topSaltKiyo__figSubImg {
    width: 34.6666666667vw;
  }
}
.topSaltKiyo__onlineShop {
  margin: 50px auto 0 auto;
}
@media screen and (max-width: 960px) {
  .topSaltKiyo__onlineShop {
    width: 100%;
    margin-top: 39px;
  }
}
.topSaltKiyoProducts__listSwiper {
  position: relative;
  overflow: visible;
}
@media screen and (min-width: 961px) {
  .topSaltKiyoProducts__listSwiper.swiper {
    overflow: visible !important;
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
  }
}
@media screen and (max-width: 960px) {
  .topSaltKiyoProducts__listSwiper {
    overflow: hidden;
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .topSaltKiyoProducts__listSwiper.swiper {
    width: 100%;
    overflow: hidden;
    display: block;
  }
}
.topSaltKiyoProducts__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
}
@media screen and (min-width: 961px) {
  .topSaltKiyoProducts__list.swiper-wrapper {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: row !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
    gap: 80px !important;
    width: 100% !important;
    height: auto !important;
    -webkit-transform: none !important;
            transform: none !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative !important;
    z-index: auto !important;
  }
}
@media screen and (max-width: 960px) {
  .topSaltKiyoProducts__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0px;
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    height: 100%;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .topSaltKiyoProducts__list.swiper-wrapper {
    width: 100% !important;
  }
}
.topSaltKiyoProducts__item {
  width: 33.333%;
}
@media screen and (min-width: 961px) {
  .topSaltKiyoProducts__item.swiper-slide {
    width: 33.333% !important;
    max-width: none !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
    -webkit-transform: none !important;
            transform: none !important;
    -webkit-transition: none !important;
    transition: none !important;
    opacity: 1 !important;
    position: relative !important;
    -webkit-flex-shrink: 0 !important;
        -ms-flex-negative: 0 !important;
            flex-shrink: 0 !important;
  }
}
@media screen and (max-width: 960px) {
  .topSaltKiyoProducts__item {
    width: 100%;
    width: 100% !important;
    max-width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    height: auto;
  }
  .topSaltKiyoProducts__item.swiper-slide {
    width: 100% !important;
    max-width: 100%;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
}
.topSaltKiyoProducts__itemInner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
}
.topSaltKiyoProducts__itemFig {
  margin-bottom: 20px;
  background-color: #fff;
  border-radius: 5px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .topSaltKiyoProducts__itemFig {
    margin-bottom: 13px;
  }
}
.topSaltKiyoProducts__itemLink:hover {
  opacity: 0.75;
}
.topSaltKiyoProducts__itemImg {
  border-radius: 5px;
  width: 100%;
}
.topSaltKiyoProducts .productTag:after {
  background-color: #0e0e0e;
  height: 28px;
  border-radius: 28px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 10px 1px 10px;
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .topSaltKiyoProducts .productTag:after {
    font-size: 1.3rem;
    height: 26px;
    padding: 0 8px 1px 8px;
  }
}
.topSaltKiyoProducts .productTag_type_reserve:after {
  content: "予約商品";
}
.topSaltKiyoProducts .productTag_type_new:after {
  content: "NEW";
}
.topSaltKiyoProducts__itemDetails {
  color: #fff;
}
.topSaltKiyoProducts__itemTtl {
  font-size: 1.8rem;
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .topSaltKiyoProducts__itemTtl {
    font-size: 1.6rem;
    margin-bottom: 8px;
  }
}
.topSaltKiyoProducts__itemPrice {
  font-size: 1.4rem;
  margin-bottom: 18px;
}
@media screen and (max-width: 768px) {
  .topSaltKiyoProducts__itemPrice {
    font-size: 1.2rem;
    margin-bottom: 13px;
  }
}
.topSaltKiyoProducts__itemCatsList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: -5px;
}
.topSaltKiyoProducts__itemCatsItem {
  padding: 5px;
}
.topSaltKiyoProducts__itemCatsText {
  font-size: 1rem;
  border: 1px solid #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 20px;
  border-radius: 20px;
  padding: 0 7px 1px 7px;
}
@media screen and (max-width: 768px) {
  .topSaltKiyoProducts__itemCatsText {
    padding: 0 6px 1px 6px;
  }
}
.topSaltKiyoProducts__itemDesc {
  margin-top: 15px;
  font-size: 1.5rem;
  line-height: 1.7333333333;
}
@media screen and (max-width: 768px) {
  .topSaltKiyoProducts__itemDesc {
    font-size: 1.5rem;
    line-height: 1.5333333333;
    margin-top: 11px;
  }
}
.topSaltKiyoProducts__itemButton {
  color: #fff;
  text-decoration: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #fff;
  padding: 0 7px 20px 10px;
  margin-top: 33px;
}
@media screen and (max-width: 768px) {
  .topSaltKiyoProducts__itemButton {
    margin-top: 22px;
  }
}
.topSaltKiyoProducts__itemButton:hover:after {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
.topSaltKiyoProducts__itemButton:after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background: url(../images/icon_new_tab.svg) no-repeat center center/cover;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.topSaltKiyoProducts__itemButtonText {
  font-size: 1.5rem;
}

.topShopInfo {
  background: url(../images/bg_04.jpg) no-repeat center center/cover;
  margin: 0 15px 180px 15px;
  padding-top: 172px;
  padding-bottom: 185px;
  border-radius: 4px;
}
@media screen and (max-width: 960px) {
  .topShopInfo {
    background-image: url(../images/bg_04_sp.jpg);
  }
}
@media screen and (max-width: 768px) {
  .topShopInfo {
    margin: 0 10px 60px 10px;
    padding-top: 35px;
    padding-bottom: 40px;
  }
}
.topShopInfo__inner {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .topShopInfo__inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.topShopInfoTop {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 218px;
}
@media screen and (max-width: 960px) {
  .topShopInfoTop {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 120px;
  }
}
@media screen and (max-width: 768px) {
  .topShopInfoTop {
    margin-bottom: 112px;
  }
}
.topShopInfoTop__text {
  width: 450px;
}
@media screen and (max-width: 960px) {
  .topShopInfoTop__text {
    width: 100%;
  }
}
.topShopInfoTop__ttl {
  margin-bottom: 36px;
}
@media screen and (max-width: 768px) {
  .topShopInfoTop__ttl {
    letter-spacing: 0.05em;
    margin-bottom: 18px;
  }
}
.topShopInfoTop__descText {
  font-size: 1.6rem;
  line-height: 1.875;
  margin-bottom: 1.85em;
}
@media screen and (max-width: 960px) {
  .topShopInfoTop__descText .pc {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .topShopInfoTop__descText {
    font-size: 1.6rem;
    line-height: 1.5625;
    margin-bottom: 1.5em;
  }
}
.topShopInfoTop__descText:last-of-type {
  margin-bottom: 0;
}
.topShopInfoTop__fig {
  width: 386px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
  padding-top: 40px;
}
@media screen and (max-width: 1060px) {
  .topShopInfoTop__fig {
    width: 26.4383561644vw;
  }
}
@media screen and (max-width: 960px) {
  .topShopInfoTop__fig {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .topShopInfoTop__fig {
    padding-top: 43px;
  }
}
.topShopInfoTop__figMain {
  width: 386px;
  padding-left: 30px;
}
@media screen and (max-width: 1060px) {
  .topShopInfoTop__figMain {
    width: 26.4383561644vw;
    padding-left: 2.0547945205vw;
  }
}
@media screen and (max-width: 960px) {
  .topShopInfoTop__figMain {
    width: 100%;
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media screen and (max-width: 768px) {
  .topShopInfoTop__figMain {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.topShopInfoTop__figMainImg {
  width: 100%;
  border-radius: 4px;
}
.topShopInfoTop__figSub {
  position: absolute;
  bottom: -90px;
  left: -60px;
  -webkit-box-shadow: 0 0 6px rgba(51, 47, 46, 0.2);
          box-shadow: 0 0 6px rgba(51, 47, 46, 0.2);
  border-radius: 182px;
}
@media screen and (max-width: 1060px) {
  .topShopInfoTop__figSub {
    bottom: -6.1643835616vw;
    left: -4.1095890411vw;
  }
}
@media screen and (max-width: 960px) {
  .topShopInfoTop__figSub {
    bottom: -4vw;
    left: auto;
    right: 0vw;
  }
}
@media screen and (max-width: 768px) {
  .topShopInfoTop__figSub {
    bottom: -18vw;
    left: auto;
    right: 0.4vw;
  }
}
.topShopInfoTop__figSubImg {
  width: 182px;
}
@media screen and (max-width: 1060px) {
  .topShopInfoTop__figSubImg {
    width: 12.4657534247vw;
  }
}
@media screen and (max-width: 960px) {
  .topShopInfoTop__figSubImg {
    width: 20vw;
  }
}
@media screen and (max-width: 768px) {
  .topShopInfoTop__figSubImg {
    width: 34.6666666667vw;
  }
}

.topShopInfoProducts__listInner {
  overflow: hidden;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
.topShopInfoProducts__listInner .swiper-wrapper {
  width: 100%;
  height: auto;
}
.topShopInfoProducts__listInner .swiper-slide {
  width: 100% !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: auto;
}
.topShopInfoProducts__listInner .swiper-pagination {
  position: absolute;
  width: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 10px;
  padding-right: 0;
  z-index: 10;
  top: 371.0740276035px;
  left: 409px;
}
@media screen and (max-width: 960px) {
  .topShopInfoProducts__listInner .swiper-pagination {
    top: calc(50px + (100vw - 160px) * 0.851944793 - 45px);
    left: auto;
    right: 60px;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media screen and (max-width: 768px) {
  .topShopInfoProducts__listInner .swiper-pagination {
    gap: 6px;
    top: calc(15px + (100vw - 140px) * 0.851944793 - 6px);
    left: auto;
    right: 24px;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.topShopInfoProducts__listInner .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background-color: #a8a7a7;
  border-radius: 0;
  opacity: 1;
  margin: 0 0 0 0 !important;
}
.topShopInfoProducts__listInner .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .topShopInfoProducts__listInner .swiper-pagination-bullet {
    width: 5.5px;
    height: 5.5px;
  }
}
.topShopInfoProducts__list {
  width: 100%;
}
.topShopInfoProducts__inner {
  padding: 50px;
  border: 1px solid #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100% !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 960px) {
  .topShopInfoProducts__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .topShopInfoProducts__inner {
    padding: 15px;
  }
}
.topShopInfoProducts__gallery {
  width: 398px;
  margin: 0 0 0 0;
  border-radius: 4px;
  position: relative;
}
@media screen and (max-width: 960px) {
  .topShopInfoProducts__gallery {
    width: 100%;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .topShopInfoProducts__gallery {
    margin-bottom: 13px;
  }
}
.topShopInfoProducts__galleryItemLink {
  background-color: #fff;
  border-radius: 4px;
  display: block;
}
.topShopInfoProducts__galleryItemLink:hover {
  opacity: 0.75;
}
.topShopInfoProducts__galleryImg {
  width: 100%;
  height: auto;
  border-radius: 4px;
}
@media screen and (max-width: 768px) {
  .topShopInfoProducts__galleryImg {
    aspect-ratio: 797/679;
  }
}
.topShopInfoProducts__details {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 960px) {
  .topShopInfoProducts__details {
    padding-left: 0;
    width: 100%;
  }
}
.topShopInfoProducts__detailsUnit {
  font-size: 1.4rem;
  padding-left: 13px;
  border-left: 1px solid #fff;
  color: #fff;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .topShopInfoProducts__detailsUnit {
    font-size: 1rem;
    padding-left: 9px;
    margin-bottom: 8px;
  }
}
.topShopInfoProducts__detailsName {
  font-size: 2rem;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .topShopInfoProducts__detailsName {
    font-size: 1.8rem;
    margin-bottom: 9px;
    line-height: 1.6666666667;
  }
}
.topShopInfoProducts__detailsPrice {
  font-size: 1.4rem;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .topShopInfoProducts__detailsPrice {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
}
.topShopInfoProducts__detailsDesc {
  font-size: 1.5rem;
  line-height: 1.7333333333;
  margin-bottom: 25px;
  width: 100%;
}
@media screen and (max-width: 960px) {
  .topShopInfoProducts__detailsDesc {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .topShopInfoProducts__detailsDesc {
    font-size: 1.6rem;
    line-height: 1.5625;
    margin-bottom: 15px;
  }
}
.topShopInfoProducts__detailsButton {
  margin-top: auto;
}
@media screen and (max-width: 960px) {
  .topShopInfoProducts__detailsButton {
    width: 100%;
  }
}
.topOperation {
  padding-bottom: 180px;
}
@media screen and (max-width: 768px) {
  .topOperation {
    padding-bottom: 48px;
  }
}
.topOperationSection__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 960px) {
  .topOperationSection__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.topOperationSection__text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-right: 60px;
}
@media screen and (max-width: 960px) {
  .topOperationSection__text {
    padding-right: 0;
    width: 100%;
    margin-bottom: 22px;
  }
}
.topOperationSection__ttl {
  font-size: 2.4rem;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .topOperationSection__ttl {
    font-size: 1.8rem;
    margin-bottom: 8px;
  }
}
.topOperationSection__ttlSub {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .topOperationSection__ttlSub {
    font-size: 1.6rem;
  }
}
.topOperationSection__dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 21px 0;
  border-bottom: 1px solid #e2e2e2;
}
@media screen and (max-width: 768px) {
  .topOperationSection__dl {
    padding: 13px 0 14px;
  }
}
.topOperationSection__dt {
  width: 160px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .topOperationSection__dt {
    width: 110px;
  }
}
.topOperationSection__dd {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1.6rem;
  line-height: 1.875;
}
@media screen and (max-width: 768px) {
  .topOperationSection__dd {
    line-height: 1.6666666667;
  }
}
.topOperationSection__ddTel {
  color: inherit;
  text-decoration: none;
}
.topOperationSection__ddTel:hover {
  text-decoration: underline;
}
.topOperationSection__map {
  width: 465px;
}
@media screen and (max-width: 960px) {
  .topOperationSection__map {
    width: 100%;
  }
}
.topOperationSection__mapIframe {
  width: 100%;
  height: 368px;
}
@media screen and (max-width: 768px) {
  .topOperationSection__mapIframe {
    height: 215px;
  }
}

.topOperationSection_type_shop {
  margin-bottom: 140px;
}
@media screen and (max-width: 960px) {
  .topOperationSection_type_shop {
    margin-bottom: 60px;
  }
}

@media screen and (max-width: 960px) {
  .topGallery_type_02 {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .topGallery_type_02 .topGallery__item {
    width: 50%;
  }
}

html.is-mac .topMiyajimaSalt__descText,
html.is-mac .topMiyajimaSaltBottom__descText,
html.is-mac .topSaltAji__descText,
html.is-mac .topSaltAjiDetails__itemDesc,
html.is-mac .topSaltKiyo__descText,
html.is-mac .topSaltKiyoProducts__itemPrice,
html.is-mac .topSaltKiyoProducts__itemCatsText,
html.is-mac .topSaltKiyoProducts__itemDesc,
html.is-mac .topShopInfoTop__descText,
html.is-mac .topShopInfoProducts__detailsPrice,
html.is-mac .topShopInfoProducts__detailsDesc,
html.is-mac .topOperationSection__dt,
html.is-mac .topOperationSection__dd,
html.is-mac .footer__privacyLink,
html.is-mac .footer__copyrightText {
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", "Yu Mincho", serif;
}

html.is-win .topMiyajimaSalt__descText,
html.is-win .topMiyajimaSaltBottom__descText,
html.is-win .topSaltAji__descText,
html.is-win .topSaltAjiDetails__itemDesc,
html.is-win .topSaltKiyo__descText,
html.is-win .topSaltKiyoProducts__itemPrice,
html.is-win .topSaltKiyoProducts__itemCatsText,
html.is-win .topSaltKiyoProducts__itemDesc,
html.is-win .topShopInfoTop__descText,
html.is-win .topShopInfoProducts__detailsPrice,
html.is-win .topShopInfoProducts__detailsDesc,
html.is-win .topOperationSection__dt,
html.is-win .topOperationSection__dd,
html.is-win .footer__privacyLink,
html.is-win .footer__copyrightText {
  font-family: "游明朝", "Yu Mincho", "MS P明朝", "MS PMincho", serif;
}

.show_page_loading::before {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  background-color: #fff;
}

#section01,
#section02,
#section03,
#section04,
#section05,
#section06,
#section07,
#section08,
#section09,
#section10 {
  outline: none;
}
/*# sourceMappingURL=style.css.map */
