@charset "UTF-8";



/************************************************************************
* reset
************************************************************************/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  -webkit-print-color-adjust: exact;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-underline-offset: .2em;
  background: #fff;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  color: #000;
  line-break: strict;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  word-break: normal;
  overflow-wrap: anywhere;
}

article,
aside,
footer,
header,
nav,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  vertical-align: baseline;
  margin: 0;
  border: 0;
  padding: 0;
  font: inherit;
  font-size: 100%;
}

a {
  display: inline-block;
  -webkit-transition: opacity .3s ease 0s;
  transition: opacity .3s ease 0s;
  color: inherit;
  text-decoration: none;
}

a[href='*'] {
  cursor: pointer;
}

a[href='*']:hover, a[href='*']:focus-visible {
  opacity: .7;
}

img,
svg {
  display: inline-block;
  vertical-align: top;
  border: none;
  width: 100%;
  max-width: 100%;
  height: auto;
}

video {
  width: 100%;
  height: auto;
}

code,
kbd,
pre,
samp {
  font-size: inherit;
}

ul,
ol {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote::after,
blockquote::before,
q::after,
q::before {
  content: '';
  content: none;
}

address {
  font-style: italic;
}

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

abbr,
acronym {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

cite {
  font-style: italic;
}

code,
kbd {
  background-color: #f8f8f8;
  padding: .25em .5em;
}

em {
  font-style: italic;
}

pre {
  display: block;
  background-color: #f8f8f8;
  padding: 1em 2em;
}

sub {
  vertical-align: sub;
  font-size: smaller;
}

sup {
  vertical-align: super;
  font-size: smaller;
}

var {
  background-color: #f8f8f8;
  padding: .25em .5em;
  font-style: italic;
}

/************************************************************************
* end reset
************************************************************************/
.js-fadeIn {
  visibility: hidden;
  opacity: 0;
}

.js-fadeInUp {
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  visibility: hidden;
  opacity: 0;
}

.js-fadeInLeft {
  -webkit-transform: translateX(-30px);
  transform: translateX(-30px);
  visibility: hidden;
  opacity: 0;
}

.js-fadeInRight {
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
  visibility: hidden;
  opacity: 0;
}

@-webkit-keyframes fadeInLeft {

  from {
    -webkit-transform: translate3d(-2%, 0, 0);
    transform: translate3d(-2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes fadeInLeft {

  from {
    -webkit-transform: translate3d(-2%, 0, 0);
    transform: translate3d(-2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInRight {

  from {
    -webkit-transform: translate3d(2%, 0, 0);
    transform: translate3d(2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInRight {

  from {
    -webkit-transform: translate3d(2%, 0, 0);
    transform: translate3d(2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInUp {

  from {
    -webkit-transform: translate3d(0, 2%, 0);
    transform: translate3d(0, 2%, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInUp {

  from {
    -webkit-transform: translate3d(0, 2%, 0);
    transform: translate3d(0, 2%, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {

  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@keyframes fadeIn {

  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {

  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
@keyframes fadeOut {

  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeInLeft,
.fadeInRight,
.fadeInUp,
.fadeIn,
.fadeOut {
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

.fadeInLeft {
  -webkit-animation-name: fadeinleft;
  animation-name: fadeInLeft;
}

.fadeInRight {
  -webkit-animation-name: fadeinright;
  animation-name: fadeInRight;
}

.fadeInUp {
  -webkit-animation-name: fadeinup;
  animation-name: fadeInUp;
}

.fadeIn {
  -webkit-animation-name: fadein;
  animation-name: fadeIn;
}

.fadeOut {
  opacity: 1;
  -webkit-animation-name: fadeout;
  animation-name: fadeOut;
}

html {
  scrollbar-gutter: stable;
}

button {
  color: #000;
}

/************************************************************************
* layout
************************************************************************/
body {
  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;
  min-height: 100vh;
  min-height: 100dvh;
  font-family: 'Noto Sans JP', sans-serif;
}

body.is-menu-open {
  overflow: hidden;
}

body.fadeIn {
  opacity: 0;
}

main {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

footer {
  margin-top: auto;
}

/************************************************************************
* base
************************************************************************/
a[target=_blank]:not([class]) {
  -webkit-transition: color .3s;
  transition: color .3s;
}

a[target=_blank]:not([class])::after {
  display: inline-block;
  -webkit-mask-image: url('../img/common/icon-outerLink.svg');
  mask-image: url('../img/common/icon-outerLink.svg');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  margin-left: .7647058824em;
  background-color: currentColor;
  width: .8529411765em;
  height: .7647058824em;
  font-weight: 900;
  content: '';
}

address {
  font-style: normal;
}

details .icon {
  aspect-ratio: 1;
  display: block;
  position: relative;
  width: 24px;
  width: 1.5rem;
}

details .icon::before, details .icon::after {
  inset: 0;
  position: absolute;
  margin: auto;
  background-color: #000;
  width: 13px;
  width: .8125rem;
  height: 1px;
  content: '';
}

details .icon::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

details[open] > summary .icon::after {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}

details.is-closing[open] > summary .icon::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

summary {

  /* display: list-item;以外を指定してデフォルトの三角形アイコンを消します */
  display: block;
  cursor: pointer;
}

summary::-webkit-details-marker {

  /* Safariで表示されるデフォルトの三角形アイコンを消します */
  display: none;
}

/************************************************************************
* end base
************************************************************************/
.contact-form {
  margin: 0 auto;
  background-color: #fff;
  padding: 79px 75px 60px;
  padding: 4.9375rem 4.6875rem 3.75rem;
  width: 100%;
  max-width: 1000px;
}

.contact-form__inner {
  gap: 30px;
  gap: 1.875rem;
  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;
}

.contact-form__item {
  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;
}

.contact-form__label {
  gap: 12px;
  gap: .75rem;
  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;
  margin-bottom: 17px;
  margin-bottom: 1.0625rem;
}

.contact-form__required {
  display: inline-block;
  border-radius: .8125rem;
  background-color: #f72f00;
  padding: 6px 19px;
  padding: .375rem 1.1875rem;
  color: #fff;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .08em;
  line-height: 1;
}

.contact-form__label-text {
  color: #000;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: .08em;
}

.contact-form__radio-group .wpcf7-radio {
  gap: 17px 18px;
  gap: 1.0625rem 1.125rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.contact-form__radio-group span.wpcf7-list-item {
  display: block;
  margin: 0;
}

.contact-form__radio-group label {
  -webkit-tap-highlight-color: rgba(0, 0, 0, .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-transition: border-color .3s;
  transition: border-color .3s;
  cursor: pointer;
  border: 1px solid #d9d9d9;
  padding: 19px;
  padding: 1.1875rem;
  min-height: 70px;
  min-height: 4.375rem;
}

.contact-form__radio-group label input[type=radio] {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: border-color .3s;
  transition: border-color .3s;
  cursor: pointer;
  margin: 0;
  margin-right: 15px;
  margin-right: .9375rem;
  border: 1px solid #c9c9c9;
  border-radius: 50%;
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
}

.contact-form__radio-group label input[type=radio]:focus {
  outline: 2px solid #3782d3;
  outline-offset: 2px;
}

.contact-form__radio-group label input[type=radio]:focus:not(:focus-visible) {
  outline: none;
}

.contact-form__radio-group label input[type=radio]:focus-visible {
  outline: 2px solid #3782d3;
  outline-offset: 2px;
}

.contact-form__radio-group label input[type=radio]:checked {
  border-color: #3782d3;
}

.contact-form__radio-group label input[type=radio]:checked::before {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: #3782d3;
  width: 16px;
  width: 1rem;
  height: 16px;
  height: 1rem;
  content: '';
}

.contact-form__radio-group label span.wpcf7-list-item-label {
  cursor: pointer;
  color: #000;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: .08em;
  line-height: 1.375;
}

.contact-form__input-wrapper {
  width: 100%;
}

.contact-form__input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-transition: background-color .3s, border-color .3s;
  transition: background-color .3s, border-color .3s;
  border: 1px solid transparent;
  border-radius: 0;
  background-color: #eaeaea;
  padding: 22px 36px;
  padding: 1.375rem 2.25rem;
  width: 100%;
  height: 70px;
  height: 4.375rem;
  color: #000;
  font-size: 18px;
  font-size: 1.125rem;
}

.contact-form__input::-webkit-input-placeholder {
  opacity: 1;
  color: #bebebe;
}

.contact-form__input::-moz-placeholder {
  opacity: 1;
  color: #bebebe;
}

.contact-form__input::-ms-input-placeholder {
  opacity: 1;
  color: #bebebe;
}

.contact-form__input::placeholder {
  opacity: 1;
  color: #bebebe;
}

.contact-form__input:focus {
  outline: 2px solid #3782d3;
  outline-offset: 0;
  border-color: #3782d3;
  background-color: #fff;
}

.contact-form__input:not(:placeholder-shown) {
  border-color: #d9d9d9;
  background-color: #fff;
}

.contact-form__input.wpcf7-not-valid {
  border-color: #f72f00;
}

.contact-form__textarea-wrapper {
  width: 100%;
}

.contact-form__textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-transition: background-color .3s, border-color .3s;
  transition: background-color .3s, border-color .3s;
  border: 1px solid transparent;
  border-radius: 0;
  background-color: #eaeaea;
  padding: 22px 36px;
  padding: 1.375rem 2.25rem;
  width: 100%;
  min-height: 181px;
  min-height: 11.3125rem;
  resize: none;
  color: #000;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.4444444444;
}

.contact-form__textarea::-webkit-input-placeholder {
  opacity: 1;
  color: #bebebe;
}

.contact-form__textarea::-moz-placeholder {
  opacity: 1;
  color: #bebebe;
}

.contact-form__textarea::-ms-input-placeholder {
  opacity: 1;
  color: #bebebe;
}

.contact-form__textarea::placeholder {
  opacity: 1;
  color: #bebebe;
}

.contact-form__textarea:focus {
  outline: 2px solid #3782d3;
  outline-offset: 0;
  border-color: #3782d3;
  background-color: #fff;
}

.contact-form__textarea:not(:placeholder-shown) {
  border-color: #d9d9d9;
  background-color: #fff;
}

.contact-form__textarea.wpcf7-not-valid {
  border-color: #f72f00;
}

.contact-form__privacy {
  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-top: 18px;
  margin-top: 1.125rem;
}

.contact-form__privacy .wpcf7-list-item {
  margin: 0;
}

.contact-form__privacy .wpcf7-list-item label {
  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;
  -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;
}

.contact-form__privacy input[type=checkbox] {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, .1);
  position: relative;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: border-color .3s;
  transition: border-color .3s;
  cursor: pointer;
  margin: 0;
  margin-right: 15px;
  margin-right: .9375rem;
  border: 1px solid #c9c9c9;
  border-radius: 50%;
  width: 31px;
  width: 1.9375rem;
  height: 31px;
  height: 1.9375rem;
}

.contact-form__privacy input[type=checkbox]:focus {
  outline: 2px solid #3782d3;
  outline-offset: 2px;
}

.contact-form__privacy input[type=checkbox]:focus:not(:focus-visible) {
  outline: none;
}

.contact-form__privacy input[type=checkbox]:focus-visible {
  outline: 2px solid #3782d3;
  outline-offset: 2px;
}

.contact-form__privacy input[type=checkbox]:checked {
  border-color: #3782d3;
  background-color: #3782d3;
}

.contact-form__privacy input[type=checkbox]:checked::before {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -60%) rotate(45deg);
  transform: translate(-50%, -60%) rotate(45deg);
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  width: 10px;
  width: .625rem;
  height: 16px;
  height: 1rem;
  content: '';
}

.contact-form__privacy-text {
  color: #000;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .08em;
  line-height: 2.5;
}

.contact-form__privacy-link {
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  color: #3782d3;
  text-decoration: underline;
}

.contact-form__privacy-link:hover {
  opacity: .7;
}

.contact-form__submit {
  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;
  margin-top: 6px;
  margin-top: .375rem;
}

.contact-form__button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-transition: all .3s;
  transition: all .3s;
  cursor: not-allowed;
  border: 2px solid #e5e5e5;
  border-radius: 2.5625rem;
  background-color: transparent;
  width: 373px;
  width: 23.3125rem;
  height: 81px;
  height: 5.0625rem;
  color: #e5e5e5;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
}

.contact-form__button:not(:disabled) {
  cursor: pointer;
  border-color: #024190;
  background-color: #024190;
  color: #fff;
}

.contact-form__button:not(:disabled):hover {
  border-color: #024190;
  background-color: #fff;
  color: #024190;
}

.contact-form__button:not(:disabled):focus {
  outline: 2px solid #3782d3;
  outline-offset: 2px;
}

.wpcf7-spinner {
  display: none !important;
}

.wpcf7-not-valid-tip {
  margin-top: 5px;
  margin-top: .3125rem;
  color: #f72f00;
  font-size: 14px;
  font-size: .875rem;
}

.wpcf7-response-output {
  margin: 20px 0 0;
  margin: 1.25rem 0 0;
  border: 2px solid;
  padding: 15px;
  padding: .9375rem;
  text-align: center;
}

.wpcf7-response-output.wpcf7-validation-errors {
  border-color: #f72f00;
  background-color: #f72f00;
  color: #fff;
}

.wpcf7-response-output.wpcf7-mail-sent-ok {
  border-color: #024190;
  background-color: #024190;
  color: #fff;
}

.wpcf7-response-output {
  color: #fff;
}

:root {

  /* ウィンドウサイズ */
  --vw: 100vw;
  --vh: 100vh;

  /* 三角形 */
  --clip-triangle-top: polygon(50% 0, 100% 100%, 0 100%);
  --clip-triangle-bottom: polygon(0 0, 100% 0, 50% 100%);
  --clip-triangle-right: polygon(0 0, 100% 50%, 0 100%);
  --clip-triangle-left: polygon(0 50%, 100% 0, 100% 100%);
  --clip-triangle-lower-left: polygon(0 0, 100% 100%, 0 100%);
  --clip-triangle-upper-left: polygon(0 0, 100% 0, 0 100%);
  --clip-triangle-lower-right: polygon(100% 0, 100% 100%, 0 100%);
  --clip-triangle-upper-right: polygon(0 0, 100% 0, 100% 100%);

  /**
     * svgをbackgroundで使う
     * 色：#ffffff -> %23ffffff
     */
  --icon-btn-arrow: url('data:image/svg+xml;utf8,<svg width="37" height="6" viewBox="0 0 37 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 5H36L26.2703 1" stroke="%230C4A6E"/></svg>');

  /* ヘッダー高さ */
  --header-height: 50px;
}

.wpcf7-spinner {
  display: none;
}

.onlyPc {
  display: block;
}

.onlySp {
  display: none;
}

.footer {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #3668c1;
  padding: 40px 0 20px;
  padding: 2.5rem 0 1.25rem;
  color: #fff;
  font-family: 'メイリオ', 'Meiryo', 'ＭＳ ゴシック', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', sans-serif;
}

.footer__inner {
  gap: 80px 40px;
  gap: 5rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: auto;
  width: 1140px;
  width: 71.25rem;
}

.footer__name {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
}

.footer__info-right {
  gap: 4px;
  gap: .25rem;
  display: grid;
}

.footer__info-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  font-size: .875rem;
  white-space: nowrap;
}

.footer__info-ttl {
  font-size: 13px;
  font-size: .8125rem;
}

.footer__info-text {
  font-size: 13px;
  font-size: .8125rem;
}

.footer__contact {
  gap: 10px;
  gap: .625rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.footer__contact i {
  font-size: 16px;
  font-size: 1rem;
}

.footer__contact-btn--mail {
  gap: 5px;
  gap: .3125rem;
  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;
  -webkit-transition: opacity .4s;
  transition: opacity .4s;
  border-radius: .375rem;
  background-color: #fff;
  height: 44px;
  height: 2.75rem;
  color: #263238;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: bold;
}

.footer__contact-btn--mail:hover {
  opacity: .7;
}

.footer__contact-btn--tel {
  gap: 5px;
  gap: .3125rem;
  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;
  -webkit-transition: opacity .4s;
  transition: opacity .4s;
  border-radius: .375rem;
  background-color: #fff;
  height: 44px;
  height: 2.75rem;
  color: #263238;
  font-size: 13px;
  font-size: .8125rem;
}

.footer__contact-btn--tel:hover {
  opacity: .7;
}

.footer__right {
  color: #fff;
}

.footer__list {
  list-style: none;
}

.footer__list-link {
  gap: 10px;
  gap: .625rem;
  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: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-transition: opacity .4s;
  transition: opacity .4s;
  border-bottom: 1px solid #fff;
  padding: 13px 20px 14px 0;
  padding: .8125rem 1.25rem .875rem 0;
  font-size: 14px;
  font-size: .875rem;
}

.footer__list-link:hover {
  opacity: .7;
}

.footer__list-link img {
  aspect-ratio: 1/1;
  width: 21px;
  width: 1.3125rem;
}

.footer__bottom {
  grid-column: 1/span 2;
}

.footer__menu {
  gap: 6px 18px;
  gap: .375rem 1.125rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 0 32px;
  margin: 0 0 2rem;
}

.footer__menu-link {
  gap: 5px;
  gap: .3125rem;
  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;
  font-size: 13px;
  font-size: .8125rem;
}

.footer__menu-link i {
  font-size: 10px;
  font-size: .625rem;
}

.footer__copy {
  font-size: 13px;
  font-size: .8125rem;
  text-align: center;
}

.header {
  gap: 10px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 300;
  border-top: 3px solid #3668c1;
  background-color: #fff;
  width: 100%;
  font-family: 'メイリオ', 'Meiryo', 'ＭＳ ゴシック', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', sans-serif;
}

/*
header__top
--------------------*/
.header__top-inner {
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 16px 30px;
  padding: 1rem 1.875rem;
  max-width: 1200px;
  max-width: 75rem;
}

.header__logo {
  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;
  max-width: 380px;
}

.header__logo img {
  aspect-ratio: 941/151;
  max-width: 380px;
  height: auto;
}

.header__hours {
  color: #78909c;
  font-size: 13px;
  font-size: .8125rem;
}

.header__top-right {
  gap: 26px;
  gap: 1.625rem;
  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__info {
  padding: 8px 20px 3px 0;
  padding: .5rem 1.25rem .1875rem 0;
  text-align: right;
}

.header__tel {
  margin: 2px 0 0;
  margin: .125rem 0 0;
  color: #4788b4;
  font-family: Arial;
  font-size: 32px;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
}

.header__menu-btn {
  display: none;
}

.header__menu-btn-line {
  border-radius: .2336448598vw;
  background-color: #fff;
  width: 4.2056074766vw;
  height: 2px;
}

/*
header__bottom
--------------------*/
.header__bottom {
  position: relative;
  background-color: #3668c1;
}

.header__bottom-inner {
  gap: 20px;
  gap: 1.25rem;
  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;
  margin: 0 auto;
  max-width: 1140px;
  max-width: 71.25rem;
}

.header__nav {
  width: 100%;
}

.header__nav-list {
  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-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  width: 100%;
}

.header__nav-list li {
  -webkit-transition: background-color .4s ease, opacity .4s ease;
  transition: background-color .4s ease, opacity .4s ease;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-top: 1px solid #3668c1;
  border-right: 2px solid #fff;
  border-right: .125rem solid #fff;
  border-bottom: 1px solid #3668c1;
  width: 25%;
}

.header__nav-list li:hover {
  opacity: .8;
  background-color: #fff;
}

.header__nav-list li:first-child {
  border-left: 2px solid #fff;
  border-left: .125rem solid #fff;
}

.header__nav-list li a {
  display: block;
  -webkit-transition: color .4s ease, opacity .4s ease;
  transition: color .4s ease, opacity .4s ease;
  padding: 13px 0;
  padding: .8125rem 0;
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
}

.header__nav-list li a:hover {
  opacity: .7;
  color: #3668c1;
}

/*
header-pc-menu
--------------------*/
.header-pc-menu__trigger {
  margin-left: 15px;
  background-color: rgba(255, 255, 255, .39);
  padding: 10px;
}

.js-menu-trigger {
  aspect-ratio: 1/1;
  gap: 5px;
  gap: .3125rem;
  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;
  -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;
  width: 55px;
  width: 3.4375rem;
}

.header-pc-menu__trigger-line {
  border-radius: .0625rem;
  background-color: #3668c1;
  width: 19px;
  width: 1.1875rem;
  height: 2px;
  height: .125rem;
}

.header-pc-menu {
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-transform: translateY(-.625rem);
  transform: translateY(-.625rem);
  visibility: hidden;
  opacity: 0;
  z-index: 2000;
  -webkit-transition: opacity .2s ease, visibility .2s ease, -webkit-transform .2s ease;
  transition: opacity .2s ease, visibility .2s ease, -webkit-transform .2s ease;
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease, -webkit-transform .2s ease;
  background-color: #fff;
  width: 100%;
}

.header-pc-menu.is-open {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}

.header-pc-menu__inner {
  gap: 60px 30px;
  gap: 3.75rem 1.875rem;
  display: grid;
  grid-template-columns: 1fr 22.5rem;
  margin: auto;
  padding: 30px 30px 20px;
  padding: 1.875rem 1.875rem 1.25rem;
  max-width: 1200px;
}

.header-pc-menu__ttl {
  margin: 0 0 6px;
  margin: 0 0 .375rem;
  color: #263238;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
}

.header-pc-menu__contact {
  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;
}

.header-pc-menu__contact-list {
  gap: 8px;
  gap: .5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.header-pc-menu__contact-list i {
  font-size: 16px;
  font-size: 1rem;
}

.header-pc-menu__contact-btn--mail {
  gap: 5px;
  gap: .3125rem;
  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;
  -webkit-transition: opacity .4s ease;
  transition: opacity .4s ease;
  border: 1px solid #CFD8DC;
  border-radius: .375rem;
  background-color: #fff;
  padding: 12px 0 10px;
  padding: .75rem 0 .625rem;
  width: 176px;
  width: 11rem;
  height: 44px;
  height: 2.75rem;
  color: #263238;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: bold;
  line-height: 1.1;
}

.header-pc-menu__contact-btn--mail:hover {
  opacity: .7;
}

.header-pc-menu__contact-btn--tel {
  gap: 5px;
  gap: .3125rem;
  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;
  -webkit-transition: opacity .4s ease;
  transition: opacity .4s ease;
  border: 1px solid #CFD8DC;
  border-radius: .375rem;
  background-color: #fff;
  padding: 12px 0 10px;
  padding: .75rem 0 .625rem;
  width: 176px;
  width: 11rem;
  height: 44px;
  height: 2.75rem;
  min-height: 34px;
  min-height: 2.125rem;
  color: #263238;
  font-size: 14px;
  font-size: .875rem;
  line-height: 1.1;
}

.header-pc-menu__contact-btn--tel:hover {
  opacity: .7;
}

.header-pc-menu__list {
  font-family: 'メイリオ', 'Meiryo', 'ＭＳ ゴシック', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', sans-serif;
}

.header-pc-menu__link {
  gap: 10px;
  gap: .625rem;
  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: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-transition: opacity .4s ease;
  transition: opacity .4s ease;
  border-bottom: 1px solid #CFD8DC;
  padding: 15px 10px 14px 0;
  padding: .9375rem .625rem .875rem 0;
  color: #263238;
  font-size: 14px;
  font-size: .875rem;
}

.header-pc-menu__link:hover {
  opacity: .7;
}

.header-pc-menu__link i {
  font-size: 10px;
  font-size: .625rem;
}

.header-pc-menu__bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  grid-column: 1/span 2;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.header-pc-menu__rule {
  gap: 16px;
  gap: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.header-pc-menu__rule-link {
  gap: 3px;
  gap: .1875rem;
  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-transition: opacity .4s ease;
  transition: opacity .4s ease;
  color: #263238;
  font-size: 13px;
  font-size: .8125rem;
}

.header-pc-menu__rule-link:hover {
  opacity: .7;
}

.header-pc-menu__rule-link i {
  font-size: 9px;
  font-size: .5625rem;
}

.header-pc-menu__close {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  -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;
  -webkit-transition: opacity .4s ease;
  transition: opacity .4s ease;
  background-color: #78909C;
  width: 50px;
  width: 3.125rem;
  height: 50px;
  height: 3.125rem;
}

.header-pc-menu__close:hover {
  opacity: .7;
}

.header-pc-menu__close i {
  color: #fff;
  font-size: 14px;
  font-size: .875rem;
}

/*
sp-menu
--------------------*/
.sp-menu {
  display: none;
}

.sp-menu__header {
  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: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 0 0 20px;
  padding: 0 0 0 1.25rem;
}

.sp-menu__logo {
  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;
  max-width: 50.9345794393vw;
}

.sp-menu__logo img {
  aspect-ratio: 941/151;
  max-width: 218px;
  max-width: 13.625rem;
  height: auto;
}

.sp-menu__close {
  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;
  background-color: #78909c;
  width: 50px;
  width: 3.125rem;
  height: 50px;
  height: 3.125rem;
  color: #fff;
}

.sp-menu__inner {
  background-color: rgba(54, 104, 193, .1019607843);
  padding: 30px 20px 80px;
  padding: 1.875rem 1.25rem 5rem;
}

.sp-menu__ttl-center {
  margin: 0 0 8px;
  margin: 0 0 .5rem;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 700;
  text-align: center;
}

.sp-menu__contact {
  gap: 11px;
  gap: .6875rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.sp-menu__contact-btn {
  gap: 5px;
  gap: .3125rem;
  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;
  border: 1px solid #cfd8dc;
  background-color: #fff;
  padding: 4px 0 0;
  padding: .25rem 0 0;
  width: 100%;
  height: 44px;
  height: 2.75rem;
  min-height: 34px;
  min-height: 2.125rem;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 700;
}

.sp-menu__contact-btn--tel {
  font-size: 13px;
  font-size: .8125rem;
}

.sp-menu__section {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.sp-menu__nav-list {
  gap: 8px 11px;
  gap: .5rem .6875rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
}

.sp-menu__nav-list li a {
  gap: 5px;
  gap: .3125rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #cfd8dc;
  border-radius: .1875rem;
  background-color: #fff;
  padding: 11px 0;
  padding: .6875rem 0;
  width: 100%;
  font-size: 13px;
  font-size: .8125rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.sp-menu__nav-list {
  gap: 8px 11px;
  gap: .5rem .6875rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0 0 30px;
  margin: 0 0 1.875rem;
}

.sp-menu__rule {
  gap: 5px;
  gap: .3125rem;
  display: grid;
  margin-top: 30px;
  margin-top: 1.875rem;
}

.sp-menu__rule li {
  line-height: 20px;
  line-height: 1.25rem;
}

.sp-menu__rule-link {
  font-size: 12px;
  font-size: .75rem;
}

.cta-buttons {
  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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 1.875rem;
  -moz-column-gap: 1.875rem;
  column-gap: 1.875rem;
  margin: 0 auto;
}

.cta-button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -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;
  -webkit-column-gap: .8125rem;
  -moz-column-gap: .8125rem;
  column-gap: .8125rem;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  -webkit-box-shadow: 0 .3125rem .5rem rgba(0, 0, 0, .25);
  box-shadow: 0 .3125rem .5rem rgba(0, 0, 0, .25);
  border: 2px solid #fff;
  border-radius: 3.125rem;
  width: 504px;
  width: 31.5rem;
  height: 100px;
  height: 6.25rem;
}

.cta-button::before {
  position: absolute;
  top: 50%;
  right: 20px;
  right: 1.25rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 44px;
  width: 2.75rem;
  height: 44px;
  height: 2.75rem;
  content: '';
}

.cta-button__icon {
  width: 42px;
  width: 2.625rem;
  height: auto;
}

.cta-button-contact {
  background: -webkit-gradient(linear, left top, left bottom, from(#ff1515), to(#ba0000));
  background: linear-gradient(to bottom, #ff1515, #ba0000);
}

.cta-button-contact::before {
  background: url(../img/button-icon-a-pc.webp) center center/cover no-repeat;
}

.cta-button-audit {
  background: -webkit-gradient(linear, left top, left bottom, from(#fce442), to(#ffae00));
  background: linear-gradient(to bottom, #fce442, #ffae00);
}

.cta-button-audit::before {
  background: url(../img/button-icon-b-pc.webp) center center/cover no-repeat;
}

.cta-button__text {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
}

.cta-button-contact .cta-button__text {
  color: #fff;
}

.cta-button-audit .cta-button__text {
  color: #024190;
}

.cta-button__notice {
  border-radius: .3125rem;
  padding: 0 9px;
  padding: 0 .5625rem;
  color: #cb0303;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: .14em;
}

.cta-button-contact .cta-button__notice {
  background-color: #ffe100;
}

.cta-button-audit .cta-button__notice {
  background-color: #fff;
  color: #024190;
}

/*
side-cta
-------------------------------------------*/
.side-cta {
  position: fixed;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  visibility: hidden;
  opacity: 0;
  z-index: 200;
  -webkit-transition: opacity .3s ease, visibility .3s ease;
  transition: opacity .3s ease, visibility .3s ease;
}

.side-cta.is-visible {
  visibility: visible;
  opacity: 1;
}

.side-cta__buttons {
  gap: 20px;
  gap: 1.25rem;
  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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.side-cta__button {
  gap: 7px;
  gap: .4375rem;
  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;
  -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;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-top-left-radius: 5px;
  border-top-left-radius: .3125rem;
  border-bottom-left-radius: 5px;
  border-bottom-left-radius: .3125rem;
  padding: 1px 0;
  padding: .0625rem 0;
  width: 104px;
  width: 6.5rem;
  height: 100px;
  height: 6.25rem;
}

.side-cta__button div {
  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;
  -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;
}

.side-cta__button-label {
  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;
  border-radius: .3125rem;
  width: 65px;
  width: 4.0625rem;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .14em;
}

.side-cta__button-text {
  color: #024190;
  font-weight: 700;
  letter-spacing: .02em;
  white-space: nowrap;
}

.side-cta__button-text--sp {
  display: none;
}

.side-cta__button-contact {
  border: 1px solid #dbdbdb;
  background-color: #fff;
}

.side-cta__button-contact img {
  aspect-ratio: 29/20;
  width: 28px;
  width: 1.75rem;
}

.side-cta__button-contact .side-cta__button-label {
  background-color: #f00;
  color: #fff;
}

.side-cta__button-contact .side-cta__button-text {
  margin-top: 5px;
  margin-top: .3125rem;
  font-size: 15px;
  font-size: .9375rem;
}

.side-cta__button-audit {
  background-color: #ffc800;
}

.side-cta__button-audit img {
  aspect-ratio: 1/1;
  width: 28px;
  width: 1.75rem;
}

.side-cta__button-audit .side-cta__button-label {
  background-color: #fff;
  color: #024190;
}

.side-cta__button-audit .side-cta__button-text {
  font-size: 16px;
  font-size: 1rem;
}

.main {
  background-color: #0096df;
  padding-top: var(--header-height);
}

/*
fv
-------------------------------------------*/
.fv {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: url(../img/fv-bg-pc.webp) center center/cover no-repeat;
  padding: 60px 0 166px;
  padding: 3.75rem 0 10.375rem;
}

.fv__inner {
  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-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0 30px;
  max-width: 1360px;
}

.fv__left {
  gap: 16px 0;
  gap: 1rem 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;
}

.fv__area-text {
  -webkit-box-shadow: 0 .1875rem .1875rem rgba(103, 133, 167, .2);
  box-shadow: 0 .1875rem .1875rem rgba(103, 133, 167, .2);
  background-color: #fff;
  padding: 9px 32px;
  padding: .5625rem 2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #024190;
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: 500;
}

.fv__text {
  color: #024190;
  font-size: 34px;
  font-size: 2.125rem;
  font-weight: 700;
}

.fv__text--emphasis {
  color: #e15b29;
}

.fv__strong-text-wrapper {
  gap: 12px 0;
  gap: .75rem 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;
}

.fv__strong-text {
  background-color: #024190;
  padding: 0 18px;
  padding: 0 1.125rem;
  color: #fff;
  font-size: 55px;
  font-size: 3.4375rem;
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1.5090909091;
}

.fv__strong-text--small {
  font-size: 42px;
  font-size: 2.625rem;
}

.fv__right {
  gap: 5px 0;
  gap: .3125rem 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;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.fv__image-box {
  aspect-ratio: 280/333;
  width: 280px;
  width: 17.5rem;
  height: auto;
}

.fv__right-text {
  color: #fff;
  font-size: 11px;
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .03em;
  line-height: 1.5454545455;
  text-shadow: 0 0 5px #000;
  text-shadow: 0 0 .3125rem #000;
}

.fv-under-cta {
  position: relative;
  z-index: 3;
  margin-top: -130px;
  margin-top: -8.125rem;
}

/*
about
-------------------------------------------*/
.about {
  position: relative;
  z-index: 2;
  margin-top: -86px;
  margin-top: -5.375rem;
}

.about::before {
  aspect-ratio: 849/846;
  position: absolute;
  top: 160px;
  top: 10rem;
  left: calc((100vw - 1500px) / 2);
  background: url(../img/about-image.webp) top center/cover no-repeat;
  width: 56.6vw;
  max-width: 849px;
  height: auto;
  max-height: 846px;
  content: '';
}

.about__inner {
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 auto;
  padding-top: 177px;
  padding-top: 11.0625rem;
  max-width: 1500px;
}

.about__title {
  color: #fff;
  font-size: 34px;
  font-size: 2.125rem;
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1.5294117647;
  text-align: center;
}

.about__emphasis-title {
  font-size: 53px;
  font-size: 3.3125rem;
  letter-spacing: .01em;
  line-height: 1.4339622642;
}

.about__emphasis-title--color {
  color: #ffe9a8;
}

.about__emphasis-title--small {
  font-size: 41px;
  font-size: 2.5625rem;
}

.about__wrapper {
  gap: 36px;
  gap: 2.25rem;
  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;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-right: 10%;
  width: 100%;
}

.about__left {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 100%;
  max-width: 849px;
}

.about__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;
  margin-top: 110px;
  margin-top: 6.875rem;
  width: 35%;
  max-width: 465px;
  max-width: 29.0625rem;
}

.about__right-text-box {
  position: relative;
}

.about__right-text-box:first-child {
  padding-top: 24px;
  padding-top: 1.5rem;
}

.about__right-text-box:first-child::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 45px;
  width: 2.8125rem;
  height: 1px;
  height: .0625rem;
  content: '';
}

.about__right-text-box--2 {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.about__right-text-box--3 {
  margin-top: 44px;
  margin-top: 2.75rem;
}

.about__right-text {
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: .04em;
  line-height: 2.1;
}

.about__right-text--emphasis {
  color: #ffe9a8;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
}

.about__right-text--small {
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: .01em;
  line-height: 1.5;
}

.about__right-notice {
  margin-top: 21px;
  margin-top: 1.3125rem;
  color: #fff;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .04em;
  line-height: 1.6666666667;
}

/*
about-management
-------------------------------------------*/
.about-management {
  position: relative;
  margin-top: 88px;
  margin-top: 5.5rem;
  padding: 0 20px 148px;
  padding: 0 1.25rem 9.25rem;
  width: 100%;
}

.about-management::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: url(../img/bg-town.webp) center center/cover no-repeat;
  width: 100%;
  height: 100%;
  content: '';
}

.about-management__inner {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
}

.about-management__header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -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;
  background-color: #005dd1;
  height: 57px;
  height: 3.5625rem;
}

.about-management__header::after {
  position: absolute;
  bottom: -15px;
  bottom: -.9375rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background-color: #005dd1;
  width: 32px;
  width: 2rem;
  height: 15px;
  height: .9375rem;
  content: '';
}

.about-management__title {
  color: #fff;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.5;
}

.about-management__body {
  background-color: rgba(255, 255, 255, .7);
  padding: 32px 60px 60px;
  padding: 2rem 3.75rem 3.75rem;
}

.about-management__subtitle {
  position: relative;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #222;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.3846153846;
  text-align: center;
}

.about-management__subtitle::before, .about-management__subtitle::after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #222;
  width: 30px;
  width: 1.875rem;
  height: 2px;
  height: .125rem;
  content: '';
}

.about-management__subtitle::before {
  left: -35px;
  left: -2.1875rem;
  rotate: 65deg;
}

.about-management__subtitle::after {
  right: -35px;
  right: -2.1875rem;
  rotate: 115deg;
}

.about-management__wrapper {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.about-management__images {
  gap: 0;
  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;
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
}

.about-management__image-box {
  aspect-ratio: 360/234;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  overflow: hidden;
}

.about-management__image-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.about-management__services {
  gap: 18px 15px;
  gap: 1.125rem .9375rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 30px;
  margin-top: 1.875rem;
}

.about-management__service-item {
  gap: 10px;
  gap: .625rem;
  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;
  border-radius: .3125rem;
  background-color: #fff;
  padding: 20px 20px;
  padding: 1.25rem 1.25rem;
}

.about-management__service-icon {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 26px;
  width: 1.625rem;
  height: 26px;
  height: 1.625rem;
}

.about-management__service-text {
  color: #000;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: .02em;
  line-height: 1.55;
}

/*
cta-section
-------------------------------------------*/
.cta-section {
  background-color: #024190;
  padding: 103px 30px 96px;
  padding: 6.4375rem 1.875rem 6rem;
}

.cta-section__title {
  color: #fff;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.2647058824;
  text-align: center;
}

.cta-button-contact-wrapper__text {
  margin-top: 7px;
  margin-top: .4375rem;
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: .04em;
  line-height: 2;
  text-align: center;
}

.cta-wrapper-other {
  margin-top: 55px;
  margin-top: 3.4375rem;
}

/*
reason
-------------------------------------------*/
.reason {
  position: relative;
  background-color: #5db5f7;
  padding: 100px 20px;
  padding: 6.25rem 1.25rem;
  overflow: hidden;
}

.reason::before {
  aspect-ratio: 610/784;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: url(../img/bg-top-left.webp) top center/cover no-repeat;
  width: 40.6666666667vw;
  max-width: 610px;
  height: auto;
  content: '';
}

.reason::after {
  aspect-ratio: 679/910;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: url(../img/bg-bottom-left.webp) top left/cover no-repeat;
  width: 45.2666666667vw;
  max-width: 679px;
  height: auto;
  content: '';
}

.reason__inner-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
}

.reason__inner-wrapper::before {
  aspect-ratio: 501/496;
  position: absolute;
  top: 0;
  right: 0;
  background: url(../img/icon-bluearrow-white.webp) top left/cover no-repeat;
  width: 33.4vw;
  max-width: 501px;
  height: auto;
  content: '';
}

.reason__inner-wrapper::after {
  aspect-ratio: 590/1078;
  position: absolute;
  right: 0;
  bottom: 360px;
  bottom: 22.5rem;
  background: url(../img/bg-right.webp) center center/cover no-repeat;
  width: 39.3333333333vw;
  max-width: 590px;
  height: auto;
  content: '';
}

.reason__inner {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
}

.reason__header {
  gap: 20px 0;
  gap: 1.25rem 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;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.reason__icon {
  aspect-ratio: 80/48;
  width: 80px;
  width: 5rem;
  height: auto;
}

.reason__title {
  color: #fff;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.34375;
  text-align: center;
}

.reason__content {
  margin-top: 80px;
  margin-top: 5rem;
}

.reason__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 2;
}

.reason__row--1 {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.reason__row--2 {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-top: 100px;
  margin-top: 6.25rem;
}

.reason__row--3 {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-top: 111px;
  margin-top: 6.9375rem;
}

.reason__text-box {
  position: relative;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 1.25rem;
  background-color: #fff;
  padding: 80px 50px 58px;
  padding: 5rem 3.125rem 3.625rem;
  width: 530px;
  width: 33.125rem;
  height: auto;
}

.reason__row--1 .reason__text-box {
  left: 50px;
  left: 3.125rem;
}

.reason__row--2 .reason__text-box {
  right: 50px;
  right: 3.125rem;
}

.reason__row--3 .reason__text-box {
  left: 50px;
  left: 3.125rem;
}

.reason__point-icon {
  aspect-ratio: 1/1;
  position: absolute;
  top: -63px;
  top: -3.9375rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 126px;
  width: 7.875rem;
  height: auto;
}

.reason__heading {
  position: relative;
  color: #1464ba;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.5714285714;
}

.reason__heading span {
  position: relative;
}

.reason__heading span::after {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  background-color: #fdb8c9;
  width: 100%;
  height: 10px;
  height: .625rem;
  content: '';
}

.reason__text {
  margin-top: 15px;
  margin-top: .9375rem;
  color: #3b4043;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: .04em;
  line-height: 2;
}

.reason__image-box {
  aspect-ratio: 670/483;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 670px;
  width: 41.875rem;
  height: auto;
  overflow: hidden;
}

.reason__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/*
services
-------------------------------------------*/
.services {
  background-color: #50a7ee;
  padding: 100px 0 138px;
  padding: 6.25rem 0 8.625rem;
}

.services__inner {
  margin: 0 auto;
  padding: 0 20px;
  padding: 0 1.25rem;
  max-width: 1240px;
}

.services__header {
  gap: 20px 0;
  gap: 1.25rem 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;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.services__icon {
  aspect-ratio: 1/1;
  width: 66px;
  width: 4.125rem;
  height: auto;
}

.services__title {
  color: #fff;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.34375;
  text-align: center;
}

.services__contents {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
  margin-top: 63px;
  margin-top: 3.9375rem;
  background-color: #fff;
  width: 100%;
  max-width: 1200px;
}

.services__heading {
  position: relative;
  background-color: #005dd1;
  padding: 10px 0;
  padding: .625rem 0;
  color: #fff;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-align: center;
}

.services__heading::before {
  position: absolute;
  bottom: -14px;
  bottom: -.875rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background-color: #005dd1;
  width: 32px;
  width: 2rem;
  height: 15px;
  height: .9375rem;
  content: '';
}

.services__body {
  padding: 35px 50px 55px;
  padding: 2.1875rem 3.125rem 3.4375rem;
}

.services__desc {
  color: #222;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.7777777778;
}

.service-table {
  margin-top: 43px;
  margin-top: 2.6875rem;
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  max-width: 1100px;
}

.service-table__head--sticky {
  position: -webkit-sticky;
  position: sticky;
  top: calc(var(--header-height) - 1px);
  z-index: 10;
}

.service-table__head tr th {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-top: 2px solid #005dd1;
  border-bottom: 1px solid #005dd1;
  border-left: 1px solid #005dd1;
  background-color: #005dd1;
  padding: 15px 30px;
  padding: .9375rem 1.875rem;
  width: 305px;
  width: 19.0625rem;
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-align: left;
}

.service-table__head tr th:not(:last-child) {
  border-right: 1px solid #fff;
}

.service-table__head tr th:last-child {
  border-right: 1px solid #005dd1;
}

.service-table__body tr th {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-top: 1px solid #7e7e7e;
  border-bottom: 1px solid #7e7e7e;
  border-left: 1px solid #7e7e7e;
  background-color: #e7eff7;
  padding: 15px 30px;
  padding: .9375rem 1.875rem;
  width: 27.7272727273%;
  color: #024190;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .04em;
  line-height: 1.875;
  text-align: left;
}

.service-table__body tr th:not(:first-child) {
  border-top: none;
}

.service-table__body tr td {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-top: 1px solid #7e7e7e;
  border-bottom: 1px solid #7e7e7e;
  border-left: 1px solid #7e7e7e;
  padding: 11.55px 31px;
  padding: .721875rem 1.9375rem;
  color: #222;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .04em;
  line-height: 1.875;
}

.service-table__body tr td:first-child {
  width: 38.7272727273%;
}

.service-table__body tr td:not(:first-child) {
  border-top: none;
}

.service-table__body tr td:last-child {
  border-right: 1px solid #7e7e7e;
}

.service-table__body tr td div {
  display: inline;
  vertical-align: middle;
}

.service-table__option img {
  vertical-align: middle;
}

.service-table__option span {
  vertical-align: middle;
  margin-left: 12px;
  margin-left: .75rem;
}

.service-table__body tr td img {
  aspect-ratio: 1/1;
  width: 26px;
  width: 1.625rem;
  height: auto;
}

.service-table-price {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.service-table-price .service-table__body tr th {
  padding: 13.8px 30px;
  padding: .8625rem 1.875rem;
}

.service-table-price .service-table__body tr td {
  padding: 13.8px 30px;
  padding: .8625rem 1.875rem;
}

.service__text-box {
  margin-top: 23px;
  margin-top: 1.4375rem;
}

.service__text {
  color: #222;
  font-size: 14px;
  font-size: .875rem;
  line-height: 2.1428571429;
}

/*
voice
-------------------------------------------*/
.voice {
  position: relative;
  z-index: 1;
  background-color: #ffe6d4;
  padding: 100px 0;
  padding: 6.25rem 0;
}

.voice::before {
  aspect-ratio: 526/748;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: url(../img/bg-voice-left.webp) top center/cover no-repeat;
  width: 526px;
  width: 32.875rem;
  height: auto;
  content: '';
}

.voice::after {
  aspect-ratio: 1315/1336;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  background: url(../img/bg-voice-right.webp) top center/cover no-repeat;
  width: 668px;
  width: 41.75rem;
  height: auto;
  content: '';
}

.voice__inner {
  margin: 0 auto;
  padding: 0 20px;
  padding: 0 1.25rem;
  max-width: 1240px;
}

.voice__header {
  gap: 20px 0;
  gap: 1.25rem 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;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.voice__icon {
  aspect-ratio: 166/142;
  width: 83px;
  width: 5.1875rem;
  height: auto;
}

.voice__title {
  color: #1464ba;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.34375;
  text-align: center;
}

.voice__contents {
  gap: 0 64px;
  gap: 0 4rem;
  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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 42px;
  margin-top: 2.625rem;
}

.voice__item {
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-clip-path: polygon(0 95px, 50% 0, 100% 95px, 100% 100%, 0 100%);
  clip-path: polygon(0 95px, 50% 0, 100% 95px, 100% 100%, 0 100%);
  background-color: #fff;
  padding: 68px 40px 35px;
  padding: 4.25rem 2.5rem 2.1875rem;
  width: 568px;
  width: 35.5rem;
}

.voice__image-box {
  aspect-ratio: 268/241;
  width: 134px;
  width: 8.375rem;
  height: auto;
}

.voice__image {
  width: 100%;
  height: 100%;
}

.voice__user {
  margin-top: 13px;
  margin-top: .8125rem;
  border-radius: 1.25rem;
  background-color: #ff6cb0;
  padding: 7px 25px;
  padding: .4375rem 1.5625rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
}

.voice__text-box {
  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;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.voice__head-text {
  border-bottom: 1px solid #3782d3;
  border-bottom: .0625rem solid #3782d3;
  padding-bottom: 13px;
  padding-bottom: .8125rem;
  color: #1464ba;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.voice__text {
  margin-top: 10px;
  margin-top: .625rem;
  color: #222;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: .04em;
  line-height: 1.8888888889;
}

.voice__text--emphasis {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(30%, #ffd8e2));
  background: linear-gradient(transparent 70%, #ffd8e2 30%);
  color: #1464ba;
  font-weight: 700;
}

/*
company
-------------------------------------------*/
.company {
  background-color: #fff;
}

.company__inner {
  gap: 40px;
  gap: 2.5rem;
  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;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 100px 20px;
  padding: 6.25rem 1.25rem;
  max-width: 1240px;
}

.company__left-image-box {
  aspect-ratio: 600/406;
  width: 100%;
  max-width: 600px;
  max-width: 37.5rem;
}

.company__left-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.company__right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.company__right-image-box {
  aspect-ratio: 377/61;
  margin-top: 36px;
  margin-top: 2.25rem;
  width: 377px;
  width: 23.5625rem;
  height: auto;
}

.company__right-image {
  width: 100%;
  height: 100%;
}

.company__title {
  margin-top: 53px;
  margin-top: 3.3125rem;
  border-bottom: 1px solid #3782d3;
  border-bottom: .0625rem solid #3782d3;
  padding-bottom: 15px;
  padding-bottom: .9375rem;
  width: 100%;
  color: #3782d3;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
}

.company__row {
  gap: 29px;
  gap: 1.8125rem;
  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;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-top: 15px;
  margin-top: .9375rem;
  width: 100%;
}

.company__text {
  color: #222;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.7777777778;
}

.company__button {
  gap: 9px;
  gap: .5625rem;
  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;
  -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;
  -webkit-transition: opacity .3s linear;
  transition: opacity .3s linear;
  border-radius: 3.125rem;
  background-color: #3782d3;
  width: 100px;
  width: 6.25rem;
  height: 39px;
  height: 2.4375rem;
}

.company__button:hover {
  opacity: .7;
}

.company__button-text {
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7777777778;
}

.company__button-icon {
  aspect-ratio: 1/1;
  width: 14px;
  width: .875rem;
  height: auto;
}

.company__time {
  margin-top: 38px;
  margin-top: 2.375rem;
}

.company__holiday {
  margin-top: 13px;
  margin-top: .8125rem;
}

/*
faq
-------------------------------------------*/
.faq {
  background-color: #d8eaf8;
  padding: 100px 0;
  padding: 6.25rem 0;
}

.faq__inner {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0 20px;
  padding: 0 1.25rem;
  max-width: 1040px;
}

.faq__title {
  color: #1464ba;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-align: center;
}

.faq__contents {
  gap: 28px 0;
  gap: 1.75rem 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;
  margin-top: 60px;
  margin-top: 3.75rem;
}

.faq__item {
  border-radius: .625rem;
  background-color: #fff;
}

.faq__item[open] .faq__summary::marker, .faq__item[open] .faq__summary::-webkit-details-marker {
  display: none;
}

.faq__summary {
  gap: 0 16px;
  gap: 0 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-transition: padding .3s ease;
  transition: padding .3s ease;
  cursor: pointer;
  padding: 29px 69px 29px 49px;
  padding: 1.8125rem 4.3125rem 1.8125rem 3.0625rem;
  list-style: none;
}

.faq__summary::-webkit-details-marker {
  display: none;
}

.faq__summary::before {
  position: absolute;
  top: 50%;
  right: 50px;
  right: 3.125rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: top .3s ease, -webkit-transform .3s ease;
  transition: top .3s ease, -webkit-transform .3s ease;
  transition: transform .3s ease, top .3s ease;
  transition: transform .3s ease, top .3s ease, -webkit-transform .3s ease;
  background-color: #3782d3;
  width: 20px;
  width: 1.25rem;
  height: 2px;
  height: .125rem;
  content: '';
}

.faq__summary::after {
  position: absolute;
  top: 50%;
  right: 50px;
  right: 3.125rem;
  left: auto;
  -webkit-transform: translateY(-50%) rotate(0deg);
  transform: translateY(-50%) rotate(0deg);
  -webkit-transform-origin: center center;
  transform-origin: center center;
  opacity: 1;
  -webkit-transition: opacity .3s ease, top .3s ease, -webkit-transform .3s ease;
  transition: opacity .3s ease, top .3s ease, -webkit-transform .3s ease;
  transition: transform .3s ease, opacity .3s ease, top .3s ease;
  transition: transform .3s ease, opacity .3s ease, top .3s ease, -webkit-transform .3s ease;
  margin-right: 9px;
  margin-right: .5625rem;
  background-color: #3782d3;
  width: 2px;
  width: .125rem;
  height: 20px;
  height: 1.25rem;
  content: '';
}

.faq__item.is-open .faq__summary {
  padding-bottom: 11px;
  padding-bottom: .6875rem;
}

.faq__item.is-open .faq__summary::before {
  top: 60%;
}

.faq__item.is-open .faq__summary::after {
  top: 60%;
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
  opacity: 0;
}

.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  padding: 0 50px;
  padding: 0 3.125rem;
  overflow: hidden;
}

.faq__answer p {
  gap: 0 17px;
  gap: 0 1.0625rem;
  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;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  opacity: 0;
  -webkit-transition: opacity .3s linear .1s, -webkit-transform .3s linear .1s;
  transition: opacity .3s linear .1s, -webkit-transform .3s linear .1s;
  transition: opacity .3s linear .1s, transform .3s linear .1s;
  transition: opacity .3s linear .1s, transform .3s linear .1s, -webkit-transform .3s linear .1s;
  padding-right: 40px;
  padding-right: 2.5rem;
  min-height: 0;
}

.faq__item.is-open .faq__answer {
  grid-template-rows: 1fr;
  margin-bottom: 27px;
  margin-bottom: 1.6875rem;
}

.faq__item.is-open .faq__answer p {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

.faq__q,
.faq__a {
  min-width: 32px;
  min-width: 2rem;
  color: #3782d3;
  font-family: 'Jost', sans-serif;
  font-size: 27px;
  font-size: 1.6875rem;
  font-optical-sizing: auto;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.3333333333;
}

.faq__q-text {
  color: #222;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.6363636364;
}

.faq__a-text {
  color: #222;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.7777777778;
}

/*
contact
-------------------------------------------*/
.contact {
  scroll-margin-top: var(--header-height);
  padding: 100px 0 165px;
  padding: 6.25rem 0 10.3125rem;
}

.contact__inner {
  margin: 0 auto;
  padding: 0 20px;
  padding: 0 1.25rem;
  max-width: 1040px;
}

.contact__title {
  color: #fff;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-align: center;
}

.contact__text {
  margin-top: 15px;
  margin-top: .9375rem;
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.7777777778;
  text-align: center;
}

.contact__form-wrapper {
  margin-top: 57px;
  margin-top: 3.5625rem;
}

@media screen and (min-width: 1501px) {

  .reason::before {
    left: calc((100vw - 1500px) / 2);
  }

  .reason::after {
    left: calc((100vw - 1500px) / 2);
  }

  .reason__inner-wrapper::before {
    right: calc((100vw - 1500px) / 2);
  }

  .reason__inner-wrapper::after {
    right: calc((100vw - 1500px) / 2);
  }

  .voice::before {
    left: calc((100vw - 1500px) / 2);
  }

  .voice::after {
    right: calc((100vw - 1500px) / 2);
  }
}

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

  .about::before {
    left: 0;
  }
}

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

  .reason__row {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .reason__text-box {
    position: relative;
    top: 0;
    -webkit-transform: none;
    transform: none;
  }

  .reason__row--1 .reason__text-box {
    left: 0;
    margin-right: -50px;
    margin-right: -3.125rem;
  }

  .reason__row--2 .reason__text-box {
    right: 0;
    margin-left: -50px;
    margin-left: -3.125rem;
  }

  .reason__row--3 .reason__text-box {
    left: 0;
    margin-right: -50px;
    margin-right: -3.125rem;
  }
}

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

  html {
    font-size: 1.2307692308vw;
  }
}

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

  html {
    font-size: 3.738317757vw;
  }

  .contact-form {
    padding: 60px 15px 103px;
    padding: 3.75rem .9375rem 6.4375rem;
  }

  .contact-form__inner {
    gap: 40px;
    gap: 2.5rem;
  }

  .contact-form__label {
    gap: 10px;
    gap: .625rem;
    margin-bottom: 23px;
    margin-bottom: 1.4375rem;
  }

  .contact-form__radio-group .wpcf7-radio {
    gap: 18px 21px;
    gap: 1.125rem 1.3125rem;
  }

  .contact-form__radio-group label {
    padding: 0 12px;
    padding: 0 .75rem;
    height: 87px;
    height: 5.4375rem;
  }

  .contact-form__radio-group label input[type=radio] {
    margin-right: 9.8px;
    margin-right: .6125rem;
  }

  .contact-form__input {
    padding: 22px 33px;
    padding: 1.375rem 2.0625rem;
  }

  .contact-form__textarea {
    padding: 22px 33px;
    padding: 1.375rem 2.0625rem;
    line-height: 1.2222222222;
  }

  .contact-form__privacy {
    margin-top: 0;
  }

  .contact-form__privacy .wpcf7-list-item label {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .contact-form__privacy-text {
    line-height: 1.5625;
  }

  .contact-form__submit {
    margin-top: 0;
  }

  .contact-form__button {
    width: 307px;
    width: 19.1875rem;
  }

  :root {
    --header-height: 80px;
  }

  .onlyPc {
    display: none;
  }

  .onlySp {
    display: block;
  }

  .footer {
    padding: 40px 20px 100px;
    padding: 2.5rem 1.25rem 6.25rem;
  }

  .footer__inner {
    gap: 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;
    width: 100%;
  }

  .footer__info {
    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;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .footer__name {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    margin-bottom: 10px;
    margin-bottom: .625rem;
    font-size: 15px;
    font-size: .9375rem;
    text-align: center;
  }

  .footer__info-right {
    gap: 5px;
    gap: .3125rem;
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3;
  }

  .footer__contact {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    margin-top: 0;
    margin-bottom: 16px;
    margin-bottom: 1rem;
  }

  .footer__contact i {
    font-size: 14px;
    font-size: .875rem;
  }

  .footer__contact li:nth-child(1) {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
  }

  .footer__contact li:nth-child(2) {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }

  .footer__contact-btn--tel {
    font-size: 15px;
    font-size: .9375rem;
    font-weight: 700;
  }

  .footer__right {
    margin-top: 17px;
    margin-top: 1.0625rem;
  }

  .footer__list-link {
    padding: 10px 10px 10px 0;
    padding: .625rem .625rem .625rem 0;
  }

  .footer__bottom {
    margin-top: 20px;
    margin-top: 1.25rem;
  }

  .footer__menu {
    gap: 10px;
    gap: .625rem;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .footer__menu-link {
    font-size: 14px;
    font-size: .875rem;
  }

  .footer__copy {
    font-size: 12px;
    font-size: .75rem;
  }

  .header {
    border-top: none;
  }

  .header__top-inner {
    padding: 0 0 0 3.90625vw;
  }

  .header__logo img {
    width: 218px;
    width: 13.625rem;
    height: 100%;
  }

  .header__info {
    display: none;
  }

  .header__menu-btn {
    gap: 5px;
    gap: .3125rem;
    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;
    -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;
    background-color: #3668c1;
    width: 50px;
    width: 3.125rem;
    height: 50px;
    height: 3.125rem;
  }

  .header__bottom {
    display: none;
  }

  .sp-menu {
    position: fixed;
    top: 0;
    right: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    z-index: 350;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    -webkit-transition: -webkit-transform .25s linear;
    transition: -webkit-transform .25s linear;
    transition: transform .25s linear;
    transition: transform .25s linear, -webkit-transform .25s linear;
    background-color: rgba(255, 255, 255, .9);
    width: 100%;
    height: 100dvh;
    overflow-y: scroll;
    color: #263238;
  }

  .sp-menu[aria-hidden=false] {
    display: block;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  .sp-menu[aria-hidden=true] {
    display: block;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  .cta-buttons {
    gap: 21px 0;
    gap: 1.3125rem 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0 36px;
    padding: 0 2.25rem;
  }

  .cta-button {
    -webkit-column-gap: .5625rem;
    -moz-column-gap: .5625rem;
    column-gap: .5625rem;
    width: 100%;
    height: 84px;
    height: 5.25rem;
  }

  .cta-button::before {
    right: 8px;
    right: .5rem;
    width: 24px;
    width: 1.5rem;
    height: 24px;
    height: 1.5rem;
  }

  .cta-button__icon {
    width: 36px;
    width: 2.25rem;
  }

  .cta-button-contact::before {
    background: url(../img/button-icon-a-sp.webp) center center/cover no-repeat;
  }

  .cta-button-audit::before {
    background: url(../img/button-icon-b-sp.webp) center center/cover no-repeat;
  }

  .cta-button__text {
    font-size: 20px;
    font-size: 1.25rem;
  }

  .cta-button__notice {
    padding: 0 7.5px;
    padding: 0 .46875rem;
    font-size: 17px;
    font-size: 1.0625rem;
  }

  .side-cta {
    top: inherit;
    bottom: 0;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
    width: 100%;
  }

  .side-cta__buttons {
    gap: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 100%;
  }

  .side-cta__button {
    gap: 14px;
    gap: .875rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    border-top: 2px solid #fff;
    border-radius: 0;
    width: 50%;
    height: 75px;
    height: 4.6875rem;
  }

  .side-cta__button div {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .side-cta__button-text {
    letter-spacing: 0;
  }

  .side-cta__button-text--sp {
    display: inline;
  }

  .side-cta__button-contact {
    background-color: #ff2b00;
  }

  .side-cta__button-contact img {
    width: 40px;
    width: 2.5rem;
  }

  .side-cta__button-contact .side-cta__button-label {
    background-color: #fff;
    color: #f00;
  }

  .side-cta__button-contact .side-cta__button-text {
    color: #fff;
    font-size: 18px;
    font-size: 1.125rem;
  }

  .side-cta__button-audit img {
    width: 33px;
    width: 2.0625rem;
  }

  .side-cta__button-audit .side-cta__button-text {
    margin-top: 5px;
    margin-top: .3125rem;
    font-size: 18px;
    font-size: 1.125rem;
  }

  .fv {
    background: url(../img/fv-bg-sp.webp) top left/cover no-repeat;
    padding: 22px 20px 44px;
    padding: 1.375rem 1.25rem 2.75rem;
  }

  .fv__inner {
    gap: 18px 0;
    gap: 1.125rem 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0;
  }

  .fv__left {
    gap: 7px 0;
    gap: .4375rem 0;
    width: 100%;
  }

  .fv__area-text {
    padding: 3px 22.5px;
    padding: .1875rem 1.40625rem;
    font-size: 17px;
    font-size: 1.0625rem;
  }

  .fv__text {
    font-size: 22px;
    font-size: 1.375rem;
  }

  .fv__strong-text-wrapper {
    gap: 4px 0;
    gap: .25rem 0;
  }

  .fv__strong-text {
    padding: 0 11px;
    padding: 0 .6875rem;
    font-size: 34px;
    font-size: 2.125rem;
    line-height: 1.5882352941;
  }

  .fv__strong-text--small {
    font-size: 26px;
    font-size: 1.625rem;
  }

  .fv__right {
    gap: 10px 0;
    gap: .625rem 0;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .fv__image-box {
    aspect-ratio: 217/252;
    width: 217px;
    width: 13.5625rem;
    height: 252px;
    height: 15.75rem;
  }

  .fv__right-text {
    font-size: 9px;
    font-size: .5625rem;
    line-height: 1.4444444444;
  }

  .fv-under-cta {
    margin-top: 0;
  }

  .about::before {
    top: 402px;
    top: 25.125rem;
    width: 100%;
  }

  .about__inner {
    padding-top: 195px;
    padding-top: 12.1875rem;
  }

  .about__title {
    padding: 0 20px;
    padding: 0 1.25rem;
    width: 100%;
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.3333333333;
    text-align: left;
  }

  .about__emphasis-title {
    display: block;
    margin-top: 15px;
    margin-top: .9375rem;
    font-size: 44px;
    font-size: 2.75rem;
    line-height: 1.2727272727;
  }

  .about__emphasis-title--small {
    font-size: 34px;
    font-size: 2.125rem;
  }

  .about__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-right: 0;
  }

  .about__left {
    aspect-ratio: 1/1;
  }

  .about__right {
    margin-top: -20px;
    margin-top: -1.25rem;
    padding: 0 20px;
    padding: 0 1.25rem;
    width: 100%;
    max-width: inherit;
  }

  .about__right-text-box:first-child {
    padding-top: 16px;
    padding-top: 1rem;
  }

  .about__right-text-box:first-child::before {
    left: 10px;
    left: .625rem;
    width: 60px;
    width: 3.75rem;
  }

  .about__right-text-box--2 {
    margin-top: 0;
  }

  .about__right-text-box--3 {
    margin-top: 0;
  }

  .about__right-text {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 2.1111111111;
  }

  .about__right-text--emphasis {
    font-size: 26px;
    font-size: 1.625rem;
  }

  .about__right-text--small {
    font-size: 14px;
    font-size: .875rem;
  }

  .about__right-notice {
    display: block;
    margin-top: 18px;
    margin-top: 1.125rem;
  }

  .about-management {
    margin-top: 67px;
    margin-top: 4.1875rem;
    padding: 0 20px 112px;
    padding: 0 1.25rem 7rem;
  }

  .about-management__title {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.5;
  }

  .about-management__body {
    padding: 24px 14px 41px;
    padding: 1.5rem .875rem 2.5625rem;
  }

  .about-management__subtitle {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.6;
  }

  .about-management__subtitle::before, .about-management__subtitle::after {
    display: none;
  }

  .about-management__wrapper {
    margin-top: 18px;
    margin-top: 1.125rem;
  }

  .about-management__image-box {
    aspect-ratio: 120/78;
  }

  .about-management__services {
    gap: 10px;
    gap: .625rem;
    grid-template-columns: 1fr;
    margin-top: 15px;
    margin-top: .9375rem;
  }

  .about-management__service-item {
    padding: 14.5px 20px;
    padding: .90625rem 1.25rem;
  }

  .about-management__service-text {
    font-size: 18px;
    font-size: 1.125rem;
  }

  .cta-section {
    padding: 46px 0 46px;
    padding: 2.875rem 0 2.875rem;
  }

  .cta-section__title {
    font-size: 28px;
    font-size: 1.75rem;
    line-height: 1.3928571429;
  }

  .cta-button-contact-wrapper__text {
    margin-top: 8px;
    margin-top: .5rem;
    line-height: 1.8333333333;
    text-align: left;
  }

  .cta-wrapper-other {
    margin-top: 30px;
    margin-top: 1.875rem;
  }

  .reason {
    padding: 75px 0 95px;
    padding: 4.6875rem 0 5.9375rem;
  }

  .reason::before {
    width: 100%;
  }

  .reason::after {
    width: 100%;
  }

  .reason__inner-wrapper::before, .reason__inner-wrapper::after {
    display: none;
  }

  .reason__inner::before {
    width: 100%;
  }

  .reason__inner::after {
    width: 100%;
  }

  .reason__header {
    gap: 12px 0;
    gap: .75rem 0;
  }

  .reason__title {
    font-size: 28px;
    font-size: 1.75rem;
    line-height: 1.3571428571;
  }

  .reason__content {
    margin-top: 60px;
    margin-top: 3.75rem;
  }

  .reason__row {
    gap: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .reason__row--1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .reason__row--2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 64px;
    margin-top: 4rem;
  }

  .reason__row--3 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    margin-top: 64px;
    margin-top: 4rem;
  }

  .reason__text-box {
    position: relative;
    top: 0;
    -webkit-transform: none;
    transform: none;
    padding: 88px 14px 36px;
    padding: 5.5rem .875rem 2.25rem;
    width: calc(100% - 2.5rem);
    height: auto;
  }

  .reason__row--1 .reason__text-box {
    left: 0;
    z-index: 2;
    margin-top: -20px;
    margin-top: -1.25rem;
    margin-right: 0;
  }

  .reason__row--2 .reason__text-box {
    right: 0;
    z-index: 2;
    margin-top: -20px;
    margin-top: -1.25rem;
    margin-right: 0;
    margin-left: 0;
  }

  .reason__row--3 .reason__text-box {
    left: 0;
    z-index: 2;
    margin-top: -20px;
    margin-top: -1.25rem;
    margin-right: 0;
  }

  .reason__point-icon {
    -webkit-transform: none;
    transform: none;
    width: 123px;
    width: 7.6875rem;
  }

  .reason__row--1 .reason__point-icon {
    top: -62px;
    top: -3.875rem;
    left: 0;
  }

  .reason__row--2 .reason__point-icon {
    top: -62px;
    top: -3.875rem;
    right: 0;
    left: auto;
  }

  .reason__row--3 .reason__point-icon {
    top: -62px;
    top: -3.875rem;
    left: 0;
  }

  .reason__heading {
    font-size: 26px;
    font-size: 1.625rem;
    line-height: 1.5384615385;
  }

  .reason__heading span::after {
    bottom: 2px;
    bottom: .125rem;
  }

  .reason__text {
    margin-top: 21px;
    margin-top: 1.3125rem;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 2;
  }

  .reason__image-box {
    width: 341px;
    width: 21.3125rem;
  }

  .reason__row--1 .reason__image-box {
    margin-left: auto;
  }

  .reason__row--2 .reason__image-box {
    margin-right: auto;
  }

  .reason__row--3 .reason__image-box {
    margin-left: auto;
  }

  .services {
    padding-bottom: 133px;
    padding-bottom: 8.3125rem;
  }

  .services__inner {
    padding: 0;
  }

  .services__header {
    gap: 25px 0;
    gap: 1.5625rem 0;
  }

  .services__title {
    font-size: 28px;
    font-size: 1.75rem;
    line-height: 1.3928571429;
  }

  .services__contents {
    margin-top: 64px;
    margin-top: 4rem;
  }

  .services__body {
    padding: 32px 20px 44px;
    padding: 2rem 1.25rem 2.75rem;
  }

  .service-table {
    margin-top: 48px;
    margin-top: 3rem;
  }

  .service-table__head tr th {
    vertical-align: middle;
    padding: 0 14px;
    padding: 0 .875rem;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.375;
  }

  .service-table__body tr th {
    padding-top: 4px;
    padding-top: .25rem;
    padding-right: 20px;
    padding-right: 1.25rem;
    padding-bottom: 21px;
    padding-bottom: 1.3125rem;
    padding-left: 14px;
    padding-left: .875rem;
    width: 22.1962616822%;
  }

  .service-table__body tr td {
    vertical-align: middle;
    padding: 11.4px 10px;
    padding: .7125rem .625rem;
  }

  .service-table__body tr td:first-child {
    width: 57.9439252336%;
  }

  .service-table__body tr td:last-child {
    vertical-align: middle;
    padding: 7px;
    padding: .4375rem;
  }

  .service-table__body tr td div {
    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;
    -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;
  }

  .service-table__option span {
    margin-top: 3px;
    margin-top: .1875rem;
    margin-left: 0;
    font-size: 11px;
    font-size: .6875rem;
    line-height: 1.3636363636;
    text-align: center;
  }

  .service-table-price {
    margin-top: 47px;
    margin-top: 2.9375rem;
  }

  .service-table-price .service-table__body {
    display: block;
  }

  .service-table-price .service-table__head tr th {
    padding: 22px 12px;
    padding: 1.375rem .75rem;
  }

  .service-table-price .service-table__body tr th {
    grid-column: 1/-1;
    padding: 12px;
    padding: .75rem;
    width: 100%;
  }

  .service-table-price .service-table__body tr {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .service-table-price .service-table__body tr:last-child {
    border-bottom: 1px solid #7e7e7e;
  }

  .service-table-price .service-table__body tr td {
    border-bottom: none;
    padding: 8.6px 11px;
    padding: .5375rem .6875rem;
  }

  .service__text-box {
    margin-top: 41px;
    margin-top: 2.5625rem;
    padding: 0 2px;
    padding: 0 .125rem;
  }

  .service__text {
    font-size: 13px;
    font-size: .8125rem;
    line-height: 2;
  }

  .voice {
    padding: 100px 0 110px;
    padding: 6.25rem 0 6.875rem;
  }

  .voice::before {
    width: 386px;
    width: 24.125rem;
  }

  .voice::after {
    display: none;
  }

  .voice__header {
    gap: 15px 0;
    gap: .9375rem 0;
  }

  .voice__title {
    font-size: 28px;
    font-size: 1.75rem;
    line-height: 1.3928571429;
  }

  .voice__contents {
    gap: 55px 0;
    gap: 3.4375rem 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 60px;
    margin-top: 3.75rem;
  }

  .voice__item {
    -webkit-clip-path: polygon(0 62px, 50% 0, 100% 62px, 100% 100%, 0 100%);
    clip-path: polygon(0 62px, 50% 0, 100% 62px, 100% 100%, 0 100%);
    padding: 62px 14px 47px;
    padding: 3.875rem .875rem 2.9375rem;
    width: 100%;
  }

  .voice__user {
    margin-top: 10px;
    margin-top: .625rem;
  }

  .voice__text-box {
    margin-top: 32px;
    margin-top: 2rem;
  }

  .voice__head-text {
    padding-bottom: 14px;
    padding-bottom: .875rem;
    letter-spacing: .02em;
  }

  .company__inner {
    gap: 30px;
    gap: 1.875rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 60px 20px 52px;
    padding: 3.75rem 1.25rem 3.25rem;
    width: 100%;
  }

  .company__left-image-box {
    aspect-ratio: 388/263;
  }

  .company__right-image-box {
    margin-top: 0;
  }

  .company__title {
    margin-top: 26px;
    margin-top: 1.625rem;
    padding-bottom: 16px;
    padding-bottom: 1rem;
  }

  .company__row {
    gap: 12px;
    gap: .75rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 12px;
    margin-top: .75rem;
  }

  .company__time {
    margin-top: 12px;
    margin-top: .75rem;
  }

  .company__holiday {
    margin-top: 9px;
    margin-top: .5625rem;
  }

  .faq__title {
    font-size: 28px;
    font-size: 1.75rem;
  }

  .faq__contents {
    gap: 20px 0;
    gap: 1.25rem 0;
    margin-top: 25px;
    margin-top: 1.5625rem;
  }

  .faq__summary {
    gap: 0 10px;
    gap: 0 .625rem;
    padding: 19px 45px 19px 14px;
    padding: 1.1875rem 2.8125rem 1.1875rem .875rem;
  }

  .faq__summary::before {
    top: 37px;
    top: 2.3125rem;
    right: 14px;
    right: .875rem;
    width: 19px;
    width: 1.1875rem;
    height: 2px;
    height: .125rem;
  }

  .faq__summary::after {
    top: 37px;
    top: 2.3125rem;
    right: 14px;
    right: .875rem;
    width: 2px;
    width: .125rem;
    height: 19px;
    height: 1.1875rem;
  }

  .faq__item.is-open .faq__summary {
    padding-bottom: 13px;
    padding-bottom: .8125rem;
  }

  .faq__item.is-open .faq__summary::before {
    top: 37px;
    top: 2.3125rem;
  }

  .faq__item.is-open .faq__summary::after {
    top: 37px;
    top: 2.3125rem;
  }

  .faq__answer {
    padding: 0 14px;
    padding: 0 .875rem;
  }

  .faq__answer p {
    gap: 0 12px;
    gap: 0 .75rem;
    padding-right: 0;
  }

  .faq__item.is-open .faq__answer {
    margin-bottom: 20px;
    margin-bottom: 1.25rem;
  }

  .faq__q,
  .faq__a {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.5;
  }

  .faq__q-text {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.6666666667;
  }

  .contact {
    padding-bottom: 58px;
    padding-bottom: 3.625rem;
  }

  .contact__title {
    font-size: 28px;
    font-size: 1.75rem;
  }

  .contact__text {
    margin-top: 18px;
    margin-top: 1.125rem;
    padding: 0 15px;
    padding: 0 .9375rem;
    line-height: 2;
    text-align: left;
  }

  .contact__form-wrapper {
    margin-top: 45px;
    margin-top: 2.8125rem;
  }
}

@media (hover: hover) and (pointer: fine) {

  .cta-button:hover {
    -webkit-transform: translateY(.3125rem);
    transform: translateY(.3125rem);
    opacity: .7;
    -webkit-box-shadow: 0 0 .5rem rgba(0, 0, 0, .25);
    box-shadow: 0 0 .5rem rgba(0, 0, 0, .25);
  }

  .side-cta__button:hover {
    opacity: .7;
  }
}
/*# sourceMappingURL=map/style.css.map */