@charset "UTF-8";
/* =========================================================
 Base
========================================================= */
/* ==============================
  base配下のscssを読み込み
================================= */
/*!
 * ress.css • v1.2.2
 * MIT License
 * github.com/filipelinhares/ress
 */
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap");
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
}

*, :after, :before {
  background-repeat: no-repeat;
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

:after, :before {
  text-decoration: inherit;
  vertical-align: inherit;
}

* {
  padding: 0;
  margin: 0;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

hr {
  overflow: visible;
}

article, aside, details, figcaption, figure, footer, header, main, menu, nav, section, summary {
  display: block;
}

summary {
  display: list-item;
}

small {
  font-size: 80%;
}

[hidden], template {
  display: none;
}

abbr[title] {
  border-bottom: 1px dotted;
  text-decoration: none;
}

a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

a:active, a:hover {
  outline-width: 0;
}

code, kbd, pre, samp {
  font-family: monospace, monospace;
}

b, strong {
  font-weight: bolder;
}

dfn {
  font-style: italic;
}

mark {
  background-color: #ff0;
  color: #333;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

input {
  border-radius: 0;
}

[role=button], [type=button], [type=reset], [type=submit], button {
  cursor: pointer;
}

[disabled] {
  cursor: default;
}

[type=number] {
  width: auto;
}

[type=search] {
  -webkit-appearance: textfield;
}

[type=search]::-webkit-search-cancel-button, [type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

button, input, optgroup, select, textarea {
  font: inherit;
}

optgroup {
  font-weight: 700;
}

button {
  overflow: visible;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: 0;
  padding: 0;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

[type=reset], [type=submit], button, html [type=button] {
  -webkit-appearance: button;
}

button, select {
  text-transform: none;
}

button, input, select, textarea {
  background-color: transparent;
  border-style: none;
  color: inherit;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
}

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

select::-ms-value {
  color: currentColor;
}

legend {
  border: 0;
  color: inherit;
  display: table;
  max-width: 100%;
  white-space: normal;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

img {
  border-style: none;
}

progress {
  vertical-align: baseline;
}

svg:not(:root) {
  overflow: hidden;
}

audio, canvas, progress, video {
  display: inline-block;
}

@media screen {
  [hidden~=screen] {
    display: inherit;
  }
  [hidden~=screen]:not(:active):not(:focus):not(:target) {
    position: absolute !important;
    clip: rect(0 0 0 0) !important;
  }
}
[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled] {
  cursor: default;
}

::-moz-selection {
  background-color: #b3d4fc;
  color: #333;
  text-shadow: none;
}

::selection {
  background-color: #b3d4fc;
  color: #333;
  text-shadow: none;
}

/* ==============================
  変数を定義
================================= */
/* color */
/* media query */
/* ==============================
  base/mixin
================================= */
/* ==============================
  base/base
================================= */
html {
  font-size: 62.5%;
  color: #333;
  -webkit-text-size-adjust: 100%;
}

body {
  position: static;
  word-break: break-all;
  font-size: 160%;
  font-family: "Noto Sans JP", "Noto Sans", YuGothic, "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 500;
}

@media (max-width: 768px) {
  body {
    font-size: 140%;
  }
}
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 0.8s ease;
  transition: opacity 0.8s ease;
}

body.fade {
  opacity: 0;
}

body.fade::after {
  opacity: 1;
}

canvas {
  vertical-align: top;
}

ul,
ol,
li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

a {
  text-decoration: none;
  color: #333;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

img {
  height: auto;
  width: 100%;
  vertical-align: bottom;
}

img[src$=".svg"] {
  width: 100%;
}

i {
  font-style: normal;
}

button {
  border: none;
  border-color: none;
  background: none;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

div {
  letter-spacing: 0em;
}

@media (max-width: 768px) {
  div {
    font-size: 14px;
    line-height: 1.7142857143;
  }
}
p {
  font-size: inherit;
  letter-spacing: 0em;
}

@media (max-width: 768px) {
  p {
    font-size: 14px;
    line-height: 1.7142857143;
  }
}
label {
  font-size: inherit;
  line-height: 1.3;
  letter-spacing: 0.05em;
}

input::-webkit-input-placeholder {
  font-size: inherit;
}

input::-moz-placeholder {
  font-size: inherit;
}

input:-ms-input-placeholder {
  font-size: inherit;
}

input::-ms-input-placeholder {
  font-size: inherit;
}

input::placeholder {
  font-size: inherit;
}

table {
  width: 100%;
  border-collapse: collapse;
}

main {
  display: block;
}

/* ==============================
  base/ 調整
================================= */
.mt0 {
  margin-top: 0px !important;
}

.mb0 {
  margin-bottom: 0px !important;
}

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

/* ==============================
  PC、SP出しわけ
================================= */
.is-pc {
  display: block;
}

@media (max-width: 768px) {
  .is-pc {
    display: none;
  }
}
.is-sp {
  display: none;
}

@media (max-width: 768px) {
  .is-sp {
    display: block;
  }
}
/* =========================================================
 Layout
========================================================= */
.l-page-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 1060px) {
  .l-page-container {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.l-container {
  max-width: 828px;
  margin: 0 auto;
  padding: 0 20px;
}

.l-main {
  overflow-x: hidden;
  position: relative;
  width: calc(100% - 330px);
}

@media (max-width: 1060px) {
  .l-main {
    width: 100%;
    padding-top: 50px;
  }
}
.l-sub {
  position: fixed;
  top: 0;
  right: 0;
  overflow-y: auto;
  width: 330px;
  height: 100%;
  background-color: #FFF;
  -webkit-filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
}

.lp-form-head {
  text-align: center;
}
.lp-form-head img {
  max-width: 240px;
}

@media (max-width: 1060px) {
  .l-sub {
    display: none;
  }
}
.l-sub-inner {
  padding: 12px 14px;
}

.l-fixed-menu {
  display: none;
}

@media (max-width: 1060px) {
  .l-fixed-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    background-color: #FFF;
    z-index: 10;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: -webkit-transform ease 0.5s;
    transition: -webkit-transform ease 0.5s;
    transition: transform ease 0.5s;
    transition: transform ease 0.5s, -webkit-transform ease 0.5s;
    visibility: hidden;
  }
  .l-fixed-menu.is-show {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
    visibility: visible;
  }
  .l-fixed-menu .btn-wrap {
    gap: 0 18px;
    padding: 16px 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .l-fixed-menu .btn-wrap .btn {
    padding: 7px 10px;
    font-size: 14px;
    -webkit-box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.29);
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.29);
  }
  .l-fixed-menu .btn-wrap .btn [class^=icon-] {
    font-size: 15px;
  }
}
.l-header {
  position: relative;
  width: 100%;
  height: 70px;
  z-index: 20;
}

@media (max-width: 1060px) {
  .l-header {
    top: 0;
    left: 0;
    position: fixed;
    height: 50px;
  }
}
.header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 auto;
}

.header-menu {
  width: 100%;
}

@media (max-width: 1060px) {
  .header-menu {
    display: block;
    height: 50px;
  }
}
.header-pc {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px 40px;
  width: calc(100% - 330px);
}

@media (max-width: 1060px) {
  .header-pc {
    position: absolute;
    width: 100%;
    padding: 5px 10px;
    background: none;
  }
}
.header-front {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}

@media (max-width: 1060px) {
  .header-front {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    z-index: 60;
    gap: 0;
  }
}
.header-logo {
  width: 260px;
}

@media (max-width: 1060px) {
  .header-logo {
    width: 166px;
  }
}
.header-logo a {
  display: block;
}

.header-logo a:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .header-logo a:hover {
    opacity: 1;
  }
}
.header-logo img {
  vertical-align: middle;
}

.header-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 40px;
}

@media (max-width: 1060px) {
  .header-nav {
    display: none;
  }
}
.header-nav-list a {
  font-size: 14px;
  font-weight: 800;
  color: #333;
}

.header-nav-list a:hover {
  opacity: 0.7;
}

@media (max-width: 1060px) {
  .header-nav-list a:hover {
    opacity: 1;
  }
}
.header-nav-sp {
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: none;
}

@media (max-width: 1060px) {
  .header-nav-sp {
    display: block;
    opacity: 1;
    visibility: visible;
    position: relative;
    width: 100%;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    top: 0;
    left: 0;
    background-color: #FFF;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    text-align: center;
    padding: 102px 15px 15px;
  }
}
@media (max-width: 1060px) {
  .header-nav-sp-inner {
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    overflow-y: scroll;
  }
}
@media (max-width: 1060px) {
  .header-nav-sp-list {
    font-size: 18px;
    font-weight: 700;
  }
}
@media (max-width: 1060px) {
  .header-nav-sp-list + .header-nav-sp-list {
    margin-top: 48px;
  }
}
.header-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 1060px) {
  .header-info {
    gap: 12px;
  }
}
.header-info-wrap > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  color: #333;
}

@media (max-width: 1060px) {
  .header-info-wrap > a {
    position: relative;
    top: 2px;
  }
}
.header-info-tel {
  font-size: 18px;
  line-height: 0.9;
  letter-spacing: 0.01em;
  font-family: "Roboto", sans-serif;
}

.header-info-tel [class^=icon-],
.header-info-tel [class*=" icon-"] {
  font-size: 14px;
}

@media (max-width: 1060px) {
  .header-info-tel {
    color: #333;
    font-size: 15px;
  }
  .header-info-tel [class^=icon-],
  .header-info-tel [class*=" icon-"] {
    font-size: 10px;
  }
}
.header-info-time {
  position: relative;
  right: -10px;
  display: block;
  margin-top: 3px;
  font-size: 11px;
  font-weight: 700;
}

@media (max-width: 1060px) {
  .header-info-time {
    right: -5px;
    margin-top: 0;
    color: #333;
  }
}
@media (max-width: 1060px) {
  .header-info-sp {
    margin-top: 48px;
  }
}
@media (max-width: 560px) {
  .header-info-sp .header-info-tel {
    color: #333;
    font-size: 28px;
  }
}
@media (max-width: 560px) {
  .header-info-sp .header-info-tel [class^=icon-],
  .header-info-sp .header-info-tel [class*=" icon-"] {
    color: #333;
    font-size: 20px;
  }
}
.header-info-sp .header-info-time {
  color: #7C7C7C;
}

.header-menu-btn {
  display: none;
}

@media (max-width: 1060px) {
  .header-menu-btn {
    display: block;
    position: relative;
    width: 40px;
    height: 40px;
    z-index: 100;
    background-color: #fff;
    border-radius: 50px;
    border: 1px solid #333;
  }
}
.header-menu-btn span {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  display: block;
  height: 2px;
  width: 15px;
  border-radius: 10px;
  background-color: #333;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header-menu-btn-1, .header-menu-btn-3 {
  right: 0;
}

.header-menu-btn-1 {
  top: 15px;
}

.header-menu-btn-3 {
  top: 23px;
}

.l-footer {
  padding: 8px 20px;
  background-color: #F8F8F8;
  text-align: center;
}

.l-footer .copyright {
  font-family: "Roboto", sans-serif;
  color: #B4B4B4;
  font-size: 12px;
  line-height: 1;
  letter-spacing: -0.01em;
}

/* =========================================================
 Module 使い回しできるパーツのスタイル
========================================================= */
.btn {
  color: #fff;
  font-size: 14px;
  border-radius: 39px;
  padding: 10px 17px;
  font-weight: 700;
  width: 266px;
  top: 0;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.btn:hover {
  top: 3px;
}

@media (max-width: 1060px) {
  .btn:hover {
    top: 0;
  }
}
.btn .icon-download {
  font-size: 24px;
}
.btn .icon-download::before {
  content: url(../images/download_ico.svg);
}

.btn .icon-mail {
  font-size: 24px;
}
.btn .icon-mail::before {
  content: url(../images/mail_ico.svg);
}

.btn-red {
  background-color: #C91127;
  -webkit-box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.29);
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.29);
}

