@charset "UTF-8";
/* Conference Room Main Styles */
main.conference-room {
  background-image: url("../pic_kaigi/background.jpg");
  background-size: 100% auto;
  background-position: top center;
  background-repeat: repeat-y;
  color: #5F4F34;
}

/* Main Visual */
#bl figure {
  margin: 0;
  padding: 0;
}
#bl figure picture {
  display: block;
  width: 100%;
}
#bl figure picture img {
  width: 100%;
  height: auto;
  display: block;
}

/* Common Styles */
.sp-only {
  display: block;
}

.pc-only {
  display: none;
}

.section-title {
  font-size: 24px;
  font-weight: 600;
  color: #455851;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.6;
}

.note {
  font-size: 14px;
  color: #666;
  margin-top: 10px;
}

.container {
  padding: 0 30px 50px;
}

section {
  padding-top: 60px;
}

p {
  font-size: 16px;
  line-height: 1.8rem;
}

/* Message Section */
#message .message-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
#message .message-text {
  /* text-align: center; */
  padding: 0 30px;
}
#message h1 {
  font-size: 25px;
  font-weight: 600;
  color: #455851;
  line-height: 1.6;
  margin-bottom: 20px;
}
#message .description {
  font-size: 16px;
  line-height: 1.8;
}
#message .description span {
  display: block;
}
#message .message-image {
  width: 100%;
  overflow: hidden;
}
#message .message-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Fade in up animation */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.fade-in-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Features Section */
#features {
  background-image: url("../pic_kaigi/plan_background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#features .feature .lead {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 50px;
}
#features .feature .features-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 80px;
}
#features .feature .features-grid .feature-item {
  background: white;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
#features .feature .features-grid .feature-item .feature-image {
  width: 100%;
  height: auto;
  overflow: hidden;
}
#features .feature .features-grid .feature-item .feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#features .feature .features-grid .feature-item .feature-content {
  padding: 40px 30px 30px;
}
#features .feature .features-grid .feature-item .feature-content h3 {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
  color: #455851;
}
#features .feature .features-grid .feature-item .feature-content p {
  line-height: 1.7;
  color: #5F4F34;
}
#features .plan .plan-header {
  background: #ACA47D;
  padding: 20px 20px;
  text-align: center;
  margin-bottom: 50px;
}
#features .plan .plan-header h2 {
  color: white;
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.05em;
}
#features .plan .plan-pricing {
  text-align: center;
  margin-bottom: 50px;
}
#features .plan .plan-pricing .plan-price {
  font-size: 20px;
  color: #5F4F34;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px dotted #5F4F34;
}
#features .plan .plan-pricing .plan-price .price-amount {
  font-size: 28px;
  font-weight: bold;
  color: #5F4F34;
  padding-left: 10px;
}
#features .plan .plan-pricing .plan-price .price-yen {
  font-size: 16px;
  font-weight: 600;
}
#features .plan .plan-pricing .plan-price .plan-condition {
  font-size: 12px;
}
#features .plan .plan-pricing .plan-capacity {
  font-size: 20px;
  color: #5F4F34;
  margin-top: 10px;
}
#features .plan .plan-pricing .plan-capacity .capacity-number {
  font-size: 28px;
  font-weight: bold;
  margin: 0 5px;
}
#features .plan .plan-pricing .note {
  margin-top: 10px;
  color: #5F4F34;
}
#features .plan .plan-includes {
  margin-bottom: 80px;
}
#features .plan .plan-includes .include-item {
  text-align: center;
  margin-bottom: 25px;
  position: relative;
}
#features .plan .plan-includes .include-item:not(:last-child)::after {
  content: "+";
  display: block;
  font-size: 45px;
  font-weight: 600;
  color: #f6d8b9;
  margin: 15px 0 10px;
  text-align: center;
}
#features .plan .plan-includes .include-item:last-child {
  margin-bottom: 0;
}
#features .plan .plan-includes .include-item img {
  width: 75%;
  /* height: auto;
  display: block; */
}
#features .plan .plan-includes .include-item .include-label {
  font-size: 18px;
  color: #5F4F34;
  margin: 10px 0 0;
  font-weight: 500;
}
#features .plan .plan-includes .include-item .include-label span {
  font-size: 13px;
}
#features .plan .plan-schedule {
  margin-bottom: 50px;
}
#features .plan .plan-schedule .schedule {
  position: relative;
}
#features .plan .plan-schedule .schedule::before {
  position: absolute;
  background-color: #8B7355;
  content: "";
  top: 0;
  left: 6.6em;
  width: 1px;
  height: 100%;
}
#features .plan .plan-schedule .schedule ul {
  padding: 0px;
  margin: 0px;
  list-style: none;
}
#features .plan .plan-schedule .schedule li {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}
#features .plan .plan-schedule .schedule li + li {
  margin-top: 2em;
}
#features .plan .plan-schedule .schedule_time {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 5em;
  height: 2em;
  border-radius: 3px;
  background-color: #8B7355;
  color: #fff;
  text-align: center;
}
#features .plan .plan-schedule .schedule_time::before {
  position: absolute;
  width: 0.5em;
  height: 0.5em;
  z-index: -1;
  background-color: #8B7355;
  content: "";
  top: 50%;
  right: 0px;
  transform: translateX(50%) translateY(-50%) rotate(45deg);
}
#features .plan .plan-schedule .schedule_time::after {
  position: absolute;
  width: 1em;
  height: 1em;
  border: 2px solid #fff;
  border-radius: 50%;
  background-color: #8B7355;
  content: "";
  top: 50%;
  left: 6em;
  transform: translateY(-50%);
}
#features .plan .plan-schedule .schedule_content {
  background: white;
  border-radius: 3px;
  padding: 20px;
  margin: 0px 0px 0px 3em;
  width: calc(100% - 10em);
}
#features .plan .plan-schedule .schedule_content p span {
  display: block;
  font-size: 13px;
  line-height: 20px;
}
#features .plan .plan-schedule .schedule_content p:not(:last-child) {
  border-bottom: 1px dotted;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
