@charset "UTF-8";
:root {
  --color-primary: #000;
  --color-white: #fff;
  --color-blue: #499BCB;
  --color-blue02: #F2F9FD;
  --main_accent: #4A9FD8;
  --main_dark: #003456;
  --main_light: #7AB6DE;
  --accent_green: #6BB78D;
  --main_accent: #4A9FD8;
}
/* ==================================================
	common
================================================== */
/* elements
-------------------------------------------------- */
form {
  display: inline;
}

label {
  vertical-align: middle;
}

input,
select,
optgroup,
option,
textarea {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  /* font-family: "Zen Kaku Gothic New", serif; */
  white-space: pre-wrap;
}
select {
  width: 100%;
  background: #fff;
  border: 1px solid #d5d3d0;
  height: 4rem;
  padding: 0.3rem 2rem;
}
input {
  border: none;
  padding: 0.3rem 2rem;
  background: #fff;
  border: 1px solid #000;
}
input[type="text"] {
  width: 100%;
  background: #fff;
  border: 1px solid #000;
  height: 4rem;
  padding: 0.3rem 2rem;
}
input[type="email"] {
  width: 100%;
  background: #fff;
  border: 1px solid #000;
  height: 4rem;
  padding: 0.3rem 2rem;
}
input[type="radio"] {
  margin-right: 0.3em;
  padding: 0;
}
input[type="checkbox"] {
  margin-right: 0.3em;
  padding: 0;
}
input[type="submit"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
  padding: 0;
  border: none;
  background-color: transparent;
}
.contact-submit__btn.dbd {
  -webkit-transition: none !important;
  transition: none !important;
  opacity: 0.5;
}
.contact-submit__btn.dbd input{
    cursor: default;
}
input::placeholder,
textarea::placeholder {
  color: #4d4d4d;
}
textarea {
  width: 100%;
  padding: 0.3rem 2rem;
  resize: vertical;
  overflow: auto;
  border: 1px solid #000;
  background: #fff;
}
/* ==================================================
	form
================================================== */

.form-contact dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    gap: 0 10rem;
    border-top: 1px solid var(--color-primary);
    @media screen and (max-width: 767px) {
        padding: 0;
    }
}
.form-contact dl:last-child{
  border-bottom: 1px solid var(--color-primary);
}
.form-contact dt,
.form-contact dd {
    padding: 3rem 0;
    @media screen and (max-width: 767px) {
        padding: 1.5rem;
    }
}
.form-contact dt {
    position: relative;
    width: 28rem;
    font-weight: 500;
    font-size: 1.8rem;
    padding-right: 6rem;
    background-color: var(--color-01);
}
@media screen and (max-width: 767px) {
    .form-contact dt {
        width: 100%;
        font-size: 1.5rem;
        padding-left: 7rem;
        padding-right: 0;
        
    }
}

.form-contact dt .form-title {
    line-height: 1;
    font-weight: 500;
}

.form-contact dd .txt-small {
    font-size: 1.4rem;
    display: block;
    margin-top: 1rem;
    @media screen and (max-width: 767px) {
        font-size: 1.2rem;
    }
}

.form-contact dt .form-label {
    position: absolute;
    top: 2.5rem;
    right: 2rem;
    margin: auto;
    display: inline-block;
    text-align: center;
    line-height: 1;
    font-weight: normal;
    width: 5.4rem;
    height: 3.5rem;
    line-height: 3.5rem;
    color: var(--color-white);
    background: var(--main_accent);
    border-radius: 5px;
    font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
    .form-contact dt .form-label {
        width: 4.5rem;
        height: 2.3rem;
        line-height: 2.3rem;
        font-size: 1.4rem;
        top: 1.5rem;
        right: auto;
        left: 1rem;
        
    }
}

.form-contact dt .ninni {
    background: var(--color-primary);
}
.form-contact dd {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
    .form-contact dd {
        width: 100%;
        display: block;
        border-top: none;
        font-size: 1.4rem;
        padding-top: 0;
    }
}
.form-contact dd input[type="radio"] {
    display: inline-block;
    margin-right: 10px;
}

.form-contact dd input[type="text"],
.form-contact dd input[type="password"],
.form-contact dd input[type="email"],
.form-contact dd input[type="tel"],
.form-contact dd select{
    padding: 3px 10px;
    height: 40px;
    width: 100%;
    border: 1px solid rgba(77,77,77,0.5);
    background: #fff;
    font-family: "Zen Maru Gothic", sans-serif;
}
.form-contact dd select{
    border: 1px solid rgba(77,77,77,0.5);
}
.form-contact dd input[type="text"]::placeholder,
.form-contact dd input[type="password"]::placeholder,
.form-contact dd input[type="email"]::placeholder,
.form-contact dd input[type="tel"]::placeholder {
    font-weight: normal;
    line-height: 1.5;
    font-family: "Zen Maru Gothic", sans-serif;
}
@media screen and (max-width: 767px) {
.form-contact dd input[type="text"]::placeholder,
.form-contact dd input[type="password"]::placeholder,
.form-contact dd input[type="email"]::placeholder,
    .form-contact dd input[type="tel"]::placeholder {
        font-size: 13px;
    }
}
.form-contact dd .ipt-address {
    max-width: 415px;
}

