/* コピペ用コード */
.font-size-dummy {
  font-size: .75rem; /* 12px */
  font-size: .8125rem; /* 13px */
  font-size: .875rem; /* 14px */
  font-size: 1rem; /* 16px */
  font-size: 1.125rem; /* 18px */
  font-size: 1.25rem; /* 20px */
  font-size: 1.5rem; /* 24px */
  font-size: 1.75rem; /* 28px */
  font-size: 2rem; /* 32px */
  font-size: 2.63rem; /* 42px */
  font-size: 3.5rem; /* 56px */
}
/*-----------------------------------------------------------------------common*/ :root {
  --white: #f5f5f5;
  --black: #181818;
  --light-black: #303030;
  --red: #FF4A4A;
  --blue: #131C37;
  --dark-blue: #243157;
  --gray-blue: #607B8A;
  --light-blue: #E1EAEF;
  --yellow: #E2E800;
  --dark-yellow: #9CA00E;
  --cream: #F8EFE5;
  --font-family-zen-kaku-new: "zen-kaku-gothic-new", sans-serif;
  --font-family-shippori: "shippori-mincho", sans-serif;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  --padding-common: 2em;
  --line-height-large: 2;
  --line-height-normal: 1.7;
  --line-height-narrow: 1.5;
}
main img {
  width: 100%;
}
#pankuzu, main, aside, .f-footer {
  font-family: var(--font-family-zen-kaku-new);
  font-weight: var(--font-weight-regular);
  font-style: normal;
  color: var(--black);
  line-height: var(--line-height-normal);
}
.sp {
  display: none;
  line-height: 0;
}
.container {
  font-size: 1rem;
}
section {
  padding: 6em 0;
  margin: 0 auto;
}
.inner {
  max-width: 1000px;
  width: 100%;
}
/*-----------------------------------------------------------------------pankuzu*/
#pankuzu {
  width: 1000px;
}
#pankuzu ul {
  display: flex;
  justify-content: flex-start;
  font-weight: var(--font-weight-medium);
}
#pankuzu ul li span {
  margin: 0 .3em;
}
/*-----------------------------------------------------------------------top*/
#top section {
  background-image: url("../img/main_pc.webp");
  background-position: bottom;
  background-repeat: no-repeat;
  position: relative;
}
.top-container {
  position: relative;
  left: -25px;
  margin: 0 auto;
  max-width: 800px;
  width: 100%;
}
#top section h1 {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}
#top section p {
  color: var(--white);
  text-align: center;
  line-height: var(--line-height-large);
}
#top section a {
  display: inline-block;
  max-width: 150px;
  width: 100%;
  position: absolute;
  bottom: 0;
  right: -100px;
}
/*-----------------------------------------------------------------------main-tour*/
#main-tour section {
  background-image: url("../img/bg01.webp");
  background-position: bottom;
  background-repeat: no-repeat;
  position: relative;
  padding: 6em 0 2em;
}
#main-tour section .inner {
  margin: 0 auto;
  color: var(--white);
}
.subtitle-add {
  display: grid;
  align-items: center;
  align-self: flex-start;
  grid-template-columns: 2fr 1fr 3fr;
  column-gap: 1em;
}
.subtitle-add h3 {
  max-width: 400px;
  width: 100%;
}
.ribbon {
  max-width: 250px;
  width: 100%;
}
#main-tour section h2 {
  font-size: 2.63rem;
  color: var(--yellow);
  font-family: var(--font-family-shippori);
  font-weight: var(--font-weight-bold);
  margin-top: .5em;
}
.map-contents {
  display: grid;
  align-items: flex-start;
  align-self: flex-start;
  grid-template-columns: 1fr 1fr;
  column-gap: 1em;
  margin: 4em 0;
}
.map-contents p {
  max-width: 500px;
  width: 100%;
  font-size: 1.25rem;
  line-height: var(--line-height-large);
}
/*-----------------------------------------------------------------------points*/
#points {
  background-color: var(--light-blue);
}
#points section {
  position: relative;
  background-color: var(--cream);
  padding: 6em 0 2em;
}
#points section::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/bg02.webp");
  background-repeat: repeat;
  background-size: 50%;
  z-index: 0;
  opacity: .3;
}
#points section .inner {
  position: relative;
  margin: 0 auto;
  z-index: 2;
}
#points section h2 {
  font-size: 2rem;
  font-family: var(--font-family-shippori);
  font-weight: var(--font-weight-medium);
  text-align: center;
  margin: 0 0 1em;
}
#points section h2 .number {
  font-size: 3.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--dark-yellow);
  margin: 0 10px;
}
#points section .deco {
  max-width: 200px;
  margin: 0 auto;
}
#points section ul {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(6, 1fr);
  column-gap: 1em;
  row-gap: 3em;
}
#points section ul li img {
  border-radius: 10px;
}
/* 1,2,3番目の要素（上の行） */
#points section ul li:nth-child(-n+3) {
  /* 各要素が2列分を占める */
  grid-column: span 2;
}
/* 4番目の要素（下の行の1つ目） */
#points section ul li:nth-child(4) {
  /* 2列目から始まり、2列分を占める */
  grid-column: 2 / span 2;
}
/* 5番目の要素（下の行の2つ目） */
#points section ul li:nth-child(5) {
  /* 4列目から始まり、2列分を占める */
  grid-column: 4 / span 2;
}
#points section ul p {
  margin-top: .5em;
}
#points section ul .col_red{
	color: var(--red);
	font-weight: var(--font-weight-bold);
}
#points .border {
  position: relative;
  top: 0;
  width: 100%;
  height: 200px;
  overflow: hidden;
}
#points .border::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--cream);
  /* SVGファイルをマスクとして指定 */
  mask-image: url('../img/border.svg');
  /* マスクが繰り返し表示されないように設定 */
  mask-repeat: no-repeat;
  /* マスクが要素全体に収まるように設定 */
  mask-size: contain;
  /* マスクを中央に配置 */
  mask-position: top;
  /* ブラウザ対応のため、ベンダープレフィックスも併記 */
  -webkit-mask-image: url('../img/border.svg');
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-position: top;
}
#points .border::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/bg02.webp");
  background-repeat: repeat;
  background-size: 50%;
  z-index: 1;
  opacity: .3;
}
/*----------------------------------------------------------------"options*/
#options section {
  position: relative;
  background-color: var(--light-blue);
  padding: 1em 0 8em;
}
#options section::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/bg02.webp");
  background-repeat: repeat;
  background-size: 50%;
  z-index: 0;
  opacity: .5;
}
#options section .inner {
  position: relative;
  margin: 0 auto;
  z-index: 2;
}
#options section h2 {
  font-size: 2rem;
  color: var(--dark-yellow);
  font-family: var(--font-family-shippori);
  font-weight: var(--font-weight-medium);
  text-align: center;
  margin: .5em 0 1em;
}
#options section h2 span {
  font-size: 1.5rem;
}
#options section h3 {
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
}
#options section h4 {
  position: relative;
  left: 80px;
  max-width: 220px;
  width: 100%;
}
#options section ul {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 1em;
}
#options section ul li img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
}
#options section h5 {
  background-color: var(--gray-blue);
  padding: 10px 14px;
  margin: .8em 0 .5em;
  color: var(--white);
  border-radius: 8px;
  width: fit-content;
}
#options section .col-blue {
  color: var(--dark-blue);
  font-weight: var(--font-weight-bold);
  margin-bottom: .5em;
}
/*----------------------------------------------------------------tz-contents*/
#tz-contents .detail {
  padding: 8em 0 2em;
}
#tz-contents .detail ul {
  display: grid;
  justify-content: center;
  grid-template-columns: 1fr 1fr;
  column-gap: 2em;
}
#tz-contents .detail h4 {
  font-size: 1.5rem;
  font-family: var(--font-family-shippori);
  font-weight: var(--font-weight-medium);
  margin-bottom: .5em;
}
#tz-contents .detail h5 {
  font-size: 1.125rem;
  background-color: var(--gray-blue);
  padding: 10px 14px;
  margin: .8em 0 .5em;
  color: var(--white);
  border-radius: 8px;
  width: fit-content;
}
#tz-contents .detail p {
  line-height: var(--line-height-large);
}
#tz-contents .detail ul img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 10px;
}
#tz-contents .tz-link .tz-plan{
  display: grid;
  justify-content: center;
  grid-template-columns: 1fr 1fr;
  column-gap: 2em;
  margin-top: 1em;
}
#tz-contents .tz-link h2 {
  font-size: 1.25rem;
  font-weight: var(--font-weight-medium);
  margin: .5em 0;
}
#tz-contents .tz-link h3 {
  max-width: 300px;
  width: 100%;
}
#tz-contents .tz-link .col-red {
  color: var(--red);
  font-size: 1.25rem;
  font-weight: var(--font-weight-medium);
  margin-bottom: .5em;
}
#tz-contents .tz-link .tz-btn {
  margin-bottom: 1em;
}
#tz-contents .tz-link a {
  display: inline-block;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: var(--font-weight-medium);
  background-color: var(--dark-yellow);
  padding: 14px 14px;
  margin: .3em 0 .3em;
  border-radius: 10px;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}
