html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video,
a,
hr,
button {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ul,
ol {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

p {
  padding: 0;
  margin: 0;
}

html {
  font-size: 62.5%;
}

* {
  box-sizing: border-box;
}

body {
  color: #222222;
  line-height: 2;
  position: relative;
  font-size: 1.4rem;
  font-family: "Noto Sans JP";
  font-weight: 400;
  letter-spacing: 0.05em;
  width: 100%;
  font-feature-settings: "palt" 1;
  margin: 0;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.2rem;
  }
}

/* コンテンツ短い時のfooter最下部処理追加 */
body{
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
main{
  flex: 1;
}

.container {
  max-width: 1040px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

@media screen and (max-width: 768px) {
  .container {
    max-width: 100%;
    padding: 0 20px;
  }
}
img {
  max-width: 100%;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  text-decoration: none;
  color: #222222;
}

a:focus,
a:active {
  outline: none;
}

select, input, button, textarea, button {
  font: 99% Noto Sans JP, sans-serif;
}
@media screen and (max-width: 768px) {
  select, input, button, textarea, button {
    font: 97% Noto Sans JP, sans-serif;
  }
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #999999;
}

input::placeholder, textarea::placeholder {
  color: #999999;
}

.u-required {
  color: #FF0000;
  margin-right: 5px;
}

.error-message {
  display: none;
  color: #FF0000;
  font-size: 13px;
}
@media screen and (max-width: 768px) {
  .error-message {
    font-size: 9px;
  }
}

.p-header {
  position: fixed;
  top: 0;
  left: 0;
  padding: 30px 60px 10px;
  z-index: 9;
}
.p-header img {
  height: 23px;
}
.p-header .img-second {
  display: none;
}
.p-header.is-sticky .img-first {
  display: none;
}
.p-header.is-sticky .img-second {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .p-header {
    padding: 0;
  }
  .p-header h1 {
    line-height: 1;
    padding: 18px 21px 10px;
  }
  .p-header img {
    height: 14px;
  }
}

.c-mainVisual {
  position: relative;
}
.c-mainVisual::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0.6;
}
.c-mainVisual__image {
  display: flex;
}
.c-mainVisual__image figure {
  flex: 1 1 auto;
}
@media screen and (max-width: 768px) {
  .c-mainVisual__image {
    flex-wrap: wrap;
  }
  .c-mainVisual__image figure {
    flex: 0 0 50%;
  }
}
.c-mainVisual__content {
  position: absolute;
  left: 0;
  top: 58%;
  transform: translateY(-50%);
  width: 100%;
  color: #fff;
  z-index: 1;
}
.c-mainVisual__content h3 {
  font-size: 18px;
  font-family: "Garamond Premier Pro";
  line-height: 1.5;
  letter-spacing: 0;
  margin-bottom: 5px;
  font-weight: 400;
}
.c-mainVisual__content h2 {
  font-size: 36px;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 2px;
}
@media screen and (max-width: 768px) {
  .c-mainVisual__content {
    top: unset;
    bottom: 30px;
    transform: unset;
  }
  .c-mainVisual__content h3 {
    font-size: 14px;
  }
  .c-mainVisual__content h2 {
    font-size: 24px;
    letter-spacing: 1.5px;
  }
}

.p-contact .c-desc {
  margin: 65px 0 55px;
}
.p-contact .c-desc p {
  line-height: 29px;
}
.p-contact .c-desc p + p {
  margin-top: 18px;
}
@media screen and (max-width: 768px) {
  .p-contact .c-desc {
    margin: 37px 0 45px;
  }
  .p-contact .c-desc p {
    font-size: 12px;
    line-height: 26px;
  }
  .p-contact .c-desc p + p {
    margin-top: 10px;
  }
}
.p-contact .shop__list {
  display: none;
}
.p-contact .shop__list h2 {
  font-size: 15px;
  font-weight: 400;
  margin: 10px 0;
}

@media screen and (max-width: 768px) {
  .c-form {
    margin: 0 -20px;
  }
}
.c-form .table__row {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  border-bottom: 1px solid #E0E0E0;
  padding: 30px 0;
  width: 100%;
}
.c-form .table__row:first-child {
  border-top: 1px solid #E0E0E0;
}
@media screen and (max-width: 768px) {
  .c-form .table__row {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.c-form .table__title {
  width: 200px;
  height: 50px;
  display: flex;
  align-items: center;
  padding-right: 20px;
}
.c-form .table__title .u-required {
  margin-left: 6px;
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .c-form .table__title {
    width: 100%;
    padding-right: 0;
    height: auto;
    margin-bottom: 20px;
  }
}
.c-form .table__content {
  flex: 0 0 calc(100% - 200px);
}
.c-form .table__content--name {
  display: flex;
  gap: 19px;
}
.c-form .table__content--inputFile {
  padding-top: 13px;
  padding-bottom: 20px;
}
.c-form .table__content--inputFile .input-group {
  margin-top: 30px;
}
.c-form .table__content--inputFile .input-group .note {
  margin-bottom: 12px;
}
.c-form .table__content--inputFile .input-group span {
  font-size: 11px;
  letter-spacing: 0.6px;
  line-height: 1.5;
  padding-top: 14px;
  display: block;
  color: #999999;
}
@media screen and (max-width: 768px) {
  .c-form .table__content {
    flex: 0 0 100%;
  }
  .c-form .table__content--name {
    gap: 11px;
  }
  .c-form .table__content--inputFile .input-group span {
    font-size: 10px;
  }
}
.c-form select {
  width: 100%;
  padding: 16px 25px;
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='6' viewBox='0 0 8 6'%3E%3Cpath id='Path_1' data-name='Path 1' d='M4,2,8,8H0Z' transform='translate(8 8) rotate(180)'/%3E%3C/svg%3E%0A");
  background-color: transparent;
  background-repeat: no-repeat;
  background-size: 9px;
  background-position: 97% 50%;
  cursor: pointer;
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .c-form select {
    padding: 15px 20px;
    background-position: 95% 50%;
    margin-bottom: 25px;
  }
}
.c-form .input-text {
  width: 100%;
  padding: 16px 25px;
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}
@media screen and (max-width: 768px) {
  .c-form .input-text {
    padding: 15px 20px;
  }
}
.c-form .input-radio label {
  display: block;
  width: 100%;
  border: 1px solid #E0E0E0;
  line-height: 1.5;
  padding: 8px 10px 8px 40px;
  position: relative;
  cursor: pointer;
  height: 100%;
  display: flex;
  align-items: center;
}
.c-form .input-radio label::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border: 1px solid #E0E0E0;
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-appearance: none;
  transition: all 0.25s ease;
}
@media screen and (max-width: 768px) {
  .c-form .input-radio label {
    padding: 7px 10px 7px 35px;
  }
  .c-form .input-radio label::before {
    width: 6px;
    height: 6px;
  }
}
.c-form .input-radio input {
  display: none;
}
.c-form .input-radio input:checked + label {
  border-color: #000000;
}
.c-form .input-radio input:checked + label::before {
  background: #000;
  border-color: #000;
}
/* 追加 */
label.checked-label {
  border-color: #000000;
}

label.checked-label::before {
  background: #000;
  border-color: #000;
}

.c-form .input-group {
  flex: 1 1 auto;
}
.c-form .input-file {
  width: 100%;
  background: #F5F5F5;
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  padding: 30px 20px;
}
@media screen and (max-width: 768px) {
  .c-form .input-file {
    padding: 10px;
  }
}
.c-form .input-textarea {
  width: 100% !important;
  padding: 16px 25px;
  border: 1px solid #E0E0E0;
  min-height: 200px;
}
@media screen and (max-width: 768px) {
  .c-form .input-textarea {
    padding: 15px 20px;
  }
}
.c-form .input-checkbox label {
  cursor: pointer;
  display: inline-block;
  padding: 5px 30px 5px 45px;
  position: relative;
  width: auto;
}
.c-form .input-checkbox label::before {
  background: #fff;
  border: 1px solid #E0E0E0;
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  left: 5px;
  position: absolute;
  top: 20%;
}
.c-form .input-checkbox label::after {
  border-right: 2px solid #000000;
  border-bottom: 2px solid #000000;
  content: "";
  display: block;
  width: 5px;
  height: 9px;
  left: 12px;
  opacity: 0;
  position: absolute;
  top: 32%;
  transform: rotate(45deg);
}
.c-form .input-checkbox label a {
  text-decoration: underline;
  color: #000;
}
@media screen and (max-width: 768px) {
  .c-form .input-checkbox label {
    padding-left: 38px;
  }
  .c-form .input-checkbox label::before {
    width: 19px;
    height: 19px;
  }
}
.c-form .input-checkbox input {
  display: none;
}
.c-form .input-checkbox input:checked + label::after {
  opacity: 1;
}
.c-form .input-checkbox .checked-label::after {
  opacity: 1;
}

.c-form .c-row {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -7px 0;
}
.c-form .c-row__input {
  width: 25%;
  padding: 0 7px;
  margin-bottom: 14px;
}
@media screen and (max-width: 768px) {
  .c-form .c-row {
    margin: 0 -5px 0;
  }
  .c-form .c-row__input {
    width: 50%;
    padding: 0 5px;
    margin-bottom: 10px;
  }
}
.c-form__submit {
  text-align: center;
  margin: 70px 0 90px;
}
.c-form__submit .button {
  display: block;
  background: #2D2D2D;
  padding: 20px;
  border-radius: 40px;
  border: 1px solid #2D2D2D;
  color: #fff;
  min-width: 290px;
  text-align: center;
  margin: 48px auto 25px;
  outline: none;
  cursor: pointer;
  transition: all 0.25s ease;
}
.c-form__submit .button:hover {
  color: #000;
  background: #fff;
}
.c-form__submit .link {
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .c-form__submit {
    margin: 50px 0 60px;
  }
  .c-form__submit .button {
    min-width: 200px;
    margin-top: 25px;
    margin-bottom: 30px;
    padding: 18px 20px;
  }
}

.p-footer {
  background: #F5F5F5;
  text-align: center;
  padding: 24px 0;
}
.p-footer .copyright {
  font-size: 9px;
}
@media screen and (max-width: 768px) {
  .p-footer {
    padding: 20px 0;
  }
  .p-footer .copyright {
    font-size: 8px;
  }
}


/* 確認ページの設定追加 */
.mw_wp_form_confirm .note{
  display: none;
}
.mw_wp_form_confirm .shop__list h2{
  display: none;
}
.mw_wp_form_confirm .c-form .table__content{
  height: 50px;
  display: flex;
  align-items: center;
}
.mw_wp_form_confirm  .c-form .c-row{
  /* margin: 0 10px; */
  /* display: none; */
}
.mw_wp_form_confirm  .c-form .c-row__input{
  width: auto;
  padding: 0;
  margin-bottom: 0;
}
.mw_wp_form_confirm  .c-form .table__content--inputFile .input-group{
  margin-top: 0;
}
.mw_wp_form_confirm .c-form .table__content--inputFile .input-group span{
  display: none;
}
.mw_wp_form_confirm .c-form__submit input[name="submitBack"]{
  background: #fff;
  color: #2D2D2D;
}
.mw_wp_form_confirm .c-form__submit input[name="submitBack"]:hover{
  background: #2D2D2D;
  color: #fff;
}
.mw_wp_form_confirm .c-prefectures{
  display: block;
}
.mw_wp_form_confirm .shop__list{
  display: flex;
}
.mw_wp_form_confirm #list_jop_position{
  display: none;
}
.mw_wp_form_confirm .c-form .c-row__input{
  display: none;
}
.mw_wp_form_confirm .c-prefectures .c-row__input{
  display: block;
  margin-left: 15px;
}


/* エラーログ */
.mw_wp_form .error{
  color: #FF0000!important;
  font-size: 13px!important;
}
/* 店舗名 初期で非表示 */
.c-prefectures{
  display: none;
}
/*# sourceMappingURL=contact.css.map */

