<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

:root {
  --orange: #f29600;
}

/* ↓↓↓ under-fv ↓↓↓ */

.under-fv {
  width: 100%;
  height: 422px;
  position: relative;
}

@media (max-width: 768px) {
  .under-fv {
    /* height: 300px; */
    height: 220px;
  }
}

.under-fv .image {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.under-fv .image img {
  object-fit: cover;
  height: 100%;
}

.under-fv .logo {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translateX(-50%);
  width: 210px;
  /* height: 55px; */
  height: 36px;
}

@media (max-width: 768px) {
  .under-fv .logo {
    top: 30%;
    width: 125px;
    /* display: none; */
  }
}

.under-fv .page-title {
  position: absolute;
  bottom: -25px;
  left: 0;
  width: 100%;
  height: 113px;
}

.under-fv .page-title::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(128, 128, 128);
  mix-blend-mode: multiply;
}

.under-fv .page-title .group {
  position: relative;
  width: 100%;
  height: 100%;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  z-index: 1;
}

.under-fv .page-title .group .title {
  font-size: 2.7rem;
  font-weight: bold;
  line-height: 1;
}

.under-fv .page-title .group .caption {
  margin-top: 13px;
  font-family: 'Roboto', sans-serif;
  font-size: 1.4rem;
  letter-spacing: .01em;
  line-height: 1;
}

/* ↑↑↑ under-fv ↑↑↑ */

/* ↓↓↓ box1 ↓↓↓ */

.box1 {
  width: 100%;
  padding: 0 30px;
}

@media (max-width: 768px) {
  .box1 {
    padding: 0;
  }
}

.box1 .inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 75px 0 0;
}

@media (max-width: 768px) {
  .box1 .inner {
    max-width: initial;
    padding: 60px 0 0;
  }
}

.box1 .lead {
  font-size: calc((18 - 16) * ((100vw - 375px) / (1280 - 375)) + 16px);
  font-weight: bold;
  text-align: center;
  margin-bottom: 35px;
}

