@charset "utf-8";
/* CSS Document */

@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap");

/* CSS Document */
:root {
  --content-color-base: #2c2a29;
  --content-color-red: #ba0e0d;
  --content-color-blue: #2d62a6;
  --content-color-brown: #8c5512;
  --content-color-yellow: #e1e119;
  --content-color-sky: #f1f3f4;
  --content-color-beige: #ebe1d6;
  --bg-img-setting: no-repeat center center / contain;
  --content-width-sp: calc(336vw / 3.75);
  --content-width-pc: 1104px;
  --content-width: min(var(--content-width-sp), var(--content-width-pc));
  --content-bg-width-pc: max(100%, 1920px);
  --font-size-pc: 14px;
  --font-size-sp: calc(14vw / 3.75);
  --font-sans: "Noto Sans JP", serif;
  --font-serif: "Noto Serif JP", serif;
  --content-font-size: min(var(--font-size-sp), var(--font-size-pc));
  --content-hover-speed: 0.3s;
  --content-border-1: 1px solid;
  --content-border-2: 2px solid;
  --content-border-4: 4px solid;
}

.is-sp,
.is-tb {
  display: none;
}
@media (768px <= width <= 1024px) {
  .is-tb {
    display: block;
  }
}
#hisApp {
  background: url("../img/mvbg.webp") no-repeat center top / auto;
}
.header-new,
#js-ui-static-breadcrumb {
  background: #fff;
}
.main {
  font-family: var(--font-sans);
  font-size: var(--content-font-size);
  color: var(--content-color-base);
  line-height: 1.3;
  position: relative;
}
.main * {
  box-sizing: border-box;
}
.inner {
  width: var(--content-width);
  margin: auto;
  position: relative;
}
a {
  transition: var(--content-hover-speed);
}

