@charset "UTF-8";
#dormitoryContent {
  display: grid;
  grid-template-areas: "content02 content01" "content02 content03";
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  width: 100%;
  max-width: 1000px;
  margin: 50px auto;
}

#dormitoryBlock01 {
  grid-area: content01;
  padding-left: 30px;
}

#forTxt {
  font-size: 18px;
  font-weight: 700;
  position: relative;
  padding-left: 28px;
}

#forTxt::before {
  content: "";
  position: absolute;
  width: 19px;
  height: 24px;
  background: url("../image/icon17.png");
  background-repeat: no-repeat;
  background-size: contain;
  top: -3px;
  left: 0;
}

#dormitoryCategory {
  display: flex;
  gap: 10px;
  margin: 15px auto 20px;
}

#dormitoryCategory p.iconExclusive {
  font-size: 13px;
  color: #fefefe;
  background-color: #13bafc;
  letter-spacing: 1px;
  padding: 8px 20px 8px 40px;
  border-radius: 15px;
  position: relative;
}

#dormitoryCategory p.iconExclusive::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 28px;
  background: url("../image/icon01.png");
  background-repeat: no-repeat;
  background-size: contain;
  top: 3px;
  left: 12px;
}

#dormitoryCategory p.iconRecommend {
  font-size: 13px;
  color: #fefefe;
  background-color: #c01ce8;
  letter-spacing: 1px;
  padding: 8px 20px 8px 40px;
  border-radius: 15px;
  position: relative;
}

#dormitoryCategory p.iconRecommend::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 28px;
  background: url("../image/iconRecommendation.png");
  background-repeat: no-repeat;
  background-size: contain;
  top: 3px;
  left: 12px;
}

#dormitoryCategory p.iconMan {
  font-size: 13px;
  color: #fefefe;
  background-color: #14e014;
  letter-spacing: 1px;
  padding: 8px 20px 8px 40px;
  border-radius: 15px;
  position: relative;
}

#dormitoryCategory p.iconMan::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 28px;
  background: url("../image/iconMale.png");
  background-repeat: no-repeat;
  background-size: contain;
  top: 3px;
  left: 12px;
}

#dormitoryCategory p.iconWoman {
  font-size: 13px;
  color: #fefefe;
  background-color: #f54ea5;
  letter-spacing: 1px;
  padding: 8px 20px 8px 40px;
  border-radius: 15px;
  position: relative;
}

#dormitoryCategory p.iconWoman::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 28px;
  background: url("../image/icon02.png");
  background-repeat: no-repeat;
  background-size: contain;
  top: 3px;
  left: 12px;
}

#dormitoryCategory p.iconMix {
  font-size: 13px;
  color: #fefefe;
  background-color: #dbcc12;
  letter-spacing: 1px;
  padding: 8px 20px 8px 40px;
  border-radius: 15px;
  position: relative;
}

#dormitoryCategory p.iconMix::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 28px;
  background: url("../image/iconAnd.png");
  background-repeat: no-repeat;
  background-size: contain;
  top: 3px;
  left: 12px;
}

#dormitoryCategory p.iconMeal {
  font-size: 13px;
  color: #fefefe;
  background-color: #ff9411;
  letter-spacing: 1px;
  padding: 8px 20px 8px 40px;
  border-radius: 15px;
  position: relative;
}

#dormitoryCategory p.iconMeal::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 28px;
  background: url("../image/icon03.png");
  background-repeat: no-repeat;
  background-size: contain;
  top: 3px;
  left: 12px;
}

#dormitoryBlock01 > h3 {
  font-size: 32px;
  margin-bottom: 10px;
}

#dormitoryPrice {
  font-size: 20px;
  font-weight: 600;
}

#dormitoryPrice > span {
  font-size: 30px;
  font-weight: 700;
  font-family: "Noto Sans JP";
}

@media (max-width: 1000px) {
  #dormitoryContent {
    width: 86%;
    grid-template-areas: "content01" "content02" "content03";
    grid-template-columns: 100%;
    grid-template-rows: auto auto auto;
    margin: 40px auto;
  }

  #dormitoryBlock01 {
    width: 100%;
    padding-left: 0;
  }

  #forTxt {
    font-size: 14px;
    padding-left: 20px;
  }

  #forTxt::before {
    width: 14px;
    height: 18px;
  }

  #dormitoryCategory {
    gap: 6px;
    margin: 10px auto 20px;
  }

  #dormitoryCategory p.iconExclusive {
    font-size: 12px;
    padding: 6px 15px 6px 35px;
  }

  #dormitoryCategory p.iconExclusive::before {
    width: 20px;
    height: 26px;
    top: 2px;
  }

  #dormitoryCategory p.iconRecommend {
    font-size: 12px;
    padding: 6px 15px 6px 35px;
  }

  #dormitoryCategory p.iconRecommend::before {
    width: 20px;
    height: 26px;
    top: 2px;
  }

  #dormitoryCategory p.iconMan {
    font-size: 12px;
    padding: 6px 15px 6px 35px;
  }

  #dormitoryCategory p.iconMan::before {
    width: 20px;
    height: 25px;
    top: 2px;
  }

  #dormitoryCategory p.iconWoman {
    font-size: 12px;
    padding: 6px 15px 6px 35px;
  }

  #dormitoryCategory p.iconWoman::before {
    width: 20px;
    height: 25px;
    top: 2px;
  }

  #dormitoryCategory p.iconMix {
    font-size: 12px;
    padding: 6px 15px 6px 35px;
  }

  #dormitoryCategory p.iconMix::before {
    width: 20px;
    height: 25px;
    top: 2px;
  }

  #dormitoryCategory p.iconMeal {
    font-size: 12px;
    padding: 6px 15px 6px 35px;
  }

  #dormitoryCategory p.iconMeal::before {
    width: 20px;
    height: 26px;
    top: 2px;
  }

  #dormitoryBlock01 > h3 {
    font-size: 24px;
  }

  #dormitoryPrice {
    font-size: 15px;
    margin-bottom: 20px;
  }

  #dormitoryPrice > span {
    font-size: 24px;
  }
}
#dormitoryBlock02 {
  grid-area: content02;
  margin-right: auto;
}