@media (min-width: 1281px) {
  .box1 .lead {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .box1 .lead {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .text-wrap {
    padding: 0 3.735%;
    max-width: 600px;
    margin: 0 auto;
    text-align: justify;
  }
}

.tel-box {
  height: 90px;
  background-color: #e6e6e6;
  margin-top: 35px;
  text-align: center;
}

@media (max-width: 768px) {
  .tel-box {
    width: 100%;
  }
}

.tel-box .cap {
  padding: 15px 0 0;
}

.tel-group {
  color: var(--orange);
  font-size: 1.4rem;
}

.tel-group .tel {
  font-size: 2.8rem;
  padding-left: 5px;
}

/* ↑↑↑ box1 ↑↑↑ */

/* ↓↓↓ box2 form-wrap ↓↓↓ */

.box2 {
  width: 100%;
}

.box2 .form-wrap {
  padding: 60px 30px 0;
}

@media (max-width: 768px) {
  .box2 .form-wrap {
    padding: 60px 0 0;
  }
}

.form-wrap .form-title {
  font-size: calc((27 - 24) * ((100vw - 375px) / (1280 - 375)) + 24px);
  font-weight: bold;
  text-align: center;
  margin-bottom: 60px;
}

@media (min-width: 1281px) {
  .form-wrap .form-title {
    font-size: 2.7rem;
  }
}

.form-wrap .main-formBox {
  max-width: 1000px;
  margin: 0 auto;
}

.main-formBox table {
  width: 100%;
}

.main-formBox table tr {
  width: 100%;
  padding: 3% 22px;
  border-top: 1px solid #e8ebeb;
  display: flex;
}

@media (max-width: 768px) {
  .main-formBox table tr {
    flex-direction: column;
    padding: 22px 4% 30px;
  }
}

.main-formBox table tr:last-child {
  border-bottom: 1px solid #e8ebeb;
}

.main-formBox table th {
  width: 30%;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: left;
}

@media (max-width: 768px) {
  .main-formBox table th {
    width: 100%;
    margin-bottom: 20px;
  }
}

.main-formBox table th span {
  margin-right: 12px;
  padding: 2px 0.68rem;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
}

.main-formBox table th span.req {
  background-color: #dc0000;
}

.main-formBox table th span.any {
  background-color: #728699;
}

.main-formBox table td {
  width: 70%;
}

@media (max-width: 768px) {
  .main-formBox table td {
    width: 100%;
  }
}

.main-formBox table td input,
.main-formBox table td textarea {
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", 'Noto Sans JP', sans-serif;
  width: 100%;
  height: 36px;
  padding: 0 10px;
  border: 1px solid #c8c8c9;
  transition: all 0.2s linear;
}

.main-formBox table td input:focus,
.main-formBox table td textarea:focus {
  border: 1px solid #9e9e9e;
  box-shadow: 0px 0px 4px 0px #c8c8c9;
}

.main-formBox table td input:focus::placeholder {
  color: transparent;
}

.main-formBox table td textarea {
  height: 156px;
  padding: 10px;
}

@media (max-width: 768px) {
  .main-formBox table td.radio {
    padding-left: 55px;
  }
}

.main-formBox table td.radio label {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 35px;
  margin-bottom: 10px;
  font-size: 1.6rem;
  font-weight: 300;
  position: relative;
  cursor: pointer;
  z-index: 2;
}

.main-formBox table td.radio .mwform-radio-field:last-of-type label {
  margin-bottom: 0;
}

.main-formBox table td input[type="radio"] {
  position: absolute;
  visibility: hidden;
  top: 0;
  left: 0;
  width: 26px;
  height: 26px;
  margin: 0;
}

input[type=radio]::before {
  content: '';
  display: block;
  visibility: visible;
  position: absolute;
  border: 1px solid #c8c8c9;
  border-radius: 100%;
  height: 24px;
  width: 24px;
  top: 0px;
  left: 0px;
  z-index: 5;
  transition: border .2s linear;
  z-index: 1;
}

input[type=radio]::after {
  content: '';
  visibility: visible;
  display: block;
  position: absolute;
  border-radius: 100%;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: auto;
  transition: all 0.2s linear;
}

input[type=radio]:checked::before {
  border: 1px solid var(--orange);
}

input[type=radio]:checked::after {
  background-color: var(--orange);
}

.main-formBox table td .cap {
  font-size: 1.4rem;
}

.mt-20 {
  margin-top: 20px;
}

.error {
  display: none;
  font-weight: bold;
}

.mw_wp_form_confirm .mailinput .confirm-hide+p,
.mw_wp_form_confirm .confirm-hide {
  display: none;
}

/* ↑↑↑ box2 form-wrap ↑↑↑ */

/* ↓↓↓ policy-wrap ↓↓↓ */

.policy-wrap {
  padding: 60px 30px 150px;
  border-bottom: 1px solid #333;
}

@media (max-width: 768px) {
  .policy-wrap {
    padding: 45px 4% 50px;
  }
}

.policy-wrap .inner {
  max-width: 800px;
  margin: 0 auto;
}

.policy-wrap .note {
  color: #dc0000;
  text-align: center;
}

.policy-box {
  width: 100%;
  height: 150px;
  margin: 30px auto 40px;
  padding: 25px;
  overflow-y: scroll;
  box-sizing: border-box;
  border: 1px solid #c8c8c9;
}

.policy-box ul li {
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.policy-wrap .check {
  text-align: center;
  margin-bottom: 40px;
}

.policy-wrap .check label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
}

.policy-wrap .check input[type="checkbox"] {
  position: absolute;
  visibility: hidden;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  margin: 0;
}

.policy-wrap .check input[type="checkbox"]::before {
  content: '';
  display: block;
  visibility: visible;
  position: absolute;
  border: 1px solid #c8c8c9;
  height: 16px;
  width: 16px;
  top: 0px;
  left: 0px;
  z-index: 5;
  transition: border .2s linear;
}

.policy-wrap .check input[type="checkbox"]:checked {
  background-color: var(--orange);
}

.policy-wrap .check input[type="checkbox"]:checked::before {
  border-color: var(--orange);
}

.policy-wrap .check input[type="checkbox"]::after {
  background-color: var(--orange);
}

.policy-wrap .check input[type="checkbox"]:checked:after {
  content: '';
  visibility: visible;
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  background-size: cover;
  background: url(/wp/wp-content/themes/arrgallery-2021/img/contact/icon-checkbox.svg) var(--orange) no-repeat;
}

.policy-wrap .submit-box {
  text-align: center;
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  .policy-wrap .submit-box {
    flex-direction: column;
    align-items: center;
  }
}

input[type="submit"] {
  width: 300px;
  height: 60px;
  margin: 0 10px;
  color: #fff;
  background-color: #dc0000;
  border: none;
  cursor: pointer;
}

input[type="submit"]:hover {
  opacity: 0.8;
}

.wrap {
  border-bottom: 1px solid #333;
  padding-bottom: 60px;
}

/* ↑↑↑ policy-wrap ↑↑↑ */

/* ↓↓↓ thanks page ↓↓↓ */
/* ↓↓ thanksbox ↓↓ */
.thanksbox {
  margin-top: 85px;
  margin-bottom: 45px;
}

.thanksbox .inner {
  padding: 0 17px;
}

.thanksbox .submit-comp,
.thanksbox .message .text,
.thanksbox .induction {
  text-align: center;
}

.thanksbox .submit-comp {
  font-size: 3rem;
  font-weight: bold;
  color: #fff;
  background: #F29600;
  line-height: 1;
  padding: 35px 0;
  margin-bottom: 40px;
}

.thanksbox .message {
  margin-bottom: 75px;
}

.thanksbox .message .text {
  font-size: 1.6rem;
  font-weight: 500;
}

.thanksbox .message .text:nth-of-type(1) {
  margin-bottom: 30px;
}

.thanksbox .induction {
  font-size: 2rem;
  font-weight: bold;
  color: #F29600;
}

@media (max-width: 768px) {
  .thanksbox .induction {
    font-size: 1.8rem;
  }
}

/* ↑↑ thanksbox  ↑↑ */

/* ↓↓ bnrbox ↓↓ */
.bnrbox {
  padding: 0 20px;
}

.bnrbox a {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 1000px;
  margin: 0 auto;
  transition: 300ms ease all;
}

.bnrbox a:hover {
  opacity: .8;
}

/* ↑↑ bnrbox  ↑↑ */
/* ↑↑↑ thanks page  ↑↑↑ */


/* ↓↓↓ other-link ↓↓↓ */

.other-link {
  margin-top: 95px;
}

@media (max-width: 768px) {
  .other-link {
    margin-top: 50px;
  }
}

/* ↑↑↑ other-link ↑↑↑ */
.p-country-name {
  display: none;
}</pre></body></html>