@charset "UTF-8";
@import url("global.css");
.catnavi {
  margin-bottom: 70px;
  display: flex;
  align-items: center;
  column-gap: 40px;
  padding: 20px;
  width: 100%;
  border-top: #A4A4A4 solid 1px;
  border-bottom: #A4A4A4 solid 1px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.catnavi .navititle {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.catnavi .navititle::before {
  content: "";
  display: block;
  background: url("../../img/accommodation/hokkaido.svg") no-repeat center center;
  background-size: contain;
  width: 40px;
  height: 38px;
}
.catnavi .navititle .title {
  line-height: 1.4;
  text-align: center;
}
.catnavi .navititle .title span {
  display: block;
  font-family: "Shippori Mincho B1", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 700;
}
.catnavi .navititle .title .en {
  font-size: 1.125em;
}
.catnavi .navititle .title .ja {
  font-size: 12px;
}
.catnavi ul.catlist {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 15px;
}
.catnavi ul.catlist li a {
  display: block;
  white-space: nowrap;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  padding: 7px 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: .875em;
  font-weight: 700;
  letter-spacing: 0;
  background-color: #E2E2E2;
}
@media (any-hover: hover) {
  .catnavi ul.catlist li a:hover {
    background-color: #1A2954;
    color: #FFF;
  }
}
.catnavi ul.catlist li.current a {
  background-color: #1A2954;
  color: #FFF;
}
@media (any-hover: hover) {
  .catnavi ul.catlist li.current a:hover {
    cursor: default;
  }
}

/* ------------------------------
 Index
------------------------------ */
ul.hotellist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 100px min(5vw,90px);
  margin-bottom: 120px;
}
ul.hotellist li a {
  display: block;
}
ul.hotellist li a .pharea {
  width: 100%;
  aspect-ratio: 1.79 / 1;
  -webkit-border-radius: var(--radius-normal);
  border-radius: var(--radius-normal);
  overflow: hidden;
}
ul.hotellist li a .pharea:has(.sub) {
  display: grid;
  gap: 4px;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 50% 50%;
}
ul.hotellist li a .pharea:has(.sub) .main {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}
ul.hotellist li a .pharea .main {
  width: 100%;
  height: 100%;
}
ul.hotellist li a .pharea .sub {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}
ul.hotellist li a .pharea .sub + .sub {
  grid-row: 2 / 3;
}
ul.hotellist li a .textarea {
  margin-top: 30px;
  text-align: justify;
}
ul.hotellist li a .textarea .posttitle {
  font-family: "Shippori Mincho B1", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: clamp(20px, 2.7vw, 32px);
  font-weight: 700;
}
ul.hotellist li a .textarea .postcat {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
ul.hotellist li a .textarea .postcat > span {
  display: block;
  white-space: nowrap;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  padding: 3px 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #FFF;
  font-size: .82em;
  font-weight: 500;
  letter-spacing: 0;
  background-color: #7A8CC1;
}
ul.hotellist li a .textarea .postdata {
  margin-top: 30px;
  border-top: #B1B1B1 dashed 1px;
}
ul.hotellist li a .textarea .postdata > dl {
  display: flex;
  width: 100%;
  padding: 10px 5px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-bottom: #B1B1B1 dashed 1px;
  font-size: .875em;
  font-weight: 500;
}
ul.hotellist li a .textarea .postdata > dl dt {
  flex-shrink: 0;
  width: 100px;
  font-weight: 700;
  display: flex;
  align-items: center;
  column-gap: 5px;
}
ul.hotellist li a .textarea .postdata > dl dt::before {
  content: "";
  width: 5px;
  height: 5px;
  background-color: #1A2954;
  -webkit-border-radius: 100%;
  border-radius: 100%;
}
ul.hotellist li a .textarea .postdata > dl dd {
  width: 100%;
  padding-left: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* ------------------------------
 Entry
------------------------------ */
.entry #post {
  margin-top: 100px;
}
.entry #post .address .pin {
  display: flex;
  align-items: center;
  column-gap: 5px;
  font-weight: 500;
}
.entry #post .address .pin::before {
  content: "\f3c5";
  display: block;
  font-family: "Font Awesome 6 free", "Font Awesome 6 Brands";
  font-weight: 900;
}