#dormitoryBlock02 .dormitorySlider {
  margin-bottom: 20px;
}

#dormitoryBlock02 .dormitorySlider .swiper-slide img {
  width: 100%;
  max-width: 480px;
  height: 320px;
  object-fit: cover;
  border-radius: 20px;
}

#dormitoryBlock02 .sliderThumbnail img {
  border-radius: 10px;
}

#dormitoryBlock02 .sliderThumbnail img:hover {
  cursor: pointer;
}

#dormitoryBlock02 .sliderThumbnail .swiper-slide {
  opacity: .5;
  transition: opacity .5s;
  width: calc(100% / 3);
}

#dormitoryBlock02 .sliderThumbnail .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}

#dormitoryBlock02 .swiper {
  max-width: 480px;
  width: 100%;
}

#dormitoryBlock02 .swiper-slide img {
  height: auto;
  width: 100%;
}

@media (max-width: 1000px) {
  #dormitoryBlock02 {
    margin: auto;
    width: 100%;
  }

  #dormitoryBlock02 .dormitorySlider {
    margin-bottom: 10px;
  }

  #dormitoryBlock02 .dormitorySlider .swiper-slide img {
    max-height: 240px;
    border-radius: 10px;
  }

  #dormitoryBlock02 .sliderThumbnail img {
    border-radius: 5px;
  }
}
#dormitoryBlock02 .swiper-button-prev, .swiper-button-next {
  height: 24px;
  width: 24px;
  top: 55%;
}

#dormitoryBlock02 .swiper-button-prev::after, .swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 24px;
  margin: auto;
  width: 24px;
}

#dormitoryBlock02 .swiper-button-prev::after {
  background-image: url("../image/prevBtn.png");
}

#dormitoryBlock02 .swiper-button-next::after {
  background-image: url("../image/nextBtn.png");
}

#dormitoryBlock02 .swiper-slide img {
  height: auto;
  width: 100%;
}

#dormitoryBlock03 {
  grid-area: content03;
  padding-top: 20px;
  padding-left: 30px;
}

#dormitoryAddress {
  font-size: 13px;
  line-height: 1.5;
  padding-left: 1.8em;
  margin-bottom: 5px;
  position: relative;
}

#dormitoryAddress::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 28px;
  background: url("../image/icon19.png");
  background-repeat: no-repeat;
  background-size: contain;
  top: -2px;
  left: 0;
}

#dormitoryNearest {
  font-size: 13px;
  line-height: 1.5;
  padding-left: 1.8em;
  margin-bottom: 20px;
  position: relative;
}

#dormitoryNearest::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 28px;
  background: url("../image/icon18.png");
  background-repeat: no-repeat;
  background-size: contain;
  top: -1px;
  left: 0;
}

#dormitoryWord {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 10px;
}

#dormitoryWord > p {
  font-size: 12px;
  color: #009944;
  background-color: #e6f3db;
  padding: 6px 15px;
  border-radius: 5px;
}

#dormitoryLink {
  display: flex;
  gap: 10px;
  margin: 40px auto;
}

#dormitoryLink > div > a {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #009944;
  padding: 12px 20px 12px 50px;
  border: solid 2px #009944;
  border-radius: 5px;
  position: relative;
}

div#linkReservation a::after {
  content: "";
  position: absolute;
  width: 42px;
  height: 42px;
  background: url("../image/icon20.png");
  background-repeat: no-repeat;
  background-size: contain;
  top: 0;
  left: 8px;
}

div#linkReservation a:hover {
  filter: opacity(0.7);
}

div#linkContact a::after {
  content: "";
  position: absolute;
  width: 42px;
  height: 42px;
  background: url("../image/icon21.png");
  background-repeat: no-repeat;
  background-size: contain;
  top: 1px;
  left: 8px;
}

div#linkContact a:hover {
  filter: opacity(0.7);
}

div#linkApplication a {
  color: #fefefe;
  background-color: #009944;
}

div#linkApplication a:hover {
  filter: opacity(0.7);
}

div#linkApplication a::after {
  content: "";
  position: absolute;
  width: 42px;
  height: 42px;
  background: url("../image/icon22.png");
  background-repeat: no-repeat;
  background-size: contain;
  top: 0;
  left: 8px;
}

@media (max-width: 1000px) {
  #dormitoryBlock03 {
    padding-left: 0;
  }

  #dormitoryAddress {
    font-size: 12px;
  }

  #dormitoryNearest {
    font-size: 12px;
    margin-bottom: 10px;
  }

  #dormitoryWord {
    gap: 6px;
  }

  #dormitoryWord > p {
    font-size: 10px;
    padding: 5px 12px;
  }

  #dormitoryLink {
    margin: 60px auto 20px;
    gap: 8px;
  }

  #dormitoryLink > div > a {
    font-size: 13px;
    padding: 35px 15px 8px 15px;
  }

  div#linkReservation a::after {
    width: 30px;
    height: 30px;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
  }

  div#linkContact a::after {
    width: 30px;
    height: 30px;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
  }

  div#linkApplication a::after {
    width: 30px;
    height: 30px;
    top: 3px;
    left: 50%;
    transform: translateX(-50%);
  }
}
#waitingDormitory {
  width: 100%;
  max-width: 1000px;
  margin: 50px auto 40px;
  position: relative;
}

