@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-pc {
  display: none;
}
.main {
  font-family: var(--font-sans);
  font-size: var(--content-font-size);
  color: var(--content-color-base);
  line-height: 1.3;
  position: relative;
  background: url("../img/mvbg.webp") no-repeat center -240px / auto;
}
.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: calc(40vw / 3.75) 0;
}
.mv-wrapper .inner {
  height: 100%;
  display: grid;
  gap: calc(40vw / 3.75);
}
.title-logo {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.is-fade {
  width: calc(183.5vw / 3.75);
  display: none;
  position: absolute;
  top: -24px;
  left: -20px;
}
.nav-list {
  width: var(--content-width);
  margin: auto;
  padding: calc(8vw / 3.75) 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: calc(12vw / 3.75);
}
.nav-list > li:nth-child(-n + 2) {
  padding-right: calc(12vw / 3.75);
  border-right: var(--content-border-1) #fff;
}
.nav-list > li > a {
  display: block;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}
.nav-list > li > a:hover {
  color: var(--content-color-red);
}

.content-wrapper {
  padding: calc(40vw / 3.75) 0;
}
.content-wrapper .inner {
  display: grid;
  gap: calc(24vw / 3.75);
}
.head-box {
  display: grid;
  gap: calc(24vw / 3.75);
  justify-items: center;
}
.head-label {
  background: var(--content-color-red);
}
.head-title {
  font-family: var(--font-serif);
  font-size: calc(24vw / 3.75);
  font-weight: 600;
  text-align: center;
}
.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: 18px;
  color: #fff;
  text-align: center;
  padding: calc(4vw / 3.75) calc(16vw / 3.75);
}
.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 {
  width: 100vw;
  margin-bottom: calc(40vw / 3.75);
}
.point-list {
  display: grid;
  gap: calc(16vw / 3.75);
}
.point-list > li {
  display: grid;
  gap: calc(16vw / 3.75);
  padding-top: calc(226vw / 3.75);
  background: no-repeat center top / contain;
}
.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-icon > img {
  height: calc(45vw / 3.75);
}
.point-midashi {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
.point-list .content-txt {
  padding: 0 calc(16vw / 3.75);
}
.map-content {
  display: grid;
  padding: calc(40vw / 3.75) 0;
}

/*** コース内容 ***/
.content-wrapper.course {
  display: grid;
  gap: calc(24vw / 3.75);
  padding-bottom: 0;
}
.select-tab {
  width: var(--content-width);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: calc(4vw / 3.75);
  position: relative;
  z-index: 20;
}
.select-tab > li {
  border-radius: 4px 4px 0 0;
  background: var(--content-color-beige);
  padding: calc(16vw / 3.75) calc(4vw / 3.75);
  text-align: center;
}
.select-tab > li > span {
  display: block;
  font-size: calc(16vw / 3.75);
  font-weight: 900;
  color: var(--content-color-brown);
  margin-bottom: calc(8vw / 3.75);
}
.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-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: calc(40vw / 3.75) 0;
  display: grid;
  gap: calc(40vw / 3.75);
  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: calc(16vw / 3.75);
  justify-items: center;
}
.sub-date {
  background: var(--content-color-brown);
}
.sub-title {
  font-family: var(--font-serif);
  font-size: calc(26vw / 3.75);
  font-weight: bold;
  color: var(--content-color-brown);
  text-align: center;
}
.sub-txt {
  display: block;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: normal;
  color: var(--content-color-base);
  text-align: center;
  margin-bottom: calc(8vw / 3.75);
}
.midashi-label {
  background: var(--content-color-blue);
}
.midashi-box {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 900;
  color: var(--content-color-blue);
  text-align: center;
}
.midashi-sub {
  display: block;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: bold;
  color: var(--content-color-base);
  margin-bottom: calc(8vw / 3.75);
}
.course-main-content {
  display: grid;
}
.course-main-img {
  position: relative;
}
.course-main-img .img-caption {
  position: absolute;
  bottom: calc(12vw / 3.75);
}
.course-main-img.is-upper .img-caption {
  left: calc(12vw / 3.75);
}
.course-main-img.is-lower .img-caption {
  right: calc(12vw / 3.75);
}
.course01 .inner {
  position: relative;
  width: 100vw;
}
.course01 .inner::before,
.course01 .inner::after {
  content: "";
  background: var(--bg-img-setting);
  position: absolute;
  z-index: 10;
}
.course01 .inner::before {
  background-image: url("../img/ph/ph_owashi01.webp");
  width: calc(162vw / 3.75);
  height: calc(135vw / 3.75);
  top: 0;
  right: 0;
}
.course01 .inner::after {
  background-image: url("../img/ph/ph_owashi02.webp");
  width: calc(162vw / 3.75);
  height: calc(135vw / 3.75);
  bottom: 0;
  left: 0;
}
.course-mainbox {
  width: var(--content-width);
  margin: calc(40vw / 3.75) auto 0;
  padding: calc(40vw / 3.75) calc(16vw / 3.75);
  display: grid;
  gap: calc(16vw / 3.75);
  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: 1;
}
.course01 .course-mainbox {
  padding-bottom: calc(100vw / 3.75);
}
.course-mainbox .content-txt {
  line-height: 1.8;
}
.course-item {
  display: grid;
  gap: calc(16vw / 3.75);
  justify-items: center;
}
.course02 .midashi-box small {
  display: block;
  font-size: calc(16vw / 3.75);
}
.addition {
  background: #fff;
  padding: calc(16vw / 3.75) calc(8vw / 3.75);
  display: grid;
  gap: calc(16vw / 3.75);
  align-items: flex-start;
  position: relative;
}
.addition.option::before {
  content: "";
  background: url("../img/ico_limited.svg") var(--bg-img-setting);
  width: calc(135vw / 3.75);
  height: calc(55vw / 3.75);
  position: absolute;
  top: -16px;
  left: -8px;
}
.addition-img .option {
  width: 100%;
  height: 160px;
  overflow: hidden;
}
.addition-midashi {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: bold;
  color: var(--content-color-blue);
  text-align: center;
  margin-bottom: calc(8vw / 3.75);
}
.addition-midashi > span {
  display: block;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: normal;
  color: var(--content-color-base);
  line-height: 1.8;
}
.addition-item .content-txt > span {
  display: block;
}
.course-wrapper > .inner {
  width: 100vw;
  gap: calc(40vw / 3.75);
}
.spot-list {
  display: grid;
  gap: calc(40vw / 3.75);
  align-items: flex-start;
}
.spot-list > li {
  display: grid;
  gap: calc(16vw / 3.75);
  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;
}
.select-content:last-child .spot-list > li:last-child .spot-img > li:last-child .img-caption {
  font-size: calc(10vw / 3.75);
}
.spot-list > li .content-txt,
.stay-item .content-txt {
  padding: 0 calc(16vw / 3.75);
}
.stay-box {
  display: grid;
  gap: calc(12vw / 3.75);
}
.stay-item {
  display: grid;
  gap: 16px;
  position: relative;
}
.stay-item::before {
  content: "";
  background: url("../img/ico_stay.svg") var(--bg-img-setting);
  width: calc(75vw / 3.75);
  height: calc(75vw / 3.75);
  position: absolute;
  top: 0;
  right: 0;
}
.addition.hotel {
  width: var(--content-width);
  margin: auto;
  padding: calc(16vw / 3.75);
}
.hotel-imgbox {
  order: 1;
}
.addition.hotel .addition-item {
  order: 2;
}