#postintro {
  display: flex;
  justify-content: space-between;
}
#postintro .headline {
  width: 100%;
  padding-right: 5vw;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
#postintro .headline .posttitle {
  line-height: 1.4;
  font-family: "Shippori Mincho B1", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: clamp(22px, 3.2vw, 46px);
  font-weight: 700;
  letter-spacing: 0;
}
#postintro .headline .address {
  margin-top: 15px;
}
#postintro .headline .address .pin {
  text-decoration: underline;
}
#postintro .headline .postcat {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
#postintro .headline .postcat > span {
  display: block;
  white-space: nowrap;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  padding: 3px 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #FFF;
  font-size: .82em;
  font-weight: 500;
  letter-spacing: 0;
  background-color: #7A8CC1;
}
#postintro .headline .postother {
  margin-top: 35px;
  background-color: #FFF;
  padding: 25px 35px;
  -webkit-border-radius: var(--radius-normal);
  border-radius: var(--radius-normal);
  font-size: 1.125em;
  font-weight: 500;
}
#postintro .slidearea {
  flex-shrink: 0;
  width: 58.6%;
}
#postintro .slidearea .swiper-wrap .swiper-main {
  width: 100%;
  aspect-ratio: 1.5 / 1;
}
#postintro .slidearea .swiper-wrap .swiper-thumb {
  margin-top: 10px;
  width: 100%;
  overflow: hidden;
}
#postintro .slidearea .swiper-wrap .swiper-thumb ul {
  display: flex;
  align-items: center;
}
#postintro .slidearea .swiper-wrap .swiper-thumb ul li {
  width: 132px;
  aspect-ratio: 1.48 / 1;
  overflow: hidden;
  opacity: .6;
}
#postintro .slidearea .swiper-wrap .swiper-thumb ul li.swiper-slide-thumb-active {
  opacity: 1;
}
@media (any-hover: hover) {
  #postintro .slidearea .swiper-wrap .swiper-thumb ul li:hover {
    cursor: pointer;
    opacity: 1;
  }
}

#postoutline {
  padding-top: 110px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
#postoutline #postnavi {
  width: 100%;
  padding-right: 4vw;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