#waitingDormitory > h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-left: 32px;
  position: relative;
}

#waitingDormitory > h4::before {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  background: url("../image/icon23.png");
  background-repeat: no-repeat;
  background-size: contain;
  top: -6px;
  left: 0;
}

#waitingDormitory > p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 10px;
}

@media (max-width: 1000px) {
  #waitingDormitory {
    width: 86%;
  }

  #waitingDormitory > h4 {
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 10px;
  }

  #waitingDormitory > h4::before {
    top: -4px;
  }

  #waitingDormitory > p {
    font-size: 12px;
  }
}
.toggle {
  display: none;
}

.Label {
  display: inline-block;
  width: 108px;
  height: 16px;
  color: #009944;
  position: absolute;
  bottom: -0.5em;
  right: 0;
  z-index: 100;
}

.Label:hover {
  cursor: pointer;
}

.Label::before {
  content: "";
  width: 16px;
  height: 16px;
  background-color: #009944;
  border-radius: 8px;
  position: absolute;
  top: -1.5px;
  right: 0.2em;
}

.Label::after {
  content: "もっと詳しく";
  font-size: 13px;
  color: #009944;
  position: absolute;
}

.Label:hover::after {
  color: #434343;
}

.Label > span::before {
  content: "";
  width: 8px;
  height: 1px;
  background-color: #fefefe;
  position: absolute;
  top: 6px;
  right: 6.9px;
}

.Label > span::after {
  content: "";
  width: 1px;
  height: 8px;
  background-color: #fefefe;
  position: absolute;
  top: 2.4px;
  right: 10.5px;
  transition: all 0.6s ease-in-out;
}

.Label, .content {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}

.content {
  height: 0;
  margin-bottom: 10px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.content > p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 10px;
}

.toggle:checked + .Label + .content {
  height: auto;
  transition: all .3s;
}

.toggle:checked + .Label::after {
  content: "閉じる";
  padding-left: 3em;
}

.toggle:checked + .Label > span::after {
  transform: rotate(90deg);
}

@media (max-width: 1000px) {
  .Label {
    width: 80px;
    bottom: -1em;
  }

  .Label::before {
    width: 13px;
    height: 13px;
  }

  .Label::after {
    font-size: 10px;
  }

  .Label > span::before {
    width: 6px;
    top: 4.8px;
    right: 6px;
  }

  .Label > span::after {
    height: 6px;
    top: 2.2px;
    right: 8.8px;
  }

  .content > p {
    font-size: 12px;
  }
}
#dormitoryNewsBlock {
  width: 1000px;
  margin: 50px auto 60px;
}

#dormitoryNewsContent {
  display: flex;
  align-items: center;
  border-top: solid 1px #ddd;
  border-bottom: solid 1px #ddd;
  padding-top: 20px;
  padding-bottom: 20px;
}

#dormitoryNewsTitle {
  width: 10%;
  text-align: center;
}

#dormitoryNewsTitle > p {
  font-size: 15px;
  font-weight: 600;
  position: relative;
}

#dormitoryNewsWord {
  width: 75%;
  display: inline-block;
  display: flex;
  align-items: center;
}

#dormitoryNewsDate {
  width: 14%;
  text-align: center;
}

#dormitoryNewsDate p {
  color: #020202;
}

#dormitoryNewsCategory {
  width: 10%;
  text-align: left;
}

#dormitoryNewsCategory p {
  font-size: 12px;
  color: #009944;
  font-weight: 600;
}

#dormitoryNewsTxt {
  width: 76%;
}

#dormitoryNewsTxt p {
  text-align: left;
  color: #020202;
  width: fit-content;
  position: relative;
}

#dormitoryNewsTxt p::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #434343;
  transform: scale(0, 1);
  transform-origin: bottom left;
  position: absolute;
  bottom: -3px;
  left: 0;
  transition: all 0.6s ease-in-out;
}

#dormitoryNewsWord:hover #dormitoryNewsTxt p::after {
  transform: scale(1, 1);
}

#dormitoryNewsLink {
  width: 15%;
  text-align: right;
}

#dormitoryNewsLink p {
  position: relative;
}

#dormitoryNewsLink p::after {
  content: "";
  width: 55%;
  height: 1px;
  background-color: #009944;
  bottom: -3px;
  left: 30%;
  position: absolute;
  transform: scale(0, 1);
  transform-origin: bottom left;
  transition: all 0.6s ease-in-out;
}

#dormitoryNewsLink p:hover::after {
  transform: scale(1, 1);
}

#dormitoryNewsLink p a {
  font-size: 13px;
  color: #009944;
  display: inline-block;
  position: relative;
  padding-right: 2em;
}

#dormitoryNewsLink p a::before {
  content: "";
  width: 16px;
  height: 16px;
  background-color: #009944;
  border-radius: 8px;
  position: absolute;
  right: 2px;
  top: -2px;
}

#dormitoryNewsLink p a::after {
  content: "";
  width: 4px;
  height: 4px;
  border-bottom: solid 1px #fefefe;
  border-right: solid 1px #fefefe;
  position: absolute;
  right: 8.2px;
  top: 3.2px;
  transform: rotate(-45deg);
}

