@charset "UTF-8";
/* ===========================================
  共通設定
=========================================== */
:root {
  --side-pad: 50px;
  --content-width: 1200px;
  --color-ivory: #F7F4E3;
  --font-family-noto-serif: "Noto Serif JP", serif;
}
@media (width < 768px) {
  :root {
    --side-pad: 20px;
  }
}

body {
  color: #000000;
  font-size: 16px;
  line-height: 1.5;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", sans-serif;
}

a {
  color: inherit;
}

@media (hover: hover) {
  a {
    transition: opacity 0.3s ease;
  }
  a:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}
.c-inner {
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: var(--side-pad);
}

.c-heading {
  font-size: 28px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 40px;
  padding: 13px 20px;
  border-color: currentColor;
  border-width: 1px;
  border-style: solid;
  background-color: white;
  position: relative;
  margin-right: 5px;
}
.c-heading::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 5px;
  left: 5px;
  background-image: repeating-linear-gradient(0deg, transparent 0px 5px, #000000 5px 8px);
  background: url("../images/border.png") repeat right center;
  background-size: 100%;
  z-index: -1;
}

.c-br-sp {
  display: none;
}

@media (max-width: 767px) {
  .c-heading {
    font-size: 24px;
    margin-bottom: 25px;
    padding: 13px 20px;
  }
  .c-heading::after {
    background-size: 1194px;
  }
  .c-br-pc {
    display: none;
  }
  .c-br-sp {
    display: inline;
  }
}
.c-icon-more {
  width: 30px;
  height: 30px;
}
.c-icon-more ._circle {
  transition: fill 0.3s linear;
  fill: #FFFFFF;
}
.c-icon-more ._path {
  transition: stroke 0.3s linear;
  stroke: #1796D8;
}

.c-button {
  box-sizing: border-box;
  padding-inline: 20px;
  display: inline-grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  justify-content: center;
  background-color: #1796D8;
  border: 1px solid #1796D8;
  color: white;
  font-size: 20px;
  height: 74px;
  border-radius: 37px;
  text-align: center;
  width: 100%;
  max-width: 352px;
  transition: background-color 0.3s linear, color 0.3s linear;
}
.c-button:hover {
  opacity: 1;
  background-color: #FFFFFF;
  color: #1796D8;
}
.c-button:hover .c-icon-more ._circle {
  fill: #1796D8;
}
.c-button:hover .c-icon-more ._path {
  stroke: #FFFFFF;
}

.swiper-button-prev.c-button-prev,
.swiper-button-next.c-button-next {
  width: 60px;
  height: 60px;
  margin-top: -30px;
}
.swiper-button-prev.c-button-prev svg,
.swiper-button-next.c-button-next svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 767px) {
  .c-button {
    height: 60px;
  }
  .swiper-button-prev.c-button-prev,
  .swiper-button-next.c-button-next {
    width: 40px;
    height: 40px;
    margin-top: -20px;
  }
}
.c-breadcrumbs-list {
  font-size: 13px;
}

.c-breadcrumbs-list__item:before {
  width: 15px;
  height: 1px;
  background-color: #999999;
  content: "";
  border: none;
  right: -23px;
  margin-top: 0;
}

.c-breadcrumbs-list__item {
  color: #999999;
}
.c-breadcrumbs-list__item a {
  color: #000000;
}

/* -------------------
HEADER
------------------- */
.l-header {
  position: sticky;
  top: 0;
}

.l-header__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  justify-content: space-between;
  max-width: 1400px;
  padding-inline: 16px 40px;
  margin-inline: auto;
  padding-block: 37px;
}

.l-header__toggle-button {
  display: none;
}

.l-header__sns,
.l-header__mypage,
.l-header__cart {
  width: 55px;
  height: 55px;
}

.l-header__sns a,
.l-header__mypage a,
.l-header__cart a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.l-header__sns img {
  width: 20px;
  height: auto;
}

.l-header__mypage img {
  width: 20px;
  height: 20px;
}

