@charset "UTF-8";
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.top-bar {
  background-color: #F6F4F2;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  border-bottom: 1px solid #eee;
}

.top-bar a.btn {
  font-weight: 500;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
}

/* ナビゲーション */
.nav-bar {
  background-color: #F6F4F2;
  position: relative;
  z-index: 2;
}

.nav-wrapper {
  padding: 1rem 3rem;
  position: relative;
}

.logo-wrapper {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #F6F4F2;
  padding: 20px;
  border-radius: 50%;
  z-index: 3;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.logo-image {
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}

.nav-item {
  color: #001f4d;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}

/* =================
  ハンバーガーボタンの実装
  ================= */
.menu {
  display: none;
}

@media (max-width: 992px) {
  .menu {
    display: block;
  }
  .menu-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: #F6F4F2;
  }
  .menu-btn:hover {
    cursor: pointer;
  }
  /* 三本線の実装 */
  .menu-btn span,
  .menu-btn span:before,
  .menu-btn span:after {
    content: "";
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #001f4d;
    position: absolute;
  }
  .menu-btn span:before {
    bottom: 8px;
  }
  .menu-btn span:after {
    top: 8px;
  }
  /* チェックボックスを非表示にする */
  #menu-btn-check {
    display: none;
  }
  #menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);
    /*メニューオープン時は真ん中の線を透明にする*/
  }
  /* メニューを開いている時はハンバーガーボタンが×になる */
  #menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
  }
  #menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
  }
  /* =================
  メニュー部分の実装
  ================= */
  .menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;
    z-index: 80;
    background-color: #F6F4F2;
    transition: all 0.5s;
    /*アニメーションを滑らかにする*/
    overflow-y: scroll;
  }
  .menu-content ul {
    padding: 0px 10px 0;
  }
  .menu-content ul li {
    border-bottom: solid 1px #f4f8fc;
    list-style: none;
  }
  .menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 1rem;
    box-sizing: border-box;
    color: #001f4d;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
  }
  .menu-content ul li a:hover {
    background-color: #001f4d;
    color: white;
  }
  #menu-btn-check:checked ~ .menu-content {
    left: 0%;
    /*メニューを画面内へ動かす*/
  }
  .mobile-logo {
    width: 200px;
  }
}
.hamburger {
  display: none;
}
@media (max-width: 992px) {
  .hamburger {
    display: flex;
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 1001;
    width: 2rem;
    height: 2rem;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
  }
  .hamburger span {
    height: 3px;
    background-color: #333;
    border-radius: 2px;
  }
}

.mobile-contact-buttons {
  width: 100%;
}

/* ドロップダウンメニュー */
.dropdown {
  position: relative;
}
.dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background-color: #F6F4F2;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  padding: 0.5rem 0;
  z-index: 1000;
}
.dropdown .dropdown-menu .dropdown-item {
  padding: 0.5rem 1rem;
  color: #001f4d;
  text-decoration: none;
  display: block;
  white-space: nowrap;
}
.dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #001f4d;
  color: white;
}
.dropdown:hover .dropdown-menu {
  display: block;
}

.info-text-window {
  overflow: auto;
  height: 200px;
  max-width: 800px;
  font-weight: bold;
  /*line-height: 150%;*/
  /*font-size:80%;*/
  margin: 1rem auto;
}

/*hero*/
.hero {
  background: url("../img/hero_i.png") center/cover no-repeat;
  padding: 6rem 1rem 4rem;
  position: relative;
  color: white;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  position: relative;
  min-height: 100vh;
}

.hero-img {
  width: 800px;
  margin: 0 auto;
}

.hero-inner {
  padding: 2rem 1rem;
  position: absolute;
  left: 50%;
  top: 20%;
  max-width: 800px;
  margin: 0 auto;
  transform: translateX(-50%);
  background: url("../img/bg.png") repeat;
}
.hero-title {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.4;
}
@media (max-width: 992px) {
  .hero-title {
    font-size: 2rem;
  }
}

.hero-sub {
  font-size: 1.2rem;
  margin: 1rem 0 2rem;
}

.hero-btn {
  margin-left: 1rem;
  text-shadow: none;
  display: inline-block;
  background-color: #fff;
  color: #001f4d;
  font-weight: bold;
  padding: 1rem 2rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: #F6F4F2 0.3s;
}