@media (max-width: 1000px) {
  #dormitoryNewsBlock {
    width: 86%;
    margin: 40px auto 50px;
  }

  #dormitoryNewsContent {
    flex-direction: column;
  }

  #dormitoryNewsTitle {
    width: 100%;
  }

  #dormitoryNewsTitle > p {
    font-size: 16px;
    padding-bottom: 10px;
  }

  #dormitoryNewsWord {
    width: 100%;
    flex-wrap: wrap;
  }

  #dormitoryNewsDate {
    width: 25%;
    text-align: left;
  }

  #dormitoryNewsDate p {
    font-size: 12px;
    padding-bottom: 5px;
  }

  #dormitoryNewsCategory {
    width: 30%;
    text-align: left;
  }

  #dormitoryNewsCategory p {
    font-size: 11px;
    padding-bottom: 5px;
  }

  #dormitoryNewsTxt {
    width: 100%;
  }

  #dormitoryNewsLink {
    width: 100%;
  }

  #dormitoryNewsTxt p {
    font-size: 12px;
    line-height: 1.5;
  }

  #dormitoryNewsLink p a {
    font-size: 10px;
  }

  #dormitoryNewsLink p a::before {
    width: 13px;
    height: 13px;
  }

  #dormitoryNewsLink p a::after {
    width: 3px;
    height: 3px;
    top: 2.6px;
    right: 7px;
  }
}
#dormitoryDetailBlock {
  padding: 80px 0;
  background-color: #009944;
}

.dormitoryTabs {
  width: 1000px;
  margin: 40px auto 0;
}

.tabMenu {
  display: flex;
  list-style: none;
  padding: 0;
  position: sticky;
  top: 150px;
  z-index: 20;
  border-bottom: solid #fefefe 5px;
}

.tabMenu li {
  font-size: 15px;
  color: #fefefe;
  background-color: #009944;
  font-weight: 600;
  letter-spacing: 0.1em;
  width: 400px;
  text-align: center;
  cursor: pointer;
  box-sizing: border-box;
  position: relative;
  top: 0;
  padding-left: 2px;
}

.tabMenu li > span {
  display: inline-block;
  width: 100%;
  height: 100%;
  padding: 14px 0 15px;
  border: solid 2px #fefefe;
  border-bottom: none;
  border-radius: 20px 20px 0 0;
  color: #fefefe;
  background-color: #009944;
}

.tabMenu li:first-child {
  padding-left: 0;
}

.tabMenu li.tabActive {
  background-color: #009944;
}

.tabMenu li.tabActive > span {
  color: #434343;
  background-color: #fefefe;
}

.tabContent {
  background-color: #fefefe;
  border-radius: 0 0 20px 20px;
}

.tabContent > div {
  width: 100%;
  padding: 70px 100px;
  box-sizing: border-box;
}

.tabContent > div:nth-child(2), .tabContent > div:nth-child(3) {
  display: none;
}

@media (max-width: 1000px) {
  #dormitoryDetailBlock {
    padding: 20px 0 50px;
  }

  .dormitoryTabs {
    width: 90%;
    margin: 30px auto 0;
  }

  .tabMenu li {
    font-size: 12px;
    width: 50%;
  }

  .tabContent > div {
    padding: 50px 50px;
  }
}
@media (max-width: 900px) {
  .tabMenu {
    top: 90px;
  }
}
@media (max-width: 800px) {
  .tabContent > div {
    padding: 40px 20px;
  }
}
#detailFirstBlock {
  display: flex;
  gap: 5%;
  border-bottom: solid 1px #ddd;
  padding-bottom: 30px;
  margin-bottom: 40px;
}

#detailFirstBlock > div:first-child {
  width: 50%;
}

#detailFirstBlock > div:first-child h2 {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 20px;
}

#detailFirstBlock > div:first-child h3 {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 10px;
}

#detailFirstBlock > div:first-child h4 {
  font-size: 18px;
  color: #434343;
  line-height: 1.4;
  font-weight: 600;
  margin-bottom: 20px;
}

#detailFirstBlock > div:first-child h4 > span {
  color: #009944;
}

#detailFirstBlock > div:first-child p {
  font-size: 14px;
  color: #434343;
  line-height: 1.5;
  margin-bottom: 20px;
}

#detailFirstBlock > div:first-child ul {
  margin-bottom: 20px;
}

#detailFirstBlock > div:first-child ul > li {
  line-height: 1.5;
}

#detailFirstBlock > div:first-child table td {
  padding-top: 5px;
  padding-bottom: 5px;
}

#detailFirstBlock > div:last-child {
  width: 45%;
}

#detailFirstBlock > div img {
  width: 100%;
}

#detailFirstBlock div.youtubeList iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}

@media (max-width: 1000px) {
  #detailFirstBlock {
    flex-direction: column;
  }

  #detailFirstBlock > div:first-child {
    width: 100%;
  }

  #detailFirstBlock > div:last-child {
    width: 100%;
  }

  #detailFirstBlock > div:first-child h2 {
    font-size: 13px;
    margin-bottom: 15px;
  }

  #detailFirstBlock > div:first-child h3 {
    font-size: 13px;
    margin-bottom: 8px;
  }

  #detailFirstBlock > div:first-child h4 {
    font-size: 15px;
    margin-bottom: 15px;
  }

  #detailFirstBlock > div:first-child p {
    font-size: 11px;
    line-height: 1.6;
    margin-bottom: 30px;
  }

  #detailFirstBlock > div:first-child ul > li {
    font-size: 11px;
  }

  #detailFirstBlock > div:first-child table td {
    font-size: 11px;
  }
}
#detailSecondBlock {
  border-bottom: solid 1px #ddd;
  padding-bottom: 30px;
  margin-bottom: 40px;
}

#detailSecondBlock div h5 {
  font-size: 20px;
  margin-bottom: 20px;
}

#pointFlex {
  display: flex;
  margin-bottom: 50px;
}

#pointFlex > div {
  width: 50%;
}