/*----------------------------------------------------------------break*/
#break {
  padding: 0;
}
#break ul {
  display: grid;
  justify-content: center;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}
#break ul li {
  line-height: 0;
}
/*----------------------------------------------------------------other*/
#other section {
  background: var(--black);
  color: var(--white);
  padding: 4em 0;
}
#other section h2 {
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
}
#other .other-tour {
  padding: 0 0 6em;
}
#other .heading {
  display: grid;
  justify-content: center;
  grid-template-columns: 1fr 1fr;
}
#other .heading .area-img img {
  aspect-ratio: 2 / 1;
  object-fit: cover;
}
#other .heading .area-detail {
  position: relative;
  background-color: var(--light-black);
}
#other .heading .area-detail .area-title {
  position: absolute;
  top: 50%;
  left: 80px;
  transform: translateY(-50%) translateX(-10%);
  -webkit- transform: translateY(-50%) translateX(-10%);
}
#other .heading .area-detail h3 {
  font-size: 1.5rem;
  color: var(--yellow);
  font-family: var(--font-family-shippori);
  font-weight: var(--font-weight-medium);
  margin-bottom: .5em;
}
#other .heading .area-detail h3 span {
  font-size: 2.75rem;
  margin-right: .5em;
}
#other .heading .area-detail p {
  max-width: 450px;
  width: 100%;
}
/*ガジェット*/
#other .area-tour {
  margin: 4em auto;
}
#other .pageGuideTop .pageGuide, #other .pageGuideTop .searchNum {
  display: none;
}
#other .pageGuideBottom {
  margin-top: 1.6em;
}
#other .pageGuideBottom .pageGuide {
  display: flex;
}
#other .pageGuideBottom li{
  margin: 1em 10px 0 0;
  border-radius: 4px;
}
#other .pageGuideBottom li a{
  display: inline-block;
  color: var(--white);
  font-weight: var(--font-weight-medium);
  padding: 8px 20px;
}
#other .pageGuideBottom li:has(strong) {
  background-color: var(--dark-yellow);
  color: var(--white);
  font-weight: var(--font-weight-medium);
  padding: 8px 20px;
}
#other .pageGuideBottom li:has(a) {
  background-color: var(--white);
}
#other .pageGuideBottom li a {
  color: var(--black);
}
#other .pageGuideBottom li span {
  display: inline-block;
  padding: 8px 20px;
}
#other .searchEffList {
  display: grid;
  justify-content: center;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 1em;
}
#other .searchEffList .tour-item {
  background-color: var(--light-black);
  padding: 1em;
  border-radius: 10px;
}
#other .searchEffList a {
  color: var(--white);
}
#other .searchEffList .tour-item .temp_list {
  display: flex;
  justify-content: flex-start;
  column-gap: .5em;
  margin: .5em 0;
}
#other .searchEffList .temp_photo img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
}
#other .searchEffList .tour-item .dept_name, #other .searchEffList .tour-item .dept_term {
  display: inline-block;
  color: var(--white);
  font-weight: var(--font-weight-medium);
  background-color: var(--dark-yellow);
  padding: 6px 14px;
  margin: .3em 0 .3em;
  border-radius: 4px;
  width: fit-content;
  text-align: center;
}
#other .searchEffList .tour-item .dept_term {
  background-color: var(--gray-blue);
}
#other .searchEffList .tour-item .temp_point {
  font-size: .875rem;
  margin: 0 0 .3em;
}
#other .searchEffList .tour-item .temp_price_show {
  font-size: .875rem;
  margin: .8em 0 0;
}
#other .searchEffList .tour-item .temp_price {
  color: var(--red);
  font-weight: var(--font-weight-medium);
  font-size: 1.25rem;
}
/*----------------------------------------------------------------contact*/
#contact {
  color: var(--white);
  background-color: var(--dark-blue);
}
#contact section {
  padding: 5em 0;
}
#contact h2 {
  font-size: 1.5rem;
  font-family: var(--font-family-shippori);
  font-weight: var(--font-weight-medium);
  margin-bottom: 1em;
}
#contact .contact-container {
  display: grid;
  justify-content: flex-start;
  grid-template-columns: 240px 400px 1fr;
  column-gap: 3em;
}
#contact .content-subtitle {
  font-size: 1.25rem;
  font-weight: var(--font-weight-medium);
}
#contact .tel a {
  color: var(--white);
}
/*-------------------------------------------------上に戻るボタン */
.pagetop {
  height: 50px;
  width: 50px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  border: solid 2px var(--black);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  transition: all 0.3s;
}
.pagetop__arrow {
  height: 10px;
  width: 10px;
  border-top: 3px solid var(--black);
  border-right: 3px solid var(--black);
  transform: translateY(20%) rotate(-45deg);
  transition: all 0.3s;
}
.pagetop.invert-color {
  border-color: var(--white);
}
.pagetop.invert-color .pagetop__arrow {
  border-color: var(--white);
}