.btn-blue {
  background-color: #333;
  -webkit-box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.29);
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.29);
}

.btn-has-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  gap: 5px;
}

.btn-has-icon-left [class^=icon-],
.btn-has-icon-left [class*=" icon-"] {
  margin-right: 4px;
}

@media (max-width: 1060px) {
  .btn-has-icon-left [class^=icon-],
  .btn-has-icon-left [class*=" icon-"] {
    margin-right: 0;
  }
}
.btn-has-icon-right .icon-arrow {
  margin: 0;
  font-size: 8px;
  width: 24px;
  height: 24px;
  background: url(../images/icon-arrow.svg) no-repeat 50%;
}

.btn-small {
  font-size: 14px;
  border-radius: 21px;
  padding: 10px 10px;
  width: 163px;
}

@media (max-width: 1060px) {
  .btn-small {
    padding: 6px 3px;
    width: 153px;
  }
}
.btn-small:hover {
  top: 2px;
}

@media (max-width: 1060px) {
  .btn-small:hover {
    top: 0;
  }
}
.btn-small .icon-download {
  font-size: 15px;
}

.btn-small .icon-mail {
  font-size: 12px;
}

@media (max-width: 1060px) {
  .btn-header {
    width: 214px;
    padding: 12px;
    font-size: 18px;
  }
}
.btn-header .icon-download {
  font-size: 16px;
}

.btn-header .icon-mail {
  font-size: 12px;
}

@media (max-width: 768px) {
  .btn-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.btn-wrap-mv {
  margin-top: 40px;
}

.btn-wrap-wide {
  margin-top: 50px;
}

.btn-wrap-middle {
  margin-top: 32px;
}

.btn-wrap-narrow {
  margin-top: 5px;
}

@media (max-width: 1060px) {
  .btn-wrap-contact {
    display: none;
  }
}
@media (max-width: 1060px) {
  .btn-wrap-header {
    margin-top: 48px;
  }
}
.btn-wrap-header .btn-wrap {
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.btn-wrap-header .btn-wrap + .btn-wrap {
  margin-top: 24px;
}

.btn-banner .btn:hover {
  top: 0;
}

.btn-banner:hover .btn {
  top: 3px;
}

input[type=text],
input[type=tel],
input[type=email],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 14px;
  font-weight: 700;
  background: rgb(255, 255, 255);
  border-radius: 4px;
  border: 1px solid #E2E2E2;
  padding: 5px;
  width: 100%;
  -webkit-box-shadow: none;
  box-shadow: none;
}

input[type=text]::-webkit-input-placeholder, input[type=tel]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #BCBCBC;
}

input[type=text]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=email]::-moz-placeholder, textarea::-moz-placeholder {
  color: #BCBCBC;
}

input[type=text]:-ms-input-placeholder, input[type=tel]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #BCBCBC;
}

input[type=text]::-ms-input-placeholder, input[type=tel]::-ms-input-placeholder, input[type=email]::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #BCBCBC;
}

input[type=text]::placeholder,
input[type=tel]::placeholder,
input[type=email]::placeholder,
textarea::placeholder {
  color: #BCBCBC;
}

textarea {
  resize: none;
  height: 100px;
}

.form-group + .form-group {
  margin-top: 25px;
}