#features .plan .plan-schedule .schedule_content .morning,
#features .plan .plan-schedule .schedule_content .evening,
#features .plan .plan-schedule .schedule_content .night {
  padding-left: 35px;
  position: relative;
}
#features .plan .plan-schedule .schedule_content .morning::before,
#features .plan .plan-schedule .schedule_content .evening::before,
#features .plan .plan-schedule .schedule_content .night::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 27px;
  height: 27px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
#features .plan .plan-schedule .schedule_content .morning::before {
  background-image: url("../pic_kaigi/icon_morning.png");
}
#features .plan .plan-schedule .schedule_content .evening::before {
  background-image: url("../pic_kaigi/icon_evening.png");
}
#features .plan .plan-schedule .schedule_content .night::before {
  background-image: url("../pic_kaigi/icon_night.png");
}
#features .plan .plan-description {
  line-height: 2rem;
  margin-bottom: 30px;
}
#features .plan .plan-cta {
  max-width: 300px;
  margin: 0 auto;
}
#features .plan .plan-cta .plan-cta-button {
  display: block;
  background: #4A5F3D;
  color: white;
  text-align: center;
  padding: 30px 0px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
#features .plan .plan-cta .plan-cta-button:hover {
  background: #3a4f2d;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

/* Pricing Section */
#pricing {
  padding: 50px 20px;
  margin: 20px;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
}
#pricing .pricing-table {
  margin-bottom: 30px;
}
#pricing .style-info {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
#pricing .style-info h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}
#pricing .style-info ul {
  list-style: none;
  padding: 0;
  margin-bottom: 10px;
}
#pricing .style-info li {
  font-size: 14px;
  line-height: 1.8;
  padding: 5px 0;
}

