body {
  position: relative;
  overflow-x: hidden;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", メイリオ, "游ゴシック Medium", "YuGothic M", 游ゴシック, YuGothic, Meiryo, Roboto, "Droid Sans", sans-serif;
  color: #333333;
  background-color: #000e27;
  background-color: hsla(225, 93%, 9%, 1);
  background-image:
    radial-gradient(at 50% 0%, hsla(223, 50%, 40%, 0.3) 0px, transparent 50%), radial-gradient(at 50% 0%, hsla(223, 50%, 40%, 0.3) 0px, transparent 50%);

  font-size: 14px;
  line-height: 1.6;
  padding: 0;
}
.titleMoon{
	position:relative;
}
.titleMoon::after{
	position:absolute;
	display: block;
	content: "";
	left: 0;
}
table {
    caption-side: bottom;
    border-collapse: collapse;
    margin-bottom: 10px;
}
.text-primary {
  color: #000e27!important;
}
.house {
  position: relative;
  text-align: center;
  margin: 6vw 0 0 0;
  z-index: 0;
	/*background: #000e27 url(../images/bg-sky.jpg);
    background-repeat: repeat-x;
    background-position: center bottom;*/
}

.underLine{
	border-bottom:3px double #FF7BAB;
}
a {
  color: #333333;
  text-decoration: none;
  transition: 0.1s;
}
h2.km-container {
  font-size: 10px;
  display: none;
}
.jk-header .jk-h_txtBox, .jk-h_snsicon, footer .jk-f_link, .jk-gnav {
  display: none;
}
footer {
  text-align: center;
  background: #fff;
}
section {
  padding: 5vw 0;
}
main {
  position: relative;
  z-index: 1; /* コンテンツを星空の上に配置 */
  font-family: "shippori-mincho", "游明朝", sans-serif;
  font-style: normal;
  color: #fff;
  background: transparent;
}
#mvImg {
  object-fit: cover;
  width: 100%;
  height: 40vw;
}
#mvTxt {
  position: absolute;
  top: -5%;
  right: 0;
  left: 0;
  text-align: center;
  margin: auto;
  z-index: 2;
  width: 43vw;
}
#starry_sky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1; /* 背景として最下層に配置 */
}
.star {
  background-color: white;
  position: relative;
  border-radius: 50%;
  animation-name: twinkle;
  animation-iteration-count: infinite;
  z-index: 0;
}
@keyframes twinkle {
  50% {
    transform: scale(0.2);
  }
}
/* 星型の流れ星（⌒型に移動＋軌跡） */
.shooting-star {
  position: absolute;
  width: 20px;
  height: 20px;
  background: white;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  opacity: 0;
  animation: shootingCurve 3s ease-in-out forwards;
  z-index: 3;
  box-shadow: 0 0 8px white, 0 0 20px rgba(255, 255, 255, 0.3);
  filter: blur(0.4px);
}
.shooting-star::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 2px;
  background: linear-gradient(to left, white, transparent);
  transform: translate(-50%, -50%) rotate(20deg);
  opacity: 0.4;
}
@keyframes shootingCurve {
  0% {
    transform: translateX(0px) translateY(0px);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  70% {
    transform: translateX(-150px) translateY(40px); /* ⌒の字軌道 */
    opacity: 1;
  }
  100% {
    transform: translateX(-150px) translateY(40px); /* 停止位置でフェード */
    opacity: 0;
  }
}
.mainTitle {
  text-align: center;
  letter-spacing: 0.5rem;
  position: relative;
  margin-top: 150px;
  font-weight: normal;
}
.mainTitle::before {
  text-align: center;
  letter-spacing: 0.5rem;
  position: absolute;
  top: -70px;
  left: 60px;
  display: block;
  content: "";
  min-width: 180px;
  height: 50px;
  background: url(../images/point.webp);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
}
.mainTitle::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -20px;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, #fff, transparent);
}
.border-left {
  position: relative;
}
.border-radius75 {
  border-radius: 7.5rem;
}
.badge-outline {
  border: 1px solid #ccc;
  border-radius: 0;
  color: #333;
  padding: 10px;
}
.border-left::after {
  display: block;
  content: "";
  height: 100%;
  width: 1px;
  background: #ccc;
  position: absolute;
  left: -5px;
  top: 10px;
}
.text-blue {
  color: #5db1ff;
}
.h6 {
  font-size: 1.1rem;
}
p {
  line-height: 1.6;
}
ol, ul {
  padding-left: 0;
  list-style-type: none;
}
ul.caution li {
  padding-left: 1em;
  text-indent: -1em;
  list-style-type: none;
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
}
a {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
a img:hover {
  opacity: 0.75;
  transition: 0.75s;
}
img {
  max-width: 100%;
  width: auto;
  height: auto;
}
.subTitle {
  border-radius: 7.5rem;
  border: 1px solid #ccc;
  text-align: center;
  padding: 1rem;
  letter-spacing: 0.25rem;
  font-weight: normal;
  display: block;
  margin: 0 auto 4rem auto;
  width: 320px;
  font-size: 1.25rem;
}
.step {
  color: #ffd700;
  font-size: 1.5rem;
  font-weight: normal;
  margin-bottom: 15px;
  position: relative;
  letter-spacing: .1rem
}
.col dl:first-child .step::before {
  display: inline-block;
  content: "1";
  position: absolute;
  left: 70px;
  border-radius: 7.5rem;
  text-align: center;
  margin: auto;
  color: #ffd700;
  font-size: 1.75rem;
}
.col dl:last-child .step::before {
  display: inline-block;
  content: "2";
  position: absolute;
  left: 70px;
  border-radius: 7.5rem;
  text-align: center;
  margin: auto;
  color: #ffd700;
  font-size: 1.75rem;
}
dl dd {
  font-size: 1.1rem;
  line-height: 1.75;
}
.lh-15 {
  line-height: 1.5;
}
.lh-175 {
  line-height: 1.75;
}
.lh-2 {
  line-height: 2;
}
.lh-25 {
  line-height: 2.5;
}
.fs-5 {
  font-size: 1.2rem;
}
.fs-6 {
  font-size: 1.1rem !important;
}
.fs-7 {
  font-size: 1rem;
}
.fs-8 {
  font-size: 0.8rem;
}
.fs-small {
  font-size: 0.9rem;
}
.nav-tabs .nav-link {
  color: #363636;
}
.title-g {
  background-image: linear-gradient(140deg, #f8d2e2, #d2ecfa);
  background-image: linear-gradient(140deg, rgba(248, 210, 226, 1), rgb(226, 227, 252) 50%, rgba(210, 236, 250, 1));
  background-attachment: fixed;
  padding: 15px;
  border-radius: 7.5rem;
}
.fs-trajan {
  font-family: trajan-pro-3, serif;
  font-weight: 400;
  font-style: normal;
}
.fs-futura {
  font-family: "futura-pt", sans-serif;
}
.fs-mincho {
  font-family: "shippori-mincho", sans-serif;
}
.fs-Kozuka {
  font-family: "kozuka-gothic-pro", "小塚ゴシック pro", sans-serif;
}
a img {
  transition: 0.3s;
  -webkit-transform: scale(1);
  transform: scale(1);
}
a img:active {
  -webkit-transform: scale(0.95);
  transform: scale(0.95);
  opacity: 0.8;
}
.mySwiper .swiper-slide:hover {
  cursor: pointer;
}
.mySwiper .swiper-slide.swiper-slide-thumb-active img {
  filter: brightness(120%);
}
/*calc(画像の高さ / 画像の幅 * widthの値)*/
.ls-2 {
  letter-spacing: 0.2rem;
}
.ls-3 {
  letter-spacing: 0.3rem;
}
.ls-5 {
  letter-spacing: 0.5rem;
}
.designhouse_tab {
  max-width: 1280px;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto 50px;
}
.designhouse_tab .tab_label {
  padding: 10px 10px;
  margin-bottom: 5px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  background: rgba(164, 162, 159, 1);
  order: -1;
  position: relative;
  z-index: 1;
  cursor: pointer;
  transition: 0.3s;
  transform: scale(1);
  width: calc(25% - 5px);
  display: flex;
  flex-wrap: wrap;
  text-align: center;
}
.designhouse_tab .tab_label:hover {
  opacity: 0.7;
  transform: scale(0.95);
}
/* .designhouse_tab .tab_label:not(:last-of-type) {
margin-right: 5px;
} */
/* 2023_08_17 前田修正 */
.designhouse_tab .tab_label {
  margin-right: 5px;
  display: block;
  text-align: center;
}
.designhouse_tab .tab_content {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
}
/* アクティブタブ */
.designhouse_tab .tab_active:checked + .tab_label {
  color: #fff;
  background: #d1c2a1;
}
.designhouse_tab .tab_active:checked + .tab_label + .tab_content {
  height: auto;
  overflow: auto;
  opacity: 1;
  transition: 0.5s opacity;
}
/* ラジオボタン非表示 */
.designhouse_tab .tab_active {
  display: none;
}
ul.new_card {
  max-width: 1280px;
  margin: 50px auto 0px;
  display: flex;
  color: #333;
  flex-wrap: wrap;
  gap: 30px;
  justify-content:flex-start;
}
ul.new_card li {
  position: relative;
  background: #fff;
}
ul.new_card .photo, ul.new_card .detail_btn {
  transition: 0.5s;
}
ul.new_card .photo:hover, ul.new_card .detail_btn:hover {
  filter: brightness(110%);
}
ul.new_card .add {
  font-size: 0.9rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  overflow-y: hidden;
  padding: 10px 10px 0 10px;
  margin: 0;
}
ul.new_card .title {
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  padding: 10px 10px 0 10px;
  margin: 0;
}
ul.new_card .subtxt {
  font-size: 0.8rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  padding: 10px;
  margin: 0;
}
ul.new_card table th {
  font-size: 0.85rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  text-align: center;
  vertical-align: middle;
  background: #a4a29f;
  color: #fff;
  width: 15%;
}
ul.new_card table tr:nth-of-type(1) th {
  border-bottom: #ddd 1px solid;
}
ul.new_card table td {
  background: #f2f1ef;
  padding: 10px;
  color: #333;
}
ul.new_card table td.station {
  font-size: 0.85rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  vertical-align: middle;
  width: 85%;
  border-bottom: #ddd 1px solid;
  color: #333;
}
ul.new_card table td.price01 {
  font-size: 0.85rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  vertical-align: middle;
}
ul.new_card .detail_btn {
  text-align: center;
  /* border: #a4a29f 1px solid;*/
  margin-top: 10px;
  position: absolute;
  bottom: -46px;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
}
ul.new_card .detail_btn a {
  width: 100%;
  height: 100%;
  display: block;
  font-size: 0.85rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  padding: 10px;
  text-decoration: none;
  background: #d1c2a1;
  color: #000;
  display: block;
}
ul.new_card .detail_btn a:after {
  content: "\f105";
  display: inline-block;
  font-family: FontAwesome;
  font-weight: normal;
  font-size: 120%;
  padding-left: 0.5em;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.none-s {
  display: none;
}
.time {
  font-size: 2.5rem;
}
@media screen and (min-width: 1280px) {
  .container-lg {
   
  }
}
@media screen and (min-width: 991px) {
  ul.new_card li {
    width: calc(25% - 30px);
    margin-bottom: 70px;
  }
  .time {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 991px) {
  ul.new_card li {
    width: calc(33% - 30px);
    margin-bottom: 70px;
  }
  #mvTxt {
    width: 50%;
  }
  .time {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  #mvTxt {
    width: 70%;
  }
  #mvImg {
    object-fit: cover;
    width: 100%;
    height: 70vw;
  }
  h2, .h2 {
    font-size: calc(1rem + 0.9vw);
  }
  .fs-6 {
    font-size: .9rem !important;
  }
  .mainTitle::before {
    text-align: center;
    letter-spacing: 0.5rem;
    position: absolute;
    top: -70px;
    left: 0px;
    display: block;
    content: "";
    min-width: 180px;
    height: 50px;
    background: url(../images/point.webp);
    background-repeat: no-repeat;
    background-size: contain;
  }
  ul.new_card li {
    width: calc(33.33333% - 30px);
    margin-bottom: 70px;
  }
  .time {
    font-size: 1.25rem;
  }
  .mainTitle {
    text-align: center;
    letter-spacing: 0.25rem;
    position: relative;
    margin-top: 100px;
    font-weight: normal;
    font-size: 1.5rem;
    line-height: 1.5;
  }
  .swiper-button-prev {
    top: 110%;
    left: 30%;
  }
  .swiper-button-next {
    top: 110%;
    right: 30%;
  }
  .fs-5 {
    font-size: 1rem !important;
  }
  ul.new_card li {
    width: calc(50% - 30px);
    margin-bottom: 70px;
  }
  a img {
    transition: 0.5s;
  }
  .contents980, .contents1080 {
    padding: 0px 10px;
  }
  .designhouse_block01 {
    max-width: 1280px;
    margin: 0 auto;
    padding: 30px 0px;
  }
  .designhouse_block01 h3 {
    font-family: "EB Garamond", serif;
    font-size: 1.7rem;
    font-weight: 400;
    text-align: center;
    letter-spacing: 0.1em;
  }
  .designhouse_block01 .txt01 {
    font-size: 1.2rem;
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    text-align: center;
    margin-bottom: 50px;
  }
  .designhouse_block01 h4 {
    font-size: 1.3rem;
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    text-align: center;
    margin-bottom: 10px;
  }
  .designhouse_block01 h4:before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 0.9em;
    background: #000;
    margin-right: 1em;
  }
  .designhouse_block01 .box {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
  }
  .designhouse_block01 .box div {
    order: 1;
    width: 70%;
    margin: 0 auto 10px;
  }
  .designhouse_block01 .box p {
    order: 2;
    font-size: 0.9rem;
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
  }
  .designhouse_block01 .merit {
    display: flex;
    justify-content: space-between;
    width: 95%;
    margin: 0 auto;
  }
  .designhouse_block01 .merit li {
    width: calc(33.3% - 5px);
  }
  .designhouse_block02 h3 {
    font-family: "EB Garamond", serif;
    font-size: 1.7rem;
    font-weight: 400;
    text-align: center;
    letter-spacing: 0.1em;
  }
  .designhouse_block02 .txt01 {
    font-size: 1.2rem;
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    text-align: center;
    margin-bottom: 30px;
  }
  .designhouse_block02 .txt02 {
    color: #fff;
    background: #b9272d;
    font-size: 1.2rem;
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    text-align: center;
    letter-spacing: 0.1em;
    padding: 5px;
    margin: 0px auto 60px;
    width: 300px;
  }
  /*アコーディオン*/
  .p-accordion {
    max-width: 1280px;
    margin-inline: auto;
  }
  .p-accordion__head {
    cursor: pointer;
    /*border: #d1c2a1 10px solid;*/
    background: #d1c2a1;
    display: block;
    padding: 5px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 1.4rem;
    width: 95%;
    margin: 0 auto;
  }
  .p-accordion__head-inner {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .p-accordion__icon {
    display: block;
    position: relative;
    width: 24px;
    margin-left: 20px;
    transition: transform 0.25s;
  }
  .p-accordion__icon:before {
    content: "";
    position: absolute;
    display: block;
    width: 15px;
    height: 2px;
    background-color: #000;
  }
  .p-accordion__icon:after {
    content: "";
    position: absolute;
    display: block;
    width: 15px;
    height: 2px;
    background-color: #000;
  }
  .p-accordion__icon:before {
    left: 0;
    transform: rotate(45deg);
  }
  .p-accordion__icon:after {
    right: 0;
    transform: rotate(-45deg);
  }
  .p-accordion__input input[name="p-accordion__block"] {
    display: none;
  }
  .p-accordion__input .p-accordion__block {
    cursor: pointer;
  }
  .p-accordion__input .p-accordion__content {
    height: 0;
    overflow: hidden;
    opacity: 0.5;
    background-color: #fff;
    transition: padding 0.25s ease, opacity 0.3s ease 0s;
  }
  .p-accordion__input input[name="p-accordion__block"]:checked + .p-accordion__head > .p-accordion__head-inner .p-accordion__icon {
    transform: rotate(-180deg);
  }
  .p-accordion__input input[name="p-accordion__block"]:checked + .p-accordion__head + .p-accordion__content {
    /*開閉時*/
    height: auto;
    opacity: 1;
    padding: 20px 0px 10px;
  }
  /*アコーディオン end*/
  .designhouse_tab {
    max-width: 780px;
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto 30px;
    padding: 0px 10px;
  }
  .designhouse_tab .tab_label {
    padding: 10px 5px;
    margin-bottom: 5px;
    color: #fff;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 2.4vw;
    background: rgba(164, 162, 159, 1);
    text-align: center;
    order: -1;
    position: relative;
    z-index: 1;
    transition: 0.3s;
    transform: scale(1);
    /*width: calc(20% - 5px);*/
    width: calc(25% - 5px);
    display: flex;
    flex-wrap: wrap;
  }
  .designhouse_tab .tab_label:hover {
    opacity: 0.7;
    transform: scale(0.95);
  }
  /* .designhouse_tab .tab_label:not(:last-of-type) {
margin-right: 5px;
} */
  /* 2023_08_17 前田修正 */
  .designhouse_tab .tab_label {
    margin-right: 5px;
    display: block;
    text-align: center;
  }
  .designhouse_tab .tab_content {
    width: 100%;
    height: 0;
    overflow: hidden;
    opacity: 0;
  }
  /* アクティブタブ */
  .designhouse_tab .tab_active:checked + .tab_label {
    color: #fff;
    background: #d1c2a1;
  }
  .designhouse_tab .tab_active:checked + .tab_label + .tab_content {
    height: auto;
    overflow: auto;
    opacity: 1;
    transition: 0.5s opacity;
  }
  /* ラジオボタン非表示 */
  .designhouse_tab .tab_active {
    display: none;
  }
  ul.new_card {
    max-width: 780px;
    margin: 30px auto 0;
    padding: 0px 10px;
  }
  ul.new_card li {
    margin-bottom: 50px;
  }
  ul.new_card .photo, ul.new_card .detail_btn {
    transition: 0.5s;
  }
  ul.new_card .add {
    font-size: 0.9rem;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    overflow-y: hidden;
    margin: 5px 0px;
  }
  ul.new_card .title {
    font-size: 1rem;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    line-height: 1.2;

  }
  ul.new_card .subtxt {
    font-size: 0.8rem;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    margin-bottom: 10px;
  }
  ul.new_card table th {
    font-size: 0.85rem;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    text-align: center;
    vertical-align: middle;
    background: #a4a29f;
    color: #fff;
    width: 15%;
  }
  ul.new_card table tr:nth-of-type(1) th {
    border-bottom: #ddd 1px solid;
  }
  ul.new_card table td {
    background: #f2f1ef;
    padding: 10px;
  }
  ul.new_card table td.station {
    font-size: 0.85rem;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    vertical-align: middle;
    width: 85%;
    border-bottom: #ddd 1px solid;
  }
  ul.new_card table td.price01 {
    font-size: 0.85rem;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    vertical-align: middle;
  }
  ul.new_card .detail_btn {
    text-align: center;
    border: #a4a29f 1px solid;
    margin-top: 10px;
  }
  ul.new_card .detail_btn a {
    width: 100%;
    height: 100%;
    display: block;
    font-size: 0.85rem;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    padding: 10px;
  }
  ul.new_card .detail_btn a:after {
    content: "\f105";
    display: inline-block;
    font-family: FontAwesome;
    font-weight: normal;
    font-size: 120%;
    padding-left: 0.5em;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  .clearfix:after {
    content: "";
    clear: both;
    display: block;
  }
}
.jk-btn_l {
    height: 30px;
    line-height: 28px;
    border-radius: 7.5rem;
    font-size: 13px;
    width: 100px;
    display: inline-block;
	pointer-events:none;
}
@media screen and (max-width: 765px) {
  ul.new_card li {
    width: calc(100% - 30px);
    margin-bottom: 100px;
  }
	ul.new_card{
	justify-content: center;
	}
}
