@charset "utf-8";
/* CSS Document */

@media screen and (max-width: 750px) {
  main .wrap {
    padding: 0 6.13333333333333vw;
  }
  #mv_common_2 .wrap {
    padding: 0;
  }
  #mv_common_2 h3 {
    padding: 0 10.4vw;
  }
  #mv_common_2 p {
    padding: 0 10.4vw;
  }
  #mv_common_2 picture:has(.mv_img) {
    margin-left: 0;
  }
}

/* ===============================
	price_btn
 =============================== */
#price_btn {
  padding-top: 50px;
}
#price_btn p {
  font-size: 16px;
  letter-spacing: 0.1em;
  text-align: center;
}
.price_btn_con {
  border-bottom: var(--C-gray) 2px solid;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
  margin-bottom: 58px;
  padding-bottom: 30px;
}
#price_btn .title_area p {
  text-align: left;
}
.price_btn_con .btn_area {
  width: calc(100% - 100px);
  display: flex;
  flex-direction: row;
  justify-content: end;
  gap: 10px;
}
.price_btn_con .btn_area a {
  font-size: 16px;
  letter-spacing: 0.1em;
  border: var(--C-gray) 1px solid;
  border-radius: 8px;
  width: 150px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.4s;
}
.price_btn_con .btn_area a:hover,
.active {
  color: var(--C-white);
  background: var(--C-gray);
  opacity: 1;
}
#price_btn .content_open {
  padding-bottom: 16px;
  border-bottom: var(--C-gray) 2px solid;
}
#price_btn .content_open p {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  display: flex;
  justify-content: right;
  align-items: center;
  cursor: pointer;
}
#price_btn .content_open p span {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: var(--C-gray);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 6px;
}
#price_btn .content_open p span::before,
#price_btn .content_open p span::after {
  content: '';
  background: var(--C-white);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transition: 0.4s;
}
#price_btn .content_open p span::before {
  width: 12px;
  height: 2px;
}
#price_btn .content_open p span::after {
  width: 2px;
  height: 12px;
}
#price_btn .content_open.open p span::after {
  transform: rotate(90deg);
}
@media screen and (max-width: 750px) {
  #price_btn {
    text-align: center;
    padding-top: 5.06666666666667vw;
  }
  #price_btn .wrap {
    padding: 0;
  }
  #price_btn p {
    font-size: 3.6vw;
    text-align: left;
    border-radius: 1.6vw;
    background: var(--C-white);
    width: calc(100% - (6.13333333333333vw * 2));
    display: inline-block;
    padding: 3.2vw 5.2vw;
  }
  .price_btn_con {
    border-bottom: none;
    flex-direction: column;
    margin-top: 6.13333333333333vw;
    margin-bottom: 0;
    padding: 0 6.13333333333333vw 0;
  }
  .price_btn_con .title_area {
    text-align: left;
    width: 100%;
    border-bottom: var(--C-gray) 2px solid;
    padding-bottom: 1.6vw;
  }
  #price_btn .title_area p {
    font-size: 5vw;
    font-weight: 500;
    background: transparent;
    border-radius: 0;
    padding: 0;
  }
  .price_btn_con .btn_area {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.4vw;
    margin-top: 3.73333333333333vw;
  }
  .price_btn_con .btn_area a {
    font-size: 3.33333333333333vw;
    width: calc((100% - 2.4vw) / 2);
  }
}

/* ===============================
	plan_list
 =============================== */
#plan_list {
  margin-top: 56px;
  margin-bottom: 86px;
}
#plan_list ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 48px 20px;
}
#plan_list li {
  width: calc((100% - (20px * 2)) / 3);
  background: var(--C-white);
}
#plan_list li a {
  display: block;
  position: relative;
}
#plan_list li a:hover {
  opacity: 1;
}
#plan_list li .category::before {
  font-size: 13px;
  font-weight: 500;
  color: var(--C-white);
  width: 104px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -14px;
  left: 8px;
  z-index: +1;
}
#plan_list li.price_150 .category::before {
  content: '～150万円';
  background: var(--C-Dblue);
}
#plan_list li.price_250 .category::before {
  content: '～250万円';
  background: var(--C-green);
}
#plan_list li.price_350 .category::before {
  content: '～350万円';
  background: var(--C-beige);
}
#plan_list li.price_450 .category::before {
  content: '～450万円';
  background: var(--C-red);
}
#plan_list li.price_more .category::before {
  content: 'それ以上';
  background: var(--C-gray);
}
#plan_list .list_img {
  aspect-ratio: 287 / 153;
  overflow: hidden;
}
#plan_list .list_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: 0.8s;
}
#plan_list li a:hover .list_img img {
  transform: scale(1.1);
}
#plan_list .list_txt {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
  padding: 6px 20px 14px;
}
#plan_list .list_txt p {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.705882352941176;
  width: 100%;
  max-height: 2lh;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
