@charset "UTF-8";
/*
============================================================ */
/* header
============================================================ */
.header {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9990;
  -webkit-transform-origin: top center;
          transform-origin: top center;
  background-color: white;
}
@media only screen and (max-width: 1024px) {
  .header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.headerInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0 10px;
  width: 100%;
  padding: 0 0 0;
}
@media print, screen and (min-width: 1025px) {
  .headerInner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-height: var(--height-header);
    margin: 0 auto 0;
  }
}
@media only screen and (max-width: 1024px) {
  .headerInner {
    gap: 0 30px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-line-pack: center;
        align-content: center;
    min-height: var(--height-header_mbl);
  }
}
.header.isScrolled {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9990;
  background: white;
  -webkit-box-shadow: 0 3px 2px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 2px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 1024px) {
  .header.isMenuOpen {
    background-color: var(--color_bg);
  }
}
.header.isMenuOpen .header-bottomMenu {
  display: none;
}
.header .header-bottomMenu {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-color: #f4f3eb;
  padding: 10px 0;
}
.header .header-bottomMenu .header-bottomMenuInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.header .header-bottomMenu .header-bottomMenu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25em 0;
  list-style: none;
  font-size: clamp(12px, 1.56vw, 15px);
  padding: 0;
  margin: 0;
  width: 100%;
  min-width: 350px;
  max-width: 500px;
}
.header .header-bottomMenu .header-bottomMenu-list li {
  -ms-flex-negative: 1;
      flex-shrink: 1;
  position: relative;
  padding: 0 calc(1.25em + 0.5em) 0 1.25em;
  color: #238074;
  font-size: inherit;
  font-weight: bold;
  text-align: center;
}
.header .header-bottomMenu .header-bottomMenu-list li:not(:last-child)::after {
  content: "/";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  color: #4c4948;
}
.header .header-bottomMenu .header-bottomMenu-list li:first-child {
  padding-left: 0;
}
.header .header-bottomMenu .header-bottomMenu-list li:last-child {
  padding-right: 0;
}
.header .header-bottomMenu .header-bottomMenu-list li > a {
  display: block;
  text-decoration: none;
}

.header-logo {
  display: block;
}
@media print, screen and (min-width: 1025px) {
  .header-logo {
    width: 100%;
    max-width: 500px;
    padding: 0 0 0 0.9em;
  }
}
@media only screen and (max-width: 1024px) {
  .header-logo {
    width: calc(100% - (var(--height-header_mbl) * 2));
    padding-left: 3%;
  }
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .header-logo {
    max-width: 300px;
  }
}
@media only screen and (max-width: 599px) {
  .header-logo {
    width: 270px;
  }
}
.header-logoInner {
  display: block;
}

.header-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 100%;
}
@media print, screen and (min-width: 1025px) {
  .header-menu {
    gap: 0 10px;
  }
}
.header-menu .header-menu-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 1024px) {
  .header-menu .header-menu-main {
    width: auto;
  }
}
@media only screen and (max-width: 1024px) {
  .header-menu .header-menu-main .header-navInner .header-login-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 40px 0 50px;
  }
  .header-menu .header-menu-main .header-navInner .header-login-btnInner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: max(140px, 28vw);
    padding: 10px;
    background-color: var(--color_main);
    border-radius: 5px;
  }
  .header-menu .header-menu-main .header-navInner .header-login-btn .btn-text {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-indent: 0.1em;
  }
  .header-menu .header-menu-main .header-navInner .header-social-follow {
    min-height: 300px;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-line-pack: center;
        align-content: center;
    padding: 40px 0 0;
    background-color: #4c4948;
  }
  .header-menu .header-menu-main .header-navInner .header-social-follow .access-title-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .header-menu .header-menu-main .header-navInner .header-social-follow .access-title-wrap .access-title {
    color: #fff;
    font-family: "Shippori Mincho", serif;
    white-space: nowrap;
    line-height: 1em;
    letter-spacing: 0.03em;
  }
}
@media only screen and (max-width: 1024px) and (min-width: 600px) and (max-width: 1024px) {
  .header-menu .header-menu-main .header-navInner .header-social-follow .access-title-wrap .access-title {
    font-size: clamp(29px, 4.84vw, 37px);
  }
}
@media only screen and (max-width: 1024px) and (max-width: 599px) {
  .header-menu .header-menu-main .header-navInner .header-social-follow .access-title-wrap .access-title {
    font-size: clamp(21px, 4.83vw, 29px);
  }
}
@media only screen and (max-width: 1024px) {
  .header-menu .header-menu-main .header-navInner .header-social-follow .access-sns-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 45px;
    padding: 65px 0 85px;
  }
}
@media only screen and (max-width: 1024px) and (max-width: 1024px) {
  .header-menu .header-menu-main .header-navInner .header-social-follow .access-sns-wrap {
    padding: 30px 0 0;
  }
}
@media only screen and (max-width: 1024px) and (min-width: 600px) and (max-width: 1024px) {
  .header-menu .header-menu-main .header-navInner .header-social-follow .access-sns-wrap {
    gap: 40px;
  }
}
@media only screen and (max-width: 1024px) and (max-width: 599px) {
  .header-menu .header-menu-main .header-navInner .header-social-follow .access-sns-wrap {
    gap: 18px;
  }
}
@media only screen and (max-width: 1024px) {
  .header-menu .header-menu-main .header-navInner .header-social-follow .access-sns-wrap .sns-icon {
    background-color: #f4f2ea;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -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;
    text-decoration: none;
  }
  .header-menu .header-menu-main .header-navInner .header-social-follow .access-sns-wrap .sns-icon > img {
    width: 20px;
    height: 20px;
    -o-object-fit: contain;
       object-fit: contain;
    display: block;
  }
}
.header-menu .header-menu-sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  height: 100%;
}
@media only screen and (max-width: 1024px) {
  .header-menu .header-menu-sub {
    width: auto;
  }
}

/********** 開閉式検索エリア **********/
.header-menu-searchContainer {
  height: 50%;
  width: 100%;
  position: relative;
  -webkit-transition: opacity 0.3s ease-in;
  transition: opacity 0.3s ease-in;
}
.header-menu-searchContainer .header-menu-search-toggleBtn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  width: 130px;
  height: 100%;
  color: #fff;
  background-color: var(--color_font);
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease-in;
  transition: background-color 0.2s ease-in;
}
@media only screen and (max-width: 1024px) {
  .header-menu-searchContainer .header-menu-search-toggleBtn {
    width: calc(var(--height-header_mbl) - 30px);
    height: var(--height-header_mbl);
    background-color: transparent;
    padding: 0 0 0;
  }
}
.header-menu-searchContainer .header-menu-search-toggleBtn::before {
  content: "";
  position: absolute;
  display: block;
  width: 30px;
  height: auto;
  aspect-ratio: 1/1;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  background: url(../images/common/icon/icon_search_white.svg) no-repeat center/contain;
  pointer-events: none;
}
@media only screen and (max-width: 1024px) {
  .header-menu-searchContainer .header-menu-search-toggleBtn::before {
    top: 50%;
    left: auto;
    right: 50%;
    background-image: url(../images/common/icon/icon_search.svg);
    -webkit-transform: translate(50%, -50%);
            transform: translate(50%, -50%);
  }
}
@media only screen and (max-width: 1024px) {
  .header-menu-searchContainer .header-menu-search-toggleBtn > .btnInner {
    display: none;
  }
}
.header-menu-searchContainer .header-menu-search-toggleBtn:hover {
  opacity: 1 !important;
}
@media print, screen and (min-width: 1025px) {
  .header-menu-searchContainer .header-menu-search-toggleBtn:hover {
    background-color: var(--color_main);
  }
}

/********** 検索ワード入力エリア **********/
.header-menu-search {
  position: fixed;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(17, 56, 50, 0.86);
  z-index: 9999;
}
.header-menu-searchInner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  width: 90%;
  max-width: var(--width_base);
  max-height: 90%;
  font-size: 19px;
  background-color: #fff;
  padding: 5em 0 5em;
  border-radius: 0.5em;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}
@media only screen and (max-width: 1024px) {
  .header-menu-searchInner {
    font-size: 15px;
  }
}
.header-menu-search .searchPartsBlock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  gap: 3em;
  width: 100%;
  height: 100%;
  font-size: 18px;
  padding: 0 3em;
  overflow-y: scroll;
}
@media only screen and (max-width: 1024px) {
  .header-menu-search .searchPartsBlock {
    font-size: 14px;
  }
}
.header-menu-search .header-menu-search-closeBtn {
  position: absolute;
  display: block;
  top: 1.5em;
  right: 1.5em;
  width: 2.5em;
  height: auto;
  aspect-ratio: 1/1;
}
.header-menu-search .header-menu-search-closeBtn::before, .header-menu-search .header-menu-search-closeBtn::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--color_main);
  top: 50%;
  right: 50%;
}
.header-menu-search .header-menu-search-closeBtn::before {
  -webkit-transform: translate(50%, -50%) rotate(45deg);
          transform: translate(50%, -50%) rotate(45deg);
}
.header-menu-search .header-menu-search-closeBtn::after {
  -webkit-transform: translate(50%, -50%) rotate(-45deg);
          transform: translate(50%, -50%) rotate(-45deg);
}
.header-menu-search .searchPartsWrap {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  max-width: 820px;
  font-size: inherit;
  gap: 3em 2em;
}
.header-menu-search .searchPartsWrap.column__2 {
  grid-template-columns: repeat(2, 1fr);
}
@media only screen and (max-width: 1024px) {
  .header-menu-search .searchPartsWrap.column__2 {
    grid-template-columns: 1fr;
  }
}
.header-menu-search .searchParts {
  width: 100%;
  font-size: inherit;
}
.header-menu-search .searchParts .searchParts-hl {
  display: block;
  width: 100%;
  color: #4c4948;
  font-size: 1.2em;
  font-weight: 700;
  line-height: 1.5em;
  letter-spacing: 0em;
  text-indent: 0em;
  text-align: center;
  margin: 0 0 1.25em;
}
.header-menu-search .searchParts .searchParts-tagList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1em;
  width: 100%;
  font-size: inherit;
  background-color: #f9f9f7;
  border-radius: 0.25em;
  padding: 1.5em 1.5em;
}
.header-menu-search .searchParts .searchParts-tagList > li {
  display: block;
  font-size: inherit;
}
.header-menu-search .searchParts .searchParts-tagList > li > a {
  position: relative;
  display: block;
  color: var(--color_main);
  font-size: inherit;
  font-weight: 500;
  text-decoration: none;
}
.header-menu-search .searchParts .searchParts-tagList > li > a::before {
  content: "# ";
  display: inline;
}
.header-menu-search .searchParts .searchParts-tagList > li > a:hover {
  opacity: 1 !important;
}
@media print, screen and (min-width: 1025px) {
  .header-menu-search .searchParts .searchParts-tagList > li > a:hover {
    text-decoration: underline;
  }
}
.header-menu-search .searchParts .searchParts-tagList.alignCenter {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.header-menu-search .searchParts .searchParts-tagList.type02 {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.header-menu-search .searchParts .searchParts-tagList.type02 > li > a {
  padding: 0 0 0 1.5em;
}
.header-menu-search .searchParts .searchParts-tagList.type02 > li > a::before {
  position: absolute;
  display: block;
  content: "/";
  top: 0;
  left: 0;
}
.header-menu-search .searchParts .searchParts-tagList.type02 > li:first-child > a {
  padding-left: 0;
}
.header-menu-search .searchParts .searchParts-tagList.type02 > li:first-child > a::before {
  content: none;
}
.header-menu-search .searchParts .searchParts-inputTxt {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  min-height: 3em;
  font-size: inherit;
  border: 1px solid #4c4948;
  border-radius: 1.5em;
  padding: 0.5em 3em 0.5em 1.75em;
}
.header-menu-search .searchParts .searchParts-inputTxt input[type=text] {
  width: -o-calc(100% - 40px);
  width: calc(100% - 40px);
  font-size: inherit;
  line-height: 1;
  vertical-align: top;
  height: 100%;
  border: none;
  background-color: transparent;
}
.header-menu-search .searchParts .searchParts-inputTxt input[type=image] {
  position: absolute;
  display: block;
  top: 0;
  right: 0em;
  font-size: initial;
  width: 3.5em;
  height: 100%;
  padding: 0.75em 1.25em 0.75em 0.75em;
}

/********** ログインボタン **********/
.header-menu-loginContainer {
  height: 50%;
  width: 100%;
  background-color: var(--color_main);
  -webkit-transition: border-radius 0.2s ease-in;
  transition: border-radius 0.2s ease-in;
}
.header-menu-loginContainer .header-menu-login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  width: 100%;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}
.top .header-menu-loginContainer {
  border-radius: 0 0 0 6px;
}
.isScrolled .header-menu-loginContainer {
  border-radius: 0 0 0 0;
}

/********** モバイルメニューボタン **********/
#header-mobileMenuBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: var(--height-header_mbl);
  height: var(--height-header_mbl);
  background-color: transparent;
  padding: 20px 15px;
  z-index: 999;
  cursor: pointer;
}
#header-mobileMenuBtn .header-mobileMenuBtnInner {
  position: relative;
  display: block;
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  top: 0;
  left: 0;
}
#header-mobileMenuBtn .header-mobileMenuBtnInner > span {
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  left: 0;
  background-color: var(--color_main);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  border-radius: 2px;
  pointer-events: none;
}
#header-mobileMenuBtn .header-mobileMenuBtnInner > span:nth-child(1) {
  top: 0;
}
#header-mobileMenuBtn .header-mobileMenuBtnInner > span:nth-child(2) {
  top: 50%;
  -webkit-transform: translate(0, -50%) scale(1);
          transform: translate(0, -50%) scale(1);
}
#header-mobileMenuBtn .header-mobileMenuBtnInner > span:nth-child(3) {
  bottom: 0;
}
#header-mobileMenuBtn.isMenuOpen .header-mobileMenuBtnInner > span:nth-child(1) {
  top: 50%;
  -webkit-transform: translate(0, -50%) rotate(30deg);
          transform: translate(0, -50%) rotate(30deg);
}
#header-mobileMenuBtn.isMenuOpen .header-mobileMenuBtnInner > span:nth-child(2) {
  -webkit-transform: translate(0, -50%) scale(0, 1);
          transform: translate(0, -50%) scale(0, 1);
}
#header-mobileMenuBtn.isMenuOpen .header-mobileMenuBtnInner > span:nth-child(3) {
  top: 50%;
  bottom: auto;
  -webkit-transform: translate(0, -50%) rotate(-30deg);
          transform: translate(0, -50%) rotate(-30deg);
}

/*
============================================================ */
/* globalnavi
============================================================ */
.header-nav .header-navInner .header-nav-list li a {
  word-wrap: break-word;
}
.header-nav .header-navInner .header-nav-list li a:hover {
  opacity: 1 !important;
}
.header-nav .header-navInner .header-nav-list li > * {
  cursor: pointer;
}