#introduction .intro-image {
  margin-bottom: 50px;
}
#introduction .intro-swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 40px;
}
#introduction .intro-swiper .swiper-wrapper {
  display: flex;
}
#introduction .intro-swiper .swiper-wrapper .swiper-slide {
  width: 100%;
  flex-shrink: 0;
  text-align: center;
}
#introduction .intro-swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  display: block;
}
#introduction .intro-swiper .swiper-wrapper .swiper-slide .caption {
  font-size: 13px;
  margin-top: 8px;
  line-height: 1.6;
  text-align: left;
}
#introduction .intro-swiper .swiper-pagination {
  position: absolute;
  bottom: 0;
  left: 50% !important;
  transform: translateX(-50%);
  width: auto;
}
#introduction .intro-swiper .swiper-pagination-bullet-active {
  background: #455851;
}
#introduction .intro-swiper .swiper-button-prev, #introduction .intro-swiper .swiper-button-next {
  top: auto;
  bottom: 0;
  width: 20px;
  height: 20px;
  margin-top: 0;
  z-index: 10;
  pointer-events: auto;
  color: #455851;
}
#introduction .intro-swiper .swiper-button-prev::after, #introduction .intro-swiper .swiper-button-next::after {
  font-size: 16px;
  font-weight: bold;
}
#introduction .intro-swiper .swiper-button-prev {
  left: calc(50% - 80px);
}
#introduction .intro-swiper .swiper-button-next {
  right: calc(50% - 80px);
}
#introduction .intro-text .text-block:not(:last-child) {
  margin-bottom: 30px;
}
#introduction .intro-text .text-block h3 {
  font-size: 20px;
  margin-bottom: 30px;
  font-weight: 600;
  border-bottom: 1px solid;
  padding-bottom: 15px;
}
#introduction .intro-text .text-block .table-contents:not(:first-child) {
  margin-bottom: 50px;
}
#introduction .intro-text .text-block .table-contents h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  border-left: 2px solid;
  padding-left: 10px;
}
#introduction .intro-text .text-block .table-contents p {
  margin-bottom: 20px;
}
#introduction .intro-text .text-block .table-contents p span {
  display: block;
  font-size: 13px;
}
#introduction .intro-text .text-block .table-contents table {
  border-collapse: collapse;
  width: 100%;
}
#introduction .intro-text .text-block .table-contents table th, #introduction .intro-text .text-block .table-contents table td {
  padding: 20px;
  border: solid 1px #DBE6E2;
  text-align: center;
  box-sizing: border-box;
  letter-spacing: 1px;
}
#introduction .intro-text .text-block .table-contents table th {
  background: #DBE6E2;
  color: #5F4F34;
  font-weight: 600;
}
#introduction .intro-text .text-block .table-contents table td {
  background: #fff;
}
#introduction .intro-text .text-block .table-contents table td span {
  font-size: 13px;
  padding-left: 5px;
}
@media screen and (max-width: 640px) {
  #introduction .intro-text .text-block .table-contents .tb01 {
    width: 100%;
  }
  #introduction .intro-text .text-block .table-contents table.tb01 th,
  #introduction .intro-text .text-block .table-contents table.tb01 td {
    display: block;
    width: 100%;
    border-bottom: none;
  }
  #introduction .intro-text .text-block .table-contents .tb01 tr:last-child {
    border-bottom: solid 1px #ccc;
  }
}
#introduction .intro-text .text-block .table-contents figure img {
  width: 100%;
}
#introduction .intro-text .text-block ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
#introduction .intro-text .text-block ul li {
  position: relative;
  padding-left: 1.4em;
  line-height: 1.6rem;
  margin-bottom: 20px;
}
#introduction .intro-text .text-block ul li::before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 10px;
  height: 10px;
  background: #5F4F34;
  border-radius: 50%;
}

#contact {
  padding-top: 0;
  padding-bottom: 80px;
}
#contact .container {
  padding-top: 0;
}
#contact .section-title {
  line-height: 1.4;
}
#contact .section-title span {
  display: inline-block;
}
#contact .contact-box {
  background: #6A837A;
  border-radius: 8px;
  padding: 40px 30px;
  color: white;
}
#contact .contact-phone {
  text-align: center;
  margin-bottom: 30px;
}
#contact .contact-phone h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 30px;
  color: white;
}
#contact .contact-phone .phone-number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 32px;
  font-weight: 600;
  color: white;
  text-decoration: none;
  margin-bottom: 15px;
  letter-spacing: 0.05em;
}
#contact .contact-phone .phone-number::before {
  content: "";
  width: 28px;
  height: 28px;
  background-image: url("../pic_kaigi/icon-phone.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
#contact .contact-phone .phone-number:hover {
  opacity: 0.8;
}
#contact .contact-phone .business-hours {
  font-size: 16px;
  color: white;
  margin: 0;
}
#contact .contact-divider {
  border-top: 1px dashed rgba(255, 255, 255, 0.5);
  margin: 30px 0;
}
#contact .contact-form {
  text-align: center;
}
#contact .contact-form h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 30px;
  color: white;
}
#contact .contact-form .form-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: white;
  color: #5F4F34;
  padding: 18px 40px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
#contact .contact-form .form-button::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #5F4F34;
  border-right: 2px solid #5F4F34;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}
#contact .contact-form .form-button:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: white;
}
#contact .contact-form .form-button:hover::after {
  transform: rotate(45deg) translateX(0px);
}