.form-label {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.form-tag {
  font-size: 12px;
  font-weight: 700;
  background-color: #696969;
  color: #fff;
  padding-inline: 5px;
  border-radius: 4px;
  margin-left: 10px;
}

.form-tag-required {
  background-color: #C91127;
}

.form-data {
  margin-top: 10px;
}

.form-data input[type=radio] {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}

.form-data input[type=radio]:checked + span.wpcf7-list-item-label:after {
  opacity: 1;
}

.form-data .wpcf7-list-item + .wpcf7-list-item {
  display: block;
  margin-top: 6px;
}

.form-data span.wpcf7-list-item-label {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

.form-data span.wpcf7-list-item-label:before {
  display: block;
  content: "";
  border-radius: 50%;
  border: 3px solid #EDEDED;
  width: 16px;
  height: 16px;
  margin-right: 10px;
}

.form-data span.wpcf7-list-item-label:after {
  display: block;
  position: absolute;
  content: "";
  border-radius: 50%;
  width: 10px;
  height: 10px;
  background-color: #333;
  left: 3px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
}

.form-data .wpcf7-not-valid-tip {
  font-size: 14px;
  color: #C91127;
}

.form-data input.wpcf7-not-valid {
  border: 1px solid #C91127;
}

.form-agree-block {
  margin-top: 28px;
}

.form-agree-check {
  position: relative;
}

.form-agree-check br {
  display: none;
}

.form-agree-check .wpcf7-form-control-wrap {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.form-agree-check .wpcf7-list-item {
  position: relative;
  width: 18px;
  height: 18px;
  display: block;
  margin-left: 0;
}

.form-agree-check .wpcf7-list-item:before {
  background-color: #fff;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  border: 2px solid #BCBCBC;
  width: 18px;
  height: 18px;
  border-radius: 2px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.form-agree-check .wpcf7-list-item:after {
  content: "";
  display: block;
  width: 10px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background-size: cover;
  position: absolute;
  top: 6px;
  left: 5px;
  z-index: 2;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.form-agree-check .wpcf7-list-item:has(input:checked):before {
  background-color: #333;
}

.form-agree-check .wpcf7-list-item:has(input:checked):after {
  opacity: 1;
}

.form-agree-check input {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.form-agree-check input:hover {
  cursor: pointer;
}

.form-agree-txt {
  font-size: 14px;
  line-height: 1.9285714286;
  font-weight: 700;
  padding-left: 32px;
  display: block;
}

.form-agree-txt-link {
  color: #333;
  text-decoration: underline;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-right: 4px;
}

.txt-vertical {
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
}

.txt-att {
  position: relative;
  padding-left: 1em;
  font-size: 11px;
  line-height: 1.5454545455;
  -webkit-transform: translate(-10px, -20px);
          transform: translate(-10px, -20px);
}

.txt-blue {
  color: #08609D;
}

.txt-blue.txt-underline {
  position: relative;
}

.txt-blue.txt-underline:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #333;
  bottom: 0;
  left: 0;
}

.txt-white {
  color: #fff;
}

.txt-common-ttl {
  font-size: 126px;
  letter-spacing: 0.05em;
  font-family: "Poppins", sans-serif;
  font-weight: 200;
}

@media (max-width: 768px) {
  .txt-common-ttl {
    font-size: 72px;
    width: 100%;
  }
}
.txt-common-ttl-sub {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
}

.ttl-a {
  position: relative;
  margin-bottom: 45px;
  color: #333;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 1060px) {
  .ttl-a {
    margin-bottom: 24px;
    font-size: 22px;
  }
}
.dl-ico {
  background: url(../images/download_ico.svg) no-repeat 50%;
  width: 24px;
  height: 24px;
}

.mv-section {
  background: url(../images/fv_bg.jpg) no-repeat;
  background-size: cover;
}

@media (max-width: 768px) {
  .mv-section {
    overflow-x: hidden;
    background: url(../images/fv_bg_sp.jpg) no-repeat 50%;
    background-size: cover;
  }
}
.mv-section .mv-section-inner .mv-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  aspect-ratio: 946/482;
}

@media (max-width: 768px) {
  .mv-section .mv-section-inner .mv-container {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    aspect-ratio: initial;
  }
}
.mv-section .mv-section-inner .mv-container .mv-main {
  position: relative;
  width: 70%;
  padding: 64px 0 64px 5vw;
  z-index: 11;
}

@media (max-width: 1060px) {
  .mv-section .mv-section-inner .mv-container .mv-main {
    width: 160%;
    padding: 4vh 0 20px 5vw;
  }
}
@media (max-width: 768px) {
  .mv-section .mv-section-inner .mv-container .mv-main {
    width: 100%;
    padding: 30px 5vw 0;
  }
}
.mv-section .mv-section-inner .mv-container .mv-main .mv-catch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  margin-bottom: 10px;
  font-size: min(1.4vw, 20px);
}

.mv-section .mv-section-inner .mv-container .mv-main .mv-catch li {
  padding: 0.1em 0.2em;
  min-width: 145px;
  color: #333;
  font-weight: 800;
  background: #fff;
  -webkit-clip-path: polygon(7% 0%, 100% 0%, 93% 100%, 0 100%);
          clip-path: polygon(7% 0%, 100% 0%, 93% 100%, 0 100%);
}
@media (max-width: 768px) {
  .mv-section .mv-section-inner .mv-container .mv-main .mv-catch li {
    width: 102px;
    min-width: auto;
  }
}

@media (max-width: 768px) {
  .mv-section .mv-section-inner .mv-container .mv-main .mv-catch {
    margin-bottom: 8px;
    font-size: min(3.8vw, 14px);
  }
}
.mv-section .mv-section-inner .mv-container .mv-main .mv-ttl {
  margin-bottom: 20px;
  font-size: 4vw;
  font-weight: 800;
  line-height: 1.4;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  letter-spacing: 3px;
  white-space: nowrap;
  text-align: left;
  display: inline-block;
  color: #fff;
}

@media (max-width: 1060px) {
  .mv-section .mv-section-inner .mv-container .mv-main .mv-ttl {
    margin-bottom: 20px;
    font-size: 3.2vw;
  }
}
@media (max-width: 768px) {
  .mv-section .mv-section-inner .mv-container .mv-main .mv-ttl {
    margin-bottom: 12px;
    font-size: 6.5vw;
    letter-spacing: 2px;
  }
}
.mv-section .mv-section-inner .mv-container .mv-main .mv-txt {
  margin-bottom: 20px;
  font-size: 2.5vw;
  color: #fff;
}

@media (max-width: 1060px) {
  .mv-section .mv-section-inner .mv-container .mv-main .mv-txt {
    margin-bottom: 20px;
    font-size: 3.2vw;
  }
}
@media (max-width: 768px) {
  .mv-section .mv-section-inner .mv-container .mv-main .mv-txt {
    margin-bottom: 12px;
    font-size: 4vw;
    letter-spacing: 2px;
  }
}
.mv-section .mv-section-inner .mv-container .mv-main .mv-detail {
  margin-bottom: 32px;
}

@media (max-width: 1060px) {
  .mv-section .mv-section-inner .mv-container .mv-main .mv-detail {
    margin-bottom: 32px;
  }
}
@media (max-width: 768px) {
  .mv-section .mv-section-inner .mv-container .mv-main .mv-detail {
    margin-bottom: 10px;
  }
}
.mv-section .mv-section-inner .mv-container .mv-main .mv-detail img {
  width: 80%;
}

@media (max-width: 1060px) {
  .mv-section .mv-section-inner .mv-container .mv-main .mv-detail img {
    width: 52%;
  }
}
@media (max-width: 768px) {
  .mv-section .mv-section-inner .mv-container .mv-main .mv-detail img {
    width: 96%;
  }
}
.mv-section .mv-section-inner .mv-container .mv-main .etc {
  font-size: 12px;
  padding-right: 1.5em;
}

.mv-section .mv-section-inner .mv-container .mv-main .btn-wrap-wide {
  margin-top: 0;
}

.mv-section .mv-section-inner .mv-container .mv-main .btn-wrap-wide .btn {
  margin: 0;
  font-size: 14px;
  padding: 12px 17px;
  width: 260px;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #fff;
}

@media (max-width: 768px) {
  .mv-section .mv-section-inner .mv-container .mv-main .btn-wrap-wide .btn {
    margin: 18vh auto 0;
    padding: 12px 14px 13px;
  }
}
@media (max-width: 1060px) {
  .mv-section .mv-section-inner .mv-container .btn-wrap-wide {
    margin: 20px 0;
  }
}
@media (max-width: 768px) {
  .mv-section .mv-section-inner .mv-container .btn-wrap-wide {
    margin-top: 10px;
  }
}
.mv-section .mv-section-inner .mv-att {
  margin-top: 32px;
  padding-left: 0;
  -webkit-transform: none;
          transform: none;
  color: #fff;
}
@media (max-width: 768px) {
  .mv-section .mv-section-inner .mv-att {
    font-size: 8px;
    padding-bottom: 12px;
  }
}

@media (max-width: 1200px) {
  .mv-section .mv-section-inner .mv-container .mv-main .mv-att-wrap.is-pc .txt-att {
    font-size: 10px;
  }
}
.mv-section .mv-section-inner .mv-container .mv-img-container {
  -ms-flex-item-align: start;
  align-self: flex-start;
  position: relative;
  width: 46.1945031712%;
  height: 100%;
}

@media (max-width: 1060px) {
  .mv-section .mv-section-inner .mv-container .mv-img-container {
    width: 100%;
    aspect-ratio: auto;
  }
}
@media (max-width: 768px) {
  .mv-section .mv-section-inner .mv-container .mv-img-container {
    margin-top: 5px;
  }
}
.mv-section .mv-section-inner .mv-container .mv-img-container .mv-img-block {
  position: relative;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 130%;
  -webkit-transform: translateX(-8vw);
          transform: translateX(-8vw);
}
@media (max-width: 768px) {
  .mv-section .mv-section-inner .mv-container .mv-img-container .mv-img-block {
    width: 47vw;
    height: auto;
    margin: 0 auto;
  }
}
@media (max-width: 1060px) {
  .mv-section .mv-section-inner .mv-container .mv-img-container .mv-img-block img {
    margin-bottom: 0;
  }
}
.mv-section .mv-section-inner .mv-container .mv-att-wrap.is-sp {
  padding: 7px 10px;
  background-color: #F7F7F7;
}

.mv-section .mv-infinity-scroll {
  width: 900rem;
  background-color: #FFF;
}

@media (max-width: 1060px) {
  .mv-section .mv-infinity-scroll {
    width: 450rem;
    padding: 10px 0;
  }
}
.mv-section .mv-infinity-scroll-logo {
  width: 300rem;
}

@media (max-width: 1060px) {
  .mv-section .mv-infinity-scroll-logo {
    width: 150rem;
  }
}
.mv-section .mv-infinity-scroll-logo-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 900rem;
  -webkit-animation: infinity-scroll 60s infinite linear 0.5s both;
  animation: infinity-scroll 60s infinite linear 0.5s both;
}

@media (max-width: 1060px) {
  .mv-section .mv-infinity-scroll-logo-wrap {
    width: 450rem;
    -webkit-animation: infinity-scroll-sp 60s infinite linear 0.5s both;
    animation: infinity-scroll-sp 60s infinite linear 0.5s both;
  }
}
.mv-section .mv-infinity-scroll-logo-wrap.is-right {
  -webkit-animation: infinity-scroll-right 60s infinite linear 0.5s both;
  animation: infinity-scroll-right 60s infinite linear 0.5s both;
}

@media (max-width: 1060px) {
  .mv-section .mv-infinity-scroll-logo-wrap.is-right {
    -webkit-animation: infinity-scroll-sp-right 60s infinite linear 0.5s both;
    animation: infinity-scroll-sp-right 60s infinite linear 0.5s both;
  }
}
.problems {
  background: #F2F2F2;
}
.problems .solution {
  width: 454px;
  height: 87px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 20px;
  font-weight: bold;
  background: #333;
  color: #fff;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  position: relative;
}
@media (max-width: 768px) {
  .problems .solution {
    font-size: 13px;
    height: 40px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0 5px;
  }
}
.problems .solution::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin: 0 auto;
  border-style: solid;
  border-right: 14px solid transparent;
  border-left: 14px solid transparent;
  border-top: 29px solid #333;
  border-bottom: 0;
  position: absolute;
  bottom: -23px;
  left: 0;
  right: 0;
}
@media (max-width: 768px) {
  .problems .solution::after {
    border-right: 7px solid transparent;
    border-left: 7px solid transparent;
    border-top: 15px solid #333;
    bottom: -10px;
  }
}

.problems .problems-inner {
  max-width: 758px;
  margin: 0 auto;
  padding: 56px 0px 0;
}
@media (max-width: 1060px) {
  .problems .problems-inner {
    padding: 32px 0px 0;
  }
}

h2.ttl {
  color: #333;
  text-align: center;
}
h2.ttl span {
  color: #C91127;
}
h2.ttl::after {
  content: "";
  width: 52px;
  height: 2px;
  background: #C91127;
  display: block;
  margin: 4px auto;
}

.subtile {
  color: #959595;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2.4rem;
}

.problems .problems-inner .list-problems {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 40px;
}

@media (max-width: 768px) {
  .problems .problems-inner .list-problems {
    display: block;
  }
}
.problems .problems-inner .list-problems li {
  position: relative;
  width: 33.33%;
  max-width: 196px;
  padding: 24px;
  background-color: #FFF;
  text-align: center;
}

@media (max-width: 768px) {
  .problems .problems-inner .list-problems li {
    width: 72.1126760563%;
    margin: 0 auto 30px;
  }
  .problems .problems-inner .list-problems li:last-child {
    margin-bottom: 0;
  }
}
.problems .problems-inner .list-problems li .badge {
  position: absolute;
  top: -20px;
  left: -8px;
  width: 40px;
  height: 40px;
  background: #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-size: 24px;
}

.problems .problems-inner .list-problems li .thumb {
  margin-bottom: 20px;
}

.problems .problems-inner .list-problems li .title {
  margin: 0 -10px;
  font-size: 18px;
  font-weight: 800;
  color: #44AAC3;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .problems .problems-inner .list-problems li .title {
    margin: 0 -18px;
  }
}
.problems .problems-inner .list-problems li .title span {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #333;
  margin-bottom: 5px;
}

