@charset "UTF-8";
/***** COLOR *****/
/***** FONT *****/
/***** SIZE *****/
/***** RESPONSIVE *****/
*:where(:not(iframe, canvas, img, svg, video):not(svg *)) {
  all: unset;
  display: revert;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  line-height: 1.3;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
table,
th,
td,
ul,
li,
ol,
dl,
dt,
dd,
form,
p {
  margin: 0;
  padding: 0;
  font-weight: normal;
  border-style: none;
  list-style-type: none;
  line-height: normal;
}

input,
textarea,
select,
button {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}

button {
  cursor: pointer;
}

figure {
  margin: 0;
}

img,
iframe {
  width: 100%;
  height: auto;
  vertical-align: top;
}

table {
  border-collapse: collapse;
}

a {
  text-decoration: none;
  cursor: pointer;
}

body {
  background-color: #fff;
  color: #333;
  font-family: "游ゴシック体", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 0.05em;
}

p {
  line-height: 1.5;
}

/***** SECTION COMMON ******/
.section-common {
  padding: 50px 20px;
}

/***** SECTION INNER ******/
.section-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/***** FOOTER *****/
footer {
  background: #50B5B5;
  padding: 30px 0;
}
footer .footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer .group-top {
  display: flex;
  align-items: center;
  width: 95%;
}
footer .group-top::before, footer .group-top::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #fff;
}
footer .group-top a {
  padding: 0 30px;
}
footer .group-top a img {
  height: 40px;
  display: block;
}
footer .hotel,
footer .shop {
  display: flex;
  align-items: center;
  margin: 50px 0;
}
footer .hotel p,
footer .shop p {
  color: #fff;
  font: "DIN Condensed", "游ゴシック体";
  padding-right: 20px;
}
footer .hotel a,
footer .shop a {
  padding: 0 15px;
}
footer .hotel a img,
footer .shop a img {
  width: 100px;
  display: block;
}
footer .copyright {
  color: #fff;
  font-size: 12px;
  text-align: center;
}

/***** PAGE HEADER *****/
.page-header .brand-name {
  font-size: 0;
  opacity: 0;
}
.page-header .brand-name-logo {
  text-align: center;
  margin: 10px 0;
}
.page-header .brand-name-logo img {
  width: 100px;
}
.page-header .page-title {
  background-color: #50B5B5;
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  padding: 10px 0;
  text-align: center;
}

/***** PRODUCT LIST *****/
.product-list__category-title {
  text-align: center;
}
.product-list__category-title h2 {
  color: #50B5B5;
  font-weight: 600;
  font-size: 24px;
  position: relative;
  display: inline-block;
  padding: 0 100px;
}
.product-list__category-title h2:before,
.product-list__category-title h2:after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 80px;
  height: 2px;
  background-color: #50B5B5;
}
.product-list__category-title h2:before {
  left: 0;
}
.product-list__category-title h2:after {
  right: 0;
}
.product-list__category-items {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, 300px);
  justify-content: center;
}

.product-card {
  display: flex;
  flex-direction: column;
}
.product-card__image {
  aspect-ratio: 1/1;
  background: #f5f5f5;
  overflow: hidden;
}
.product-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.product-card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  margin-top: 12px;
}
.product-card__title-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #007f7f;
  text-decoration: none;
}
.product-card__title-link:hover {
  color: #50B5B5;
}
.product-card__title-text {
  line-height: 1.4;
  font-size: 22px;
}
.product-card__pdf {
  font-size: 11px;
  padding: 2px 8px;
  background: #D3452B;
  color: #fff;
  border-radius: 12px;
  line-height: 1;
  white-space: nowrap;
}
.product-card__link {
  margin-top: auto;
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: underline;
}
.product-card__link:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  /***** FOOTER *****/
  footer .hotel,
  footer .shop {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  footer .hotel p,
  footer .shop p {
    padding-right: 0;
  }
}
@media (max-width: 430px) {
  /***** PRODUCT LIST *****/
  .product-list__category-title {
    text-align: center;
  }
  .product-list__category-title h2 {
    padding: 0 55px;
  }
  .product-list__category-title h2:before,
  .product-list__category-title h2:after {
    width: 45px;
  }
}/*# sourceMappingURL=style.css.map */