@charset "UTF-8";

* {
    font-style: normal
}

*, *::before, *::after {
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

*::before, *::after {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

html {
    font-style: normal;
    text-align: left;
    font-size: 16px;
    line-height: 1.3;
}

@media (max-width: 767px) {
    html {
        font-size: 14px;
    }
}

body {
    font-family: "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, "ＭＳ Ｐゴシック";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 500;
    min-height: 100%;
    margin: 0;
    padding: 0;
    color: #333;
}

body * {
    margin: 0;
    padding: 0;
}

h1,h2,h3,h4,h5,h6 {
    font-weight: inherit;
}

table {
    font-size: 1em;
    border-collapse: collapse;
    border-spacing: 0;
}

fieldset,img {
    font-size: 1em;
    border: 0;
}

ol,ul {
    font-size: 1em;
    list-style: none;
}

caption,th {
    font-size: 1em;
    text-align: left;
}

q:after,q:before {
    font-size: 1em;
    content: '';
}

abbr,acronym {
    border: 0;
    font-size: 1em;
}

small {
    font-size: .8em;
}

large {
    font-size: 1.2em;
}

th {
    font-weight: 100;
}

img {
    vertical-align: bottom;
}

button {
    border: 0;
    background-color: transparent;
}

button:focus {
    outline: 0;
}

:placeholder-shown {
    color: #9da0a4;
}

::-webkit-input-placeholder {
    color: #9da0a4;
}

:-moz-placeholder {
    color: #9da0a4;
    opacity: 1;
}

::-moz-placeholder {
    color: #9da0a4;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #9da0a4;
}

a {
    color: inherit;
    text-decoration: none;
}

.pcOnly {
  display: none;
}

@media (min-width: 768px) {
  .pcOnly {
    display: block;
  }
}

.spOnly {
  display: none;
}

@media (max-width: 767px) {
  .spOnly {
    display: block;
  }
}


/*------------------------------------------

    form

------------------------------------------*/

.formTop {
    margin: auto;
}

.formTop--title01 {
    line-height: 1.3;
    color: #222;
    font-weight: bold;
    text-align: center;
    margin-bottom: 35px;
}

.formTop--title02 {
    line-height: 1.3;
    color: #222;
    font-weight: bold;
    text-align: center;
}

.formTop--text01 {
    line-height: 1.8;
}

.formTop--text02 {
    line-height: 1.3;
    text-align: center;
}

.formTop--text01__bold {
    font-weight: bold;
}

.formTop--text01__must {
    color: #c30e1e;
}

.formStep {
    display: flex;
    justify-content: center;
}

.formStep--item {
    position: relative;
    display: flex;
    flex-direction: column;
    color: #222;
    text-align: center;
}

.formStep--item:nth-child(2)::before,
.formStep--item:last-child::before {
    position: absolute;
    content: "";
    height: 1px;
    background-color: #333;
}

.formStep--item:nth-child(2)::after,
.formStep--item:first-child::after {
    position: absolute;
    content: "";
    height: 1px;
    background-color: #333;
}

.formStep--item__text {
    opacity: 0.5;
    line-height: 1.2;
}

.formStep--item__active .formStep--item__text {
    opacity: 1;
}

.formStep--item span {
    display: flex;
    justify-content: center;
    font-family: Roboto,sans-serif;
    margin: auto;
    border: 1px solid #333;
    border-radius: 50%;
    line-height: 40px;
    box-sizing: border-box;
}

.formStep--item__active span {
    color: #fff;
    background-color: #333;
}

.formError {
    width: 100%;
    margin-top: 30px;
    background-color: #ffecee;
}

.formError--inner {
    margin: auto;
}

.formError--title {
    font-weight: bold;
    color: #c30e1e;
    line-height: 1.3;
}

.formError--list {
    margin-top: 10px;
}

.formError--listItem {
    position: relative;
    display: block;
    color: #c30e1e;
    padding-left: 15px;
    line-height: 1.5;
}

.formError--listItem::before {
    position: absolute;
    content: "";
    top: 9px;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #c30e1e;
}

.formTable--th {
    display: flex;
    align-items: center;
    font-weight: bold;
    text-align: left;
    line-height: 1.5;
    border-top: 1px solid #d1d1d1;
}

.formTable--td {
    display: block;
    margin-top: 20px;
}

.formTable--th .must {
    width: 50px;
    height: 19px;
    color: #c30e1e;
    font-size: 12px;
    text-align: center;
    border: 1px solid #c30e1e;
    margin-left: 10px;
}

input[type=button],
input[type=submit] {
    border: none;
    outline: none;
    padding: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.formTable input[type=email],
.formTable input[type=number],
.formTable input[type=tel],
.formTable input[type=text],
.formTable select,
.formTable textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: 16px;
    border-radius: 3px;
    border: none;
    box-sizing: border-box;
    color: #333;
    overflow: auto;
    background-color: #e3e3e3;
    margin-left: 0;
    transition: 0.1s linear;
}

.formTable input[type=email].is-changeColor,
.formTable input[type=number].is-changeColor,
.formTable input[type=tel].is-changeColor,
.formTable input[type=text].is-changeColor,
.formTable select.is-changeColor,
.formTable textarea.is-changeColor {
    background-color: #fff;
    box-shadow: 0 0 0 2px #e3e3e3;
}

.formTable input[type=email]:hover,
.formTable input[type=number]:hover,
.formTable input[type=tel]:hover,
.formTable input[type=text]:hover,
.formTable select:hover,
.formTable textarea:hover {
    background-color: #d9d9d9;
}

.formTable input[type=email]:focus,
.formTable input[type=number]:focus,
.formTable input[type=tel]:focus,
.formTable input[type=text]:focus,
.formTable select:focus,
.formTable textarea:focus {
    color: #333;
    box-shadow: 0 0 0 2px #acacac;
    background-color: #fff;
    outline: 0;
}

.formTable input[type=email],
.formTable input[type=number],
.formTable input[type=tel],
.formTable input[type=text],
.formTable select {
    height: 46px;
    padding-left: 15px;
}

.formTable input[type=email].error,
.formTable input[type=number].error,
.formTable input[type=tel].error,
.formTable input[type=text].error,
.formTable select.error,
.formTable textarea.error {
    background-color: #ffecee;
    box-shadow: 0 0 0 1px #c30e1e;
}

.formTable input[type=email].error:hover,
.formTable input[type=number].error:hover,
.formTable input[type=tel].error:hover,
.formTable input[type=text].error:hover,
.formTable select.error:hover,
.formTable textarea.error:hover {
    background-color: #ffdce0;
    box-shadow: 0 0 0 1px #c30e1e;
}

.formTable input[type=email].error.is-changeColor:focus,
.formTable input[type=number].error.is-changeColor:focus,
.formTable input[type=tel].error.is-changeColor:focus,
.formTable input[type=text].error.is-changeColor:focus,
.formTable select.error.is-changeColor:focus,
.formTable textarea.error.is-changeColor:focus {
    background-color: #fff5f6;
    box-shadow: 0 0 0 1px #c30e1e;
}

.formTable input[type=email].error.is-changeColor,
.formTable input[type=number].error.is-changeColor,
.formTable input[type=tel].error.is-changeColor,
.formTable input[type=text].error.is-changeColor,
.formTable select.error.is-changeColor,
.formTable textarea.error.is-changeColor {
    background-color: #fff5f6;
    box-shadow: 0 0 0 1px #c30e1e;
}

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

.formTable textarea {
    width: 100%;
    height: 150px;
    padding: 15px 20px;
}

.formTable input[type=radio] {
    display: none;
}

.formTable input[type=radio]+span {
    position: relative;
    padding-left: 33px;
    cursor: pointer;
}

.formTable input[type=radio]+span::before {
    position: absolute;
    top: -2px;
    left: 0;
    content: "";
    width: 20px;
    height: 20px;
    border: 2px solid #acacac;
    border-radius: 10px;
    background-color: #f1f1f1;
    box-sizing: border-box;
    transition: 0.1s linear;
}

.formTable--td .radio:not(:first-child) {
    margin-top: 17px;
}

.formTable--td .radio label:hover span:nth-of-type(2) {
    opacity: 0.75;
}

.formTable--td .radio label:hover input[type=radio]+span::before {
    border: 2px solid #767676;
    background-color: #d9d9d9;
}

.formTable .formTable--td .radio input[type=radio]:checked+span::before {
    border: 6px solid #333;
    background-color: #f1f1f1;
}

.formTable--td .radio label input[type=radio].error+span::before {
    border: 2px solid #c30e1e;
    background-color: #ffecee;
}

.formTable--td .radio label:hover input[type=radio].error+span::before {
    background-color: #ffd5da;
}

.formTable .formTable--td .radio label input[type=radio]:checked.erorr+span::before {
    border: 6px solid #333;
    background-color: #f1f1f1;
}

.inputStyle--radio {
    display: flex;
    margin-bottom: 20px;
}

.inputStyle--radio__label {
    padding-top: 12px;
}

.inputStyle--radio__inner {
    width: 100%;
}

.formTable--td .question {
    line-height: 1.5;
}

.formTable--td .question a {
    text-decoration: underline;
    transition: .1s linear;
}

.inputStyle--2col__item {
    display: flex;
    align-items: center;
}

.inputStyle--mail {
    font-size: 14px;
}

.inputStyle--mail__text {
    color: #c30e1e;
    line-height: 1.5;
    margin-bottom: 10px;
}

.inputStyle--mail__input {
    width: 100%;
}

.inputStyle--mail__inner {
    display: block;
}

.inputStyle--mail__innerText {
    margin: 23px 0 10px;
}

.inputStyle--address__input {
    width: 100%;
    margin-top: 20px;
}

.inputStyle--select {
    position: relative;
}

.inputStyle--select::before {
    position: absolute;
    content: "";
    top: calc(50% - 7px);
    right: 15px;
    width: 7px;
    height: 7px;
    border-top: 1px solid #333;
    border-right: 1px solid #333;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

.columnBlock {
    background-color: #f0f0f0;
    margin-top: 20px;
}

.columnBlock--inner {
    margin: auto;
}

.columnBlock--title {
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

.columnBlock--text {
    line-height: 1.5;
}

.columnBlock--text:last-child {
    margin-top: 20px;
}

.columnBlock--text a {
    position: relative;
    text-decoration: underline;
    transition : 0.1s linear;
}

.columnBlock--text a::after {
    content: url(/cmn/img/icon-blank.svg);
    width: 10px;
    display: inline-block;
    vertical-align: middle;
    margin: 0 5px;
}

.formButton {
    margin: auto;
    text-align: center;
}

.formButton--text {
    margin-bottom: 25px;
    text-align: left;
    line-height: 1.8;
}

.formButton--text__bold {
    font-weight: bold;
}

.formButton--button,
.formButton--submit {
    position: relative;
    color: #fff;
    line-height: 1;
    text-align: center;
    margin: auto;
}

.formButton--submit {
    background-color: #3e3a39;
}

.formButton--button input[type=button] {
    background-color: #3e3a39;
}

.formButton--button span,
.formButton--submit span {
    position: absolute;
    z-index: 5;
    top: calc(50% - 9px);
    left: 0;
    right: 0;
    margin: auto;
}

.formButton--button::before,
.formButton--submit::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    content: '';
    background-color: #861c3c;
    transform-origin: left top;
    transform: scale(0, 1);
    transition: all .3s;
    height: 100%;
    opacity: 0.25;
    z-index: 1;
}

.formButton--button:hover::before,
.formButton--submit:hover::before {
    transform-origin: left top;
    transform: scale(1, 1);
    opacity: 1;
}

.formButton--button::after,
.formButton--submit::after {
    content: '';
    background: url(/cmn/img/arrow-md-w.svg) no-repeat;
    position: absolute;
    z-index: 3;
}

/*確認*/
.confirmation .formTable--th {
    font-size: 18px;
}

.confirmation .formTable--td {
    line-height: 1.5;
    margin-top: 10px;
}

.confirmation .formTable--td__last {
    border-bottom: 1px solid #d1d1d1;
}

.confirmation .formButton {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.confirmation .formButton a {
    position: relative;
    line-height: 1;
}

.confirmation .formButton a::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    content: '';
    background-color: #e6e6e6;
    transform-origin: left top;
    transform: scale(0, 1);
    transition: all .3s;
    height: 100%;
    opacity: 0.25;
    z-index: 1;
}

.confirmation .formButton a span {
    position: absolute;
    z-index: 5;
    left: 0;
    right: 0;
    margin: auto;
}

.confirmation .formButton a:hover::before {
    transform-origin: left top;
    transform: scale(1, 1);
    opacity: 1;
}

.confirmation .formButton a::after {
    content: '';
    background: url(/cmn/img/arrow-lg.svg) no-repeat;
    position: absolute;
    transform: scale(-1, 1);
    z-index: 3;
}


/*PC*/
@media screen and (min-width: 768px) {
/*基本*/
.form,
.confirmation,
.completion {
    padding-top: 85px;
    width: 100%;
    min-width: 1024px;
    margin: auto;
}

.formTop {
    width: 700px;
}

.formTop--title01 {
    font-size: 36px;
    margin-top: 45px;
}

.formTop--title02 {
    font-size: 36px;
    margin: 45px 0 10px;
}

.formTop--text01 {
    margin-top: 50px;
}

.formTop--text02 {
    margin-bottom: 35px;
}

.formStep--item {
    width: 50%;
    font-size: 14px;
}

.formStep--item:first-of-type,
.formStep--item:last-of-type {
    width: 25%;
}

.formStep--item:nth-child(2)::before,
.formStep--item:last-child::before {
    width: calc(50% - 20px);
    top: 20px;
    left: 0;
}

.formStep--item:nth-child(2)::after,
.formStep--item:first-child::after {
    width: calc(50% - 20px);
    top: 20px;
    right: 0;
}

.formStep--item span {
    width: 40px;
    height: 40px;
    font-size: 22px;
}

.formStep--item__text {
    margin-top: 12px;
}

.formError--inner {
    width: 700px;
    padding: 30px 0;
}

.formError--title {
    font-size: 18px;
}

.formTable {
    width: 700px;
    margin: 40px auto 0;
}

.formTable--th {
    font-size: 23px;
    padding-top: 40px;
}

.formTable--td {
    padding-bottom: 40px;
}

.formTable select {
    width: 300px;
}

.formTable--td .radio__textInner {
    width: 700px;
    margin: 10px 0 0 30px;
}

.formTable--td .radio__text input[type=text] {
    width: 100%;
}

.formTable--td .question {
    margin-bottom: 15px;
}

.formTable--td .question a:hover {
    text-decoration: none;
    opacity: 0.75;
}

.inputStyle--radio__text,
.inputStyle--tel__text,
.inputStyle--post__text,
.inputStyle--address__text {
    font-size: 14px;
    margin-top: 10px;
}

.inputStyle--2col {
    display: flex;
}

.inputStyle--2col__item {
    width: 45%;
}

.inputStyle--2col__label {
    margin-right: 25px;
}

.inputStyle--2col__labelKana {
    margin-right: 8px;
}

.inputStyle--2col .inputStyle--2col__input {
   width: 250px;
}

.inputStyle--radio__inner input[type=text] {
    width: 100%;
}

.inputStyle--tel__input,
.inputStyle--post__input {
    width: 300px;
}

.inputStyle--select {
    width: 300px;
}

.columnBlock--inner {
    width: 700px;
    padding: 40px 0;
}

.columnBlock--title {
    font-size: 23px;
}

.formButton {
    width: 700px;
    padding: 50px 0 120px;
}

.formButton--text {
    text-align: center;
}

.formButton--button {
    height: 65px;
    font-size: 18px;
}

.formButton--submit {
    width: 430px;
    height: 65px;
    font-size: 18px;
}

.formButton--button input[type=button] {
    width: 430px;
    height: 65px;
}

.formButton--button::after,
.formButton--submit::after {
    top: calc(50% - 4px);
    height: 8px;
    width: 35px;
    right: 15px;
}

.columnBlock--text a:hover {
    text-decoration: none;
    opacity: 0.75;
}

.columnBlock--text a:hover::after {
    opacity: 0.75;
}


/*確認*/
.confirmation .formTable--th {
    padding-top: 30px;
}

.confirmation .formTable--td {
    padding-bottom: 25px;
}

.confirmation .formButton a {
    width: 250px;
    height: 65px;
    padding: 20px;
    color: #333;
    text-align: center;
    text-decoration: none;
    border: 1px solid #3e3a39;
    box-sizing: border-box;
    cursor: pointer;
}

.confirmation .formButton a::after {
    top: calc(50% - 4px);
    height: 8px;
    width: 35px;
    left: 15px;
}

.confirmation .formButton a span {
    top: calc(50% - 9px);
}

/*完了*/
.completion .columnBlock {
    width: 700px;
    padding: 40px 0;
    margin: 60px auto 120px;
    background-color: #fff;
    border-top: 1px solid #d1d1d1;
    border-bottom: 1px solid #d1d1d1;
    text-align: center;
}

.completion .columnBlock--inner {
    width: 100%;
    padding: 0;
}

.completion .columnBlock--title {
    font-size: 18px;
    font-weight: bold;
}

}



/*SP*/
@media screen and (max-width: 767px) {
/*基本*/
.form,
.confirmation,
.completion {
    padding-top: 46px;
}

.formTop {
    width: 100%;
    margin: auto;
}

.formTop--title01 {
    font-size: 23px;
    margin-top: 25px;
}

.formTop--title02 {
    font-size: 23px;
    margin: 25px 0 5px;
}

.formTop--text01 {
    font-size: 14px;
    padding: 0 10px;
    margin-top: 20px;
}

.formTop--text02 {
    font-size: 15px;
    padding: 0 10px;
    margin-bottom: 20px;
}

.formStep--item {
    width: 33.3%;
    font-size: 10px;
}

.formStep--item:nth-child(2)::before,
.formStep--item:last-child::before {
    width: calc(50% - 16.5px);
    top: 16.5px;
    left: 0;
}

.formStep--item:nth-child(2)::after,
.formStep--item:first-child::after {
    width: calc(50% - 16.5px);
    top: 16.5px;
    right: 0;
}

.formStep--item span {
    width: 33px;
    height: 33px;
    font-size: 17px;
    align-items: center;
}

.formStep--item__text {
    margin-top: 5px;
}

.formError--inner {
    padding: 25px 10px;
}

.formError--title {
    font-size: 16px;
}

.formError--listItem {
    font-size: 14px;
}

.formTable {
    width: 100%;
    margin: 25px auto 0;
}

.formTable--th,
.formTable--td {
    margin: 0 10px;
}

.formTable--th {
    justify-content: space-between;
    font-size: 20px;
    padding-top: 25px;
}

.formTable--td {
    padding-bottom: 25px;
    margin-top: 12px;
}

.formTable input[type=text] {
    width: 100%;
}

.formTable select {
    width: 100%;
}

.formTable--td .radio__textInner {
    margin: 10px 0 0 30px;
}

.formTable--td .question {
    font-size: 14px;
    margin-bottom: 20px;
}

.inputStyle--radio__text,
.inputStyle--tel__text,
.inputStyle--post__text,
.inputStyle--address__text {
    font-size: 12px;
    margin-top: 10px;
}

.inputStyle--mail__text,
.inputStyle--mail__innerText {
    font-size: 12px;
}

.inputStyle--2col__label {
    font-size: 14px;
    margin-right: 20px;
}

.inputStyle--2col__item:not(:first-child) {
    margin-top: 10px;
}

.inputStyle--2col__inputInner {
    width: 100%;
}

.inputStyle--2col__labelKana {
    font-size: 14px;
    width: 35px;
    margin-right: 3px;
}

.inputStyle--tel__input,
.inputStyle--post__input {
    width: 100%;
}

.inputStyle--select {
    width: 45%;
}

.columnBlock--inner {
    padding: 30px 10px;
}

.columnBlock--title {
    font-size: 18px;
}

.columnBlock--text {
    font-size: 14px;
}

.formButton {
    padding: 30px 10px 50px;
}

.formButton--text {
    font-size: 14px;
}

.formButton--button {
    width: 100%;
    max-width: 355px;
    height: 58px;
    font-size: 16px;
    text-align: center;
}

.formButton--submit {
    width: 100%;
    max-width: 355px;
    height: 58px;
    font-size: 16px;
}

.formButton--button input[type=button] {
    width: 100%;
    height: 58px;
}

.formButton--button span {
    top: calc(50% - 8px);
}

.formButton--button::after,
.formButton--submit::after {
    top: calc(50% - 2.5px);
    height: 5px;
    width: 25px;
    right: 15px;
}

/*確認*/
.confirmation .formButton {
    flex-direction: column-reverse;
    padding: 40px 10px 50px;
    margin-top: 0;
}

.confirmation .formButton a {
    width: 200px;
    height: 44px;
    color: #333;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    line-height: 1;
    border: 1px solid #3e3a39;
    box-sizing: border-box;
    padding: 15px;
    margin: 15px auto 0;
    cursor: pointer;
}

.confirmation .formButton a::after {
    top: calc(50% - 2.5px);
    height: 5px;
    width: 25px;
    left: 15px;
}

/*完了*/
.completion .columnBlock {
    width: 100%;
    margin: 20px auto 50px;
    background-color: #fff;
    text-align: center;
}

.completion .columnBlock--text {
    font-size: 16px;
}

.completion .columnBlock--inner {
    padding: 40px 0;
    margin: 0 10px;
    border-top: 1px solid #d1d1d1;
    border-bottom: 1px solid #d1d1d1;
}

.completion .columnBlock--title {
    font-size: 18px;
    font-weight: bold;
}

}