.l-header__cart img {
  width: 22px;
  height: 20px;
}

.l-header__menuArea {
  display: flex;
  flex-direction: column;
}

.l-header__navArea {
  display: flex;
  flex-grow: 1;
}

.l-header__icons {
  display: flex;
  justify-content: flex-end;
}

.l-header__nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  justify-content: flex-end;
  /* position: relative; */
  padding-right: 15px;
  box-sizing: border-box;
}
.l-header__nav > li {
  height: 100%;
  display: flex;
  align-items: center;
}
.l-header__nav ._has-child {
  cursor: pointer;
}
.l-header__nav ._has-child span {
  position: relative;
  padding-right: 25px;
}
.l-header__nav ._has-child span::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  top: calc(50% - 6px);
  right: 0;
  transition: transform 0.3s ease;
  transform: rotate(45deg);
}
.l-header__nav ._has-child._open span::after {
  transform: rotate(-135deg);
}
.l-header__nav ._has-child:hover > span::after {
  transform: rotate(-135deg);
}
.l-header__nav ._has-child:hover .l-header__dropdown {
  display: block;
}

.l-header-search__contents {
  position: relative;
}

.l-header-search__box {
  z-index: 1;
}

.l-header__dropdown {
  display: none;
  width: 100%;
  background-color: #fafafa;
  padding: 60px 85px;
  box-sizing: border-box;
  position: absolute;
  top: 100%;
  left: 0;
}

.l-header__sub-menu {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 30px;
}
.l-header__sub-menu li {
  flex-basis: calc((100% - 60px) / 4);
}

@media (width < 1200px) {
  .l-header__toggle-button {
    cursor: pointer;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    position: relative;
  }
  .l-header__toggle-button span {
    width: 25px;
    height: 2px;
    display: block;
    border-radius: 1px;
    background-color: #000000;
  }
  .l-header__toggle-button._open span {
    position: absolute;
    top: calc(50% - 1px);
    left: 10px;
    transform: rotate(45deg);
  }
  .l-header__toggle-button._open span:nth-child(2) {
    transform: rotate(-45deg);
  }
  .l-header__navArea {
    display: none;
  }
  .l-header__nav {
    padding-right: 0;
  }
  .l-header__inner {
    padding-block: 10px;
    padding-inline: 20px;
    align-items: center;
  }
  .l-header__logo img {
    width: 136px;
  }
  .l-header__sns,
  .l-header__mypage,
  .l-header__cart {
    width: 45px;
    height: 45px;
  }
  .l-header__cart img{
    width: calc(22px*1.3);/*22px*/
    height: calc(20px*1.3);/*20px*/
  }
  .l-header__search,
  .l-header__mypage,
  .l-header__sns {
    display: none;
  }
}
/* -------------------
DRAWER
------------------- */
.l-drawer {
  position: fixed;
  top: 80px;
  right: -100%;
  width: 100%;
  max-width: 500px;
  bottom: 0;
  background-color: white;
  height: calc(100dvh - 80px);
  transition: right 0.3s ease-out;
}
.l-drawer._open {
  right: 0;
}

.l-drawer__inner {
  height: 100%;
  box-sizing: border-box;
  overflow-y: scroll;
  padding-inline: var(--side-pad);
  padding-block: 40px 100px;
}

.l-drawer__search-form {
  border: 1px solid #4593D0;
  display: flex;
}

.l-drawer__search-input {
  width: 100%;
}
.l-drawer__search-input input {
  width: 100%;
  border: none;
  padding: 10px 10px;
}

.l-drawer__search-submit {
  border: none;
  background-color: transparent;
  border-radius: 0;
  color: inherit;
}