@media (max-width: 1060px) {
  .problems .problems-inner .list-problems li .title span {
    margin-bottom: 0;
  }
}
.problems .problems-inner .list-problems li .text {
  font-size: 12px;
  color: #333;
  line-height: 1.8;
  font-weight: normal;
  text-align: center;
}
.problems .problems-inner .list-problems li .text span {
  font-weight: bold;
}

#about .l-container {
  max-width: 700px;
  padding: 0;
}
@media (max-width: 768px) {
  #about .l-container {
    display: block;
  }
}
#about .l-container .ttl {
  color: #fff;
}

.about-section {
  padding: 56px 0;
  background: url(../images/about_bg.jpg) no-repeat 50%;
  background-size: cover;
}
@media (max-width: 768px) {
  .about-section {
    padding: 32px 0px;
  }
}
.about-section .about-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
}
@media (max-width: 768px) {
  .about-section .about-block {
    display: block;
    width: 72%;
    margin: 0 auto;
  }
}
.about-section .about-block .logo {
  max-width: 293px;
  margin-bottom: 24px;
}
.about-section .about-block dl {
  color: #fff;
}
.about-section .about-block dl dd {
  line-height: 2;
  margin-bottom: 20px;
  font-weight: 200;
  font-size: 14px;
}
.about-section .about-block dl dd span {
  font-weight: bold;
}
.about-section .about-block dl dt {
  background: #fff;
  color: #333;
  -webkit-clip-path: polygon(3% 0%, 100% 0%, 97% 100%, 0 100%);
          clip-path: polygon(3% 0%, 100% 0%, 97% 100%, 0 100%);
  font-weight: bold;
  height: 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 10px;
  width: 100%;
}
@media (max-width: 768px) {
  .about-section .about-block dl dt {
    height: 55px;
  }
}
.about-section .about-img {
  max-width: 274px;
  width: 100%;
}
@media (max-width: 768px) {
  .about-section .about-img {
    margin: 18px auto 0;
    text-align: center;
    display: block;
  }
}

.scence-section {
  padding: 56px 0;
}
@media (max-width: 1060px) {
  .scence-section {
    padding: 32px 0px;
  }
}
.scence-section .scence-box {
  background: #fff;
  border-radius: 24px;
}
.scence-section .scence-box .solution {
  height: 35px;
  width: 332px;
  margin: 0 auto 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  font-weight: bold;
  background: #333;
  color: #fff;
  position: relative;
}
@media (max-width: 1060px) {
  .scence-section .scence-box .solution {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 12px;
    height: 20px;
    padding: 0 12px;
    margin-bottom: 24px;
  }
}
.scence-section .scence-box .solution::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin: 0 auto;
  border-style: solid;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-top: 10px solid #333;
  border-bottom: 0;
  position: absolute;
  bottom: -9px;
  left: 0;
  right: 0;
}
.scence-section .scence-box ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 18px;
  max-width: 700px;
  margin: 0 auto;
}
.scence-section .scence-box ul li {
  background: #F6F6F6;
  width: 160px;
  height: 184px;
  text-align: center;
  padding: 10px 10px 0;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.4;
}
.scence-section .scence-box ul li.bottom {
  height: 72px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0;
}
.scence-section .scence-box ul li.etc {
  height: auto;
  width: auto;
  background: none;
  margin-left: auto;
}
.scence-section .scence-box ul li img {
  max-width: 160px;
  display: block;
  margin: 0 auto 20px;
}
@media (max-width: 1000px) {
  .scence-section .scence-box {
    border-radius: 16px;
  }
}
@media (max-width: 1000px) {
  .scence-section .scence-box ul {
    gap: 8px;
  }
}
@media (max-width: 1000px) {
  .scence-section .scence-box ul li {
    width: calc(50% - 4px);
    padding: 8px;
    font-size: 12px;
  }
}
@media (max-width: 1000px) {
  .scence-section .scence-box ul li img {
    width: 100%;
  }
}
.scence-section .scence-company {
  max-width: 695px;
  margin: 32px auto 0;
  -webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.12);
  padding: 12px 32px;
}
.scence-section .scence-company h3 {
  margin-bottom: 16px;
  padding: 0 16px 3px 0;
  border-bottom: 1px solid #333;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
  font-size: 14px;
}
.scence-section .scence-company h3::before {
  content: url(../images/scence_logo.svg);
  margin-right: 8px;
}

#reason .l-container {
  padding: 56px 0;
  max-width: 790px;
}
@media (max-width: 1060px) {
  #reason .l-container {
    padding: 32px 0px;
  }
}

