@charset "utf-8";
/* CSS Document */ :root {
  --color-main: #E56C21;
  --color-sub: #231815;
  --color-bg-light: #E7C297;
  --color-bg-gray: #CCCCCC;
  --color-white: #ffffff;
  --color-black: #333333;
  /* Fonts */
  --font-main: "Noto Sans JP", sans-serif;
  --font-heading: 'Oswald', sans-serif;
  --font-deco: 'Cinzel', serif;
  /* Sizes */
  --header-height: 60px;
  --container-max: 1024px;
}
a {
  background-color: transparent;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  font-family: var(--font-main);
}
a {
  text-decoration: none;
  color: var(--color-sub);
  background: transparent;
}

#contact-container {
  background-size: cover;
  min-height:330px;
  width: 100%;
  background-image: url("../img/exibition-bk.png");
  background-repeat: no-repeat;
}

.contact-main {
  width: 100%;
  height: auto;
min-height: 100%;
  padding: 0 20px;
  display: flex;
  justify-content: center;
}
.contact-area {
  text-align: center;
  height: auto;
}
.contact-main h1 {
  font-family: var(--font-main);
  font-size: 25px;
  font-weight: 900;
  color: var(--color-white);
  display: inline-block;
  margin: 222px 0 0 0;
  padding-bottom: 0px;
  position: relative;
  border-bottom: solid 2px;
  width: 226px;
  text-align: center;
}
.contact-main h2 {
font-family: var(--font-heading);
  font-size: 25px;
  font-weight: 500;
  color: var(--color-white);
  margin-top: 5px;
}

#contact {
   background-size: cover;
  min-height:330px;
  width: 100%;
  background-image: url("../img/contact-bk.png");
  background-repeat: no-repeat;
  padding-top: 40px;
  padding-bottom: 35px;
}
.contact-inner {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  text-align: center;
}

.contact-form {
  width: 100%;
  text-align: center;
	display: block;
}
.contact-form {
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 27px;
  
}
.contact-p {
  display: inline-block;
  text-align: left;
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 800;
  padding: 0 20px;
}
.formWrap {
  width: 73.53515625%;
  margin: auto;
  margin-top: 50px;
}
.formArea p {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.formArea:not(:first-child) {
  margin-top: 30px;
}
label {
  font-size: 14px;
  font-weight: 900;
  color: var(--color-sub);
  text-align: left;
}
input, textarea {
  width: 100%;
  font-size: 18px;
  padding: 12px 10px;
  border: 0;
  border-radius: 6px;
  color: var(--color-sub);
}
.wpcf7-form-control-wrap {
  width: 84.761904%;
}
.note {
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  color: var(--color-sub);
  margin-top: 24px;
}
.submit-btn {
  width: 155px;
  height: 40px;
  background: var(--color-main);
  color: var(--color-white);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  margin: auto;
  margin-top: 24px;
}
.sp-only {
  display: none;
}


@media screen and (max-width: 1023px) {
  .formWrap {
    width: 87.73333333%;
  }
  .wpcf7-form-control-wrap {
    width: 100%;
  }
  .formArea p {
    flex-direction: column;
  }
  .formArea p br {
    display: none;
  }
  input, textarea {
    width: 100%;
  }
  label {
    line-height: 2;
  }
}

@media screen and (max-width: 559px) {
  .sp-only {
    display: block;
  }
}



/* .input-area p{
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  width: 100%;
  padding: 0 0 20px 0;
}
.input-area {
  display: flex;
  justify-content: center;
   max-width: var(--container-max);
  width: 100%;
}
.site-contact-form{
  max-width: var(--container-max);
   width: 100%;
  padding: 22px;
  font-family: var(--font-main);
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: center;
}

.form-row{
  margin-bottom: 16px;
}

.row-horizontal{
  display: flex;
  gap: 20px;
  align-items: center;
  width: 100%; 
  max-width: 753px;
}

.row-horizontal.top-align{
  align-items: flex-start;
}

.row-horizontal label{
  width: 102px; 
  font-weight: 700;
  flex-shrink: 0;
  font-size: 14px;
  display: block;
}

/* 入力欄 */
.row-horizontal input[type="text"],
.row-horizontal input[type="email"],
.row-horizontal input[type="file"],
.row-horizontal textarea{
  flex: 1;
  border: 1px solid var(--color-white);
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 14px;
  background: #fff;
}

.row-horizontal textarea{
  min-height: 160px;
}

/* プライバシー同意 */
.checkbox-inline{
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
}


.submit-row{
  text-align: center;
}

.btn-submit{
  background: var(--color-main);
  color: var(--color-white);
  border: none;
  padding: 11px 63px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .08s ease, box-shadow .08s ease;
}

.btn-submit:active{ transform: translateY(1px); }

.btn-submit:disabled{ opacity: .6; cursor: not-allowed; } */

/* ▼ スマホ（幅600px以下）は縦並びに戻す */
/* @media (max-width: 650px){
  .contact-form {
    margin: 0 auto;
    padding: 20px;
  }
   .contact-form span {
  display: inline-block;
}
.contact-p {
  font-size: 11px;
  font-weight: 600;
}
  .row-horizontal{
    flex-direction: column;
    align-items: flex-start;
  }
  .row-horizontal label{
    width: auto;
  }
  .row-horizontal input,
  .row-horizontal textarea{
    width: 100%;
  }
  .form-p span{
    display: inline-block;
  }
} */