#plan_list .list_txt time {
  font-size: 17px;
  font-weight: 500;
}
#plan_list .list_txt .list_btn {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  border: var(--C-gray) 1px solid;
  border-radius: 100px;
  width: 110px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: 0.4s;
}
#plan_list li a:hover .list_txt .list_btn {
  color: var(--C-white);
  background: var(--C-green);
}
#plan_list .list_txt .list_btn::after {
  content: '';
  width: 20px;
  height: 20px;
  background: url(../img/plan/icon_arrow.svg) center no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 8px;
  margin: auto;
}
@media screen and (max-width: 750px) {
  #plan_list {
    margin-top: 12.8vw;
    margin-bottom: 6.66666666666667vw;
  }
  #plan_list .wrap {
    overflow: visible;
  }
  #plan_list ul {
    gap: 9.06666666666667vw 2.93333333333333vw;
  }
  #plan_list li {
    width: calc((100% - 2.93333333333333vw) / 2);
  }
  #plan_list li .category::before {
      font-size: 2.93333333333333vw;
      width: 22.66666666666667vw;
      height: 6.13333333333333vw;
      top: calc(-6.13333333333333vw / 2);
      left: 0;
  }
  #plan_list .list_img {
    aspect-ratio: 315 / 205;
  }
  #plan_list .list_txt {
    flex-direction: column;
    justify-content: center;
    gap: 0;
    padding: 1.86666666666667vw 4.53333333333333vw 3.46666666666667vw;
  }
  #plan_list .list_txt p {
    font-size: 3.4vw;
    line-height: 1.68;
    margin-bottom: 3.2vw;
  }
  #plan_list .list_txt time {
    font-size: 3.2vw;
    margin-bottom: 12vw;
  }
  #plan_list .list_txt .list_btn {
    font-size: 3.4vw;
    width: 23.46666666666667vw;
    height: 7.46666666666667vw;
    margin: auto;
  }
  #plan_list .list_txt .list_btn::after {
    width: 4.26666666666667vw;
    height: 4.26666666666667vw;
    right: 1.6vw;
  }
}

/* ===============================
	plan_pagenation
 =============================== */
#plan_pagenation {
  background: rgba(255, 255, 255, .55);
  padding: 36px 0;
}
#plan_pagenation a:hover {
  opacity: 1;
}
#plan_pagenation .pagenation {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 13px;
}
#plan_pagenation .pagenation .pagination-no-num a {
  font-weight: 700;
  color: var(--C-white);
  background: var(--C-green);
  border-radius: 100px;
  padding: 4px 6px;
}
#plan_pagenation .pagenation .pagination-no-num:hover a {
  color: var(--C-green);
  background: var(--C-white);
}
#plan_pagenation .pagenation .pagination-sp a {
  font-size: 13px;
  font-weight: 500;
  display: block;
  padding: 0 10px 2px;
}
#plan_pagenation .pagenation .pagination-index a,
#plan_pagenation .pagenation .pagination-sp:hover a {
  color: var(--C-white);
  background: var(--C-gray);
}
@media screen and (max-width: 750px) {
  #plan_pagenation {
    padding: 2.93333333333333vw 0;
  }
  #plan_pagenation .pagenation {
    gap: 3.2vw;
  }
  #plan_pagenation .pagenation .pagination-sp a {
    font-size: 3.06666666666667vw;
    padding: .3vw 2.66666666666667vw 1.06666666666667vw;
  }
}

/****************************/
/********** detail **********/
/****************************/

#mv_common_normal {
  background-color: var(--C-green);
  background-image: url(../img/plan/detail/mv_bg.webp);
}
#mv_common_normal .wrap {
  position: relative;
  margin-bottom: 0;
}
@media screen and (min-width: 1396px) {
  #mv_common_normal {
    background-size: cover;
  }
}
@media screen and (max-width: 750px) {
  #mv_common_normal {
    background-image: url(../img/plan/detail/mv_bg_sp.webp);
    height: 46.66666666666667vw;
  }
  #mv_common_normal .wrap {
    padding: 0 6.13333333333333vw;
  }
}

/* ===============================
	plan_detail_title
 =============================== */