.hero-btn:hover {
  background-color: #f0f0f0;
}

.section-problem .text-accent {
  color: #ef6c2e;
  font-weight: bold;
}
.section-problem .problem-list {
  background-color: #fff3e9;
  border-radius: 1rem;
}
.section-problem .problem-list .check-icon {
  font-size: 1.5rem;
}
@media (max-width: 992px) {
  .section-problem h2 {
    font-size: 1rem;
  }
}

.sell-section .trouble-list {
  list-style: none;
  padding-left: 0;
}
.sell-section .trouble-list li {
  padding: 0.5rem 0;
  border-bottom: 1px dotted #ccc;
  font-size: 1.1rem;
}

.compare-section {
  background: #f8f8f8;
  padding: 6rem 1rem;
}
.compare-section .compare-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 4rem;
}
@media (max-width: 992px) {
  .compare-section .compare-cards {
    flex-direction: column;
    align-items: center;
  }
}
.compare-section .compare-cards .column {
  background: #fff;
  padding: 1rem 2rem;
  border-radius: 1rem;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
  width: 450px;
}
@media (max-width: 992px) {
  .compare-section .compare-cards .column {
    width: 100%;
  }
}
.compare-section .compare-cards .column h3 {
  text-align: center;
  font-weight: bold;
  margin-bottom: 1rem;
}
.compare-section .compare-cards .column ul {
  list-style: none;
  padding: 0;
}
.compare-section .compare-cards .column ul li {
  position: relative;
  text-align: center;
  padding-bottom: 1.5rem;
  border-bottom: none;
}
.compare-section .compare-cards .column ul li::after {
  content: "▼";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  font-size: 0.8rem;
  color: #888;
}
.compare-section .compare-cards .column ul li:last-child::after {
  display: none;
}

.kaitori-bg-color {
  background-color: #ffe4de;
  color: #8C1D03;
}

.kaitori-text-color {
  color: #8C1D03;
}

.tyukai-bg-color {
  background-color: #e0fedf;
  color: #068E02;
}

.tyukai-text-color {
  color: #068E02;
}

/*tableで余白が大きめ*/
.compare-table {
  margin: 0 auto;
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
  background-color: #fff;
}
.compare-table th,
.compare-table td {
  padding: 1rem;
  text-align: center;
  font-size: 1.5rem;
}
.compare-table th {
  font-weight: bold;
}
@media (max-width: 992px) {
  .compare-table th {
    font-size: 1rem;
    padding: 0.5rem;
  }
}
@media (max-width: 992px) {
  .compare-table td {
    font-size: 0.9rem;
    padding: 0.5rem;
  }
}

.steps-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 2rem auto;
  max-width: 1200px;
}

.step {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  text-align: center;
  width: 300px;
}

.step-icon img {
  width: 200px;
  margin-bottom: 1rem;
}

.step h3 {
  font-size: 1.2rem;
  color: #0074C8;
  margin-bottom: 0.5rem;
}

.step h4 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.step p {
  font-size: 0.9rem;
  color: #001f4d;
  font-weight: bold;
  line-height: 1.5;
}

.guide-title {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 4rem;
  font-weight: bold;
  line-height: 1.7;
}
@media (max-width: 992px) {
  .guide-title {
    font-size: 1.2rem;
  }
}

.commission-section {
  background-color: #fdfdfd;
  border: 1px solid #eee;
  border-radius: 1rem;
  padding: 2rem;
}