.reason-section {
  padding-top: 40px;
}
.reason-section .reason-content {
  max-width: 705px;
  margin: 0 auto 84px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1060px) {
  .reason-section .reason-content {
    display: block;
    margin-bottom: 42px;
  }
}
.reason-section .reason-content:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-flow: row-reverse;
          flex-flow: row-reverse;
  margin: 56px 0 84px;
}
@media (max-width: 1060px) {
  .reason-section .reason-content:nth-child(even) {
    margin-bottom: 42px;
  }
}
.reason-section .reason-content:nth-child(even) .reason-block {
  padding: 60px 8px 33px 135px;
}
@media (max-width: 1060px) {
  .reason-section .reason-content:nth-child(even) .reason-block {
    padding: 40px 15px 11px;
  }
}
.reason-section .reason-content:nth-child(even) .reason-block .num {
  left: 120px;
}
@media (max-width: 1060px) {
  .reason-section .reason-content:nth-child(even) .reason-block .num {
    left: 0;
  }
}
.reason-section .reason-content:nth-child(even) .reason-img {
  left: 0;
}
.reason-section .reason-content:last-child {
  margin-bottom: 56px;
}
@media (max-width: 1060px) {
  .reason-section .reason-content:last-child {
    margin-bottom: 0;
  }
}
.reason-section .reason-content .reason-img {
  max-width: 343px;
  width: 100%;
  position: absolute;
  top: 60px;
  right: 0;
}
@media (max-width: 1060px) {
  .reason-section .reason-content .reason-img {
    position: relative;
    margin-bottom: 12px;
    top: 0;
    max-width: 100%;
  }
}
.reason-section .reason-block {
  background: #f6f6f6;
  max-width: 486px;
  width: 100%;
  padding: 60px 104px 33px 28px;
  position: relative;
}
@media (max-width: 1060px) {
  .reason-section .reason-block {
    padding: 40px 15px 11px;
    margin: 0 auto;
  }
}
.reason-section .reason-block .num {
  color: #333;
  font-size: 63px;
  font-weight: bold;
  margin-bottom: 12px;
  position: absolute;
  top: -17%;
  left: 17px;
  font-family: "Roboto", sans-serif;
}
@media (max-width: 1060px) {
  .reason-section .reason-block .num {
    margin-bottom: 0;
    top: -13%;
  }
}
.reason-section .reason-block dl {
  letter-spacing: 1px;
}
.reason-section .reason-block dl dt {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 16px;
}
.reason-section .reason-block dl dd {
  font-size: 14px;
}
.reason-section .reason-block p {
  font-size: 20px;
  color: #08609D;
  margin-bottom: 8px;
  font-weight: bold;
  padding: 0 8px;
}
@media (max-width: 1060px) {
  .reason-section .reason-block p {
    font-size: 16px;
  }
}
.reason-section .reason-block ul {
  padding: 0 8px;
}
.reason-section .reason-block ul li {
  font-size: 16px;
  font-weight: normal;
  line-height: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1060px) {
  .reason-section .reason-block ul li {
    font-size: 14px;
  }
}
.reason-section .reason-block ul li::before {
  content: url(../images/check_ico.svg);
  display: block;
  width: 28px !important;
  height: 28px;
}

@media (max-width: 1060px) {
  .reason-section {
    padding: 0 20px;
  }
}
#comparison {
  padding: 56px 0;
}
@media (max-width: 1060px) {
  #comparison {
    padding: 32px 0px;
  }
}
#comparison .l-container .service-block {
  margin: 0 auto;
  max-width: 760px;
}
#comparison .l-container p.txt {
  text-align: center;
  font-size: 14px;
  line-height: 2;
  margin-bottom: 24px;
}
@media (max-width: 1060px) {
  #comparison .l-container p.txt {
    text-align: left;
  }
}
#comparison .l-container .compere-table {
  margin-top: 32px;
  width: 100%;
  border-collapse: collapse;
}
#comparison .l-container .compere-table .col-primary {
  border-inline: 9px solid #333;
  padding-inline: 9px;
}
@media (max-width: 1060px) {
  #comparison .l-container .compere-table .col-primary {
    padding-inline: 2px;
    border-inline: 4px solid #333;
  }
}
#comparison .l-container .compere-table thead th {
  padding: 11px 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  position: relative;
}
@media (max-width: 1060px) {
  #comparison .l-container .compere-table thead th {
    padding: 7px;
  }
}
#comparison .l-container .compere-table thead th:last-child {
  border-left: 1px solid #DBDBDB;
}
#comparison .l-container .compere-table thead .col-primary {
  background-color: #333;
}
#comparison .l-container .compere-table thead .col-primary::before {
  content: "";
  display: block;
  width: calc(100% + 18px);
  height: 9px;
  background-color: #333;
  border-radius: 14px 14px 0 0;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -100%);
  transform: translate(-50%, -100%);
}
@media (max-width: 1060px) {
  #comparison .l-container .compere-table thead .col-primary::before {
    height: 4px;
    width: calc(100% + 8px);
  }
}
#comparison .l-container .compere-table thead .col-secondary {
  background-color: #F6F6F6;
  color: #333;
}
#comparison .l-container .compere-table tbody th, #comparison .l-container .compere-table tbody td {
  background-color: #fff;
  text-align: center;
  padding: 12px 10px;
  border-top: 1px solid #DBDBDB;
  border-left: 1px solid #DBDBDB;
}
#comparison .l-container .compere-table tbody th:last-child, #comparison .l-container .compere-table tbody td:last-child {
  border-right: 1px solid #DBDBDB;
}
#comparison .l-container .compere-table tbody th {
  width: -webkit-max-content;
  width: -moz-max-content;
  vertical-align: middle;
  font-size: 14px;
}
#comparison .l-container .compere-table tbody td {
  width: 211px;
  font-size: 14px;
}
#comparison .l-container .compere-table tbody td [class^=icon-], #comparison .l-container .compere-table tbody td [class*=" icon-"] {
  font-size: 21px;
  font-weight: 700;
}
#comparison .l-container .compere-table tbody td [class^=icon-].icon-double_circle, #comparison .l-container .compere-table tbody td [class*=" icon-"].icon-double_circle {
  color: #C91127;
}
#comparison .l-container .compere-table tbody td.col-secondary [class^=icon-].icon-double_circle, #comparison .l-container .compere-table tbody td.col-secondary [class*=" icon-"].icon-double_circle {
  color: #333;
}
#comparison .l-container .compere-table tbody tr:last-of-type th, #comparison .l-container .compere-table tbody tr:last-of-type td {
  border-bottom: 1px solid #DBDBDB;
}
#comparison .l-container .compere-table tbody tr:last-of-type .col-primary {
  position: relative;
}
#comparison .l-container .compere-table tbody tr:last-of-type .col-primary::after {
  content: "";
  display: block;
  width: calc(100% + 18px);
  height: 9px;
  background-color: #333;
  border-radius: 0 0 14px 14px;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 100%);
  transform: translate(-50%, 100%);
}
@media (max-width: 1060px) {
  #comparison .l-container .compere-table tbody tr:last-of-type .col-primary::after {
    height: 4px;
    width: calc(100% + 8px);
  }
}
@media (max-width: 768px) {
  #comparison .l-container .compere-table thead th {
    padding-block: 8px;
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  #comparison .l-container .compere-table thead .col-primary::before {
    border-radius: 6px 6px 0 0;
  }
}
@media (max-width: 768px) {
  #comparison .l-container .compere-table tbody th {
    width: 54px;
    padding: 0 8px;
  }
}
@media (max-width: 768px) {
  #comparison .l-container .compere-table tbody td {
    padding-inline: 2px;
  }
}
@media (max-width: 768px) {
  #comparison .l-container .compere-table tbody tr:last-of-type .col-primary::after {
    border-radius: 0 0 6px 6px;
  }
}
#comparison .l-container .compere-table-img {
  display: grid;
  place-content: center;
}
#comparison .l-container .compere-table-img img {
  width: 43px;
  height: auto;
}
@media (max-width: 768px) {
  #comparison .l-container .compere-table-img {
    display: none;
  }
}
#comparison .l-container .compere-table-th {
  font-size: 16px;
}
@media (max-width: 768px) {
  #comparison .l-container .compere-table-th {
    display: inline-block;
    text-align: start;
    line-height: 1.1;
    font-size: 14px;
    white-space: pre;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
}
#comparison .l-container .compere-table-detail {
  font-size: 14px;
  line-height: 1.58;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  #comparison .l-container .compere-table-detail {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  #comparison .l-container .compere-table-detail.font-s {
    font-size: 10px;
  }
}

.cta01 {
  padding: 32px 0;
  background: url(../images/cta_bg.png) no-repeat;
  background-size: cover;
}
@media (max-width: 1060px) {
  .cta01 {
    background: url(../images/cta_bg_sp.png) no-repeat 0 100%;
    background-size: cover;
    padding: 24px 0;
  }
}

.cta01 .l-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 10px;
  max-width: 776px;
  padding: 0;
}

@media (max-width: 1060px) {
  .cta01 .l-container {
    display: block;
    gap: 0;
    padding: 0;
  }
}
.cta01 h2 {
  margin-bottom: 24px;
  line-height: 2;
  font-size: 24px;
  white-space: nowrap;
}
@media (max-width: 1060px) {
  .cta01 h2 {
    margin: 0 auto 14px;
    line-height: 1.6;
    font-size: 20px;
    text-align: center;
    letter-spacing: 0;
  }
}
.cta01 h2 span {
  font-weight: normal;
}
@media (max-width: 1060px) {
  .cta01 h2 span {
    font-size: 22px;
    line-height: 1.4;
  }
}
.cta01 h2 em {
  font-style: normal;
  display: inline-block;
  background: linear-gradient(157deg, rgb(130, 130, 130) 0%, rgb(51, 51, 51) 85%);
  color: #fff;
  padding: 0 4px;
  line-height: 1.6;
}

.cta01 .l-container .cta01-thumb {
  width: 308px;
  position: relative;
}
@media (max-width: 1060px) {
  .cta01 .l-container .cta01-thumb {
    margin: 0 auto 22px;
  }
}
.cta01 .l-container .cta01-thumb img {
  width: 100%;
  top: 10px;
  left: 0;
  position: absolute;
}
@media (max-width: 1060px) {
  .cta01 .l-container .cta01-thumb img {
    position: relative;
  }
}