#plan_detail_title {
  text-align: center;
  padding-top: 104px;
}
#plan_detail_title p.title,
#plan_detail_title p.title span {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
}
#plan_detail_title p.title {
  font-size: 42px;
}
#plan_detail_title p.title span {
  font-size: 66px;
  letter-spacing: 0;
}
#plan_detail_title .category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
#plan_detail_title .category * {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  display: flex;
  justify-content: center;
  align-items: center;
}
#plan_detail_title .category .category_txt {
  background: var(--C-white);
  width: 98px;
  height: 30px;
}
#plan_detail_title .category .category_price {
  color: var(--C-white);
  background: var(--C-red);
  width: 106px;
  height: 30px;
}
#plan_detail_title .category.price_150 .category_price {
  background: var(--C-Dblue);
}
#plan_detail_title .category.price_150 .category_price::before {
  content: '～150万円';
}
#plan_detail_title .category.price_250 .category_price {
  background: var(--C-green);
}
#plan_detail_title .category.price_250 .category_price::before {
  content: '～250万円';
}
#plan_detail_title .category.price_350 .category_price {
  background: var(--C-beige);
}
#plan_detail_title .category.price_350 .category_price::before {
  content: '～350万円';
}
#plan_detail_title .category.price_450 .category_price {
  background: var(--C-red);
}
#plan_detail_title .category.price_450 .category_price::before {
  content: '～450万円';
}
#plan_detail_title .category.price_more .category_price {
  background: var(--C-gray);
}
#plan_detail_title .category.price_more .category_price::before {
  content: 'それ以上';
}
@media screen and (max-width: 750px) {
  #plan_detail_title {
    padding-top: 0;
  }
  #plan_detail_title h2.title {
    font-size: 3.73333333333333vw;
    margin-bottom: 12vw;
  }
  #plan_detail_title .txt_area {
    bottom: 8vw;
    left: 5.6vw;
  }
  #plan_detail_title p.title {
    font-size: 7.73333333333333vw;
  }
  #plan_detail_title p.title span {
    font-size: 12vw;
  }
  #plan_detail_title .category * {
    font-size: 2.93333333333333vw;
  }
  #plan_detail_title .category .category_txt {
    width: 16vw;
    height: 5.33333333333333vw;
  }
  #plan_detail_title .category .category_price {
    width: 17.33333333333333vw;
    height: 5.33333333333333vw;
  }
}

/* ===============================
	plan_detail
 =============================== */
#plan_detail {
  padding-top: 100px;
}
#plan_detail .title_area {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
#plan_detail .title_area .title {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 27px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.851851851851852;
  width: calc(100% - (262px + 20px));
}
#plan_detail .title_area .price {
  position: relative;
  min-width: 262px;
  padding-left: 20px;
}
#plan_detail .title_area .price::before {
  content: '';
  width: 2px;
  height: 77%;
  background: var(--C-gray);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
#plan_detail .title_area .price * {
  font-weight: 700;
  letter-spacing: 0.12em;
}
#plan_detail .title_area .price .txt {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 19px;
}
#plan_detail .title_area .price .price_txt {
  font-size: 27px;
}
#plan_detail .title_area .price .price_txt .en {
  font-size: 25px;
}
#plan_detail .title_area .price .price_txt .tax {
  font-size: 16px;
}
@media screen and (max-width: 750px) {
  #plan_detail {
    padding-top: 8.53333333333333vw;
  }
  #plan_detail .title_area {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
  #plan_detail .title_area .title {
    font-size: 5.46666666666667vw;
    width: 100%;
    margin-bottom: 2.4vw;
  }
  #plan_detail .title_area .price {
    width: 100%;
    padding-left: 4vw;
  }
  #plan_detail .title_area .price .txt {
    font-size: 3.6vw;
  }
  #plan_detail .title_area .price .price_txt,
  #plan_detail .title_area .price .price_txt .en {
    font-size: 5.2vw;
  }
  #plan_detail .title_area .price .price_txt .tax {
    font-size: 3.33333333333333vw;
  }
}