.l-drawer__nav > li {
  padding-block: 15px;
  display: block;
}
.l-drawer__nav .js-accordion-button span {
  position: relative;
  padding-right: 25px;
}
.l-drawer__nav .js-accordion-button span::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  top: calc(50% - 6px);
  right: 0;
  transform: rotate(45deg);
}
.l-drawer__nav .js-accordion-button._open span::after {
  transform: rotate(-135deg);
}
.l-drawer__nav .js-accordion-toggle {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.l-drawer__sub-category {
  margin-left: 10px;
  display: flex;
  flex-direction: column;
}
.l-drawer__sub-category > li {
  padding-block: 8px;
}
.l-drawer__sub-category > li:first-child {
  padding-top: 16px;
}

.l-drawer__sns {
  margin-top: 45px;
  display: flex;
  justify-content: center;
}

/* -------------------
FOOTER
------------------- */
.l-footer {
  margin-top: 100px;
  background-color: white;
  border-top: 2px solid #000000;
}

.l-footer-shopinfo__logo img {
  max-width: 229px;
}

.l-footer > .l-copyright {
  display: none;
}

.l-copyright {
  padding-block: 0;
  margin-top: 60px;
  max-width: 229px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .l-footer {
    padding-top: 60px;
  }
  .l-footer-navi-list__link:before {
    content: none;
  }
  .l-footer-navi-list {
    text-align: center;
    font-size: 14px;
  }
  .l-footer-navi-list a {
    color: inherit;
  }
  .l-copyright {
    max-width: none;
    text-align: center;
  }
  .l-footer-shopinfo .l-copyright {
    display: none;
  }
  .l-footer > .l-copyright {
    display: block;
  }
}
/* ===========================================
  トップページ
=========================================== */
/* -------------------
01 ファーストビュー
------------------- */
.top-items {
  padding-top: 40px;
}

.top-items__slider {
  max-width: 1400px;
  padding-inline: 30px;
  margin-inline: auto;
  position: relative;
  overflow: hidden;
}
.top-items__slider .swiper {
  --thumbnail-size: 440px;
  position: static;
  overflow: visible;
}
.top-items__slider .c-button-prev,
.top-items__slider .c-button-next {
  top: calc(var(--thumbnail-size) / 2);
}

.top-items__item-image {
  padding-right: 20px;
  padding-bottom: 20px;
  position: relative;
}
.top-items__item-image::after {
  position: absolute;
  content: "";
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  top: 20px;
  left: 20px;
  background: url("../images/border-blue.png") repeat right center;
  background-size: 100%;
  z-index: -1;
}

.top-items__title {
  margin-top: 20px;
  font-size: 18px;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .top-items__item {
    width: 300px;
  }
  .top-items__title {
    font-size: 16px;
  }
  .top-items__item-image {
    padding-right: 10px;
    padding-bottom: 10px;
  }
  .top-items__item-image::after {
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    top: 10px;
    left: 10px;
  }
}
/* -------------------
02 お知らせ
------------------- */
.top-info {
  padding-top: 60px;
}

.top-info__columns {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 40px;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
}

.top-info__header {
  flex-shrink: 0;
}
.top-info__header h2 {
  font-size: 18px;
  font-weight: bold;
  margin: 0;
}

.top-info__contents {
  font-size: 13px;
  position: relative;
  overflow: hidden;
}

.top-info__slider {
  --swiper-navigation-size: 18px;
  --swiper-theme-color: #000000;
  position: static;
  overflow: visible;
}
.top-info__slider .swiper-button-prev,
.top-info__slider .swiper-button-next {
  position: static;
  margin-top: 0;
}
.top-info__slider ._controls {
  background-color: white;
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  gap: 20px;
  z-index: 1;
}

.top-info__slide,
.top-info__slide > a {
  display: flex;
  gap: 20px;
}

@media (max-width: 767px) {
  .top-info__columns {
    margin-inline: 20px;
    display: block;
    position: relative;
    overflow: hidden;
    padding-inline: 0;
  }
  .top-info__header {
    margin-bottom: 10px;
  }
  .top-info__contents {
    position: static;
    overflow: visible;
  }
  .top-info__slider ._controls {
    top: 20px;
  }
  .top-info__slide,
  .top-info__slide > a {
    flex-direction: column;
    gap: 7px;
  }
}
.top-seasonal {
  padding-block: 86px;
}

.top-seasonal__lead {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 40px;
}

.top-seasonal__slider {
  margin-bottom: 76px;
  --swiper-navigation-size: 24px;
  --swiper-theme-color: #000000;
}
.top-seasonal__slider .swiper-pagination {
  position: static;
  display: inline-block;
  width: auto;
  font-size: 28px;
}
.top-seasonal__slider .swiper-pagination-current,
.top-seasonal__slider .swiper-pagination-total {
  font-weight: bold;
}
.top-seasonal__slider .swiper-pagination-current {
  color: #1796D8;
}
.top-seasonal__slider .swiper-button-prev,
.top-seasonal__slider .swiper-button-next {
  position: static;
  margin-top: 0;
  font-size: inherit;
}
.top-seasonal__slider ._controls {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.top-seasonal__top {
  display: flex;
  gap: 60px;
  align-items: center;
}

.top-seasonal__title {
  margin-top: 0;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.top-seasonal__image {
  padding-right: 20px;
  padding-bottom: 20px;
  position: relative;
}
.top-seasonal__image::after {
  position: absolute;
  content: "";
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  top: 20px;
  left: 20px;
  background: url("../images/border-blue.png") repeat right center;
  background-size: 100%;
  z-index: -1;
}

.top-seasonal__description {
  margin-bottom: 0;
}

.top-seasonal__price {
  margin-top: 20px;
  font-weight: bold;
  margin-bottom: 0;
}

.top-seasonal__more {
  text-align: center;
  margin-top: 30px;
}

@media (max-width: 767px) {
  .top-seasonal {
    padding-top: 60px;
  }
  .top-seasonal__lead {
    font-size: 20px;
    margin-bottom: 30px;
  }
  .top-seasonal__top {
    flex-direction: column;
    gap: 100px;
  }
  .top-seasonal__slider ._controls {
    position: absolute;
    width: 100%;
    top: calc(100vw - 10px);
  }
}
.workshop-info {
  display: flex;
  flex-direction: row-reverse;
  max-width: 700px;
  margin-inline: auto;
}

.workshop-info__image {
  flex-basis: 240px;
  flex-shrink: 0;
}
.workshop-info__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.workshop-info__contents {
  background-color: #F0FBFE;
  padding: 42px 50px;
  flex-basis: 560px;
}

.workshop-info__heading {
  margin-bottom: 5px;
  color: #1796D8;
  font-size: 14px;
}
.workshop-info__heading span {
  display: inline-block;
  border: 1px solid currentColor;
  padding: 2px 6px;
}

.workshop-info__title {
  font-weight: bold;
}

.workshop-info__text {
  font-size: 14px;
}

.workshop-info__buttons {
  margin-top: 15px;
  display: flex;
  gap: 10px;
}
.workshop-info__buttons .c-button {
  font-size: 14px;
  padding-inline: 9px;
  height: 38px;
}
.workshop-info__buttons .c-icon-more {
  width: 20px;
  height: 20px;
}

@media (max-width: 767px) {
  .workshop-info {
    flex-direction: column;
    background-color: #F0FBFE;
    padding: 30px 20px;
    gap: 20px;
  }
  .workshop-info__image {
    flex-basis: auto;
  }
  .workshop-info__contents {
    flex-basis: auto;
    padding: 0;
  }
  .workshop-info__buttons {
    flex-direction: column;
  }
}
.top-recommend__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 60px;
}

.top-recommend__thumbnail {
  margin-bottom: 30px;
}

.top-recommend__title {
  font-size: 18px;
  margin-bottom: 0;
}

.top-recommend__regular-price {
  margin-top: 15px;
  margin-bottom: 0;
}

.top-recommend__more {
  margin-top: 60px;
  text-align: center;
}

@media (max-width: 767px) {
  .top-recommend__list {
    grid-template-columns: 1fr 1fr;
    gap: 40px 15px;
  }
  .top-recommend__thumbnail {
    margin-bottom: 15px;
  }
  .top-recommend__title {
    font-size: 16px;
  }
  .top-recommend__regular-price {
    font-size: 14px;
  }
}
.top-category {
  padding-top: 100px;
}

.top-category__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  font-size: 18px;
  text-align: center;
}

.top-category__item p {
  margin-bottom: 0;
}

.top-category__thumbnail {
  margin-bottom: 20px;
  border-radius: 50%;
  overflow: hidden;
}

@media (max-width: 990px) {
  .top-category__list {
    gap: 30px 25px;
  }
}
@media (max-width: 767px) {
  .top-category {
    padding-top: 60px;
  }
  .top-category__list {
    grid-template-columns: 1fr 1fr;
    gap: 30px 15px;
  }
}
.other-recommend {
  padding-top: 100px;
}

.other-recommend__tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 35px;
  border-bottom: 2px solid #A9A9A9;
}

