@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;
}

/* 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;
  scroll-behavior: smooth;
}

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.5;
}

h1 {
  font-size: 1.75rem;
}
@media screen and (min-width: 768px) {
  h1 {
    font-size: 2rem;
  }
}

h2 {
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  h2 {
    font-size: 2rem;
  }
}

h3 {
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  h3 {
    font-size: 1.5rem;
  }
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.125rem;
}

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

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],
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-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;
}
br.u-pc-hidden{
  display: inline;
}
@media screen and (min-width: 768px) {
br.u-pc-hidden{
  display: none;
}
}

#header {
  width: 100%;
  background: #ffffff;
  padding: 0;
  position: relative;
  box-shadow: 1px 1px 7px 3px rgba( 0, 0, 0, 0.1 );
  top: 0;
  z-index: 999;
  
}
@media screen and (min-width: 768px) {
  #header {
    padding: 0;
    position: fixed;
  }
}
#header .header-inner {
  width: 100%;
  height: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 768px) {
  #header .header-inner {
    max-width: 1166px;
    width: 100%;
    height: 70px;
    margin-right: auto;
    margin-left: auto;
  }
}
#header .header-inner img.logo {
  width: 130px;
  height: 25px;
  margin-left: 3vw;
}
@media screen and (min-width: 768px) {
  #header .header-inner img.logo {
    width: 156px;
    height: 30px;
  }
}
#header .header-inner .header-form {
    display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  text-align: right;
  }
#header .header-inner .header-form .tel-box {
  display: flex;
  align-items: center;
  background-color: #181b39;
  padding: 0 10px;
}
#header .header-inner .header-form .tel-box .tel {
  display: flex;
  align-items: center;
  gap: 0.3em; /* アイコンとテキストの間に余白 */
}
#header .header-inner .header-form .tel-box .tel-num {
  display: none;
}
#header .header-inner .header-form .tel-box .date {
  display: none;
}
#header .header-inner .tel-box .tel .material-symbols-outlined {
    font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  font-size: 30px;
  vertical-align: middle;
    color: #ffffff;
    margin-bottom: -3px;
  }
#header .header-inner .header-form .cta-header {
    display: flex;
  height: 50px;
  }
  .cta-header .button {
    display: inline-block;
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  width: 100%;
  height: 100%;
  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;
  font-size: 14px;
  font-weight: 600;
  vertical-align: middle;
  line-height: 3.5;
  padding: 0 10px;
  }
  #header .header-inner .header-form .cta-header .cta-header-inner {
    display: flex;
  gap: 0px; 
  }
  #header .header-inner .header-form .cta-header .cta-header-inner .cta-header-left {
    background-color: #00afaa;
    /*border-radius: 5px;*/
  }
  #header .header-inner .header-form .cta-header .cta-header-inner .cta-header-right {
    background-color: #FF6E00;
    /*border-radius: 5px;*/
  }
@media screen and (min-width: 768px) {
  #header .header-inner .header-form {
    display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  text-align: right;
    /*display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: right; */
  }
  #header .header-inner .header-form .tel-box {
    margin-right: 15px;
    display: block;
    height: 100%;
    padding: 5px 0;
    background-color: #ffffff;
  }
  #header .header-inner .header-form .tel-box .tel {
    font-size: 1.5rem;
    font-weight: 700;
    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;
  }
  #header .header-inner .header-form .tel-box .tel-num {
  display: inline;
}
  #header .header-inner .tel-box .tel .material-symbols-outlined {
    font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
    color: #00AFAA;
    margin-bottom: -3px;
    vertical-align: middle;
  font-size: 20px;
  height: 1em;
  line-height: 1;
  }
  #header .header-inner .header-form .tel-box .date {
    display: block;
    font-size: 0.75rem;
    text-align: center;
  }
  #header .header-inner .header-form .cta-header {
    height: 70px;
  }
  .cta-header .button {
    display: inline-block;
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  width: 100%;
  height: 100%;
  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;
  padding: 0 50px;
  font-size: 16px;
  font-weight: 600;
  vertical-align: middle;
  line-height: 4;
  }
}

section {
  width: 100%;
  padding: 50px 5vw;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  section {
    padding: 100px 3vw;
  }
  section .sec-inner {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (min-width: 1025px) {
  section {
    padding: 100px 0;
  }
  section .sec-inner {
    width: 1000px;
    margin-right: auto;
    margin-left: auto;
  }
}

/*.yellow-marker {
  font-weight: bold;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, transparent), color-stop(80%, #00afaa));
  background: -webkit-linear-gradient(transparent 80%, #00afaa 80%);
  background: linear-gradient(transparent 90%, #00afaa 90%);
}*/

.tx-orange {
  color: #FF6E00;
}

.tx-green {
  color: #00AFAA;
}

.tx-bigger-16 {
  font-size: 1.6em;
}

.tx-bigger-125 {
  font-size: 1.25em;
}

.tx-bigger-2 {
  font-size: 2em;
}

#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;
  margin-bottom: 50px;
}
@media screen and (min-width: 768px) {
  #footer {
    margin-bottom: 0;
  }
}

.list {
  margin: 0;
}
.list-l {
  padding: 0.5em 0.5em 0.5em 1em;
  font-size: 1.125rem;
  font-weight: 700;
}
.list-l > li {
  padding: 0.2em 0;
  line-height: 1.5;
}
.list-green-dot {
  padding: 0.5em 0.5em 0.5em 1em;
}
.list-green-dot > li {
  list-style: none;
  position: relative;
}
.list-green-dot > li::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: #181b39;
  left: -1em;
  top: calc(0.5em + 3px);
}
.list-check {
  padding: 0.5em 0.5em 0.5em 1.2em;
  font-size: 14px;
}
.list-check > li {
  list-style: none;
  position: relative;
}
.list-check > li::before {
  display: inline-block;
  position: absolute;
  font-family: "Material Symbols Outlined";
  content: "\e834";
  font-size: inherit;
  color: #00AFAA;
  left: -1.2em;
  top: -1px;
  font-size: 16px;
}

.arw-down {
  position: relative;
}
.arw-down::before {
  position: absolute;
  content: "";
  top: -90px;
  left: 50%;
  border: 40px solid transparent;
  border-top: 45px solid #e5e5eb;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .arw-down::before {
  content: "";
  top: -110px;
}
}

