    @charset "utf-8";
    /* others.CSS */

    /* ===================================================
        contact
    =================================================== */
.contact-text{
    margin-top: 30px;
  margin-bottom: 30px;
}

.contact-form{
  width: 100%;
}

.form-group{
  margin-bottom: 20px;
}

.form-group label{
  display: block;
  margin-bottom: 5px;
}

.required{
  font-size: 0.75rem;
  background: #4A8FA8;
  color: #fff;
  padding: 2px 5px;
  margin-left: 5px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea{
  width: 100%;
  padding: 10px;
  border: 1px solid rgba(26,26,24,0.2);
  background: #F7F6F2;
  box-sizing: border-box;
}

.contact-form textarea{
  min-height: 100px;
}

.privacy-check{
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
}

.privacy-check input[type="checkbox"]{
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin: 0;
  accent-color: #4A8FA8;
}

.privacy-check span{
  flex: 1;
  line-height: 1.8;
}

.privacy-link{
  position: relative;
  display: inline-block;
  color: #1A1A18;
  line-height: 1;
}

.privacy-link::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: #1A1A18;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}

.privacy-link:hover::after,
.privacy-link:active::after{
  transform: scaleX(1);
}

.form-btn{
  text-align: center;
}

.form-btn-submit{
  position: relative;
  display: inline-block;
  width: 50%;
  padding: 10px 20px;
  overflow: hidden;
  border: 1px solid #4A8FA8;
  background: transparent;
  box-sizing: border-box;
  text-align: center;
  cursor: pointer;
  color: #4A8FA8;
  font-size: 1rem;
  font-weight: 400;
  transition: 0.3s ease;
}

.form-btn-submit span{
  position: relative;
  z-index: 3;
  color: #4A8FA8;
  transition: color 0.2s ease;
}

.form-btn-submit::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: #4A8FA8;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.form-btn-submit:hover::before,
.form-btn-submit:active::before{
  transform: translateX(0);
}

.form-btn-submit:hover span,
.form-btn-submit:active span{
  color: #F7F6F2;
}
    /* ===================================================
        privacy
    =================================================== */
.policy-box{
  padding: 30px 20px;
}

.policy-item{
  margin-bottom: 25px;
}

.policy-item h3{
  margin-bottom: 8px;
  padding-left: 10px;
  border-left: 3px solid #4A8FA8;
}

.policy-contact{
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(26,26,24,0.2);
}
    /* ===================================================
        notice
    =================================================== */
.notice-box{
  padding: 20px;
}

.notice-item{
  margin-bottom: 25px;
}

.notice-item h3{
  margin-bottom: 8px;
}

/* ===================================================
   others page common
=================================================== */
.contact-all,
.policy-all,
.notice-all{
 padding-bottom: 50px;
}


.park-fv{
  height: 200px;
  padding: 0;
  background: #F7F6F2;
  box-sizing: border-box;
}

.park-fv::after{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(247,246,242,0.55);
}

.park-fv .ja-title{
  display: inline-block;
  line-height: 1;
  text-shadow:
    1px 1px 0 #F7F6F2,
   -1px 1px 0 #F7F6F2,
    1px -1px 0 #F7F6F2,
   -1px -1px 0 #F7F6F2;
}

.park-fv .EN-Alt{
  display: block;
  font-size: clamp(2.5rem, 8vw, 5rem);
  line-height: 1;
  color: rgba(247, 246, 242, 0.8);
  text-shadow:
    1px 1px 0 #1A1A18,
   -1px 1px 0 #1A1A18,
    1px -1px 0 #1A1A18,
   -1px -1px 0 #1A1A18;
}