<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

.work-nav {
  position: fixed;
  left: 0;
  width: 100%;
  z-index: 10;
  opacity: 0;
  top: -55px;
  -webkit-transition: top 0.25s ease, opacity 0.25s ease;
  transition: top 0.25s ease, opacity 0.25s ease;
}

.work-nav.-fixed {
  top: 0;
  opacity: 1;
}

.work-nav .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  pointer-events: auto;
}

.work-nav .info {
  z-index: 2;
  position: -webkit-sticky;
  position: sticky;
}

.work-nav .info svg {
  width: 19px;
  height: 12px;
  margin-bottom: 4px;
}

.work-nav .info svg path {
  -webkit-transition: fill 0.3s ease;
  transition: fill 0.3s ease;
}

.work-nav .info span {
  text-align: center;
  display: block;
  padding-bottom: 6px;
}

.work-nav .info a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  font-size: 1.2rem;
  line-height: 1.0833;
  color: #000;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  width: 87px;
  height: 80px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  background-color: #e7f0fa;
  letter-spacing: 0.04em;
}

.work-nav .info a.-active {
  color: #007cb6;
}

.work-nav .info a.-active svg path {
  fill: #007cb6;
}

.work-nav .global {
  overflow: auto;
  width: 100%;
  padding: 12px 12px 12px 0;
  background-color: #fff;
}

.work-nav .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: auto;
/*min-width: 504px;*/
/*max-width: 504px;*/
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

.work-nav .item {
  list-style-type: none;
}

.work-nav .item:not(:last-child) {
  position: relative;
}

