@charset "utf-8";
/* CSS Document */

.sv {
  background-image: url(../../image/sv/contact.jpg);
  background-position: 47% 5%;
}

.privacy {
  margin: 40px auto;
}

.privacy h3 {
  text-align: center;
  padding: 30px 15px;
  font-size: 22px;
}

.privacy_wrap {
  height: 500px;
  margin: 0 auto;
  overflow: scroll;
  border: 1px solid #cccccc;
  padding: 20px;
  background: #cccccc1f;
}

.privacy p {
  font-size: clamp(13px, 1.2vw, 15px);
}

.privacy_check {
  text-align: center;
  margin-top: 65px;
}

.pan_list {
  width: min(90%, 960px);
  margin: 0 auto;
}

/* -----------------------------------------------------------------------------
	form
 -------------------------------------------------------------------------------*/

#contents-primary {
  width: min(90%, 960px);
  margin: 100px auto;
}

.contact-primary .notes {
  text-align: center;
  padding-bottom: 65px;
}

.contact-primary .notes span {
  display: inline-block;
}

#mailform-layout {}

#mailform-layout .item {
  position: relative;
}

#mailform-layout .item .name {
  width: 400px;
}

#mailform-layout .item .answer {
  width: 100%;
  box-sizing: border-box;
  display: inline-block;
}

@media screen and (max-width: 750px) {
  #mailform-layout .item .answer {
    padding-left: 0;
    padding-top: 40px;
  }
}

#mailform-layout .required {
  background-color: #ca3e4e;
  display: inline-block;
  color: #ffffff;
  text-align: center;
  width: 50px;
  font-size: 13px;
  border-radius: 3px;
  margin-right: 10px;
}

#mailform-layout ul {
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.mailform-alart {
  background-color: #e3fff2;
  border: 1px solid #bae4d1;
  box-sizing: border-box;
  border-radius: 5px;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 15px;
  padding-bottom: 15px !important;
  margin-bottom: 30px;
  text-align: center;
}

.mailform-alart.error {
  background-color: #ffffff;
  border: 2px solid #ff5353;
  color: #ff5353;
  font-weight: bold;
}

.mailform-setup-alart {
  background-color: #ffffff;
  border: 1px solid #ff5353;
  box-sizing: border-box;
  border-radius: 5px;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 15px;
  padding-bottom: 15px !important;
  margin-bottom: 30px;
  text-align: center;
  color: #ff5353;
}

.mailform-setup-alart strong {
  display: block;
  text-align: center;
  margin-bottom: 10px;
  font-size: 20px;
}

.mailform-setup-alart p {
  margin: 0;
  padding: 0;
}

.mailform-box {
  background-color: #f2f2f2;
  padding: 30px !important;
  margin-bottom: 30px !important;
  box-sizing: border-box;
  border-radius: 5px;
  margin-top: 50px;
}

.mailform-box .title {
  font-size: 24px;
  display: block;
  padding-bottom: 10px;
  color: #ff6b6b;
  background-image: url("../contact/image/icon-mailplus.png");
  background-repeat: no-repeat;
  background-position: left 2px top 0;
  text-align: center;
}

.mailform-box p {
  margin: 0 !important;
  padding: 0 !important;
}

.sentok {
  font-size: 32px;
  text-align: center;
  color: #ff6b6b;
}

.add {
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 3px;
  width: 200px;
  height: 36px;
  margin-top: 5px;
}

.s_name {
  display: block;
  margin-bottom: 10px;
}

.button-limit {
  display: none !important;
}

/* input - text */

input[type=text] {
  width: 100%;
  background: #f1f1f1;
  padding: 8px;
  box-sizing: border-box;
  border-radius: 3px;
}

/* input - tel */

input[type=tel] {
  width: 100%;
  background: #f1f1f1;
  padding: 8px;
  box-sizing: border-box;
  border-radius: 3px;
}

/* input - email */

input[type=email] {
  background: #f1f1f1;
  padding: 8px;
  box-sizing: border-box;
  border-radius: 3px;
  width: 100%;
}

/* input - radio */