/*** 網走湖荘 ***/
.hotel-wrapper {
  display: grid;
  padding-bottom: calc(40vw / 3.75);
}
.hotel-main-img {
  position: relative;
}
.hotel-main-img::before {
  content: "";
  background: url("../img/ico_ichoshi.svg") var(--bg-img-setting);
  width: calc(135vw / 3.75);
  height: calc(135vw / 3.75);
  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: calc(16vw / 3.75);
  left: calc(16vw / 3.75);
}
.hotel-wrapper .inner {
  width: 100vw;
  display: flex;
}
.hotel-box {
  background: #fff;
  padding: calc(16vw / 3.75);
  position: relative;
  display: grid;
  gap: calc(24vw / 3.75);
}
.hotel-box::before {
}
.hotel-data {
  display: grid;
  gap: calc(16vw / 3.75);
}
.hotel-data .content-txt {
  line-height: 1.8;
}
.food-data {
  border: var(--content-border-1) var(--content-color-brown);
  padding: calc(16vw / 3.75);
  display: grid;
  gap: calc(16vw / 3.75);
}
.food-imgbox {
  order: 1;
}
.food-item {
  order: 2;
}
.food-midashi {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: bold;
  color: var(--content-color-brown);
  text-align: center;
  margin-bottom: calc(8vw / 3.75);
}
.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: calc(8vw / 3.75);
}
.menu-list > li {
  font-size: 18px;
  padding-bottom: calc(12vw / 3.75);
  border-bottom: var(--content-border-1) #c0c5cc;
  display: flex;
  gap: calc(8vw / 3.75);
}
.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;
}

/*** ツアー ***/
.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 {
  font-size: 36px;
  color: var(--content-color-brown);
}

/*** FDA ***/
.content-wrapper.fda {
  padding-top: calc(64vw / 3.75);
}
.content-wrapper.fda .inner {
  gap: calc(40vw / 3.75);
}
.fda-content {
  margin: auto;
  display: grid;
  gap: calc(40vw / 3.75);
}
.fda-box {
  display: grid;
  gap: calc(24vw / 3.75);
  justify-content: center;
}
.fda-box::before {
  content: "";
  background: url("../img/air02.png") var(--bg-img-setting);
  width: calc(335vw / 3.75);
  height: calc(163vw / 3.75);
  display: block;
}
.fda-details {
  display: grid;
  gap: calc(16vw / 3.75);
  justify-items: center;
}
.fda-details::before {
  content: "";
  background: url("../img/logo_fda.svg") var(--bg-img-setting);
  width: calc(145vw / 3.75);
  height: calc(62vw / 3.75);
  display: block;
}
.fda-midashi {
  font-size: 18px;
  font-weight: bold;
}
.fda-list {
  display: grid;
  gap: calc(8vw / 3.75);
}
.fda-list > li:not(:last-child) {
  font-size: 16px;
  font-weight: bold;
}
.seat-box {
  display: grid;
  gap: calc(16vw / 3.75);
  justify-content: center;
}
.seat-txt {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
}
.seat-txt > span {
  font-size: 16px;
}
.seat-txt > small {
  display: block;
  font-size: 14px;
  font-weight: normal;
}
.seat-img {
  text-align: center;
}
.notice-midashi {
  font-size: 18px;
  font-weight: bold;
}
.notice-list > li {
  line-height: 1.5;
  padding-left: 1;
  text-indent: -1em;
}

.end .close-txt {
  font-size: calc(24vw / 7.5);
  color: var(--content-color-base);
  padding: calc(16vw / 7.5);
  margin-bottom: calc(24vw / 7.5);
  border: 1px solid;
  background: #fff;
  text-align: center;
}