@media (max-width: 1000px) {
  #detailSecondBlock {
    padding-bottom: 10px;
  }

  #pointFlex {
    flex-direction: column;
    margin-bottom: 0;
  }

  #pointFlex > div {
    width: 100%;
  }

  #detailSecondBlock div h5 {
    font-size: 15px;
    margin-bottom: 10px;
  }
}
div.pointImgBlock {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  column-gap: 10px;
}

div.pointImgBlock div {
  width: 110px;
  height: 110px;
  border: solid 2px #009944;
  border-radius: 5px;
  text-align: center;
  margin-bottom: 10px;
  box-sizing: border-box;
}

div.pointImgBlock div img {
  width: auto;
  height: 60px;
  margin-top: 13px;
  margin-bottom: 10px;
  vertical-align: bottom;
  object-fit: contain;
}

div.pointImgBlock div p {
  font-size: 10px;
  color: #009944;
  font-weight: 600;
  text-align: center;
}

@media (max-width: 1000px) {
  div.pointImgBlock {
    margin-bottom: 30px;
  }

  div.pointImgBlock div {
    width: 30%;
    max-width: 120px;
  }
}
@media (max-width: 800px) {
  div.pointImgBlock div {
    width: 90px;
    height: 90px;
  }

  div.pointImgBlock div img {
    height: 50px;
    margin-top: 9px;
    margin-bottom: 7px;
  }

  div.pointImgBlock div p {
    font-size: 9px;
  }
}
#detailThirdBlock {
  border-bottom: solid 1px #ddd;
  padding-bottom: 30px;
  margin-bottom: 40px;
}

#detailThirdBlock h5 {
  font-size: 20px;
  margin-bottom: 20px;
}

#floorPlanFlex {
  display: flex;
  gap: 5%;
}

#floorPlanFlex > div:first-child {
  width: 43%;
}

#floorPlanFlex > div:first-child img {
  width: 100%;
  margin-bottom: 10px;
}

#floorPlanFlex > div:first-child p {
  font-size: 12px;
}

#floorPlanFlex > div:last-child {
  width: 52%;
}

#floorPlanFlex > div:last-child h6 {
  font-size: 16px;
  margin-bottom: 20px;
  color: #434343;
}

#floorPlanFlex > div:last-child #equipmentBlock {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

#floorPlanFlex > div:last-child #equipmentBlock > p {
  font-size: 11px;
  border: solid 1px #434343;
  width: 120px;
  height: 30px;
  line-height: 1.2;
  text-align: center;
  border-radius: 5px;
  margin-right: 10px;
  margin-bottom: 10px;
  position: relative;
}

#floorPlanFlex > div:last-child #equipmentBlock > p > span {
  display: block;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}

#floorPlanFlex > div:last-child #equipmentText {
  margin: 20px 0 0;
}

#floorPlanFlex > div:last-child #equipmentText > p {
  font-size: 13px;
  line-height: 1.5;
  padding-bottom: 10px;
}

@media (max-width: 1000px) {
  #detailThirdBlock h5 {
    font-size: 15px;
  }

  #floorPlanFlex {
    flex-direction: column;
    gap: 0;
  }

  #floorPlanFlex > div:first-child {
    width: 300px;
    margin-bottom: 50px;
  }

  #floorPlanFlex > div:last-child {
    width: 100%;
  }

  #floorPlanFlex > div:first-child img {
    width: 100%;
    object-fit: contain !important;
  }

  #floorPlanFlex > div:last-child h6 {
    font-size: 15px;
  }

  #floorPlanFlex > div:last-child #equipmentBlock > p {
    font-size: 9px;
    letter-spacing: 0;
    width: 90px;
    height: 26px;
    margin-right: 6px;
    margin-bottom: 6px;
  }

  #floorPlanFlex > div:last-child #equipmentText > p {
    font-size: 11px;
  }
}
#floorPlanFlex > div:first-child div.floorSlider {
  margin-bottom: 20px;
}

#floorPlanFlex > div:first-child div.floorThumbnail:hover {
  cursor: pointer;
}

@media (max-width: 1000px) {
  #floorPlanFlex > div:first-child {
    width: 86%;
    max-width: 400px;
  }

  #floorPlanFlex > div:first-child div.floorSlider {
    margin-bottom: 10px;
  }
}
#detailForthBlock {
  border-bottom: solid 1px #ddd;
  padding-bottom: 30px;
  margin-bottom: 40px;
}

#detailForthBlock h5 {
  font-size: 20px;
  margin-bottom: 20px;
}

#accessFlex {
  display: flex;
  gap: 5%;
}

#accessFlex div:first-child {
  width: 50%;
}

#accessFlex div:last-child {
  width: 45%;
}

#accessFlex div:last-child h6 {
  font-size: 16px;
  margin-bottom: 20px;
  color: #434343;
}

#accessFlex div:last-child dl {
  margin-bottom: 30px;
  width: 100%;
  line-height: 1.6;
}

#accessFlex div:last-child dl > dt {
  display: inline-block;
  width: 40%;
}

#accessFlex div:last-child dl > dd {
  display: inline-block;
  width: 40%;
}

@media (max-width: 1000px) {
  #detailForthBlock h5 {
    font-size: 15px;
  }

  #accessFlex {
    flex-direction: column;
    gap: 0;
  }

  #accessFlex div:first-child {
    width: 100%;
    margin-bottom: 30px;
  }

  #accessFlex div:first-child > iframe {
    width: 100% !important;
  }

  #accessFlex div:last-child {
    width: 100%;
  }

  #accessFlex div:last-child h6 {
    font-size: 15px;
  }

  #accessFlex div:last-child dl > dt {
    font-size: 11px;
    width: 35%;
  }

  #accessFlex div:last-child dl > dd {
    font-size: 11px;
    width: 63%;
  }
}
#detailFiveBlock {
  margin: auto;
}

