@charset "UTF-8";
/* ==========================================================================
   1. 認証共通パーツ (Login, Register, etc.)
   ========================================================================== */
.auth-page-container {
  max-width: 550px;
  margin: 60px auto;
  padding: 0 20px;
  min-height: 60vh;
}
@media (max-width: 600px) {
  .auth-page-container {
    margin: 30px auto;
  }
}

.auth-card {
  background: #ffffff;
  padding: 50px 40px;
  border-radius: 20px;
  border: 1px solid #eee;
  -webkit-box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
          box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}
@media (max-width: 600px) {
  .auth-card {
    padding: 35px 20px;
  }
}

.auth-title {
  text-align: center;
  margin-bottom: 25px;
  font-weight: bold;
  font-size: 26px;
  color: #333333;
}
@media (max-width: 600px) {
  .auth-title {
    font-size: 22px;
  }
}

.auth-description {
  text-align: center;
  color: #666666;
  font-size: 14px;
  margin-bottom: 35px;
  line-height: 1.7;
}

.auth-msg {
  padding: 18px;
  border-radius: 12px;
  margin-bottom: 30px;
  font-size: 14px;
  line-height: 1.6;
  border: 1px solid;
}
.auth-msg.is-error {
  background: #fff5f5;
  color: #c53030;
  border-color: #feb2b2;
}
.auth-msg.is-success {
  background: #f0fdf4;
  color: #166534;
  border-color: #bbf7d0;
  text-align: center;
}

.form-group {
  margin-bottom: 25px;
}
.form-group.mb-large {
  margin-bottom: 35px;
}
.form-group .form-label {
  display: block;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333333;
  font-size: 14px;
}

.auth-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #dddddd;
  border-radius: 12px;
  background: #fafafa;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.auth-input:focus {
  border-color: #557c32;
  background: #ffffff;
  outline: none;
  -webkit-box-shadow: 0 0 0 4px rgba(85, 124, 50, 0.1);
          box-shadow: 0 0 0 4px rgba(85, 124, 50, 0.1);
}

.auth-submit-btn {
  width: 100%;
  background: #557c32;
  color: #ffffff;
  padding: 18px;
  border-radius: 12px;
  font-weight: bold;
  font-size: 18px;
  border: none;
  -webkit-box-shadow: 0 4px 0 #3d5a24;
          box-shadow: 0 4px 0 #3d5a24;
  cursor: pointer;
  position: relative;
  top: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.auth-submit-btn:hover {
  background: #5e8a37;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 5px 0 #3d5a24;
          box-shadow: 0 5px 0 #3d5a24;
}
.auth-submit-btn:active {
  top: 3px;
  -webkit-box-shadow: 0 1px 0 #3d5a24;
          box-shadow: 0 1px 0 #3d5a24;
}

.auth-footer {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
}
.auth-footer .footer-link {
  color: #557c32;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
}
.auth-footer .footer-link:hover {
  text-decoration: underline;
}
.auth-footer .footer-link-secondary {
  color: #666666;
  text-decoration: none;
  font-size: 14px;
}
.auth-footer .footer-link-secondary:hover {
  text-decoration: underline;
}

.godog-hp-wrapper {
  display: none !important;
}

/* ==========================================================================
   2. 施設掲載のご案内ページ (Guide Page)
   ========================================================================== */
.guide-page-wrapper {
  line-height: 1.6;
  color: #333333;
  background: #ffffff;
}
.guide-page-wrapper .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
.guide-page-wrapper .content-inner {
  padding: 80px 0;
}

.guide-header-visual {
  background-color: #557c32;
  padding: 100px 0;
  text-align: center;
  color: #ffffff;
}
.guide-header-visual h1 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: bold;
}
.guide-header-visual p {
  font-size: 18px;
  opacity: 0.95;
}

.guide-section {
  margin-bottom: 100px;
}
.guide-section .section-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 20px;
  font-weight: bold;
}
.guide-section .section-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: #557c32;
  border-radius: 2px;
}

.bg-light-section {
  background: #f9fbf7;
  padding: 80px 20px;
  border-radius: 30px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.benefit-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid #eee;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.benefit-card:hover {
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
  -webkit-box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
          box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
  border-color: rgba(85, 124, 50, 0.2);
}
.benefit-card .dashicons {
  font-size: 48px;
  width: 48px;
  height: 48px;
  color: #557c32;
  margin-bottom: 20px;
}
.benefit-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: bold;
}
.benefit-card p {
  font-size: 15px;
  color: #666666;
  line-height: 1.7;
}