.commission-subtitle {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  border-bottom: 2px solid #e67e22;
  padding-bottom: 0.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
@media (max-width: 992px) {
  .commission-subtitle {
    font-size: 1.2rem;
  }
}

.commission-item {
  padding: 2rem;
  background-color: #fff;
  text-align: center;
  flex: 1;
  margin: 0 1rem;
  border-radius: 1rem;
  border: 1px solid #ddd;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.commission-item h4 {
  font-size: 1.4rem;
  font-weight: bold;
  color: #001f4d;
  margin-bottom: 0.5rem;
}

.commission-item p {
  font-size: 1rem;
  color: #001f4d;
  font-weight: bold;
}

.commission-note {
  font-size: 0.9rem;
  color: #999;
  line-height: 1.5;
}

.faq-section {
  background-color: #f9f9f9;
}

.faq-item {
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.faq-question {
  font-size: 1.2rem;
  font-weight: bold;
  color: #001f4d;
  margin-bottom: 0.5rem;
}

.faq-answer {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.faq-answer a {
  text-decoration: none;
  font-weight: bold;
}

.faq-answer a:hover {
  text-decoration: underline;
}

.single-page th {
  background-color: #f4f8fc;
}

body {
  font-family: "Zen Maru Gothic", serif;
  margin: 0;
  padding-top: 80px;
  /* headerが80pxならここも80px */
  line-height: 1.7rem;
  font-weight: 500;
  background-color: #F6F4F2;
}

.br-lg {
  display: none;
}
@media (max-width: 992px) {
  .br-lg {
    display: inline;
  }
}

.br-lg-up {
  display: inline;
}
@media (max-width: 992px) {
  .br-lg-up {
    display: none;
  }
}

section {
  padding: 4rem 1rem;
}
section.first {
  padding-top: 6rem;
}

.section-title {
  font-size: 4rem;
  letter-spacing: 0.4rem;
  font-weight: 700;
  margin-top: 3rem;
  margin-bottom: 5rem;
  text-align: center;
}
.section-title.single {
  margin-bottom: 3rem;
}
@media (max-width: 992px) {
  .section-title {
    font-size: 1.8rem;
  }
}

.bg-hightlight {
  background: #f4f8fc;
}

.page-title {
  background: url("../img/title_bg_i.png") no-repeat center center;
  background-size: cover;
  border-radius: 1rem;
  color: #fff;
  text-align: center;
  width: 1000px;
  margin: 7rem auto 0.5rem auto;
}
@media (max-width: 992px) {
  .page-title {
    margin-top: 2rem;
    padding: 2rem 1rem;
    font-size: 1.5rem;
    width: 80%;
  }
}
.page-title .page-title-inner {
  padding: 2rem;
  border-radius: 1rem;
}
.page-title .page-title-inner h1 {
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.4);
}
@media (max-width: 992px) {
  .page-title .page-title-inner h1 {
    font-size: 1.5rem;
    letter-spacing: 0.05em;
  }
}
.page-title .page-title-inner p {
  font-size: 1.2rem;
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.4);
}
@media (max-width: 992px) {
  .page-title .page-title-inner p {
    font-size: 1rem;
  }
}

.page-1 {
  background-image: url("../img/title_bg_01_i.png");
}

.page-2 {
  background-image: url("../img/title_bg_03_i.png");
}

.page-3 {
  background-image: url("../img/title_bg_04_i.png");
}

/*画像＋テキスト＆タイトル*/
.media-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin: 5rem auto;
  max-width: 1100px;
}
.media-block.reverse {
  flex-direction: row-reverse;
}
@media (max-width: 992px) {
  .media-block {
    display: block;
  }
}

.media-image {
  flex: 0 0 500px;
  margin-left: -40px;
  position: relative;
}
.media-image img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
@media (max-width: 992px) {
  .media-image {
    margin-left: 0px;
  }
}

.media-title {
  font-size: 2.5rem;
  letter-spacing: 0.3em;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #192C50;
}
@media (max-width: 992px) {
  .media-title {
    font-size: 1.5rem;
    letter-spacing: 0.1em;
  }
  .media-title img {
    width: 45px;
  }
}

.media-title span {
  margin-left: 1rem;
  vertical-align: bottom;
}
@media (max-width: 992px) {
  .media-title span {
    margin-left: 0.5rem;
    vertical-align: middle;
  }
}

.media-subtitle {
  font-size: 1.5rem;
  letter-spacing: 0.3em;
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
}
@media (max-width: 992px) {
  .media-subtitle {
    font-size: 1rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
  }
}

.media-text {
  flex: 1;
  padding: 2rem 1rem;
}
@media (max-width: 992px) {
  .media-text {
    padding: 1rem;
  }
}

.media-text p {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.8;
}

/*セクションタイトル*/
.section-subtitle {
  font-size: 1rem;
  margin-bottom: 2rem;
  margin-top: 1rem;
}