#postoutline #postnavi .sticky {
  position: sticky;
  top: 180px;
  white-space: nowrap;
  width: 210px;
}
#postoutline #postnavi .sticky > ul li + li {
  margin-top: 15px;
}
#postoutline #postnavi .sticky > ul li a {
  display: block;
  font-weight: 700;
  color: #B1B1B1;
}
#postoutline #postnavi .sticky > ul li a::before {
  content: "";
  display: inline-block;
  margin-right: 0;
  vertical-align: 5px;
  width: 0;
  height: 1px;
  background-color: #1A2954;
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
}
@media (any-hover: hover) {
  #postoutline #postnavi .sticky > ul li a:hover {
    color: #1A2954;
  }
}
#postoutline #postnavi .sticky > ul li a.current {
  color: #1A2954;
}
#postoutline #postnavi .sticky > ul li a.current::before {
  width: 30px;
  margin-right: 10px;
}
#postoutline #postnavi .sticky > p {
  margin-top: 40px;
}
#postoutline #postnavi .sticky > p a {
  display: block;
  background-color: #1A2954;
  color: #FFF;
  padding: 10px 15px;
  text-align: center;
  font-weight: 700;
  -webkit-border-radius: var(--radius-normal);
  border-radius: var(--radius-normal);
}
@media (any-hover: hover) {
  #postoutline #postnavi .sticky > p a:hover {
    opacity: .8;
  }
}
#postoutline .main {
  flex-shrink: 0;
  width: 63.33%;
}
#postoutline .main .section + .section {
  margin-top: 80px;
}
#postoutline .main .section .sec_title {
  margin-bottom: 40px;
  line-height: 1.5;
  font-family: "Shippori Mincho B1", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 700;
  padding-left: 22px;
  position: relative;
}
#postoutline .main .section .sec_title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 8px;
  -webkit-border-radius: 1px;
  border-radius: 1px;
  background-color: #1A2954;
}
#postoutline .main .section .sec_body {
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-all;
}
#postoutline .main .section .sec_body .center {
  text-align: center;
}
#postoutline .main .section .sec_body p + p {
  margin-top: 1em;
}
#postoutline .main .section .sec_body p:has(img) {
  margin-block: 50px;
}
#postoutline .main .section .sec_body img {
  max-width: 100%;
  width: auto;
  height: auto;
  vertical-align: middle;
}
#postoutline .main .section .sec_body img.alignleft {
  float: left;
  margin-right: 40px;
  margin-bottom: 1em;
}
#postoutline .main .section .sec_body img.alignright {
  float: right;
  margin-left: 40px;
  margin-bottom: 1em;
}
#postoutline .main .section .sec_body img.aligncenter {
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
#postoutline .main .section .sec_body img.alignnone {
  padding: 5px;
  box-sizing: border-box;
}
#postoutline .main .section .sec_body ul:not([class]) {
  margin: 20px 0;
}
#postoutline .main .section .sec_body ul:not([class]) li {
  padding-left: 16px;
  margin: 6px 0;
  text-indent: -16px;
  position: relative;
  line-height: 1.5;
}
#postoutline .main .section .sec_body ul:not([class]) li::before {
  content: "";
  background-color: #B1B1B1;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
  vertical-align: 2px;
}
#postoutline .main .section .sec_body dl:not([class]) {
  margin: 20px 0;
}
#postoutline .main .section .sec_body dl:not([class]) dt {
  font-weight: 700;
  margin-bottom: 1em;
}
#postoutline .main .section .sec_body dl:not([class]) dd {
  line-height: 1.4;
  margin: 6px 0;
  padding-left: 18px;
  text-indent: -18px;
}
#postoutline .main .section .sec_body dl:not([class]) dd::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #B1B1B1;
  display: inline-block;
  margin-right: 10px;
  border-radius: 50%;
  text-indent: 0;
  vertical-align: 2px;
}
#postoutline .main .section .sec_body h1:not([class]) {
  line-height: 1.5;
  font-size: 180%;
  margin: 1.8em 0 1.5em;
}
#postoutline .main .section .sec_body h1:not([class]) * {
  font-size: inherit;
}
#postoutline .main .section .sec_body h2:not([class]) {
  line-height: 1.5;
  font-size: 160%;
  font-weight: bold;
  margin: 2em 0 1.6em;
}
#postoutline .main .section .sec_body h2:not([class]) * {
  font-size: inherit;
}
#postoutline .main .section .sec_body h3:not([class]) {
  line-height: 1.5;
  font-size: 130%;
  font-weight: 500;
  margin: 2.5em 0 2em;
  background-color: rgba(177, 177, 177, 0.1);
  padding: 12px 15px;
}
#postoutline .main .section .sec_body h3:not([class]) * {
  font-size: inherit;
}
#postoutline .main .section .sec_body h4:not([class]) {
  line-height: 1.5;
  font-size: 120%;
  font-weight: 500;
  margin: 2.5em 0 1.5em;
  text-indent: -20px;
  padding-left: 20px;
}
#postoutline .main .section .sec_body h4:not([class])::before {
  content: "";
  width: 12px;
  height: 12px;
  background-color: rgba(54, 90, 194, 0.3);
  border-radius: 2px;
  display: inline-block;
  margin-right: 8px;
  vertical-align: 0;
}
#postoutline .main .section .sec_body h4:not([class]) * {
  font-size: inherit;
}
#postoutline .main .section .sec_body h5:not([class]) {
  line-height: 1.5;
  font-size: 110%;
  font-weight: 600;
  margin: 2.5em 0 1.5em;
}
#postoutline .main .section .sec_body h5:not([class]) * {
  font-size: inherit;
}
#postoutline .main .section .sec_body h6:not([class]) {
  line-height: 1.5;
  font-weight: bold;
  margin: 30px 0 20px;
}
#postoutline .main .section .sec_body h6:not([class]) * {
  font-size: inherit;
}
#postoutline .main .section .sec_body strong:not([class]) {
  font-weight: 700;
}
#postoutline .main .section .sec_body strong:not([class]) * {
  font-weight: inherit;
}
#postoutline .main .section .sec_body a {
  text-decoration-color: rgba(54, 90, 194, 0.3);
  text-decoration-line: underline;
  text-decoration-thickness: 5px;
  text-underline-offset: 0;
  text-decoration-skip-ink: none;
  color: #1A2954;
}
#postoutline .main .section .sec_body blockquote {
  width: 80%;
  margin: 0 auto;
  border: 1px dashed #E2E2E2;
  padding: 20px;
  box-sizing: border-box;
  border-radius: 5px;
}
#postoutline .main .section .sec_body hr {
  background-color: #E2E2E2;
  border: 0;
  height: 1px;
  margin: 2em -10px;
}
#postoutline .main .section .sec_body table {
  border-collapse: collapse;
  border: #E2E2E2 1px solid;
}
#postoutline .main .section .sec_body table caption {
  font-size: 1.2em;
  margin-bottom: 10px;
  text-align: center;
}
#postoutline .main .section .sec_body table tr {
  border-bottom: #E2E2E2 1px solid;
}
#postoutline .main .section .sec_body table th {
  padding: 15px 20px;
  font-weight: bold;
  border-right: #E2E2E2 1px solid;
  text-align: center;
}
#postoutline .main .section .sec_body table td {
  padding: 15px 20px;
  border-right: #E2E2E2 1px solid;
}
#postoutline .main .section .sec_body .mt10 {
  margin-top: 10px;
}
#postoutline .main .section .sec_body .mt20 {
  margin-top: 20px;
}
#postoutline .main .section .sec_body .mt30 {
  margin-top: 30px;
}
#postoutline .main .section .sec_body .mt40 {
  margin-top: 40px;
}
#postoutline .main .section .sec_body .mb10 {
  margin-bottom: 10px;
}
#postoutline .main .section .sec_body .mb20 {
  margin-bottom: 20px;
}
#postoutline .main .section .sec_body .mb30 {
  margin-bottom: 30px;
}
#postoutline .main .section .sec_body .mb40 {
  margin-bottom: 40px;
}
#postoutline .main .section .sec_body .bold {
  font-weight: 700;
}
#postoutline .main .section .sec_body .flex {
  display: flex;
  justify-content: space-between;
}
#postoutline .main .section .sec_body .flex > * {
  margin: 0 10px;
}
#postoutline .main .block {
  background-color: #FFF;
  padding: 25px 30px;
  -webkit-border-radius: var(--radius-normal);
  border-radius: var(--radius-normal);
}
#postoutline .main .block + .block {
  margin-top: 20px;
}
#postoutline .main .block .block_title {
  margin-bottom: 20px;
  font-family: "Shippori Mincho B1", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: clamp(16px, 1.9vw, 20px);
  font-weight: 700;
}
#postoutline .main .block .block_body .text {
  margin-block: 10px;
}
#postoutline .main .block .block_body .text > p + p {
  margin-top: 1em;
}
#postoutline .main .googlemap {
  margin-top: 20px;
  width: 100%;
  aspect-ratio: 2.24 / 1;
  overflow: hidden;
  position: relative;
}
#postoutline .main .googlemap .map {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
#postoutline .main .googlemap .map iframe {
  width: 100%;
  height: 100%;
}
#postoutline .main ul.sitelinks {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 25px 35px;
}
#postoutline .main ul.sitelinks li {
  width: fit-content;
}
#postoutline .main ul.sitelinks li a {
  display: block;
}
@media (any-hover: hover) {
  #postoutline .main ul.sitelinks li a:hover {
    opacity: .8;
  }
}