.cta {
  background-image: linear-gradient(rgba(235, 235, 241, 0.8), rgba(229, 229, 235, 0.7)), url("../img/cta-bgi.png");
  background-size: cover;       /* 要素いっぱいに広げる */
  background-position: center;  /* 中央寄せ */
  background-repeat: no-repeat;
  /*background: rgb(229, 229, 235, 0.7);*/
  padding: 50px 5vw;
}
.cta .cta-inner {
  width: 100%;
  display: grid;
  grid-template-rows: repeat(2, -webkit-max-content);
  grid-template-rows: repeat(2, max-content);
  gap: 30px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  /*background-color: rgba(240, 240, 240, 0.8);
  border-radius: 10px;
  padding: 20px;*/ 
}
@media screen and (min-width: 768px) {
  .cta .cta-inner {
    grid-template-columns: repeat(2, -webkit-max-content);
    grid-template-columns: repeat(2, max-content);
    grid-template-rows: repeat(1, -webkit-max-content);
    grid-template-rows: repeat(1, max-content);
    max-width: 950px;
    margin-right: auto;
    margin-left: auto;
    gap: auto;
  }
}
@media screen and (min-width: 1025px) {
  .cta .cta-inner {
    grid-template-columns: repeat(2, -webkit-max-content);
    grid-template-columns: repeat(2, max-content);
    grid-template-rows: repeat(1, -webkit-max-content);
    grid-template-rows: repeat(1, max-content);
    max-width: 950px;
    margin-right: auto;
    margin-left: auto;
    gap: 148px;
  }
}
.cta .cta-inner .left {
  width: 100%;
}
.cta .cta-inner h4 {
  text-align: center;
  margin-bottom: 0.3em;
}
.cta .cta-inner h4 > span {
  position: relative;
}
.cta .cta-inner h4 > span::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 30px;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
  background: #333333;
  bottom: 0;
  left: -1.5em;
}
.cta .cta-inner h4 > span::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 30px;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  background: #333333;
  bottom: 0;
  right: -1.5em;
}
.cta .cta-inner h4 > span .smaller {
  font-size: 0.9em;
}
.cta .cta-inner h4 > span .smallest {
  font-size: 0.8em;
}

.btn-wrap-cta {
  position: relative;
  width: 94vw;
  height: 70px;
  margin: 0.5em auto;
  background-color: #FF6E00;
  border: none;
  border-radius: 6px;
  line-height: 1;
  -webkit-box-shadow: 0 2px 10px rgba(255, 110, 0, 0.4);
          box-shadow: 0 2px 10px rgba(255, 110, 0, 0.4);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .btn-wrap-cta {
    width: 400px;
  }
}
.btn-wrap-cta .muryo {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-radius: 6px 0 0 6px;
  background: #E56300;
  color: #fff;
  width: 45px;
  height: 70px;
  top: 0;
  left: 0;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-align: center;
  font-size: 14px;
  letter-spacing: 5px;
  vertical-align: middle;
  padding: 5px 0 0;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  pointer-events: none;
}
.btn-wrap-cta .button {
  display: inline-block;
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  width: 100%;
  height: 100%;
  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;
  padding-left: 45px;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 700;
  vertical-align: middle;
}
.btn-wrap-cta.blue {
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  background: #00afaa;
}
.btn-wrap-cta.blue .muryo {
  background: #007672;
}
.btn-wrap-service {
  position: relative;
  width: 136px;
  height: 30px;
  margin: 4px auto;
  background-color: #FF6E00;
  border: none;
  border-radius: 2px;
  line-height: 1;
  -webkit-box-shadow: 0 1px 4px rgba(255, 110, 0, 0.4);
          box-shadow: 0 1px 4px rgba(255, 110, 0, 0.4);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .btn-wrap-service {
    width: 100%;
  }
}
.btn-wrap-service .muryo {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-radius: 2px 0 0 2px;
  background: #E56300;
  color: #fff;
  width: 20px;
  height: 30px;
  top: 0;
  left: 0;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-align: center;
  font-size: 10px;
  letter-spacing: 2px;
  vertical-align: middle;
  padding: 2px 0 0;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  pointer-events: none;
}
.btn-wrap-service .button {
  display: inline-block;
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  width: 100%;
  height: 100%;
  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;
  padding-left: 20px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  vertical-align: middle;
}
.btn-wrap-white {
  display: flex;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 45px;
  margin: 0.5rem auto;
}
.btn-wrap-white .button {
  background: #FF6E00;
  border: 2px solid #FF6E00;
  border-radius: 6px;
  line-height: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  -webkit-box-shadow: none;
          box-shadow: none;
  width: 98%;
  height: 100%;
  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;
}
.btn-wrap-white .button:hover {
  background: #ffffff;
  color: #FF6E00;
}
.btn-wrap-footer {
  position: relative;
  width: 100%;
  height: 45px;
  margin: 0.5em auto;
  background-color: #FF6E00;
  border: none;
  border-radius: 4px;
  line-height: 1;
  -webkit-box-shadow: 0 2px 6px rgba(255, 110, 0, 0.4);
          box-shadow: 0 2px 6px rgba(255, 110, 0, 0.4);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .btn-wrap-footer {
    display: none;
  }
}
.btn-wrap-footer .muryo {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-radius: 6px 0 0 6px;
  background: #E56300;
  color: #fff;
  width: 30px;
  height: 45px;
  top: 0;
  left: 0;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-align: center;
  font-size: 12px;
  letter-spacing: 5px;
  vertical-align: middle;
  padding: 5px 0 0;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  pointer-events: none;
}
.btn-wrap-footer .button {
  display: inline-block;
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  width: 100%;
  height: 100%;
  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;
  padding-left: 30px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  vertical-align: middle;
}
.btn-wrap-footer.blue {
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  background: #00AFAA;
  width: 98%;
}
.btn-wrap-footer.blue .muryo {
  background: #007672;
}

.table {
  border-collapse: collapse;
  border-spacing: 0;
}
.table-service {
  margin-top: 30px;
  border-right: 1px solid #CCC;
  border-bottom: 1px solid #CCC;
}
.table-service th, .table-service td {
  
  line-height: 1.3;
  font-size: 14px;
  border-top: 1px solid #f1f1f5;
  border-left: 1px solid #f1f1f5;
  padding: 0.1em 0.3em;
}
@media screen and (min-width: 768px) {
  .table-service th, .table-service td {
    padding: 0.8em 1em;
  }
}
.table-service th.transparent, .table-service td.transparent {
  border-top: none !important;
  border-left: none !important;
}
.table-service th {
  text-align: center;
}
.table-service td {
  text-align: center;
}
.table-service .service-ttl {
  background: #181b39;
  color: #ffffff;
  text-align: center;
}
.table-service .service-summary {
  font-weight: normal;
  background: #ffffff;
}
.table-service .bg-gray {
  background: #F7F8FA;
}
.table-service .rowspan {
  background: #181b39;
  color: #ffffff;
  vertical-align: top;
  font-size: 15px;
  white-space: nowrap;
}
.table-service .td-sub-title {
  white-space: nowrap;
}
.table-service .table-plan {
  background: #e1f6f5;
  color: #00afaa;
  font-weight: 700;
}
.table-service .th-btn {
  background: #ffffff;
  text-align: center;
}
.table-company {
  text-align: left;
  border-top: 1px solid #E5E5EB;
  width: 100%;
}
.table-company th, .table-company td {
  padding: 1rem 0.5rem;
}
@media screen and (min-width: 768px) {
  .table-company th, .table-company td {
    padding: 1.125rem 3rem;
  }
}
.table-company tr {
  border-bottom: 1px solid #E5E5EB;
}
.table-company th {
  color: #191B38;
  width: 25%;
}

#sticky-footer {
  position: fixed;
  background: #ffffff;
  border-top: 1px solid #CCC;
  bottom: -130px;
  width: 100%;
  height: 50px;
  z-index: 999;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