.link-subtle {
  font-size: 0.875rem;
  color: #666;
  text-decoration: none;
  border-bottom: 1px dotted #bbb;
  text-underline-offset: 3px;
  margin-left: 1rem;
}
.link-subtle:hover {
  color: #0074C8;
  border-bottom: 1px solid #0074C8;
}

/*物件情報*/
.section-listing {
  padding: 4rem 1rem;
}

.category-icon {
  width: 30vw;
  margin-bottom: 1rem;
}
.category-icon-02 {
  width: 50vw;
}

.card-list {
  gap: 5rem;
}

.property-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  width: 350px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
  border: 1px #bbb solid;
}

.property-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.property-card img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.manshitu-parent {
  position: relative;
}

.manshitu {
  position: absolute;
  top: 0px;
  left: 0px;
  /*background-image: url(../img/manshitu_bg.png);*/
}

.card-body {
  padding: 1rem;
}

.property-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.property-description {
  font-size: 0.95rem;
}

.card-footer {
  border-top: 1px solid #eee;
  padding: 0.75rem 1rem;
  background-color: #f5f5f5;
}

.price {
  font-weight: bold;
  color: #0074C8;
}

.detail-btn {
  text-decoration: none;
  font-weight: 600;
  color: #0074C8;
}

.switch {
  animation: switchtext 0.5s infinite alternate;
}

.youtube {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.facility-img {
  width: 63px;
}

.facility-text {
  line-height: 0.5;
}

.bg-yellow {
  background: #ffffcc;
}

/*サービス*/
.icon-card-lists {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6rem;
}

.icon-card {
  width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.icon-card-index {
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 992px) {
  .icon-card-index {
    width: 90%;
  }
}

.icon-img {
  width: 150px;
  height: 150px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  padding: 0.5rem;
}
.icon-img-02 {
  width: 250px;
  height: 200px;
  border-radius: 1rem;
  -o-object-fit: contain;
     object-fit: contain;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  padding: 0.5rem;
}

.icon-number {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.icon-number img {
  width: 80px;
}

.icon-card .label {
  margin-bottom: 1rem;
  letter-spacing: 0.5rem;
  font-weight: 600;
  font-size: 1.5rem;
  color: #192C50;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.btn-contact {
  display: inline-block;
  background: #fff;
  color: #333;
  padding: 0.75rem 1.5rem;
  border: 2px solid #0074C8;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.2s ease;
}
.btn-contact:hover {
  background: #0074C8;
  color: #fff;
}
.btn-contact.phone {
  border-color: #e03c3c;
}
.btn-contact.phone:hover {
  background: #e03c3c;
}
.btn-contact.email {
  border-color: #0074C8;
}

.info-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}

.info-text {
  max-width: 600px;
}

.info-image img {
  width: 300px;
  border-radius: 1rem;
}

/*footer*/
.site-footer {
  background-color: #F6F4F2;
  padding: 3rem 1rem;
  font-size: 0.9rem;
  color: #333;
}

.footer-col {
  margin-bottom: 2rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-left: 1rem;
}
@media (max-width: 992px) {
  .footer-col ul {
    margin-left: 0;
  }
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  text-decoration: none;
  color: #001f4d;
  font-weight: 500;
}

.footer-heading {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
@media (max-width: 992px) {
  .footer-heading {
    font-size: 1.2rem;
  }
}

.footer-box {
  padding: 1rem;
  border-radius: 1rem;
  text-align: center;
  font-weight: bold;
}

.footer-box-img {
  width: 80px;
  margin-bottom: 0.5rem;
}

.dotted {
  border: 2px dotted #001f4d;
}

.icon-box {
  font-size: 1.5rem;
  background: #001f4d;
  color: white;
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
  }
}
/*イクラ不動産埋め込み*/
#embed_map {
  height: 960px;
  max-width: 960px;
  width: 100%;
  display: block;
  margin: 0 auto;
}

@‌media screen and (max-width: 768px) {
  #embed_map {
    height: 760px;
  }
}
/*お問合せセクション*/
.contact-section {
  text-align: center;
  padding: 3rem 1rem;
  border-radius: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.contact-area {
  padding: 4rem;
}
@media (max-width: 992px) {
  .contact-area {
    padding: 1rem;
  }
}

.contact-caption {
  color: #555;
  font-size: 1.3rem;
  margin-bottom: 2rem;
}
@media (max-width: 992px) {
  .contact-caption {
    font-size: 1rem;
  }
}

.contact-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-button {
  display: inline-block;
  padding: 1rem 1.5rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: background-color 0.2s ease;
}

.contact-button.phone {
  background-color: #0074C8;
  color: #fff;
}

.contact-button.phone:hover {
  background-color: #005fa3;
}

.contact-button.mail {
  background-color: #f1f1f1;
  color: #333;
  border: 1px solid #ccc;
}

.contact-button.mail:hover {
  background-color: #e1e1e1;
}

.contact-hours,
.contact-note {
  font-size: 0.9rem;
  color: #666;
  margin-top: 0.5rem;
}

.qa-box {
  background-color: #f9f9f9;
  border-left: 4px solid #0074C8;
  padding: 1rem;
  margin: 1.5rem 0;
  border-radius: 0.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.qa-question {
  font-weight: bold;
  color: #0074C8;
  margin-bottom: 0.5rem;
}

.qa-answer {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.btn-line {
  color: #fff;
  background-color: #00B900;
  border-color: #00B900;
}

a:hover.btn-line {
  color: #fff;
  text-decoration: underline;
}

.sns-line {
  vertical-align: 0.2rem;
}

.badge-sm {
  font-size: 0.875rem;
  line-height: 1.5;
}

/*Swiper*/
.swiper-container {
  text-align: center;
  width: 100%;
  /*height: 300px;*/
}

.swiper-container .swiper-slide img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

#thumbs {
  /*height: 20%;*/
  box-sizing: border-box;
  /*padding: 10px 0;*/
}

#thumbs .swiper-slide {
  width: 20%;
  height: 100%;
  opacity: 0.5;
  cursor: pointer;
}

#thumbs .swiper-slide-active {
  opacity: 1;
}