.other-recommend__tab {
  cursor: pointer;
  text-align: center;
  padding-bottom: 19px;
  position: relative;
  font-weight: bold;
  transition: opacity 0.3s ease;
}
.other-recommend__tab span {
  display: inline-block;
}
.other-recommend__tab._current {
  color: #1796D8;
}
.other-recommend__tab:not(._current) {
  opacity: 0.5;
}
.other-recommend__tab._current::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 5px;
  background-color: #1796D8;
  bottom: -4px;
  left: 0;
}
.other-recommend__tab img {
  max-width: 91px;
  height: auto;
  margin-bottom: 11px;
}
.other-recommend__tab p {
  margin-bottom: 0;
  font-size: 18px;
}

@media (hover: hover) {
  .other-recommend__tab:hover {
    opacity: 0.7;
  }
}
.other-recommend__tab-content {
  display: none;
}
.other-recommend__tab-content._current {
  display: block;
}

.other-recommend__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 60px;
}

.other-recommend__thumbnail {
  margin-bottom: 30px;
}

.other-recommend__title {
  font-size: 18px;
  margin-bottom: 0;
}

.other-recommend__regular-price {
  margin-top: 15px;
  margin-bottom: 0;
}

.other-recommend__more {
  margin-top: 60px;
  text-align: center;
}