#sticky-footer.show {
  bottom: 0;
}
#sticky-footer .sec-inner {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  height: 50px;
  padding: 2px 1%;
  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;
}
#sticky-footer .sec-inner > div:first-child {
  /*margin-right: 1%;*/
}
#sticky-footer .sec-inner > div {
  width: 95%;
}
@media screen and (min-width: 768px) {
  #sticky-footer {
    display: none;
  }
}

#to-top {
  display: none;
  bottom: 30px;
  right: 30px;
  position: fixed;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 50%;
  background-color: #00afaa;
  color: #fff;
  cursor: pointer;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
#to-top .material-symbols-outlined {
  margin-top: 5px;
  font-size: 36px;
  position: relative;
}
#to-top:hover {
  background-color: #FF6E00;
}
@media screen and (max-width: 767px) {
  #to-top {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .show-sp {
    display: block !important;
  }
  .show-pc {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .show-sp {
    display: none !important;
  }
  .show-pc {
    display: block !important;
  }
}
.mb20 {
  margin-bottom: 20px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mt100 {
  margin-top: 100px !important;
}

.tal {
  text-align: left !important;
}

.tac {
  text-align: center !important;
}

.tar {
  text-align: right !important;
}

.fwb {
  font-weight: 700 !important;
}

.tx-ss {
  font-size: 12px !important;
}

.tx-s {
  font-size: 14px !important;
}

.tx-m {
  font-size: 16px !important;
}

.tx-main {
  color: #333333;
}
.hs-error-msgs.inputs-list li{
  list-style: none;
}
.hs-error-msg{
  font-size: 14px;
  color: #FF4400;
}
.main-visual {
  padding: 0px;
  background-color: #F7F8FA;
}
@media screen and (min-width: 768px) {
  .main-visual {
    background: linear-gradient(90deg, #F7F8FA 0%, #F7F8FA 50%, #e5e5eb 50%, #e5e5eb 100%);
    height: auto;
  }
}
@media screen and (min-width: 768px) {
  .main-visual .sec-inner {
    width: 100%;
    height: 100%;
    padding: 70px 24px 0;
    margin-right: auto;
    margin-left: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
            align-items: flex-start;
    justify-content: space-between;
    align-items: center;
  }
}
@media screen and (min-width: 1025px) {
  .main-visual .sec-inner {
    max-width: 1166px;
    width: 100%;
    margin: 0 auto; /* ← これで中央寄せ */
    padding: 70px 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
  }
}

.main-visual .sec-inner .mv-ttl {
  text-align: center;
  padding: 34px 3vw;
}
@media screen and (min-width: 768px) {
.main-visual .sec-inner .mv-ttl {
  width: 48%;
  padding: 24px;
  /*text-align: left;
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 24px; */
}}
.main-visual .sec-inner .mv-ttl .sec-inner-left {
  
}
.main-visual .sec-inner .mv-ttl .mv-catch {
  font-size: 18px;
  font-weight: 700;
  position: relative;
  /* display: inline-block;  20250604修正  */
  margin-bottom: 0.5em;
  text-align: center;
}
@media screen and (min-width: 768px) {
.main-visual .sec-inner .mv-ttl .mv-catch {
  text-align: left;
}
}
.main-visual .sec-inner .mv-ttl h1 {
  color: #191B38;
  line-height: 1.5;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .main-visual .sec-inner .mv-ttl h1 {
  text-align: left;
}
}
.main-visual .sec-inner .mv-ttl h1 .smaller {
  font-size: 0.9em;
}
.main-visual .sec-inner .mv-ttl h1 .bigger {
  font-size: 1.08em;
}
.main-visual .sec-inner .mv-ttl h1 .bigger02 {
  font-size: 1.46em;
  color: #00afaa;
}
.main-visual .sec-inner .mv-ttl .mv-img {
  text-align: left;
  margin: 10px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
          align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .main-visual .sec-inner .mv-ttl .mv-img {
  display: flex;
  flex-direction: column;
  text-align: left;
  }
}
.main-visual .sec-inner .mv-ttl .mv-img .partner {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .main-visual .sec-inner .mv-ttl .mv-img .partner {
  display: flex;
    width: 100%;
}
}
.main-visual .sec-inner .mv-ttl .mv-img > .services {
  width: 85%;
  height: auto;
  padding-bottom: 20px;
  margin: 0 auto;
}
.main-visual .sec-inner .mv-ttl .mv-img .partner > .amazonadspartner {
  width: 40%;
  height: auto;
  margin: 0 auto;
  padding-bottom: 20px;
}
.main-visual .sec-inner .mv-ttl .mv-img .partner > .amazonpartnerplatinum {
  width: 40%;
  height: auto;
  margin: 0 auto;
  padding-bottom: 20px;
}
.sec-inner-left .right h4 {
  text-align: center;
}
.sec-inner-left .right h4 > span {
  position: relative;
}
.sec-inner-left .right h4 > span::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 20px;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
  background: #333333;
  bottom: 0;
  left: -1.5em;
}
.sec-inner-left .right h4 > span::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 20px;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  background: #333333;
  bottom: 0;
  right: -1.5em;
}
.sec-inner-left .right h4 > span .smaller {
  font-size: 0.9em;
}
.sec-inner-left .right h4 > span .smallest {
  font-size: 0.8em;
}
@media screen and (min-width: 768px) {
  .main-visual .sec-inner .mv-ttl .mv-img > .services {
  width: 80%;
  height: auto;
  padding: 0 40px 5px;
  margin: 0;
}
  .main-visual .sec-inner .mv-ttl .mv-img .partner > .amazonadspartner {
  width: 40%;
  height: auto;
  padding: 10px 10px 10px 40px;
  margin: 0;
}
.main-visual .sec-inner .mv-ttl .mv-img .partner > .amazonpartnerplatinum {
  width: 40%;
  height: auto;
  padding: 10px 40px 10px 10px;
  margin: 0;
}
  .sec-inner-left .right span {
    font-size: 14px;
  } 
  .sec-inner-left .right {
    text-align: left;
  }
  .sec-inner-left .right h4 {
  width: 80%;
}
  .sec-inner-left .btn-wrap-cta {
    width: 80%;
    height: 50px;
  }
  .sec-inner-left .btn-wrap-cta .muryo {
    height: 50px;
  }
}