/*コンタクトフォームの*/
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 1.5em;
  background: #f9f9f9;
  border-radius: 8px;
}

.contact-form label {
  display: block;
  margin-bottom: 1em;
  font-weight: bold;
}

.input-field {
  width: 100%;
  padding: 0.5em;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.textarea-field {
  width: 100%;
  height: 150px;
  padding: 0.5em;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
}

.submit-button {
  background-color: #0073aa;
  color: #fff;
  padding: 0.75em 1.5em;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
}

.submit-button:hover {
  background-color: #005f8d;
}

/* チェックボックスの全体 */
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 0.5em;
}

/* 各ラベルとボックスの見た目 */
.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: #f1f1f1;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s;
}

.checkbox-group label:hover {
  background-color: #e2e2e2;
}

/* チェックボックス自体のサイズ調整（任意） */
.checkbox-group input[type=checkbox] {
  width: 16px;
  height: 16px;
}

/* ▼ 全体のエラーメッセージ（送信失敗時の上部メッセージ） */
.wpcf7 form.invalid .wpcf7-response-output {
  background-color: #ffe5e5;
  color: #b50000;
  border: 1px solid #ff7a7a;
  padding: 1em;
  border-radius: 6px;
  margin-bottom: 1em;
  font-weight: bold;
}

/* ▼ 成功メッセージ（送信完了時） */
.wpcf7 form.sent .wpcf7-response-output {
  background-color: #e6ffea;
  color: #0a7a2c;
  border: 1px solid #66cc88;
  padding: 1em;
  border-radius: 6px;
  margin-bottom: 1em;
  font-weight: bold;
}

/* ▼ 個別のフィールド下に表示されるエラーメッセージ */
.wpcf7-not-valid-tip {
  color: #d8000c;
  background-color: #fbeaea;
  border-left: 4px solid #d8000c;
  padding: 0.5em;
  margin-top: 0.25em;
  font-size: 0.9em;
  border-radius: 4px;
}

/* ▼ エラーがあるフォーム部品に赤い枠線を付ける */
.wpcf7-form-control.wpcf7-not-valid {
  border: 2px solid #d8000c !important;
  background-color: #fff0f0;
}/*# sourceMappingURL=style.css.map */