/********** PCレイアウト **********/
@media print, screen and (min-width: 1025px) {
  .header-nav {
    display: block !important;
    height: auto;
  }
  .header-nav .header-navInner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .header-nav .header-nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .header-nav .header-nav-list > li {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    font-size: clamp(15px, 1.5vw ,18px);
  }
  .header-nav .header-nav-list > li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
    display: inline-block;
    width: 1px;
    height: clamp(15px, 1.5vw ,18px);
    background-color: var(--color_font);
  }
  .header-nav .header-nav-list > li > .menuTitle {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
    color: var(--color_font);
    font-size: inherit;
    font-weight: 700;
    line-height: 1.2em;
    letter-spacing: 0.02em;
    text-align: center;
    padding: 0 1.75em 0;
    text-decoration: none;
    -webkit-transition: color 0.3s ease-in;
    transition: color 0.3s ease-in;
  }
  .header-nav .header-nav-list > li:hover > a {
    opacity: 1 !important;
    color: var(--color_main);
  }
  .header-nav .header-nav-list > li:first-child > .menuTitle::before {
    content: none;
  }
  .header-nav .header-nav-list > li:last-child > .menuTitle::before {
    content: none;
  }
  .header-nav .header-nav-list > li:hover .accordionMenu__02 {
    display: block;
    -webkit-transform: translate(50%, 100%) scale(1, 1);
            transform: translate(50%, 100%) scale(1, 1);
  }
  .header-nav .header-nav-list .accordionMenu__02 {
    display: block;
    position: absolute;
    width: auto;
    height: 0;
    bottom: 4px;
    right: 50%;
    left: auto;
    -webkit-transition: -webkit-transform 0.2s ease-in;
    transition: -webkit-transform 0.2s ease-in;
    transition: transform 0.2s ease-in;
    transition: transform 0.2s ease-in, -webkit-transform 0.2s ease-in;
    -webkit-transform-origin: top center;
            transform-origin: top center;
    -webkit-transform: translate(50%, 100%) scale(1, 0);
            transform: translate(50%, 100%) scale(1, 0);
    padding: 30px 0 0;
  }
  .header-nav .header-nav-list .accordionMenu__02::before {
    content: "";
    position: absolute;
    bottom: 15px;
    right: 50%;
    border: 10px solid transparent;
    border-top: none;
    border-bottom: 16px solid var(--color_font);
    -webkit-transform: translate(50%, 100%);
            transform: translate(50%, 100%);
  }
  .header-nav .header-nav-list .accordionMenu__02Inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 400px;
    background: var(--color_font);
    padding: 10px 20px 10px;
  }
  .header-nav .header-nav-list .accordionMenu__02 .header-nav-list__02 {
    position: relative;
    display: block;
    width: 100%;
  }
  .header-nav .header-nav-list .accordionMenu__02 .header-nav-list__02 > li {
    border-bottom: 1px solid #fff;
  }
  .header-nav .header-nav-list .accordionMenu__02 .header-nav-list__02 > li:last-child {
    border-bottom: none;
  }
  .header-nav .header-nav-list .accordionMenu__02 .header-nav-list__02 > li > .title a {
    position: relative;
    display: block;
    width: 100%;
    color: #fff;
    font-size: 15px;
    line-height: 1.5em;
    text-decoration: none;
    word-wrap: break-word;
    padding: 0.5em 1.5em 0.5em;
  }
  .header-nav .header-nav-list .accordionMenu__02 .header-nav-list__02 > li > .title a::before {
    content: "";
    position: absolute;
    display: block;
    width: 0.75em;
    height: 2px;
    top: 50%;
    left: 0;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
    background-color: var(--color_accent);
    opacity: 0;
    -webkit-transition: opacity 0.3s ease-in;
    transition: opacity 0.3s ease-in;
  }
  .header-nav .header-nav-list .accordionMenu__02 .header-nav-list__02 > li:hover > .title a::before {
    opacity: 1;
  }
  .header-nav .header-nav-list .header-nav-list__02 > li {
    position: relative;
  }
  .header-nav .header-nav-list .header-nav-list__02 > li:hover > .accordionMenu__03 {
    display: block;
  }
  .header-nav .header-nav-list .accordionMenu__03 {
    display: none;
    width: 100%;
  }
  .header-nav .header-nav-list .accordionMenu__03 > .header-nav-list__03 > li {
    padding: 0.5em 1em 0.5em;
  }
  .header-nav .header-nav-list .accordionMenu__03 > .header-nav-list__03 > li > .menuTitle {
    display: block;
    width: 100%;
    color: var(--color_font);
    font-size: 14px;
    text-decoration: none;
  }
}
/********** MOBILEレイアウト **********/
/*** COMMON ****/
/*
	このエリアのCSSは原則変更は不要です。
	サイト独自のStyleは、「STYLE」以降へ記述してください。
*/
@media only screen and (max-width: 1024px) {
  .header-nav {
    position: fixed;
    display: none;
    width: 100%;
    height: 100vh;
    top: 0;
    right: 0;
    pointer-events: none;
    overflow-y: auto;
    z-index: -1;
  }
  .header-nav .header-navInner {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    pointer-events: initial;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    z-index: 2;
  }
}
@media only screen and (max-width: 1024px) and (min-width: 600px) and (max-width: 1024px) {
  .header-nav.isRight .header-navInner, .header-nav.isLeft .header-navInner {
    width: var(--mobileMenu_width_tab);
  }
}
@media only screen and (max-width: 1024px) and (max-width: 599px) {
  .header-nav.isRight .header-navInner, .header-nav.isLeft .header-navInner {
    width: var(--mobileMenu_width_sp);
  }
}
@media only screen and (max-width: 1024px) {
  .header-nav.isRight .header-navInner {
    right: 0;
  }
}
@media only screen and (max-width: 1024px) {
  .header-nav.isLeft .header-navInner {
    left: 0;
  }
}
@media only screen and (max-width: 1024px) {
  .header-nav.isTop .header-navInner {
    height: auto;
  }
}
@media only screen and (max-width: 1024px) {
  .header-nav.isUnder {
    top: var(--height-header_mbl);
  }
  .header-nav.isUnder .header-navInner {
    min-height: calc(100vh - var(--height-header_mbl));
    min-height: calc(100dvh - var(--height-header_mbl));
  }
}
@media only screen and (max-width: 1024px) {
  .header-nav.isSlide .header-navInner {
    opacity: 1;
  }
  .header-nav.isSlide.isRight .header-navInner {
    -webkit-transform: translate(150%, 0);
            transform: translate(150%, 0);
  }
  .header-nav.isSlide.isLeft .header-navInner {
    -webkit-transform: translate(-150%, 0);
            transform: translate(-150%, 0);
  }
  .header-nav.isSlide.isTop .header-navInner {
    -webkit-transform: translate(0, -120%);
            transform: translate(0, -120%);
  }
}
@media only screen and (max-width: 1024px) {
  .header-nav.isOpen {
    pointer-events: initial;
  }
  .header-nav.isOpen.isSlide.isRight .header-navInner, .header-nav.isOpen.isSlide.isLeft .header-navInner, .header-nav.isOpen.isSlide.isTop .header-navInner {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  .header-nav.isOpen .header-navInner {
    opacity: 1;
  }
}
/*** STYLE ****/
@media only screen and (max-width: 1024px) {
  .header-nav {
    padding: 0 0 0;
    background-color: rgba(0, 0, 0, 0.6);
  }
  .header-nav .header-navInner {
    background-color: #fff;
  }

  .header-nav-list {
    width: 100%;
    max-width: 450px;
    margin: 2rem auto 0;
    padding: 0 24px;
  }
  .header-nav-list > li {
    border-bottom: 1px dotted #4c4948;
  }
  .header-nav-list > li:nth-child(5n+1) > .menuTitle::before {
    background-color: var(--color_main);
  }
  .header-nav-list > li:nth-child(5n+2) > .menuTitle::before {
    background-color: #d89364;
  }
  .header-nav-list > li:nth-child(5n+3) > .menuTitle::before {
    background-color: #779dcc;
  }
  .header-nav-list > li:nth-child(5n+4) > .menuTitle::before {
    background-color: #ba7474;
  }
  .header-nav-list > li:nth-child(5n) > .menuTitle::before {
    background-color: #eda9a9;
  }
  .header-nav-list > li > .menuTitle {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
    color: var(--color_font);
    font-size: 19px;
    font-weight: 600;
    line-height: 1.2em;
    letter-spacing: 0em;
    text-align: left;
    padding: 26px 36px 26px 2em;
    text-decoration: none;
  }
  .header-nav-list > li > .menuTitle::before {
    content: "";
    position: absolute;
    display: inline-block;
    top: 50%;
    left: 0.5em;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
    width: 10px;
    height: 2px;
    margin-right: 8px;
    vertical-align: middle;
    background-color: gray;
  }
  .header-nav-list > li.withAccordionMenu__02 > .menuTitle {
    position: relative;
  }
  .header-nav-list > li.withAccordionMenu__02.isAccordionOpen > .menuTitle::after {
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
  .header-nav-list .accordionMenu__02 {
    width: 100%;
    bottom: 0;
  }
  .header-nav-list .accordionMenu__02 .header-nav-list__02 {
    position: relative;
    display: block;
    padding: 0 24px 26px 1.5em;
  }
  .header-nav-list .accordionMenu__02 .header-nav-list__02 > li {
    display: block;
    width: 100%;
    padding: 0 0 0;
    margin: 10px 0 0;
  }
  .header-nav-list .accordionMenu__02 .header-nav-list__02 > li:first-child {
    margin-top: 0;
  }
  .header-nav-list .accordionMenu__02 .header-nav-list__02 > li > .title a {
    position: relative;
    display: block;
    width: 100%;
    color: var(--color_font);
    font-size: 15px;
    text-decoration: none;
    line-height: 1.5em;
    padding: 0 0 0 1.75em;
  }
  .header-nav-list .accordionMenu__02 .header-nav-list__02 > li > .title a::before {
    content: "";
    position: absolute;
    display: block;
    width: 0.75em;
    height: 2px;
    line-height: 1.5em;
    top: -o-calc((1.5em * 0.5) + 1px);
    top: calc((1.5em * 0.5) + 1px);
    left: 0;
    background-color: var(--color_main);
    pointer-events: none;
  }
  .header-nav-list .accordionMenu__02 .header-nav-list__02 > li.withAccordionMenu__03 > .title a {
    position: relative;
  }
  .header-nav-list .accordionMenu__02 .header-nav-list__02 > li.withAccordionMenu__03.isAccordionOpen > .title a::after {
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
}
/*
============================================================ */
/* footer
============================================================ */
.footer {
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -5%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 475px;
  height: 365px;
  background-image: url("../images/common/f_decorator.svg");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  /* 画像がクリックを妨げないように */
  z-index: 1;
}
@media only screen and (max-width: 1024px) {
  .footer::before {
    top: 75%;
    left: -8%;
    width: 255px;
    height: 200px;
  }
}

.footer-access-container {
  padding: 100px 0;
  background-color: var(--color_font);
}
@media only screen and (max-width: 1024px) {
  .footer-access-container {
    padding: 55px 0 100px;
  }
}
.footer-access-container > .lay-contentsContainer > * {
  position: relative;
  z-index: 2;
}
.footer-access-container .access-title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer-access-container .access-title-wrap .access-title {
  color: #fff;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(51px, 4.84vw, 60px);
  white-space: nowrap;
  line-height: 1em;
  letter-spacing: 0.03em;
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .footer-access-container .access-title-wrap .access-title {
    font-size: clamp(43px, 4.84vw, 51px);
  }
}
@media only screen and (max-width: 599px) {
  .footer-access-container .access-title-wrap .access-title {
    font-size: clamp(35px, 4.84vw, 43px);
  }
}
.footer-access-container .access-sns-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 45px;
  padding: 65px 0 85px;
}
@media only screen and (max-width: 1024px) {
  .footer-access-container .access-sns-wrap {
    padding: 30px 0 50px;
  }
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .footer-access-container .access-sns-wrap {
    gap: 40px;
  }
}
@media only screen and (max-width: 599px) {
  .footer-access-container .access-sns-wrap {
    gap: 18px;
  }
}
.footer-access-container .access-sns-wrap .sns-icon {
  background-color: #f4f2ea;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -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;
  text-decoration: none;
}
@media only screen and (max-width: 1024px) {
  .footer-access-container .access-sns-wrap .sns-icon {
    width: 57px;
    height: 57px;
  }
}
.footer-access-container .access-sns-wrap .sns-icon > img {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.footer-access-container .footer-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.75em 0;
  width: 100%;
  color: #fff;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.5em;
  text-indent: 0em;
  text-align: center;
  letter-spacing: 0.16em;
}
@media only screen and (max-width: 1024px) {
  .footer-access-container .footer-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0 20px;
    padding: 0;
    font-size: 15px;
  }
}
.footer-access-container .footer-menu > li {
  position: relative;
  display: block;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-indent: inherit;
}
@media only screen and (max-width: 1024px) {
  .footer-access-container .footer-menu > li {
    border-bottom: 1px solid #AAAAAA;
  }
  .footer-access-container .footer-menu > li:last-child {
    border-bottom: none;
  }
}
.footer-access-container .footer-menu > li::after {
  content: "";
  position: absolute;
  display: block;
  width: 1px;
  height: calc(100% - 0.5em);
  top: 0.25em;
  right: 0;
  background-color: #AAAAAA;
}
@media only screen and (max-width: 1024px) {
  .footer-access-container .footer-menu > li::after {
    content: none;
  }
}
.footer-access-container .footer-menu > li:last-child::after {
  content: none;
}
.footer-access-container .footer-menu > li > a {
  display: block;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-indent: inherit;
  text-decoration: none;
  padding: 0 1.4em;
}
@media only screen and (max-width: 1024px) {
  .footer-access-container .footer-menu > li > a {
    padding: 1em 2em;
  }
}
.footer-access-container .footer-menu > li > a:hover {
  opacity: 1 !important;
}
@media print, screen and (min-width: 1025px) {
  .footer-access-container .footer-menu > li > a:hover {
    text-decoration: underline;
  }
}
.footer-access-container .footer-copyright {
  padding: 45px 0 0;
}
.footer-access-container .footer-copyrightInner {
  text-align: center;
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  padding: 0 0 0;
}
@media only screen and (max-width: 599px) {
  .footer-access-container .footer-copyrightInner {
    font-size: 7px;
  }
}
.footer-access-container .footer-copyrightInner > small {
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 1024px) {
  .footer-access-container .footer-copyrightInner > small {
    font-size: 10px;
  }
}

/*
============================================================ */
/* title
============================================================ */
#lay-title-wrap {
  background: url(../images/common/category-header_bg.svg) no-repeat center/auto 150%;
  background-color: #f4f3eb;
}
#lay-title-wrap .title-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  width: 100%;
  max-width: calc(var(--width_base) + (var(--sidePadding_base) * 2));
  min-height: 260px;
  padding: var(--sidePadding_base);
  margin: 0 auto 0;
}
@media only screen and (max-width: 1024px) {
  #lay-title-wrap .title-inner {
    padding: var(--sidePadding_base_mbl);
  }
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
  #lay-title-wrap .title-inner {
    min-height: 220px;
  }
}
@media only screen and (max-width: 599px) {
  #lay-title-wrap .title-inner {
    min-height: 200px;
  }
}
#lay-title-wrap .title-inner .title {
  font-family: var(--fontFamily_sub);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5em;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  text-align: center;
  padding: 0.2em 0 0;
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
  #lay-title-wrap .title-inner .title {
    font-size: 35px;
  }
}
@media only screen and (max-width: 599px) {
  #lay-title-wrap .title-inner .title {
    font-size: 30px;
  }
}
.gourmet #lay-title-wrap {
  background-color: #f9efe8;
}
.coupon #lay-title-wrap {
  background-color: #f9eae8;
}
.fortune-telling #lay-title-wrap {
  background-color: #f3f3f8;
}

/*
============================================================ */
/* breadcrumbs-list
============================================================ */
#lay-breadcrumbs-list .pankuze_list_items {
  width: 100%;
  color: var(--color_font);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.5em;
  letter-spacing: 0.06em;
  text-align: left;
  padding: 1.5em 30px 1.5em;
  margin: 0 auto 0;
}
@media only screen and (max-width: 1024px) {
  #lay-breadcrumbs-list .pankuze_list_items {
    padding-right: var(--sidePadding_base_mbl);
    padding-left: var(--sidePadding_base_mbl);
  }
}
#lay-breadcrumbs-list .pankuze_list_items > * {
  padding: 0 0.5em;
}
#lay-breadcrumbs-list .pankuze_list_items > *:nth-child(2) {
  padding-left: 0;
}
#lay-breadcrumbs-list .pankuze_list_items > *:last-child {
  padding-right: 0;
}
#lay-breadcrumbs-list .pankuze_list_items a {
  display: inline-block;
  color: var(--color_main);
}
@media only screen and (max-width: 1024px) {
  #lay-breadcrumbs-list .pankuze_list_items a {
    padding: 0 0em;
  }
}
#lay-breadcrumbs-list .pankuze_list_items a:hover {
  opacity: 1 !important;
}
#lay-breadcrumbs-list .scrText {
  display: block !important;
  width: 0 !important;
  height: 0 !important;
  font-size: 0 !important;
  color: transparent !important;
  line-height: 0 !important;
  letter-spacing: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  background: none !important;
}
#lay-breadcrumbs-list .scrText::before, #lay-breadcrumbs-list .scrText::after {
  content: none !important;
}

/*
============================================================ */
/* sect-category-list
============================================================ */
.sect-category-list {
  margin: 4rem 0 4rem;
}
.sect-category-list .none_text {
  display: none;
  text-align: center;
  color: #666;
  font-size: 1.2em;
  font-weight: 700;
  line-height: 1.5em;
  letter-spacing: 0.06em;
  text-indent: 0.06em;
}
.sect-category-list:first-child {
  margin-top: 0;
}
.sect-category-list:last-child {
  margin-bottom: 0;
}