@media (max-width: 1060px) {
  .cta01 .l-container .cta01-thumb {
    max-width: 80%;
  }
}
.cta01 .l-container .cta01-detail {
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
}
@media (max-width: 1060px) {
  .cta01 .l-container .cta01-detail {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.cta01 .l-container .cta01-detail .btn {
  margin: 0 0 0 auto;
  border: #fff solid 1px;
  font-size: 14px;
  width: 260px;
  padding: 8px 14px;
}
@media (max-width: 1060px) {
  .cta01 .l-container .cta01-detail .btn {
    margin: 0 auto;
    width: 297px;
    padding: 18px 14px;
  }
}

.cta02 {
  background: url(../images/cta02_bg.jpg) no-repeat 50% 50%;
  background-size: cover;
}
@media (max-width: 1060px) {
  .cta02 {
    background: url(../images/cta02_bg_sp.jpg) no-repeat 100% 0%;
    background-size: cover;
  }
}
.cta02 .content {
  margin: 0 auto;
  padding: 36px 0;
  text-align: center;
  color: #fff;
}
@media (max-width: 1060px) {
  .cta02 .content {
    padding: 102px 0 42px;
  }
}
.cta02 .content h2 {
  font-size: 24px;
  margin-bottom: 16px;
  line-height: 1.9;
}
@media (max-width: 1060px) {
  .cta02 .content h2 {
    font-size: 20px;
    margin-bottom: 68px;
    line-height: 2.2;
  }
}
.cta02 .content h2 span {
  background: #fff;
  color: #333;
  padding: 0 4px;
}
@media (max-width: 1060px) {
  .cta02 .content h2 span {
    padding: 8px;
  }
}
.cta02 .content .btn {
  margin: 0 auto;
  border: 1px solid #fff;
}
@media (max-width: 1060px) {
  .cta02 .content .btn {
    margin: 0 auto;
    width: 318px;
    padding: 18px 14px;
    font-size: 19px;
  }
}

.cta03 {
  background: url(../images/cta03_bg.jpg) no-repeat 50% 0%;
  background-size: cover;
}
.cta03 .content {
  margin: 0 auto;
  padding: 60px 0;
  text-align: center;
  color: #fff;
}
@media (max-width: 1060px) {
  .cta03 .content {
    padding: 25px 0;
  }
}
.cta03 .content h2 {
  font-size: 24px;
  margin-bottom: 30px;
}
@media (max-width: 1060px) {
  .cta03 .content h2 {
    font-size: 20px;
    margin-bottom: 16px;
  }
}
.cta03 .content p {
  font-size: 16px;
  margin-bottom: 24px;
}
@media (max-width: 1060px) {
  .cta03 .content p {
    font-size: 12px;
    margin-bottom: 16px;
  }
}
.cta03 .content .btn {
  margin: 0 auto;
  border: 1px solid #fff;
}
@media (max-width: 1060px) {
  .cta03 .content .btn {
    margin: 0 auto;
    width: 250px;
    padding: 8px 14px;
    font-size: 14px;
  }
}

#service {
  background: #F2F2F2;
  padding: 56px 0;
}
@media (max-width: 1060px) {
  #service {
    padding: 32px 0px;
  }
}
#service .l-container .service-block {
  margin: 0 auto;
  max-width: 700px;
  padding: 32px 56px;
  background: #fff;
  -webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.12);
}
@media (max-width: 1060px) {
  #service .l-container .service-block {
    padding: 24px;
  }
}
#service .l-container .service-block .service-box {
  margin-bottom: 24px;
}
@media (max-width: 1060px) {
  #service .l-container .service-block .service-box {
    margin-bottom: 35px;
  }
}
#service .l-container .service-block .service-box h3 {
  font-size: 16px;
}
#service .l-container .service-block .service-box h3::after {
  content: "";
  background: url(../images/service_line.png) no-repeat, #ECECEC;
  display: block;
  height: 1px;
  width: 100%;
  margin: 4px 0 16px;
}
#service .l-container .service-block .service-box .service-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media (max-width: 1060px) {
  #service .l-container .service-block .service-box .service-detail {
    display: block;
  }
}
#service .l-container .service-block .service-box .service-detail img {
  width: 141px;
}
@media (max-width: 1060px) {
  #service .l-container .service-block .service-box .service-detail img {
    width: 100%;
    margin-bottom: 4px;
  }
}
#service .l-container .service-block .service-box .service-detail p {
  width: calc(100% - 161px);
  font-size: 14px;
  font-weight: 100;
  letter-spacing: 1px;
}
@media (max-width: 1060px) {
  #service .l-container .service-block .service-box .service-detail p {
    width: 100%;
    font-size: 14px;
    line-height: 2;
  }
}

#case .case-content {
  max-width: 790px;
  padding: 56px 0;
  margin-inline: auto;
}
@media (max-width: 1060px) {
  #case .case-content {
    padding: 32px 0px;
  }
}
#case .case-content .case-block {
  -webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.12);
  padding: 32px 24px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px 16px;
  margin-bottom: 32px;
}
@media (max-width: 1060px) {
  #case .case-content .case-block {
    display: block;
    padding: 32px 12px;
    width: 90%;
    margin: 0 auto 24px;
  }
}
#case .case-content .case-block:last-child {
  margin-bottom: 0;
}
#case .case-content .case-block h3 {
  position: absolute;
  left: 24px;
  top: -18px;
  font-size: 32px;
  font-family: "Roboto", sans-serif;
}
@media (max-width: 1060px) {
  #case .case-content .case-block h3 {
    line-height: 1;
    top: -12px;
  }
}
#case .case-content .case-block .case-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  width: 100%;
}
@media (max-width: 1060px) {
  #case .case-content .case-block .case-detail {
    display: block;
  }
}
#case .case-content .case-block .case-detail img {
  max-width: 248px;
}
@media (max-width: 1060px) {
  #case .case-content .case-block .case-detail img {
    margin-bottom: 12px;
    max-width: 100%;
  }
}
#case .case-content .case-block .case-detail dl dt {
  font-size: 22px;
  margin-bottom: 4px;
  font-weight: bold;
  letter-spacing: 1px;
}
@media (max-width: 1060px) {
  #case .case-content .case-block .case-detail dl dt {
    font-size: 16px;
  }
}
#case .case-content .case-block .case-detail dl dd.event {
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: bold;
}
@media (max-width: 1060px) {
  #case .case-content .case-block .case-detail dl dd.event {
    font-size: 12px;
    font-weight: normal;
  }
}
#case .case-content .case-block .case-detail dl dd.company {
  background: -webkit-gradient(linear, left top, right top, from(rgb(51, 51, 51)), to(rgb(130, 130, 130)));
  background: linear-gradient(90deg, rgb(51, 51, 51) 0%, rgb(130, 130, 130) 100%);
  color: #fff;
  font-size: 14px;
  margin-bottom: 4px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 8px;
  height: 24px;
  font-weight: bold;
}
#case .case-content .case-block .case-detail dl dd.company::before {
  content: url(../images/case-logo01.svg);
  margin-right: 6px;
}
#case .case-content .case-block .case-detail dl dd.category {
  font-size: 14px;
  margin-bottom: 4px;
}
@media (max-width: 1060px) {
  #case .case-content .case-block .case-detail dl dd.category {
    font-size: 11px;
  }
}
#case .case-content .case-block .case-detail dl dd.tag {
  font-size: 10px;
}
#case .case-content .case-block .case-detail dl dd.tag span {
  display: inline-block;
  border: 1px solid #111;
  padding: 2px 0;
  text-align: center;
  margin-right: 12px;
  border-radius: 1px;
  width: 70px;
}
#case .case-content .case-block .case-solution, #case .case-content .case-block .case-voice {
  width: calc(50% - 8px);
  background: #F6F6F6;
  padding: 20px 16px;
}
@media (max-width: 1060px) {
  #case .case-content .case-block .case-solution, #case .case-content .case-block .case-voice {
    width: 100%;
  }
}
#case .case-content .case-block .case-solution h4, #case .case-content .case-block .case-voice h4 {
  margin-bottom: 8px;
  font-weight: bold;
  font-size: 16px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
}
#case .case-content .case-block .case-solution h4::before, #case .case-content .case-block .case-voice h4::before {
  margin-right: 8px;
}
#case .case-content .case-block .case-solution ul, #case .case-content .case-block .case-voice ul {
  font-size: 14px;
  line-height: 1.8;
}
#case .case-content .case-block .case-solution p, #case .case-content .case-block .case-voice p {
  font-size: 14px;
  line-height: 1.8;
}
@media (max-width: 1060px) {
  #case .case-content .case-block .case-solution {
    margin: 12px 0;
  }
}
#case .case-content .case-block .case-solution h4::before {
  content: url(../images/case_logo02.svg);
}
#case .case-content .case-block .case-voice h4::before {
  content: url(../images/case_logo03.svg);
}

