@charset "UTF-8";
/* 変数 */
/* from modern.css */
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
      text-size-adjust: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* Set shorter line heights on headings and interactive elements */
h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1, h2,
h3, h4 {
  text-wrap: balance;
  font-size: 26px;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Inherit fonts for inputs and buttons */
input, button,
textarea, select {
  font: inherit;
}

* {
  margin: 0;
  padding: 0;
}

html, body {
  overflow-x: hidden;
}

body {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
  font-size: 100%;
  letter-spacing: 0.02em;
  line-height: 1.5;
}

a {
  text-decoration: none !important;
}

* a {
  text-decoration: none !important;
  color: unset;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.3;
}

p {
  line-height: 1.75;
}

img {
  display: block;
  max-width: 100%;
}

fieldset {
  margin: 0;
  border: 0;
  padding: 0;
}

button {
  background-color: transparent;
  border: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  outline: none;
  outline: inherit;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

input[type=text], input[type=number], input[type=email], input[type=tel], select, textarea {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: inherit;
  line-height: 1.5;
  color: #333333;
  padding: 0.3em 0.5em 0.4em;
  border: 1px solid #CCC;
  border-radius: 4px;
}
input[type=text]:focus, input[type=number]:focus, input[type=email]:focus, input[type=tel]:focus, select:focus, textarea:focus {
  outline: 2px solid #00AFAA;
}
input[type=text]::-webkit-input-placeholder, input[type=number]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder, input[type=tel]::-webkit-input-placeholder, select::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #aaa;
}
input[type=text]::-moz-placeholder, input[type=number]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=tel]::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  color: #aaa;
}
input[type=text]:-ms-input-placeholder, input[type=number]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, input[type=tel]:-ms-input-placeholder, select:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #aaa;
}
input[type=text]::-ms-input-placeholder, input[type=number]::-ms-input-placeholder, input[type=email]::-ms-input-placeholder, input[type=tel]::-ms-input-placeholder, select::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #aaa;
}
input[type=text]::placeholder, input[type=number]::placeholder, input[type=email]::placeholder, input[type=tel]::placeholder, select::placeholder, textarea::placeholder {
  color: #aaa;
}

label {
  color: #333333;
}

/* フォーム系リセット、ベースデザインは baseに記載 */
/* フォーム系パーツ */
.is-required label {
  position: relative;
}
.is-required label::before {
  content: "必須";
  display: inline-block;
  padding: 0.2em 0.5em;
  font-size: 0.688rem;
  line-height: 1;
  color: #ffffff;
  background-color: #FF6E00;
  border-radius: 2px;
  margin-right: 0.5em;
}

.is-optional label::before {
  position: relative;
  content: "任意";
  display: inline-block;
  padding: 0.2em 0.5em;
  font-size: 0.688rem;
  line-height: 1;
  color: #ffffff;
  background-color: #aaa;
  border-radius: 2px;
  margin-right: 0.5em;
}

label {
  font-weight: 700;
}

.is-ok label > span {
  position: relative;
}
.is-ok label > span::after {
  content: "OK";
  display: inline-block;
  padding: 0.2em 0.5em;
  font-size: 0.688rem; /* 11px */
  line-height: 1;
  color: #ffffff;
  background-color: #00AFAA;
  border-radius: 2px;
  margin-left: 0.5em;
}
.is-ok label > span::before {
  position: absolute;
  content: "";
  display: inline-block;
  position: absolute;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 6px;
  height: 10px;
  right: -15px;
  top: 6px;
  border-bottom: 2px solid #00AFAA;
  border-right: 2px solid #00AFAA;
}


.actions {
  position: relative;
  width: 100%;
  height: 45px;
  margin: 0.5em auto;
  background-color: #00afaa;
  border: none;
  border-radius: 6px;
  line-height: 1;
  -webkit-box-shadow: 0 2px 10px rgba(129, 129, 135, 0.4);
          box-shadow: 0 2px 10px rgba(129, 129, 135, 0.4);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
}

.actions .hs-button {
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  width: 100%;
  height: 100%;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
}

.hs-form-required{
  color: #E56300;
}

.hs-error-msgs.inputs-list li{
  list-style: none;
}
.hs-error-msg{
  font-size: 14px;
  color: #FF4400;
}
.hs-form input, .lp .contact-form .is-required div.input-row select, .hs-form textarea {
  background: #F7F8FA;
  /*border: #e4e4e4 1px solid;*/
  margin-bottom: 10px;
}
.hs-form textarea,.hs-form select {
  background: #FFFEED;
  border: #e4e4e4 1px solid;
  appearance:auto;
}

/*フォーム*/
.right {
  margin-top: 30px;
}

.right .title {
  text-align: center;
  margin: 20px;
}

.right .tx-orange {
  color: #00afaa;
}
.right .tx-bigger-16 {
  font-size: 1.6em;
  margin: 5px;
}
.right .contact-form {
  width: 100%;
  background-color: #E5E5EB;
  /*margin: 0 auto;*/
  position: relative;
  padding: 10px 50px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
}

.right .contact-form .hs-richtext h3 {
  margin-bottom: 20px;
}
.right .contact-form .hs-richtext h3 span {
  font-size: 1.2rem;
  color: #181b39 !important;
}
.right .contact-form .title {
  text-align: center;
  margin-bottom: 0px;
}
.right .contact-form input {
  display: block;        
  margin: 0 auto;
}

.right .contact-form input #firstname-8828e342-7043-491e-b0ba-fe7f44bcb9a1{
}
.right .contact-form form fieldset {
  margin: 0 auto !important;
  padding: 0 !important;
  max-width: 100% !important;
}