#detailFiveBlock h5 {
  font-size: 20px;
  margin-bottom: 20px;
}

#overviewFlex {
  display: flex;
}

#overviewFlex div:first-child {
  width: 50%;
}

#overviewFlex div:last-child {
  width: 50%;
}

#overviewFlex div dl {
  margin-bottom: 30px;
  width: 100%;
  line-height: 1.6;
}

#overviewFlex div dl > dt {
  display: inline-block;
  width: 30%;
  margin-bottom: 10px;
}

#overviewFlex div dl > dd {
  display: inline-block;
  width: 69%;
  vertical-align: top;
  margin-bottom: 10px;
}

@media (max-width: 1000px) {
  #overviewFlex {
    flex-direction: column;
  }

  #detailFiveBlock h5 {
    font-size: 15px;
  }

  #overviewFlex div:first-child {
    width: 100%;
  }

  #overviewFlex div:last-child {
    width: 100%;
  }

  #overviewFlex div dl > dt {
    font-size: 11px;
  }

  #overviewFlex div dl > dd {
    font-size: 11px;
    width: 68%;
  }
}
#recommendBlock {
  padding: 80px 0;
}

#recommendBlock > h3 {
  font-size: 48px;
  color: #020202;
  letter-spacing: 0.03em;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  text-align: center;
  margin-bottom: 10px;
  position: relative;
}

#recommendBlock > h4 {
  font-size: 18px;
  color: #020202;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 50px;
}

@media (max-width: 1000px) {
  #recommendBlock {
    padding: 50px 0 50px;
  }

  #recommendBlock > h3 {
    font-size: 40px;
  }

  #recommendBlock > h4 {
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0;
    margin-bottom: 30px;
  }
}
div.recommendContent {
  width: 300px;
}

div.recommendContent a {
  transition: all 0.6s ease-in-out;
}

div.recommendContent a:hover {
  filter: opacity(0.7);
}

div.recommendContent div.recommendPhoto img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
}

div.recommendContent div.recommendInfo {
  background-color: #f1f1f1;
  padding: 20px;
  border-radius: 0 0 20px 20px;
}

div.recommendContent div.recommendInfo p.recommendName {
  font-size: 16px;
  color: #434343;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
}

div.recommendContent div.recommendInfo p.recommendTxt {
  font-size: 13px;
  color: #434343;
  line-height: 1.4;
  margin-bottom: 10px;
}

div.recommendContent div.recommendInfo div.recommendWord {
  display: flex;
  flex-wrap: wrap;
}

div.recommendContent div.recommendInfo div.recommendWord > p {
  font-size: 11px;
  color: #009944;
  background-color: #e6f3db;
  margin-right: 5px;
  margin-bottom: 5px;
  padding: 5px 10px;
}

@media (max-width: 1000px) {
  div.recommendContent {
    width: 280px;
  }

  div.recommendContent div.recommendPhoto img {
    height: 160px;
  }

  div.recommendContent div.recommendInfo p.recommendName {
    font-size: 15px;
  }

  div.recommendContent div.recommendInfo p.recommendTxt {
    font-size: 11px;
  }

  div.recommendContent div.recommendInfo div.recommendWord > p {
    font-size: 10px;
  }
}
h3#priceTitle {
  font-size: 24px;
  color: #434343;
  padding-bottom: 10px;
  border-bottom: solid 1px #009944;
  margin-bottom: 50px;
}

h4.priceSubTitle {
  font-size: 24px;
  font-weight: 600;
  color: #434343;
}

#priceFirstBlock {
  display: flex;
  gap: 5%;
}

#priceFirstBlock > div h5 {
  font-size: 20px;
  font-weight: 600;
  color: #434343;
  margin-top: 30px;
  margin-bottom: 20px;
}

div#priceTable01 {
  width: 50%;
}

div#priceTable01 dl {
  width: 100%;
  display: block;
  background-color: #e6f3db;
  border-radius: 5px;
  padding: 10px 15px;
  box-sizing: border-box;
  margin-bottom: 10px;
}

div#priceTable01 dl dt {
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  width: 69%;
  vertical-align: middle;
  box-sizing: border-box;
}

div#priceTable01 dl dt > span {
  font-size: 12px;
  color: #009944;
  border: solid 1px #009944;
  padding: 3px 4px 3px 10px;
  border-radius: 5px;
  vertical-align: middle;
  margin-left: 15px;
  position: relative;
  bottom: 1px;
}

div#priceTable01 dl dd {
  font-size: 15px;
  font-weight: 400;
  display: inline-block;
  width: 30%;
  vertical-align: middle;
  box-sizing: border-box;
}

div#priceTable01 dl dd > span {
  font-size: 20px;
  font-family: "Noto Sans JP";
}

@media (max-width: 1000px) {
  h3#priceTitle {
    font-size: 16px;
  }

  h4.priceSubTitle {
    font-size: 16px;
  }

  #priceFirstBlock {
    flex-direction: column;
    gap: 0;
  }

  #priceFirstBlock > div h5 {
    font-size: 16px;
  }

  div#priceTable01 {
    width: 100%;
  }

  div#priceTable01 dl {
    padding: 8px 10px;
  }

  div#priceTable01 dl dt {
    font-size: 13px;
    width: 69%;
  }

  div#priceTable01 dl dt > span {
    font-size: 10px;
    padding: 2px 0 2px 6px;
    margin-left: 7px;
  }

  div#priceTable01 dl dd {
    font-size: 11px;
    width: 29%;
  }

  div#priceTable01 dl dd > span {
    font-size: 16px;
  }
}
div#priceTable02 {
  width: 45%;
}