#support {
  background: #F6F6F6;
}
#support .support-content {
  padding: 56px 0;
  max-width: 700px;
  width: 86%;
  margin: 0 auto;
}
@media (max-width: 1060px) {
  #support .support-content {
    padding: 32px 0px;
  }
}
#support .support-content .txt {
  text-align: center;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 24px;
}
@media (max-width: 1060px) {
  #support .support-content .txt {
    text-align: left;
    line-height: 2;
  }
}
#support .support-content .support-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1060px) {
  #support .support-content .support-block {
    display: block;
  }
}
#support .support-content .support-block .support-box {
  width: calc(33% - 21px);
  background: #fff;
  -webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.12);
}
@media (max-width: 1060px) {
  #support .support-content .support-block .support-box {
    width: 100%;
    max-width: 210px;
    margin: 0 auto 24px;
  }
}
#support .support-content .support-block .support-box:nth-child(1) h3 {
  background: #31A34F;
}
#support .support-content .support-block .support-box:nth-child(2) h3 {
  background: #F3A435;
}
#support .support-content .support-block .support-box:nth-child(3) {
  margin-bottom: 0;
}
#support .support-content .support-block .support-box:nth-child(3) h3 {
  background: #E33660;
}
#support .support-content .support-block .support-box h3 {
  text-align: center;
  margin-bottom: 8px;
  color: #fff;
  font-size: 16px;
  padding: 8px 0;
}
#support .support-content .support-block .support-box h3 span {
  display: block;
  font-size: 10px;
}
#support .support-content .support-block .support-box img {
  display: block;
  width: 96px;
  margin: 0 auto 8px;
}
#support .support-content .support-block .support-box dl {
  margin-bottom: 8px;
  text-align: center;
  padding: 0 8px 20px;
}
#support .support-content .support-block .support-box dl dt {
  font-size: 14px;
  font-weight: bold;
}
#support .support-content .support-block .support-box dl dd {
  font-size: 12px;
}
#support .support-content .note {
  text-align: right;
  font-size: 10px;
  margin-top: 8px;
  line-height: 2.4;
}
@media (max-width: 1060px) {
  #support .support-content .note {
    width: 86%;
    max-width: 210px;
    margin: 8px auto 0;
    text-align: left;
    line-height: 1.6;
  }
}
#support .support-content .support-btn {
  -webkit-box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, 0.1);
  margin: 64px auto 0;
  max-width: 472px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #333;
  font-size: 20px;
  color: #fff;
  padding: 24px 0 12px;
  border-radius: 50px;
  position: relative;
}
@media (max-width: 1060px) {
  #support .support-content .support-btn {
    font-size: 14px;
    width: 321px;
    padding: 16px 0 8px;
    margin-top: 44px;
  }
}
#support .support-content .support-btn::before {
  content: "";
  display: block;
  max-width: 358px;
  height: 54px;
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  margin: auto;
  background: url(../images/support_btn_txt.png) no-repeat 0 0;
  background-size: 100%;
}
@media (max-width: 1060px) {
  #support .support-content .support-btn::before {
    max-width: 244px;
    top: -24px;
  }
}
#support .support-content .support-btn::after {
  content: url(../images/service_arrow.svg);
  margin-left: 16px;
}

#price .price-content {
  padding: 56px 0;
  max-width: 700px;
  width: 86%;
  margin: 0 auto;
}
@media (max-width: 1060px) {
  #price .price-content {
    padding: 32px 0px;
  }
}
#price .price-content h3 {
  font-size: 20px;
  margin-bottom: 12px;
}
@media (max-width: 1060px) {
  #price .price-content h3 {
    font-size: 16px;
  }
}
#price .price-content .price-box {
  border: 1px solid #333;
  padding: 24px 70px;
  margin-bottom: 24px;
}
@media (max-width: 1060px) {
  #price .price-content .price-box {
    padding: 24px 46px;
  }
}
#price .price-content .price-box .price-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 16px 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #9E9E9E;
}
#price .price-content .price-box .price-list:last-child {
  border-bottom: none;
}
#price .price-content .price-box .price-list dl {
  width: 200px;
  text-align: center;
}
@media (max-width: 1060px) {
  #price .price-content .price-box .price-list dl {
    width: 140px;
  }
}
#price .price-content .price-box .price-list dl dt {
  font-size: 20px;
  font-weight: bold;
}
@media (max-width: 1060px) {
  #price .price-content .price-box .price-list dl dt {
    font-size: 14px;
  }
}
#price .price-content .price-box .price-list dl dd {
  font-size: 14px;
  color: #717171;
}
@media (max-width: 1060px) {
  #price .price-content .price-box .price-list dl dd {
    font-size: 12px;
  }
}
@media (max-width: 1060px) {
  #price .price-content .price-box .price-list .dotte {
    font-size: 8px;
  }
}
#price .price-content .price-box .price-list .value {
  font-size: 20px;
}
@media (max-width: 1060px) {
  #price .price-content .price-box .price-list .value {
    font-size: 16px;
  }
}
#price .price-content .price-box.img {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 40px 36px;
  margin-bottom: 0;
}
@media (max-width: 1060px) {
  #price .price-content .price-box.img {
    display: block;
    padding: 40px 12px;
  }
}
#price .price-content .price-box.img.mt {
  margin-top: 36px;
}
#price .price-content .price-box.img.mt dl {
  max-width: 100%;
}
#price .price-content .price-box.img h4 {
  font-size: 20px;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  margin: auto;
  background: #fff;
  padding: 0 16px;
  line-height: 1;
}
#price .price-content .price-box.img dl {
  max-width: 50%;
}
@media (max-width: 1060px) {
  #price .price-content .price-box.img dl {
    max-width: 100%;
  }
}
#price .price-content .price-box.img dl:nth-child(4) {
  width: 100%;
  max-width: 100%;
  margin-top: 24px;
}
#price .price-content .price-box.img dl dt {
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#price .price-content .price-box.img dl dt::before {
  content: "";
  display: block;
  border: 4px solid #333;
  border-radius: 50%;
  width: 21px;
  height: 21px;
  margin-right: 16px;
}
#price .price-content .price-box.img dl dd {
  font-size: 14px;
}
#price .price-content .price-box.img dl dd img {
  height: 150px;
}
@media (max-width: 1060px) {
  #price .price-content .price-box.img dl dd img {
    height: auto;
  }
}
#price .price-content .note {
  text-align: right;
  font-size: 10px;
  margin-top: 12px;
}

#flow {
  background: #F6F6F6;
}
#flow .flow-content {
  padding: 56px 0;
  max-width: 760px;
  margin: 0 auto;
}
@media (max-width: 1060px) {
  #flow .flow-content {
    padding: 32px 0px;
  }
}
#flow .flow-content .flow-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 32px 16px;
}
#flow .flow-content .flow-block .flow-box {
  width: 178px;
  height: 149px;
  background: #fff;
  -webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.12);
  position: relative;
  padding: 16px 12px;
}
@media (max-width: 1060px) {
  #flow .flow-content .flow-block .flow-box {
    width: 274px;
    height: auto;
  }
}
#flow .flow-content .flow-block .flow-box .num {
  position: absolute;
  left: 0;
  top: -14px;
  line-height: 1;
  color: #B5B5B5;
  font-size: 28px;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
}
#flow .flow-content .flow-block .flow-box dl dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: bold;
  margin-bottom: 8px;
}
@media (max-width: 1060px) {
  #flow .flow-content .flow-block .flow-box dl dt {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-flow: row-reverse;
            flex-flow: row-reverse;
    gap: 8px;
  }
}
#flow .flow-content .flow-block .flow-box dl dt span {
  width: calc(100% - 36px);
}
#flow .flow-content .flow-block .flow-box dl dt img {
  width: 36px;
}
#flow .flow-content .flow-block .flow-box dl dd {
  font-size: 12px;
}
#flow .flow-support {
  margin-top: 32px;
}
@media (max-width: 1060px) {
  #flow .flow-support {
    margin-top: 32px;
    text-align: center;
  }
}
#flow .flow-support-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 25px 14px;
  gap: 10px;
  background-color: #FFF;
}
@media (max-width: 1060px) {
  #flow .flow-support-inner {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 8px 0;
    padding: 16px 20px 20px;
  }
}
#flow .flow-support-icon {
  width: 78px;
}
#flow .flow-support-txt {
  width: calc(100% - 67px);
  font-size: 14px;
  line-height: 1.625;
  font-weight: normal;
}
#flow .flow-support-txt span {
  font-size: 18px;
  font-weight: bold;
}
@media (max-width: 1060px) {
  #flow .flow-support-txt {
    width: 100%;
    text-align: left;
  }
}