/*
*   CATEGORY LIST 
*----------------------------*/
.com-category-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .com-category-list {
    gap: 2rem;
  }
}
@media only screen and (max-width: 599px) {
  .com-category-list {
    grid-template-columns: 1fr;
  }
}
.com-category-list > li {
  position: relative;
  display: block;
  padding: 0 0 0;
  background-color: #f9f9f7;
  overflow: hidden;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  border-radius: 0.75rem;
}
@media only screen and (max-width: 1024px) {
  .com-category-list > li {
    -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
            box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
  }
}
@media only screen and (max-width: 599px) {
  .com-category-list > li {
    border-radius: 0.5rem;
  }
}
.com-category-list > li a {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
  -webkit-transition: background-color 0.2s ease-in;
  transition: background-color 0.2s ease-in;
}
.com-category-list > li a .thumb {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
}
.com-category-list > li a .date {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.com-category-list > li a .title {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.com-category-list > li a .description {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
.com-category-list > li a .thumb {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 368/253;
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  .com-category-list > li a .thumb {
    aspect-ratio: 368/253;
  }
}
.com-category-list > li a .thumb img {
  position: absolute;
  display: block;
  top: 50%;
  right: 50%;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: -webkit-transform 0.3s ease-in;
  transition: -webkit-transform 0.3s ease-in;
  transition: transform 0.3s ease-in;
  transition: transform 0.3s ease-in, -webkit-transform 0.3s ease-in;
  -webkit-transform: translate(50%, -50%) scale(1);
          transform: translate(50%, -50%) scale(1);
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 0.2s ease-in;
  transition: -webkit-transform 0.2s ease-in;
  transition: transform 0.2s ease-in;
  transition: transform 0.2s ease-in, -webkit-transform 0.2s ease-in;
  border-radius: 0;
}
.com-category-list > li a .txtGroup {
  position: relative;
  padding: 1.5rem 1.75rem 1.5rem;
  text-align: justify;
}
@media only screen and (max-width: 1024px) {
  .com-category-list > li a .txtGroup {
    padding: 1.25rem 1.5rem;
  }
}
.com-category-list > li a .txtGroup .title {
  display: block;
  width: 100%;
  color: var(--color_font);
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1.4em;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25em;
  -webkit-text-decoration-color: rgba(76, 73, 72, 0.5);
          text-decoration-color: rgba(76, 73, 72, 0.5);
  text-align: justify;
  padding: 0 0.2rem 0.25rem;
}
@media only screen and (max-width: 599px) {
  .com-category-list > li a .txtGroup .title {
    font-size: 1.4rem;
  }
}
.com-category-list > li a .txtGroup .title .new {
  display: inline-block;
  background: #fff;
  color: var(--color_main);
  padding: 0.4em 0.5em 0.2em;
  font-size: 0.75em;
  line-height: 1em;
  letter-spacing: 0em;
  text-decoration: none;
  margin-left: 0.5em;
}
@media only screen and (max-width: 1024px) {
  .com-category-list > li a .txtGroup .title .new {
    padding: 0.25em 0.5em;
  }
}
@media only screen and (max-width: 599px) {
  .com-category-list > li a .txtGroup .title .new {
    font-size: 14px;
  }
}
.com-category-list > li a .txtGroup .date,
.com-category-list > li a .txtGroup .description {
  display: block;
  width: 100%;
  color: var(--color_main);
  font-family: var(--fontFamily_sub);
  font-size: 0.95rem;
  font-weight: 500;
  margin: 1.5rem 0 0;
  padding: 0 0.2rem 0;
}
@media only screen and (max-width: 1024px) {
  .com-category-list > li a .txtGroup .date,
.com-category-list > li a .txtGroup .description {
    margin-top: 1.3rem;
  }
}
.com-category-list > li a .txtGroup .title + .date,
.com-category-list > li a .txtGroup .title + .description {
  border-top: 1px solid #eaeae4;
  padding-top: 1.2rem;
}
@media only screen and (max-width: 1024px) {
  .com-category-list > li a .txtGroup .title + .date,
.com-category-list > li a .txtGroup .title + .description {
    padding-top: 1rem;
  }
}
.com-category-list > li a .txtGroup .date {
  font-weight: 500;
  letter-spacing: 0.02em;
}
.com-category-list > li a .txtGroup .date + .description {
  margin-top: 0.5em;
}
.com-category-list > li a:hover {
  opacity: 1 !important;
}
@media print, screen and (min-width: 1025px) {
  .com-category-list > li a:hover .txtGroup .title {
    text-decoration: none;
  }
  .com-category-list > li a:hover .txtGroup::after {
    right: 0.5em;
  }
}
.com-category-list > li a:hover .thumb > img {
  -webkit-transform: translate(50%, -50%) scale(1.2);
          transform: translate(50%, -50%) scale(1.2);
}
.com-category-list > li a[target=_blank] .txtGroup::after {
  border: none;
  width: 1.2rem;
  height: 1.2rem;
  right: 1em;
  -webkit-mask: url("../images/common/icon/icon_new-window.svg");
          mask: url("../images/common/icon/icon_new-window.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: var(--color_main);
}
@media print, screen and (min-width: 1025px) {
  .com-category-list > li a[target=_blank]:hover .txtGroup::after {
    -webkit-animation: key_btn_targetBlank 0.4s ease-in forwards;
            animation: key_btn_targetBlank 0.4s ease-in forwards;
  }
}
@-webkit-keyframes key_btn_targetBlank {
  0% {
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
  50% {
    -webkit-transform: translate(0, -80%);
            transform: translate(0, -80%);
  }
  100% {
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
}
@keyframes key_btn_targetBlank {
  0% {
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
  50% {
    -webkit-transform: translate(0, -80%);
            transform: translate(0, -80%);
  }
  100% {
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
}

/***** お知らせ系ページ用 *****/
.news .com-category-list > li:not(.withImg) > a::before {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  aspect-ratio: 368/253;
  top: 0;
  left: 0;
  overflow: hidden;
  background: url(../images/common/no-img_02.png) no-repeat center/cover;
  background-color: #fff;
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
}
@media only screen and (max-width: 1024px) {
  .news .com-category-list > li:not(.withImg) > a::before {
    aspect-ratio: 368/253;
  }
}

/*
*   NEWS LIST 
*----------------------------*/
.com-news-list ul {
  display: block;
  width: 100%;
  border-top: 1px solid #666;
}
.com-news-list ul li {
  border-bottom: 1px solid #666;
}
.com-news-list ul li > a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -ms-flex-line-pack: baseline;
      align-content: baseline;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0 1.75em;
  width: 100%;
  color: var(--color_font);
  font-size: 1rem;
  line-height: 1.8em;
  letter-spacing: 0.06em;
  text-decoration: none;
  padding: 24px 30px;
  -webkit-transition: background-color 0.2s ease-in;
  transition: background-color 0.2s ease-in;
}
@media only screen and (max-width: 1024px) {
  .com-news-list ul li > a {
    padding: 15px var(--sidePadding_base_mbl);
    gap: 0 1em;
  }
}
@media only screen and (max-width: 599px) {
  .com-news-list ul li > a {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.com-news-list ul li > a .list-category-mark {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.com-news-list ul li > a .date {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.com-news-list ul li > a .title {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
.com-news-list ul li > a .description {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}
.com-news-list ul li > a .list-category-mark {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.com-news-list ul li > a .date {
  display: block;
  letter-spacing: 0em;
  min-width: 4.5em;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-align: center;
}
@media print, screen and (min-width: 600px) {
  .com-news-list ul li > a .date {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.com-news-list ul li > a .title {
  display: block;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media only screen and (max-width: 599px) {
  .com-news-list ul li > a .title {
    width: 100%;
    margin: 8px 0 0;
  }
}
.com-news-list ul li > a .title .new {
  display: inline-block;
  background: #fff;
  color: var(--color_main);
  font-size: 0.75em;
  line-height: 1.25em;
  letter-spacing: 0em;
  text-decoration: none;
  border: 1px solid var(--color_main);
  padding: 0.2em 0.5em;
  margin-left: 1rem;
}
@media only screen and (max-width: 1024px) {
  .com-news-list ul li > a .title .new {
    padding: 0.25em 0.5em;
  }
}
@media only screen and (max-width: 599px) {
  .com-news-list ul li > a .title .new {
    font-size: 14px;
  }
}
.com-news-list ul li > a:hover {
  opacity: 1 !important;
}
@media print, screen and (min-width: 1025px) {
  .com-news-list ul li > a:hover {
    background-color: rgba(237, 244, 243, 0.5);
  }
  .com-news-list ul li > a:hover .title {
    text-decoration: none;
  }
}
.com-news-list .no-content {
  font-size: 1.25em;
  line-height: 1.8em;
  text-align: center;
}

.com-category-mark {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 6.5em;
  color: #fff;
  font-family: var(--fontFamily_sub);
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.5em;
  letter-spacing: 0em;
  text-decoration: none;
  background-color: var(--color_main);
  padding: 0.2em 0.5em 0.2em;
  border-radius: 0.25em;
}

/*
*   MINI SCHEDULE
*----------------------------*/
.com-mini-schedule .calendar-nav {
  text-align: center;
  margin-bottom: 5px;
}

.com-mini-schedule .calendar-nav span {
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}

.com-mini-schedule .calendar-nav span:last-child {
  margin-right: 0;
}

.com-mini-schedule .calendar-nav .now-month {
  font-weight: bold;
  vertical-align: middle;
}

.com-mini-schedule .calendar-nav .prev-month a,
.com-mini-schedule .calendar-nav .next-month a {
  display: inline-block;
  font-weight: bold;
  text-decoration: underline;
  vertical-align: middle;
  cursor: pointer;
}

.com-mini-schedule .calendar-nav .prev-month a:hover,
.com-mini-schedule .calendar-nav .next-month a:hover {
  text-decoration: none;
  opacity: 0.8;
}

.com-mini-schedule .calendar-nav .prev-month a::before,
.com-mini-schedule .calendar-nav .next-month a::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
}

.com-mini-schedule .calendar-nav .prev-month a::before {
  border-width: 6px 8px 6px 0;
  border-color: transparent var(--color_font) transparent transparent;
}

.com-mini-schedule .calendar-nav .next-month a::after {
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent var(--color_font);
}

.com-mini-schedule .mini-calendar {
  table-layout: fixed;
  border-collapse: collapse;
  width: auto;
  margin: 0 auto;
}

.com-mini-schedule .mini-calendar .cal-head {
  width: auto;
  height: auto;
  padding: 2px 5px;
  color: var(--color_font);
  background: #f8f7f7;
  border: 1px solid #6c6c6c;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
}

.com-mini-schedule .mini-calendar .cal-day {
  width: auto;
  height: auto;
  padding: 2px 5px;
  border: 1px solid #6c6c6c;
  text-align: center;
  vertical-align: middle;
}

.com-mini-schedule .mini-calendar .cal-day.gogoshinryoubi {
  background: #c4d9ea;
}

.com-mini-schedule .mini-calendar .cal-day.kyuushinbi {
  background: #ffd3d3;
}

.com-mini-schedule .mini-calendar .cal-day.pre_month,
.com-mini-schedule .mini-calendar .cal-day.next_month {
  background: #f8f7f7;
}

.com-mini-schedule .mini-calendar .cal-head.saturday,
.com-mini-schedule .mini-calendar .cal-day.saturday {
  color: #0a5fa0;
}

.com-mini-schedule .mini-calendar .cal-head.sunday,
.com-mini-schedule .mini-calendar .cal-day.sunday {
  color: #f80000;
}

/*
*   CALENDAR LEGENDS
*----------------------------*/
.com-calendar-legends ul {
  margin: 5px 0 0;
  text-align: center;
}

.com-calendar-legends ul > li {
  display: inline-block;
  margin-right: 5px;
  padding-left: 0;
  font-size: 0.9333333333em;
  text-indent: 0;
}

.com-calendar-legends ul > li:last-child {
  margin-right: 0;
}

.com-calendar-legends ul > li::before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-bottom: 4px;
  margin-right: 5px;
  border-radius: 0;
  background: var(--color_font);
  vertical-align: middle;
}

.com-calendar-legends ul > li.all-day::before {
  background: #ffd3d3;
}

.com-calendar-legends ul > li.afternoon::before {
  background: #c4d9ea;
}

/*
*   SIDE BNR LIST
*----------------------------*/
.com-side-bnr-list {
  margin-bottom: 40px;
}
@media only screen and (max-width: 1024px) {
  .com-side-bnr-list {
    margin-bottom: 20px;
  }
}

.com-side-bnr-list:last-child {
  margin-bottom: 0;
}

.com-side-bnr-list li {
  margin-bottom: 20px;
}
@media only screen and (max-width: 1024px) {
  .com-side-bnr-list li {
    margin-bottom: 10px;
  }
}

.com-side-bnr-list li:last-child {
  margin-bottom: 0;
}

.com-side-bnr-list li img {
  width: 100%;
  height: auto;
}

/*
============================================================ */
/* skip-header
============================================================ */
.skip-header {
  position: absolute;
  left: -9999px;
  overflow: hidden;
}

/*
*   anchorlink
*----------------------------*/
.com-anchorLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}
.com-anchorLink .listItem {
  display: block;
  background-color: var(--color_sub);
  margin: 10px 0 0;
}
@media print, screen and (min-width: 1025px) {
  .com-anchorLink .listItem {
    width: 24%;
  }
  .com-anchorLink .listItem:nth-child(-n+4) {
    margin-top: 0;
  }
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .com-anchorLink .listItem {
    width: 32%;
  }
  .com-anchorLink .listItem:nth-child(-n+3) {
    margin-top: 0;
  }
}
@media only screen and (max-width: 1024px) {
  .com-anchorLink .listItem {
    width: 48%;
  }
  .com-anchorLink .listItem:nth-child(-n+2) {
    margin-top: 0;
  }
}
.com-anchorLink .listItemInner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  color: var(--color_font);
  text-decoration: none;
  padding: 0.25em 1.5em 0.25em 0.5em;
}
.com-anchorLink .listItemInner::before {
  content: "";
  position: absolute;
  display: block;
  width: 0.5em;
  height: 0.5em;
  top: 50%;
  right: 0.5em;
  -webkit-transform: translate(0, -50%) rotate(135deg);
          transform: translate(0, -50%) rotate(135deg);
  border: 2px solid var(--color_font);
  border-left: none;
  border-bottom: none;
  pointer-events: none;
}

/* calendar-nav-warp
============================================================ */
.calendar-nav-warp {
  margin-bottom: 15px;
}
.calendar-nav-warp .calendar-nav {
  float: left;
  width: 42.5%;
}
.calendar-nav-warp .calendar-nav span {
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}
.calendar-nav-warp .calendar-nav span:last-child {
  margin-right: 0;
}
.calendar-nav-warp .calendar-nav .now-month {
  font-size: 1.2em;
  font-weight: bold;
}
.calendar-nav-warp .calendar-nav .prev-month a {
  display: inline-block;
  height: 36px;
  padding: 8px 17px;
  background: #6c6c6c;
  color: #fff;
  border: 1px solid #6c6c6c;
  font-weight: bold;
  line-height: 1.2;
  text-decoration: none;
  vertical-align: middle;
}
.calendar-nav-warp .calendar-nav .prev-month a:hover {
  opacity: 0.8;
}
.calendar-nav-warp .calendar-nav .prev-month a::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  margin-right: 5px;
  border-width: 6px 8px 6px 0;
  border-color: transparent #fff transparent transparent;
}
.calendar-nav-warp .calendar-nav .next-month a {
  display: inline-block;
  height: 36px;
  padding: 8px 17px;
  background: #6c6c6c;
  color: #fff;
  border: 1px solid #6c6c6c;
  font-weight: bold;
  line-height: 1.2;
  text-decoration: none;
  vertical-align: middle;
}
.calendar-nav-warp .calendar-nav .next-month a:hover {
  opacity: 0.8;
}
.calendar-nav-warp .calendar-nav .next-month a::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  margin-left: 5px;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #fff;
}
.calendar-nav-warp .calendar-category {
  float: right;
  width: 57.5%;
}
.calendar-nav-warp .calendar-category form {
  text-align: right;
  vertical-align: middle;
}
.calendar-nav-warp .calendar-category form label {
  margin-right: 1px;
  letter-spacing: 0;
}
.calendar-nav-warp .calendar-category form select {
  width: 210px;
  height: 36px;
  margin-right: 6px;
  line-height: 36px;
}
.calendar-nav-warp .calendar-category form input[type=submit] {
  display: inline-block;
  height: 36px;
  padding: 8px 17px;
  background: #6c6c6c;
  color: #fff;
  border: 1px solid #6c6c6c;
  font-weight: bold;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

@media only screen and (max-width: 1024px) {
  .calendar-nav-warp {
    margin-bottom: 20px;
  }
  .calendar-nav-warp .calendar-nav {
    float: none;
    width: 100%;
    text-align: center;
  }
  .calendar-nav-warp .calendar-nav .prev-month a::before {
    border-width: 5.5px 7px 5.5px 0;
  }
  .calendar-nav-warp .calendar-nav .next-month a::after {
    border-width: 5.5px 0 5.5px 7px;
  }
  .calendar-nav-warp .calendar-category {
    float: none;
    width: 100%;
    margin-top: 20px;
  }
  .calendar-nav-warp .calendar-category form {
    text-align: center;
  }
  .calendar-nav-warp .calendar-category form label {
    display: none;
  }
  .calendar-nav-warp .calendar-category form select {
    margin-right: -0.4em;
  }
  .calendar-nav-warp .calendar-category form input[type=submit] {
    width: 80px;
    padding: 8px 2px;
  }
}
@media only screen and (max-width: 599px) {
  .calendar-nav-warp .calendar-nav .prev-month a {
    padding: 8px 12px;
  }
  .calendar-nav-warp .calendar-nav .next-month a {
    padding: 8px 12px;
  }
  .calendar-nav-warp .calendar-category form select {
    width: 175px;
  }
  .calendar-nav-warp .calendar-category form input[type=submit] {
    padding: 8px 12px;
  }
}
/* sect-calendar
============================================================ */
.sect-calendar .one-calendar {
  display: table;
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}
.sect-calendar .one-calendar .week-wrap {
  display: table-row;
}
.sect-calendar .one-calendar .week-wrap .cal-head {
  display: table-cell;
  padding: 2px 0;
  background: #f8f7f7;
  border: 1px solid #6c6c6c;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
}
.sect-calendar .one-calendar .week-wrap .cal-day {
  display: table-cell;
  height: 100px;
  border: 1px solid #6c6c6c;
  vertical-align: top;
}
.sect-calendar .one-calendar .week-wrap .cal-day .day {
  display: block;
  font-size: 0.9333333333em;
  text-align: center;
}
.sect-calendar .one-calendar .week-wrap .cal-day .wday {
  display: block;
  font-size: 0.9333333333em;
  text-align: center;
  display: none;
}
.sect-calendar .one-calendar .week-wrap .cal-day .label {
  display: block;
  font-size: 0.8em;
  text-align: center;
}
.sect-calendar .one-calendar .week-wrap .cal-day ul {
  padding: 0 5px 5px;
  text-indent: 0;
}
.sect-calendar .one-calendar .week-wrap .cal-day ul li .calendar_item {
  display: inline-block;
  padding-left: 0.9em;
  line-height: 1.6;
  text-indent: -0.9em;
}
.sect-calendar .one-calendar .week-wrap .cal-day ul li .calendar_item::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-bottom: 2px;
  margin-right: 2px;
  background: var(--color_font);
  border-radius: 100%;
  vertical-align: middle;
}
.sect-calendar .one-calendar .week-wrap .cal-day ul li .calendar_item .title a {
  color: var(--color_font);
  font-size: 0.9333333333em;
  text-indent: 0;
}
.sect-calendar .one-calendar .week-wrap .cal-day ul li .calendar_item .time {
  display: inline-block;
  padding: 0 5px;
  background: #e2e2e2;
  font-size: 0.8em;
  text-indent: 0;
}
.sect-calendar .one-calendar .week-wrap .cal-head.saturday {
  background: #c4d9ea;
  color: #0a5fa0;
}
.sect-calendar .one-calendar .week-wrap .cal-day.saturday {
  background: #c4d9ea;
}
.sect-calendar .one-calendar .week-wrap .cal-day.saturday .day {
  color: #0a5fa0;
}
.sect-calendar .one-calendar .week-wrap .cal-day.saturday .wday {
  color: #0a5fa0;
}
.sect-calendar .one-calendar .week-wrap .cal-head.sunday {
  background: #ffd3d3;
  color: #f80000;
}
.sect-calendar .one-calendar .week-wrap .cal-day.sunday {
  background: #ffd3d3;
}
.sect-calendar .one-calendar .week-wrap .cal-day.sunday .day {
  color: #f80000;
}
.sect-calendar .one-calendar .week-wrap .cal-day.sunday .wday {
  color: #f80000;
}
.sect-calendar .one-calendar .week-wrap .cal-day.holiday {
  background: #ffd3d3;
}
.sect-calendar .one-calendar .week-wrap .cal-day.holiday .day {
  color: #f80000;
}
.sect-calendar .one-calendar .week-wrap .cal-day.holiday .wday {
  color: #f80000;
}
.sect-calendar .one-calendar .week-wrap .cal-day.holiday .label {
  color: #f80000;
}
.sect-calendar .one-calendar .week-wrap .cal-day.today {
  background: #ffeed3;
}
.sect-calendar .one-calendar .week-wrap .cal-day.today .day {
  color: #f89b00;
}
.sect-calendar .one-calendar .week-wrap .cal-day.today .wday {
  color: #f89b00;
}
.sect-calendar .one-calendar .week-wrap .cal-day.today .label {
  color: #f89b00;
}
.sect-calendar .one-calendar .week-wrap .cal-day.blank {
  background: #f8f7f7;
}

@media only screen and (max-width: 1024px) {
  .sect-calendar .one-calendar {
    border-top: 1px solid #6c6c6c;
  }
  .sect-calendar .one-calendar .week-wrap .cal-head {
    display: none;
  }
  .sect-calendar .one-calendar .week-wrap .cal-day {
    display: block;
    height: auto;
    padding: 5px 10px;
    border-top: none;
  }
  .sect-calendar .one-calendar .week-wrap .cal-day .day {
    display: inline-block;
    text-align: left;
  }
  .sect-calendar .one-calendar .week-wrap .cal-day .wday {
    display: inline-block;
    text-align: left;
  }
  .sect-calendar .one-calendar .week-wrap .cal-day .label {
    display: inline-block;
    margin-left: 5px;
  }
  .sect-calendar .one-calendar .week-wrap .cal-day ul li .calendar_item::before {
    width: 6px;
    height: 6px;
  }
  .sect-calendar .one-calendar .week-wrap .cal-day.blank {
    display: none;
  }
}
/* sect-weekly-calendar
============================================================ */
.sect-weekly-calendar .weekly-calendar {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}
.sect-weekly-calendar .weekly-calendar th {
  padding: 2px 0;
  background: #f8f7f7;
  border: 1px solid #6c6c6c;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
}
.sect-weekly-calendar .weekly-calendar th.wday-0 {
  color: #f80000;
  background: #ffd3d3;
}
.sect-weekly-calendar .weekly-calendar th.wday-6 {
  color: #0a5fa0;
  background: #c4d9ea;
}
.sect-weekly-calendar .weekly-calendar th.today {
  color: #f89b00;
  background: #ffeed3;
  border: 2px solid #ffc057;
}
.sect-weekly-calendar .weekly-calendar th.cal-hour-head {
  vertical-align: top;
}
.sect-weekly-calendar .weekly-calendar td {
  height: 100px;
  border: 1px solid #6c6c6c;
  vertical-align: top;
}
.sect-weekly-calendar .weekly-calendar td table th {
  padding: 0;
  background: none;
  border: none;
  vertical-align: top;
}
.sect-weekly-calendar .weekly-calendar td table td {
  padding: 0;
  background: none;
  border: none;
  vertical-align: top;
}
.sect-weekly-calendar .weekly-calendar td.today {
  background: #ffeed3;
  border: 2px solid #ffc057;
  border-top-width: 1px;
  border-bottom-width: 1px;
}
.sect-weekly-calendar .weekly-calendar tr:last-child td.today {
  border-bottom: 2px solid #ffc057;
}

@media only screen and (max-width: 1024px) {
  .sect-weekly-calendar {
    position: relative;
    overflow: scroll;
    height: calc(100vh - 60px - 40px);
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .sect-weekly-calendar .weekly-calendar th.today {
    border-width: 1px;
  }
  .sect-weekly-calendar .weekly-calendar th.cal-day-head {
    position: sticky;
    top: 0;
    z-index: 1;
    white-space: nowrap;
    width: 150px;
  }
  .sect-weekly-calendar .weekly-calendar th.cal-day-head:first-child {
    width: 75px;
  }
  .sect-weekly-calendar .weekly-calendar th.cal-hour-head {
    position: sticky;
    left: 0;
    z-index: 1;
    white-space: nowrap;
    width: 75px;
  }
  .sect-weekly-calendar .weekly-calendar td.today {
    border-width: 1px;
  }
  .sect-weekly-calendar .weekly-calendar tr:last-child td.today {
    border-width: 1px;
  }
}
/* sect-calendar-info
============================================================ */
.sect-calendar-info .cal-day-tbl {
  width: 100%;
  margin-bottom: 2em;
  border: 1px solid #6c6c6c;
}
.sect-calendar-info .cal-day-tbl:last-child {
  margin-bottom: 0;
}
.sect-calendar-info .cal-day-tbl th {
  padding: 5px 10px;
  border: 1px solid #6c6c6c;
  text-align: left;
  vertical-align: top;
  width: 20%;
  color: #fff;
  background: #999;
}
.sect-calendar-info .cal-day-tbl td {
  padding: 5px 10px;
  border: 1px solid #6c6c6c;
  text-align: left;
  vertical-align: top;
  background: #fff;
}
.sect-calendar-info .cal-day-tbl td a {
  color: var(--color_font);
  text-decoration: none;
  cursor: default;
  pointer-events: none;
}

@media only screen and (max-width: 599px) {
  .sect-calendar-info .cal-day-tbl {
    display: block;
    width: 100%;
    padding-bottom: 2em;
    border-right: none;
    border-left: none;
  }
  .sect-calendar-info .cal-day-tbl:last-child {
    padding-bottom: 0;
  }
  .sect-calendar-info .cal-day-tbl tbody {
    display: block;
    width: 100%;
  }
  .sect-calendar-info .cal-day-tbl tr {
    display: block;
    width: 100%;
  }
  .sect-calendar-info .cal-day-tbl th {
    display: block;
    width: 100%;
    border-right: none;
    border-left: none;
  }
  .sect-calendar-info .cal-day-tbl td {
    display: block;
    width: 100%;
    border-right: none;
    border-left: none;
    min-height: 40px;
    border-top: none;
  }
}
/* section-club
============================================================ */
.section-club .sub-section-photo-movie {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin-bottom: 100px;
}
.section-club .sub-section-photo-movie:last-child {
  margin-bottom: 0;
}
.section-club .sub-section-photo-movie > div {
  margin: 0 40px 0 0;
}
.section-club .sub-section-photo-movie > div:last-child {
  margin-right: 0;
}
.section-club .sub-section-photo {
  width: calc(50% - 20px);
}
.section-club .sub-section-photo .slick-item {
  vertical-align: top;
  height: 327px;
}
.section-club .sub-section-photo .slick-item:nth-child(n+2) {
  display: none;
}
.section-club .sub-section-photo .slick-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-club .sub-section-photo .slick-list {
  z-index: 1;
}
.section-club .sub-section-photo .slick-arrow {
  top: 0;
  z-index: 2;
  width: 50px;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.section-club .sub-section-photo .slick-arrow:hover {
  opacity: 1;
}
.section-club .sub-section-photo .slick-arrow::before {
  content: "";
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  border-top: 2px solid #6c6c6c;
  border-right: 2px solid #6c6c6c;
  background: none;
  opacity: 1;
}
.section-club .sub-section-photo .slick-prev {
  left: 0;
}
.section-club .sub-section-photo .slick-prev::before {
  -webkit-transform: translateX(105%) rotate(-135deg);
  transform: translateX(105%) rotate(-135deg);
}
.section-club .sub-section-photo .slick-next {
  right: 0;
}
.section-club .sub-section-photo .slick-next::before {
  -webkit-transform: translateX(40%) rotate(45deg);
  transform: translateX(40%) rotate(45deg);
}
.section-club .sub-section-photo .slick-dots {
  position: absolute;
  bottom: inherit;
  margin-bottom: 0;
}
.section-club .sub-section-photo .slick-dots li {
  width: 10px;
  height: 10px;
  padding: 0;
  text-indent: 0;
}
.section-club .sub-section-photo .slick-dots li::before {
  content: none;
}
.section-club .sub-section-photo .slick-dots li button {
  width: 10px;
  height: 10px;
  line-height: 1;
}
.section-club .sub-section-photo .slick-dots li button::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #6c6c6c;
  border-radius: 10px;
  line-height: 1;
  opacity: 0.5;
}
.section-club .sub-section-photo .slick-dots li.slick-active button::before {
  opacity: 1;
}
.section-club .sub-section-photo.slick-initialized .slick-item {
  display: inline-block;
}
.section-club .sub-section-movie {
  width: calc(50% - 20px);
}
.section-club .sub-section-movie:last-child {
  margin-bottom: 0;
}
.section-club .sub-section-movie iframe {
  width: 100%;
  height: 327px;
}

@media screen and (max-width: 1060px) {
  .section-club .sub-section-photo .slick-item {
    height: calc((100vw - 40px - 40px) / 2 * .66736);
  }
  .section-club .sub-section-movie iframe {
    height: calc((100vw - 40px - 40px) / 2 * .66736);
  }
}
@media only screen and (max-width: 1024px) {
  .section-club .sub-section-photo-movie {
    display: block;
    margin-bottom: 50px;
  }
  .section-club .sub-section-photo-movie > div {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 80px;
  }
  .section-club .sub-section-photo-movie > div:last-child {
    margin: 0 auto;
  }
  .section-club .sub-section-photo .slick-item {
    height: auto;
  }
  .section-club .sub-section-movie iframe {
    height: 280px;
  }
}
@media screen and (max-width: 540px) {
  .section-club .sub-section-photo-movie > div {
    margin-bottom: 70px;
  }
  .section-club .sub-section-movie iframe {
    height: calc((100vw - 40px) * .56);
  }
}
/*
============================================================ */
/* colorbox
============================================================ */
#cboxLoadingGraphic {
  position: relative;
  background: none !important;
}
#cboxLoadingGraphic::after {
  content: "";
  position: absolute;
  z-index: -1;
  overflow: hidden;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
  width: 50px;
  height: 50px;
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-left-color: #6c6c6c;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load-animation 1.1s infinite linear;
  animation: load-animation 1.1s infinite linear;
}

#cboxTitle {
  width: 100%;
  padding-right: 30px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#cboxPrevious,
#cboxNext {
  position: absolute;
  background: none;
  width: 40px !important;
  height: 60px !important;
  top: calc(50% - 15px) !important;
  background-color: #000, 0.5;
}
#cboxPrevious::before,
#cboxNext::before {
  content: "";
  position: absolute;
  top: calc(50% - 9px);
  z-index: 1;
  display: inline-block;
  width: 15px;
  height: 15px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  text-indent: 0;
}

#cboxPrevious::before {
  left: calc(50% - 3px);
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

#cboxNext::before {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  right: calc(50% - 4px);
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

#cboxClose {
  position: absolute;
  background: none !important;
  width: 30px !important;
  height: 30px !important;
}
#cboxClose::before, #cboxClose::after {
  content: "";
  position: absolute;
  display: inline-block;
  top: calc(50% - 18px);
  left: calc(50% - 1px);
  width: 2px;
  height: 30px;
  background: #fff;
  text-indent: 0;
}
#cboxClose::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
#cboxClose::after {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

@media only screen and (max-width: 1024px) {
  #cboxLoadingGraphic::after {
    top: calc(50% - 20px);
    left: calc(50% - 20px);
    width: 40px;
    height: 40px;
  }
}
/*
*   FORM
*----------------------------*/
.tbl-form {
  margin-top: 2rem;
}

/* sect-form
============================================================ */
.sect-form .required {
  color: #cc4242;
}
.sect-form .sect-form-body {
  width: 100%;
}
@media print, screen and (min-width: 600px) {
  .sect-form .sect-form-body {
    table-layout: fixed;
  }
}
.sect-form .sect-form-body,
.sect-form .sect-form-body td,
.sect-form .sect-form-body th {
  border: 1px solid var(--tableLine_color);
}
@media only screen and (max-width: 599px) {
  .sect-form .sect-form-body {
    border-bottom: none;
  }
}
@media only screen and (max-width: 599px) {
  .sect-form .sect-form-body tr {
    display: block;
  }
}
@media print, screen and (min-width: 1025px) {
  .sect-form .sect-form-body th {
    width: 300px;
  }
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .sect-form .sect-form-body th {
    width: 250px;
  }
}
@media only screen and (max-width: 599px) {
  .sect-form .sect-form-body th {
    display: block;
    width: 100% !important;
    border: none;
    border-bottom: 1px solid var(--tableLine_color);
  }
}
@media only screen and (max-width: 599px) {
  .sect-form .sect-form-body td {
    display: block;
    width: 100% !important;
    border: none;
    border-bottom: 1px solid var(--tableLine_color);
  }
}
.sect-form .sect-form-body th .label-list-wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -ms-flex-line-pack: baseline;
      align-content: baseline;
  padding-right: 40px;
  font-weight: inherit;
}
.sect-form .sect-form-body th .label-list-wrap > label {
  font-weight: inherit;
}
.sect-form .sect-form-body th .label-list-wrap .required {
  position: absolute;
  top: 0.3rem;
  right: 0;
  padding: 4px 4px 4px;
  background-color: #cc4242;
  border-radius: 0.25em;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  text-indent: 0;
  line-height: 1em;
  vertical-align: top;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body th .label-list-wrap .required {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
.sect-form .sect-form-body td p {
  margin: 0.5em 0;
  font-size: 0.8em;
}
.sect-form .sect-form-body label {
  cursor: pointer;
}
.sect-form .sect-form-body input[type=text],
.sect-form .sect-form-body input[type=tel],
.sect-form .sect-form-body input[type=date],
.sect-form .sect-form-body input[type=email],
.sect-form .sect-form-body input[type=password],
.sect-form .sect-form-body select {
  height: calc(10px * 2 + 1.5em);
  line-height: 1.5em;
  padding: 10px 10px;
}
.sect-form .sect-form-body input[type=text] {
  width: 100%;
}
@media print, screen and (min-width: 1025px) {
  .sect-form .sect-form-body input[type=text] {
    max-width: 400px;
  }
}
.sect-form .sect-form-body input[type=tel] {
  width: 100%;
}
@media print, screen and (min-width: 1025px) {
  .sect-form .sect-form-body input[type=tel] {
    max-width: 15em;
  }
}
.sect-form .sect-form-body input[type=date] {
  width: 100%;
}
@media print, screen and (min-width: 1025px) {
  .sect-form .sect-form-body input[type=date] {
    max-width: 160px;
  }
}
.sect-form .sect-form-body input[type=email] {
  width: 100%;
}
@media print, screen and (min-width: 1025px) {
  .sect-form .sect-form-body input[type=email] {
    max-width: 256em;
  }
}
.sect-form .sect-form-body input[type=password] {
  width: 100%;
}
@media print, screen and (min-width: 1025px) {
  .sect-form .sect-form-body input[type=password] {
    max-width: 400px;
  }
}
.sect-form .sect-form-body textarea {
  padding: 10px 10px;
  width: 100%;
  min-height: 30vh;
  line-height: 1.5em;
  resize: vertical;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body textarea {
    min-height: 30vh;
    max-height: 50vh;
  }
}
.sect-form .sect-form-body select {
  max-width: 100%;
}
.sect-form .sect-form-body input[type=text].p-postal-code {
  max-width: 200px;
}
.sect-form .sect-form-body .form-multi-fields-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  gap: 0.75em 1.5em;
}
.sect-form .sect-form-body .form-multi-fields-block label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  line-height: 1.5em;
  gap: 0 0.5em;
}
.sect-form .sect-form-body .input_error {
  background-color: #ffd3d3;
  border-color: #ff5757;
}
.sect-form .sect-form-body .enquete-form-errors-list {
  color: #f80000;
  font-weight: bold;
}
.sect-form .sect-form-body .enquete-form-errors-list span {
  display: block;
}
.sect-form .sect-form-body .tbl-form-paragraph {
  margin-top: 0;
}
.sect-form .sect-form-body .enquete-item-width-20-per {
  max-width: initial !important;
  width: 20% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-20-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-21-per {
  max-width: initial !important;
  width: 21% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-21-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-22-per {
  max-width: initial !important;
  width: 22% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-22-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-23-per {
  max-width: initial !important;
  width: 23% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-23-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-24-per {
  max-width: initial !important;
  width: 24% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-24-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-25-per {
  max-width: initial !important;
  width: 25% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-25-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-26-per {
  max-width: initial !important;
  width: 26% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-26-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-27-per {
  max-width: initial !important;
  width: 27% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-27-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-28-per {
  max-width: initial !important;
  width: 28% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-28-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-29-per {
  max-width: initial !important;
  width: 29% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-29-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-30-per {
  max-width: initial !important;
  width: 30% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-30-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-31-per {
  max-width: initial !important;
  width: 31% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-31-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-32-per {
  max-width: initial !important;
  width: 32% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-32-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-33-per {
  max-width: initial !important;
  width: 33% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-33-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-34-per {
  max-width: initial !important;
  width: 34% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-34-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-35-per {
  max-width: initial !important;
  width: 35% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-35-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-36-per {
  max-width: initial !important;
  width: 36% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-36-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-37-per {
  max-width: initial !important;
  width: 37% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-37-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-38-per {
  max-width: initial !important;
  width: 38% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-38-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-39-per {
  max-width: initial !important;
  width: 39% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-39-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-40-per {
  max-width: initial !important;
  width: 40% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-40-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-41-per {
  max-width: initial !important;
  width: 41% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-41-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-42-per {
  max-width: initial !important;
  width: 42% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-42-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-43-per {
  max-width: initial !important;
  width: 43% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-43-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-44-per {
  max-width: initial !important;
  width: 44% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-44-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-45-per {
  max-width: initial !important;
  width: 45% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-45-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-46-per {
  max-width: initial !important;
  width: 46% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-46-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-47-per {
  max-width: initial !important;
  width: 47% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-47-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-48-per {
  max-width: initial !important;
  width: 48% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-48-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-49-per {
  max-width: initial !important;
  width: 49% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-49-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-50-per {
  max-width: initial !important;
  width: 50% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-50-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-51-per {
  max-width: initial !important;
  width: 51% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-51-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-52-per {
  max-width: initial !important;
  width: 52% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-52-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-53-per {
  max-width: initial !important;
  width: 53% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-53-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-54-per {
  max-width: initial !important;
  width: 54% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-54-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-55-per {
  max-width: initial !important;
  width: 55% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-55-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-56-per {
  max-width: initial !important;
  width: 56% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-56-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-57-per {
  max-width: initial !important;
  width: 57% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-57-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-58-per {
  max-width: initial !important;
  width: 58% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-58-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-59-per {
  max-width: initial !important;
  width: 59% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-59-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-60-per {
  max-width: initial !important;
  width: 60% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-60-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-61-per {
  max-width: initial !important;
  width: 61% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-61-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-62-per {
  max-width: initial !important;
  width: 62% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-62-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-63-per {
  max-width: initial !important;
  width: 63% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-63-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-64-per {
  max-width: initial !important;
  width: 64% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-64-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-65-per {
  max-width: initial !important;
  width: 65% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-65-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-66-per {
  max-width: initial !important;
  width: 66% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-66-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-67-per {
  max-width: initial !important;
  width: 67% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-67-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-68-per {
  max-width: initial !important;
  width: 68% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-68-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-69-per {
  max-width: initial !important;
  width: 69% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-69-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-70-per {
  max-width: initial !important;
  width: 70% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-70-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-71-per {
  max-width: initial !important;
  width: 71% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-71-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-72-per {
  max-width: initial !important;
  width: 72% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-72-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-73-per {
  max-width: initial !important;
  width: 73% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-73-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-74-per {
  max-width: initial !important;
  width: 74% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-74-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-75-per {
  max-width: initial !important;
  width: 75% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-75-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-76-per {
  max-width: initial !important;
  width: 76% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-76-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-77-per {
  max-width: initial !important;
  width: 77% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-77-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-78-per {
  max-width: initial !important;
  width: 78% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-78-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-79-per {
  max-width: initial !important;
  width: 79% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-79-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-80-per {
  max-width: initial !important;
  width: 80% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-80-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-81-per {
  max-width: initial !important;
  width: 81% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-81-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-82-per {
  max-width: initial !important;
  width: 82% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-82-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-83-per {
  max-width: initial !important;
  width: 83% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-83-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-84-per {
  max-width: initial !important;
  width: 84% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-84-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-85-per {
  max-width: initial !important;
  width: 85% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-85-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-86-per {
  max-width: initial !important;
  width: 86% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-86-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-87-per {
  max-width: initial !important;
  width: 87% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-87-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-88-per {
  max-width: initial !important;
  width: 88% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-88-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-89-per {
  max-width: initial !important;
  width: 89% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-89-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-90-per {
  max-width: initial !important;
  width: 90% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-90-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-91-per {
  max-width: initial !important;
  width: 91% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-91-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-92-per {
  max-width: initial !important;
  width: 92% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-92-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-93-per {
  max-width: initial !important;
  width: 93% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-93-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-94-per {
  max-width: initial !important;
  width: 94% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-94-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-95-per {
  max-width: initial !important;
  width: 95% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-95-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-96-per {
  max-width: initial !important;
  width: 96% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-96-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-97-per {
  max-width: initial !important;
  width: 97% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-97-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-98-per {
  max-width: initial !important;
  width: 98% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-98-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-99-per {
  max-width: initial !important;
  width: 99% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-99-per {
    width: 100% !important;
  }
}
.sect-form .sect-form-body .enquete-item-width-100-per {
  max-width: initial !important;
  width: 100% !important;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body .enquete-item-width-100-per {
    width: 100% !important;
  }
}
.sect-form .tbl-login th {
  width: 180px;
}
.sect-form .sect-form-error {
  margin-bottom: 2em;
  padding: 15px 20px;
  color: #f80000;
  background: #ffd3d3;
  border: 2px solid #ff5757;
}
.sect-form .sect-form-error:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-error {
    margin-bottom: 1.5em;
  }
}
.sect-form .sect-form-error li::before {
  background: #f80000;
}
.sect-form .sect-form-limit {
  margin-bottom: 2em;
  padding: 15px 20px;
  color: #f89b00;
  background: #ffeed3;
  border: 2px solid #ffc057;
}
.sect-form .sect-form-limit:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-limit {
    margin-bottom: 1.5em;
  }
}
.sect-form .sect-form-count {
  margin-bottom: 2em;
  padding: 15px 20px;
  color: #0a5fa0;
  background: #c4d9ea;
  border: 2px solid #4584b5;
}
.sect-form .sect-form-count:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-count {
    margin-bottom: 1.5em;
  }
}
.sect-form .sect-form-msg {
  margin-bottom: 2em;
}
@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-msg {
    margin-bottom: 1.5em;
  }
}
.sect-form .sect-form-msg:last-child {
  margin-bottom: 0;
}

/* sect-form-complete
============================================================ */
.sect-form-complete p {
  text-align: center;
}
.sect-form-complete p.double-mb {
  color: var(--color_main);
  font-size: 1.5em;
  font-weight: 700;
  margin-bottom: 2em;
}

@media only screen and (max-width: 1024px) {
  .sect-form-complete p {
    text-align: left;
  }
}
.label-field-hint {
  font-size: 0.8em;
  opacity: 0.9;
}

/*
*   汎用 
*----------------------------*/
/* リンクバナー一覧
============================================================ */
.com-banners-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .com-banners-list {
    gap: 20px;
  }
}
@media only screen and (max-width: 599px) {
  .com-banners-list {
    gap: 18px;
  }
}
.com-banners-list .linkBanner {
  display: block;
  border-radius: 15px;
  overflow: hidden;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  width: calc(50% - 20px);
}
@media only screen and (max-width: 1024px) {
  .com-banners-list .linkBanner {
    border-radius: 6px;
    -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
            box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
  }
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .com-banners-list .linkBanner {
    width: calc(50% - 10px);
  }
}
@media only screen and (max-width: 599px) {
  .com-banners-list .linkBanner {
    width: 100%;
    max-width: max(240px, 64vw);
  }
}
.com-banners-list .linkBanner > img {
  -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;
  aspect-ratio: 580/250;
}
.com-banners-list .linkBanner:hover {
  opacity: 1 !important;
}
@media print, screen and (min-width: 1025px) {
  .com-banners-list .linkBanner:hover > img {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}

/* 記事サムネイル一覧 （画像・文章 縦並び）
============================================================ */
.com-postCardsBlock {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  padding: 28px 0 0;
}
@media only screen and (max-width: 1024px) {
  .com-postCardsBlock {
    padding-top: 25px;
  }
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .com-postCardsBlock {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
}
@media only screen and (max-width: 599px) {
  .com-postCardsBlock {
    grid-template-columns: 1fr;
    gap: 30px 18px;
    justify-items: center;
  }
}
.com-postCardsBlock .postCard {
  position: relative;
}
@media only screen and (max-width: 599px) {
  .com-postCardsBlock .postCard {
    max-width: 450px;
  }
}
.com-postCardsBlock .postCardInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
  background-color: #fff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
@media only screen and (max-width: 1024px) {
  .com-postCardsBlock .postCardInner {
    border-radius: 8px;
    -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
            box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
  }
}
.com-postCardsBlock .postCard .postCard-pictWrap {
  position: relative;
  display: block;
  overflow: hidden;
}
.com-postCardsBlock .postCard .postCard-pictWrap > img {
  aspect-ratio: 368/253;
  -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;
}
.com-postCardsBlock .postCard .postCard-pictWrap:hover {
  opacity: 1 !important;
}
@media print, screen and (min-width: 1025px) {
  .com-postCardsBlock .postCard .postCard-pictWrap:hover > img {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
.com-postCardsBlock .postCard .postCard-txtBlock {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 16px 0;
  padding: 22px 25px 22px;
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .com-postCardsBlock .postCard .postCard-txtBlock {
    padding: max(15px, 2.0vw);
  }
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .com-postCardsBlock .postCard .postCard-txtBlock {
    row-gap: 12px;
  }
}
@media only screen and (max-width: 599px) {
  .com-postCardsBlock .postCard .postCard-txtBlock {
    row-gap: 10px;
    padding: 12px;
  }
}
.com-postCardsBlock .postCard .postCard-hlWrap {
  display: block;
  color: var(--color_font);
  text-decoration: underline;
}
.com-postCardsBlock .postCard .postCard-hlWrap .postCard-hl {
  display: block;
  color: inherit;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.75em;
  letter-spacing: 0.04em;
  text-indent: 0em;
  text-align: justify;
  margin-top: -0.375em;
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .com-postCardsBlock .postCard .postCard-hlWrap .postCard-hl {
    font-size: 16px;
  }
}
@media only screen and (max-width: 599px) {
  .com-postCardsBlock .postCard .postCard-hlWrap .postCard-hl {
    font-size: 13px;
  }
}
.com-postCardsBlock .postCard .postCard-hlWrap:hover {
  opacity: 1 !important;
}
@media print, screen and (min-width: 1025px) {
  .com-postCardsBlock .postCard .postCard-hlWrap:hover {
    text-decoration: none;
  }
}
.com-postCardsBlock .postCard .postCard-dateCatGroup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  gap: 16px 1rem;
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .com-postCardsBlock .postCard .postCard-dateCatGroup {
    row-gap: 12px;
  }
}
@media only screen and (max-width: 599px) {
  .com-postCardsBlock .postCard .postCard-dateCatGroup {
    gap: 10px;
  }
}
.com-postCardsBlock .postCard .postCard-dateCatGroup .postCard-date {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  color: var(--color_main);
  font-size: 18px;
  font-weight: 400;
  line-height: 1em;
  letter-spacing: 0em;
  text-indent: 0em;
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .com-postCardsBlock .postCard .postCard-dateCatGroup .postCard-date {
    font-size: 14px;
  }
}
@media only screen and (max-width: 599px) {
  .com-postCardsBlock .postCard .postCard-dateCatGroup .postCard-date {
    font-size: 12px;
  }
}
.com-postCardsBlock .postCard .postCard-dateCatGroup .postCard-categorys {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
@media only screen and (max-width: 1024px) {
  .com-postCardsBlock .postCard .postCard-dateCatGroup .postCard-categorys {
    gap: 8px;
  }
}
.com-postCardsBlock .postCard .postCard-tags {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-line-pack: end;
      align-content: flex-end;
  gap: 8px 15px;
}
@media only screen and (max-width: 1024px) {
  .com-postCardsBlock .postCard .postCard-tags {
    gap: 6px;
  }
}
/* 記事サムネイル一覧 （画像・文章 横並び）
============================================================ */
.com-postCardsBlock__sideBySide {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: min(7vw, 84px) min(5.66vw, 68px);
  padding: 28px 0 0;
}
@media only screen and (max-width: 1024px) {
  .com-postCardsBlock__sideBySide {
    gap: 40px;
    padding-top: 25px;
  }
}
@media print, screen and (max-width: 799px) {
  .com-postCardsBlock__sideBySide {
    grid-template-columns: 1fr;
    gap: 0 40px;
  }
}
.com-postCardsBlock__sideBySide .postCard {
  position: relative;
}
@media print, screen and (max-width: 799px) {
  .com-postCardsBlock__sideBySide .postCard {
    padding: clamp(24px, 6.4vw, 36px) 0;
  }
  .com-postCardsBlock__sideBySide .postCard:first-child {
    padding-top: 0;
  }
  .com-postCardsBlock__sideBySide .postCard:last-child {
    padding-bottom: 0;
  }
  .com-postCardsBlock__sideBySide .postCard:last-child::before {
    content: none;
  }
  .com-postCardsBlock__sideBySide .postCard::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-bottom: 1px dotted #cccccc;
  }
}
.com-postCardsBlock__sideBySide .postCardInner {
  position: relative;
  display: grid;
  grid-template-columns: auto min(54%, 300px);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 5%;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 1024px) {
  .com-postCardsBlock__sideBySide .postCardInner {
    grid-template-columns: auto 54%;
    gap: min(5%, 30px);
  }
}
.com-postCardsBlock__sideBySide .postCard .com-postNewMark {
  font-size: 12px;
  width: 3.5em;
  -webkit-transform: translate(20%, -50%);
          transform: translate(20%, -50%);
}
@media only screen and (max-width: 1024px) {
  .com-postCardsBlock__sideBySide .postCard .com-postNewMark {
    font-size: 10px;
  }
}
.com-postCardsBlock__sideBySide .postCard .postCard-pictWrap {
  position: relative;
  display: block;
  border-radius: 10px;
  border: 1px solid #ccc;
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  .com-postCardsBlock__sideBySide .postCard .postCard-pictWrap {
    border-radius: 6px;
  }
}
.com-postCardsBlock__sideBySide .postCard .postCard-pictWrap > img {
  aspect-ratio: 368/253;
  -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;
}
.com-postCardsBlock__sideBySide .postCard .postCard-pictWrap:hover {
  opacity: 1 !important;
}
@media print, screen and (min-width: 1025px) {
  .com-postCardsBlock__sideBySide .postCard .postCard-pictWrap:hover > img {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
.com-postCardsBlock__sideBySide .postCard .postCard-txtBlock {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 16px 0;
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .com-postCardsBlock__sideBySide .postCard .postCard-txtBlock {
    row-gap: 12px;
  }
}
@media only screen and (max-width: 599px) {
  .com-postCardsBlock__sideBySide .postCard .postCard-txtBlock {
    row-gap: 10px;
  }
}
.com-postCardsBlock__sideBySide .postCard .postCard-hlWrap {
  display: block;
  color: var(--color_font);
  text-decoration: underline;
}
.com-postCardsBlock__sideBySide .postCard .postCard-hlWrap .postCard-hl {
  display: block;
  color: inherit;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.75em;
  letter-spacing: 0.02em;
  text-indent: 0em;
  text-align: justify;
  margin-top: -0.375em;
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .com-postCardsBlock__sideBySide .postCard .postCard-hlWrap .postCard-hl {
    font-size: 16px;
  }
}
@media only screen and (max-width: 599px) {
  .com-postCardsBlock__sideBySide .postCard .postCard-hlWrap .postCard-hl {
    font-size: 13px;
  }
}
.com-postCardsBlock__sideBySide .postCard .postCard-hlWrap:hover {
  opacity: 1 !important;
}
@media print, screen and (min-width: 1025px) {
  .com-postCardsBlock__sideBySide .postCard .postCard-hlWrap:hover {
    text-decoration: none;
  }
}
.com-postCardsBlock__sideBySide .postCard .postCard-dateCatGroup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  gap: 16px 1rem;
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .com-postCardsBlock__sideBySide .postCard .postCard-dateCatGroup {
    row-gap: 12px;
  }
}
@media only screen and (max-width: 599px) {
  .com-postCardsBlock__sideBySide .postCard .postCard-dateCatGroup {
    gap: 10px;
  }
}
.com-postCardsBlock__sideBySide .postCard .postCard-dateCatGroup .postCard-date {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  color: var(--color_main);
  font-size: 16px;
  font-weight: 400;
  line-height: 1em;
  letter-spacing: 0em;
  text-indent: 0em;
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .com-postCardsBlock__sideBySide .postCard .postCard-dateCatGroup .postCard-date {
    font-size: 14px;
  }
}
@media only screen and (max-width: 599px) {
  .com-postCardsBlock__sideBySide .postCard .postCard-dateCatGroup .postCard-date {
    font-size: 12px;
  }
}
.com-postCardsBlock__sideBySide .postCard .postCard-dateCatGroup .postCard-categorys {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
@media only screen and (max-width: 1024px) {
  .com-postCardsBlock__sideBySide .postCard .postCard-dateCatGroup .postCard-categorys {
    gap: 8px;
  }
}
.com-postCardsBlock__sideBySide .postCard .postCard-tags {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-line-pack: end;
      align-content: flex-end;
  gap: 8px 15px;
}
@media only screen and (max-width: 1024px) {
  .com-postCardsBlock__sideBySide .postCard .postCard-tags {
    gap: 6px;
  }
}

/* 記事NEWマーク
============================================================ */
.com-postNewMark {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  top: 0;
  left: 0;
  width: 4em;
  height: auto;
  aspect-ratio: 1/1;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
  background-color: var(--color_main);
  border-radius: 50%;
  -webkit-transform: translate(30%, -50%);
          transform: translate(30%, -50%);
  z-index: 2;
}
@media only screen and (max-width: 1024px) {
  .com-postNewMark {
    font-size: 12px;
    width: 3.5em;
  }
}

/* 記事カテゴリ
============================================================ */
.com-postCat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  min-width: 5.5em;
  color: var(--color_font);
  font-family: var(--fontFamily_sub);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4em;
  letter-spacing: 0em;
  text-indent: 0em;
  text-align: center;
  padding: 0.1em 0.5em;
  background-color: #f4f3eb;
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .com-postCat {
    font-size: 12px;
  }
}
@media only screen and (max-width: 599px) {
  .com-postCat {
    font-size: 10px;
  }
}
.com-postCat.catGourmet {
  background-color: #f4e1d3;
}
.com-postCat.catLifeStyle {
  background-color: #fbe6e7;
}
.com-postCat.catGoingOut {
  background-color: #dbeada;
}

/* 記事タグ
============================================================ */
.com-postTag {
  position: relative;
  display: block;
  color: var(--color_main);
  font-family: var(--fontFamily_sub);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4em;
  letter-spacing: 0em;
  text-indent: 0em;
  text-decoration: none;
  padding: 0 0 0 1em;
}
.com-postTagInner {
  padding: 0;
  border: none;
  background-color: transparent;
  color: var(--color_main);
  font-family: var(--fontFamily_sub);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4em;
  letter-spacing: 0em;
}
.com-postTagInner:hover {
  text-decoration: underline;
}
@media print, screen and (min-width: 1025px) {
  .com-postTagInner:hover {
    cursor: pointer;
  }
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .com-postTag {
    font-size: 12px;
  }
}
@media only screen and (max-width: 599px) {
  .com-postTag {
    font-size: 10px;
  }
}
.com-postTag::before {
  position: absolute;
  content: "#";
  display: block;
  top: 50%;
  left: 5%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.com-postTag:hover {
  opacity: 1;
}
@media print, screen and (min-width: 1025px) {
  .com-postTag:hover {
    text-decoration: underline;
  }
}

/* おすすめ記事
============================================================ */
.com-recommendPostsBlock {
  position: relative;
  padding: 90px 0 110px;
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .com-recommendPostsBlock {
    padding: 80px 0 80px;
  }
}
@media only screen and (max-width: 599px) {
  .com-recommendPostsBlock {
    padding: 60px 0 60px;
  }
}
.com-recommendPostsBlock::before {
  content: "";
  position: absolute;
  display: block;
  width: 100vw;
  height: 100%;
  top: 0;
  right: 50%;
  -webkit-transform: translate(50%, 0);
          transform: translate(50%, 0);
  background-color: #f9f9f7;
}

/* 詳細ページ用一覧へ戻るボタン
============================================================ */
.com-backBtnBlock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
.com-backBtnBlock .com-btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: initial;
  min-width: initial;
}

/* りびえーる記事検索フォーム
============================================================ */
.livingyell-article-search-form {
  margin-bottom: 100px;
}
.livingyell-article-search-form legend {
  font-size: 1.4em;
  font-weight: 600;
  color: var(--color_link);
}
.livingyell-article-search-form fieldset {
  padding: 1.6em 2em 2em;
  margin-bottom: 40px;
  border: 1px;
  background-color: #f9f9f7;
  border-radius: 5px;
}
.livingyell-article-search-form input[type=text] {
  padding: 20px;
  font-size: 1.3em;
  border-radius: 5px;
}
.livingyell-article-search-form a {
  color: var(--color_link);
  padding-right: 12px;
  font-family: var(--fontFamily_sub);
  font-size: 90%;
}
.livingyell-article-search-form .btn {
  background-color: #4c4948;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 20px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  font-weight: bold;
}
.livingyell-article-search-form .all-tags-section {
  margin-top: 50px;
  margin-bottom: 5px;
}
.livingyell-article-search-form .all-tags-section:first-of-type {
  margin-top: 10px;
}

/*
============================================================ */
/* page-top
============================================================ */
.lay-page-top {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 400;
}
@media only screen and (max-width: 1024px) {
  .lay-page-top {
    bottom: 0;
    right: 0;
  }
}
@media print {
  .lay-page-top {
    display: none;
  }
}
.lay-page-top a {
  display: none;
  width: 92px;
  text-decoration: none;
}
@media only screen and (max-width: 1024px) {
  .lay-page-top a {
    width: 50px;
  }
}
.lay-page-top a:hover {
  opacity: 0.8;
}

.com-follow-banner {
  display: none;
  position: fixed;
  left: var(--sidePadding_base);
  bottom: 1rem;
  width: calc(100% - 92px - 20px);
  max-width: 390px;
  z-index: 400;
  -webkit-filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.8));
          filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.8));
}
@media only screen and (max-width: 1024px) {
  .com-follow-banner {
    width: calc(100% - 60px - 20px);
    max-width: 185px;
    left: var(--sidePadding_base_mbl);
    -webkit-filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.8));
            filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.8));
  }
}
.com-follow-bannerInner {
  display: block;
  position: relative;
}
.com-follow-banner .com-follow-banner-linkBtn {
  display: block;
}
.com-follow-banner .com-follow-banner-closeBtn {
  position: absolute;
  display: block;
  width: 12%;
  height: auto;
  aspect-ratio: 1/1;
  top: 0;
  right: 0;
  font-size: 0;
  line-height: 0;
  letter-spacing: 0;
  color: transparent;
  border-radius: 50%;
}

/* pagination
============================================================ */
.pagination {
  --color_pagination: var(--color_main);
  margin: 80px 0 30px;
  text-align: right;
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .pagination {
    margin: 60px 0 30px;
  }
}
@media only screen and (max-width: 599px) {
  .pagination {
    margin: 50px 0 30px;
  }
}
.pagination:first-child {
  margin-top: 0;
}
.pagination:last-child {
  margin-bottom: 0;
}
.pagination span {
  width: 40px;
  height: 40px;
  margin: 0 2.5px 0;
  border-radius: 4px;
}
.pagination span:first-child {
  margin-left: 0;
}
.pagination span:last-child {
  margin-right: 0;
}
.pagination span a {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  border: solid 1px var(--color_pagination);
  font-size: 16px;
  color: var(--color_main);
  line-height: 38px;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  border-radius: 4px;
  -webkit-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
}
.pagination span a:hover {
  font-weight: bold;
  color: #fff;
  background-color: var(--color_pagination);
  text-decoration: none;
  opacity: 1;
}
.pagination span.current {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  border: solid 1px var(--color_pagination);
  font-size: 16px;
  color: var(--color_font);
  line-height: 38px;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  font-weight: bold;
  color: #fff;
  background-color: var(--color_pagination);
  text-decoration: none;
  opacity: 1;
}
.pagination span.prev a {
  text-indent: -9999px;
  overflow: hidden;
}
.pagination span.prev a:hover {
  color: #fff;
  background-color: var(--color_pagination);
}
.pagination span.prev a:hover::before {
  border-top-color: #fff;
  border-right-color: #fff;
}
.pagination span.prev a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(50% - 4px);
  width: 10px;
  height: 10px;
  border-top: 1px solid var(--color_main);
  border-right: 1px solid var(--color_main);
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
  pointer-events: none;
  -webkit-transform: translate(-50%, -50%) rotate(225deg);
  transform: translate(-50%, -50%) rotate(225deg);
  left: calc(50% + 4px);
}
.pagination span.next a {
  text-indent: -9999px;
  overflow: hidden;
}
.pagination span.next a:hover {
  color: #fff;
  background-color: var(--color_pagination);
}
.pagination span.next a:hover::before {
  border-top-color: #fff;
  border-right-color: #fff;
}
.pagination span.next a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(50% - 4px);
  width: 10px;
  height: 10px;
  border-top: 1px solid var(--color_main);
  border-right: 1px solid var(--color_main);
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
  pointer-events: none;
}
.pagination span.first a {
  text-indent: -9999px;
  overflow: hidden;
}
.pagination span.first a:hover {
  color: #fff;
  background-color: var(--color_pagination);
}
.pagination span.first a:hover::before {
  border-top-color: #fff;
  border-right-color: #fff;
}
.pagination span.first a:hover::after {
  border-top-color: #fff;
  border-right-color: #fff;
}
.pagination span.first a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(50% - 4px);
  width: 10px;
  height: 10px;
  border-top: 1px solid var(--color_main);
  border-right: 1px solid var(--color_main);
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
  pointer-events: none;
  -webkit-transform: translate(-50%, -50%) rotate(225deg);
  transform: translate(-50%, -50%) rotate(225deg);
  left: calc(50% + 1px);
}
.pagination span.first a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(50% - 4px);
  width: 10px;
  height: 10px;
  border-top: 1px solid var(--color_font);
  border-right: 1px solid var(--color_font);
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
  pointer-events: none;
  -webkit-transform: translate(-50%, -50%) rotate(225deg);
  transform: translate(-50%, -50%) rotate(225deg);
  left: calc(50% + 7px);
}
.pagination span.last a {
  text-indent: -9999px;
  overflow: hidden;
}
.pagination span.last a:hover {
  color: #fff;
  background-color: var(--color_pagination);
}
.pagination span.last a:hover::before {
  border-top-color: #fff;
  border-right-color: #fff;
}
.pagination span.last a:hover::after {
  border-top-color: #fff;
  border-right-color: #fff;
}
.pagination span.last a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(50% - 4px);
  width: 10px;
  height: 10px;
  border-top: 1px solid var(--color_main);
  border-right: 1px solid var(--color_main);
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
  pointer-events: none;
  left: calc(50% - 7px);
}
.pagination span.last a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(50% - 4px);
  width: 10px;
  height: 10px;
  border-top: 1px solid var(--color_main);
  border-right: 1px solid var(--color_main);
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
  pointer-events: none;
  left: calc(50% - 1px);
}

@media only screen and (max-width: 1024px) {
  .pagination {
    text-align: center;
  }
}
@media screen and (max-width: 620px) {
  .pagination span.page:not(.current) {
    display: none;
  }
}
/*
============================================================ */
/* sect-groups
============================================================ */
.sect-groups > ul {
  display: table;
  table-layout: fixed;
  width: 100%;
  margin: 0 0 -40px;
  word-spacing: -0.4em;
}
.sect-groups > ul > li {
  position: relative;
  display: inline-block;
  overflow: hidden;
  width: calc((100% - 60px) / 3 - .1px);
  margin: 0 30px 40px 0;
  text-indent: 0;
  vertical-align: top;
  word-spacing: normal;
}
.sect-groups > ul > li:nth-child(3n+3) {
  margin-right: 0;
}
.sect-groups > ul > li a {
  position: relative;
  display: inline-block;
  padding-left: 15px;
  font-weight: bold;
}
.sect-groups > ul > li a::before {
  content: "";
  display: block;
  position: absolute;
  left: -3px;
  top: calc(50% - 2px);
  width: 8px;
  height: 8px;
  background: none;
  border-top: 1px solid #6c6c6c;
  border-right: 1px solid #6c6c6c;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.sect-groups > ul > li > ul {
  padding: 0 15px;
}
.sect-groups > ul > li ul li {
  margin-top: 4px;
  text-indent: 0;
}
.sect-groups > ul > li ul li a {
  font-weight: lighter;
}
.sect-groups > ul > li ul li ul li {
  padding-left: 20px;
}
.sect-groups > ul li::before {
  content: none;
}

@media only screen and (max-width: 1024px) {
  .sect-groups > ul > li {
    width: calc((100% - 20px) / 2 - .1px);
    margin: 0 20px 30px 0;
  }
  .sect-groups > ul > li:nth-child(3n+3) {
    margin-right: 20px;
  }
  .sect-groups > ul > li:nth-child(2n+2) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 599px) {
  .sect-groups > ul > li {
    width: 100%;
    margin: 0 0 20px 0;
  }
  .sect-groups > ul > li:nth-child(3n+3) {
    margin-right: 0;
  }
}
/* page-body + page-side
============================================================ */
.page-body + .page-side {
  margin-top: 100px;
}
.page-body > *:first-child {
  margin-top: 0 !important;
}

@media only screen and (max-width: 1024px) {
  .page-body + .page-side {
    margin-top: 80px;
  }
}
/*
*   SIDE MENU LIST
*----------------------------*/
.com-side-menu-list .sideHeader > h3 {
  display: block;
  width: 100%;
  color: #fff;
  font-size: 1.2rem;
  font-family: var(--fontFamily_sub);
  font-weight: 600;
  line-height: 1.5em;
  letter-spacing: 0.1em;
  background: var(--color_font);
  padding: 0.75em 1.6em 0.65em;
  border-radius: 0.6rem 0.6rem 0 0;
}
@media only screen and (max-width: 599px) {
  .com-side-menu-list .sideHeader > h3 {
    border-radius: 0.5rem 0.5rem 0 0;
  }
}
.com-side-menu-list .sideBody {
  display: block;
}
.com-side-menu-list .sideBody > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  border: 1px solid var(--color_font);
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 0 0.6rem 0.6rem;
}
@media only screen and (max-width: 599px) {
  .com-side-menu-list .sideBody > ul {
    border-radius: 0 0 0.5rem 0.5rem;
  }
}
.com-side-menu-list .sideBody > ul > li {
  display: block;
  border-bottom: 1px solid var(--color_font);
}
.com-side-menu-list .sideBody > ul > li:last-child {
  border-bottom: none;
}
.com-side-menu-list .sideBody > ul > li > a,
.com-side-menu-list .sideBody > ul > li > span {
  display: block;
  color: var(--color_font);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: var(--lineHeight_base);
  letter-spacing: var(--letterSpacing_base);
  padding: 0.75em 2em 0.75em 0.75em;
}
.com-side-menu-list .sideBody > ul > li > .active {
  font-weight: 800;
}
.com-side-menu-list .sideBody > ul > li > a {
  position: relative;
  -webkit-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
  cursor: pointer;
}
.com-side-menu-list .sideBody > ul > li > a::after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border: 0.4em solid transparent;
  border-left: 0.5em solid var(--color_main);
  border-right: none;
  top: 50%;
  right: 1em;
  -webkit-transition: right 0.2s ease-in;
  transition: right 0.2s ease-in;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.com-side-menu-list .sideBody > ul > li > a:hover {
  opacity: 1 !important;
}
@media print, screen and (min-width: 1025px) {
  .com-side-menu-list .sideBody > ul > li > a:hover {
    text-decoration: none;
    background-color: #f9f9f7;
  }
  .com-side-menu-list .sideBody > ul > li > a:hover::after {
    right: 0.5em;
  }
}

/*
============================================================ */
/* sect-search-results
============================================================ */
.sect-search-results {
  margin: 80px 0 0;
}
@media only screen and (max-width: 1024px) {
  .sect-search-results {
    margin-top: 50px;
  }
}
.sect-search-results:first-of-type {
  margin-top: 0 !important;
}
.sect-search-results .num-of-hits {
  color: var(--color_main);
  margin-right: 10px;
  margin-left: 10px;
  text-align: right;
}
.sect-search-results .no-result {
  margin-right: 10px;
  margin-left: 10px;
}
.sect-search-results .search-result-list {
  margin-right: 10px;
  margin-left: 10px;
}
.sect-search-results .search-result-list li {
  position: relative;
  margin-bottom: 2em;
  text-indent: 0;
  padding-left: 1.5rem;
}
.sect-search-results .search-result-list li::before {
  position: absolute;
  content: "";
  display: block;
  width: 0.5em;
  height: 0.5em;
  top: 0.8em;
  left: 0;
  background-color: var(--color_main);
  border-radius: 50%;
}
.sect-search-results .search-result-list li::after {
  content: "";
  clear: both;
  display: block;
}
.sect-search-results .search-result-list li .title > a {
  color: var(--color_font);
}
.sect-search-results .search-result-list li .thumb {
  display: none !important;
}
.sect-search-results .search-result-list li .date {
  display: none !important;
}

/* sect-site-search
============================================================ */
.sect-site-search {
  max-width: 600px;
  margin: 4em auto 0;
  padding: 40px;
  background: #f8f8f8;
}
.sect-site-search input[type=text] {
  width: calc(100% - 70px);
  height: 60px;
  padding: 2px 20px;
  background: #999;
  color: #fff;
  border: none;
  border-radius: 60px;
  line-height: 56px;
}
.sect-site-search input[type=text]::-webkit-input-placeholder {
  color: #fff;
}
.sect-site-search input[type=text]::-moz-placeholder {
  color: #fff;
}
.sect-site-search input[type=text]:-ms-input-placeholder {
  color: #fff;
}
.sect-site-search input[type=text]::-ms-input-placeholder {
  color: #fff;
}
.sect-site-search input[type=text]::placeholder {
  color: #fff;
}
.sect-site-search input[type=text]:-ms-input-placeholder {
  color: #fff;
}
.sect-site-search input[type=text]::-ms-input-placeholder {
  color: #fff;
}
.sect-site-search input[type=image] {
  display: inline-block;
  outline: none;
  width: 60px;
  height: 60px;
  margin-left: calc(10px - .4em);
  padding: 10px;
  vertical-align: top;
}

@media only screen and (max-width: 1024px) {
  .sect-site-search {
    margin-top: 2em;
    padding: 20px;
  }
  .sect-site-search input[type=text] {
    width: calc(100% - 50px);
    height: 50px;
    padding: 2px 20px;
    border-radius: 50px;
    line-height: 46px;
  }
  .sect-site-search input[type=image] {
    width: 50px;
    height: 50px;
    margin-left: -0.4em;
    padding: 10px;
  }
}
@media only screen and (max-width: 599px) {
  .sect-site-search {
    padding: 20px 15px;
  }
  .sect-site-search input[type=text] {
    width: calc(100% - 40px);
    height: 40px;
    line-height: 36px;
  }
  .sect-site-search input[type=image] {
    width: 40px;
    height: 40px;
    padding: 7px;
  }
}
/* sect-sitemap
============================================================ */
.sect-sitemap > .sitemap-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px 40px;
  width: 100%;
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .sect-sitemap > .sitemap-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 20px;
  }
}
@media only screen and (max-width: 599px) {
  .sect-sitemap > .sitemap-list {
    grid-template-columns: 1fr;
    gap: 40px 20px;
  }
}
.sect-sitemap > .sitemap-list > li {
  display: block;
}
.sect-sitemap > .sitemap-list > li > span {
  display: block;
  color: var(--color_font);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5em;
  letter-spacing: 0.06em;
  margin-bottom: 13px;
}
.sect-sitemap > .sitemap-list > li > span > a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  color: var(--color_font);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.5em;
  letter-spacing: var(--letterSpacing_base);
  text-decoration: none;
  text-align: left;
  padding: 0.7em 2em 0.7em 0.5em;
  border-bottom: 1px solid var(--color_font);
  cursor: pointer;
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
}
.sect-sitemap > .sitemap-list > li > span > a::after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  top: 50%;
  right: 0.5em;
  border: 0.35em solid transparent;
  border-left: 0.35em solid var(--color_main);
  border-right: none;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-transition: right 0.2s ease-in, left 0.2s ease-in;
  transition: right 0.2s ease-in, left 0.2s ease-in;
}
.sect-sitemap > .sitemap-list > li > span > a:hover {
  opacity: 1 !important;
}
@media print, screen and (min-width: 1025px) {
  .sect-sitemap > .sitemap-list > li > span > a:hover::after {
    right: 0.25em;
  }
}
.sect-sitemap > .sitemap-list > li ul {
  margin-top: 1em;
  padding: 0 0 0 1em;
}
.sect-sitemap > .sitemap-list > li ul > li {
  margin-bottom: 0.25em;
}
.sect-sitemap > .sitemap-list > li ul > li:last-child {
  margin-bottom: 0;
}
.sect-sitemap > .sitemap-list > li ul > li > span {
  display: block;
}
.sect-sitemap > .sitemap-list > li ul > li > span > a {
  position: relative;
  display: block;
  color: var(--color_font);
  padding: 0 0 0 1.25em;
  line-height: 1.8em;
}
.sect-sitemap > .sitemap-list > li ul > li > span > a::before {
  content: "";
  position: absolute;
  display: block;
  font-size: inherit;
  width: 0.5em;
  height: 1px;
  top: 0.8em;
  left: 0;
  background-color: var(--color_main);
}
@media only screen and (max-width: 1024px) {
  .sect-sitemap > .sitemap-list > li ul > li > span > a::before {
    height: 2px;
  }
}
.sect-sitemap > .sitemap-list > li ul > li > span > a:hover {
  opacity: 1 !important;
}

/*
============================================================ */
/* lay-preview-mode-notice
============================================================ */
#lay-preview-mode-notice {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 9999;
  width: 100%;
  max-width: 580px;
  padding: 10px 5px;
  background: rgba(0, 0, 0, 0.8);
  color: #f80000;
  border-radius: 0 0 5px 5px;
  margin: 0 0 -26px 30px;
  text-align: center;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
#lay-preview-mode-notice p {
  font-size: 14px;
  font-weight: bold;
}
#lay-preview-mode-notice a {
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}
#lay-preview-mode-notice a::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  margin-bottom: 1px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/*
*  下層標準ページ共通Style
*----------------------------*/
/* sect-blog
============================================================ */
/***** CONTENTS CONTAINER *****/
.lay-blog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 4rem 3rem;
}
@media only screen and (max-width: 1024px) {
  .lay-blog {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

/***** LAYOUT OUTLINE *****/
.blog-body,
.blog-list {
  width: calc(100% - 3rem - 250px);
}
@media only screen and (max-width: 1024px) {
  .blog-body,
.blog-list {
    width: 100%;
  }
}

.blog-nav {
  width: 250px;
}
@media only screen and (max-width: 1024px) {
  .blog-nav {
    width: 100%;
  }
}

/***** STYLE *****/
/* 一覧、詳細 共通サイドナビゲーション */
.blog-nav .sect-side {
  margin-bottom: 2rem;
}
.blog-nav .sect-side:last-child {
  margin-bottom: 0;
}
.blog-nav .sect-side h3 {
  color: #fff;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0em;
  text-indent: 0em;
  padding: 0.75em 0.5em;
  background: var(--color_main);
  border-radius: 0.25em;
}
.blog-nav .sect-side ul {
  background-color: #fff;
  padding: 1rem 0;
}
.blog-nav .sect-side ul li {
  margin-bottom: 15px;
  padding: 0 0.25em 1em;
  border-bottom: 1px dotted var(--color_font);
  font-size: 0.85em;
  line-height: 1.6;
}
.blog-nav .sect-side ul li:last-child {
  border-bottom-style: solid;
}
.blog-nav .sect-side ul li:first-child {
  padding-top: 15px;
}
.blog-nav .sect-side ul li .update {
  color: var(--color_font);
  display: block;
  margin-top: 1px;
  font-size: 0.875em;
  color: var(--color_main);
}
.blog-nav .sect-side ul li > a {
  color: var(--color_font);
  text-decoration: none;
}
.blog-nav .sect-side ul li > a:hover {
  opacity: 1;
  text-decoration: underline;
}
.blog-nav .blog-categories ul li {
  margin-bottom: 10px;
  padding-bottom: 10px;
}
.blog-nav .blog-categories ul li:first-child {
  padding-top: 10px;
}
.blog-nav .blog-archives ul li {
  margin-bottom: 10px;
  padding-bottom: 10px;
}
.blog-nav .blog-archives ul li:first-child {
  padding-top: 10px;
}

/* 一覧ページ サムネイルリスト */
.blog-list .pageList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3rem;
  width: 100%;
}
.blog-list .pageList > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 100%;
  gap: 2rem;
  /* ORDER */
  /* STYLE */
}
@media only screen and (max-width: 599px) {
  .blog-list .pageList > li {
    gap: 1rem;
  }
}
.blog-list .pageList > li .thumb {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.blog-list .pageList > li .txtGroup {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.blog-list .pageList > li .thumb {
  display: block;
  width: 100%;
  -ms-flex-negative: 2;
      flex-shrink: 2;
}
@media only screen and (max-width: 599px) {
  .blog-list .pageList > li .thumb {
    -ms-flex-negative: 1.5;
        flex-shrink: 1.5;
  }
}
.blog-list .pageList > li .thumb a {
  display: block;
  width: 100%;
}
.blog-list .pageList > li .thumb a img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 368/253;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
@media only screen and (max-width: 1024px) {
  .blog-list .pageList > li .thumb a img {
    -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
            box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
  }
}
.blog-list .pageList > li .txtGroup {
  position: relative;
  display: block;
  width: 100%;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  padding: 0 0 3rem 0;
}
.blog-list .pageList > li .txtGroup .title {
  display: block;
  width: 100%;
  color: var(--color_font);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5em;
  letter-spacing: var(--letterSpacing_base);
  text-indent: var(--letterSpacing_base);
  text-align: justify;
  margin: 0 0 1rem;
  border-bottom: 1px solid #4c4948;
}
@media only screen and (max-width: 599px) {
  .blog-list .pageList > li .txtGroup .title {
    margin: 0 0 0.5rem;
  }
}
.blog-list .pageList > li .txtGroup .title:last-child {
  margin-bottom: 0;
}
.blog-list .pageList > li .txtGroup .title a {
  display: block;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-indent: inherit;
  text-decoration: none;
  padding: 0 0.25em 0.5rem;
}
.blog-list .pageList > li .txtGroup .title a::after {
  content: "MORE ▶";
  position: absolute;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--color_main);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: 0em;
  text-indent: 0em;
  text-align: center;
  padding: 0.25em 0.5em;
  bottom: 0;
  right: 0;
  cursor: pointer;
}
.blog-list .pageList > li .txtGroup .title a:hover {
  opacity: 1 !important;
}
@media print, screen and (min-width: 1025px) {
  .blog-list .pageList > li .txtGroup .title a:hover {
    text-decoration: underline;
  }
  .blog-list .pageList > li .txtGroup .title a:hover::after {
    text-decoration: underline;
  }
}
.blog-list .pageList > li .txtGroup .date {
  display: block;
  width: 100%;
  color: var(--color_main);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1em;
  letter-spacing: 0em;
  text-indent: 0em;
  text-align: right;
  margin: 1rem 0 0;
}
.blog-list .pageList > li .txtGroup .description,
.blog-list .pageList > li .txtGroup .page-list-item-body-text {
  display: block;
  width: 100%;
  font-family: var(--fontFamily_sub);
  font-size: 0.9em;
  line-height: 1.6em;
  text-align: justify;
  margin: 1rem 0 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
@media only screen and (max-width: 599px) {
  .blog-list .pageList > li .txtGroup .description,
.blog-list .pageList > li .txtGroup .page-list-item-body-text {
    margin: 0.25rem 0 0;
  }
}

/* 記事一覧
============================================================ */
/* 記事詳細
============================================================ */
.postPageSingle .postPageSingle-leadContents {
  margin-bottom: 3rem;
}
.postPageSingle .postPageSingle-eyeCatch {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 368/253;
  margin: 0 auto 0;
  border-radius: 1rem;
  overflow: hidden;
}
.postPageSingle .postPageSingle-eyeCatch > img {
  position: absolute;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}

/* クーポン系ページ共通
============================================================ */
/* クーポン一覧
============================================================ */
.couponIndex .couponIndex-couponListBlock {
  margin: 130px 0 0;
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .couponIndex .couponIndex-couponListBlock {
    margin-top: 80px;
  }
}
@media only screen and (max-width: 599px) {
  .couponIndex .couponIndex-couponListBlock {
    margin-top: 60px;
  }
}
.couponIndex .couponIndex-couponListBlock .com-category-list .pagelist-item .thumb {
  aspect-ratio: 1/1;
}
.couponIndex .couponIndex-couponListBlock .com-category-list .pagelist-item .txtGroup .title {
  display: block;
}
.couponIndex .couponIndex-couponListBlock .com-category-list .pagelist-item .txtGroup .title .checkIcon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  width: 1.25em;
  padding: 0 0.25em 0 0;
  height: auto;
  -webkit-transform: translate(0, 0.075em);
          transform: translate(0, 0.075em);
  letter-spacing: 0em;
}

/* クーポン詳細
============================================================ */
.couponSingle .couponSingle-couponPict {
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* プレゼント系ページ共通
============================================================ */
.present .present-header__logo {
  display: block;
  width: 100%;
  max-width: 355px;
  margin: 0 auto 0;
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .present .present-header__logo {
    width: 260px;
  }
}
@media only screen and (max-width: 599px) {
  .present .present-header__logo {
    width: 235px;
  }
}
.present .present-header__title {
  display: block;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.4em;
  letter-spacing: 0.08em;
  text-indent: 0em;
  text-align: center;
  margin: 1em 0 0;
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .present .present-header__title {
    font-size: 30px;
  }
}
@media only screen and (max-width: 599px) {
  .present .present-header__title {
    font-size: 26px;
  }
}
.present .present-header__title .num {
  font-size: 1.5em;
}
.present .present-header__deadline {
  position: relative;
  display: grid;
  place-content: center;
  place-items: center;
  font-size: 32px;
  padding: 0.9em 0;
  margin: 1.5em 0 0;
}
@media only screen and (max-width: 1024px) {
  .present .present-header__deadline {
    font-size: clamp(20px, 6.4vw, 32px);
  }
}
.present .present-header__deadline::before, .present .present-header__deadline::after {
  content: "";
  position: absolute;
  display: block;
  width: 100vw;
  min-width: var(--width_min_base);
  height: 100%;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  z-index: -1;
  border-right: none !important;
  border-left: none !important;
}
.present .present-header__deadline::before {
  background-color: var(--color_main);
  border: 4px solid var(--color_font);
}
@media only screen and (max-width: 1024px) {
  .present .present-header__deadline::before {
    border-width: 3px;
  }
}
.present .present-header__deadline::after {
  height: calc(100% - 18px);
  border: 1px solid var(--color_font);
}
@media only screen and (max-width: 1024px) {
  .present .present-header__deadline::after {
    height: calc(100% - 11px);
  }
}
.present .present-header__deadline > dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 1em;
  font-size: inherit;
}
@media only screen and (max-width: 1024px) {
  .present .present-header__deadline > dl {
    gap: 0 0.75em;
  }
}
.present .present-header__deadline > dl > dt {
  display: grid;
  place-content: center;
  color: var(--color_main);
  font-size: 0.7em;
  font-weight: 600;
  line-height: 1em;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  text-align: center;
  background-color: #fff;
  padding: 0.4em 0.5em;
  border-radius: 0.1em;
}
.present .present-header__deadline > dl > dd {
  display: grid;
  place-content: center;
  color: #fff;
  font-size: inherit;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: 0.04em;
  text-indent: 0.04em;
  padding: 0 0 0.15em;
}
.present .present-header + .com-subSection {
  margin-top: 80px;
  margin-bottom: 60px;
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .present .present-header + .com-subSection {
    margin-top: 60px;
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 599px) {
  .present .present-header + .com-subSection {
    margin-top: 44px;
    margin-bottom: 40px;
  }
}

/* プレゼント一覧
============================================================ */
.presentIndex .presentIndex-presentList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .presentIndex .presentIndex-presentList {
    gap: 2rem;
  }
}
@media only screen and (max-width: 599px) {
  .presentIndex .presentIndex-presentList {
    grid-template-columns: 1fr;
  }
}
.presentIndex .presentIndex-presentList .presentCard {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  overflow: hidden;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  border-radius: 0.75rem;
}
@media only screen and (max-width: 1024px) {
  .presentIndex .presentIndex-presentList .presentCard {
    -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
            box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
  }
}
@media only screen and (max-width: 599px) {
  .presentIndex .presentIndex-presentList .presentCard {
    border-radius: 0.5rem;
  }
}
.presentIndex .presentIndex-presentList .presentCardInner {
  display: block;
  width: 100%;
  height: 100%;
  color: var(--color_font);
  text-decoration: none;
}
.presentIndex .presentIndex-presentList .presentCard__img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 368/253;
  background-color: var(--color_sub);
  overflow: hidden;
  width: 100%;
}
.presentIndex .presentIndex-presentList .presentCard__img > img {
  -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;
}
.presentIndex .presentIndex-presentList .presentCard__txt {
  width: 100%;
  padding: 1.5rem 1.75rem 2.2rem;
}
@media only screen and (max-width: 1024px) {
  .presentIndex .presentIndex-presentList .presentCard__txt {
    padding: 1.5rem 1.25rem 1.7rem;
  }
}
.presentIndex .presentIndex-presentList .presentCard__txt--hl {
  position: relative;
  display: block;
  font-size: 27px;
  padding: 0 0 0 3.25em;
}
@media only screen and (max-width: 1024px) {
  .presentIndex .presentIndex-presentList .presentCard__txt--hl {
    font-size: 16px;
  }
}
.presentIndex .presentIndex-presentList .presentCard__txt--hl .num {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 1.4em;
  width: 1.8em;
  height: auto;
  aspect-ratio: 1/1;
  top: 0.4em;
  left: 0;
  color: #fff;
  font-family: var(--fontFamily_sub);
  font-size: 1.4em;
  line-height: 1em;
  letter-spacing: 0em;
  text-indent: 0em;
  border-radius: 50%;
  background-color: var(--color_main);
  padding: 0 0 0.1em;
}
.presentIndex .presentIndex-presentList .presentCard__txt--hl .num::before {
  content: "";
  position: absolute;
  display: block;
  width: 87%;
  height: auto;
  aspect-ratio: 1/1;
  border: 1px solid #fff;
  border-radius: 50%;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}
.presentIndex .presentIndex-presentList .presentCard__txt--hl .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  min-height: 3.6em;
  font-size: inherit;
  font-weight: 700;
  line-height: 1.8em;
  letter-spacing: 0.04em;
  text-indent: 0em;
  text-align: justify;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25em;
  -webkit-text-decoration-color: rgba(76, 73, 72, 0.5);
          text-decoration-color: rgba(76, 73, 72, 0.5);
}
.presentIndex .presentIndex-presentList .presentCard__txt--infoTable {
  font-size: 19px;
  padding: 0 0.5rem;
  margin: 1.5em 0 0;
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .presentIndex .presentIndex-presentList .presentCard__txt--infoTable {
    font-size: 14px;
  }
}
@media only screen and (max-width: 599px) {
  .presentIndex .presentIndex-presentList .presentCard__txt--infoTable {
    font-size: 12px;
  }
}
.presentIndex .presentIndex-presentList .presentCard__txt--infoTable .tableRow {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-template-columns: 6.5em 1fr;
  gap: 0 1em;
  border-bottom: 1px solid #eaeae4;
  padding: 0.8em 0.25em 1em;
}
@media only screen and (max-width: 1024px) {
  .presentIndex .presentIndex-presentList .presentCard__txt--infoTable .tableRow {
    gap: 0 0.75em;
  }
}
.presentIndex .presentIndex-presentList .presentCard__txt--infoTable .tableRow:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.presentIndex .presentIndex-presentList .presentCard__txt--infoTable .tableRow > dt {
  color: var(--color_main);
  font-weight: 700;
  font-size: 1.1em;
  line-height: 1.4em;
}
.presentIndex .presentIndex-presentList .presentCard__txt--infoTable .tableRow > dd {
  line-height: 1.75em;
}
.presentIndex .presentIndex-presentList .presentCard__txt--infoTable .tableRow > dd .cellRow {
  display: block;
}
.presentIndex .presentIndex-presentList .presentCard .presentCardInner:hover {
  opacity: 1 !important;
}
@media print, screen and (min-width: 1025px) {
  .presentIndex .presentIndex-presentList .presentCard .presentCardInner:hover .presentCard__img > img {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  .presentIndex .presentIndex-presentList .presentCard .presentCardInner:hover .presentCard__txt--hl .title {
    text-decoration: none;
  }
}

/* プレゼント詳細
============================================================ */
.presentSingle .presentSingle-presentInfo {
  position: relative;
  padding: 120px 0;
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .presentSingle .presentSingle-presentInfo {
    padding: 80px 0;
  }
}
@media only screen and (max-width: 599px) {
  .presentSingle .presentSingle-presentInfo {
    padding: 60px 0;
  }
}
.presentSingle .presentSingle-presentInfo::before {
  content: "";
  position: absolute;
  display: block;
  width: 100vw;
  min-width: var(--width_min_base);
  height: 100%;
  top: 0;
  right: 50%;
  -webkit-transform: translate(50%, 0);
          transform: translate(50%, 0);
  background-color: #edf4f3;
  z-index: -1;
}
.presentSingle .presentSingle-presentInfo__hl {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 1em 0;
  font-size: 38px;
}
@media only screen and (max-width: 1024px) {
  .presentSingle .presentSingle-presentInfo__hl {
    font-size: 22px;
  }
}
.presentSingle .presentSingle-presentInfo__hl .num {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 1.4em;
  width: 1.8em;
  height: auto;
  aspect-ratio: 1/1;
  color: #fff;
  font-family: var(--fontFamily_sub);
  font-size: 1.4em;
  line-height: 1em;
  letter-spacing: 0em;
  text-indent: 0em;
  border-radius: 50%;
  background-color: var(--color_main);
  padding: 0 0 0.1em;
}
.presentSingle .presentSingle-presentInfo__hl .num::before {
  content: "";
  position: absolute;
  display: block;
  width: 87%;
  height: auto;
  aspect-ratio: 1/1;
  border: 1px solid #fff;
  border-radius: 50%;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}
.presentSingle .presentSingle-presentInfo__hl .title {
  font-family: var(--fontFamily_sub);
  font-weight: 500;
  text-align: center;
  line-height: 1.5em;
}
.presentSingle .presentSingle-presentInfo .presentSingle-presentInfo-contentsBlock {
  display: block;
  width: 100%;
  max-width: 650px;
  margin: 80px auto 0;
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .presentSingle .presentSingle-presentInfo .presentSingle-presentInfo-contentsBlock {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 599px) {
  .presentSingle .presentSingle-presentInfo .presentSingle-presentInfo-contentsBlock {
    margin-top: 40px;
  }
}
.presentSingle .presentSingle-presentInfo .presentSingle-presentInfo-contentsBlock > *:first-child {
  margin-top: 0 !important;
}
.presentSingle .presentSingle-presentInfo__img {
  display: grid;
  place-items: center;
  width: 100%;
}
.presentSingle .presentSingle-presentInfo__img > img {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  border-radius: 0.6rem;
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  .presentSingle .presentSingle-presentInfo__img > img {
    -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
            box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
  }
}
@media only screen and (max-width: 599px) {
  .presentSingle .presentSingle-presentInfo__img > img {
    border-radius: 0.5rem;
  }
}
.presentSingle .presentSingle-presentInfo__description {
  color: var(--color_main);
  font-family: var(--fontFamily_sub);
  font-size: 1.2em;
  font-weight: 500;
  line-height: 2.25em;
  letter-spacing: 0em;
  text-indent: 0em;
  text-align: justify;
  border-radius: 0.4rem;
  background-color: #fff;
  padding: 1.25em 1.5em;
  margin: 60px auto 0;
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .presentSingle .presentSingle-presentInfo__description {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 599px) {
  .presentSingle .presentSingle-presentInfo__description {
    font-size: 15px;
    border-radius: 0.3rem;
    margin-top: 40px;
  }
}
.presentSingle .presentSingle-presentInfo__infoTable {
  font-size: 20px;
  padding: 0 0.5rem;
  margin: 60px 0 0;
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .presentSingle .presentSingle-presentInfo__infoTable {
    font-size: 16px;
    margin-top: 50px;
  }
}
@media only screen and (max-width: 599px) {
  .presentSingle .presentSingle-presentInfo__infoTable {
    font-size: 14px;
    margin-top: 40px;
  }
}
.presentSingle .presentSingle-presentInfo__infoTable .tableRow {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-template-columns: 9.5em 1fr;
  gap: 0 1em;
  border-bottom: 1px solid #ccc;
  padding: 0.8em 0.25em 1em;
}
@media only screen and (max-width: 1024px) {
  .presentSingle .presentSingle-presentInfo__infoTable .tableRow {
    gap: 0 0.75em;
  }
}
@media only screen and (max-width: 599px) {
  .presentSingle .presentSingle-presentInfo__infoTable .tableRow {
    grid-template-columns: 1fr;
    gap: 0;
    border: none;
    padding: 0 0 0;
  }
}
.presentSingle .presentSingle-presentInfo__infoTable .tableRow:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.presentSingle .presentSingle-presentInfo__infoTable .tableRow > dt {
  color: var(--color_main);
  font-weight: 700;
  line-height: 1.4em;
}
@media only screen and (max-width: 599px) {
  .presentSingle .presentSingle-presentInfo__infoTable .tableRow > dt {
    background-color: var(--color_main);
    color: #fff;
    padding: 0.75em 1em;
    border-radius: 0.3em;
  }
}
.presentSingle .presentSingle-presentInfo__infoTable .tableRow > dd {
  line-height: 1.75em;
}
@media only screen and (max-width: 599px) {
  .presentSingle .presentSingle-presentInfo__infoTable .tableRow > dd {
    padding: 1em 1em;
  }
}
.presentSingle .presentSingle-presentInfo__infoTable .tableRow > dd .cellRow {
  display: block;
}
.presentSingle .presentSingle-loginBtnBlock {
  border: 5px solid #d89898;
  border-radius: 0.6rem;
  padding: 2.5rem 2rem 3.25rem;
}
@media only screen and (max-width: 1024px) {
  .presentSingle .presentSingle-loginBtnBlock {
    border-width: 3px;
  }
}
.presentSingle .presentSingle-loginBtnBlock .presentSingle-loginBtnBlock-notice {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.85em;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  text-align: center;
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .presentSingle .presentSingle-loginBtnBlock .presentSingle-loginBtnBlock-notice {
    font-size: 20px;
  }
}
@media only screen and (max-width: 599px) {
  .presentSingle .presentSingle-loginBtnBlock .presentSingle-loginBtnBlock-notice {
    font-size: 16px;
  }
}
.presentSingle .presentSingle-loginBtnBlock .presentSingle-loginBtnBlock-notice > * {
  display: inline-block;
}
.presentSingle .presentSingle-loginBtnBlock .presentSingle-loginBtnBlock-notice > em {
  color: var(--color_main);
  font-weight: 700;
  text-decoration: underline;
}
.presentSingle .presentSingle-loginBtnBlock .presentSingle-loginBtnBlock-btnBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2.5rem;
  width: 100%;
  margin: 2.5rem 0 0;
}
@media only screen and (max-width: 1024px) {
  .presentSingle .presentSingle-loginBtnBlock .presentSingle-loginBtnBlock-btnBox {
    gap: 1.5rem;
  }
}
.presentSingle .presentSingle-loginBtnBlock .presentSingle-loginBtnBlock-btnBox .com-btn {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-size: 30px;
  width: min(calc(50% - 1.25rem), 490px);
  min-width: initial;
  max-width: initial;
  text-align: left;
  text-indent: 0em;
  padding-left: 1.5em;
}
@media only screen and (max-width: 1024px) {
  .presentSingle .presentSingle-loginBtnBlock .presentSingle-loginBtnBlock-btnBox .com-btn {
    max-width: 13em;
    min-height: 3.5em;
  }
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .presentSingle .presentSingle-loginBtnBlock .presentSingle-loginBtnBlock-btnBox .com-btn {
    font-size: 20px;
  }
}
@media only screen and (max-width: 599px) {
  .presentSingle .presentSingle-loginBtnBlock .presentSingle-loginBtnBlock-btnBox .com-btn {
    font-size: 18px;
    width: 100%;
  }
}
.presentSingle .com-backBtnBlock .com-btn {
  font-size: 25px;
  width: 100%;
  min-width: initial;
  max-width: 17.4em;
  min-height: 4.32em;
}
@media only screen and (max-width: 1024px) {
  .presentSingle .com-backBtnBlock .com-btn {
    max-width: 17.5em;
  }
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .presentSingle .com-backBtnBlock .com-btn {
    font-size: 16px;
  }
}
@media only screen and (max-width: 599px) {
  .presentSingle .com-backBtnBlock .com-btn {
    font-size: 14px;
  }
}

/* 占いページ
============================================================ */
.fortune-telling .page-body .lead-section {
  font-family: var(--fontFamily_sub);
}
.fortune-telling .page-body .lead-sectionInner {
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .fortune-telling .page-body .lead-sectionInner {
    font-size: 0.85rem;
    text-align: center;
  }
}
.fortune-telling .page-body .lead-section .lead-section-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.fortune-telling .page-body .lead-section .lead-section-text > p {
  line-height: 3.4em;
}
@media only screen and (max-width: 1024px) {
  .fortune-telling .page-body .lead-section .lead-section-text > p {
    line-height: 2.8em;
    word-break: normal;
    overflow-wrap: break-word;
  }
}
.fortune-telling .page-body .fortune-period {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  padding-top: 55px;
}
@media only screen and (max-width: 1024px) {
  .fortune-telling .page-body .fortune-period {
    padding-top: 30px;
  }
}
.fortune-telling .page-body .fortune-periodInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 13px 20px;
  max-width: 375px;
  min-width: 220px;
  background-color: var(--color_main);
  border-radius: 6px;
  color: #fff;
}
@media print, screen and (min-width: 1025px) {
  .fortune-telling .page-body .fortune-periodInner {
    width: 30.24vw;
  }
}
@media only screen and (max-width: 1024px) {
  .fortune-telling .page-body .fortune-periodInner {
    width: 66.66vw;
    min-height: 90px;
    padding: 6px 13px;
  }
}
.fortune-telling .page-body .fortune-period .fortune-period-section-year {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  padding-bottom: 15px;
  border-bottom: 1px solid #fff;
  font-size: 21px;
}
@media only screen and (max-width: 1024px) {
  .fortune-telling .page-body .fortune-period .fortune-period-section-year {
    padding-bottom: 8px;
    font-size: clamp(14px, 2.05vw, 21px);
  }
}
.fortune-telling .page-body .fortune-period .fortune-period-date-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 10px;
  font-size: 27px;
}
@media only screen and (max-width: 1024px) {
  .fortune-telling .page-body .fortune-period .fortune-period-date-wrap {
    padding-top: 4px;
    font-size: clamp(18px, 2.63vw, 27px);
  }
}
.fortune-telling .page-body .fortune-period .fortune-period-date-wrap .fortune-period-date {
  letter-spacing: 0.15em;
}
.fortune-telling .page-body .fortune-period .fortune-period-date-wrap .dash {
  padding: 0 0.3em;
}
.fortune-telling .page-body .monthly-fortune-result {
  padding-top: 95px;
}
@media only screen and (max-width: 1024px) {
  .fortune-telling .page-body .monthly-fortune-result {
    padding-top: 60px;
  }
}
.fortune-telling .page-body .monthly-fortune-resultInner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 45px;
}
@media only screen and (max-width: 1024px) {
  .fortune-telling .page-body .monthly-fortune-resultInner {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px 0;
  }
}
.fortune-telling .page-body .monthly-fortune-result .fortune-telling-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #edf4f3;
  border-radius: 10px;
  padding: 20px 15px 40px;
}
.fortune-telling .page-body .monthly-fortune-result .fortune-telling-card .month-title {
  position: relative;
  padding: 0 21px 10px;
  color: var(--color_main);
  font-size: 28px;
  font-weight: 700;
}
@media only screen and (max-width: 1024px) {
  .fortune-telling .page-body .monthly-fortune-result .fortune-telling-card .month-title {
    font-size: 15.5px;
    padding: 0 21px 8px;
  }
}
.fortune-telling .page-body .monthly-fortune-result .fortune-telling-card .month-title .month {
  font-size: 48px;
}
@media only screen and (max-width: 1024px) {
  .fortune-telling .page-body .monthly-fortune-result .fortune-telling-card .month-title .month {
    font-size: 27px;
  }
}
.fortune-telling .page-body .monthly-fortune-result .fortune-telling-card .month-title::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 6px;
  bottom: 0;
  left: 0;
  -webkit-mask-image: url(../images/common/section_hl_line.svg);
          mask-image: url(../images/common/section_hl_line.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: var(--color_main);
}
@media only screen and (max-width: 1024px) {
  .fortune-telling .page-body .monthly-fortune-result .fortune-telling-card .month-title::after {
    -webkit-mask-image: url(../images/common/section_hl_line_sp.svg);
            mask-image: url(../images/common/section_hl_line_sp.svg);
    height: 0.125em;
  }
}
.fortune-telling .page-body .monthly-fortune-result .fortune-telling-card .card-image {
  margin-top: 40px;
  max-height: 250px;
}
@media only screen and (max-width: 1024px) {
  .fortune-telling .page-body .monthly-fortune-result .fortune-telling-card .card-image {
    margin-top: 25px;
    max-height: 120px;
  }
}
.fortune-telling .page-body .monthly-fortune-result .fortune-telling-card .card-title {
  font-size: 23px;
  font-weight: bold;
  margin-top: 15px;
}
@media only screen and (max-width: 1024px) {
  .fortune-telling .page-body .monthly-fortune-result .fortune-telling-card .card-title {
    font-size: 16px;
    margin-top: 16px;
    letter-spacing: 0em;
  }
}
.fortune-telling .page-body .monthly-fortune-result .fortune-telling-card .description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 18px;
  padding-bottom: 35px;
  height: 165px;
  font-size: 16px;
  line-height: 2em;
  text-align: center;
  border-bottom: 1px solid #CCC;
}
@media only screen and (max-width: 1024px) {
  .fortune-telling .page-body .monthly-fortune-result .fortune-telling-card .description {
    height: auto;
    margin-top: 14px;
    padding-bottom: 28px;
    font-size: 14px;
  }
}
.fortune-telling .page-body .monthly-fortune-result .fortune-telling-card .fortune-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 1.35em;
  font-size: 20px;
  line-height: 1.5em;
  color: var(--color_font);
  gap: 0 20px;
}
@media only screen and (max-width: 1024px) {
  .fortune-telling .page-body .monthly-fortune-result .fortune-telling-card .fortune-wrap {
    padding-top: 0.9em;
    font-size: 15.4px;
  }
}
.fortune-telling .page-body .monthly-fortune-result .fortune-telling-card .fortune-wrap .fortune {
  font-weight: 700;
}