.step-list {
  max-width: 650px;
  margin: 0 auto;
}
.step-list .step-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  margin-bottom: 40px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.step-list .step-item:last-child {
  margin-bottom: 0;
}
.step-list .step-num {
  background: #557c32;
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: bold;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 18px;
  -webkit-box-shadow: 0 4px 10px rgba(85, 124, 50, 0.2);
          box-shadow: 0 4px 10px rgba(85, 124, 50, 0.2);
}
.step-list .step-text h4 {
  font-size: 19px;
  margin-bottom: 8px;
  font-weight: bold;
}
.step-list .step-text p {
  font-size: 15px;
  color: #666666;
}

.guide-cta-area {
  text-align: center;
}
.guide-cta-area .cta-card {
  background: #ffffff;
  border: 3px solid #557c32;
  padding: 60px 40px;
  border-radius: 30px;
  -webkit-box-shadow: 0 20px 40px rgba(85, 124, 50, 0.05);
          box-shadow: 0 20px 40px rgba(85, 124, 50, 0.05);
}
.guide-cta-area .cta-card h3 {
  font-size: 26px;
  margin-bottom: 35px;
  font-weight: bold;
}
.guide-cta-area .cta-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  margin-bottom: 25px;
}
.guide-cta-area .btn-primary {
  background: #557c32;
  color: #ffffff;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -webkit-box-shadow: 0 4px 0 #3d5a24;
          box-shadow: 0 4px 0 #3d5a24;
  position: relative;
  top: 0;
}
.guide-cta-area .btn-primary:hover {
  background: #5e8a37;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 0 #3d5a24;
          box-shadow: 0 6px 0 #3d5a24;
}
.guide-cta-area .btn-primary:active {
  top: 3px;
  -webkit-box-shadow: 0 1px 0 #3d5a24;
          box-shadow: 0 1px 0 #3d5a24;
}
.guide-cta-area .btn-secondary {
  border: 2px solid #557c32;
  color: #557c32;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  background: #ffffff;
}
.guide-cta-area .btn-secondary:hover {
  background: #f0f4ec;
  opacity: 0.9;
}
.guide-cta-area .cta-note {
  font-size: 14px;
  color: #999;
}

@media (max-width: 768px) {
  .guide-header-visual {
    padding: 60px 0;
  }
  .guide-header-visual h1 {
    font-size: 28px;
  }
  .guide-page-wrapper .content-inner {
    padding: 50px 0;
  }
  .guide-cta-area .cta-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .guide-cta-area .btn-primary, .guide-cta-area .btn-secondary {
    padding: 15px 20px;
    text-align: center;
  }
  .guide-cta-area .cta-card {
    padding: 40px 20px;
  }
}
#godog-owner-mypage-template {
  min-height: 70vh;
  background-color: #fcfdfd;
  padding: 40px 0 80px;
}
#godog-owner-mypage-template .mypage-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.no-data-wrapper {
  padding: 100px 20px;
  text-align: center;
  background: #fff;
  border-radius: 20px;
  border: 1px solid #eee;
}
.no-data-wrapper .dashicons {
  font-size: 48px;
  color: #ccc;
  margin-bottom: 15px;
}
.no-data-wrapper .no-data-text {
  color: #666666;
  margin-bottom: 30px;
}

.btn-register-new {
  display: inline-block;
  background: #557c32;
  color: #fff;
  padding: 14px 35px;
  border-radius: 50px;
  font-weight: bold;
  -webkit-box-shadow: 0 4px 0 #3d5a24;
          box-shadow: 0 4px 0 #3d5a24;
  text-decoration: none;
}
.btn-register-new:hover {
  background: #5e8a37;
}

.btn-view-guide {
  display: inline-block;
  color: #557c32;
  padding: 12px 35px;
  border-radius: 50px;
  border: 2px solid #557c32;
  font-weight: bold;
  text-decoration: none;
}

.error-notice-wrapper {
  padding: 60px 20px;
  text-align: center;
  background: #fff5f5;
  border: 1px solid #feb2b2;
  border-radius: 15px;
}