.faq-section-inner {
  max-width: 828px;
  margin-inline: auto;
  padding: 56px 20px;
}

@media (max-width: 768px) {
  .faq-section-inner {
    padding: 32px 20px;
  }
}
.faq-list li {
  border-top: 1px solid #D9D8D8;
}

.faq-list li:last-of-type {
  border-bottom: 1px solid #D9D8D8;
}

.faq-list-wrap {
  margin-top: 34px;
}

@media (max-width: 768px) {
  .faq-list-wrap {
    margin-top: 24px;
  }
}
.acd-ttl {
  padding: 18px 61px 18px 80px;
  position: relative;
  font-size: 14px;
  line-height: 1.6666666667;
  font-weight: 700;
  display: block;
  width: 100%;
}

@media (max-width: 1060px) {
  .acd-ttl {
    padding: 16px 42px 16px 40px;
    font-size: 16px;
  }
}
.acd-ttl:before {
  content: "Q";
  position: absolute;
  top: 19px;
  left: 35px;
  font-family: "Roboto", sans-serif;
  color: #333;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}

@media (max-width: 1060px) {
  .acd-ttl:before {
    left: 0;
  }
}
.acd-ttl:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #333;
  border-radius: 50%;
  width: 27px;
  height: 27px;
  z-index: -1;
}

@media (max-width: 768px) {
  .acd-ttl:after {
    right: 0;
  }
}
.acd-ttl-btn {
  width: 100%;
  position: relative;
  z-index: 1;
  text-align: left;
}

.acd-ttl-btn:before, .acd-ttl-btn:after {
  content: "";
  position: absolute;
  top: 1px;
  right: 21px;
  bottom: 0;
  width: 17px;
  height: 3px;
  margin: auto;
  background-color: #fff;
}

@media (max-width: 768px) {
  .acd-ttl-btn:before, .acd-ttl-btn:after {
    right: 5px;
  }
}
.acd-ttl-btn:after {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.acd-content {
  display: none;
}

.acd-content-inner {
  padding: 18px 61px 18px 80px;
  position: relative;
  background: #F6F6F6;
  border-top: 1px solid #D9D8D8;
}

@media (max-width: 768px) {
  .acd-content-inner {
    padding-left: 32px;
  }
}
@media (max-width: 560px) {
  .acd-content-inner {
    padding: 16px 42px 16px 40px;
  }
}
.acd-content-inner:before {
  content: "A";
  position: absolute;
  top: 20px;
  left: 35px;
  font-family: "Roboto", sans-serif;
  color: #333;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}

@media (max-width: 768px) {
  .acd-content-inner:before {
    left: 0;
  }
}
@media (max-width: 560px) {
  .acd-content-inner:before {
    top: 21px;
  }
}
.acd-content-txt {
  font-size: 16px;
  line-height: 1.6875;
}

.contact-form .ttl-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 20px;
  text-align: center;
}

.contact-form .ttl-form img {
  width: 265px;
  height: auto;
}
@media (max-width: 1060px) {
  .contact-form .ttl-form img {
    width: 90%;
  }
}

.contact-form .contact-form-list {
  margin-bottom: 15px;
}

.contact-form .contact-form-list .required {
  color: #C91127;
}

.contact-form .contact-form-list dt {
  margin-bottom: 5px;
  color: #222;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.contact-form .contact-form-list dd {
  margin-bottom: 16px;
  color: #222;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.contact-form .contact-form-list dd .list-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0 11px;
}

.contact-form .contact-form-list dd .list-name li {
  width: 50%;
}

.contact-form .privacy-agree {
  margin-bottom: 15px;
  font-size: 11px;
  color: #222;
  text-align: center;
  line-height: 1.6363636364;
}

.contact-form .privacy-agree a {
  color: #818181;
  text-decoration: underline;
}

.contact-form .wpcf7-list-item {
  display: block;
  margin: 0 auto 24px;
  font-size: 11px;
  text-align: center;
}

.contact-form .privacy-agree a:hover {
  text-decoration: none;
}

.contact-form .btn-submit {
  position: relative;
}

.contact-form .btn-submit .btn {
  position: relative;
  width: 100%;
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact-form .btn-submit .btn::before {
  content: "";
  display: inline-block;
  background: url(../images/mail_ico.svg) no-repeat;
  width: 23px;
  height: 24px;
}

.contact-form .btn-submit .btn:hover {
  top: 3px;
}

.contact-form .btn-submit .wpcf7-spinner {
  position: absolute;
  top: -50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  margin: 0 auto;
}

.contact-sp {
  display: none;
}

@media (max-width: 1060px) {
  .contact-sp {
    display: block;
  }
  .contact-sp.contact-form .contact-form-inner {
    padding: 20px 10px 40px;
  }
  .contact-sp.contact-form .btn-submit {
    max-width: 307px;
    margin-inline: auto;
  }
}
.contact-section {
  background-color: #333;
  padding: 145px 16px 128px;
  position: relative;
}

@media (max-width: 768px) {
  .contact-section {
    padding: 99px 16px 40px;
  }
}
.contact-ttl {
  color: #fff;
  opacity: 0.2;
  position: absolute;
  top: 37px;
  left: 2%;
}

@media (max-width: 768px) {
  .contact-ttl {
    top: 40px;
    text-align: center;
  }
}
.contact-container {
  margin-top: 45px;
}

@media (max-width: 768px) {
  .contact-container {
    margin-top: 40px;
  }
}
.contact-block {
  max-width: 907px;
  margin-inline: auto;
  background-color: #fff;
  border-radius: 10px;
  padding: 55px 10px 50px;
}

@media (max-width: 768px) {
  .contact-block {
    padding: 32px 16px;
  }
}
.contact-block-inner {
  max-width: 598px;
  margin-inline: auto;
}

.contact-block .screen-reader-response,
.contact-block .wpcf7-form.sent .wpcf7-response-output {
  display: none;
}

.contact-block .wpcf7-response-output {
  font-size: 14px;
  color: #C91127;
  text-align: center;
  margin-top: 24px;
}

.fade-content {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 1s;
  transition: all 1s;
  -webkit-transform: translateY(120px);
  transform: translateY(120px);
}

.fade-in {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

@-webkit-keyframes anime {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  60% {
    opacity: 0;
    z-index: 10;
  }
  100% {
    opacity: 0;
  }
}
@keyframes anime {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  60% {
    opacity: 0;
    z-index: 10;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes slideShow {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes slideShow {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes infinity-scroll {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-300rem);
    transform: translateX(-300rem);
  }
}
@keyframes infinity-scroll {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-300rem);
    transform: translateX(-300rem);
  }
}
@-webkit-keyframes infinity-scroll-right {
  0% {
    -webkit-transform: translateX(-300rem);
    transform: translateX(-300rem);
  }
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}
@keyframes infinity-scroll-right {
  0% {
    -webkit-transform: translateX(-300rem);
    transform: translateX(-300rem);
  }
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}
@-webkit-keyframes infinity-scroll-sp {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-150rem);
    transform: translateX(-150rem);
  }
}
@keyframes infinity-scroll-sp {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-150rem);
    transform: translateX(-150rem);
  }
}
@-webkit-keyframes infinity-scroll-sp-right {
  0% {
    -webkit-transform: translateX(-150rem);
    transform: translateX(-150rem);
  }
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}
@keyframes infinity-scroll-sp-right {
  0% {
    -webkit-transform: translateX(-150rem);
    transform: translateX(-150rem);
  }
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}
@-webkit-keyframes fade-in {
  0% {
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
  }
}
/* =========================================================
 State
========================================================= */
body.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

.header-inner.is-open .header-nav-sp {
  opacity: 1;
  visibility: visible;
  z-index: 50;
  position: absolute;
  top: 0;
  width: 100%;
  background: #fff;
}

.header-inner.is-open .header-menu-btn {
  background-color: #333;
}

.header-inner.is-open .header-menu-btn-1 {
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(315deg);
  transform: translate(-50%, -50%) rotate(315deg);
  background-color: #fff;
}

.header-inner.is-open .header-menu-btn-2 {
  opacity: 0;
}

.header-inner.is-open .header-menu-btn-3 {
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-315deg);
  transform: translate(-50%, -50%) rotate(-315deg);
  background-color: #fff;
}

.acd-ttl-btn.is-open:after {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

/* flow_animation */
.flow_animation {
  position: relative;
  width: 100%;
  background: #fff;
  overflow: hidden;
}
.flow_animation .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 2rem;
  padding-left: 2rem;
  -webkit-animation: flowLogoScroll 14s linear infinite;
          animation: flowLogoScroll 14s linear infinite;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content; /* 要素の実際の幅に合わせる */
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-will-change: transform;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.flow_animation .list li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@-webkit-keyframes flowLogoScroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes flowLogoScroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media screen and (max-width: 768px) {
  .flow_animation .list {
    -webkit-animation-duration: 22s;
            animation-duration: 22s;
  }
}
