@charset "utf-8";

:root {
  --main-font: 'Shippori Mincho B1', serif;
  --sub-font: 'Poppins', sans-serif;
  --ja-font: 'ヒラギノ角ゴシック', 'Hiragino Sans', 'メイリオ', Meiryo, sans-serif;
  --color-gold: #9A7100;
  --color-purple: #764595;
}

body {
  color: #000;
  font-size: 14px;
  font-family: var(--main-font);
  font-feature-settings: "palt";
}

a {
  color: inherit;
  text-decoration: none;
}

@media (hover: hover) {
  a {
    transition: all .3s;
  }

  a:hover {
    opacity: 0.6;
    color: inherit;
  }
}

@media (hover: none) {
  a:active {
    opacity: 0.6;
  }

  a:hover {
    opacity: 1;
    color: inherit;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  object-fit: cover;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

button {
  background: none;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

article {
  background-color: #FFFCF0;
}

.hp_txt_gold {
  color: var(--color-gold);
}

.hp_sp {
  display: block !important;
}

.hp_pc {
  display: none !important;
}

/* ------ */
/* ヘッダー */
/* ------ */
.ly_header {
  position: relative;
}

.bl_logo {
  position: absolute;
  left: 5%;
  top: 20px;
}

.bl_logo_link {
  display: inline-block;
  width: 100%;
  height: 100%;
}
/* ------ */
/* ヘッダー */
/* ------ */

.ly_container {
  padding-bottom: 50px;
}

.bl_site-ttl {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  margin-top: 50px;
}

.bl_inner {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
}

.bl_description {
  font-family: var(--ja-font);
  line-height: 1.6;
}

.bl_description > span {
  display: block;
  margin-top: 1em;
}

.bl_btn_wrap {
  margin-top: 30px;
  display: flex;
  gap: 15px;
}

.bl_btn {
  flex: 1;
  border-radius: 4px;
  height: 80px;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  position: relative;
}

.bl_btn > a {
  display: grid;
  place-content: center;
  height: 100%;
}

.bl_btn > a::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  transform: rotate(-135deg) translateX(-50%);
  position: absolute;
  left: 47.5%;
  bottom: 0.5em;
}

.bl_btn--gold {
  background-color: var(--color-gold);
}

.bl_btn--purple {
  background-color: var(--color-purple);
}

.bl_heading {
  margin-top: 50px;
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  border-top: 4px solid var(--color-gold);
  border-bottom: 4px solid var(--color-gold);
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 0;
}

.bl_thirty_txt {
  margin-bottom: 20px;
}

.bl_card,
.bl_card--small:not(:last-child) {
  margin-bottom: 10px;
}

.bl_card {
  border: 1px solid var(--color-gold);
  background-color: #fff;
}

.bl_card_link {
  display: flex;
  flex-direction: column;
  padding: 15px 0;
  height: 100%;
  width: 100%;
}

.bl_card_left {
  margin: 0 30px 15px;
}

.bl_card01 {
  display: flex;
  align-items: center;
}

.bl_card01_02 {
  width: 60px;
  height: 60px;
  display: grid;
  place-content: center;
  color: #fff;
  border-radius: 4px;
  font-family: var(--sub-font);
  font-size: 12px;
  text-align: center;
  line-height: 1;
}

.bl_card01_02 > span {
  display: block;
  text-align: center;
  font-size: 28px;
  font-family: var(--main-font);
  font-weight: 600;
  margin-top: 4px;
}

.bl_card01_02--stay {
  background-color: #41A1A5;
}

.bl_card01_02--eat {
  background-color: #DE9100;
}

.bl_card01_02--song {
  background-color: #D86464;
}

.bl_card01_03 {
  flex: 1;
  margin-left: 10px;
  color: var(--color-gold);
  font-family: var(--ja-font);
  font-weight: 600;
  font-size: 12px;
  line-height: 1;
}

.bl_card01_03 > span {
  display: block;
  font-size: 16px;
  margin-top: 8px;
  color: #000;
  line-height: 1.2;
}

.bl_card02 {
  font-weight: 600;
  font-size: 28px;
  text-align: center;
  line-height: 1;
  margin-top: 16px;
  margin-bottom: 5px;
}

.bl_card03 {
  font-weight: 600;
  font-size: 12px;
  text-align: center;
  line-height: 1;
  margin-bottom: 10px;
}

.bl_card04 {
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  width: 155px;
  max-width: 100%;
  background-color: #BF9300;
  color: #fff;
  text-align: center;
  border-radius: 4px;
  line-height: 20px;
  font-size: 10px;
  font-weight: bold;
  position: relative;
}

.bl_card_right {
  display: flex;
  margin: 0 5px;
  justify-content: center;
}

.img_sp {
  display: inline-block;
  width: 50%;
}

.bl_card--small {
  background-color: #fff;
  border: 1px solid var(--color-gold);
}

.bl_card--small > .bl_card_link {
  padding: 15px;
}

.bl_card_top {
  margin-bottom: 15px;
}

.bl_card_btm {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.bl_card_btm_left {
  flex: 1;
  height: 90px;
  object-fit: cover;
}

.bl_card_btm_right {
  flex: 1;
  text-align: center;
}

.bl_card_btm_right01 {
  display: block;
  text-align: center;
  font-weight: 600;
  line-height: 1.5;
  font-size: 24px;
  margin-bottom: 4px;
}

.bl_card_btm_right02 {
  display: block;
  text-align: center;
  font-weight: 600;
  line-height: 1;
  font-size: 10px;
  margin-bottom: 18px;
}

.bl_card_btm_right03 {
  display: block;
  text-align: center;
  font-weight: bold;
  font-size: 10px;
  background-color: #BF9300;
  color: #fff;
  line-height: 20px;
  border-radius: 4px;
  position: relative;
}

.bl_card_btm_right04{
  font-size: 16px;
}

.bl_card04::after,
.bl_card_btm_right03::after {
  content: "";
  display: block;
  right: 9px;
  width: 12px;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.bl_card04::before,
.bl_card_btm_right03::before {
  content: "";
  display: block;
  position: absolute;
  right: 9px;
  top: 7px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}

.hp_txt_purple {
  color: var(--color-purple);
}

.bl_notice {
  margin-top: 20px;
  font-family: var(--ja-font);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.6;
}

#twenty-nine .bl_heading {
  margin-top: 0;
  border-color: var(--color-purple);
}

.bl_twenty-nine_right {
  margin-top: 20px;
}

.bl_twenty-nine_right p {
  margin-top: 20px;
}

.bl_twenty-nine_right img {
  width: 100%;
}

.ly_footer {
  background-color: #BF9300;
}

.bl_footer_inner {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.bl_footer_logo {
  padding-top: 60px;
  text-align: center;
}

.bl_footer_link {
  color: #fff;
  text-align: center;
  margin-top: 15px;
  font-family: var(--ja-font);
  font-size: 14px;
  font-weight: 600;
}

.bl_footer_ttl {
  text-align: center;
  color: #fff;
  font-family: var(--ja-font);
  font-weight: 600;
  font-size: 20px;
  margin-top: 80px;
}

.ly_group {
  margin-top: 20px;
}

.bl_group_ttl {
  text-align: center;
  line-height: 30px;
  color: #BF9300;
  background-color: #fff;
  border-radius: 4px;
  font-family: var(--ja-font);
  font-weight: 600;
  font-size: 14px;
}

.bl_group_list_ttl {
  color: #FFF;
  font-family: var(--ja-font);
  font-weight: 600;
  font-size: 12px;
  margin-bottom: 22px;
  margin-top: 22px;
}

.bl_group_list_ttl::before {
  content: "▶︎";
  margin-right: 4px;
}

.bl_group_group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 30px;
  text-align: center;
}

.bl_group_list_item img {
  object-fit: contain;
  object-position: center;
  height: 49px;
}

.bl_copy-right {
  margin-top: 80px;
  padding-bottom: 30px;
  text-align: center;
  color: #fff;
  font-family: var(--sub-font);
  font-weight: 500;
  font-size: 10px;
}

#back-top {
  position: fixed;
	right: 5%;
	bottom: 20px;
	z-index: 2;
	opacity: 0;
	transform: translateY(100px);
  width: 50px;
  height: 50px;
  border-radius: 4px;
  background-color: var(--color-gold);
  color: #fff;
}

#back-top::before {
  content: "";
  width: 2px;
  height: 25px;
  background-color: #fff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 12px;
}

#back-top > a {
  display: grid;
  place-content: center;
  width: 100%;
  height: 100%;
  transition:all 0.3s;
}