.mv-wrapper {
  width: 100%;
  padding: 64px 0;
}
.mv-wrapper .inner {
  height: 100%;
  display: grid;
  gap: 40px;
}
.title-logo {
  width: 600px;
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.is-fade {
  display: none;
  position: absolute;
  top: -40px;
  left: -84px;
}
.nav-list {
  width: 676px;
  margin: auto;
  padding: 24px 0;
  border-radius: 100px;
  background: linear-gradient(270deg, rgba(100 172 223 / 50%) 0, rgba(100 172 223 / 10%) 100%);
  box-shadow: 0 0 10px 0 rgba(44 42 41 / 45%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.nav-list > li:nth-child(-n + 2) {
  padding-right: 16px;
  border-right: var(--content-border-1) #fff;
}
.nav-list > li > a {
  font-size: 18px;
  font-weight: bold;
}
.nav-list > li > a:hover {
  color: var(--content-color-red);
}

.content-wrapper {
  padding: 40px 0;
}
.content-wrapper .inner {
  display: grid;
  gap: 40px;
}
.head-box {
  display: grid;
  gap: 24px;
  justify-items: center;
}
.head-label {
  background: var(--content-color-red);
}
.head-title {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.1em;
}
.content-txt {
  font-size: 16px;
  line-height: 1.5;
}
.content-txt sup {
  font-size: 12px;
  vertical-align: text-top;
}
.note-txt {
  display: block;
  padding-left: 1em;
  text-indent: -1em;
  font-size: 14px;
  margin-top: 8px;
}
.is-fit {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.is-red {
  color: var(--content-color-red);
}
.is-label {
  font-size: 26px;
  color: #fff;
  text-align: center;
  padding: 4px 16px;
}
.caption {
  text-align: right;
  margin-top: 4px;
}
.img-caption {
  display: inline-block;
  background: rgba(44 42 41 / 60%);
  padding: 0 8px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  line-height: 1.5;
}
.is-img {
  position: relative;
}
.is-img .img-caption {
  position: absolute;
  bottom: 0;
  right: 0;
}
.img-caption-txt {
  font-size: 12px;
  font-weight: bold;
}

/*** ポイント ***/
.content-wrapper.point .inner {
  margin-bottom: 40px;
}
.point-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.point-list > li {
  display: grid;
  gap: 16px;
  padding-top: 200px;
  background: no-repeat center top / 100%;
}
.point-list > li:first-child {
  background-image: url("../img/img_point_air.webp");
}
.point-list > li:nth-child(2) {
  background-image: url("../img/img_point_sea.webp");
}
.point-list > li:last-child {
  background-image: url("../img/img_point_land.webp");
}
.point-icon {
  text-align: center;
}
.point-midashi {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: bold;
  text-align: center;
}
.map-content {
  display: grid;
  grid-template-columns: repeat(2, 50%);
}

@media (768px <= width <= 1024px) {
  .point-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .point-list > li {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    grid-column: span 1;
    gap: 16px;
  }
  .point-list > li:first-child {
    grid-column: span 2;
    padding-top: 420px;
  }
  .point-list > li:nth-child(n + 2) .point-midashi {
    font-size: 24px;
  }
  .map-content {
    grid-template-columns: auto;
  }
}

/*** コース内容 ***/
.content-wrapper.course {
  display: grid;
  gap: 40px;
}
.select-tab {
  width: var(--content-width);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  position: relative;
  z-index: 20;
}
.select-tab > li {
  border-radius: 4px 4px 0 0;
  background: var(--content-color-beige);
  padding: 24px;
  font-size: 18px;
  text-align: center;
}
.select-tab > li > span {
  display: block;
  font-size: 26px;
  font-weight: 900;
  color: var(--content-color-brown);
  margin-bottom: 8px;
}
.select-tab > li.is-current {
  background: url("../img/bg_conts.gif") repeat;
  border: var(--content-border-2) var(--content-color-brown);
  border-bottom: none;
  position: relative;
}
.select-tab > li.is-current::before {
  content: "";
  width: 100%;
  height: 2px;
  background: #edefef;
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  margin: auto;
}
.select-tab > li:hover {
  background: #ebeced;
}
.select-content {
  display: none;
}
.select-content.is-active {
  display: block;
}
.course-wrapper {
  background: url("../img/bg_conts.gif") repeat;
  border-top: var(--content-border-2) var(--content-color-brown);
  padding: 64px 0;
  display: grid;
  gap: 40px;
  box-shadow: 0 5px 10px 0 rgba(44 42 41 / 45%);
  position: relative;
  z-index: 10;
}
.sub-box {
  width: var(--content-width);
  margin: auto;
  display: grid;
  gap: 16px;
  justify-items: center;
}
.sub-date {
  background: var(--content-color-brown);
}
.sub-title {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: bold;
  color: var(--content-color-brown);
}
.sub-txt {
  display: block;
  font-family: var(--font-sans);
  font-size: 26px;
  font-weight: normal;
  color: var(--content-color-base);
  text-align: center;
  margin-bottom: 8px;
}
.midashi-label {
  background: var(--content-color-blue);
}
.midashi-box {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 900;
  color: var(--content-color-blue);
  text-align: center;
}
.midashi-sub {
  display: block;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: bold;
  color: var(--content-color-base);
  margin-bottom: 8px;
}
.course-main-content {
  position: relative;
}
.course-main-content::before,
.course-main-content::after {
  content: "";
  background: no-repeat top / cover;
  width: min(50%, 960px);
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 0;
}
.course-main-content.course01::before {
  background-image: url("../img/ph/ph_midokoro_01_kitakitsune.webp");
  left: 0;
}
.course-main-content.course01::after {
  background-image: url("../img/ph/ph_midokoro_01_ezojika.webp");
  right: 0;
}
.course-main-content.course02::before {
  background-image: url("../img/ph/ph_midokoro_01_cruise.webp");
  left: 0;
}
.course-main-content.course02::after {
  background-image: url("../img/ph/ph_midokoro_01_aurora.webp");
  right: 0;
}
.course-main-content .inner {
  position: relative;
}
@media (min-width: 1025px) {
  .course-main-content .inner::before,
  .course-main-content .inner::after {
    display: block;
    background: rgba(44 42 41 / 60%);
    padding: 0 8px;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    line-height: 1.5;
    position: absolute;
    bottom: 24px;
    z-index: 20;
  }
  .course-main-content.course01 .inner::before {
    content: "キタキツネ/イメージ";
    left: 0;
  }
  .course-main-content.course01 .inner::after {
    content: "エゾジカ/イメージ";
    right: 0;
  }
  .course-main-content.course02 .inner::before {
    content: "流氷バードウォッチングクルーズ/イメージ";
    left: 0;
  }
  .course-main-content.course02 .inner::after {
    content: "流氷観光砕氷船おーろら/イメージ";
    right: 0;
  }
}

.course-mainbox {
  width: 552px;
  margin: auto;
  padding: 40px 24px;
  display: grid;
  gap: 24px;
  background-color: rgba(255 255 255 / 70%);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  border: var(--content-border-1) rgba(255 255 255 / 60%);
  box-shadow: 0 0 10px rgba(0 0 0 / 20%);
  position: relative;
  z-index: 10;
}
.course01 .course-mainbox::before,
.course01 .course-mainbox::after {
  content: "";
  background: var(--bg-img-setting);
  position: absolute;
}
.course01 .course-mainbox::before {
  background-image: url("../img/ph/ph_owashi01.webp");
  width: 216px;
  height: 180px;
  top: 0;
  right: -64px;
}
.course01 .course-mainbox::after {
  background-image: url("../img/ph/ph_owashi02.webp");
  width: 215px;
  height: 180px;
  bottom: 0;
  left: 0;
}
.course-mainbox .content-txt {
  line-height: 1.8;
}
.course-item {
  display: grid;
  gap: 16px;
  justify-items: center;
}
.course02 .midashi-box small {
  display: block;
  font-size: 26px;
}
.addition {
  background: #fff;
  padding: 16px;
  display: grid;
  gap: 16px;
  align-items: flex-start;
  position: relative;
}
.addition.option::before {
  content: "";
  background: url("../img/ico_limited.svg") var(--bg-img-setting);
  width: 135px;
  height: 55px;
  position: absolute;
  top: -16px;
  left: -8px;
}
.addition.option {
  grid-template-columns: 160px 1fr;
}
.addition-img .option {
  width: 100%;
  height: 160px;
  overflow: hidden;
}
.addition-midashi {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: bold;
  color: var(--content-color-blue);
  text-align: center;
  margin-bottom: 8px;
}
.addition-midashi > span {
  display: block;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: normal;
  color: var(--content-color-base);
  line-height: 1.8;
}
.addition-item .content-txt > span {
  display: block;
}

.spot-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: flex-start;
}
.spot-list > li {
  display: grid;
  gap: 16px;
  align-items: flex-start;
  justify-items: center;
}
.spot-img {
  aspect-ratio: 550 / 400;
}
.spot-img > li {
  height: 100%;
}
.spot-list > li:last-child .spot-img {
  display: grid;
  grid-template-columns: repeat(2, 50%);
  grid-template-rows: repeat(2, 50%);
}
.spot-list > li:last-child .spot-img > li:first-child {
  grid-column: 1 / 3;
  grid-row: 1 / 2;
}
.spot-list > li:last-child .spot-img > li:nth-child(2) {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}
.spot-list > li:last-child .spot-img > li:last-child {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}
.stay-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.stay-img {
  display: flex;
}
.stay-img > li {
  width: 50%;
  flex-grow: 1;
}
.stay-item {
  display: grid;
  gap: 16px;
  position: relative;
}
.stay-item::before {
  content: "";
  background: url("../img/ico_stay.svg") var(--bg-img-setting);
  width: 100px;
  height: 100px;
  position: absolute;
  top: 0;
  right: 0;
}
.addition.hotel {
  grid-template-columns: 1fr 212px;
}
.addition-img.hotel {
  width: 100%;
  height: 212px;
  overflow: hidden;
}

/*** 網走湖荘 ***/
.hotel-wrapper {
  background: var(--content-color-beige);
  position: relative;
}
.hotel-wrapper::before {
  content: "";
  background: url("../img/ph/hotel_abashiri_spa.webp") no-repeat top / cover;
  width: min(50%, 960px);
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
.hotel-wrapper .inner {
  display: flex;
  position: relative;
}
.hotel-wrapper .inner::after {
  content: "露天風呂/イメージ";
  background: rgba(44 42 41 / 60%);
  padding: 0 8px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  line-height: 1.5;
  position: absolute;
  bottom: 24px;
  left: calc(100% / 2 + 24px);
}
.hotel-box {
  width: 552px;
  background: #fff;
  padding: 64px 40px;
  position: relative;
  display: grid;
  gap: 24px;
}
.hotel-box::before {
  content: "";
  background: url("../img/ico_ichoshi.svg") var(--bg-img-setting);
  width: 180px;
  height: 180px;
  position: absolute;
  top: 0;
  left: 0;
}
.hotel-data {
  display: grid;
  gap: 16px;
}
.hotel-data .content-txt {
  line-height: 1.8;
}
.food-data {
  border: var(--content-border-1) var(--content-color-brown);
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.food-img {
  width: 100%;
  height: 212px;
  overflow: hidden;
}
.food-midashi {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: bold;
  color: var(--content-color-brown);
  text-align: center;
  margin-bottom: 8px;
}
.food-midashi > span {
  display: block;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: normal;
  color: var(--content-color-base);
  line-height: 1.8;
}
.menu-list {
  display: grid;
  gap: 8px;
}
.menu-list > li {
  font-size: 18px;
  padding-bottom: 12px;
  border-bottom: var(--content-border-1) #c0c5cc;
  display: flex;
  gap: 8px;
}
.menu-list > li:last-child {
  border-bottom: none;
  padding-bottom: 2em;
  position: relative;
}
.menu-list > li::before {
  content: "◆";
  color: var(--content-color-blue);
  display: block;
}
.menu-list > li:last-child::after {
  content: "など";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
}

@media (768px <= width <= 1024px) {
  .course-main-content::before,
  .course-main-content::after {
    content: none !important;
  }
  .course-main-img {
    position: relative;
  }
  .course-main-img .img-caption {
    position: absolute;
    bottom: 24px;
  }
  .course-main-img.is-upper .img-caption {
    left: 24px;
  }
  .course-main-img.is-lower .img-caption {
    right: 24px;
  }
  .course-main-content .inner {
    padding-top: 64px;
    width: 100vw;
  }
  .course-main-content.course01 .inner::before,
  .course-main-content.course01 .inner::after {
    content: "" !important;
    background: var(--bg-img-setting);
    position: absolute;
    z-index: 20;
  }
  .course-main-content.course01 .inner::before {
    background-image: url("../img/ph/ph_owashi01.webp");
    width: 216px;
    height: 180px;
    top: 0;
    right: 0;
    left: auto !important;
  }
  .course-main-content.course01 .inner::after {
    background-image: url("../img/ph/ph_owashi02.webp");
    width: 215px;
    height: 180px;
    bottom: 0;
    left: 0;
    right: auto !important;
  }
  .course-mainbox {
    width: var(--content-width);
    margin: auto;
  }
  .course01 .course-mainbox::before,
  .course01 .course-mainbox::after {
    content: none !important;
  }
  .addition.option {
    grid-template-columns: 202px 1fr;
  }
  .addition-img.option {
    width: 100%;
    height: 202px;
    overflow: hidden;
  }
  .course-wrapper > .inner {
    width: 100vw;
    gap: 40px;
  }
  .spot-list {
    grid-template-columns: auto;
  }
  .spot-img {
    aspect-ratio: 960 / 638;
    height: auto;
  }
  .spot-list > li .content-txt,
  .stay-item .content-txt {
    padding: 0 48px;
  }
  .stay-box {
    grid-template-columns: auto;
  }
  .stay-img {
    aspect-ratio: 960 / 638;
  }
  .addition.hotel {
    width: var(--content-width);
    margin: auto;
  }
  .hotel-wrapper {
    padding-bottom: 40px;
    background: none;
  }
  .hotel-wrapper::before,
  .hotel-wrapper .inner::after,
  .hotel-box::before {
    content: none;
  }
  .hotel-main-img {
    position: relative;
  }
  .hotel-main-img::before {
    content: "";
    background: url("../img/ico_ichoshi.svg") var(--bg-img-setting);
    width: 180px;
    height: 180px;
    position: absolute;
    top: 0;
    left: 0;
  }
  .hotel-main-img::after {
    content: "露天風呂/イメージ";
    background: rgba(44 42 41 / 60%);
    padding: 0 8px;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    line-height: 1.5;
    position: absolute;
    bottom: 24px;
    left: 24px;
  }
  .hotel-wrapper .inner {
    width: 100vw;
  }
  .hotel-box {
    width: 100vw;
    padding: 24px 48px;
  }
  .food-data {
    grid-template-columns: 202px 1fr;
  }
}

/*** ツアー ***/
.product-wrapper {
  background: url("../img/bg_conts.gif") repeat;
  padding: 40px 0 64px;
  box-shadow: 0 0 10px 0 rgba(44 42 41 / 45%);
  position: relative;
  z-index: 10;
}
.product-wrapper .head-title {
  color: var(--content-color-brown);
}

/*** FDA ***/
.fda-content {
  width: 760px;
  margin: auto;
  display: grid;
  gap: 40px;
}
.fda-box {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 24px;
}
.fda-box::before {
  content: "";
  background: url("../img/air02.png") var(--bg-img-setting);
  width: 375px;
  height: 183px;
  display: block;
}
.fda-details {
  display: grid;
  gap: 16px;
}
.fda-details::before {
  content: "";
  background: url("../img/logo_fda.svg") var(--bg-img-setting);
  width: 145px;
  height: 62px;
  display: block;
}
.fda-midashi {
  font-size: 26px;
  font-weight: bold;
}
.fda-list {
  display: grid;
  gap: 8px;
}
.fda-list > li:not(:last-child) {
  font-size: 16px;
  font-weight: bold;
}
.seat-box {
  display: grid;
  gap: 24px;
  justify-content: center;
}
.seat-txt {
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
}
.seat-txt > small {
  display: block;
  font-size: 20px;
  font-weight: normal;
}
.seat-img {
  text-align: center;
}
.notice-midashi {
  font-size: 20px;
  font-weight: bold;
}
.notice-list > li {
  font-size: 16px;
  line-height: 1.5;
  padding-left: 1;
  text-indent: -1em;
}

.end .close-txt {
  font-size: 16px;
  color: var(--content-color-base);
  padding: 16px;
  margin-bottom: 24px;
  border: 1px solid;
  background: #fff;
  text-align: center;
}