@media (max-width: 767px) {
  .other-recommend {
    padding-top: 60px;
  }
  .other-recommend__list {
    grid-template-columns: 1fr 1fr;
    gap: 30px 15px;
  }
  .other-recommend__tabs {
    overflow-x: scroll;
    grid-template-columns: repeat(3, 180px);
  }
  .other-recommend__tab {
    flex-basis: 180px;
    flex-shrink: 0;
  }
  .other-recommend__tab img {
    width: 60px;
  }
}
.marchant {
  padding-top: 100px;
  padding-inline: var(--side-pad);
}

.marchant__columns {
  max-width: 600px;
  margin-inline: auto;
  box-sizing: border-box;
  border: 6px double #1796D8;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.marchant__columns img {
  width: 90px;
  height: auto;
}
.marchant__columns p {
  font-weight: bold;
  font-size: 18px;
  margin-left: 20px;
  margin-bottom: 0;
}
.marchant__columns svg {
  margin-left: 10px;
}

@media (hover: hover) {
  .marchant a:hover {
    opacity: 1;
  }
  .marchant a:hover .c-icon-more ._circle {
    fill: #1796D8;
  }
  .marchant a:hover .c-icon-more ._path {
    stroke: #FFFFFF;
  }
}
@media (width < 640px) {
  .marchant__columns {
    padding: 15px 10px;
  }
  .marchant__columns p {
    margin-left: 10px;
  }
  .marchant__columns p span {
    display: inline-block;
  }
  .marchant__columns svg {
    flex-shrink: 0;
  }
}
.more-about-sesese {
  padding-top: 100px;
}

.more-about-sesese__columns {
  display: flex;
  gap: 40px;
  justify-content: center;
}