input[type=radio] {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

input[type=radio]+label {
  display: block;
  cursor: pointer;
  margin-top: 0.25em;
  margin-bottom: 0.25em;
  font-family: inherit;
}

input[type=radio]+label:before {
  width: 1.25em;
  height: 1.25em;
  display: inline-block;
  content: "";
  border-radius: 1.25em;
  vertical-align: middle;
  border: 2px solid #c8c8c8;
  background-color: #fff;
  margin: -2px 5px 0 0;
  -webkit-transition: border-color ease-in-out .15s, background-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s, background-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, background-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
}

input[type=radio]:hover+label:before {
  border-color: #c8c8c8;
  background-color: #c8c8c8;
  box-shadow: inset 0 0 0 0.25em #fff;
}

input[type=radio]:checked+label:before {
  border-color: #c8c8c8;
  background-color: var(--cl_blue);
  box-shadow: inset 0 0 0 0.25em #fff;
}

.radio-group label {
  margin-right: 1.5em;
}

.radio-group li {
  float: left;
}

/* input - checkbox */

.chk-group {
  position: relative;
  bottom: -5px !important;
  display: block;
}

.chk-group li {
  display: inline-block;
  padding-right: 20px;
}

.chk-group li label {
  display: block;
  position: relative;
  padding-left: 30px;
  padding-bottom: 5px;
  cursor: pointer;
  font-size: 18px;
}

.chk-group li label input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.indicator {
  position: absolute;
  top: 2px;
  left: 0;
  height: 20px;
  width: 20px;
  background: #e6e6e6;
  border-radius: 2px;
}

.chk-group li label:hover input~.indicator,
.chk-group li label input:focus~.indicator {
  background: #ccc;
}

.chk-group li label input:checked~.indicator {
  background: var(--cl_blue);
}

.chk-group li label:hover input:not([disabled]):checked~.indicator,
.chk-group li label input:checked:focus~.indicator {
  background: var(--cl_blue);
}

.chk-group li label input:disabled~.indicator {
  background: #e6e6e6;
  opacity: 0.6;
  pointer-events: none;
}

.indicator:after {
  content: '';
  position: absolute;
  display: none;
}

.chk-group li label input:checked~.indicator:after {
  display: block;
}

.chk-group li .checkbox .indicator:after {
  left: 8px;
  top: 4px;
  width: 4.5px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.chk-group li .checkbox input:disabled~.indicator:after {
  border-color: #7b7b7b;
}

/* item - age */

#mailform-layout ul.age {
  display: inline-block;
}

#mailform-layout ul.age li {
  float: left;
  width: 100px;
  margin-right: 5px;
}

#mailform-layout ul.age li input {
  width: 70px;
  border: 1px solid #cccccc;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 3px;
  margin-right: 5px;
}

#mailform-layout ul.age li:nth-of-type(1) {
  width: 120px
}

#mailform-layout ul.age li:nth-of-type(1) input {
  width: 90px;
}

/* item - postcode */

#mailform-layout .postcode {
  display: block;
  padding-bottom: 10px;
}

#mailform-layout .postcode input {
  border: 1px solid #cccccc;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 3px;
  margin-right: 5px;
}

#mailform-layout .postcode input:nth-of-type(1) {
  width: 60px;
}

#mailform-layout .postcode input:nth-of-type(2) {
  width: 80px;
}

#mailform-layout .postcode+input {
  width: 100%;
}

/* textarea */

#mailform-layout textarea {
  width: 100%;
  background: #f1f1f1;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 3px;
}

/* submit-button */

.submit-button {
  text-align: center;
  padding-top: 20px;
}

.submit-button button {
  display: inline-block;
  margin-left: 14px;
  margin-right: 14px;
  background-color: var(--cl_blue);
  color: var(--cl_wh);
  border: 2px solid var(--cl_blue);
  padding: 15px;
  padding-left: 50px;
  padding-right: 50px;
  position: relative;
  transition: 0.2s;
  border-radius: 5px;
}

.submit-button button:hover {
  background-color: var(--cl_wh);
  color: var(--cl_blue);
  border: 2px solid var(--cl_blue);
}

/* Design Template
 simple - 下線のみのシンプルなレイアウト
 table - テーブルタグで作成したようなレイアウト
 portable - タブレットスタイルでポップなレイアウト
*/

/* design - simple */
#mailform-layout.simple .item {
  border-bottom: 1px dotted #cccccc;
  display: flex;
  align-items: center;
  padding: 25px 0;
}

/* 追加CSS */

.form_content {
  align-items: initial;
}

#mailform-layout.simple .form_content {
  align-items: flex-start;
}

#mailform-layout .any {
  background-color: #929292;
  display: inline-block;
  color: #ffffff;
  text-align: center;
  width: 50px;
  font-size: 13px;
  border-radius: 3px;
  margin-right: 10px;
}

@media screen and (max-width: 750px) {

  #mailform-layout.simple .item {
    flex-direction: column;
    align-items: flex-start;
  }

  #mailform-layout .item .name {
    width: initial;
    display: flex;
    align-items: center;
  }

  #mailform-layout .item .answer {
    padding-top: 10px;
  }

  #mailform-layout .required, #mailform-layout .any {
    font-size: 15px;
  }

  .submit-button button {}
}