@charset "utf-8";
/* CSS Document */
.main-wrap{
    background: #F6F6F6;
}
.privacypolicy {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  box-sizing: border-box;
  padding: 100px 100px;
  background-color: rgba(51, 51, 51, 0.90);
  color: #ffffff;
  z-index: 99999;
  overflow: auto;
}
.privacypolicy .contents {
  font-family: "Funnel Sans", "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.privacypolicy .contents .title {
  font-weight: 900;
  text-align: center;
  margin-bottom: clamp(20px, 5vw, 50px);
  font-size: clamp(18px, 2vw, 24px);
}
.privacypolicy .box-wrap {
  padding-top: 50px;
}
.privacypolicy .box-wrap .box:not(:last-of-type) {
  margin-bottom: 80px;
}
.privacypolicy .box-wrap a {
  display: inline-block;
  opacity: 1;
  transition: ease 0.3s;
}
.privacypolicy .box-wrap a:hover {
  opacity: 0.5;
}
.privacypolicy .box-wrap p {
  color: #fff !important;
}
.privacypolicy .close-bt {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: rgba(51, 51, 51, 1.00);
  transition: ease 0.3s;
  cursor: pointer;
}
.privacypolicy .close-bt:hover {
  opacity: 0.6
}
.privacypolicy .close-bt::before, .privacypolicy .close-bt::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 3px;
  background-color: #ffffff;
}
.privacypolicy .close-bt::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.privacypolicy .close-bt::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.privacypolicy .box-wrap .box h3 {
   justify-content: flex-start;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 2px solid #ffffff;
  color: #fff !important;
}
.privacypolicy .box-wrap .box p a {
  color: #fff !important;
}
@media screen and (max-width: 768px) {
  .privacypolicy {
    padding: 100px 50px;
  }
  .privacypolicy .box-wrap {
    padding-left: 30px;
    padding-top: 50px;
  }
  .privacypolicy .box-wrap .box h3 {
    font-size: 18px;
  }
  .privacypolicy p {
    font-size: 14px;
  }
  .privacypolicy .close-bt {
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  .privacypolicy .close-bt::before, .privacypolicy .close-bt::after {
    width: 36px;
    height: 2px;
  }
}
@media screen and (max-width: 576px) {
  .privacypolicy {
    padding: 80px 20px;
  }
  .privacypolicy .box-wrap .box:not(:last-of-type) {
    margin-bottom: 50px;
  }
  .privacypolicy .box-wrap {
    padding-top: 30px;
    padding-left: 0;
  }}
/* ---------- base ---------- */
.contact-form_a .check-box p{
  cursor: pointer;
  font-weight: 500;
}

.contact-form_a .form-box .box-wrap{
  max-width: 1000px;
}

.contact-form_a .form-box .box-wrap .box{
  margin-bottom: 40px;
}

/* label */
.contact-form_a .form-box .box-wrap .box h3{
  width: 300px;
  position: relative;
  padding-right: 80px;
      font-weight: 500;
}

/* required badge */
.contact-form_a .form-box .box-wrap .box.required-box h3::after{
  content: "必須";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #BF272D;
  border-radius: 3px;
  padding: 2px 20px 3px;
  color: #fff;
  font-size: 14px;
  font-family: "Funnel Sans","Noto Sans JP","游ゴシック Medium","游ゴシック体","Yu Gothic Medium",YuGothic,"ヒラギノ角ゴ ProN","Hiragino Kaku Gothic ProN","メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
}

/* input area */
.contact-form_a .form-box .box-wrap .box .inputbox{
  width: calc(100% - 300px);
  padding-left: 30px;
}

/* inputs（最終的に border:none が効いていたので統一） */
.contact-form_a .form-box .box-wrap .box:not(.filebox) .inputbox > input,
.contact-form_a .form-box .box-wrap .box .inputbox textarea{
  background-color: #fff;
  border: none;
  border-radius: 5px;
  width: 100%;
  box-sizing: border-box;
  padding: 10px 20px;
  font-family: "Zen Kaku Gothic New","Noto Sans JP","游ゴシック Medium","游ゴシック体","Yu Gothic Medium",YuGothic,"ヒラギノ角ゴ ProN","Hiragino Kaku Gothic ProN","メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
}

.contact-form_a .form-box .box-wrap .box .inputbox input::placeholder,
.contact-form_a .form-box .box-wrap .box .inputbox textarea::placeholder{
  color: rgba(112,112,112,.5);
  font-size: 14px;
}

/* date */
.contact-form_a .form-box .box-wrap .box .inputbox.date-box{
  gap: 20px;
}
.contact-form_a .form-box .box-wrap .box .inputbox.date-box input{
  width: auto;
  max-width: 120px;
}

/* textarea */
.contact-form_a .form-box .box-wrap .box .inputbox textarea{
  height: 300px;
}

/* checks */
.contact-form_a .form-box .box-wrap .box .inputbox .check-wrap{
  justify-content: flex-start;
  gap: 30px;
}
.contact-form_a .form-box .box-wrap .box .inputbox .check-wrap .check-box{
  gap: 10px;
}
.contact-form_a .form-box .box-wrap .box .inputbox .check-wrap .check-box:not(:last-of-type){
  margin-bottom: 10px;
}

/* radio */
.contact-form_a .form-box .check-wrap .check-box input[type="radio"]{
  appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(112,112,112,.5);
  border-radius: 50%;
  background-color: #fff;
  position: relative;
}
.contact-form_a .form-box .check-wrap .check-box input[type="radio"]:checked::after{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background-color: #64D6D1;
  border-radius: 50%;
  transform: translate(-50%,-50%);
}

/* product / qty */
.contact-form_a .form-box .box-wrap .box .inputbox .product-tabs{
  width: calc(100% - 300px);
}
.contact-form_a .form-box .box-wrap .box .inputbox .product-tabs select{
  width: 100%;
  padding: 5px;
  border: 1px solid #ADAAAA;
  border-radius: 5px;
}

.contact-form_a .form-box .box-wrap .box .inputbox .qty-wrap{
  width: 200px;
}
.contact-form_a .form-box .box-wrap .box .inputbox .qty-wrap input{
  width: 60px;
  padding: 5px;
  border: 1px solid #ADAAAA;
  border-radius: 5px;
}

/* address（最終的に border:none が効いていたので統一） */
.contact-form_a .form-box .addressbox > div:not(:last-of-type){
  margin-bottom: 20px;
}
.contact-form_a .form-box .addressbox .address1{
  gap: 10px;
}
.contact-form_a .form-box .addressbox .address1 input{
  max-width: 100px;
}

.contact-form_a .addressbox input{
  background-color: #fff;
  border: none;
  border-radius: 5px;
  width: 100%;
  box-sizing: border-box;
  padding: 10px 20px;
  font-size: 14px;
}

/* file */
.contact-form_a .form-box .box-wrap .file-box input[type="file"]{
  color: #B3B3B3;
  font-size: 14px;
  width: 280px;
}
.contact-form_a .form-box .box-wrap .file-box input[type="file"]::file-selector-button{
  padding: 5px 16px;
  border-radius: 2px;
  border: 1px solid #B3B3B3;
  background-color: #F0F0F0;
  font-size: 15px;
  cursor: pointer;
  margin-right: 12px;
}

/* check area / privacy button */
.contact-form_a .check-area{
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 50px);
  padding-top: clamp(10px, 3vw, 40px);
}
.contact-form_a .privacy-bt{
  cursor: pointer;
  margin-left: 10px;
}