div#priceTable02 dl {
  width: 100%;
  font-size: 0;
}

div#priceTable02 dl dt {
  width: 34%;
  font-size: 14px;
  color: #434343;
  background-color: #e6f3db;
  outline: solid 1px #ddd;
  padding: 10px;
  display: inline-block;
  box-sizing: border-box;
}

div#priceTable02 dl dd {
  width: 64%;
  font-size: 14px;
  color: #434343;
  background-color: #fefefe;
  outline: solid 1px #ddd;
  padding: 10px;
  display: inline-block;
  box-sizing: border-box;
}

div#priceTable02 div.priceInfo {
  margin-top: 30px;
}

div#priceTable02 div.priceInfo > p {
  font-size: 11px;
  font-weight: 300;
  color: #777777;
  line-height: 1.4;
}

@media (max-width: 1000px) {
  div#priceTable02 {
    width: 100%;
  }

  div#priceTable02 dl dt {
    font-size: 12px;
  }

  div#priceTable02 dl dd {
    font-size: 12px;
  }

  div#priceTable02 div.priceInfo > p {
    font-size: 10px;
  }
}
div#pricePlan {
  margin-top: 50px;
  margin-bottom: 60px;
  position: relative;
}

div#pricePlan > h5 {
  font-size: 20px;
  color: #434343;
  margin-bottom: 20px;
  position: relative;
  padding-left: 32px;
}

div#pricePlan > h5::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 36px;
  background: url("../image/dormitory/iconPlan.png");
  background-size: contain;
  background-repeat: no-repeat;
  top: -10px;
  left: 0;
}

div#pricePlan > p {
  font-size: 15px;
  color: #434343;
  line-height: 1.4;
}

div#pricePlan div.planContent p {
  font-size: 15px;
  color: #434343;
  line-height: 1.4;
}

div.planContent {
  height: 0;
  margin-bottom: 10px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

div.planContent > p {
  font-size: 15px;
  color: #434343;
  line-height: 1.4;
  margin-bottom: 10px;
}

.toggle:checked + .Label + div.planContent {
  height: auto;
  transition: all .3s;
}

@media (max-width: 1000px) {
  div#pricePlan > h5 {
    font-size: 16px;
    line-height: 1.4;
  }

  div#pricePlan > p {
    font-size: 12px;
    margin-bottom: 10px;
  }

  div#pricePlan div.planContent p {
    font-size: 12px;
  }
}
#priceSecondBlock {
  display: flex;
  gap: 5%;
  margin-top: 30px;
}

#priceSecondBlock > div:first-child {
  width: 52%;
}

#priceSecondBlock > div:last-child {
  width: 42%;
}

@media (max-width: 1000px) {
  #priceSecondBlock {
    flex-direction: column;
    gap: 0;
    margin-top: 20px;
  }

  #priceSecondBlock > div:first-child {
    width: 100%;
  }

  #priceSecondBlock > div:last-child {
    width: 100%;
  }
}
div#priceTable03 {
  width: 100%;
  margin-bottom: 40px;
}

div#priceTable03 dl {
  width: 100%;
  font-size: 0;
}

div#priceTable03 dl dt {
  width: 25%;
  font-size: 14px;
  color: #434343;
  background-color: #e6f3db;
  outline: solid 1px #ddd;
  padding: 10px;
  display: inline-block;
  box-sizing: border-box;
  vertical-align: top;
  height: 36px;
}

div#priceTable03 dl dt.largeHeight, div#priceTable03 dl dd.largeHeight {
  height: 64px;
  line-height: 64px;
  vertical-align: bottom;
  align-items: center;
}

div#priceTable03 dl dt.largeHeight {
  line-height: 3;
}

div#priceTable03 dl dd {
  width: 74%;
  font-size: 12px;
  color: #434343;
  background-color: #fefefe;
  outline: solid 1px #ddd;
  padding: 10px;
  display: inline-block;
  box-sizing: border-box;
  vertical-align: top;
  height: 36px;
}

div#priceTable03 dl dd > span {
  font-size: 15px;
  font-family: "Noto Sans JP";
}

div#priceTable03 dl dd > div {
  display: flex;
  flex-wrap: wrap;
}

div#priceTable03 dl dd > div > p {
  width: 50%;
  font-size: 12px;
  display: inline-block;
  padding-left: 0.5em;
  line-height: 1.4;
}

div#priceTable03 dl dd > div > p > span {
  font-size: 15px;
  font-family: "Noto Sans JP";
  padding-left: 0.6em;
}

@media (max-width: 1000px) {
  div#priceTable03 dl dt {
    font-size: 12px;
    height: 28px;
    line-height: 28px;
    padding: 0 6px;
  }

  div#priceTable03 dl dt.largeHeight, div#priceTable03 dl dd.largeHeight {
    height: 48px;
    line-height: 48px;
  }

  div#priceTable03 dl dd.largeHeight {
    padding-top: 4px;
  }

  div#priceTable03 dl dd {
    font-size: 10px;
    height: 28px;
    line-height: 28px;
    padding: 0 6px;
  }

  div#priceTable03 dl dd > span {
    font-size: 13px;
  }

  div#priceTable03 dl dd > div > p {
    font-size: 9px;
    padding-left: 0.3em;
  }

  div#priceTable03 dl dd > div > p > span {
    font-size: 13px;
    padding-left: 0.4em;
  }
}
#priceSecondBlock > div:first-child > h5 {
  font-size: 20px;
  color: #434343;
}

@media (max-width: 1000px) {
  #priceSecondBlock > div:first-child > h5 {
    font-size: 16px;
  }
}
div#priceTable04 {
  width: 100%;
  margin-top: 30px;
  margin-bottom: 10px;
}