#back-top > a::after,
#back-top > a::before {
  content: ""; /* 疑似要素に指定必須 */
  width: 15px; /* 線の長さを指定 */
  height: 2px; /* 線の幅を指定 */
  display: inline-block; /* インラインブロックにする */
  border-radius: 2px; /* 線を角丸にする */
  background: #fff;   /* 線の色を指定 */
  position: absolute; /* 相対位置に指定 */
  top: 17px;
}

#back-top > a::before {
  transform: rotate(45deg); /* 45度回転させる */
  left: 22.5px;
}

#back-top > a::after {
  transform: rotate(-45deg); /* -45度回転させる */
  left: 12.5px;
}

/* トップへ戻るボタン */
/*　上に上がる動き　*/
#back-top.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/*　下に下がる動き　*/
#back-top.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}

#breadcrumbs_pc {
  background-color: #fff;
}

#breadcrumbs_pc > ol {
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  padding: 20px 0 20px 5%;
  font-size: 12px;
  font-family: var(--ja-font);
  font-weight: 400;
}

#breadcrumbs_pc > ol > li:not(:last-child) {
  margin-right: 12px;
}

#breadcrumbs_pc > ol > li:not(:last-child)::after {
  content: ">";
  margin-left: 12px;
  color: #BF9300;
}