.contact-form_a .send{
  display: flex;
  justify-content: center;
  text-align: center;
}

.contact-form_a .send .send-bt{
  position: relative;
  width: auto;
  height: 58px;                 /* 高さ固定（画像っぽく） */
  padding: 0 16px 0 22px;       /* 左テキスト余白 / 右は丸分 */
  border: 2px solid #2aa10f;
  border-radius: 999px;
  background: #EEF2EB;

  display: flex;                /* 横並び */
  align-items: center;
  justify-content: flex-start;
  gap: 14px;

  box-sizing: border-box;
  transition: border-color .25s ease, background-color .25s ease;
}

/* クリック領域用の透明ボタン（全面） */
.contact-form_a .send .send-bt button{
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 0;
  cursor: pointer;
  border: none;
  background: transparent;
  border-radius: 999px;
}
.contact-form_a .send .send-bt button:focus-visible{
  outline: 3px solid rgba(42,161,15,.25);
  outline-offset: 3px;
}

/* テキスト */
.contact-form_a .send .send-bt p{
  margin: 0;
  letter-spacing: 0.18em;
font-weight: 600;
  position: relative;
  z-index: 2; /* 透明buttonより上に見せる */
  white-space: nowrap;
}

.contact-form_a .send .send-bt i{
  position: relative;           /* absoluteやめる */
  margin-left: auto;            /* 右寄せ */
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #2aa10f;
color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 2;                   /* 透明buttonより上に見せる */
  transition: background-color .25s ease, transform .3s ease;
}
.contact-form_a .send:hover .send-bt i{
  transform: translateX(3px);
}
.contact-form_a .send .send-bt .icon img{
  display: none;
}

/* Font Awesomeアイコン */
.contact-form_a .send .send-bt .icon i{
  color: #fff;
  font-size: 16px;
  line-height: 1;
}

/* hover */
.contact-form_a .send .send-bt:hover{
  border-color: #1f7e0b;
}
.contact-form_a .send .send-bt:hover .icon{
  background: #1f7e0b;
  transform: translateX(4px);   /* 右へスライド */
}
/* ========================================================= privacypolicy modal ========================================================= */
.privacypolicy{
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  box-sizing: border-box;
  padding: 100px 100px;
  background-color: rgba(51,51,51,.90);
  color: #fff;
  z-index: 99999;
  overflow: auto;
}

/* font */
.privacypolicy .contents{
  font-family: "Funnel Sans","Noto Sans JP","游ゴシック Medium","游ゴシック体","Yu Gothic Medium",YuGothic,"ヒラギノ角ゴ ProN","Hiragino Kaku Gothic ProN","メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
}