@media screen and (min-width: 768px) {
  .sp-only {
    display: none;
  }
  .pc-only {
    display: block;
  }
  .section-title {
    font-size: 32px;
    margin-bottom: 30px;
  }
  .container {
    max-width: 1000px;
    padding: 80px 60px;
    margin: 0 auto;
  }
  #message {
    padding: 100px 60px 100px 0;
  }
  #message .message-content {
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }
  #message .message-text {
    flex: 1;
    text-align: left;
    order: 2;
    padding: 0;
  }
  #message .message-image {
    flex: 1;
    max-width: 50%;
    order: 1;
  }
  #message h1 {
    font-size: 30px;
  }
  #message .lead {
    font-size: 18px;
  }
  #message .description {
    font-size: 16px;
  }
  #features .feature {
    margin-bottom: 100px;
  }
  #features .feature .lead {
    text-align: center;
  }
  #features .feature .lead span {
    display: block;
  }
  #features .feature .features-grid {
    flex-direction: row;
    gap: 20px;
  }
  #features .feature .features-grid .feature-item {
    flex: 1;
  }
  #features .feature .features-grid .feature-item .feature-content h3 {
    line-height: 28px;
  }
  #features .plan .plan-includes {
    margin-bottom: 150px;
    display: flex;
    align-items: center;
    gap: 20px;
  }
  #features .plan .plan-includes .include-item {
    flex: 1;
    margin-bottom: 0;
  }
  #features .plan .plan-includes .include-item:not(:last-child)::after {
    content: "+";
    display: inline-block;
    position: absolute;
    right: -24px;
    top: 40%;
    transform: translateY(-50%);
    font-size: 45px;
    font-weight: 600;
    color: #f6d8b9;
    margin: 0;
    text-align: center;
  }
  #features .plan .plan-schedule {
    margin-bottom: 80px;
  }
  #features .plan .plan-schedule .schedule::before {
    top: 3.5em;
    left: 0px;
    transform: translateY(-50%);
    width: 100%;
    height: 5px;
  }
  #features .plan .plan-schedule .schedule ul.schedule-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0px -10px;
  }
  #features .plan .plan-schedule .schedule ul.schedule-list li {
    margin: 0px 10px;
    width: calc(33.333% - 20px);
    flex-direction: column;
  }
  #features .plan .plan-schedule .schedule ul.schedule-list li + li {
    margin-top: 0;
  }
  #features .plan .plan-schedule .schedule_time {
    margin: 0px auto;
  }
  #features .plan .plan-schedule .schedule_time::before {
    left: 50%;
    bottom: 0px;
    top: auto;
    right: auto;
    transform: translateX(-50%) translateY(50%) rotate(45deg);
  }
  #features .plan .plan-schedule .schedule_time::after {
    top: 3.5em;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
  }
  #features .plan .plan-schedule .schedule_content {
    margin: 3em 0px 0px;
    width: auto;
  }
  #features .plan .plan-pricing .plan-price {
    font-size: 24px;
  }
  #features .plan .plan-pricing .plan-price .price-amount {
    font-size: 36px;
  }
  #features .plan .plan-pricing .plan-price .price-yen {
    font-size: 20px;
  }
  #features .plan .plan-pricing .plan-price .plan-condition {
    font-size: 14px;
  }
  #features .plan .plan-pricing .plan-capacity {
    font-size: 24px;
  }
  #features .plan .plan-pricing .plan-capacity .capacity-number {
    font-size: 36px;
  }
  #features .plan .plan-description {
    margin-bottom: 50px;
    text-align: center;
  }
  #introduction .section-title {
    margin-bottom: 50px;
  }
  #introduction .intro-inner {
    display: flex;
    gap: 40px;
    align-items: flex-start;
  }
  #introduction {
    /* 左：写真エリア */
  }
  #introduction .intro-image {
    flex: 0 0 50%;
  }
  #introduction {
    /* Swiper → 縦並びの画像リスト化 */
  }
  #introduction .intro-swiper {
    padding-bottom: 0;
  }
  #introduction .intro-swiper .swiper-wrapper {
    display: block;
    transform: none !important;
  }
  #introduction .intro-swiper .swiper-slide {
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  #introduction .intro-swiper .swiper-slide.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  #introduction {
    /* 右：テキスト */
  }
  #introduction .intro-text {
    flex: 1;
  }
  #introduction {
    /* PCでは操作UIを完全非表示 */
  }
  #introduction .intro-swiper .swiper-button-prev,
  #introduction .intro-swiper .swiper-button-next,
  #introduction .intro-swiper .swiper-pagination {
    display: none !important;
  }
  #contact .contact-header h2 {
    font-size: 32px;
  }
  #contact .contact-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 60px;
    display: flex;
    align-items: center;
    gap: 40px;
  }
  #contact .contact-phone {
    flex: 1;
    margin-bottom: 0;
  }
  #contact .contact-phone .phone-number {
    font-size: 36px;
  }
  #contact .contact-phone .business-hours {
    font-size: 16px;
  }
  #contact .contact-divider {
    border-top: none;
    border-left: 1px dashed rgba(255, 255, 255, 0.5);
    height: 150px;
    margin: 0;
  }
  #contact .contact-form {
    flex: 1;
  }
  #contact .contact-form h3 {
    font-size: 20px;
  }
  #contact .contact-form .form-button {
    font-size: 18px;
    padding: 20px 50px;
  }
}
@media screen and (min-width: 1024px) {
  #message h1 span {
    display: inline-block;
  }
  #message .message-text {
    max-width: 530px;
  }
  #features .plan .section-title {
    margin-bottom: 80px;
  }
  #features .plan .plan-schedule .schedule_content {
    padding: 30px !important;
  }
  #introduction .section-title {
    margin-bottom: 80px;
  }
  #introduction .intro-inner {
    gap: 80px;
  }
}
#contents {
  background-color: unset;
  padding: 20px 30px;
}
#contents section {
  padding-top: 0;
}

/*# sourceMappingURL=kaigi.css.map */