/* ------------------------------------------------------------------------------------------------------------------------

 Responsive-Breakpoint-1 ( 1600px )

------------------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------------------

 Responsive-Breakpoint-2 ( 1400px )

------------------------------------------------------------------------------------------------------------------------ */
@media only screen and (max-width: 1400px) {
  /* ------------------------------
   Entry
  ------------------------------ */
  #postintro .slidearea {
    width: 57%;
  }

  #postoutline {
    padding-top: 90px;
    width: 100%;
  }
  #postoutline #postnavi .sticky > p {
    margin-top: 30px;
  }
  #postoutline .main {
    width: 65%;
  }
}
/* ------------------------------------------------------------------------------------------------------------------------

 Responsive-Breakpoint-3 ( 1200px )
 
------------------------------------------------------------------------------------------------------------------------ */
@media only screen and (max-width: 1200px) {
  .catnavi {
    margin-bottom: 60px;
    column-gap: 20px;
    padding: 20px 15px;
  }
  .catnavi .navititle .title .ja {
    font-size: 11px;
  }
  .catnavi ul.catlist {
    gap: 6px 10px;
  }
  .catnavi ul.catlist li a {
    padding: 6px 15px;
  }

  /* ------------------------------
   Index
  ------------------------------ */
  ul.hotellist {
    gap: 65px 4vw;
    margin-bottom: 90px;
  }
  ul.hotellist li a .pharea:has(.sub) {
    gap: 3px;
  }
  ul.hotellist li a .textarea {
    margin-top: 10px;
  }
  ul.hotellist li a .textarea .postcat {
    margin-top: 10px;
    gap: 5px;
  }
  ul.hotellist li a .textarea .postcat > span {
    padding: 2px 8px;
  }
  ul.hotellist li a .textarea .postdata {
    margin-top: 15px;
  }
  ul.hotellist li a .textarea .postdata > dl dt {
    width: 76px;
  }

  /* ------------------------------
   Entry
  ------------------------------ */
  .entry #post {
    margin-top: 0;
  }
  .entry #post .address .pin {
    column-gap: 4px;
  }

  #postintro .headline .address {
    margin-top: 10px;
  }
  #postintro .headline .postcat {
    margin-top: 20px;
    gap: 6px;
  }
  #postintro .headline .postcat > span {
    padding: 2px 8px;
  }
  #postintro .headline .postother {
    margin-top: 25px;
    padding: 20px;
  }
  #postintro .slidearea .swiper-wrap .swiper-thumb {
    margin-top: 5px;
  }
  #postintro .slidearea .swiper-wrap .swiper-thumb ul li {
    width: 66px;
    aspect-ratio: 1 / 1;
  }

  #postoutline {
    padding-top: 65px;
  }
  #postoutline #postnavi .sticky {
    top: 140px;
    width: 180px;
  }
  #postoutline #postnavi .sticky > ul li + li {
    margin-top: 10px;
  }
  #postoutline #postnavi .sticky > ul li a.current::before {
    width: 20px;
    margin-right: 7px;
  }
  #postoutline #postnavi .sticky > p {
    margin-top: 20px;
  }
  #postoutline #postnavi .sticky > p a {
    padding: 8px 10px;
  }
  #postoutline .main {
    width: 67%;
  }
  #postoutline .main .section + .section {
    margin-top: 50px;
  }
  #postoutline .main .section .sec_title {
    margin-bottom: 20px;
    padding-left: 20px;
  }
  #postoutline .main .section .sec_title::before {
    width: 6px;
  }
  #postoutline .main .block {
    padding: 20px 25px;
  }
  #postoutline .main .block + .block {
    margin-top: 15px;
  }
  #postoutline .main .block .block_title {
    margin-bottom: 10px;
  }
  #postoutline .main .googlemap {
    margin-top: 15px;
    aspect-ratio: 1.8 / 1;
  }
  #postoutline .main ul.sitelinks {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 30px;
  }
  #postoutline .main ul.sitelinks li {
    margin-inline: auto;
  }
}
/* ------------------------------------------------------------------------------------------------------------------------

 Responsive-Breakpoint-4 ( 644px )

------------------------------------------------------------------------------------------------------------------------ */
@media only screen and (max-width: 644px) {
  .catnavi {
    margin-bottom: 45px;
    padding: 15px 5px;
    column-gap: 10px;
  }
  .catnavi .navititle {
    column-gap: 5px;
  }
  .catnavi .navititle::before {
    width: 28px;
    height: 27px;
  }
  .catnavi .navititle .title {
    line-height: 1.3;
  }
  .catnavi .navititle .title .en {
    font-size: 1.1em;
  }
  .catnavi .navititle .title .ja {
    font-size: 10px;
  }
  .catnavi ul.catlist {
    gap: 5px 6px;
  }
  .catnavi ul.catlist li a {
    padding: 3px 10px;
    font-size: .8em;
  }

  /* ------------------------------
   Index
  ------------------------------ */
  ul.hotellist {
    display: block;
    margin-bottom: 60px;
  }
  ul.hotellist li + li {
    margin-top: 50px;
  }
  ul.hotellist li a .pharea {
    margin-bottom: 3px;
  }
  ul.hotellist li a .pharea:has(.sub) {
    gap: 2px;
  }
  ul.hotellist li a .textarea {
    margin-top: 0;
  }
  ul.hotellist li a .textarea .postcat {
    margin-top: 5px;
    gap: 4px;
  }
  ul.hotellist li a .textarea .postdata > dl {
    padding: 7px 0;
  }
  ul.hotellist li a .textarea .postdata > dl dt {
    column-gap: 4px;
    width: 66px;
  }
  ul.hotellist li a .textarea .postdata > dl dd {
    padding-left: 5px;
  }

  /* ------------------------------
   Entry
  ------------------------------ */
  #postintro {
    display: block;
  }
  #postintro .headline {
    padding: 0 0 30px;
  }
  #postintro .headline .postcat {
    gap: 5px;
  }
  #postintro .headline .postcat > span {
    padding: 2px 6px;
  }
  #postintro .headline .postother {
    margin-top: 20px;
    padding: 15px 20px;
    font-size: 1em;
  }
  #postintro .slidearea {
    width: 100%;
  }
  #postintro .slidearea .swiper-wrap .swiper-thumb ul li {
    width: 56px;
  }

  #postoutline {
    padding-top: 40px;
    display: block;
  }
  #postoutline #postnavi {
    width: 100%;
    padding: 0 0 40px;
  }
  #postoutline #postnavi .sticky {
    position: static;
    top: auto;
    width: auto;
  }
  #postoutline #postnavi .sticky > ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
  }
  #postoutline #postnavi .sticky > ul li + li {
    margin-top: 0;
  }
  #postoutline #postnavi .sticky > ul li a {
    background-color: #1A2954;
    color: #FFF;
    text-align: center;
    -webkit-border-radius: 99px;
    border-radius: 99px;
    padding: 6px 10px;
    font-size: .85em;
  }
  #postoutline #postnavi .sticky > ul li a::before {
    display: none;
  }
  #postoutline #postnavi .sticky > ul li a.current {
    color: #FFF;
    margin: 0;
  }
  #postoutline #postnavi .sticky > ul li a.current::before {
    display: none;
  }
  #postoutline #postnavi .sticky > p {
    margin-top: 10px;
  }
  #postoutline #postnavi .sticky > p a {
    -webkit-border-radius: 99px;
    border-radius: 99px;
    font-size: .85em;
    padding: 6px 10px;
  }
  #postoutline .main {
    width: 100%;
  }
  #postoutline .main .section + .section {
    margin-top: 60px;
  }
  #postoutline .main .section .sec_title {
    padding-left: 15px;
  }
  #postoutline .main .section .sec_title::before {
    width: 5px;
  }
  #postoutline .main .googlemap {
    aspect-ratio: 1.5 / 1;
  }
  #postoutline .main ul.sitelinks {
    gap: 15px 20px;
  }
}