/* title */
.privacypolicy .contents .title{
  font-weight: 900;
  text-align: center;
  margin-bottom: clamp(20px, 5vw, 50px);
  font-size: clamp(18px, 2vw, 24px);
}

/* contents */
.privacypolicy .box-wrap{
  padding-top: 50px;
}
.privacypolicy .box-wrap .box:not(:last-of-type){
  margin-bottom: 80px;
}
.privacypolicy .box-wrap a{
  display: inline-block;
  opacity: 1;
  transition: ease .3s;
}
.privacypolicy .box-wrap a:hover{
  opacity: .5;
}
.privacypolicy .box-wrap p{
  color: #fff !important;
}

/* headings */
.privacypolicy .box-wrap .box h3{
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 2px solid #fff;
  color: #fff !important;
}
.privacypolicy .box-wrap .box p a{
  color: #fff !important;
}

/* close button */
.privacypolicy .close-bt{
  position: fixed;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: rgba(51,51,51,1);
  transition: ease .3s;
  cursor: pointer;
}
.privacypolicy .close-bt:hover{
  opacity: .6;
}
.privacypolicy .close-bt::before,
.privacypolicy .close-bt::after{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 3px;
  background-color: #fff;
}
.privacypolicy .close-bt::before{
  transform: translate(-50%,-50%) rotate(45deg);
}
.privacypolicy .close-bt::after{
  transform: translate(-50%,-50%) rotate(-45deg);
}

/* ========================================================= media queries ========================================================= */

/* IEのみ */
@media all and (-ms-high-contrast: none){
}

/* 1280px ~ */
@media screen and (max-width: 1280px){
}

/* 1080px ~ */
@media screen and (max-width: 1080px){
  .contact-form_a .form-box .box-wrap .box h3{
    width: 250px;
  }
  .contact-form_a .form-box .box-wrap .box .inputbox{
    width: calc(100% - 250px);
  }
  .contact-form_a .send,
  .contact-form_a .check-area{
    margin-left: 250px;
  }
}

/* 768px ~ */
@media screen and (max-width: 768px){
  .contact-form_a .form-box .box-wrap .box h3{
    width: 100%;
    margin-bottom: 10px;
  }
  .contact-form_a .form-box .box-wrap .box .inputbox{
    width: 100%;
    padding-left: 0;
  }

  .contact-form_a .form-box .box-wrap .box.required-box h3{
    padding-right: 0;
    padding-left: 0;
  }
  .contact-form_a .form-box .box-wrap .box.required-box h3::after{
    position: static;
    display: inline-block;
    margin-left: 20px;
    font-size: 13px;
    transform: translateY(-2px);
  }

  .contact-form_a .form-box .box-wrap .box .inputbox .check-wrap{
    padding-top: 10px;
    gap: 20px;
  }
  .contact-form_a .form-box .box-wrap .box .inputbox .check-wrap1 .check-box{
    box-sizing: border-box;
  }

  .contact-form_a .send,
  .contact-form_a .check-area{
    margin-left: 0;
  }

  .privacypolicy{
    padding: 100px 50px;
  }
  .privacypolicy .box-wrap{
    padding-left: 30px;
    padding-top: 50px;
  }
  .privacypolicy .box-wrap .box h3{
    font-size: 18px;
  }
  .privacypolicy p{
    font-size: 14px;
  }
  .privacypolicy .close-bt{
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  .privacypolicy .close-bt::before,
  .privacypolicy .close-bt::after{
    width: 36px;
    height: 2px;
  }
}

/* 576px ~ */
@media screen and (max-width: 576px){
  .contact-form_a .form-box .box-wrap .box .inputbox > input,
  .contact-form_a .form-box .box-wrap .box .inputbox textarea{
    font-size: 14px;
  }

  .contact-form_a .form-box .box-wrap .box .inputbox{
    padding-left: 0;
  }

  .contact-form_a .form-box .box-wrap .box .inputbox.date-box{
    gap: 10px;
  }
  .contact-form_a .form-box .box-wrap .box .inputbox.date-box input{
    width: auto;
    max-width: 70px;
  }

  .contact-form_a .form-box .box-wrap .box .inputbox .check-wrap{
    padding-top: 20px;
    gap: 20px;
  }
  .contact-form_a .form-box .box-wrap .box .inputbox .check-wrap1 .check-box{
    width: 100%;
    box-sizing: border-box;
  }

  .contact-form_a .form-box .box-wrap .box.required-box h3::after{
    font-size: 12px;
    padding: 2px 10px;
  }

  .contact-form_a .form-box .box-wrap .box h3{
    padding-left: 0;
  }

  .privacypolicy{
    padding: 80px 20px;
  }
  .privacypolicy .box-wrap .box:not(:last-of-type){
    margin-bottom: 50px;
  }
  .privacypolicy .box-wrap{
    padding-top: 30px;
    padding-left: 0;
  }

  .contact-form_a .send-bt p{
    font-size: 18px !important;
  }
}
.form-box label{width:0;opacity: 0 ;height: 0;}