.award {
  background: #181b39;
  padding: 10px 1vw;
}
.award .sec-inner {
  margin: 0 auto;
  padding: 5px;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.award .sec-inner img {
  width: auto;
  height: 60px;
  margin: 0 5px;
}
@media screen and (min-width: 768px) {
  .award .sec-inner {
    max-width: 1166px;
    /*display: grid;
    grid-template-columns: repeat(3, -webkit-max-content);
    grid-template-columns: repeat(3, max-content);*/
    gap: 20px;
  }
  .award .sec-inner img {
  width: auto;
  height: 90px;
  margin: 0 10px;
}
}
/*.award .sec-inner .award-box {
  margin: 0 auto 1rem;
  width: 120px;
  height: 50px;
  position: relative;
  /*font-family: "Noto Serif JP", serif;*/
  /*font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  text-align: center;
  color: #ffffff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  text-align: center;
  -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;
}
.award .sec-inner .award-box > span {
  display: block;
}
.award .sec-inner .award-box::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 50px;
  left: 0;
  top: 0;
  background: url(../img/leaf-l.svg) top left no-repeat;
  background-size: contain;
}
.award .sec-inner .award-box::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 50px;
  right: 0;
  top: 0;
  background: url(../img/leaf-r.svg) top left no-repeat;
  background-size: contain;
}
.award .sec-inner .award-box .bigger {
  font-size: 1.3em;
}
.award .sec-inner .award-box .smaller {
  font-size: 0.777em;
}
.award .sec-inner .award-box:last-child {
  margin-bottom: 0;
}*/

.ttl-with-label {
  text-align: center;
  color: #191B38;
  position: relative;
  margin-top: 2rem;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .ttl-with-label {
    margin-bottom: 40px;
  }
}
.ttl-with-label .label {
  position: absolute;
  top: -2rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #191B38;
  color: #ffffff;
  font-size: 14px;
  display: inline-block;
  padding: 0 0.4em 1px;
  border-radius: 2px;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.ttl-bg-dblue {
  background: #191B38;
  color: #ffffff;
  min-height: 40px;
  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;
  padding: 0.5em 1em;
  margin: 0 -3vw 20px;
}
@media screen and (min-width: 768px) {
  .ttl-bg-dblue {
    margin: 0 auto 30px;
  }
}
.ttl-uline {
  border-bottom: 3px solid #191B38;
  color: #191B38;
  font-size: 1.375rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  position: relative;
  padding-left: 1.6em;
  margin-top: 30px;
}
.ttl-uline:first-child {
  margin-top: 0;
}
.ttl-uline::before {
  font-family: "Material Symbols Outlined";
  content: "\e52d";
  color: #00afaa;
  font-size: 1.3em;
  position: absolute;
  top: -5px;
  left: 0;
  font-weight: normal;
}
@media screen and (min-width: 768px) {
  .ttl-uline {
    font-size: 26px;
  }
}

.problem {
  background: #F7F8FA;
  padding-top: 0;
}
.problem-wrap {
  position: relative;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  background-image:
    linear-gradient(to bottom, rgba(24, 27, 56, 0.7) 100%, rgba(24, 27, 56, 0.3) 20%),
    url("../img/problem-2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white; /* 必要なら文字色も白に変更 */
  -webkit-mask-image: linear-gradient(to bottom, black 65%, transparent 100%);
          mask-image: linear-gradient(to bottom, black 65%, transparent 100%);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
}
.problem .problem-wrap .ec-contents {
   /* text-align: center;
    padding: 3em;
    background: #F7F8FA;*/
  max-width: 1208px;
  margin: 0 auto;
  padding: 3em 1em 8em;
  position: relative;
  z-index: 1;
  /*background: rgba(255, 255, 255, 0.9);  白背景を重ねたい場合 */
  }
.problem .problem-wrap .ec-contents .list-l {
  text-align: center;
  padding: 0;
  margin: 0;
}

.problem .problem-wrap .ec-contents .list-l li {
  display: inline-block;
  list-style: none;
  font-weight: 700;
  background-color: rgba(24, 27, 56, 0.8);
  border-radius: 6px;
  padding: 5px 10px;
  text-underline-offset: 0px;
  margin: 0 5px 10px;
  line-height: 2;
}
.problem .problem-wrap .ec-contents .ttl-with-label {
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .problem .problem-wrap {
    max-width: 2500px;
    margin: 0 auto;
    padding: 100px 0;
  }
  .problem .problem-wrap .ec-contents {
    text-align: center;
    padding: 0 3em 5em;
    /*background: #F7F8FA;*/
  }
  .problem .problem-wrap .ttl-with-label {
    text-align: center;
    position: relative;
  }
  .problem .problem-wrap .ttl-with-label .label {
    
  }
  .problem .problem-wrap .ec-contents .list-l li {
  font-size: 22px;
}
}
/*@media screen and (min-width: 1025px) {
  .problem .problem-wrap {
    width: 1208px;
    margin-right: auto;
    margin-left: auto;
    display: grid;
    grid-template-columns: 564px 644px;
  }
  .problem .problem-wrap .ec-contents {
    text-align: left;
    padding: 55px 0 0 44px;
  }
  .problem .problem-wrap .ttl-with-label {
    text-align: left;
    position: relative;
  }
  .problem .problem-wrap .ttl-with-label .label {
    left: 50px;
  }
}*/
.problem .ec-image {
  margin-right: -3vw;
  margin-left: -3vw;
  margin-bottom: calc(50px + 2rem);
}
@media screen and (min-width: 768px) {
  .problem .ec-image {
    width: 564px;
    margin-bottom: 30px;
  }
}
.problem .chart-gap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.problem .chart-gap img.sp {
  max-width: 300px !important;
}

.shadow {
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.column-3 {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .column-3.voices {
    display: grid;
    grid-template-columns: repeat(2, -webkit-max-content);
    grid-template-columns: repeat(2, max-content);
    gap: 30px;
    grid-template-rows: repeat(2, -webkit-max-content);
    grid-template-rows: repeat(2, max-content);
  }
}
@media screen and (min-width: 1025px) {
  .column-3.voices {
    display: grid;
    grid-template-columns: repeat(3, -webkit-max-content);
    grid-template-columns: repeat(3, max-content);
    gap: 32px;
    grid-template-rows: repeat(1, -webkit-max-content);
    grid-template-rows: repeat(1, max-content);
  }
}
.column-3.voices > .item {
  background: #ffffff;
  padding: 40px 25px 25px;
  min-width: 270px;
  max-width: 280px;
  position: relative;
  margin-top: 50px;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.column-3.voices > .item .num {
  position: absolute;
  top: -50px;
  left: -12px;
  color: #181b39;
  font-size: 4rem;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}
.column-3.achievement {
  grid-template-rows: repeat(6, -webkit-max-content);
  grid-template-rows: repeat(6, max-content);
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .column-3.achievement {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, -webkit-max-content);
    grid-template-rows: repeat(3, max-content);
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }
}
@media screen and (min-width: 1025px) {
  .column-3.achievement {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, -webkit-max-content);
    grid-template-rows: repeat(2, max-content);
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
  }
}
.column-3.achievement > .item {
  background: #ffffff;
  background: rgba(255, 255, 255, 0.7);
  padding: 0;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .column-3.achievement > .item {
    margin-bottom: 30px;
  }
}
.column-3.achievement > .item > h5 {
  color: #ffffff;
  background: #181b39;
  padding: 0.5rem;
  text-align: center;
}
.column-3.achievement > .item .item-inner {
  padding: 20px;
}
.column-3.achievement > .item .item-inner > img {
  margin-top: 20px;
}
.column-3.measures {
  grid-template-rows: repeat(3, -webkit-max-content);
  grid-template-rows: repeat(3, max-content);
  gap: 20px;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .column-3.measures {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(1, -webkit-max-content);
    grid-template-rows: repeat(1, max-content);
    gap: 34px;
  }
}
.column-3.measures > .item {
  width: 94vw;
  padding: 1rem;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-top: 5px solid #181b39;
  position: relative;
  background: #ffffff url(../img/brand-triangle.svg) bottom right no-repeat;
  background-size: 65px auto;
}
@media screen and (min-width: 768px) {
  .column-3.measures > .item {
    width: 100%;
  }
}
.column-3.measures > .item .num {
  position: absolute;
  right: -5px;
  top: -12px;
  font-size: 108px;
  font-family: "Roboto", sans-serif;
  line-height: 1;
  color: #181b39;
  opacity: 0.1;
  font-weight: 700;
}
.column-3.measures > .item h4 {
  color: #00AFAA;
}
.column-3.measures > .item .smaller {
  font-size: 0.875em;
}
.column-3.change {
  grid-template-rows: repeat(3, -webkit-max-content);
  grid-template-rows: repeat(3, max-content);
  gap: 20px;
  margin-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .column-3.change {
    grid-template-columns: repeat(2, -webkit-max-content);
    grid-template-columns: repeat(2, max-content);
    grid-template-rows: repeat(2, -webkit-max-content);
    grid-template-rows: repeat(2, max-content);
  }
}
@media screen and (min-width: 1025px) {
  .column-3.change {
    grid-template-columns: repeat(3, -webkit-max-content);
    grid-template-columns: repeat(3, max-content);
    grid-template-rows: repeat(1, -webkit-max-content);
    grid-template-rows: repeat(1, max-content);
  }
}
.column-3.change > .item {
  width: 310px;
  padding: 1rem;
  background: #ffffff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  justify-content: center;
}
.column-3.change > .item > img {
  width: 50px;
  margin-right: 1rem;
}
.column-3.change > .item h5 {
  font-size: 0.9375rem;
  margin-bottom: 0.8em;
  display: flex;
  justify-content: center;
  align-items: center;
}
.column-3.change > .item h5 img {
  width: 50px;
  margin-right: 1rem;
}

@media screen and (min-width: 1025px) {
  section.achievements .sec-inner {
    width: 1200px !important;
  }
}

.achievements {
  padding-bottom: 100px;
}

.anker {
  padding: 50px 2rem;
  margin: 0 -3vw;
  background: #191B38 url(../img/anker-bg.png) center center no-repeat;
  background-size: cover;
  color: #ffffff;
}
.anker h2 {
  text-align: center;
  margin-bottom: 30px;
}
.anker h2 span {
  color: #FF9F1A;
}
.anker .column-2 {
  display: grid;
  grid-template-rows: repeat(2, -webkit-max-content);
  grid-template-rows: repeat(2, max-content);
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .anker .column-2 {
    width: 100%;
    grid-template-columns: 30% 50%;
    gap: 10%;
    grid-template-rows: repeat(1, -webkit-max-content);
    grid-template-rows: repeat(1, max-content);
    -webkit-box-align: start;
    -webkit-align-items: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
@media screen and (min-width: 1025px) {
  .anker .column-2 {
    grid-template-columns: 320px 630px;
    gap: 40px;
    grid-template-rows: repeat(1, -webkit-max-content);
    grid-template-rows: repeat(1, max-content);
    -webkit-box-align: start;
    -webkit-align-items: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.anker .column-2 > img {
  max-width: 320px;
  margin: 0 auto 30px;
}
.achievements-clients {
  position: relative;
  width: 100%;
  height: auto;
  padding: 1rem;
  margin: 0;
  background: #ffffff;
  display: flex;
  flex-direction: column; /* ← 縦並びにする */
  align-items: flex-start; /* ← 左寄せ */
  gap: 16px; 
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.achievements-clients .label {
  background-color: #191b38;
  color: #ffffff;
  padding: 5px 20px;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0 0 2px 0;
  letter-spacing: 0.1em;
  font-size: 14px;
  font-weight: 800;
}
.clients-inner img {
  width: 100%;
  height: auto;
  margin: 30px 0 10px;
}
.clients-inner h3 {
  text-align: center;
  margin-bottom: 10px;
}
.clients-inner h4 {
  font-size: 14px;
  text-align: center;
  margin-bottom: 20px;
}
.clients-inner h5 {
  background-color: #e5e5eb;
  color: #181b39;
  padding: 5px;
  width: auto;
  margin-bottom: 10px;
  text-align: center;
  font-size: 16px;
}
.clients-inner p {
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .achievements-clients {
    max-width: 1200px;
  }
  .clients-inner {
    display: flex;
    gap: 20px; /* 子要素間の余白 */
  align-items: center; 
  }
  .clients-inner img {
  max-width: 50%;
  height: auto;
  display: block;
  object-fit: contain;
  }
  .clients-inner-right {
    width: 50%;
  }
}

.success {
  background: #F7F8FA;
}
@media screen and (min-width: 768px) {
  .success .sec-inner {
    max-width: 1000px;
    margin-right: auto;
    margin-left: auto;
  }
}
.success .sec-inner .reason-wrap {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .success .sec-inner .reason-wrap {
    margin-bottom: 30px;
  }
}
.success .sec-inner .reason-wrap .reason-num {
  width: 126px;
  height: 50px;
  background: #e5e5eb;
  color: #181b39;
  margin: 0 auto 20px;
  border-radius: 4px;
  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;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.success .sec-inner .reason-wrap .reason-num .reason-tex {
  display: flex;
  align-items: center;
  justify-content: center;
}
.success .sec-inner .reason-wrap .reason-num .reason-tex .reason-point {
  margin-right: 10px;
}
.success .sec-inner .reason-wrap .reason-num .bigger {
  font-size: 2em;
}
.success .sec-inner .reason-wrap .reason-detail .reason-ttl {
  color: #181b39;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .success .sec-inner .reason-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .success .sec-inner .reason-wrap .reason-detail {
    padding-left: 30px;
    padding-top: 8px;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .success .sec-inner .reason-wrap .reason-detail .reason-ttl {
    text-align: left;
  }
}
@media screen and (min-width: 768px) {
  .success .sec-inner .chart-success {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .success .sec-inner .chart-success img {
    max-width: 900px;
  }
  .success .sec-inner .pic-margin {
    max-width: 644px;
  }
}
.success .sec-inner .cat-wrap {
  background: #ffffff;
  padding: 20px;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .success .sec-inner .cat-wrap {
    padding: 35px 50px;
  }
}
.success .sec-inner .cat-wrap > li {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: middle;
  list-style: none;
  margin-right: 0.5em;
  margin-bottom: 0.8em;
}
.success .sec-inner .cat-wrap > li .material-symbols-outlined {
  color: #00afaa;
  margin-right: 0.25em;
}
.success .sec-inner > .logo-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  flex-wrap: wrap;
}
.success .sec-inner > .logo-wrap > img {
  height: 30px;
  margin: 1rem;
}
@media screen and (min-width: 768px) {
  .success .sec-inner > .logo-wrap {
    -webkit-box-align: start;
    -webkit-align-items: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .success .sec-inner > .logo-wrap > img {
    height: 50px;
  }
}
.show-sp {
  display: none;
}

/* スマホ画面では表示して改行させる */
@media screen and (max-width: 768px) {
  .show-sp {
    display: inline;
  }
}
.service .table-box {
  position: relative;
}
.service .table-box label {
  position: absolute;
  z-index: 1;
  bottom: 0;
  width: 100%;
  height: 140px; /* グラデーションの高さ */
  cursor: pointer;
  text-align: center;
  /* 以下グラデーションは背景を自身のサイトに合わせて設定してください */
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(250, 252, 252, 0)), color-stop(90%, rgba(250, 252, 252, 0.95)));
  background: -webkit-linear-gradient(top, rgba(250, 252, 252, 0) 0%, rgba(250, 252, 252, 0.95) 90%);
  background: linear-gradient(to bottom, rgba(250, 252, 252, 0) 0%, rgba(250, 252, 252, 0.95) 90%);
}
.service .table-box input:checked + label {
  background: inherit; /* 開いた時にグラデーションを消す */
}
.service .table-box label:after {
  position: absolute;
  z-index: 2;
  bottom: 20px;
  left: 50%;
  width: 10rem;
  font-family: "Material Symbols Outlined";
  content: "さらに見る" "\e5cf";
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  color: #ffffff;
  border-radius: 6px;
  background-color: #191B38;
  font-size: 14px;
  padding-top: 5px;
  height: 30px;
}
.service .table-box input {
  display: none;
}
.service .table-box .table-wrap {
  overflow-y: hidden;
  height: 500px; /* 開く前に見えている部分の高さ */
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  overflow-x: scroll;
}
@media screen and (min-width: 768px) {
  .service .table-box .table-wrap {
    height: 700px;
    overflow-x: visible;
  }
  .service .table-box .table-wrap::webkit-scrollbar {
    display: none;
  }
}
.service .table-box input:checked + label {
  display: none;
}
.service .table-box input:checked + label:after {
  font-family: "Material Symbols Outlined";
  content: "閉じる" "\e5ce";
}
.service .table-box input:checked ~ .table-wrap {
  height: auto;
  padding-bottom: 80px; /* 閉じるボタンのbottomからの位置 */
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.service .menu-box {
  background: #ffffff;
}
.service .menu-box h5 {
  color: #ffffff;
  background: #00AFAA;
  padding: 0.5rem;
  text-align: center;
}
.service .menu-content {
  text-align: center;
  background: #F7F8FA;
  padding: 20px 1rem;
}
@media screen and (min-width: 768px) {
  .service .menu-content {
    padding: 20px 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .service .menu-content .menu-ttl {
    width: 24%;
  }
  .service .menu-content .menu-issue {
    width: 38%;
    padding: 0 20px;
    border-right: 1px solid #CCC;
    border-left: 1px solid #CCC;
  }
  .service .menu-content .menu-solution {
    width: 38%;
    padding: 0 20px;
  }
}
.service .menu-content .menu-ttl {
  margin-bottom: 20px;
}
.service .menu-content .menu-ttl .bigger {
  font-size: 2em;
}
.service .menu-content .menu-issue > p {
  font-size: 14px;
  margin-bottom: 20px;
}
.service .menu-content .menu-issue .white-baloon {
  background: #ffffff;
  padding: 1rem;
  margin-right: 10px;
  margin-left: 10px;
  margin-bottom: 30px;
  border-radius: 6px;
  position: relative;
}
.service .menu-content .menu-issue .white-baloon::after {
  position: absolute;
  content: "";
  left: 50%;
  border: 20px solid transparent;
  border-top: 20px solid #ffffff;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -40px;
}
.service .menu-content .menu-issue .white-baloon > h6 {
  font-size: 14px;
}
.service .menu-content .menu-issue .white-baloon > .list {
  text-align: left;
}
.service .menu-content .menu-solution .s-ttl {
  background: #191B38;
  color: #ffffff;
  border-radius: 2px;
  padding: 0 4px 2px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
  display: inline-block;
}

.board {
  background: #F7F8FA;
}
.board .column-2 {
  display: grid;
  grid-template-rows: repeat(2, -webkit-max-content);
  grid-template-rows: repeat(2, max-content);
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .board .column-2 {
    margin-top: 40px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(1, -webkit-max-content);
    grid-template-rows: repeat(1, max-content);
    gap: 106px;
  }
}
.board .column-2 .profile-box {
  padding: 40px 25px 54px;
  background: #ffffff url(../img/brand-triangle.svg) right bottom no-repeat;
  background-size: 107px 50px;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.board .column-2 .profile-box > img {
  width: 127px;
  height: 127px;
  display: block;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 1rem;
}
.board .column-2 .profile-box dt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.board .column-2 .profile-box .position {
  color: #00AFAA;
  font-size: 0.875rem;
  margin-bottom: 5px;
  font-weight: 700;
}
.board .column-2 .profile-box .name {
  font-size: 1.25rem;
  margin-bottom: 40px;
  font-weight: 700;
}
.board .column-2 .profile-box dd {
  text-align: left;
}

.certificates {
  background: #ffffff;
}
.certificates .p-with-pic {
  display: grid;
  grid-template-rows: repeat(2, -webkit-max-content);
  grid-template-rows: repeat(2, max-content);
  gap: 20px;
}
.certificates .p-with-pic img {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .certificates .p-with-pic {
    grid-template-columns: auto 220px;
    grid-template-rows: repeat(1, -webkit-max-content);
    grid-template-rows: repeat(1, max-content);
  }
  .certificates .p-with-pic > div {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: end;
        -ms-flex-pack: end;
            justify-content: end;
  }
  .certificates .p-with-pic img {
  margin: 0 auto;
}
}
@media screen and (min-width: 768px) {
  .certificates p {
    font-size: 18px;
  }
}

.flow {
  background: #F7F8FA;
}
.flow .flow-box {
  background: #ffffff;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}
.flow .flow-box:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .flow .flow-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    margin-bottom: 20px;
  }
}
.flow .flow-box .step-wrap .step {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 67px;
  width: 100%;
  background: #181b39;
  color: #ffffff;
  position: relative;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
/*.flow .flow-box .step-wrap .step > span:first-child {
  margin-right: 80px;
}*/
@media screen and (min-width: 768px) {
  .flow .flow-box .step-wrap .step {
    width: 30%;
    min-width: 180px;
    height: 100% !important;
  }
}
/*.flow .flow-box .step-wrap .step::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 46px;
  background: #ffffff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  left: 50%;
}
@media screen and (min-width: 768px) {
  .flow .flow-box .step-wrap .step::after {
    height: 73px;
    -webkit-transform: rotate(35deg);
            transform: rotate(35deg);
    left: 52%;
  }
}*/
.flow .flow-box .step-wrap .step .number {
  font-size: 40px;
  position: relative;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  margin-top: 20px;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .flow .flow-box .step-wrap .step .number {
    margin-top: 15px;
    font-size: 60px;
  }
}
.flow .flow-box .step-wrap .step .number::before {
  position: absolute;
  content: "STEP";
  font-size: 14px;
  letter-spacing: 0.2em;
  font-weight: 700;
  top: -10px;
  left: 3px;
  margin-bottom: 5px;;
}
@media screen and (min-width: 768px) {
  .flow .flow-box .step-wrap .step .number::before {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.flow .flow-box .flow-content .material-symbols-outlined {
  font-size: 30px;
  margin-right: 10px;
}
@media screen and (min-width: 768px) {
  .flow .flow-box .step-wrap .step .material-symbols-outlined {
    font-size: 60px;
  }
}
.flow .flow-box .flow-content {
  padding: 20px;
}
.flow .flow-box .flow-content h4 {
  display: flex;
  justify-content: left;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .flow .flow-box .flow-content {
    padding: 30px 30px 28px 30px;
  }
}
.flow .flow-box .flow-content h4 {
  color: #00AFAA;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .flow .flow-box .flow-content h4 {
    font-size: 24px;
  }
}
.flow .flow-box .flow-content .btn-wrap-white {
  margin-left: 0;
}
@media screen and (min-width: 768px) {
  .flow .flow-box .flow-content {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.btn-wrap-flow {
  display: flex;
  justify-content: space-between;
  text-align: center;
  width: 100%;
  height: 45px;
  margin: 0.5rem auto;
}
.btn-wrap-flow .flow-button-blue {
  background-color: #00afaa;
  border-radius: 6px;
  line-height: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  -webkit-box-shadow: none;
          box-shadow: none;
  width: 48%;
  height: 100%;
  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;
}
.btn-wrap-flow .flow-button-blue:hover {
  background: #ffffff;
  border: 2px solid #00afaa;
  color: #00afaa;
}
.btn-wrap-flow .flow-button-orange {
  background-color: #FF6E00;
  border-radius: 6px;
  line-height: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  -webkit-box-shadow: none;
          box-shadow: none;
  width: 48%;
  height: 100%;
  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;
}
.arrow-down {
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 30px solid #e5e5eb; /* 矢印の色 */
  margin: 0 auto 15px;
}



.faq {
  background: #ffffff;
}
.faq .faq-box .faq-item {
  margin-bottom: 10px;
}
.faq .faq-box .faq-item:last-child {
  margin-bottom: 0;
}
.faq .faq-box .faq-item .faq-q {
  background: #FFFFFF;
  padding: 1.1875rem 40px 1.1875rem 40px;
  position: relative;
  font-weight: 700;
  font-size: 17px;
  cursor: pointer;
}
.faq .faq-box .faq-item .faq-q::before {
  position: absolute;
  content: "Q";
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #00afaa;
  left: 0.6875rem;
  top: 1.1875rem;
  z-index: 1;
}
.faq .faq-box .faq-item .faq-q::after {
  position: absolute;
  font-family: "Material Symbols Outlined";
  content: "\e145";
  font-size: 24px;
  font-weight: normal;
  color: #00afaa;
  right: 0.6875rem;
  top: 1.1875rem;
  z-index: 1;
}
.faq .faq-box .faq-item .faq-a {
  display: none;
  background: #ffffff;
  padding: 1.1875rem 1rem 1.1875rem 40px;
  position: relative;
  font-weight: 400;
  font-size: 16px;
}
.faq .faq-box .faq-item .faq-a::before {
  position: absolute;
  content: "A";
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #00AFAA;
  left: 0.6875rem;
  top: 1.1875rem;
  z-index: 1;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.faq .faq-box .faq-item.active .faq-q::after {
  content: "\e15b";
}

@media screen and (min-width: 768px) {
  .company .sec-inner {
    width: 1000px;
  }
}
.company .company-authorization {
  display: block;
  text-align: left;
}
.company .company-authorization img {
  width: auto;
  height: 60px;
  object-fit: contain;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .company .company-authorization {
  display: flex;
  justify-content: flex-start;
  text-align: left;
  gap: 20px;
}
  .company .company-authorization img {
  height: 50px;
}
}
/* フォーム系リセット、ベースデザインは 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: 400;
}

.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;
}

/*
.button { //form用ボタン
    background-color: $color-secondary;
    color: $color-white;
    font-size: 1rem;
	font-weight: 700;
    border: 0;
    border-radius: 6px;
    padding: .9em 1em 1em;
	margin: .5em auto;
    line-height: 1;
    // cursor: pointer;
    box-shadow: 0 2px 10px #FF6E0066;
    transition: all .3s ease;
    position: relative;
    display: inline-block;
	width: 290px;
    // max-width: 100%;

    // &:after { //ボタン内矢印
	//     content: '';
	//     border: 2px solid;
	//     border-width: 0 2px 2px 0;
	//     display: block;
	//     width: 6px;
	//     height: 6px;
	//     transform: rotate(-45deg);
	//     position: absolute;
	//     right: 20px;
	//     top: 50%;
	//     margin: -4px 0 0 0;
	// }

    &:hover {
        opacity: .9;
    }

    &:focus {
        outline: 3px solid $color-third;
    }
	&.disabled {
		background: $color-btn-off;
		box-shadow: 0 2px 10px rgba(0,0,0,.1);
	}

}
*/
.actions {
  position: relative;
  width: 100%;
  height: 45px;
  margin: 0.5em auto;
  background-color: #FF6E00;
  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;
}
.action .hs-button {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-radius: 6px 0 0 6px;
  background: #E56300;
  color: #fff;
  width: 36px;
  height: 45px;
  top: 0;
  left: 0;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-align: center;
  font-size: 12px;
  letter-spacing: 5px;
  vertical-align: middle;
  padding: 5px 0 0;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  pointer-events: none;
}
.actions .hs-button {    
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  width: 100%;
  height: 100%;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
}

.select-wrap {
  position: relative;
  display: inline-block;
}
.select-wrap::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 10px;
  border: 7px solid transparent;
  border-top-color: #aaa; /* 三角形の色 */
  border-bottom: 0;
  pointer-events: none;
  z-index: 1;
}

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

/* lp index フォームのコンテンツ */
/*.lp .sec-inner-right {
  background-color: #E5E5EB;
}
@media screen and (min-width: 768px) {
.lp .sec-inner-right {
  width: 50%;
  height: auto;
}
  
}

.lp .contact-form h3 {
  margin-bottom: 20px;
}
.lp .contact-form h3 span {
  font-size: 1.2rem;
  color: #00AFAA !important;
}
.lp .contact-form {
  width: 100%;
  padding: 34px 3vw;
  background-color: #E5E5EB;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .lp .contact-form {
    padding: 10px 15px;
    height: auto;
    width: auto;
    
  }
}
.lp .contact-form .form-wrap {
  position: relative;
  padding: 0;
}
.lp .contact-form .title {
  text-align: center;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .lp .contact-form .title {
    margin-bottom: 0;
  }
}
.lp .contact-form .hs-fieldtype-text,
.lp .contact-form .hs-fieldtype-phonenumber,
.lp .contact-form .hs-fieldtype-select{
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
  justify-content: flex-start;
  width: 100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .lp .contact-form .hs-fieldtype-text,
.lp .contact-form .hs-fieldtype-phonenumber,
.lp .contact-form .hs-fieldtype-select{
  flex-direction: row;
  align-items: center;
}

}
.lp .contact-form .hs-error-msgs{
  position: absolute;
  left: 0;
  margin-right:0;
  width: 120%;
  font-size: 75%;
  bottom:-9.4px;
}
@media screen and (min-width: 768px) {
  .lp .contact-form .hs-error-msgs{
  left: 32%;
  }
}
.lp .contact-form label:not(.hs-error-msgs) {
  display: block;
  margin-right: 16px;
  width: 100%;
  font-size: 85%;
}

@media screen and (min-width: 768px) {
  .lp .contact-form label:not(.hs-error-msgs) {
    width: 40%;
  }
   
}
.lp .contact-form .hs_message{
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
.lp .contact-form .hs_message{
  display: flex;
  flex-direction: row;
}
}*/
#contact-top {
  position: relative;
}

#contact-top::before {
  content: "";
  display: block;
  height: 70px;        /* ヘッダーの高さ */
  margin-top: -70px;   /* 同じ分だけマイナスでずらす */
  visibility: hidden;  /* 表示はしない */
  pointer-events: none; /* 誤クリック防止 */
}

.lp .sec-inner-right {
  background-color: #E5E5EB;
}
@media screen and (min-width: 768px) {
.lp .sec-inner-right {
  width: 50%;
  height: auto;
}
  
}
.lp .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;
}
@media screen and (min-width: 768px) {
  .lp .contact-form {
  padding: 10px 24px 24px;
  height: auto;
  width: 400px;
  background-color: rgb(255, 255, 255, 0.6);
}
}
.lp .contact-form .hs-richtext h3 {
  margin-bottom: 20px;
}
.lp .contact-form .hs-richtext h3 span {
  font-size: 1.2rem;
  color: #181b39 !important;
}
.lp .contact-form .title {
  text-align: center;
  margin-bottom: 0px;
}
.lp .contact-form input {
  display: block;        
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .lp .contact-form input { 
  /*max-width: 450px;*/
}
}
.lp .contact-form input #firstname-8828e342-7043-491e-b0ba-fe7f44bcb9a1{
}
.lp .contact-form form fieldset {
  margin: 0 auto !important;
  padding: 0 !important;
  max-width: 100% !important;
}

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

.lp .contact-form .form-wrap form {
  text-align: center;
}
.lp .contact-form .form-wrap .hs-input ,
.lp .contact-form .form-wrap textarea {
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100% !important;
  box-sizing: border-box !important;
}
.lp .contact-form .hs-fieldtype-text,
.lp .contact-form .hs-fieldtype-phonenumber,
.lp .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のエラーメッセージ */
.lp .contact-form .hs-error-msgs{
  width: 100%;
  font-size: 75%;
  bottom:-9.4px;
  padding-left: 10px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .lp .contact-form .hs-error-msgs{
  left: 32%;
  }
}
.lp .contact-form label:not(.hs-error-msgs) {
  display: block;
  margin-right: 16px;
  width: 100%;
  font-size: 85%;
}

@media screen and (min-width: 768px) {
  .lp .contact-form label:not(.hs-error-msgs) {
    width: 100%;
  }
   
}

/* form-re */
/*
*, *::before, *::after {
  box-sizing: border-box;
}*/

.lp .contact-form-re {
  width: 100%;
  margin: 0 auto;
  position: relative;
  background-color: #e5e5eb;
  padding: 50px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
}
.lp .contact-form-re .hs-richtext h3 {
  margin-bottom: 20px;
}
.lp .contact-form-re .hs-richtext h3 span {
  font-size: 1.2rem;
  color: #181b39 !important;
}
.lp .contact-form-re .title {
  text-align: center;
  margin-bottom: 0rem;
}
.lp .contact-form-re input {
  display: block;   
  max-width: 720px;       
  margin: 0 auto;
}

.lp .contact-form-re form fieldset {
  margin: 0 auto !important;
  padding: 0 !important;
  max-width: 100% !important;
}

.lp .contact-form-re .form-re-wrap {
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}

.lp .contact-form-re .form-re-wrap form {
  text-align: center;
}
.lp .contact-form-re .form-re-wrap .hs-input ,
.lp .contact-form-re .form-re-wrap textarea {
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100% !important;
  box-sizing: border-box !important;
}
.lp .contact-form-re .hs-fieldtype-text,
.lp .contact-form-re .hs-fieldtype-phonenumber,
.lp .contact-form-re .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のエラーメッセージ */
.lp .contact-form-re .hs-error-msgs{
  width: 100%;
  font-size: 75%;
  bottom:-9.4px;
  padding-left: 10px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .lp .contact-form-re .hs-error-msgs{
  left: 32%;
  }
}
.lp .contact-form-re label:not(.hs-error-msgs) {
  display: block;
  margin-right: 16px;
  width: 100%;
  font-size: 85%;
}

@media screen and (min-width: 768px) {
  .lp .contact-form-re label:not(.hs-error-msgs) {
    width: 100%;
  }
   
}
/* .lp .contact-form-re .hs_message{
  display: flex;
  flex-direction: column;
} */
@media screen and (min-width: 768px) {
.lp .contact-form-re .hs_message{
  /* display: flex;
  flex-direction: row; */
}
}

/* attention */
.hs-field-desc{
  position: absolute;
  display: none !important;
}
.lp .contact-form input[type=text], .lp .contact-form input[type=number], .lp .contact-form input[type=email] {
  position: relative;
  min-height: 40px;
}
.lp .contact-form select {
  min-height: 40px;
}
.lp .contact-form textarea {
  height: 64px !important;
}
.lp .contact-form .input-wrap {
  margin-top: 10px;
}
.hs-form input, .lp .contact-form .is-required div.input-row select, .hs-form textarea {
  background: #F7F8FA;
  border: #e4e4e4 1px solid;
  width: 100%;
}
.hs-form textarea,.hs-form select {
  background: #F7F8FA;
  border: #e4e4e4 1px solid;
  appearance:auto;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .hs-form input, .lp .contact-form .is-required div.input-row select, .hs-form textarea,.hs-form textarea,.hs-form select {
    /*width: 280px;*/
  }
  }
.hs-form .input-row {
  position: relative;
  width: 100%;
  margin: 0;
}
.hs-form-required{
  color: #E56300;
}
.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;
}

.lp.thanks main {
  text-align: center;
}
.lp.thanks main .hd1 {
  width: 100%;
  font-size: 20px;
  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;
  padding: 0.5em;
}
@media screen and (min-width: 768px) {
  .lp.thanks main .hd1 {
    font-size: 25px;
    padding: 0.5em;
  }
}
.lp.thanks main .main-tx {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .lp.thanks main .main-tx {
    margin-top: 80px;
  }
}
.lp.thanks main .main-tx p {
  margin-bottom: 20px;
}
.lp.thanks main .btn-wrap {
  display: block;
  width: 290px;
  margin: 0 auto;
  margin-top: 50px;
}
.lp.thanks main .button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.9em 1em;
}
.lp.thanks #footer {
  position: absolute;
  bottom: 0;
}