.work-nav .item:not(:last-child)::before {
  position: absolute;
  content: "";
  background-image: linear-gradient(to bottom, #c3c3c3, #c3c3c3 2px, transparent 2px, transparent 4px);
  background-size: 2px 4px;
  width: 1px;
  background-repeat: repeat-y;
  height: 42px;
  top: -2px;
  right: 0;
}

.work-nav .item a {
  font-size: 1.3rem;
  line-height: 1;
  color: #000;
  display: block;
  text-align: center;
  padding: 4px 9px;
  letter-spacing: 0.1em;
  text-transform: capitalize;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  height: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.work-nav .item a.-active {
  color: #007cb6;
}

.work-info {
  position: relative;
  padding-top: 80px;
}

.work-info .inner {
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  -webkit-transition-duration: 0.6s;
  transition-duration: 0.6s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  opacity: 0;
  -webkit-transform: translateY(5%);
  transform: translateY(5%);
}

.work-info .inner &gt; .notes {
  padding-top: 80px;
  font-size: 1.2rem;
  line-height: 1.6667;
}

.work-info.-active .inner {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

.work-info .info-label {
  background-color: #007cb6;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  letter-spacing: 0.06em;
  color: #fff;
  font-size: 1.3rem;
  line-height: 1.6923;
  display: inline-block;
  padding: 3px 9px 3px 8px;
}

.work-info .triangle {
  position: absolute;
}

.work-info .triangle svg {
  width: 220px;
  height: 220px;
}

.work-info:nth-child(odd) .triangle {
  right: -7.2222%;
  top: 144.4444vw;
  -webkit-transform: rotate(-26deg);
  transform: rotate(-26deg);
}

.work-info:nth-child(even) .triangle {
  right: -7.2222%;
  top: 144.4444vw;
  -webkit-transform: rotate(26deg);
  transform: rotate(26deg);
  opacity: 0.6;
}

.work-info .main-ttl.-city {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  letter-spacing: 0;
}

.work-info .main-ttl.-city::before {
  width: 48px;
  height: 8px;
  bottom: -17px;
}

.work-info .main-ttl.-city span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
}

.work-info .main-ttl.-city span::before,
.work-info .main-ttl.-city span::after {
  position: absolute;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
}

.work-info .main-ttl.-city span::before {
  left: calc(50% - 160px);
}

.work-info .main-ttl.-city span::after {
  right: calc(50% - 137px);
}

.work-info .main-ttl.-city &gt; span {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.work-info .main-ttl.-city .name {
  font-size: 3.2rem;
  line-height: 1;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  text-transform: capitalize;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  display: block;
  font-weight: 500;
}

.work-info .main-ttl.-kamiyama &gt; span::before,
.work-info .main-ttl.-kamiyama &gt; span::after {
  background-image: url(/domestic/theme/tokushima/workation/img/icon-mountain.svg);
}

.work-info .main-ttl.-kamiyama &gt; span::before {
  width: 86px;
  height: 39px;
  left: calc(50% - 164px);
  top: 32px;
}

.work-info .main-ttl.-kamiyama &gt; span::after {
  width: 67px;
  height: 30px;
  top: -34px;
}

.work-info .main-ttl.-kamikatsu &gt; span::before,
.work-info .main-ttl.-kamikatsu &gt; span::after {
  background-image: url(/domestic/theme/tokushima/workation/img/icon-leaf.svg);
}

.work-info .main-ttl.-kamikatsu &gt; span::before {
  width: 78px;
  height: 47px;
  top: 32px;
  left: calc(50% - 173px);
}

.work-info .main-ttl.-kamikatsu &gt; span::after {
  width: 64px;
  height: 40px;
  right: calc(50% - 169px);
  top: -37px;
}

.work-info .main-ttl.-miyoshi &gt; span::before,
.work-info .main-ttl.-miyoshi &gt; span::after {
  background-image: url(/domestic/theme/tokushima/workation/img/icon-house.svg);
}

.work-info .main-ttl.-miyoshi &gt; span::before {
  width: 73px;
  height: 37px;
  top: 51px;
  left: calc(50% - 160px);
}

.work-info .main-ttl.-miyoshi &gt; span::after {
  width: 62px;
  height: 31px;
  right: calc(50% - 161px);
  top: -46px;
}

.work-info .main-ttl.-tokushima &gt; span::before,
.work-info .main-ttl.-tokushima &gt; span::after {
  background-image: url(/domestic/theme/tokushima/workation/img/icon-bondance_210806.svg);
}

.work-info .main-ttl.-tokushima &gt; span::before {
  width: 44px;
  height: 94px;
  top: -10px;
  left: calc(50% - 140px);
}

.work-info .main-ttl.-tokushima &gt; span::after {
  width: 47px;
  height: 93px;
  right: calc(50% - 137px);
  top: -49px;
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.work-info .main-ttl.-mima &gt; span::before,
.work-info .main-ttl.-mima &gt; span::after {
  background-image: url(/domestic/theme/tokushima/workation/img/icon-tile.svg);
}

.work-info .main-ttl.-mima &gt; span::before {
  width: 66px;
  height: 52px;
  left: calc(50% - 150px);
  top: 36px;
}

.work-info .main-ttl.-mima &gt; span::after {
  width: 50px;
  height: 38px;
  top: -50px;
  right: calc(50% - 145px);
}

.work-info .main-ttl.-minami &gt; span::before,
.work-info .main-ttl.-minami &gt; span::after {
  background-image: url(/domestic/theme/tokushima/workation/img/icon-shell_210806.svg);
}

.work-info .main-ttl.-minami &gt; span::before {
  width: 54px;
  height: 50px;
  top: 37px;
  left: calc(50% - 150px);
}

.work-info .main-ttl.-minami &gt; span::after {
  width: 44px;
  height: 44px;
  right: calc(50% - 141px);
  top: -46px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.work-map {
  padding-bottom: 0;
}

.work-map .map-wrap {
  height: 0;
  overflow: hidden;
  padding-bottom: 80.7692%;
  position: relative;
  margin-top: 47px;
}

.work-map .map-wrap iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  pointer-events: none;
}

.work-map .bnr-wrap {
  padding: 50px 5.5556%;
}

.work-map .bnr {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.work-bnr.-mid {
  padding-bottom: 120px;
}

.work-bnr.-mid &gt; .inner {
  max-width: 710px;
}

.work-bnr.-large &gt; .inner {
  max-width: 1000px;
}

.work-bnr .bnr.-sundeminde {
  max-width: 255px;
  margin-left: auto;
  margin-right: auto;
}

.work-bnr .bnr + .bnr {
  padding-top: 30px;
}

.info-slider {
  margin-left: calc(((100vw - 100%) / 2) * -1);
  margin-right: calc(((100vw - 100%) / 2) * -1);
  margin-top: 60px;
}

.info-slider &gt; .list .item {
  padding-left: 5.5556%;
  padding-right: 5.5556%;
}

.info-slider .slick-slide.slick-current .item .about {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}

.info-slider .slick-slide.is-active-next .item .about {
  opacity: 1;
  -webkit-transition-delay: 250ms;
  transition-delay: 250ms;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}

.info-slider .slick-arrow {
  font-size: 0;
  line-height: 0;
  position: absolute;
  display: block;
  width: 45px;
  height: 45px;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
  z-index: 3;
  top: 28.8889vw;
}

.info-slider .slick-arrow::after {
  position: absolute;
  content: "";
  background-size: contain;
  width: 45px;
  height: 38px;
  background-repeat: no-repeat;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}

.info-slider .slick-prev {
  left: 0;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.info-slider .slick-prev::after {
  background-image: url(/domestic/theme/tokushima/workation/img/slider-arrow_prev.svg);
}

.info-slider .slick-next {
  right: 0;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.info-slider .slick-next::after {
  background-image: url(/domestic/theme/tokushima/workation/img/slider-arrow_next.svg);
}

.info-slider .slick-dots {
  position: absolute;
  top: 71.6667vw;
  left: 0;
  right: 0;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.info-slider .slick-dots &gt; li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.info-slider .slick-dots &gt; li + li {
  margin-left: 15px;
}

.info-slider .slick-dots button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background-image: url(/domestic/theme/tokushima/workation/img/triangle-grey_cover.svg);
  width: 11px;
  height: 9px;
  background-size: contain;
  background-repeat: no-repeat;
}

.info-slider .slick-dots .slick-active button {
  background-image: url(/domestic/theme/tokushima/workation/img/triangle-blue_cover.svg);
}

.info-intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-flow: column-reverse;
  flex-flow: column-reverse;
  position: -webkit-sticky;
  position: sticky;
  margin-top: 84px;
}

.info-intro .img {
  min-height: 1px;
}

.info-intro .img figcaption {
  font-size: 1.1rem;
  line-height: 1.4545;
  letter-spacing: 0.1em;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  margin-top: 12px;
}

.info-intro .textarea {
  padding-left: 3.125%;
  padding-right: 3.125%;
}

.info-intro .textarea .label {
  margin-top: 35px;
  display: block;
}

.info-intro .textarea .title {
  font-size: 2.2rem;
  line-height: 1.7727;
  letter-spacing: 0.12em;
  margin-top: 8px;
}

.info-intro .textarea .title.-tokushima {
  margin-top: 28px;
}

.info-intro .textarea p {
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.16em;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  margin-top: 18px;
}

.info-intro .textarea .pdf {
  margin-top: 24px;
}

.info-cont .about {
  margin-top: 48px;
  opacity: 0;
  -webkit-transform: translateY(10%);
  transform: translateY(10%);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  text-align: center;
}

.info-cont .about &gt; .icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.info-cont .about &gt; .icons &gt; .item {
  width: 38px;
  padding: 0;
}

.info-cont .about &gt; .icons &gt; .item + .item {
  margin-left: 11px;
}

.info-cont .about &gt; .icons &gt; .item.-large {
  width: 42px;
}

.info-cont .about &gt; .icons &gt; .item img {
  width: 100%;
}

.info-cont .about .pdf {
  margin-top: 12px;
}

.info-cont .about &gt; .ttl {
  font-size: 1.9rem;
  line-height: 1.4737;
  letter-spacing: 0.12em;
  text-align: center;
  margin-top: 23px;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

.info-cont .about &gt; .ttl .-small {
  font-size: 1.4rem;
  line-height: 1.4286;
}

.info-cont .about &gt; .label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 24px;
}

.info-cont .about &gt; .text {
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.14em;
  margin-top: 16px;
  text-align: center;
}

.info-cont .about &gt; .text ul {
  text-align: left;
}

.info-cont .about &gt; .text p + p {
  margin-top: 2em;
}

.info-cont .about &gt; .text p .small {
  font-size: 1.2rem;
  line-height: 2.3333;
  letter-spacing: 0;
}

.info-cont .about &gt; .text .notes .dp {
  display: inline;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(95%, transparent), color-stop(0%, #000));
  background: linear-gradient(transparent 95%, #000 0%);
  padding-bottom: 2px;
}

.info-cont .about &gt; .text .notes .dp:hover {
  text-decoration: none;
  background: transparent;
}

.info-cont .about &gt; .text .notes .dp span {
  position: relative;
  height: 7px;
  width: 8px;
  display: inline-block;
}

.info-cont .about &gt; .text .notes .dp span::before {
  position: absolute;
  background: url(/domestic/theme/tokushima/workation/img/arrow-black_s.svg);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  width: 8px;
  height: 7px;
  right: 2px;
  top: -1px;
}

.info-cont .about &gt; .text .notes.-small {
  font-size: 1.2rem;
  line-height: 2;
}

.info-cont .about &gt; .text sup {
  font-size: 70%;
  vertical-align: top;
  position: relative;
  top: -0.1em;
}

.info-cont .about a {
  color: #000;
  text-align: left;
}

.info-cont .chapter-blk {
  margin-top: 30px;
}

.info-cont .chapter-blk &gt; table {
  width: 100%;
}

.info-cont .chapter-blk tr {
  border-top: 1px solid #c6d1dd;
  padding: 15px 0;
  display: block;
}

.info-cont .chapter-blk tr:last-child {
  border-bottom: 1px solid #c6d1dd;
}

.info-cont .chapter-blk th {
  color: #007cb6;
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 1.7143;
  letter-spacing: 0.05em;
  width: 100%;
  text-align: center;
  display: block;
  padding-bottom: 14px;
}

.info-cont .chapter-blk td {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1 1;
  font-size: 1.3rem;
  line-height: 1.8462;
  letter-spacing: 0.05em;
}

.info-cont .chapter-blk td:first-child {
  margin-top: 0;
}

.info-cont .chapter-blk td .cont {
  margin-top: 20px;
  margin-bottom: 20px;
}

.info-cont .chapter-blk td .cont:first-child {
  margin-top: 0;
}

.info-cont .chapter-blk td .cont:last-child {
  margin-bottom: 0;
}

.info-cont .chapter-blk td strong {
  font-weight: 500 !important;
  font-size: 1.4rem;
  line-height: 1.7143;
  letter-spacing: 0.04em;
}

.info-cont .chapter-blk td .notes {
  font-size: 1.1rem;
  line-height: 1.8182;
  letter-spacing: 0.01em;
}

.info-cont .chapter-blk td .notes.-small {
  font-size: 1.2rem;
  line-height: 1.6667;
}

.info-cont .chapter-blk td .notes.-right {
  text-align: right;
}

.info-cont .chapter-blk td .notelist {
  margin-top: 10px;
}

.info-cont .chapter-blk td .notelist li {
  font-size: 1.1rem;
  line-height: 1.8182;
  padding-left: 1em;
  text-indent: -1em;
}

.info-cont .chapter-blk td .notelist li::before {
  content: "※";
}

.info-cont .chapter-blk td .dotslist li {
  padding-left: 1em;
  text-indent: -1em;
}

.info-cont .chapter-blk td .dotslist li::before {
  content: "・";
}

.info-cont .chapter-blk td .linelist dd {
  position: relative;
  padding-left: 40px;
}

.info-cont .chapter-blk td .linelist dd::before {
  position: absolute;
  content: "";
  background-color: #000;
  width: 20px;
  height: 1px;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 10px;
}

.info-cont .chapter-blk td &gt; .row.-column01 strong {
  margin-bottom: 10px;
  font-weight: 500 !important;
}

.info-cont .chapter-blk td .chart {
  width: 87.5%;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 0.06em;
}

.info-cont .chapter-blk td .chart.-topL &gt; .row:nth-child(1) {
  width: 100%;
}

.info-cont .chapter-blk td .chart.-topL &gt; .row:nth-child(n+2) {
  margin-top: 20px;
}

.info-cont .chapter-blk td .chart.-topL &gt; .row:nth-child(2n) {
  margin-left: 0;
}

.info-cont .chapter-blk td .chart.-topL &gt; .row:nth-child(3n) {
  margin-left: 1.8182%;
}

.info-cont .chapter-blk td .chart &gt; .row {
  border: 1px solid #c6d1dd;
}

.info-cont .chapter-blk td .chart &gt; .row:nth-child(n+2) {
  margin-top: 20px;
}

.info-cont .chapter-blk td .chart &gt; .row dt {
  border-bottom: 1px solid #c6d1dd;
  text-align: center;
  padding: 10px 0;
}

.info-cont .chapter-blk td .chart &gt; .row dd {
  text-align: center;
  padding: 14px 0;
}

.info-cont .chapter-blk td .chart &gt; .row dd .line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.info-cont .chapter-blk td .chart &gt; .row dd .line li + li {
  position: relative;
  padding-left: 50px;
}

.info-cont .chapter-blk td .chart &gt; .row dd .line li + li::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 1px;
  background-color: #000;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 15px;
}

.info-cont .chapter-blk td .desc dt {
  white-space: nowrap;
}

.info-cont .chapter-blk td .desc dd {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1 1;
}

.info-cont .data {
  position: relative;
  text-align: center;
  margin-top: 40px;
  padding-bottom: 24px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.info-cont .data::after {
  position: absolute;
  content: "";
  background-image: linear-gradient(to right, #007cb6, #007cb6 2px, transparent 2px, transparent 7px);
  background-size: 7px 2px;
  background-repeat: repeat-x;
  height: 2px;
  left: 0;
  width: 100%;
  bottom: 0;
}

.info-cont .data &gt; .info {
  width: 93.75%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
}

.info-cont .data &gt; .info .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
}

.info-cont .data &gt; .info .row + .row {
  margin-top: 10px;
}

.info-cont .data &gt; .info .row dt {
  color: #007cb6;
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.06em;
  width: 60px;
}

.info-cont .data &gt; .info .row dd {
  font-size: 1.4rem;
  line-height: 1.5714;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1 1;
  margin-left: 15px;
}

.info-cont .data &gt; .name {
  color: #007cb6;
  font-size: 1.6rem;
  line-height: 1;
  text-transform: uppercase;
  font-weight: bold;
  position: relative;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

.info-cont .data &gt; .name::before,
.info-cont .data &gt; .name::after {
  position: absolute;
  content: "";
  background-image: linear-gradient(to right, #007cb6, #007cb6 2px, transparent 2px, transparent 7px);
  background-size: 7px 2px;
  background-repeat: repeat-x;
  height: 2px;
  width: 42.8125%;
  top: 0;
  bottom: 0;
  margin: auto;
}

.info-cont .data &gt; .name::before {
  left: 0;
}

.info-cont .data &gt; .name::after {
  right: 0;
}

.info-cont .data &gt; .ttl {
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 1.8571;
  letter-spacing: 0.06em;
  margin-top: 20px;
}

.info-cont .data p {
  font-size: 1.4rem;
  line-height: 1.8571;
  letter-spacing: 0.06em;
  margin-top: 12px;
}

.info-cont .data p + p {
  margin-top: 0;
}

.info-cont .data p a {
  color: #007cb6;
  text-decoration: underline;
}

.info-cont .data p a[target=_blank] {
  position: relative;
}

.info-cont .data p a[target=_blank]::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 16px;
  height: 11px;
  margin: 0 5px;
  background: url(/domestic/theme/tokushima/workation/img/icon-blank.svg) no-repeat 0 0;
  content: "";
  vertical-align: baseline;
  right: -18px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.info-cont .bnr {
  max-width: 255px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 50px;
}

.info-cont .info-link {
  margin-top: 50px;
}

.scroll-top .pagetop {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
  border: none;
  border-radius: 50%;
  background-color: #007cb6;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.scroll-top .pagetop::before {
  position: absolute;
  content: "";
  background-image: url(/domestic/theme/tokushima/workation/img/arrow-white_s.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 16px;
  height: 18px;
  top: calc(50% - 12px);
  right: 0;
  left: 0;
  margin: auto;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.scroll-top .pagetop::after {
  content: none;
  display: none;
}

.trial-article {
  padding-top: 45px;
  padding-bottom: 100px;
}

.trial-article &gt; .inner {
  margin-left: auto;
  margin-right: auto;
  width: 91.6667%;
}

.article-header .title {
  font-size: 1.8rem;
  line-height: 1.4444;
  position: relative;
  font-weight: bold;
}

.article-header .title::before {
  position: absolute;
  content: "";
  background-image: url(/domestic/theme/tokushima/workation/img/title-accent.svg);
  width: 53px;
  height: 8px;
  bottom: -22px;
  left: 0;
  background-repeat: no-repeat;
  background-size: contain;
}

.article-header .info {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  color: #999;
  font-size: 1.4rem;
  line-height: 1;
  margin-top: 37px;
}

.article-img {
  margin-top: 30px;
}

.article-body {
  border-bottom: 1px solid #ccc;
  padding-bottom: 60px;
}

.article-body .lead-info {
  margin-bottom: 45px;
  margin-top: 28px;
}

.article-body .lead-info .text {
  font-size: 1.2rem;
  line-height: 1.8333;
  letter-spacing: 0.02em;
}

.article-body .lead-info .author {
  margin-top: 15px;
}

.article-body .lead-info .author .row {
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.02em;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.article-body .lead-info .author .row + .row {
  margin-top: 12px;
}

.article-body .lead-info .author dt {
  margin-right: 16px;
}

.article-body .section-box {
  background-color: #f1f6fc;
  padding: 25px;
  margin-bottom: 30px;
}

.article-body .section-box .title {
  font-size: 1.2rem;
  line-height: 1;
  font-weight: bold;
  position: relative;
  font-weight: bold;
  pointer-events: visible;
}

.article-body .section-box .title::before,
.article-body .section-box .title::after {
  position: absolute;
  content: "";
  width: 14px;
  height: 2px;
  top: 50%;
  right: 0;
  background-color: #000;
  -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;
}

.article-body .section-box .title.-active::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -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;
}

.article-body .section-box .anchors {
  margin-top: 10px;
  list-style: disc;
  padding-left: 1.3em;
}

.article-body .section-box .anchors li + li {
  margin-top: 10px;
}

.article-body .section-box .anchors li a {
  color: #000;
  font-size: 1.4rem;
  line-height: 1.8571;
  text-decoration: underline;
  letter-spacing: 0.04em;
}

.article-body .section {
  margin-bottom: 40px;
}

.article-body .section .section-ttl {
  font-size: 1.6rem;
  line-height: 1.625;
  border-left: 4px solid #007cb6;
  padding-left: 10px;
  font-weight: bold;
  letter-spacing: 0.02em;
}

.article-body .section-body {
  margin-bottom: 34px;
}

.article-body .section-body .img {
  margin-top: 20px;
  margin-bottom: 20px;
}

.article-body .section-body .img figcaption {
  margin-top: 10px;
  font-size: 1rem;
  line-height: 1.7;
  text-align: center;
  letter-spacing: 0.02em;
}

.article-body .section-body p {
  font-size: 1.2rem;
  line-height: 1.8333;
  letter-spacing: 0.04em;
  margin-top: 10px;
  margin-bottom: 10px;
}

.article-body .section-body p a {
  color: #007cb6;
  text-decoration: underline;
}

.article-body .section-body p a[target=_blank]::after {
  display: inline-block;
  width: 16px;
  height: 11px;
  margin: 0 5px;
  background: url(/domestic/theme/tokushima/workation/img/icon-blank.svg) no-repeat 0 0;
  content: "";
  vertical-align: baseline;
}

.article-body .section-body .notes {
  font-size: 1.2rem;
  line-height: 1.8333;
}

.article-body .section-end {
  position: relative;
  background: url(/domestic/theme/tokushima/workation/img/icon-dots.svg) no-repeat 0 0;
  background-size: 54px 4px;
  padding-top: 20px;
}

.article-body .section-end .info {
  font-size: 1.2rem;
  line-height: 1.8333;
}

.article-body .section-end .info + .info {
  margin-top: 20px;
}

.article-body .section-end .info dt {
  font-weight: bold;
}

.article-body .section-end .info a {
  color: #007cb6;
  text-decoration: underline;
}

.article-body .section-end .info a[target=_blank]::after {
  display: inline-block;
  width: 16px;
  height: 11px;
  margin: 0 5px;
  background: url(/domestic/theme/tokushima/workation/img/icon-blank.svg) no-repeat 0 0;
  content: "";
  vertical-align: baseline;
}

.article-footer {
  padding-top: 42px;
}

.article-footer .footer-title {
  font-size: 1.9rem;
  line-height: 1.4211;
  letter-spacing: 0.04em;
  position: relative;
  text-align: center;
}

.article-footer .footer-title::before {
  position: absolute;
  content: "";
  background-image: url(/domestic/theme/tokushima/workation/img/title-accent_black.svg);
  width: 53px;
  height: 8px;
  bottom: -20px;
  left: 0;
  right: 0;
  margin: auto;
  background-repeat: no-repeat;
  background-size: contain;
}

.article-footer .article-link {
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  width: 72.7273%;
  margin-bottom: 34px;
  background-color: #f1f6fc;
}

.article-footer .article-link .link {
  margin-top: 16px;
}

.article-footer .article-return {
  text-align: right;
}

.trial-header {
  padding-top: 40px;
}

.trial-header .copy {
  width: 91.6667%;
  margin-left: auto;
  margin-right: auto;
  border-bottom: 1px solid #ccc;
  padding-bottom: 30px;
}

.trial-header .title .logo {
  display: inline-block;
  width: 246px;
}

.trial-header .header-return {
  line-height: 1;
  padding-top: 4px;
}

.trial-header a {
  font-size: 1.1rem;
  line-height: 1;
  letter-spacing: 0.01em;
}

#wrap-container + .global-pagetop-box .pagetop {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  text-decoration: none;
  border: none;
  border-radius: 50%;
  background-color: #007cb6;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

#wrap-container + .global-pagetop-box .pagetop::before {
  position: absolute;
  content: "";
  background-image: url(/domestic/theme/tokushima/workation/img/arrow-white_s.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 16px;
  height: 18px;
  top: calc(50% - 12px);
  right: 0;
  left: 0;
  margin: auto;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

#wrap-container + .global-pagetop-box .pagetop::after {
  content: none;
  display: none;
}

.work-intro .textarea {
  width: 83.3333%;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  padding-top: 36px;
  padding-bottom: 44px;
}

.work-intro .textarea p {
  font-size: 1.5rem;
  line-height: 1.8667;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  letter-spacing: 0.06em;
}

.work-intro .textarea p + p {
  padding-top: 16px;
}

.work-intro .intro-info {
  border-top: 2px solid #f1f6fc;
}

.work-intro .intro-info .wrap {
  padding-top: 40px;
  padding-bottom: 130px;
  width: 88.8889%;
  margin-left: auto;
  margin-right: auto;
}

.work-intro .intro-info .title {
  color: #007cb6;
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.15em;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  padding-left: 3.125%;
}

.work-intro .intro-info .detail {
  padding-left: 3.125%;
  padding-top: 25px;
}

.work-intro .intro-info .notes {
  padding-left: 1em;
  text-indent: -1em;
  padding-top: 27px;
  font-size: 1.3rem;
  line-height: 1.5385;
  letter-spacing: 0.06em;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

.work-intro .intro-info .notes::before {
  content: "※";
}

.work-intro .intro-info .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
}

.work-intro .intro-info .list .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.work-intro .intro-info .list .item:nth-child(odd) {
  width: 56.129%;
}

.work-intro .intro-info .list .item:nth-child(even) {
  width: 36.7742%;
  margin-left: 3.871%;
}

.work-intro .intro-info .list .item:nth-child(n+3) {
  margin-top: 19px;
}

.work-intro .intro-info .list .item figure {
  width: 38px;
}

.work-intro .intro-info .list .item p {
  font-size: 1.3rem;
  line-height: 1.5385;
  letter-spacing: 0.06em;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  padding-left: 8px;
}

.work-awa {
  padding-bottom: 75px;
}

.work-awa .inner {
  width: 88.8889%;
  margin-left: auto;
  margin-right: auto;
  border: 4px solid #f1f6fc;
  padding-top: 35px;
  padding-bottom: 36px;
}

.work-awa .textarea {
  padding-top: 40px;
}

.work-awa .textarea .text {
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.15em;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

.work-awa .textarea .contact {
  padding-top: 12px;
  font-size: 1.4rem;
  line-height: 1.8571;
  letter-spacing: 0.15em;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  font-weight: bold;
}

.work-awa .textarea .contact .point {
  color: #007cb6;
  font-weight: bold;
}

.work-awa .textarea .contact .mail {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.work-awa .textarea .contact a {
  font-weight: bold;
  color: #000;
  letter-spacing: 0.14em;
}

.work-awa .download {
  padding-top: 37px;
}

.work-awa .download .item &gt; a {
  background-color: #f1f6fc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 22px 5.1471% 14px;
}

.work-awa .download .item + .item {
  margin-top: 20px;
}

.work-awa .download .item .image {
  width: 31.6176%;
}

.work-awa .download .item .detail {
  margin-left: 13px;
  margin-top: -4px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1 1;
}

.work-awa .download .item .detail .text {
  font-size: 1.4rem;
  line-height: 1.5714;
  color: #000;
  text-decoration: none;
}

.work-awa .download .item .detail .link {
  margin-top: 8px;
}

.u-hidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  margin: -1px;
}

@media screen and (min-width: 768px) {
  .to-module {
    margin-top: 30px;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 54px;
  }

  .to-module .wrap950 {
    width: 87.963%;
  }

  .to-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .to-section.-large {
    padding-top: 110px;
    padding-bottom: 110px;
  }

  .to-section &gt; .inner {
    padding-left: 0;
    padding-right: 0;
    margin-left: auto;
    margin-right: auto;
    max-width: 1080px;
    width: 87.0968%;
  }

  .to-section .main-ttl {
    font-size: 2.9rem;
    line-height: 1;
    letter-spacing: 0.12em;
  }

  .to-section .main-ttl.-small {
    font-size: 2.9rem;
    line-height: 1;
    letter-spacing: 0.12em;
  }

  .to-section .main-ttl::before {
    bottom: -27px;
    width: 63px;
    height: 10px;
  }

  .to-section .header {
    margin-bottom: 70px;
  }

  .to-section .header .title + .lead {
    margin-top: 30px;
  }

  .to-section .lead p {
    font-size: 1.5rem;
    line-height: 2;
  }

  .opacity-link a {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }

  .opacity-link a:hover {
    opacity: 0.7;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }

  .info-link a {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-flow: row-reverse;
    flex-flow: row-reverse;
    padding: 40px 6.4516%;
  }

  .info-link .textaea {
    margin-left: 7.4074%;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 1 1;
    flex: 1 1;
    -ms-flex-flow: wrap;
    flex-flow: wrap;
  }

  .info-link .title {
    font-size: 1.5rem;
    line-height: 1.8667;
    margin-top: 8px;
    text-align: left;
  }

  .info-link .img {
    width: 42.5926%;
  }

  .return-link a {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    font-size: 1.4rem;
    line-height: 1;
  }

  .return-link a:hover {
    opacity: 0.7;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }

  .return-link a svg {
    margin-left: 7px;
  }

  .cmn-link:hover::before {
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-name: arrowanime;
    animation-name: arrowAnime;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
  }

  .cmn-link.pdf a {
    padding: 13px 24px 12px 40px;
  }

  .cmn-link.pdf span {
    width: 15px;
  }

  .cmn-link::before {
    left: 2px;
    top: 8px;
    -webkit-transition: left 0.3s ease;
    transition: left 0.3s ease;
  }

  .cmn-link a,
  .cmn-link .arrow {
    font-size: 1.5rem;
    line-height: 1;
    padding-left: 16px;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
  }

  .cmn-link a:hover,
  .cmn-link .arrow:hover {
    color: #007cb6;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
  }

  .cmn-link a::after,
  .cmn-link .arrow::after {
    left: 0;
    right: -6px;
  }

  .article-link a:hover .cmn-link::before {
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-name: arrowanime;
    animation-name: arrowAnime;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
  }

  .article-link a:hover .arrow {
    color: #007cb6;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
  }

  .article-link a .arrow {
    font-size: 1.5rem;
    line-height: 1.4667;
  }

  .to-container {
    margin-right: calc(((100vw - 100%) / 2) * -1);
    margin-left: calc(((100vw - 100%) / 2) * -1);
  }

  .work-header .copy {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    top: 39.3189%;
    right: inherit;
    left: 5.9375%;
    letter-spacing: 0.04em;
  }

  .work-header .title {
    margin-left: 0;
    padding-top: 2.5vw;
  }

  .work-header .title .header-logo {
    -webkit-filter: drop-shadow(0 0 0.44em rgba(32, 44, 40, 0.38));
    filter: drop-shadow(0 0 0.44em rgba(32, 44, 40, 0.38));
  }

  .work-header .text {
    text-shadow: 0 0 0.44em rgba(32, 44, 40, 0.48);
    text-align: left;
    letter-spacing: 0.04em;
    line-height: 1.5333;
    width: 100%;
    -webkit-font-feature-settings: inherit;
    font-feature-settings: inherit;
  }

  .work-footer {
    padding-top: 80px;
    padding-bottom: 120px;
  }

  .work-footer &gt; .inner {
    max-width: 800px !important;
  }

  .work-footer .bnr {
    padding-left: 45px;
    padding-right: 45px;
  }

  .dp-point {
    max-width: 480px;
  }

  .dp-point .title {
    width: 196px;
  }

  .dp-point p {
    font-size: 1.4rem;
    line-height: 1.8571;
    padding: 10px 24px 14px;
  }

  .to-tour-list {
    margin-top: 74px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    margin-left: -15px;
    margin-right: -15px;
  }

  .to-tour-list.-single .item {
    position: relative;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: calc(100% - 30px);
  }

  .to-tour-list.-single .item + .item {
    margin-top: 50px;
  }

  .to-tour-list.-single .item .info {
    margin-bottom: 0;
    padding-top: 25px;
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 76px;
    width: 56.6667%;
  }

  .to-tour-list.-single .item .info .name {
    margin-bottom: 10px;
  }

  .to-tour-list.-single .item .info .date,
  .to-tour-list.-single .item .info .price {
    display: inline-block;
    margin-bottom: 20px;
  }

  .to-tour-list.-single .item .info .date + .price {
    margin-left: 16px;
  }

  .to-tour-list.-single .item .image {
    width: 43.3333%;
    margin-bottom: 0;
  }

  .to-tour-list.-single .item .image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover;";
  }

  .to-tour-list.-single .item .reserve {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 56.6667%;
  }

  .to-tour-list.-single .item .reserve .button a {
    height: 50px;
    font-size: 1.7rem;
    line-height: 1.5882;
  }

  .to-tour-list .item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: calc((100% - 90px) / 3);
    margin-left: 15px;
    margin-right: 15px;
  }

  .to-tour-list .item .info {
    padding: 0 20px;
    margin-bottom: 10px;
  }

  .to-tour-list .item .info .name {
    font-size: 1.9rem;
    line-height: 1.5263;
    margin-bottom: 10px;
  }

  .to-tour-list .item .info .name .sub {
    font-size: 1.5rem;
    line-height: 1.6667;
  }

  .to-tour-list .item .info .date {
    font-size: 1.4rem;
    line-height: 1.7143;
    margin-bottom: 15px;
  }

  .to-tour-list .item .info .price {
    font-size: 1.8rem;
    line-height: 1.5556;
    margin-bottom: 30px;
  }

  .to-tour-list .item .info .price strong {
    font-size: 2.6rem;
    line-height: 1;
  }

  .to-tour-list .item .info .text {
    font-size: 1.4rem;
    line-height: 1.8571;
  }

  .to-tour-list .item .image {
    margin-bottom: 30px;
  }

  .to-tour-list .item .reserve .to-select {
    padding: 20px;
  }

  .to-tour-list .item .reserve .button:hover {
    background-image: -webkit-gradient(linear, right top, left top, color-stop(25%, #007cb6), color-stop(25%, transparent));
    background-image: linear-gradient(to left, #007cb6 25%, transparent 25%);
  }

  .to-tour-list .item .reserve .button a {
    font-size: 1.8rem;
    line-height: 1.5556;
    height: 70px;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
    background-color: #fff;
    padding-left: 24px;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
  }

  .to-tour-list .item .reserve .button a:hover {
    color: #007cb6;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
  }

  .to-tour-list .item .reserve .button a:hover span::after {
    -webkit-transition-property: border, background-color;
    transition-property: border, background-color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
    border: 1px solid #007cb6;
    background-color: #007cb6;
  }

  .to-tour-list .item .reserve .button a:hover span svg {
    fill: #fff;
    -webkit-transition: fill 0.3s ease;
    transition: fill 0.3s ease;
  }

  .work-slider .slick-dots {
    bottom: 30px;
    left: inherit;
    right: 30px;
  }

  .work-slider .slick-dots &gt; li {
    -webkit-filter: drop-shadow(0 0 20px rgba(39, 44, 33, 0.5));
    filter: drop-shadow(0 0 20px rgba(39, 44, 33, 0.5));
  }

  .work-activity {
    padding-top: 90px;
  }

  .work-activity .main-ttl {
    font-size: 4rem;
    line-height: 1;
  }

  .work-activity .desc {
    padding-top: 100px;
  }

  .work-activity .desc &gt; .title {
    font-size: 3.4rem;
    line-height: 1.4118;
  }

  .work-activity .desc p {
    font-size: 1.6rem;
    line-height: 1.875;
    margin-top: 30px;
  }

  .work-activity .notes {
    font-size: 1.4rem;
    line-height: 1.8571;
  }

  .work-dp {
    padding-bottom: 100px;
  }

  .work-dp .dp-title {
    font-size: 3.4rem;
    line-height: 1.4118;
  }

  .work-dp .intro {
    font-size: 1.6rem;
    line-height: 1.875;
    padding-top: 36px;
  }

  .work-nav {
    width: auto;
    left: inherit;
    display: block;
    -webkit-transition: right 0.25s ease, opacity 0.25s ease;
    transition: right 0.25s ease, opacity 0.25s ease;
    top: 64px;
    right: -72px;
  }

  .work-nav.-fixed {
    right: 0;
  }

  .work-nav .inner {
    display: block;
    max-height: 770px;
    min-height: 770px;
    max-width: 97px;
    min-width: 97px;
  }

  .work-nav .info svg {
    margin-bottom: 0;
    margin-top: 10px;
    width: 25px;
    height: 16px;
  }

  .work-nav .info a {
    display: block;
    text-align: center;
    font-size: 1.3rem;
    line-height: 1.3846;
    padding: 2.0313vh 0 1.5625vh;
    height: auto;
    width: auto;
    max-height: 181px;
  }

  .work-nav .info a:hover {
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
    text-decoration: none;
    color: #007cb6;
  }

  .work-nav .info a:hover svg path {
    -webkit-transition: fill 0.3s ease;
    transition: fill 0.3s ease;
    fill: #007cb6;
  }

  .work-nav .global {
    padding: 0;
    overflow: inherit;
  }

  .work-nav .list {
    display: block;
    min-width: inherit;
    max-width: inherit;
    height: auto;
  }

  .work-nav .item {
    width: inherit;
  }

  .work-nav .item:not(:last-child)::before {
    position: absolute;
    content: "";
    background-image: linear-gradient(to right, #c3c3c3, #c3c3c3 2px, transparent 2px, transparent 4px);
    background-size: 4px 2px;
    width: 74px;
    height: 1px;
    background-repeat: repeat-x;
    top: inherit;
    left: 0;
    bottom: 0;
    margin: auto;
  }

  .work-nav .item a {
    letter-spacing: 0.04em;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 2.3438vh 0;
    font-size: 1.3rem;
    line-height: 1.3846;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
    width: 100%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: auto;
  }

  .work-nav .item a:hover {
    text-decoration: none;
    color: #007cb6;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
  }

  .work-info {
    padding-top: 123px;
    padding-bottom: 120px;
  }

  .work-info .inner &gt; .notes {
    padding-top: 100px;
    padding-left: 9.2593%;
    font-size: 1.4rem;
    line-height: 1.7143;
  }

  .work-info .info-label {
    font-size: 1.5rem;
    line-height: 1;
    letter-spacing: 0.04em;
    padding: 7px 10px 8px 8px;
  }

  .work-info .triangle svg {
    width: 270px;
    height: 270px;
  }

  .work-info:nth-child(odd) .triangle {
    right: 88px;
    top: 256px;
  }

  .work-info:nth-child(even) .triangle {
    right: 28px;
    top: 256px;
  }

  .work-info .main-ttl.-city::before {
    width: 72px;
    height: 11px;
    bottom: -25px;
  }

  .work-info .main-ttl.-city span::before {
    left: calc(50% - 280px);
  }

  .work-info .main-ttl.-city span::after {
    right: calc(50% - 230px);
  }

  .work-info .main-ttl.-city .name {
    font-size: 4.6rem;
    line-height: 1;
  }

  .work-info .main-ttl.-kamiyama &gt; span::before {
    top: 11px;
    width: 129px;
    height: 59px;
    left: calc(50% - 283px);
  }

  .work-info .main-ttl.-kamiyama &gt; span::after {
    top: -49px;
    width: 87px;
    height: 40px;
    right: calc(50% - 237px);
  }

  .work-info .main-ttl.-kamikatsu &gt; span::before {
    width: 108px;
    height: 67px;
    top: 46px;
    left: calc(50% - 264px);
  }

  .work-info .main-ttl.-kamikatsu &gt; span::after {
    width: 82px;
    height: 50px;
    top: -43px;
    right: calc(50% - 258px);
  }

  .work-info .main-ttl.-miyoshi &gt; span::before {
    width: 108px;
    height: 54px;
    top: 60px;
    left: calc(50% - 264px);
  }

  .work-info .main-ttl.-miyoshi &gt; span::after {
    width: 91px;
    height: 45px;
    top: -42px;
    right: calc(50% - 248px);
  }

  .work-info .main-ttl.-tokushima &gt; span::before {
    width: 57px;
    top: -10px;
    height: 119px;
    left: calc(50% - 186px);
  }

  .work-info .main-ttl.-tokushima &gt; span::after {
    width: 48px;
    height: 102px;
    right: calc(50% - 177px);
    top: -49px;
  }

  .work-info .main-ttl.-mima &gt; span::before {
    width: 94px;
    height: 71px;
    left: calc(50% - 220px);
    top: 35px;
  }

  .work-info .main-ttl.-mima &gt; span::after {
    width: 72px;
    top: -43px;
    height: 55px;
    right: calc(50% - 226px);
  }

  .work-info .main-ttl.-minami &gt; span::before {
    width: 81px;
    height: 77px;
    top: 30px;
    left: calc(50% - 264px);
  }

  .work-info .main-ttl.-minami &gt; span::after {
    width: 65px;
    top: -38px;
    height: 65px;
    right: calc(50% - 250px);
  }

  .work-map {
    padding-bottom: 0;
  }

  .work-map .map-wrap {
    margin-top: 84px;
    padding-bottom: 41.4063%;
  }

  .work-map .bnr-wrap {
    padding: 100px 10.9375%;
  }

  .work-bnr.-mid {
    padding-top: 80px;
    padding-bottom: 100px;
  }

  .work-bnr.-large {
    padding-top: 90px;
    padding-bottom: 100px;
  }

  .work-bnr .bnr.-sundeminde {
    max-width: 510px;
  }

  .work-bnr .bnr + .bnr {
    padding-top: 70px;
  }

  .info-slider {
    margin-top: 95px;
  }

  .info-slider &gt; .list .item {
    padding-left: 3.125%;
    padding-right: 3.125%;
  }

  .info-slider .slick-arrow {
    width: 80px;
    height: 80px;
    top: 16.6406vw;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }

  .info-slider .slick-arrow:hover,
  .info-slider .slick-arrow:focus {
    color: transparent;
    opacity: 0.6;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    outline: none;
    cursor: pointer;
  }

  .info-slider .slick-arrow::after {
    width: 69px;
    height: 58px;
  }

  .info-slider .slick-prev {
    left: 18.8281%;
    overflow: hidden;
  }

  .info-slider .slick-next {
    right: 18.8281%;
    overflow: hidden;
  }

  .info-slider .slick-dots {
    top: 39.5313vw;
  }

  .info-slider .slick-dots &gt; li + li {
    margin-left: 20px;
  }

  .info-slider .slick-dots button {
    width: 10px;
    height: 8px;
  }

  .info-slider .slick-dots .slick-active button {
    width: 20px;
    height: 17px;
  }

  .info-intro {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-flow: row-reverse;
    flex-flow: row-reverse;
    margin-top: 134px;
    padding-left: 3.7037%;
    padding-right: 3.7037%;
  }

  .info-intro .img {
    width: 45%;
  }

  .info-intro .img figcaption {
    font-size: 1.3rem;
    line-height: 1.3846;
    margin-top: 10px;
  }

  .info-intro .textarea {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1 1;
    padding-right: 0;
    padding-left: 5%;
  }

  .info-intro .textarea .label {
    margin-top: 5px;
  }

  .info-intro .textarea .title {
    letter-spacing: 0.14em;
    font-size: 2.8rem;
    line-height: 1.7857;
    margin-top: 10px;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
  }

  .info-intro .textarea p {
    font-size: 1.5rem;
    line-height: 2;
    margin-top: 26px;
  }

  .info-intro .textarea .pdf {
    margin-top: 22px;
  }

  .info-cont .about {
    margin-top: 54px;
    margin-left: -20px;
    margin-right: -20px;
    max-width: 680px;
  }

  .info-cont .about &gt; .icons {
    margin-right: 34px;
  }

  .info-cont .about &gt; .icons &gt; .item {
    width: 44px;
  }

  .info-cont .about &gt; .icons &gt; .item + .item {
    margin-left: 14px;
  }

  .info-cont .about &gt; .icons &gt; .item.-large {
    width: 52px;
    height: 48px;
  }

  .info-cont .about .pdf {
    margin-top: 23px;
  }

  .info-cont .about &gt; .ttl {
    font-size: 2.8rem;
    line-height: 1.5;
    letter-spacing: 0.12em;
    margin-top: 16px;
  }

  .info-cont .about &gt; .ttl .-small {
    font-size: 1.8rem;
    line-height: 1.4444;
  }

  .info-cont .about &gt; .text {
    font-size: 1.5rem;
    line-height: 2;
    letter-spacing: 0.15em;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
    margin-top: 20px;
  }

  .info-cont .about &gt; .text p .small {
    font-size: 1.1rem;
    line-height: 2.7273;
  }

  .info-cont .about &gt; .text .notes .dp span {
    width: 11px;
  }

  .info-cont .about &gt; .text .notes .dp span::before {
    right: -1px;
  }

  .info-cont .chapter-blk {
    margin-top: 42px;
  }

  .info-cont .chapter-blk tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    padding: 20px 0;
    -ms-flex-flow: nowrap;
    flex-flow: nowrap;
  }

  .info-cont .chapter-blk th {
    width: 19.1176%;
    text-align: left;
    padding-bottom: 0;
  }

  .info-cont .chapter-blk td {
    display: block;
    width: 100%;
    font-size: 1.4rem;
    line-height: 1.7143;
    letter-spacing: 0.11em;
  }

  .info-cont .chapter-blk td strong {
    letter-spacing: 0.14em;
    font-size: 1.5rem;
    line-height: 1.7333;
  }

  .info-cont .chapter-blk td .notes {
    font-size: 1.2rem;
    line-height: 1.6667;
    letter-spacing: 0.01em;
  }

  .info-cont .chapter-blk td .notelist li {
    font-size: 1.2rem;
    line-height: 1.6667;
  }

  .info-cont .chapter-blk td .linelist .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .info-cont .chapter-blk td &gt; .row.-column02 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
  }

  .info-cont .chapter-blk td &gt; .row.-column02 p + p {
    margin-left: 12px;
  }

  .info-cont .chapter-blk td .chart {
    width: 100%;
  }

  .info-cont .chapter-blk td .desc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .info-cont .data {
    width: 91.1765%;
  }

  .info-cont .data &gt; .info {
    max-width: 510px;
    margin-top: 25px;
  }

  .info-cont .data &gt; .info .row + .row {
    margin-top: 12px;
  }

  .info-cont .data &gt; .info .row dt {
    font-size: 1.4rem;
    line-height: 2;
    letter-spacing: 0.16em;
    width: 70px;
  }

  .info-cont .data &gt; .info .row dd {
    font-size: 1.4rem;
    line-height: 2;
    letter-spacing: 0.06em;
    margin-left: 28px;
  }

  .info-cont .data &gt; .ttl {
    margin-top: 16px;
  }

  .info-cont .data p a:hover {
    text-decoration: none;
  }

  .info-cont .bnr {
    max-width: 556px;
    padding-top: 46px;
  }

  .info-cont .info-link {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    width: 91.1765%;
  }

  .scroll-top .pagetop:hover {
    opacity: 0.7;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }

  .trial-article {
    padding-top: 70px;
    padding-bottom: 120px;
  }

  .trial-article &gt; .inner {
    max-width: 800px;
  }

  .article-header .title {
    font-size: 2.8rem;
    line-height: 1.5;
    letter-spacing: 0.02em;
  }

  .article-header .title::before {
    bottom: -27px;
    width: 63px;
    height: 10px;
  }

  .article-header .info {
    font-size: 1.8rem;
    line-height: 1;
    margin-top: 48px;
    letter-spacing: 0.01em;
  }

  .article-img {
    margin-top: 36px;
  }

  .article-body {
    padding-bottom: 80px;
  }

  .article-body .lead-info {
    margin-top: 50px;
    margin-bottom: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-flow: row-reverse;
    flex-flow: row-reverse;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .article-body .lead-info .text {
    font-size: 1.6rem;
    line-height: 2.125;
    width: 70%;
  }

  .article-body .lead-info .author {
    margin-top: 4px;
  }

  .article-body .lead-info .author .row {
    font-size: 1.4rem;
    line-height: 1.7143;
    display: block;
  }

  .article-body .lead-info .author .row + .row {
    margin-top: 17px;
  }

  .article-body .lead-info .author dt {
    margin-right: 0;
  }

  .article-body .section-box {
    padding: 34px 36px;
    margin-bottom: 60px;
  }

  .article-body .section-box .title {
    font-size: 1.6rem;
    line-height: 1.625;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }

  .article-body .section-box .title:hover {
    opacity: 0.6;
    cursor: pointer;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }

  .article-body .section-box .anchors {
    margin-top: 12px;
    padding-left: 1.2em;
  }

  .article-body .section-box .anchors li + li {
    margin-top: 12px;
  }

  .article-body .section-box .anchors li a {
    font-size: 1.6rem;
    line-height: 1.875;
    letter-spacing: 0.02em;
  }

  .article-body .section-box .anchors li a:hover {
    text-decoration: none;
  }

  .article-body .section {
    margin-bottom: 80px;
  }

  .article-body .section .section-ttl {
    font-size: 2.4rem;
    line-height: 1.4167;
    margin: 40px 0;
    padding-left: 20px;
  }

  .article-body .section-body {
    margin-bottom: 56px;
  }

  .article-body .section-body .img {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .article-body .section-body .img figcaption {
    font-size: 1.4rem;
    line-height: 1.9286;
  }

  .article-body .section-body p {
    letter-spacing: 0.02em;
    font-size: 1.6rem;
    line-height: 2.125;
    margin: 33px auto;
    max-width: 720px;
  }

  .article-body .section-body p a:hover {
    text-decoration: none;
  }

  .article-body .section-end {
    padding-top: 30px;
  }

  .article-body .section-end .info {
    font-size: 1.4rem;
    line-height: 2;
    letter-spacing: 0.02em;
  }

  .article-body .section-end .info + .info {
    margin-top: 30px;
  }

  .article-body .section-end .info a:hover {
    text-decoration: none;
  }

  .article-footer {
    padding-top: 60px;
  }

  .article-footer .footer-title {
    font-size: 2.8rem;
    line-height: 1.2857;
    letter-spacing: 0.1em;
  }

  .article-footer .footer-title::before {
    bottom: -26px;
    width: 63px;
    height: 10px;
  }

  .article-footer .article-link {
    width: 620px;
    margin-top: 66px;
    margin-bottom: 60px;
  }

  .trial-header {
    padding-top: 44px;
  }

  .trial-header .copy {
    max-width: 800px;
    padding-bottom: 34px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .trial-header .title .logo {
    width: 328px;
  }

  .trial-header .header-return {
    padding-top: 0;
  }

  #wrap-container + .global-pagetop-box .pagetop:hover {
    opacity: 0.7;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }

  .work-intro .textarea {
    text-align: center;
    padding-top: 78px;
    padding-bottom: 60px;
    max-width: 1000px;
  }

  .work-intro .textarea p {
    font-size: 1.7rem;
    line-height: 1.8824;
    letter-spacing: 0.02em;
  }

  .work-intro .intro-info .list .item:nth-child(even) {
    margin-left: 0;
  }

  .work-intro .intro-info .list .item:nth-child(n+3) {
    margin-top: 0;
  }

  .work-awa {
    padding-bottom: 100px;
  }

  .work-awa .inner {
    padding-top: 35px;
    padding-bottom: 52px;
  }

  .work-awa .main-ttl.-small {
    letter-spacing: 0.15em;
    font-size: 2.5rem;
    line-height: 1.28;
  }

  .work-awa .textarea {
    padding-top: 50px;
    width: 87.037%;
    margin-left: auto;
    margin-right: auto;
  }

  .work-awa .textarea .text {
    font-size: 1.5rem;
    line-height: 2;
    letter-spacing: 0.16em;
  }

  .work-awa .textarea .contact {
    letter-spacing: 0.2em;
  }

  .work-awa .textarea .contact .point {
    letter-spacing: 0.14em;
  }

  .work-awa .download {
    padding-top: 54px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 87.037%;
    margin-left: auto;
    margin-right: auto;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .work-awa .download .item {
    width: 39.6809%;
  }

  .work-awa .download .item &gt; a {
    padding: 22px;
  }

  .work-awa .download .item &gt; a:hover .image {
    opacity: 0.6;
  }

  .work-awa .download .item &gt; a:hover .text {
    color: #000;
    text-decoration: none;
  }

  .work-awa .download .item &gt; a:hover .arrow {
    color: #007cb6;
  }

  .work-awa .download .item &gt; a:hover .cmn-link::before {
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-name: arrowanime;
    animation-name: arrowAnime;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
  }

  .work-awa .download .item + .item {
    margin-top: 0;
    margin-left: 6.383%;
  }

  .work-awa .download .item .image {
    width: 40.4908%;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }

  .work-awa .download .item .detail {
    margin-top: 12px;
    margin-left: 20px;
  }

  .work-awa .download .item .detail .text {
    font-size: 1.5rem;
    line-height: 1.6667;
  }

  .work-awa .download .item .detail .link {
    margin-top: 21px;
    margin-left: 8px;
  }

  .is-sp {
    display: none;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .work-header .copy {
    top: 200px;
  }

  .work-header .title {
    width: 462px;
  }

  .work-header .text {
    font-size: 18px;
  }

  .work-header .text span {
    font-size: 16px;
  }

  .work-slider .slide-img img {
    width: 100%;
    height: 521px;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .work-intro .intro-info .list .item:nth-child(odd) {
    width: 33%;
  }

  .work-intro .intro-info .list .item:nth-child(even) {
    width: 33%;
  }

  .work-intro .intro-info .list .item:nth-child(n+4) {
    margin-top: 20px;
  }
}

@media screen and (min-width: 1025px) {
  .work-header .copy {
    top: 34.9845%;
  }

  .work-header .title {
    width: 47.4219%;
  }

  .work-header .text {
    font-size: 2.3438vw;
  }

  .work-header .text span {
    font-size: 1.5625vw;
  }

  .work-slider .slide-img img {
    height: auto;
    -o-object-fit: fill;
    object-fit: fill;
  }

  .work-nav.-fixed {
    top: 64px;
  }
}

@media screen and (min-width: 1281px) {
  .work-footer .scroll-top {
    right: calc(50% - 610px);
  }

  .work-dp .dp-point {
    margin-top: 0;
    position: absolute;
    top: 94px;
    right: calc(50% - 540px);
  }

  .work-info:nth-child(odd) .triangle {
    right: calc(50% - 580px);
  }

  .work-info:nth-child(even) .triangle {
    right: calc(50% - 600px);
  }

  .info-cont .about {
    margin-left: auto;
    margin-bottom: 30px;
    margin-right: auto;
  }

  .info-cont .chapter-blk td .chart {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: wrap;
    flex-flow: wrap;
  }

  .info-cont .chapter-blk td .chart &gt; .row {
    width: 49.0909%;
  }

  .info-cont .chapter-blk td .chart &gt; .row:nth-child(n+2) {
    margin-top: 0;
  }

  .info-cont .chapter-blk td .chart &gt; .row:nth-child(n+3) {
    margin-top: 20px;
  }

  .info-cont .chapter-blk td .chart &gt; .row:nth-child(2n) {
    margin-left: 1.8182%;
  }

  .info-cont .chapter-blk td .chart &gt; .row dd .line {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 7.4627%;
  }

  .info-cont .chapter-blk td .chart &gt; .row dd .line li + li {
    padding-left: 40px;
  }

  .info-cont .chapter-blk td .chart &gt; .row dd .line li + li::before {
    left: 0;
  }
}

@media screen and (max-width: 767px) {
  .to-tour-list .item + .item {
    margin-top: 36px;
  }

  .is-pc {
    display: none;
  }
}

@media screen and (max-width: 1280px) {
  .is-wide {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  .over-pc {
    display: none;
  }
}
</pre></body></html>