#plan_detail .plan_list {
  display: flex;
  flex-direction: column;
  gap: 62px;
  margin-top: 60px;
}
#plan_detail .plan_list li {
  display: flex;
  flex-direction: row;
}
#plan_detail .plan_list .list_img {
  width: 50%;
  aspect-ratio: 450 / 288;
}
#plan_detail .plan_list .list_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
}
#plan_detail .plan_list .list_txt {
  width: 50%;
}
#plan_detail .plan_list .list_txt h3.title {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 17px;
  font-weight: 700;
  background: var(--C-white);
  border-left: var(--C-green) 6px solid;
  padding: 26px 18px 26px 34px;
}
#plan_detail .plan_list .list_txt p {
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 2;
  padding-top: 24px;
  padding-left: 46px;
}
@media screen and (max-width: 750px) {
  #plan_detail .plan_list {
    gap: 10.4vw;
    margin-top: 8.8vw;
  }
  #plan_detail .plan_list li {
    flex-direction: column;
  }
  #plan_detail .plan_list .list_img {
    width: 83.2vw;
    margin-left: -6.13333333333333vw;
  }
  #plan_detail .plan_list .list_txt {
    width: 76.8vw;
    margin: auto;
  }
  #plan_detail .plan_list .list_txt h3.title {
    font-size: 4vw;
    line-height: 1.4;
    border-width: 1.06666666666667vw;
    padding: 4vw 4vw 4vw 6.66666666666667vw;
  }
  #plan_detail .plan_list .list_txt p {
    font-size: 3.6vw;
    letter-spacing: 0.03em;
    line-height: 1.826086956521739;
    padding-top: 2.66666666666667vw;
    padding-left: 0;
  }
}

#plan_detail .plan_photo_list {
  display: flex;
  flex-direction: row;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 116px;
}
#plan_detail .plan_photo_list .modal {
  display: none;
}
.modaal-container {
  background: transparent;
}
.modaal-content-container {
  padding: 0;
}
#plan_detail .plan_photo_list li {
  width: calc((100% - (14px * 3)) / 4);
  min-width: 150px;
}
#plan_detail .plan_photo_list li span {
  cursor: pointer;
}
#plan_detail .plan_photo_list .list_img {
  width: 100%;
  aspect-ratio: 214 / 178;
}
#plan_detail .plan_photo_list .list_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#plan_detail .plan_photo_list li p {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
  max-height: 3lh;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  margin-top: 6px;
}
@media screen and (max-width: 750px) {
  #plan_detail .plan_photo_list {
    gap: 3.46666666666667vw 2.4vw;
    margin-top: 5.6vw;
  }
  #plan_detail .plan_photo_list li {
    width: calc((100% - 2.4vw) / 2);
  }
  #plan_detail .plan_photo_list li p {
    font-size: 3.46666666666667vw;
    margin-top: 1.33333333333333vw;
  }
}

/* ===============================
	plan_detail_pagenation
 =============================== */
#plan_detail_pagenation {
  background: rgba(255, 255, 255, .55);
  margin-top: 86px;
  margin-bottom: 92px;
  padding: 29px 0;
}
#plan_detail_pagenation ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px;
}
#plan_detail_pagenation li {
  width: 168px;
  border: var(--C-gray) 2px solid;
  border-radius: 100px;
  background: var(--C-white);
  transition: 0.4s;
}
#plan_detail_pagenation li:hover {
  background: var(--C-green);
}
#plan_detail_pagenation li a {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  width: calc((100% - (20px + 6px)) - 2px);
  height: 34px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
}
#plan_detail_pagenation li:hover a {
  color: var(--C-white);
  opacity: 1;
}
#plan_detail_pagenation li a::after {
  content: '';
  width: 20px;
  height: 20px;
  background: url(../img/plan/icon_arrow.svg) center no-repeat;
  background-size: contain;
  position: absolute;
  right: -20px;
  margin: 0;
}
#plan_detail_pagenation li.prev a::after {
  transform: rotate(180deg);
}
#plan_detail_pagenation li.all a::after {
  transform: rotate(90deg);
}
#plan_detail_pagenation li.null {
  pointer-events: none;
  opacity: 0.3;
}
#plan_detail_pagenation li.null a::after {
  filter: grayscale(1);
  -webkit-filter: grayscale(1);
}
@media screen and (max-width: 750px) {
  #plan_detail_pagenation {
    background: none;
    margin: 0 6.13333333333333vw 10.4vw;
    padding: 11.73333333333333vw 5.33333333333333vw 12.53333333333333vw;
  }
  #plan_detail_pagenation .wrap {
    padding: 0;
  }
  #plan_detail_pagenation ul {
    gap: 0;
  }
  #plan_detail_pagenation li {
    width: 25.33333333333333vw;
    border-radius: 0;
  }
  #plan_detail_pagenation li a {
    font-size: 2.66666666666667vw;
    border-radius: 0;
    background: none;
    width: calc((100% - (4.8vw + 4px)) - 2px);
    height: 8.26666666666667vw;
    gap: 1vw;
  }
  #plan_detail_pagenation li.prev {
    border-radius: 100px 0 0 100px;
    margin-right: -2px;
  }
  #plan_detail_pagenation li.next {
    border-radius: 0 100px 100px 0;
    margin-left: -2px;
  }
  #plan_detail_pagenation li a::after {
    width: 4.8vw;
    height: 4.8vw;
    right: -4.8vw;
  }
}