div#priceTable04 dl {
  width: 100%;
  font-size: 0;
}

div#priceTable04 dl dt {
  width: 70%;
  font-size: 14px;
  color: #434343;
  background-color: #e6f3db;
  outline: solid 1px #ddd;
  padding: 11px 10px;
  display: inline-block;
  box-sizing: border-box;
  height: 36px;
}

div#priceTable04 dl dt > span {
  font-size: 12px;
}

div#priceTable04 dl dd {
  width: 29%;
  font-size: 12px;
  color: #434343;
  background-color: #fefefe;
  outline: solid 1px #ddd;
  padding: 10px;
  display: inline-block;
  box-sizing: border-box;
  height: 36px;
}

div#priceTable04 dl dd > span {
  font-size: 14px;
  font-family: "Noto Sans JP";
}

@media (max-width: 1000px) {
  div#priceTable04 {
    margin-top: 20px;
    margin-bottom: 40px;
  }

  div#priceTable04 dl dt {
    font-size: 12px;
    padding: 0;
    padding-left: 8px;
    line-height: 28px;
    height: 28px;
  }

  div#priceTable04 dl dt > span {
    font-size: 10px;
  }

  div#priceTable04 dl dd {
    font-size: 10px;
    padding: 0;
    padding-left: 8px;
    line-height: 28px;
    height: 28px;
  }

  div#priceTable04 dl dd > span {
    font-size: 12px;
  }
}
#priceSecondBlock > div:last-child > h5 {
  font-size: 20px;
  color: #434343;
  margin-bottom: 20px;
  position: relative;
  padding-left: 32px;
}

#priceSecondBlock > div:last-child > h5::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 36px;
  background: url("../image/dormitory/iconPlan.png");
  background-size: contain;
  background-repeat: no-repeat;
  top: -10px;
  left: 0;
}

#priceSecondBlock > div:last-child > div {
  position: relative;
}

#priceSecondBlock > div:last-child > div p {
  color: #434343;
  line-height: 1.5;
}

#priceSecondBlock div.yearsContent p {
  font-size: 15px;
  color: #434343;
  line-height: 1.4;
}

div.yearsContent {
  height: 0;
  margin-bottom: 10px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

div.yearsContent > p {
  font-size: 15px;
  color: #434343;
  line-height: 1.4;
  margin-bottom: 10px;
}

.toggle:checked + .Label + div.yearsContent {
  height: auto;
  transition: all .3s;
}

#priceSecondBlock > div:last-child > div Label {
  bottom: -2em;
}

@media (max-width: 1000px) {
  #priceSecondBlock > div:last-child > h5 {
    font-size: 16px;
  }

  #priceSecondBlock > div:last-child > div p {
    font-size: 12px;
    margin-bottom: 20px;
  }

  #priceSecondBlock div.yearsContent p {
    font-size: 12px;
  }

  div.yearsContent > p {
    font-size: 12px;
  }

  #priceSecondBlock > div:last-child > div Label {
    bottom: -1em;
  }
}
#bubbleTitleFlex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

#bubbleTitleFlex > h4 {
  font-size: 24px;
  font-weight: 600;
}

#bubbleTitleLink {
  position: relative;
}

#bubbleTitleLink::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #009944;
  left: 0;
  bottom: -4px;
  position: absolute;
  transition: all 0.6s ease-in-out;
  transform: scale(0, 1);
  transform-origin: left bottom;
}

#bubbleTitleLink:hover::after {
  transform: scale(1, 1);
}

#bubbleTitleLink a {
  color: #009944;
  font-size: 13px;
  padding-right: 1.6em;
  display: inline-block;
  position: relative;
}

#bubbleTitleLink a::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 8px;
  background-color: #009944;
  top: -2px;
  right: 0;
  position: absolute;
}

#bubbleTitleLink a::after {
  content: "";
  width: 4px;
  height: 4px;
  border-bottom: solid 1px #fefefe;
  border-right: solid 1px #fefefe;
  position: absolute;
  top: 3.5px;
  right: 6.5px;
  transform: rotate(-45deg);
}

#bubbleFlex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 40px;
}

#bubbleFlex > div {
  width: 380px;
  padding: 30px;
  margin-bottom: 40px;
  border: solid 1px #009944;
  border-radius: 10px;
  box-sizing: border-box;
  position: relative;
}

#bubbleFlex > div::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 40px;
  border-style: solid;
  border-width: 18px 10px 0 10px;
  border-color: #009944 transparent transparent;
  translate: -50% 100%;
}

#bubbleFlex > div::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 43px;
  border-style: solid;
  border-width: 16px 8.6px 0 8.6px;
  border-color: #fefefe transparent transparent;
  translate: -50% 100%;
}

#bubbleFlex > div p.bubbleTxt {
  font-size: 13px;
  color: #434343;
  line-height: 1.5;
  margin-bottom: 20px;
}

#bubbleFlex > div p.bubbleName {
  font-size: 11px;
  color: #777777;
  line-height: 1.4;
}

@media (max-width: 1000px) {
  #bubbleFlex {
    column-gap: 4%;
  }

  #bubbleFlex > div {
    width: 48%;
  }
}
@media (max-width: 800px) {
  #bubbleTitleFlex > h4 {
    font-size: 16px;
  }

  #bubbleTitleLink a {
    font-size: 10px;
    padding-right: 1.6em;
  }

  #bubbleTitleLink a::before {
    width: 13px;
    height: 13px;
    top: -1px;
  }

  #bubbleTitleLink a::after {
    width: 3px;
    height: 3px;
    right: 5px;
  }

  #bubbleFlex > div {
    width: 100%;
    padding: 20px;
  }
}