.more-about-sesese__about-us {
  flex-basis: calc(50% - 20px);
  display: flex;
}
.more-about-sesese__about-us a {
  flex-basis: 100%;
  display: block;
  border: 5px solid #4594D1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 57px 20px;
  justify-content: space-between;
}
.more-about-sesese__about-us img {
  width: 229px;
}
.more-about-sesese__about-us p {
  max-width: 361px;
  margin-top: 16px;
  margin-bottom: 0;
}

.more-about-sesese__workshop {
  flex-basis: calc(50% - 20px);
  display: flex;
}
.more-about-sesese__workshop a {
  flex-basis: 100%;
  display: block;
  border: 5px solid #FFD800;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 57px 20px;
}
.more-about-sesese__workshop img {
  width: 197.22px;
}
.more-about-sesese__workshop p {
  max-width: 361px;
  margin-top: 16px;
  margin-bottom: 0;
}

@media (hover: hover) {
  .more-about-sesese__about-us a:hover,
  .more-about-sesese__workshop a:hover {
    opacity: 1;
  }
}
.more-about-sesese__text {
  min-height: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.more-about-sesese__button {
  margin-top: 20px;
  width: 100%;
}

@media (max-width: 767px) {
  .more-about-sesese__columns {
    flex-direction: column;
    gap: 30px;
  }
  .more-about-sesese__about-us {
    flex-basis: 100%;
  }
  .more-about-sesese__about-us a {
    padding: 33px 15px;
  }
  .more-about-sesese__workshop {
    flex-basis: 100%;
    width: 100%;
  }
  .more-about-sesese__workshop a {
    padding: 33px 15px;
  }
}
.top-instagram {
  padding-top: 100px;
}

.top-instagram__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 767px) {
  .top-instagram__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.top-blog {
  padding-top: 100px;
}

.top-blog__slider {
  position: relative;
  overflow: hidden;
  padding-left: 34px;
}
.top-blog__slider .swiper {
  position: static;
  overflow: visible;
}

.swiper-slide.top-blog__slide {
  width: 400px;
}

.top-blog__thumbnail {
  margin-bottom: 20px;
}

.top-blog__date {
  margin-bottom: 10px;
}

.top-blog__title {
  font-size: 18px;
  margin-bottom: 0;
}

.checked-item {
  padding-top: 100px;
}

.checked-item__list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

@media (max-width: 767px) {
  .checked-item__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* ===========================================
  参加施設一覧
=========================================== */
.facilities-list__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 27px 5%;
}

@media (width < 990px) {
  .facilities-list__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width < 480px) {
  .facilities-list__list {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }
}
.facilities-list__thumbnail {
  margin-bottom: 14px;
}

.facilities-list__title {
  font-size: 24px;
  font-weight: bold;
  margin-top: 0;
}

.facilities-list__description {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .facilities-list__title {
    font-size: 18px;
    margin-bottom: 8px;
  }
}
/* ===========================================
  参加施設詳細
=========================================== */
.facilitiy-detail__top {
  max-width: 830px;
  margin-inline: auto;
}

.facilitiy-detail__heading {
  font-size: 36px;
  margin-bottom: 33px;
  font-weight: bold;
  text-align: center;
}

.facilitiy-detail__mainvisual {
  margin-bottom: 75px;
  padding-right: 10px;
  padding-bottom: 10px;
  position: relative;
}
.facilitiy-detail__mainvisual::after {
  position: absolute;
  content: "";
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  top: 10px;
  left: 10px;
  background: url("../images/workshop/border.png") repeat right center;
  background-size: 100%;
  z-index: -1;
}

.facilitiy-detail__description {
  margin-bottom: 0;
}

.facilitiy-detail__main {
  margin-top: 100px;
}

.facilitiy-detail__table {
  table-layout: fixed;
  width: 100%;
  max-width: 860px;
  margin-inline: auto;
  border-collapse: collapse;
}
.facilitiy-detail__table tr {
  border-bottom: 1px white solid;
}
.facilitiy-detail__table th {
  padding: 10px;
  background-color: #1796D8;
  color: white;
  width: 192px;
}
.facilitiy-detail__table td {
  padding: 10px;
  background-color: #F0FBFE;
}
.facilitiy-detail__table a {
  color: inherit;
  text-decoration: underline;
}
.facilitiy-detail__table {
  margin-bottom: 100px;
}

.see-all-facilities {
  padding: 50px;
  max-width: 580px;
  box-sizing: border-box;
  margin-inline: auto;
  border: 5px solid #FFD800;
  text-align: center;
}

.see-all-facilities__logo {
  margin-bottom: 37px;
  width: 142px;
  height: auto;
}

.see-all-facilities__button {
  margin-top: 20px;
}

.sellers {
  padding-top: 60px;
}

.sellers__list {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.seller__image {
  margin-bottom: 30px;
}

.seller__title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}

.seller__access {
  font-size: 18px;
  margin-bottom: 15px;
}

.other-sellers {
  padding-top: 100px;
}

.official-sns {
  padding-top: 100px;
}

.official-sns__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.official-sns__item img {
  width: 50px;
  height: auto;
}

@media (max-width: 767px) {
  .facilitiy-detail__heading {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .facilitiy-detail__mainvisual {
    margin-bottom: 40px;
  }
  .facilitiy-detail__main {
    margin-top: 60px;
  }
  .facilitiy-detail__table th {
    width: 100px;
    font-size: 14px;
  }
  .facilitiy-detail__table td {
    font-size: 14px;
  }
  .facilitiy-detail__table {
    margin-bottom: 60px;
  }
  .see-all-facilities {
    padding: 24px 20px;
  }
  .see-all-facilities__logo {
    margin-bottom: 20px;
    width: 100px;
  }
  .sellers {
    padding-top: 40px;
  }
  .sellers__list {
    margin-top: 40px;
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .seller__title {
    font-size: 16px;
  }
  .seller__access {
    font-size: 16px;
  }
  .other-sellers {
    padding-top: 60px;
  }
  .official-sns {
    padding-top: 60px;
  }
  .official-sns__list {
    gap: 24px;
  }
}
/* ===========================================
  せせせとは
=========================================== */
.message {
  display: grid;
  grid-template-columns: 350px 1fr 350px;
}

.message__left {
  display: flex;
  flex-wrap: wrap;
}
.message__left img {
  flex-basis: 50%;
  aspect-ratio: 1/1;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.message__right {
  display: flex;
  flex-wrap: wrap;
}
.message__right img {
  flex-basis: 50%;
  aspect-ratio: 1/1;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.message__center {
  max-width: 700px;
  margin-inline: auto;
  padding-inline: 100px;
  box-sizing: border-box;
}

.about-us__heading {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-top: 0;
  margin-bottom: 50px;
}
.about-us__heading span {
  padding-bottom: 8px;
  border-bottom: 3px solid #1796D8;
}

.about-us__text {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 0;
}
.about-us__text span {
  display: inline-block;
}

.about-project {
  margin-top: 84px;
  text-align: center;
}
.about-project img {
  max-width: 719px;
  height: auto;
}

.about-kokoko {
  margin-top: 100px;
}

.about-kokoko__button {
  margin-top: 20px;
}
.about-kokoko__button .c-button {
  height: 38px;
  font-size: 14px;
  color: white;
  width: 160px;
  padding-inline: 9px;
}
.about-kokoko__button .c-icon-more {
  width: 20px;
  height: 20px;
}
.about-kokoko__button .c-icon-more ._circle {
  fill: white;
}

@media (hover: hover) {
  .about-kokoko__button .c-button:hover {
    color: #1796D8;
  }
}
.good-cycle {
  margin-top: 100px;
}

.good-cycle__concept {
  display: flex;
  gap: 60px;
  justify-content: center;
}

.good-cycle__item {
  position: relative;
}
.good-cycle__item img {
  width: 200px;
  height: auto;
  margin-bottom: 20px;
}
.good-cycle__item:not(:last-child)::after {
  position: absolute;
  content: "";
  top: 100px;
  left: calc(100% + 10px);
  width: 28px;
  height: 25px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iMzAiIHZpZXdCb3g9IjAgMCA0MCAzMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMzkuNDE0MiAxNi4xNDIyQzQwLjE5NTMgMTUuMzYxMiA0MC4xOTUzIDE0LjA5NDkgMzkuNDE0MiAxMy4zMTM4TDI2LjY4NjMgMC41ODU4OTJDMjUuOTA1MiAtMC4xOTUxNTcgMjQuNjM4OSAtMC4xOTUxNTcgMjMuODU3OSAwLjU4NTg5MkMyMy4wNzY4IDEuMzY2OTQgMjMuMDc2OCAyLjYzMzI3IDIzLjg1NzkgMy40MTQzMkwzNS4xNzE2IDE0LjcyOEwyMy44NTc5IDI2LjA0MTdDMjMuMDc2OCAyNi44MjI4IDIzLjA3NjggMjguMDg5MSAyMy44NTc5IDI4Ljg3MDJDMjQuNjM4OSAyOS42NTEyIDI1LjkwNTIgMjkuNjUxMiAyNi42ODYzIDI4Ljg3MDJMMzkuNDE0MiAxNi4xNDIyWk0wIDE0LjcyOFYxNi43MjhIMzhWMTQuNzI4VjEyLjcyOEgwVjE0LjcyOFoiIGZpbGw9IiMxNzk2RDgiLz48L3N2Zz4=");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.about-management {
  margin-top: 100px;
}

.about-management__table {
  table-layout: fixed;
  width: 100%;
  max-width: 1000px;
  margin-inline: auto;
  border-collapse: collapse;
}
.about-management__table tr {
  border-bottom: 1px white solid;
}
.about-management__table th {
  padding: 10px;
  background-color: #1796D8;
  color: white;
  width: 192px;
}
.about-management__table td {
  padding: 10px;
  background-color: #F0FBFE;
}
.about-management__table a {
  color: inherit;
  text-decoration: underline;
}
.about-management__table {
  margin-bottom: 100px;
}

.official-instagram {
  padding-top: 100px;
}

.official-instagram__inner {
  background-color: #FEFEF0;
  width: 875px;
  box-sizing: border-box;
  margin-inline: auto;
  display: flex;
  padding: 40px;
  align-items: center;
}

.official-instagram__heading {
  margin-top: 0;
  display: flex;
  gap: 20px;
}
.official-instagram__heading img {
  width: 49px;
  height: auto;
}

.official-instagram__text {
  margin-bottom: 0;
}

.official-instagram__button {
  flex-basis: 352px;
}

@media (max-width: 767px) {
  .message {
    grid-template-columns: 1fr;
  }
  .message__left,
  .message__right {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  .message__center {
    min-height: auto;
    padding-inline: 20px;
    padding-block: 40px;
  }
  .about-us__heading {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .about-us__text {
    font-size: 16px;
  }
  .about-project {
    margin-top: 50px;
  }
  .about-project img {
    max-width: 100%;
  }
  .about-kokoko {
    margin-top: 60px;
  }
  .good-cycle {
    margin-top: 60px;
  }
  .good-cycle__concept {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }
  .good-cycle__item:not(:last-child)::after {
    top: calc(100% + 10px);
    left: calc(50% - 17px);
    transform: rotate(90deg);
  }
  .about-management {
    margin-top: 60px;
  }
  .about-management__table {
    margin-bottom: 60px;
  }
  .about-management__table th {
    width: 120px;
    font-size: 14px;
  }
  .about-management__table td {
    font-size: 14px;
  }
  .official-instagram {
    padding-top: 60px;
  }
  .official-instagram__inner {
    width: 100%;
    flex-direction: column;
    gap: 20px;
    padding: 24px 20px;
  }
  .official-instagram__button {
    flex-basis: auto;
    width: 100%;
  }
}
/*# sourceMappingURL=custmize.css.map */
