@charset "UTF-8";
/* -------------------------------------------*/ /* -------------------------------------------*/
/* -------------------------------------------*/
:root {
  --content_width: 1000px;
  --content-both_space: 20px;
  --header_height: 140px;
  --header_move-height: 90px;
}
@media screen and (max-width: 1000px) {
  :root {
    --header_height: 70px;
    --header_move-height: 80px;
  }
}

/* -------------------------------------------*/
/* -------------------------------------------*/
/* -------------------------------------------*/ /* -------------------------------------------*/
/* -------------------------------------------*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* -------------------------------------------*/
@media all and (-ms-high-contrast: none) {
  html,
body {
    display: none;
  }
}
*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  -ms-overflow-style: scrollbar;
  font-size: 62.5%;
  overflow: auto;
}

body {
  color: #1A1A1A;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-size: 16px;
  font-weight: 400;
  height: 100%;
  letter-spacing: -0.05em;
  line-height: 1.5;
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

section {
  position: relative;
  width: 100%;
}

a,
button {
  color: inherit;
  text-decoration: none;
}

picture {
  display: block;
  line-height: 0;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

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

input,
button,
select,
optgroup,
textarea {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-border-radius: 0;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  background-color: transparent;
  border: none;
  border: none;
  box-sizing: border-box;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  margin: 0;
  position: relative;
  vertical-align: middle;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

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

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

input[type=radio],
input[type=checkbox] {
  box-sizing: border-box;
  padding: 0;
}

input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month] {
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  border: 0;
  margin: 0;
  min-width: 0;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  border-offset: -2px;
  -webkit-appearance: none;
}

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

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

output {
  display: inline-block;
}

@media not all and (max-width: 667px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
/* -------------------------------------------*/
/*underline*/
/*arrow-fade*/
@keyframes arrow-fade {
  0% {
    transform: translateX(0);
  }
  49% {
    transform: translateX(15px);
  }
  50% {
    opacity: 0;
  }
  51% {
    opacity: 1;
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0px);
  }
}
/* fade */
.js-fade__view {
  display: block;
  opacity: 0;
  transform: translateY(50px);
  transition: 800ms;
}
.js-fade__view--delay1 {
  transition-delay: 100ms;
}
.js-fade__view--delay2 {
  transition-delay: 300ms;
}

.is-fade__view.js-fade__view {
  opacity: 1;
  transform: translateY(0);
}

.js-fade__down {
  opacity: 0;
  transform: translateY(-50px);
  transition: 800ms;
}
.js-fade__down--delay1 {
  transition-delay: 100ms;
}
.js-fade__down--delay2 {
  transition-delay: 300ms;
}

.is-fade__down.js-fade__down {
  opacity: 1;
  transform: translateY(0);
}

/* layout
-------------------------------------------------------*/
/**
 * input
 *
 */
input[type=text],
input[type=date],
input[type=password],
input[type=email],
input[type=time],
input[type=tel],
input[type=number] {
  background-color: #fff;
  border: none;
  border: none;
  border: none;
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  letter-spacing: 0.1em;
  line-height: 1;
  padding: 15px 15px;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  input[type=text],
input[type=date],
input[type=password],
input[type=email],
input[type=time],
input[type=tel],
input[type=number] {
    padding: 10px;
  }
}

input[type=number] {
  -moz-appearance: textfield;
}

/**
 * textarea
 *
 */
textarea {
  background-color: #fff;
  border: none;
  border: none;
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  height: 190px;
  letter-spacing: 0.1em;
  padding: 10px;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  textarea {
    height: 170px;
  }
}

input[type=text]:disabled {
  background: transparent;
  cursor: not-allowed;
}
input[type=text]:disabled:-ms-input-placeholder {
  color: #edf6ff;
  opacity: 1;
}
input[type=text]:disabled::placeholder {
  color: #edf6ff;
  opacity: 1;
}

/**
 * radio
 *
 */
input[type=radio] {
  display: none;
  vertical-align: middle;
}

.mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 0;
}

input[type=radio] + .mwform-radio-field-text {
  cursor: pointer;
  display: inline-block;
  margin: 0 20px 10px 0;
  padding: 10px 10px 10px 40px;
  position: relative;
  transition: 0.5;
  transition-property: color;
  vertical-align: middle;
}
@media screen and (max-width: 1000px) {
  input[type=radio] + .mwform-radio-field-text {
    margin: 0;
    padding: 10px 5px 12px 23px;
  }
}

input[type=radio] + .mwform-radio-field-text::before {
  border: 1px solid #7f7f7f;
  border-radius: 50%;
  box-sizing: border-box;
  content: "";
  height: 20px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.5s ease;
  width: 20px;
  z-index: 2;
}
@media screen and (max-width: 1000px) {
  input[type=radio] + .mwform-radio-field-text::before {
    height: 15px;
    width: 15px;
  }
}

input[type=radio] + .mwform-radio-field-text::after {
  background-color: #004892;
  border-radius: 50%;
  box-sizing: border-box;
  content: "";
  display: block;
  height: 12px;
  left: 4px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  z-index: 5;
}
@media screen and (max-width: 1000px) {
  input[type=radio] + .mwform-radio-field-text::after {
    content: "";
    height: 9px;
    left: 3px;
    width: 9px;
  }
}

input[type=radio]:checked + .mwform-radio-field-text::after {
  opacity: 1;
}

/**
 * checkbox
 *
 */
input[type=checkbox] {
  display: none;
  vertical-align: middle;
}

input[type=checkbox] + label {
  cursor: pointer;
  display: inline-block;
  line-height: 1;
  padding: 0 0 0 35px;
  position: relative;
  transition: 0.5;
  transition-property: color;
}
@media screen and (max-width: 1000px) {
  input[type=checkbox] + label {
    padding-left: 30px;
  }
}

input[type=checkbox] + label::before {
  background: #fff;
  border: 2px #818181 solid;
  box-sizing: border-box;
  content: "";
  height: 16px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  z-index: 2;
}

input[type=checkbox] + label::after {
  border-bottom: 3px solid #edf6ff;
  border-left: 3px solid #edf6ff;
  content: "";
  display: block;
  height: 5px;
  left: 3px;
  opacity: 0;
  position: absolute;
  top: 5px;
  transform: rotate(-45deg);
  transition: 0.5s;
  transition-property: color;
  width: 10px;
  z-index: 3;
}

input[type=checkbox]:checked + label::after {
  opacity: 1;
}

/**
 * tel(column)
 *
 */
.mwform-tel-field {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.mwform-tel-field > input {
  flex: 1;
  width: 100% !important;
}

/**
 * select
 *
 */
.select-parts {
  border: 1px #edf6ff solid;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.select-parts::after {
  background: url(../img/contact/select_arrow.png) no-repeat top center/contain;
  content: "";
  height: 10px;
  margin-top: 2px;
  pointer-events: none;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  z-index: 5;
}
.select-parts select {
  appearance: none;
  background: #fbefe3;
  border: none;
  border: none;
  box-shadow: none;
  color: #7f7f7f;
  cursor: pointer;
  font-size: 2rem;
  height: 45px;
  letter-spacing: 0.1em;
  padding: 0 20px 0 15px;
  position: relative;
  text-align: center;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .select-parts select {
    font-size: rem(15px);
  }
}

/**
 * file
 *
 */
input[type=file] + label {
  margin: 0 10px 0 0;
  padding: 15px 0;
  width: 160px;
}
input[type=file] + label:after {
  left: 170px;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
.l-footer {
  position: relative;
  width: 100%;
}
.l-footer__copyright {
  background-color: #292929;
  color: #fff;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  padding: 20px 0;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .l-footer__copyright {
    font-size: 1.2rem;
    padding: 15px 0;
  }
}

/* -------------------------------------------*/
.l-header {
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
}
.l-header.is-move {
  background-color: #292929;
}
.l-header.is-move .l-header__inner {
  height: var(--header_move-height);
}
.l-header.is-move .l-header__logo-link {
  color: #fff;
  font-size: 4.2rem;
}
@media screen and (max-width: 1000px) {
  .l-header.is-move .l-header__logo-link {
    font-size: 3.6rem;
  }
}
@media not all and (max-width: 1000px) {
  .l-header.is-move .l-navi__menu-link {
    color: #fff;
    font-size: 1.6rem;
  }
  .l-header.is-move .l-navi__menu-link::before {
    background-color: #fff;
    height: 6px;
    width: 6px;
  }
  .l-header.is-move .l-navi__menu-link {
    color: #fff;
    font-size: 1.6rem;
  }
  .l-header.is-move .l-navi__menu-link::before {
    background-color: #fff;
    height: 6px;
    width: 6px;
  }
}
.l-header.is-move .l-header__trigger-line {
  background-color: #fff;
}
.l-header__inner {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  height: var(--header_height);
  justify-content: space-between;
  padding: 0 40px 0 50px;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .l-header__inner {
    padding: 0 0 0 15px;
    transition: 0.5s;
    transition-property: opacity visibility;
  }
  .l-header__inner.is-hide {
    opacity: 0;
    visibility: hidden;
  }
}
.l-header__logo-link {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 5.2rem;
  font-weight: 900;
  transition: 0.5s;
  transition-property: all;
}
@media screen and (max-width: 1000px) {
  .l-header__logo-link {
    font-size: 3rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-header__logo-link:hover {
    opacity: 0.8;
  }
}
.l-header__trigger {
  align-items: center;
  display: flex;
  height: 50px;
  justify-content: center;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translate(0, -50%);
  width: 50px;
}
.l-header__trigger-inner {
  display: inline-block;
  height: 28px;
  position: relative;
  transition: all 0.4s;
  width: 40px;
}
.l-header__trigger-line {
  background-color: #292929;
  border-radius: 2.5px;
  display: inline-block;
  height: 4px;
  left: 0;
  position: absolute;
  transition: 0.5s;
  transition-property: transform;
  width: 100%;
}
.l-header__trigger-line:nth-of-type(1) {
  top: 0;
}
.l-header__trigger-line:nth-of-type(1).is-active {
  transform: translateY(13px) rotate(45deg);
}
.l-header__trigger-line:nth-of-type(2) {
  top: 12px;
}
.l-header__trigger-line:nth-of-type(2).is-active {
  display: none;
}
.l-header__trigger-line:nth-of-type(3) {
  bottom: 0;
}
.l-header__trigger-line:nth-of-type(3).is-active {
  transform: translateY(-13px) rotate(-45deg);
}

/* -------------------------------------------*/
body {
  background-color: #fff;
  height: 100%;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 1000px) {
  body {
    min-width: 100%;
    overflow-x: hidden;
    width: 100%;
  }
  body.is-open::before {
    opacity: 1;
    visibility: visible;
  }
  body.is-open .l-navi {
    opacity: 1;
    visibility: visible;
  }
  body::before {
    background-color: #fff;
    content: "";
    display: block;
    height: 100%;
    left: 0;
    margin: 0 calc(50% - 50vw);
    opacity: 0;
    position: absolute;
    top: 0;
    transition: 0.5s;
    transition-property: opacity visibility;
    visibility: hidden;
    width: 100vw;
    z-index: -1;
    z-index: 50;
  }
}

.l-wrapper {
  position: relative;
  text-align: left;
  width: 100%;
}
@media not all and (max-width: 1000px) {
  .l-wrapper {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 0 auto;
    min-height: 100vh;
    position: relative;
    text-align: left;
    width: 100%;
  }
}

.l-main {
  position: relative;
  width: 100%;
}
.l-main__inner {
  padding: 0 var(--content-both_space);
  position: relative;
  width: 100%;
  z-index: 1;
}
.l-main--404 .l-main__inner, .l-main--error .l-main__inner {
  padding: 120px 0;
}
@media screen and (max-width: 1000px) {
  .l-main--404 .l-main__inner, .l-main--error .l-main__inner {
    padding: 80px 15px;
  }
}
.l-main--404 .c-button, .l-main--error .c-button {
  margin: 40px auto 0;
}
@media screen and (max-width: 1000px) {
  .l-main--404 .c-button, .l-main--error .c-button {
    margin-top: 30px;
  }
}

.no-link {
  opacity: 0.4 !important;
  pointer-events: none !important;
}
.no-link--ba {
  pointer-events: none !important;
}
.no-link--ba::before, .no-link--ba::after {
  opacity: 0.4 !important;
  pointer-events: none !important;
}

/* -------------------------------------------*/
.l-navi {
  align-items: center;
  display: flex;
}
@media screen and (max-width: 1000px) {
  .l-navi {
    align-items: flex-start;
    bottom: 0;
    height: 100vh;
    justify-content: center;
    left: 0;
    opacity: 0;
    overflow: auto;
    position: fixed;
    right: 0;
    top: 80px;
    transition: 0.5s;
    transition-property: opacity, visibility;
    visibility: hidden;
    width: 100%;
  }
}
.l-navi__menu {
  align-items: center;
  display: flex;
}
@media screen and (max-width: 1000px) {
  .l-navi__menu {
    flex-direction: column;
    padding: 60px 0 150px;
  }
}
.l-navi__menu-item {
  padding: 0 10px;
}
@media screen and (max-width: 1000px) {
  .l-navi__menu-item:not(:first-child) {
    margin-top: 20px;
  }
}
.l-navi__menu-link {
  display: block;
  font-size: 2rem;
  font-weight: 500;
  padding: 10px;
  position: relative;
  transition: 0.5s;
  transition-property: font-size;
  white-space: nowrap;
}
.l-navi__menu-link::before {
  background-color: #292929;
  border-radius: 50%;
  content: "";
  display: block;
  height: 8px;
  left: 50%;
  opacity: 0;
  position: absolute;
  top: 0;
  transform: translate(-50%, 0);
  width: 8px;
  z-index: 1;
}
@media (hover: hover) and (pointer: fine) {
  .l-navi__menu-link::before {
    transition: 0.5s;
    transition-property: top, opacity;
  }
  .l-navi__menu-link:hover {
    opacity: 0.8;
  }
  .l-navi__menu-link:hover::before {
    opacity: 1;
    top: -15%;
  }
}

/* -------------------------------------------*/
.c-aside {
  align-items: center;
  bottom: 0;
  display: flex;
  flex-direction: column;
  mix-blend-mode: difference;
  position: fixed;
  right: 1.5vw;
  z-index: 2;
}
@media screen and (max-width: 1000px) {
  .c-aside {
    position: absolute;
    right: 15px;
  }
}
.c-aside__mail {
  height: 48px;
  margin-bottom: 60px;
  width: 48px;
}
@media screen and (max-width: 1000px) {
  .c-aside__mail {
    height: 42px;
    margin: 0;
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translate(0, -50%);
    width: 42px;
  }
}
.c-aside__mail-link {
  align-items: center;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 14px;
}
.c-aside__mail-link img {
  filter: brightness(0);
  height: auto;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .c-aside__mail-link {
    background-color: #292929;
    padding: 12px;
  }
  .c-aside__mail-link img {
    filter: brightness(0) invert(1);
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-aside__mail-link {
    transition: 0.5s;
    transition-property: background-color;
  }
  .c-aside__mail-link img {
    transition: 0.5s;
    transition-property: filter;
  }
  .c-aside__mail-link:hover {
    background-color: #000;
  }
  .c-aside__mail-link:hover img {
    filter: brightness(0) invert(1);
  }
}
.c-aside__scroll {
  position: relative;
  right: 5px;
}
.c-aside__scroll-link {
  -ms-writing-mode: tb-lr;
  color: #fff;
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 700;
  overflow: hidden;
  padding-bottom: 120px;
  padding-left: 10px;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  writing-mode: vertical-lr;
}
@media screen and (max-width: 1000px) {
  .c-aside__scroll-link {
    font-size: 1.2rem;
    padding-bottom: 100px;
  }
}
.c-aside__scroll-link::before, .c-aside__scroll-link::after {
  bottom: 0;
  content: "";
  height: 100px;
  left: 50%;
  position: absolute;
  width: 2px;
}
@media screen and (max-width: 1000px) {
  .c-aside__scroll-link::before, .c-aside__scroll-link::after {
    height: 80px;
    width: 1px;
  }
}
.c-aside__scroll-link::before {
  background: rgba(255, 255, 255, 0.2);
}
.c-aside__scroll-link::after {
  animation: sdl 2s cubic-bezier(1, 0, 0, 1) infinite;
  background: #fff;
}
@keyframes sdl {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

/* -------------------------------------------*/
@media not all and (max-width: 667px) {
  .c-card--grid {
    -ms-grid-columns: 1fr 35px 1fr;
    display: -ms-grid;
    display: grid;
    gap: 35px;
    grid-template-columns: repeat(2, 1fr);
  }
}
.c-card__profile {
  display: flex;
  flex-wrap: wrap;
  min-height: 100px;
  padding-left: 120px;
  position: relative;
}
@media screen and (max-width: 667px) {
  .c-card__profile {
    align-items: flex-end;
    padding-left: 0;
  }
}
.c-card__profile-img {
  border-radius: 16px;
  overflow: hidden;
  width: 90px;
}
@media not all and (max-width: 667px) {
  .c-card__profile-img {
    left: 0;
    position: absolute;
    top: 0;
  }
}
@media screen and (max-width: 667px) {
  .c-card__profile-img {
    position: relative;
    width: 40%;
  }
}
.c-card__profile-img::before {
  content: "";
  display: block;
  padding-top: 110%;
}
@media screen and (max-width: 667px) {
  .c-card__profile-img::before {
    padding-top: 100%;
  }
}
.c-card__profile-img img {
  bottom: 0;
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}
.c-card__profile-catch {
  font-size: 1.4rem;
  padding: 3px 0;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .c-card__profile-catch {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 667px) {
  .c-card__profile-catch {
    margin-left: 5%;
    padding: 0;
    width: 55%;
  }
}
.c-card__profile-ttl {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.54;
  padding-bottom: 12px;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .c-card__profile-ttl {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 667px) {
  .c-card__profile-ttl {
    margin-top: 15px;
  }
}
.c-card__profile-ttl::before {
  background-color: #004892;
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  right: -25px;
  width: calc(100% + 25px);
}
@media screen and (max-width: 1000px) {
  .c-card__profile-ttl::before {
    right: -20px;
  }
}
@media screen and (max-width: 667px) {
  .c-card__profile-ttl::before {
    left: -20px;
    right: auto;
    width: calc(100% + 20px);
  }
}
.c-card__profile-read {
  margin-top: 20px;
}
@media screen and (max-width: 1000px) {
  .c-card__profile-read {
    margin-top: 15px;
  }
}
.c-card__profile-txt {
  font-size: 1.3rem;
  line-height: 1.75;
}
@media screen and (max-width: 1000px) {
  .c-card__profile-txt {
    font-size: 1.2rem;
  }
}
.c-card__body {
  margin-top: 11px;
}
@media screen and (max-width: 1000px) {
  .c-card__body {
    margin-top: 5px;
    padding: 0 7px;
  }
}
.c-card__item {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 7px 14px rgba(0, 0, 0, 0.16);
  padding: 25px 25px 35px;
}
@media screen and (max-width: 1000px) {
  .c-card__item {
    padding: 20px 20px 30px;
  }
}
@media screen and (max-width: 667px) {
  .c-card__item:not(:first-child) {
    margin-top: 20px;
  }
}
.c-card__ttl {
  font-size: 2rem;
  font-weight: 700;
  padding: 0 5px 16px;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .c-card__ttl {
    font-size: 1.8rem;
  }
}
.c-card__ttl::before {
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  left: -25px;
  position: absolute;
  width: calc(100% + 25px);
}
@media screen and (max-width: 1000px) {
  .c-card__ttl::before {
    left: -20px;
  }
}
.c-card__read {
  margin-top: 15px;
}
.c-card__txt {
  font-size: 1.4rem;
  line-height: 1.85;
}
@media screen and (max-width: 1000px) {
  .c-card__txt {
    font-size: 1.3rem;
  }
}
.c-card__txt--list {
  padding-left: 1.1em;
  position: relative;
}
.c-card__txt--list::before {
  content: "・";
  left: 0;
  position: absolute;
  top: 0;
}
.c-card__progress-bar {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 7px rgba(0, 0, 0, 0.3);
  height: 16px;
  margin-top: 35px;
  overflow: hidden;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .c-card__progress-bar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-top: 25px;
  }
}
.c-card__progress-bar span {
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 20%;
}
.c-card__progress-read {
  display: flex;
  justify-content: space-between;
  margin-top: 18px;
}
@media screen and (max-width: 1000px) {
  .c-card__progress-read {
    margin-top: 15px;
  }
}
.c-card__progress-txt {
  font-size: 1.3rem;
  font-weight: 500;
}
@media screen and (max-width: 1000px) {
  .c-card__progress-txt {
    font-size: 1.2rem;
  }
}

/* -------------------------------------------*/
.c-heading__ttl {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding-left: 75px;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .c-heading__ttl {
    font-size: 1.6rem;
    padding-left: 50px;
  }
}
.c-heading__ttl::before {
  background-color: #1A1A1A;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 50px;
}
@media screen and (max-width: 1000px) {
  .c-heading__ttl::before {
    width: 35px;
  }
}
.c-heading__catch {
  font-size: 8.2rem;
  font-weight: 700;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 1000px) {
  .c-heading__catch {
    font-size: 5rem;
  }
}
.c-heading__msg {
  font-size: 1.6rem;
  line-height: 2.5;
  margin-top: 40px;
}
@media screen and (max-width: 1000px) {
  .c-heading__msg {
    font-size: 1.5rem;
    line-height: 2;
    margin-top: 25px;
  }
}

/* -------------------------------------------*/
.c-pagetop {
  bottom: 30px;
  height: 60px;
  position: fixed;
  right: 3vw;
  width: 60px;
  z-index: 1;
}
.c-pagetop__link {
  background-color: #fff;
  border: 1px solid #292929;
  border-radius: 50%;
  box-shadow: 0 4px 7px rgba(0, 0, 0, 0.16);
  display: block;
  height: 100%;
  position: relative;
  width: 100%;
}
.c-pagetop__link::before {
  -webkit-mask: url(../img/icon_arrow.svg) no-repeat center center/contain;
  background-color: #292929;
  content: "";
  display: block;
  height: 26px;
  left: 50%;
  mask: url(../img/icon_arrow.svg) no-repeat center center/contain;
  position: absolute;
  top: 48%;
  transform: translate(-50%, -50%) rotate(-90deg);
  width: 22px;
  z-index: 1;
}
@media (hover: hover) and (pointer: fine) {
  .c-pagetop__link {
    transition: 0.5s;
    transition-property: background-color, border-color;
  }
  .c-pagetop__link::before {
    transition: 0.5s;
    transition-property: background-color;
  }
  .c-pagetop__link:hover {
    background-color: #292929;
    border-color: #fff;
  }
  .c-pagetop__link:hover::before {
    background-color: #fff;
  }
}

/* -------------------------------------------*/
.c-table__item {
  border-bottom: 1px solid #292929;
  padding: 35px 0;
}
@media not all and (max-width: 667px) {
  .c-table__item {
    align-items: center;
    display: flex;
  }
}
@media screen and (max-width: 667px) {
  .c-table__item {
    padding: 25px 0;
  }
}
.c-table__ttl {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1000px) {
  .c-table__ttl {
    font-size: 1.8rem;
  }
}
@media not all and (max-width: 667px) {
  .c-table__ttl {
    padding: 0 10px 0 40px;
    width: 220px;
  }
}
.c-table__txt {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1000px) {
  .c-table__txt {
    font-size: 1.8rem;
  }
}
@media not all and (max-width: 667px) {
  .c-table__txt {
    flex: 1;
  }
}
@media screen and (max-width: 667px) {
  .c-table__txt {
    margin-top: 8px;
  }
}

/* -------------------------------------------*/
.p-about {
  padding: 140px 0 200px;
}
@media screen and (max-width: 1000px) {
  .p-about {
    padding: 120px 0 100px;
  }
}
.p-about__body {
  margin-top: 80px;
}
@media screen and (max-width: 1000px) {
  .p-about__body {
    margin-top: 35px;
  }
}
@media not all and (max-width: 667px) {
  .p-about__read {
    padding-right: 45%;
  }
}
@media screen and (max-width: 667px) {
  .p-about__read {
    margin-top: 30px;
  }
}
.p-about__ttl {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.71;
}
@media screen and (max-width: 1000px) {
  .p-about__ttl {
    font-size: 2rem;
  }
}
.p-about__txt {
  font-size: 1.6rem;
  line-height: 2.5;
  margin-top: 40px;
}
@media screen and (max-width: 1000px) {
  .p-about__txt {
    font-size: 1.5rem;
    line-height: 2;
    margin-top: 25px;
  }
}
.p-about__img {
  border-radius: 32px;
  box-shadow: 0 7px 25px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}
@media not all and (max-width: 667px) {
  .p-about__img {
    margin-left: 10%;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
    width: 35%;
  }
}
@media screen and (max-width: 667px) {
  .p-about__img {
    box-shadow: 0 3.5px 12px rgba(0, 0, 0, 0.4);
    position: relative;
  }
}
.p-about__img::before {
  content: "";
  display: block;
  padding-top: 115%;
}
@media screen and (max-width: 667px) {
  .p-about__img::before {
    padding-top: 62.5%;
  }
}
.p-about__img img {
  bottom: 0;
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

/* -------------------------------------------*/
.p-analysis {
  margin-top: 135px !important;
  padding: 120px 0 155px;
}
@media screen and (max-width: 1000px) {
  .p-analysis {
    margin-top: 80px !important;
    padding: 80px 15px 100px 0;
  }
}
.p-analysis::before {
  border-radius: 0 64px 64px 0;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  right: -15%;
  top: 0;
  width: calc(100vw + 15%);
  z-index: -1;
}
@media screen and (max-width: 667px) {
  .p-analysis::before {
    border-radius: 0 32px 32px 0;
    right: 0;
    width: 100vw;
  }
}
.p-analysis__body {
  margin-top: 120px;
}
@media screen and (max-width: 1000px) {
  .p-analysis__body {
    margin-top: 60px;
  }
}
.p-analysis__switch-tab {
  -ms-grid-columns: 1fr 25px 1fr 25px 1fr;
  display: -ms-grid;
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 667px) {
  .p-analysis__switch-tab {
    -ms-grid-columns: 1fr;
    gap: 8px;
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-analysis__switch-item {
  align-items: center;
  background-color: #fff;
  border: 1px solid #292929;
  border-radius: 30px;
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  font-size: 2rem;
  font-weight: 700;
  height: 60px;
  justify-content: center;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1000px) {
  .p-analysis__switch-item {
    font-size: 1.6rem;
    height: 40px;
  }
}
.p-analysis__switch-item.is-select {
  background-color: #292929;
  color: #fff;
  pointer-events: none;
}
@media (hover: hover) and (pointer: fine) {
  .p-analysis__switch-item {
    transition: 0.5s;
    transition-property: color, background-color;
  }
  .p-analysis__switch-item:hover {
    background-color: #292929;
    color: #fff;
  }
}
.p-analysis__switch-read {
  margin-top: 40px;
}
@media screen and (max-width: 1000px) {
  .p-analysis__switch-read {
    margin-top: 30px;
  }
}
.p-analysis__switch-wrap:not(.is-select) {
  display: none;
}
.p-analysis__switch-wrap.is-select {
  display: -ms-grid;
  display: grid;
}
.p-analysis__history {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 7px 14px rgba(0, 0, 0, 0.16);
  padding: 60px 65px 80px 80px;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .p-analysis__history {
    padding: 25px 25px 30px 30px;
  }
}
.p-analysis__history-item {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.78;
  padding-left: 80px;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .p-analysis__history-item {
    font-size: 1.4rem;
    line-height: 1.6;
    padding-left: 40px;
  }
}
.p-analysis__history-item:not(:last-child) {
  padding-bottom: 50px;
}
@media screen and (max-width: 1000px) {
  .p-analysis__history-item:not(:last-child) {
    padding-bottom: 35px;
  }
}
.p-analysis__history-item:not(:last-child)::after {
  background-color: #004892;
  content: "";
  display: block;
  height: 100%;
  left: 10px;
  position: absolute;
  top: 9px;
  width: 2px;
}
@media screen and (max-width: 1000px) {
  .p-analysis__history-item:not(:last-child)::after {
    left: 7px;
  }
}
.p-analysis__history-item::before {
  background-color: #004892;
  border-radius: 50%;
  content: "";
  display: block;
  height: 22px;
  left: 0;
  position: absolute;
  top: 9px;
  width: 22px;
  z-index: 1;
}
@media screen and (max-width: 1000px) {
  .p-analysis__history-item::before {
    height: 15px;
    top: 5px;
    width: 15px;
  }
}
.p-analysis__voice {
  margin-top: 120px;
}
@media screen and (max-width: 1000px) {
  .p-analysis__voice {
    margin-top: 80px;
  }
}
.p-analysis__voice-ttl {
  align-items: center;
  background-color: #292929;
  border-radius: 30px;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  font-size: 2rem;
  font-weight: 700;
  height: 60px;
  justify-content: center;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1000px) {
  .p-analysis__voice-ttl {
    font-size: 1.6rem;
    height: 45px;
  }
}
.p-analysis__voice-body {
  margin-top: 40px;
}
@media screen and (max-width: 1000px) {
  .p-analysis__voice-body {
    margin-top: 30px;
  }
}
.p-analysis__voice-slick .c-card__item {
  margin: 0 10px;
}
@media screen and (max-width: 667px) {
  .p-analysis__voice-slick .c-card__item {
    margin: 0 5px;
  }
}
.p-analysis .slider-dots {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 7px rgba(0, 0, 0, 0.16);
  display: flex;
  flex-wrap: wrap;
  height: 15px;
  list-style: none;
  margin: 40px auto 0 0;
  overflow: hidden;
  padding: 0;
  text-align: center;
  transform: translate(0, 50%);
  width: 75%;
}
@media screen and (max-width: 1000px) {
  .p-analysis .slider-dots {
    height: 10px;
    margin-top: 20px;
    width: 100%;
  }
}
.p-analysis .slider-dots li {
  display: block;
  height: 100%;
}
.p-analysis .slider-dots button {
  background-color: #fff;
  border: 0;
  border-radius: 20px;
  display: block;
  font-size: 0;
  height: 100%;
  position: relative;
  width: 100%;
}
.p-analysis .slider-dots button:after {
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 0%;
}
.p-analysis .slide-arrow {
  background-color: #fff;
  border-radius: 50%;
  bottom: 0;
  box-shadow: 0 4px 7px rgba(0, 0, 0, 0.16);
  cursor: pointer;
  height: 50px;
  position: absolute;
  right: 0;
  transform: translate(0, 50%);
  width: 50px;
  z-index: 1;
}
@media screen and (max-width: 1000px) {
  .p-analysis .slide-arrow {
    height: 40px;
    width: 40px;
  }
}
@media screen and (max-width: 1000px) {
  .p-analysis .slide-arrow {
    bottom: auto;
    opacity: 0.6;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
  }
}
.p-analysis .slide-arrow::before {
  background: url(../img/icon_arrow.svg) no-repeat left 17px center/20px 23px;
  content: "";
  display: block;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .p-analysis .slide-arrow::before {
    background-size: 15px 18px;
    margin: 0 0 0 2px;
  }
}
@media screen and (max-width: 1000px) {
  .p-analysis .slide-arrow.next-arrow {
    right: -10px;
  }
}
.p-analysis .slide-arrow.prev-arrow {
  right: 120px;
}
@media screen and (max-width: 1000px) {
  .p-analysis .slide-arrow.prev-arrow {
    left: -10px;
    right: auto;
  }
}
.p-analysis .slide-arrow.prev-arrow::before {
  transform: rotate(180deg);
}
@media screen and (max-width: 1000px) {
  .p-analysis .slide-arrow.prev-arrow::before {
    margin: 0 2px 0 0;
    transform: rotate(180deg);
  }
}

/* -------------------------------------------*/
.p-business {
  padding: 135px 0 80px;
}
@media screen and (max-width: 1000px) {
  .p-business {
    padding: 90px 0 50px;
  }
}
.p-business::after {
  background-color: rgba(0, 0, 0, 0.8);
  content: "";
  display: block;
  height: 100%;
  left: 0;
  margin: 0 calc(50% - 50vw);
  position: absolute;
  top: 0;
  width: 100vw;
  z-index: -1;
}
.p-business__body {
  margin-top: 80px;
}
@media screen and (max-width: 1000px) {
  .p-business__body {
    margin-top: 50px;
  }
}
.p-business__img {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 58px 65px 100px 50px;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .p-business__img {
    padding: 40px 25px 100px 25px;
  }
}
.p-business__img img {
  height: auto;
  width: 100%;
}
.p-business__img figcaption {
  bottom: 15px;
  font-size: 1.1rem;
  font-weight: 700;
  padding-left: 1em;
  position: absolute;
  right: 20px;
}
@media screen and (max-width: 1000px) {
  .p-business__img figcaption {
    font-size: 1rem;
    left: 20px;
  }
}
.p-business__img figcaption::before {
  content: "※";
  left: 0;
  position: absolute;
  top: 0;
}
.p-business__switch {
  margin-top: 80px;
}
@media not all and (max-width: 667px) {
  .p-business__switch {
    display: flex;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 667px) {
  .p-business__switch {
    margin-top: 60px;
  }
}
.p-business__switch-tab {
  width: 385px;
}
@media screen and (max-width: 1000px) {
  @media not all and (max-width: 667px) {
    .p-business__switch-tab {
      width: 320px;
    }
  }
}
@media screen and (max-width: 667px) {
  .p-business__switch-tab {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
}
.p-business__switch-item {
  align-items: center;
  color: #fff;
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  font-size: 1.8rem;
  font-weight: 700;
  height: 100px;
  letter-spacing: 0.025em;
  padding: 0 25px;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .p-business__switch-item {
    font-size: 1.5rem;
  }
}
@media not all and (max-width: 667px) {
  .p-business__switch-item {
    border-top: 1px solid #fff;
  }
  .p-business__switch-item:last-child {
    border-bottom: 1px solid #fff;
  }
}
@media screen and (max-width: 667px) {
  .p-business__switch-item {
    border-bottom: 1px solid #fff;
    border-top: 1px solid #fff;
    height: auto;
    justify-content: center;
    padding: 15px 10px 40px 10px;
    text-align: center;
    width: 50%;
  }
}
.p-business__switch-item.is-select {
  background-color: rgba(255, 255, 255, 0.8);
  color: #000;
  pointer-events: none;
}
.p-business__switch-item.is-select::before {
  background-color: #000;
  right: 25px;
}
.p-business__switch-item::before {
  -webkit-mask-image: url(../img/icon_arrow.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  background-color: #fff;
  content: "";
  display: block;
  height: 21px;
  mask-image: url(../img/icon_arrow.svg);
  mask-repeat: no-repeat;
  mask-size: contain;
  position: absolute;
  right: 35px;
  top: 50%;
  transform: translate(0, -50%);
  width: 18px;
  z-index: 1;
}
@media screen and (max-width: 1000px) {
  .p-business__switch-item::before {
    height: 16px;
    width: 14px;
  }
}
@media screen and (max-width: 667px) {
  .p-business__switch-item::before {
    bottom: 10px;
    left: 50%;
    position: absolute;
    top: auto;
    transform: translate(-50%, 0) rotate(90deg);
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-business__switch-item {
    transition: 0.5s;
    transition-property: background-color;
  }
  .p-business__switch-item::before {
    transition: 0.5s;
    transition-property: background-color right;
  }
  .p-business__switch-item:hover {
    background-color: rgba(255, 255, 255, 0.8);
    color: #000;
  }
  .p-business__switch-item:hover::before {
    background-color: #000;
    right: 25px;
  }
}
@media not all and (max-width: 667px) {
  .p-business__switch-read {
    flex: 1;
    padding-left: 80px;
  }
}
@media screen and (max-width: 667px) {
  .p-business__switch-read {
    margin-top: 30px;
  }
}
.p-business__switch-wrap {
  display: none;
}
.p-business__switch-wrap.is-select {
  display: block !important;
}
.p-business__txt {
  color: #fff;
  font-size: 1.6rem;
  line-height: 2;
  padding-left: 25px;
  position: relative;
}
.p-business__txt:not(:first-child) {
  margin-top: 10px;
}
@media screen and (max-width: 1000px) {
  .p-business__txt {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}
.p-business__txt::before {
  background-color: #fff;
  border-radius: 50%;
  content: "";
  height: 8px;
  left: 0;
  position: absolute;
  top: 13px;
  width: 8px;
  z-index: 1;
}
.p-business__back {
  height: 100%;
  left: 0;
  margin: 0 calc(50% - 50vw);
  position: absolute;
  top: 0;
  width: 100vw;
  z-index: -1;
}
.p-business__back img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

/* -------------------------------------------*/
.p-case {
  padding: 150px 0 160px;
}
@media screen and (max-width: 1000px) {
  .p-case {
    padding: 90px 0 100px;
  }
}
.p-case::before {
  background-color: #f0f0f0;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  margin: 0 calc(50% - 50vw);
  position: absolute;
  top: 0;
  width: 100vw;
  z-index: -1;
}
.p-case__body {
  margin-top: 60px;
}
@media screen and (max-width: 1000px) {
  .p-case__body {
    margin-top: 40px;
  }
}
.p-case__toggle {
  counter-reset: num;
}
.p-case__toggle-wrap {
  border-bottom: 1px solid #000;
  cursor: pointer;
  padding: 65px 0;
}
@media screen and (max-width: 1000px) {
  .p-case__toggle-wrap {
    padding: 50px 0;
  }
}
.p-case__toggle-ttl {
  font-size: 2.6rem;
  font-weight: 500;
  padding: 0 80px 0 170px;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .p-case__toggle-ttl {
    font-size: 2rem;
    font-weight: 700;
    padding: 0 40px 0 10px;
  }
}
.p-case__toggle-ttl::before {
  content: "0" counter(num);
  counter-increment: num;
  display: block;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 11rem;
  font-weight: 700;
  left: 0;
  opacity: 0.6;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}
@media screen and (max-width: 1000px) {
  .p-case__toggle-ttl::before {
    font-size: 10rem;
    opacity: 0.1;
  }
}
.p-case__toggle-ttl::after {
  background: url(../img/icon_plus.svg) no-repeat top center/contain;
  content: "";
  display: block;
  height: 64px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  transition: 0.5s;
  transition-property: transform;
  width: 64px;
}
@media screen and (max-width: 1000px) {
  .p-case__toggle-ttl::after {
    height: 35px;
    right: 5px;
    width: 35px;
  }
}
.p-case__toggle-ttl.is-active::after {
  transform: translate(0, -50%) rotate(180deg);
}
.p-case__toggle-txt {
  cursor: default;
  display: none;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.875;
  margin-top: 70px;
}
@media screen and (max-width: 1000px) {
  .p-case__toggle-txt {
    font-size: 1.5rem;
    line-height: 1.75;
    margin-top: 40px;
  }
}
.p-case__toggle-txt.is-active {
  display: block;
}

/* -------------------------------------------*/
.p-company {
  margin-top: 130px;
}
@media screen and (max-width: 1000px) {
  .p-company {
    margin-top: 90px;
  }
}
.p-company__body {
  margin-top: 70px;
}
@media screen and (max-width: 1000px) {
  .p-company__body {
    margin-top: 40px;
  }
}

/* -------------------------------------------*/
.p-contact {
  margin-top: 130px !important;
  padding: 130px 0 150px;
}
@media screen and (max-width: 1000px) {
  .p-contact {
    margin-top: 90px !important;
    padding: 90px 0 120px;
  }
}
.p-contact::before {
  background-color: #f0f0f0;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  margin: 0 calc(50% - 50vw);
  position: absolute;
  top: 0;
  width: 100vw;
  z-index: -1;
}
.p-contact__body {
  margin-top: 70px;
}
@media screen and (max-width: 1000px) {
  .p-contact__body {
    margin-top: 50px;
  }
}
.p-contact__table-item:not(:first-child) {
  margin-top: 30px;
}
@media screen and (max-width: 1000px) {
  .p-contact__table-item:not(:first-child) {
    margin-top: 22px;
  }
}
@media not all and (max-width: 667px) {
  .p-contact__table-item {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
  }
  .p-contact__table-item--other {
    align-items: flex-start;
  }
  .p-contact__table-item--other .p-contact__table-ttl {
    padding-top: 5px;
  }
}
.p-contact__table-item--require .p-contact__table-ttl label {
  position: relative;
}
.p-contact__table-item--require .p-contact__table-ttl label::after {
  color: #e60000;
  content: "*";
  position: absolute;
  right: -18px;
  top: 0;
  z-index: 1;
}
.p-contact__table-ttl {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 1000px) {
  .p-contact__table-ttl {
    font-size: 1.8rem;
  }
}
@media not all and (max-width: 667px) {
  .p-contact__table-ttl {
    width: 260px;
  }
}
@media not all and (max-width: 667px) {
  .p-contact__table-input {
    flex: 1;
  }
}
@media screen and (max-width: 667px) {
  .p-contact__table-input {
    margin-top: 10px;
  }
}
.p-contact__privacy {
  background-color: #fff;
  margin: 30px 0 0 auto;
  padding: 20px 25px 25px;
  width: calc(100% - 260px);
}
@media screen and (max-width: 667px) {
  .p-contact__privacy {
    padding: 20px 20px 25px;
    width: 100%;
  }
}
.p-contact__privacy-title {
  font-size: 1.4rem;
  font-weight: 700;
}
.p-contact__privacy-inner {
  border: 1px solid #292929;
  height: 150px;
  margin-top: 1.4rem;
  overflow-y: auto;
  padding: 10px 15px;
}
@media screen and (max-width: 667px) {
  .p-contact__privacy-inner {
    height: 180px;
  }
}
.p-contact__privacy-text {
  font-size: 1.2rem;
}
.p-contact__privacy-text strong {
  border-bottom: 1px solid #000;
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5em;
  margin-top: 1em;
  padding-bottom: 0.5em;
}
.p-contact__privacy-text ol {
  counter-reset: num;
  margin-top: 0.2em;
}
.p-contact__privacy-text ol li {
  padding-left: 1em;
  position: relative;
}
.p-contact__privacy-text ol li:not(:first-child) {
  margin-top: 0.1em;
}
.p-contact__privacy-text ol li::before {
  content: counter(num) "．";
  counter-increment: num;
  left: 0;
  position: absolute;
  top: 0;
}
.p-contact__privacy-text ol li strong {
  border-bottom: 1px solid #000;
  display: block;
  font-size: 1.5rem;
  line-height: 1;
  margin-top: 0.8em;
}
.p-contact__privacy-text ol li ol {
  counter-reset: num;
}
.p-contact__privacy-text ol li ol li {
  padding-left: 1em;
  position: relative;
}
.p-contact__privacy-text ol li ol li::before {
  content: counter(num) "．";
  counter-increment: num;
  left: 0;
  position: absolute;
  top: 0;
}
.p-contact__privacy-text ol li ol li > ol {
  margin-bottom: 0.2em;
}
.p-contact__btn {
  margin-top: 80px;
  text-align: right;
}
@media screen and (max-width: 1000px) {
  .p-contact__btn {
    margin-top: 50px;
  }
}
.p-contact__btn-link {
  cursor: pointer;
  display: inline-block;
  padding-right: 75px;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .p-contact__btn-link {
    padding-right: 60px;
  }
}
.p-contact__btn-link::before {
  background: #fff url(../img/icon_arrow.svg) no-repeat left 19px center/18px 21px;
  border-radius: 50%;
  box-shadow: 0 4px 7px rgba(0, 0, 0, 0.16);
  content: "";
  height: 50px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  width: 50px;
}
@media screen and (max-width: 1000px) {
  .p-contact__btn-link::before {
    background-position: left 16px center;
    background-size: 15px 18px;
    height: 43px;
    width: 43px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-contact__btn-link {
    transition: 0.5s;
    transition-property: opacity;
  }
  .p-contact__btn-link::before {
    transition: 0.5s;
    transition-property: color;
  }
  .p-contact__btn-link:hover {
    opacity: 0.8;
  }
}
.p-contact__btn-link input {
  border-bottom: 1px solid #000;
  color: #000;
  cursor: pointer;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1000px) {
  .p-contact__btn-link input {
    font-size: 1.9rem;
  }
}
.p-contact .wpcf7-spinner {
  left: 0;
  position: absolute;
  top: 0;
}

/* -------------------------------------------*/
.p-mv {
  height: 100vh;
  margin: 0 auto;
  min-height: 650px;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .p-mv {
    max-height: 500px;
  }
}
@media screen and (max-width: 667px) {
  .p-mv {
    height: calc(var(--vh, 1vh) * 100);
    max-height: inherit;
  }
}
.p-mv::before {
  content: "";
  display: block;
  position: absolute;
}
.p-mv__heading {
  left: 7%;
  position: absolute;
  top: 54%;
  transform: translate(0, -50%);
}
@media screen and (max-width: 667px) {
  .p-mv__heading {
    left: 20px;
    top: 50%;
  }
}
.p-mv__ttl {
  font-size: 3.8rem;
  font-weight: 900;
}
.p-mv__ttl strong {
  display: block;
  margin-bottom: 10px;
}
.p-mv__ttl span {
  font-size: 6.4rem;
}
@media screen and (max-width: 1000px) {
  .p-mv__ttl {
    font-size: 2.3rem;
    line-height: 1.7;
  }
  .p-mv__ttl strong {
    line-height: 1.5;
    margin-bottom: 15px;
  }
  .p-mv__ttl span {
    font-size: 4.6rem;
  }
}
.p-mv__txt {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2;
  margin-top: 45px;
}
@media screen and (max-width: 1000px) {
  .p-mv__txt {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-top: 35px;
  }
}

/* -------------------------------------------*/
.u-db {
  display: block;
}

.u-dn {
  display: none;
}

@media screen and (max-width: 1000px) {
  .u-pc {
    display: none;
  }
}

@media not all and (max-width: 1000px) {
  .u-st {
    display: none !important;
  }
}

@media not all and (max-width: 667px) {
  .u-sp {
    display: none !important;
  }
}

@media screen and (max-width: 667px) {
  .u-pt {
    display: none !important;
  }
}

.u-mask--c-black {
  filter: brightness(0);
}

.u-mask--c-white {
  filter: brightness(0) invert(1);
}

.u-con--md {
  margin: 0 auto;
  max-width: var(--content_width);
}

.u-con--lg {
  margin: 0 auto;
  max-width: 1300px;
}

.u-c-white {
  color: #fff;
}
.u-c-white::before {
  background-color: #fff;
}

.u-z-1 {
  z-index: -1;
}

.u-z1 {
  z-index: 1;
}

.u-z2 {
  z-index: 2;
}

.u-z3 {
  z-index: 3;
}

.u-z10 {
  z-index: 10;
}

.u-z50 {
  z-index: 50;
}

.u-z100 {
  z-index: 100;
}

.u-z999 {
  z-index: 999;
}

/* -------------------------------------------*/
/*# sourceMappingURL=sourcemaps/style.css.map */