#breadcrumbs_pc > ol > li:last-child {
  color: var(--color-gold);
}

#breadcrumbs_pc > ol > li:last-child a {
  pointer-events: none;
}
@media screen and (min-width:769px) {
  body {
    font-size: 16px;
  }

  .hp_sp {
    display: none !important;
  }

  .hp_pc {
    display: block !important;
  }

  .bl_logo_link > img {
    width: 140px;
  }

  /* .bl_mv img {
    height: 100vh;
  } */

  .bl_site-ttl {
    font-size: 36px;
    margin-top: 60px;
  }

  .bl_inner {
    width: 740px;
    max-width: 100%;
    padding: 0 10px;
    margin-top: 30px;
  }

  .bl_description {
    margin-top: 50px;
  }

  .bl_description > span {
    display: inline;
    margin-top: 0;
  }

  .bl_btn_wrap {
    gap: 20px;
  }

  .bl_btn {
    font-size: 20px;
  }

  .bl_btn > a::before {
    width: 12px;
    height: 12px;
    bottom: 1rem;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
  }

  .ly_container {
    padding-bottom: 80px;
  }

  #thirty.ly_container {
    padding-bottom: 60px;
  }

  .bl_heading {
    margin-top: 80px;
    width: 720px;
    max-width: 100%;
    padding: 10px;
    font-size: 24px;
  }

  .bl_thirty_txt {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .bl_card_link {
    padding: 15px;
    gap: 15px;
    flex-direction: row;
  }

  .bl_card_left {
    margin: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .bl_card_btm_right03,
  .bl_card04 {
    line-height: 30px;
    width: 160px;
    font-size: 12px;
  }

  .bl_card04::before,
  .bl_card_btm_right03::before {
    top: 12px;
  }

  .bl_card_right {
    display: grid;
    gap: 1px;
    grid-template-areas:
    "box1 box2"
    "box1 box2"
    "box1 box3"
    "box1 box3";
  }

  .img01 {
    grid-area: box1;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .img02 {
    grid-area: box2;
  }

  .img03 {
    grid-area: box3;
  }

  .bl_card_right {
    margin: 0;
  }

  .bl_card {
    margin-bottom: 20px;
  }

  .bl_card--small:not(:last-child) {
    margin-bottom: 0;
  }

  .bl_card_wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .bl_card--small > .bl_card_link {
    display: block;
  }

  .bl_card_top {
    display: block;
  }

  .bl_card_btm_left {
    height: 100px;
  }

  #twenty-nine .bl_inner {
    display: flex;
    gap: 30px;
  }

  .bl_twenty-nine_right {
    margin-top: 0;
  }

  .bl_twenty-nine_right img {
    width: 350px;
    max-width: 100%;
  }

  .bl_twenty-nine_left {
    flex: 1;
  }

  .bl_twenty-nine_left p:not(:last-child) {
    margin-bottom: 20px;
  }

  .bl_footer_inner {
    width: 940px;
    max-width: 100%;
    padding: 0 10px;
  }

  .bl_footer_ttl {
    margin-top: 85px;
  }

  .ly_group {
    margin-top: 30px;
  }

  .bl_group_list {
    display: flex;
    align-items: center;
    margin-top: 40px;
    width: 830px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .bl_group_group {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
  }

  .bl_group_list_ttl {
    width: 150px;
    max-width: 100%;
    display: flex;
  }

  .bl_copy-right {
    font-size: 12px;
    padding-bottom: 40px;
  }

  #breadcrumbs_pc > ol {
    width: 740px;
    max-width: 100%;
    padding: 20px 10px;
    margin-left: auto;
    margin-right: auto;
  }
}