.form-contact dd input,
.form-contact dd select,
.form-contact dd optgroup,
.form-contact dd option,
.form-contact dd textarea {
    font-family: "Zen Maru Gothic", sans-serif;
    background: #fff;
}
@media screen and (max-width: 767px) {
.form-contact dd input,
.form-contact dd select,
.form-contact dd optgroup,
.form-contact dd option,
    .form-contact dd textarea {
        font-size: 1.4rem;
    }
}
.form-contact dd .form-row {
    display: flex;
}
.form-contact dd .form-zip {
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.form-zip-btn {
    background: #ba7b70;
    border-radius: 5px;
    padding: 7px 10px;
    line-height: 1.5;
    margin-left: 20px;
    border: none;
    color: #fff;
}

@media screen and (max-width: 767px) {
    .form-zip-btn {
        margin: 10px 0;
        display: block;
        margin-left: 40px;
    }
}

.form-zip-btn:hover {
    opacity: 0.8;
    transition: all 0.5s;
}

.form-state {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.form-contact dd .form-zip input[type="text"] {
    width: 31rem;
    max-width: 100%;
}
.box-select-wrap{
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.box-select {
    position: relative;
    width: 35rem;
    max-width: 100%;
    display: flex;
}

.box-select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
}

.box-select select::-ms-expand {
  display: none;
}

.box-select:after {
    position: absolute;
    content: "";
    border: solid black;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    right: 2rem;
    top: 35%;
}

select {
  width: 100%;
  padding: 5px 20px 5px 10px;
  height: 40px;
  border: 1px solid #888888;
  background-color: #f6f6f6;
  font-size: 1.6rem;
}

select:focus {
  border: 1px solid #d9dcdb;
  outline: none;
}

select option {
  color: #313131;
}
.form-contact dd textarea {
    width: 100%;
    height: 160px;
    padding: 5px 10px;
    resize: none;
    border: 1px solid #B3B3B3;
}

.form-contact dd textarea::placeholder {
    color: #a8a8a8;
    line-height: 1.5;
}
.form-contact li{
  list-style-type: none;
}
.form-contact dd .list-radio{
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 6rem;
}
.form-contact dd .list-radio li {
    position: relative;
}
.form-contact dd .list-radio .other{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-right: 0;
}
.form-contact dd .list-radio .other p{
  flex: 1;
  margin-left: 30px;
}
@media screen and (max-width: 767px) {
    .form-contact dd .list-radio li{
        width: 100%;
    }
    .form-contact dd .list-radio .other p{
      flex: auto;
      margin-left: 0;
      width: 100%;
      margin-top: 10px;
    }
    .form-contact dd .list-radio .other input[type="text"]{
        margin-left: 0;
    }
}

.form-contact dd .list-radio input[type="radio"] {
    width: 20px;
    height: 20px;
    border-color: #312718;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    opacity: 0;
}
.form-contact dd .list-radio label{
    position: relative;
    padding-left: 30px;
}
.form-contact dd .list-radio label:before{
    content: '';
    position: absolute;
    top: 1px;
    left: 0;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    border: 1px solid #312718;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    opacity: 0.5;
}
.form-contact dd .list-radio label:after{
    content: '';
    position: absolute;
    top: 4px;
    left: 3px;
    width: 14px;
    height: 14px;
    border-radius: 100%;
    background: #447fe0;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    opacity: 0;
}
.form-contact dd .list-radio input[type="radio"]:checked+label:before {
    border-color: #447fe0;
}
.form-contact dd .list-radio input[type="radio"]:checked+label:after {
    opacity: 1;
}
.form-contact dd .list-checkbox{
    display: flex;
    flex-wrap: wrap;
}
.form-contact dd .list-checkbox li {
    padding: 5px 30px;
    padding-right: 0;
    position: relative;
    margin-right: 2%;
    margin: 3px 0;
    width: 25%;
}

.form-contact dd .list-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    border-color: #d9dcdb;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
}

@media screen and (max-width: 767px) {
    .form-contact dd .list-checkbox li {
        width: 48%;
    }
}
@media screen and (max-width: 480px) {
    .form-contact dd .list-checkbox li{
        font-size: 13px;
        padding-left: 25px;
    }
    .form-contact dd .list-checkbox input[type="checkbox"] {
        width: 15px;
        height: 15px;
    }
}
.form-contact dd .select_time {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 50%;
}

.form-contact dd .select_time li {
    width: 47%;
}

.form-contact dd .select_time li select {
    width: calc(100% - 30px);
    height: 36px;
    border: 1px solid #000000;
}

.form-contact dd .flex .flex {
    margin: 5px 0;
    flex-wrap: nowrap;
}

.contact-submit {
    margin: 60px 0 20px;
    text-align: center;
}
@media screen and (max-width: 767px) {
    .contact-submit {
        margin: 30px 0;
        text-align: center;
    }
}
.contact-submit__flex{
  gap: 2rem 3rem;
}
.contact-submit__btn {
    text-decoration: none;
    position: relative;
    width: 35rem;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    overflow: hidden;
    cursor: pointer;
    max-width: 100%;
    height: auto;
    /* margin: auto; */
}
.contact-submit__btn input{
  cursor: pointer;
}
.contact-submit__btn.back span{
  right: auto;
  left: 1.8rem;
  transform: translateY(-50%) scale(-1,1);
}
.contact-submit__btn.back a{
  background-color: var(--color-white);
  color: var(--color-primary);
}
.contact-submit__btn.back .contact-submit__btn-arrow{
    right: auto;
    left: 2rem;
    transform: scale(-1, -1);
}
.contact-submit__btn input,
.contact-submit__btn a {
    background-color: var(--co-pink);
    /* color: var(--color-white); */
    border-radius: 30px;
    width: 100%;
    height: 100%;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    position: relative;
    border: none;
    outline: none;
    padding: 1.8rem 5rem;
    position: relative;
}
.contact-submit__btn .c-button__style02-arrow:after{
  background-color: var(--color-white);
}
.contact-submit__btn .c-button__style02-arrow{
  right: 1.8rem;
}
.contact-submit__btn-arrow{
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 100%;
    background-color: var(--co-pink);
    position: relative;
    display: inline-block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 2rem;
    margin: auto;
}
.contact-submit__btn-arrow:after{
    position: absolute;
    content: "";
    border: solid white;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    right: 0.3rem;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    width: 0;
    height: 0;
}
@media screen and (max-width: 767px) {
    .contact-submit__btn input,
    .contact-submit__btn a {
        font-size: 1.6rem;
        /* height: 50px; */
    }
}
@media screen and (min-width: 768px) {
    .contact-submit__btn:not(.dbd):hover {
        opacity: 0.8;
    }
    .contact-submit__btn:hover .arrow{
        background: #004097;
    }
}

.form-submit {
    margin-bottom: 30px;
}

.form-submit input {
    width: 15px;
    height: 15px;
    margin-right: 5px;
}
.flex-ipt p{
    width: 40%;
    margin-right: 20px;
}
.birthday li{
    display: flex;
    align-items: center;
    margin-right: 20px;
}
.birthday li p{
    margin-left: 10px;
}
.birthday li .box-select{
    width: 100px;
}
@media screen and (max-width: 767px) {
    .birthday li .box-select{
        width: 70px;
    }
    .birthday li .box-select:after{
        right: 5px;
    }
    .birthday li p{
        margin-left: 5px;
    }
}
.file-upload_input{ 
  position: relative;
  padding-left: 12rem;
  cursor: pointer;
  border: none;
}
.file-upload_input:hover{
  opacity: 0.8;
}
.file-upload_input::file-selector-button {
  font-weight: bold;
  font-size: 0;
  border: 0;
  border-radius: 10em;
  padding: 8px 1.6rem;
  text-align: center;
  background-color: transparent;
}
.file-upload_input::before {
  background: var(--color-gray);
  border-radius: 2px;
  content: 'ファイルを選択';
  left: 0;
  position: absolute;
  top: 0;
  width: 14rem;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  justify-content: center;
}
form .flex.justify-center{
    gap: 1rem 6rem;
}
.contact__confirm .form-content{
    margin-bottom: 6rem;
}
.contact-submit__btn-wrap{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1em 3rem;
}
.contact-submit__btn-wrap.is-confirm,
.contact-submit__btn-wrap.is-single {
  margin-top: 6rem;
}
.contact-submit__btn-wrap.is-single {
  justify-content: center;
}
.form-error {
  color: #d63939;
  font-size: 1.4rem;
  margin-top: 1rem;
}
.contact-status {
  padding: 6rem 0 12rem;
  text-align: center;
}
.contact-status__lead {
  font-size: 2.2rem;
  line-height: 1.8;
  margin-top: 4rem;
}
@media only screen and (max-width: 767px) {
  .contact-status {
    padding: 3rem 0 6rem;
  }
  .contact-status__lead {
    font-size: 1.8rem;
    margin-top: 2.5rem;
  }
}