.right .contact-form .form-wrap {
  /*max-width: 450px;*/
  margin: 0 auto;
  width: 100%;
}

.right .contact-form .form-wrap form {
  text-align: center;
}
.right .contact-form .form-wrap .hs-input ,
.right .contact-form .form-wrap textarea {
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100% !important;
  box-sizing: border-box !important;
}
.right .contact-form .hs-fieldtype-text,
.right .contact-form .hs-fieldtype-phonenumber,
.right .contact-form .hs-fieldtype-select{
  margin-bottom: 12px;
  position: relative;
  width: 100%;
  max-width: 100%;
}
/* HubSpotフォームの左右マージン対策 */
form.hs-form fieldset.form-columns-1 .input,
form.hs-form fieldset.form-columns-2 .input {
  margin-right: 0 !important;
  margin-left: 0 !important;
  width: 100% !important;
  box-sizing: border-box;
}

/* フォームreのエラーメッセージ */
.right .contact-form .hs-error-msgs{
  width: 100%;
  font-size: 75%;
  bottom:-9.4px;
  padding-left: 10px;
  text-align: left;
}

.right .contact-form label:not(.hs-error-msgs) {
  display: block;
  margin-right: 16px;
  width: 100%;
  font-size: 85%;
}


.privacy_link {
  text-align: center;
  font-size: 12px;
  margin-top: 5px;
}
.privacy_link a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.privacy_link a,
.privacy_link a:link,
.privacy_link a:hover,
.privacy_link a:active,
.privacy_link a:visited {
  color: #0f5a9b;
}
.privacy_link a .tx,
.privacy_link a:link .tx,
.privacy_link a:hover .tx,
.privacy_link a:active .tx,
.privacy_link a:visited .tx {
  text-decoration: underline !important;
  margin-right: 0.3em;
}

.privacy_link a:visited {
  color: #999;
}

.inq-pc .contact-form .sec-inner {
  padding-bottom: 0;
}

/* pc form page 用のスタイル */
.inq-pc header {
  width: 100%;
  background: #ffffff;
  border-bottom: 3px solid #E5E5EB;
  height: 70px;
  padding-top: 20px;
}
.inq-pc header .header-inner {
  width: 1200px;
  margin-right: auto;
  margin-left: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 24px;
}
.inq-pc header .header-inner .logo img {
  height: 30px;
  width: auto;
}

/* ボタンのon/off */
.btn-container {
  display: none;
  text-align: center;
}
.btn-container.display {
  display: block;
}

/* メインのコンテンツ */
.inq-pc .main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 1166px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-right: auto;
  margin-left: auto;
  min-height: 100%;
  /*margin-bottom: -50px;*/
}
.inq-pc .box {
  padding: 0 24px;
  margin-bottom: 30px;
}
.inq-pc .main .box .right {
}
.inq-pc .main .box {
  display: flex;
  
}
.inq-pc .main .right {
  width: 50%;
  padding: 0px 0 10px 12px;
}
.inq-pc .main .left {
  width: 50%;
  padding-right: 12px;
}
.inq-pc .main::after {
  content: "";
  display: block;
  height: 50px;
}
.inq-pc.thanks .main {
  display: block;
  text-align: center;
}
.inq-pc.thanks .main .main-tx {
  margin-top: 100px;
}
.inq-pc.thanks .main .main-tx p {
  margin-bottom: 20px;
}
.inq-pc .hd1 {
  width: 100%;
  height: 48px;
  font-size: 26px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #ffffff;
  background: #00AFAA;
  margin-top: 30px;
}

.left .materials-wrap {
  width: 100%;
  height: auto;
}
.left .materials-wrap  img {
  border: 1px solid #E5E5EB; 
}
.left .materials-wrap .materials-wrap-top{
  margin: 10px 0;
}

.left .materials-wrap .materials-wrap-small{
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.left .materials-wrap .materials-wrap-small img {
  width: 32.5%;
  margin-bottom: 5px;
}
.left .content-shirushi {
  background-color: #F7F8FA;
  color: #181b39;
  display: flex;
  flex-direction: column;     /* 縦方向に並べる */
  justify-content: center;    /* 上下中央揃え */
  align-items: center;
  padding: 20px;
}
.left .content-shirushi h5 {
  font-size: 18px;
  margin-bottom: 10px;
}
.left .content-shirushi .content-shirushi-text {
  display: flex;
  align-items: center;
  justify-content: center;
}
.left .content-shirushi ul {
  list-style: none;
  /*display: grid;
  grid-template-columns: repeat(2, 1fr); /* 横2列 */
  /*gap: 8px;
  width: 70%;*/
}
.left .content-shirushi ul li {
  position: relative;
  margin: 5px;
  display: flex;
  align-items: center;
  width: auto;
  font-size: 14px;
}
.left .content-shirushi ul li::before {
  content: "";
  display: block;
  width: 0.7rem;
  height: 0.35rem;
  border-left: 2px solid #181b39;
  border-bottom: 2px solid #181b39;
  transform: rotate(-45deg);
  margin-right: 6px;
}
.left .content-shirushi h4{
  margin-left: 30px;
}
.main .btn-wrap .button {
  color: #00afaa;
  font-weight: 700;
}
.inq-pc #footer {
  width: 100%;
  height: 50px;
  text-align: center;
  background: #191B38;
  font-size: 12px;
  color: #E5E5EB;
  padding: 10px 1em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: static;
  bottom: 0;
}