@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400&family=Noto+Sans+JP:wght@300;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@700&display=swap");

@-webkit-keyframes rotate-360 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotate-360 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

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 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

main,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
  list-style-type: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

svg {
  width: 100%;
  height: auto;
  display: block;
}

body {
  font-family: "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  background-color: #fff;
  color: #343434;
  font-weight: 300;
}

a {
  color: #343434;
  text-decoration: none;
}

@media screen and (min-width: 850px) {
  .is-pc {
    display: block;
  }
}

@media screen and (max-width: 849px) {
  .is-pc {
    display: none;
  }
}

@media screen and (min-width: 850px) {
  .is-sp {
    display: none;
  }
}

@media screen and (max-width: 849px) {
  .is-sp {
    display: block;
  }
}

@media screen and (min-width: 850px) {
  .is-pc-inline {
    display: inline;
  }
}

@media screen and (max-width: 849px) {
  .is-pc-inline {
    display: none;
  }
}

@media screen and (min-width: 850px) {
  .is-sp-inline {
    display: none;
  }
}

@media screen and (max-width: 849px) {
  .is-sp-inline {
    display: inline;
  }
}

@media screen and (min-width: 850px) {
  .is-pc-inline-block {
    display: inline-block;
  }
}

@media screen and (max-width: 849px) {
  .is-pc-inline-block {
    display: none;
  }
}

@media screen and (min-width: 850px) {
  .is-sp-inline-block {
    display: none;
  }
}

@media screen and (max-width: 849px) {
  .is-sp-inline-block {
    display: inline-block;
  }
}

.l-wrapper {
  position: relative;
  text-align: center;
  overflow: hidden;
}

.c-hamburger {
  -webkit-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
  opacity: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: fixed;
  right: 0;
  border: 0;
  border-radius: 0;
  padding: 0;
  margin: 0;
  z-index: 10;
  cursor: pointer;
  background: #fff;
}

.is-load .c-hamburger {
  -webkit-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
  opacity: 1;
  -webkit-transition: opacity 1s ease 0.5s, -webkit-transform 1s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0.5s;
  transition: opacity 1s ease 0.5s, -webkit-transform 1s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0.5s;
  transition: opacity 1s ease 0.5s, transform 1s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0.5s;
  transition: opacity 1s ease 0.5s, transform 1s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0.5s, -webkit-transform 1s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0.5s;
}

@media screen and (min-width: 850px) {
  .c-hamburger {
    top: 0;
  }
}

@media screen and (max-width: 849px) {
  .c-hamburger {
    bottom: 0;
  }
}

.c-hamburger::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #777;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: right top;
  transform-origin: right top;
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0s;
  transition: -webkit-transform 0.2s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0s;
  transition: transform 0.2s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0s;
  transition: transform 0.2s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0s, -webkit-transform 0.2s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0s;
}

@media screen and (min-width: 850px) {
  .c-hamburger:hover::before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: left top;
    transform-origin: left top;
  }
}

.c-hamburger__main {
  position: relative;
  width: 100px;
  height: 100px;
}

@media screen and (max-width: 849px) {
  .c-hamburger__main {
    width: 80px;
    height: 80px;
  }
}

.c-hamburger__main div {
  position: absolute;
  width: 50px;
  height: 4px;
  left: 25px;
  background-color: #343434;
  -webkit-transition: top 0.16s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0.13s, opacity 0s ease 0.13s, color 0.5s ease 0s, -webkit-transform 0.13s ease-in 0s;
  transition: top 0.16s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0.13s, opacity 0s ease 0.13s, color 0.5s ease 0s, -webkit-transform 0.13s ease-in 0s;
  transition: top 0.16s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0.13s, transform 0.13s ease-in 0s, opacity 0s ease 0.13s, color 0.5s ease 0s;
  transition: top 0.16s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0.13s, transform 0.13s ease-in 0s, opacity 0s ease 0.13s, color 0.5s ease 0s, -webkit-transform 0.13s ease-in 0s;
}

@media screen and (max-width: 849px) {
  .c-hamburger__main div {
    width: 40px;
    left: 20px;
  }
}

.is-open-nav .c-hamburger__main div {
  -webkit-transition: top 0.16s ease-in 0s, opacity 0s ease 0.16s, color 0.5s ease 0s, -webkit-transform 0.2s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0.16s;
  transition: top 0.16s ease-in 0s, opacity 0s ease 0.16s, color 0.5s ease 0s, -webkit-transform 0.2s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0.16s;
  transition: top 0.16s ease-in 0s, transform 0.2s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0.16s, opacity 0s ease 0.16s, color 0.5s ease 0s;
  transition: top 0.16s ease-in 0s, transform 0.2s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0.16s, opacity 0s ease 0.16s, color 0.5s ease 0s, -webkit-transform 0.2s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0.16s;
}

.c-hamburger__main div:nth-child(1) {
  top: 31px;
}

@media screen and (max-width: 849px) {
  .c-hamburger__main div:nth-child(1) {
    top: 22px;
  }
}

.is-open-nav .c-hamburger__main div:nth-child(1) {
  top: 48px;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

@media screen and (max-width: 849px) {
  .is-open-nav .c-hamburger__main div:nth-child(1) {
    top: 38px;
  }
}

.c-hamburger__main div:nth-child(2) {
  top: 48px;
  opacity: 1;
}

@media screen and (max-width: 849px) {
  .c-hamburger__main div:nth-child(2) {
    top: 38px;
  }
}

.is-open-nav .c-hamburger__main div:nth-child(2) {
  opacity: 0;
}

.c-hamburger__main div:nth-child(3) {
  top: 65px;
}

@media screen and (max-width: 849px) {
  .c-hamburger__main div:nth-child(3) {
    top: 54px;
  }
}

.is-open-nav .c-hamburger__main div:nth-child(3) {
  top: 48px;
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
}

@media screen and (max-width: 849px) {
  .is-open-nav .c-hamburger__main div:nth-child(3) {
    top: 38px;
  }
}

.c-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  z-index: 100;
  background-color: #fff;
}

@media screen and (max-width: 849px) {
  .c-header {
    height: 50px;
  }
}

.c-header__logo {
  position: absolute;
  top: 30px;
  left: 27px;
  width: 167px;
}

@media screen and (max-width: 849px) {
  .c-header__logo {
    top: 16px;
    left: 15px;
    width: 100px;
  }
}

.c-header__logo-text {
  font-size: 0;
  line-height: 1;
  letter-spacing: normal;
}

@media screen and (min-width: 850px) {
  .c-nav {
    position: fixed;
    z-index: 200;
    top: 0;
    right: 0;
  }
}

@media screen and (max-width: 849px) {
  .c-nav {
    position: fixed;
    top: 0;
    left: 0;
    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;
    opacity: 0;
    text-align: center;
    pointer-events: none;
    z-index: 200;
  }

  .is-load .c-nav {
    -webkit-transition: opacity 0.3s ease 0s;
    transition: opacity 0.3s ease 0s;
  }

  .is-open-nav .c-nav {
    opacity: 1;
    pointer-events: auto;
  }
}

.c-nav__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: right top;
  transform-origin: right top;
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0s;
  transition: -webkit-transform 0.2s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0s;
  transition: transform 0.2s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0s;
  transition: transform 0.2s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0s, -webkit-transform 0.2s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0s;
}

.is-open-nav .c-nav__bg {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: left top;
  transform-origin: left top;
}

.c-nav__bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #343434;
  opacity: 0.1;
}

.c-nav__main {
  position: relative;
}

@media screen and (min-width: 850px) {
  .c-nav__list {
    height: 90px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-right: 20px;
  }
}

@media screen and (max-width: 849px) {
  .c-nav__item+.c-nav__item {
    margin-top: 20px;
  }
}

.c-nav__link {
  position: relative;
  display: inline-block;
  font-weight: 600;
  font-size: 16px;
  line-height: 23px;
  letter-spacing: 0.03em;
  cursor: pointer;
}

@media screen and (min-width: 850px) {
  .c-nav__link {
    -webkit-transition: color 0.5s ease 0s;
    transition: color 0.5s ease 0s;
  }

  .c-nav__link:hover {
    color: #399BD2;
  }
}

.c-nav__link-inner {
  display: block;
  position: relative;
  padding: 10px 14px;
}

.c-section {
  position: relative;
  padding: 103px 0 100px;
}

@media screen and (max-width: 849px) {
  .c-section {
    padding: 71px 0 70px;
  }
}

.c-section--bg {
  background-color: #F4F8FA;
}

.c-section__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.c-section__en {
  -webkit-transform: translate(0, 0px);
  transform: translate(0, 0px);
  opacity: 0;
  font-family: "Montserrat", "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #F4F8FA;
  font-size: 80px;
  line-height: 0.7;
  letter-spacing: 0.2em;
  white-space: nowrap;
}

.is-scroll .c-section__en {
  -webkit-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
  opacity: 1;
  -webkit-transition: opacity 1s ease 0s, -webkit-transform 1s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0s;
  transition: opacity 1s ease 0s, -webkit-transform 1s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0s;
  transition: opacity 1s ease 0s, transform 1s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0s;
  transition: opacity 1s ease 0s, transform 1s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0s, -webkit-transform 1s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0s;
}

@media screen and (max-width: 849px) {
  .c-section__en {
    font-size: 36px;
    line-height: 1.6;
    letter-spacing: 0.2em;
  }
}

.c-section--bg .c-section__en {
  color: #fff;
}

.c-section__main {
  position: relative;
}

.c-section__head,
.c-section__body {
  position: relative;
}

.c-section__head {
  -webkit-transform: translate(0, 20px);
  transform: translate(0, 20px);
  opacity: 0;
}

.is-scroll .c-section__head {
  -webkit-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
  opacity: 1;
  -webkit-transition: opacity 1s ease 0s, -webkit-transform 1s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0s;
  transition: opacity 1s ease 0s, -webkit-transform 1s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0s;
  transition: opacity 1s ease 0s, transform 1s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0s;
  transition: opacity 1s ease 0s, transform 1s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0s, -webkit-transform 1s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0s;
}

.c-section__title {
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: normal;
  font-weight: 600;
  color: #399BD2;
  font-family: "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", 'Inter', 'Noto Sans JP', "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

@media screen and (max-width: 849px) {
  .c-section__title {
    font-size: 16px;
    line-height: 32px;
    letter-spacing: normal;
  }
}

.c-section__cap {
  font-size: 28px;
  line-height: 1.5;
  letter-spacing: normal;
  font-weight: 600;
}

@media screen and (max-width: 849px) {
  .c-section__cap {
    font-size: 20px;
    line-height: 29px;
    letter-spacing: normal;
  }
}

@media screen and (max-width: 849px) and (max-width: 350px) {
  .c-section__cap {
    font-size: 18px;
    line-height: 29px;
    letter-spacing: 0.08em;
  }
}

.c-section__catch {
  position: relative;
  display: inline-block;
  font-size: 28px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  -webkit-font-feature-settings: 'palt';
  font-feature-settings: 'palt';
  font-weight: 800;
}

@media screen and (max-width: 849px) {
  .c-section__catch {
    font-size: 20px;
    line-height: 29px;
    letter-spacing: 0.08em;
  }
}

@media screen and (max-width: 849px) and (max-width: 350px) {
  .c-section__catch {
    font-size: 18px;
    line-height: 29px;
    letter-spacing: 0.08em;
  }
}

.c-section__catch::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: -2px;
  right: -2px;
  height: 4px;
  background-color: #399BD2;
}

@media screen and (max-width: 849px) {
  .c-section__catch::after {
    bottom: -6px;
  }
}

.c-section__lead {
  margin-top: 4px;
  font-size: 28px;
  line-height: 1.5;
  letter-spacing: normal;
  font-weight: 600;
}

@media screen and (max-width: 849px) {
  .c-section__lead {
    font-size: 20px;
    line-height: 28px;
    letter-spacing: normal;
  }
}

.c-section__body {
  -webkit-transform: translate(0, 20px);
  transform: translate(0, 20px);
  opacity: 0;
}

.is-scroll .c-section__body {
  -webkit-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
  opacity: 1;
  -webkit-transition: opacity 1s ease 0.25s, -webkit-transform 1s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0.25s;
  transition: opacity 1s ease 0.25s, -webkit-transform 1s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0.25s;
  transition: opacity 1s ease 0.25s, transform 1s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0.25s;
  transition: opacity 1s ease 0.25s, transform 1s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0.25s, -webkit-transform 1s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0.25s;
}

.c-section__body--no-delay {
  -webkit-transform: translate(0, 20px);
  transform: translate(0, 20px);
  opacity: 0;
}

.is-scroll .c-section__body--no-delay {
  -webkit-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
  opacity: 1;
  -webkit-transition: opacity 1s ease 0s, -webkit-transform 1s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0s;
  transition: opacity 1s ease 0s, -webkit-transform 1s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0s;
  transition: opacity 1s ease 0s, transform 1s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0s;
  transition: opacity 1s ease 0s, transform 1s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0s, -webkit-transform 1s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0s;
}

.c-footer {
  padding: 43px 0;
}

.c-footer__link-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.c-footer__link-item+.c-footer__link-item {
  margin-left: 40px;
}

.c-footer__link-link {
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  letter-spacing: normal;
  font-weight: 600;
}

@media screen and (min-width: 850px) {
  .c-footer__link-link {
    -webkit-transition: color 0.5s ease 0s;
    transition: color 0.5s ease 0s;
  }

  .c-footer__link-link:hover {
    color: #399BD2;
  }
}

.c-footer__copy {
  margin-top: 16px;
  font-family: "Montserrat", "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 10px;
  line-height: 1;
  letter-spacing: normal;
  display: block;
  font-weight: 400;
}

.c-btn {
  position: relative;
  display: inline-block;
  width: 385px;
  height: 72px;
}

.c-btn:hover {
  text-decoration: none;
}

@media screen and (max-width: 849px) {
  .c-btn {
    max-width: 330px;
    width: 90%;
    height: 67px;
  }
}

.c-btn--min {
  width: 264px;
  height: 58px;
}

.c-btn--ceo {
  width: 348px;
}

.c-btn__shadow {
  background-color: #399BD2;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 7px;
  left: 7px;
  border-radius: 6px;
}

@media screen and (min-width: 850px) {
  .c-btn__shadow {
    -webkit-transition: background-color 0.3s ease 0s;
    transition: background-color 0.3s ease 0s;
  }

  .c-btn:hover .c-btn__shadow {
    background-color: #C4C4C4;
  }
}

.c-btn--ceo .c-btn__shadow {
  background-color: #25A596;
}

.c-btn__inner {
  position: relative;
  height: 100%;
  border: 1px solid #343434;
  border-radius: 6px;
  background-color: #fff;
  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;
}

@media screen and (min-width: 850px) {
  .c-btn__inner {
    color: #343434;
    -webkit-transition: color 0.3s ease 0s, background-color 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
    transition: color 0.3s ease 0s, background-color 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
    transition: color 0.3s ease 0s, background-color 0.3s ease 0s, transform 0.3s ease 0s;
    transition: color 0.3s ease 0s, background-color 0.3s ease 0s, transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  }

  .c-btn:hover .c-btn__inner {
    color: #fff;
    background-color: #399BD2;
  }

  .c-btn--ceo:hover .c-btn__inner {
    background-color: #25A596;
  }
}

.c-btn__icon {
  position: relative;
  width: 47px;
}

@media screen and (max-width: 849px) {
  .c-btn__icon {
    width: 40px;
  }
}

.c-btn__icon-on {
  opacity: 1;
}

@media screen and (min-width: 850px) {
  .c-btn__icon-on {
    -webkit-transition: opacity 0.3s ease 0s;
    transition: opacity 0.3s ease 0s;
  }

  .c-btn:hover .c-btn__icon-on {
    opacity: 0;
  }
}

.c-btn__icon-off {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
}

@media screen and (min-width: 850px) {
  .c-btn__icon-off {
    -webkit-transition: opacity 0.3s ease 0s;
    transition: opacity 0.3s ease 0s;
  }

  .c-btn:hover .c-btn__icon-off {
    opacity: 1;
  }
}

.c-btn__text {
  padding: 10px 10px 10px;
}

@media screen and (max-width: 849px) and (max-width: 350px) {
  .c-btn__text {
    padding: 5px;
  }
}

.c-btn--min .c-btn__text {
  padding-bottom: 7px;
}

@media screen and (max-width: 849px) {
  .c-btn--min .c-btn__text {
    padding-bottom: 8px;
  }
}

.c-btn__main {
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0em;
  font-weight: 600;
  font-family: "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", 'Inter', 'Noto Sans JP', "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

@media screen and (max-width: 849px) {
  .c-btn__main {
    font-size: 16px;
    line-height: 23px;
    letter-spacing: 0em;
  }
}

@media screen and (max-width: 849px) and (max-width: 350px) {
  .c-btn__main {
    font-size: 14px;
    line-height: 23px;
    letter-spacing: 0em;
  }
}

@media screen and (max-width: 849px) {
  .c-btn--min .c-btn__main {
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0em;
  }
}

.c-btn__sub {
  text-align: left;
  font-size: 10px;
  line-height: 10px;
  letter-spacing: normal;
}

@media screen and (min-width: 850px) {
  .c-btn__sub {
    font-size: 8px;
    line-height: 12px;
    letter-spacing: normal;
  }
}

.c-btn__arrow {
  width: 26px;
}

.c-btn--min .c-btn__arrow {
  width: 24px;
}

@media screen and (min-width: 850px) {
  .c-btn__arrow .c-in-path {
    -webkit-transition: fill 0.3s ease 0s;
    transition: fill 0.3s ease 0s;
  }

  .c-btn:hover .c-btn__arrow .c-in-path {
    fill: #fff;
  }
}

.u-no-letter {
  letter-spacing: 0;
}

.u-inline-block {
  display: inline-block;
}

.u-300 {
  font-weight: 300;
}

.u-600 {
  font-weight: 600;
}

.u-800 {
  font-weight: 800;
}

.u-text-small {
  font-size: 0.8em;
}

.u-pointer {
  cursor: pointer;
}

.u-bg-color {
  background-color: #F4F8FA;
}

.u-blue {
  color: #399BD2;
}

.u-highlight {
  color: red;
}

.p-top {
  padding: 150px 0 70px;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 849px) {
  .p-top {
    padding: 70px 0 70px;
  }
}

.p-top__main {
  position: relative;
}

.p-top__cap,
.p-top__catch {
  display: block;
}

.p-top__cap {
  -webkit-transform: translate(0, 20px);
  transform: translate(0, 20px);
  opacity: 0;
  width: 428px;
  margin: 0 auto;
}

.is-load .p-top__cap {
  -webkit-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
  opacity: 1;
  -webkit-transition: opacity 1s ease 0s, -webkit-transform 1s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0s;
  transition: opacity 1s ease 0s, -webkit-transform 1s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0s;
  transition: opacity 1s ease 0s, transform 1s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0s;
  transition: opacity 1s ease 0s, transform 1s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0s, -webkit-transform 1s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0s;
}

@media screen and (max-width: 849px) {
  .p-top__cap {
    max-width: 342px;
    width: 92%;
  }
}

.p-top__catch {
  -webkit-transform: translate(0, 20px);
  transform: translate(0, 20px);
  opacity: 0;
  width: 95%;
  max-width: 914px;
  margin: 10px auto 0;
}

.is-load .p-top__catch {
  -webkit-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
  opacity: 1;
  -webkit-transition: opacity 1s ease 0s, -webkit-transform 1s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0s;
  transition: opacity 1s ease 0s, -webkit-transform 1s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0s;
  transition: opacity 1s ease 0s, transform 1s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0s;
  transition: opacity 1s ease 0s, transform 1s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0s, -webkit-transform 1s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0s;
}

@media screen and (max-width: 849px) {
  .p-top__catch {
    width: 84%;
    margin: 23px auto 0;
    max-width: 370px;
  }
}

.p-top__img {
  -webkit-transform: translate(0, 20px);
  transform: translate(0, 20px);
  opacity: 0;
  width: 95%;
  max-width: 1140px;
  margin: 0 auto;
}

.is-load .p-top__img {
  -webkit-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
  opacity: 1;
  -webkit-transition: opacity 1s ease 0.2s, -webkit-transform 1s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0.2s;
  transition: opacity 1s ease 0.2s, -webkit-transform 1s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0.2s;
  transition: opacity 1s ease 0.2s, transform 1s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0.2s;
  transition: opacity 1s ease 0.2s, transform 1s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0.2s, -webkit-transform 1s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0.2s;
}

@media screen and (max-width: 849px) {
  .p-top__img {
    width: 89.3%;
    margin: 17px auto 0;
    max-width: 400px;
  }
}

.p-top__btn {
  -webkit-transform: translate(0, 20px);
  transform: translate(0, 20px);
  opacity: 0;
  margin: 10px auto 0;
}

.is-load .p-top__btn {
  -webkit-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
  opacity: 1;
  -webkit-transition: opacity 1s ease 0.4s, -webkit-transform 1s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0.4s;
  transition: opacity 1s ease 0.4s, -webkit-transform 1s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0.4s;
  transition: opacity 1s ease 0.4s, transform 1s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0.4s;
  transition: opacity 1s ease 0.4s, transform 1s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0.4s, -webkit-transform 1s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0.4s;
}

@media screen and (max-width: 849px) {
  .p-top__btn {
    margin: 20px auto 0;
  }
}

.p-service__main {
  padding: 36px 0 0;
}

@media screen and (max-width: 849px) {
  .p-service__main {
    padding: 35px 0 0;
  }
}

.p-service__img,
.p-service__text {
  width: 800px;
  margin: 0 auto;
}

@media screen and (max-width: 849px) {

  .p-service__img,
  .p-service__text {
    width: 100%;
  }
}

@media screen and (max-width: 849px) {
  .p-service__img {
    width: 88%;
    margin: 0 auto;
    max-width: 400px;
  }
}

@media screen and (max-width: 849px) {
  .p-service__detail {
    width: 89.4%;
    max-width: 500px;
    margin: 10px auto 0;
  }
}

.p-service__slide+.p-service__slide {
  margin-top: 10px;
}

.p-service__text {
  margin-top: 40px;
}

@media screen and (max-width: 849px) {
  .p-service__text {
    width: 89.4%;
    max-width: 500px;
    margin: 30px auto 0;
  }
}

.p-service__title {
  font-size: 20px;
  line-height: 1.45;
  letter-spacing: 0em;
  font-weight: 600;
}

@media screen and (max-width: 849px) {
  .p-service__title {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0em;
  }
}

.p-service__description {
  margin-top: 20px;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0em;
  text-align: left;
}

.p-service__btn {
  margin-top: 30px;
}

.p-strength__main {
  padding: 49px 0 0;
}

@media screen and (max-width: 849px) {
  .p-strength__main {
    padding: 30px 0 0;
  }
}

.p-strength__block {
  width: 95%;
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid #343434;
  background-color: #fff;
  border-radius: 12px;
}

@media screen and (max-width: 849px) {
  .p-strength__block {
    width: 89.4%;
    max-width: 500px;
    margin: 0px auto;
  }
}

.p-strength__block+.p-strength__block {
  margin-top: 40px;
}

.p-strength__block:nth-child(2) {
  background-color: #EAF2F6;
}

.p-strength__same {
  padding: 35px 49px 39px;
}

@media screen and (max-width: 849px) {
  .p-strength__same {
    padding: 20px 20px 25px;
  }
}

.p-strength__same-title {
  display: inline-block;
  font-size: 26px;
  line-height: 1;
  letter-spacing: normal;
  font-weight: 600;
}

@media screen and (max-width: 849px) {
  .p-strength__same-title {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: normal;
  }
}

.p-strength__same-block {
  margin-top: 16px;
}

.p-strength__same-head {
  padding: 9px 0 10px;
  background-color: #f0f0f0;
  border: 1px solid #C4C4C4;
  border-radius: 8px 8px 0 0;
}

.p-strength__same-cap {
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.07em;
  font-weight: 600;
}

.p-strength__same-body {
  padding: 20px 39px 19px;
  border-left: 1px solid #C4C4C4;
  border-right: 1px solid #C4C4C4;
  border-bottom: 1px solid #C4C4C4;
  border-radius: 0 0 8px 8px;
}

@media screen and (max-width: 849px) {
  .p-strength__same-body {
    padding: 20px 20px 25px;
  }
}

@media screen and (min-width: 850px) {
  .p-strength__same-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.p-strength__same-item {
  width: 30.5%;
  text-align: left;
}

@media screen and (max-width: 849px) {
  .p-strength__same-item {
    width: 100%;
    margin: 0 auto;
    max-width: 300px;
  }
}

@media screen and (min-width: 850px) {
  .p-strength__same-item+.p-strength__same-item {
    margin-left: 4.2%;
  }
}

@media screen and (max-width: 849px) {
  .p-strength__same-item+.p-strength__same-item {
    margin-top: 30px;
  }
}

.p-strength__same-item .p-in-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid #C4C4C4;
}

.p-strength__same-item .p-in-icon {
  width: 32px;
}

.p-strength__same-item .p-in-title {
  font-size: 16px;
  line-height: 1;
  letter-spacing: normal;
  font-weight: 600;
  margin-left: 10px;
}

.p-strength__same-item .p-in-body {
  padding-top: 10px;
}

.p-strength__same-item .p-in-item {
  font-size: 14px;
  line-height: 2;
  letter-spacing: normal;
}

.p-strength__diff {
  padding: 45px 49px 39px;
}

@media screen and (max-width: 849px) {
  .p-strength__diff {
    padding: 20px 20px 25px;
  }
}

.p-strength__diff-title {
  position: relative;
  display: inline-block;
  font-size: 26px;
  line-height: 1;
  letter-spacing: normal;
  font-weight: 600;
}

@media screen and (max-width: 849px) {
  .p-strength__diff-title {
    font-size: 20px;
    line-height: 30px;
    letter-spacing: normal;
  }
}

.p-strength__diff-title::before {
  content: "";
  position: absolute;
  bottom: -13px;
  width: 100%;
  height: 4px;
  background-color: #399BD2;
}

@media screen and (max-width: 849px) {
  .p-strength__diff-title::before {
    bottom: -6px;
  }
}

.p-strength__diff-block {
  padding: 40px 40px 27px;
  margin: 31px auto 0;
  background-color: #fff;
  border-radius: 8px;
}

@media screen and (max-width: 849px) {
  .p-strength__diff-block {
    padding: 20px 20px 25px;
  }
}

.p-strength__diff-block+.p-strength__diff-block {
  margin-top: 40px;
}

.p-strength__diff-img {
  width: 480px;
  margin: 0 auto;
}

@media screen and (max-width: 849px) {
  .p-strength__diff-img {
    width: auto;
    margin: 0 -10px 0;
  }
}

.p-strength__diff-cap {
  margin-top: 15px;
  font-size: 20px;
  line-height: 1;
  letter-spacing: normal;
  font-weight: 600;
}

@media screen and (max-width: 849px) {
  .p-strength__diff-cap {
    font-size: 16px;
    line-height: 1;
    letter-spacing: normal;
  }
}

.p-strength__diff-catch {
  margin-top: 16px;
  font-size: 28px;
  line-height: 1;
  letter-spacing: normal;
  font-weight: 800;
}

@media screen and (max-width: 849px) {
  .p-strength__diff-catch {
    margin-top: 10px;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: normal;
  }
}

.p-strength__diff-description {
  margin-top: 31px;
  position: relative;
  padding-left: 149px;
  padding-right: 20px;
  min-height: 110px;
}

@media screen and (max-width: 849px) {
  .p-strength__diff-description {
    padding: 0;
    margin-top: 10px;
  }
}

@media screen and (min-width: 850px) {
  .p-strength__diff-description--2 {
    padding-left: 165px;
    padding-right: 30px;
  }
}

.p-strength__diff-description .p-in-img {
  position: absolute;
  top: -13px;
  left: 20px;
  width: 110px;
}

.p-strength__diff-description .p-in-img--2 {
  left: 35px;
}

.p-strength__diff-description .p-in-text {
  text-align: left;
  font-size: 14px;
  line-height: 2;
  letter-spacing: normal;
}

.p-strength__btn {
  margin-top: 40px;
}

.p-priority__main {
  padding: 45px 0 0px;
}

@media screen and (max-width: 849px) {
  .p-priority__main {
    padding: 46px 0 0px;
  }
}

.p-priority__img,
.p-priority__text {
  width: 800px;
  margin: 0 auto;
}

@media screen and (max-width: 849px) {

  .p-priority__img,
  .p-priority__text {
    width: 100%;
  }
}

@media screen and (max-width: 849px) {
  .p-priority__img {
    width: 89.4%;
    max-width: 500px;
  }
}

.p-priority__text {
  margin-top: 40px;
}

@media screen and (max-width: 849px) {
  .p-priority__text {
    width: 89.4%;
    max-width: 500px;
    margin: 39px auto 0;
  }
}

.p-priority__title {
  font-size: 20px;
  line-height: 1.45;
  letter-spacing: 0em;
  font-weight: 600;
}

@media screen and (max-width: 849px) {
  .p-priority__title {
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0em;
  }
}

.p-priority__description {
  margin-top: 19px;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0em;
  text-align: left;
}

.p-priority__btn {
  margin-top: 40px;
}

.p-result__main {
  padding: 39px 0 0;
}

@media screen and (max-width: 849px) {
  .p-result__main {
    padding: 30px 0 0;
  }
}

.p-result__block {
  padding: 40px 54px 38px;
  width: 95%;
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid #343434;
  background-color: #fff;
  border-radius: 12px;
}

@media screen and (max-width: 849px) {
  .p-result__block {
    padding: 20px 20px 25px;
    width: 89.4%;
    max-width: 500px;
  }
}

.p-result__block+.p-result__block {
  margin-top: 40px;
}

.p-result__title {
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0em;
  font-weight: 600;
}

@media screen and (max-width: 849px) {
  .p-result__title {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: normal;
  }
}

.p-result__head {
  margin-top: 20px;
}

@media screen and (min-width: 850px) {
  .p-result__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (max-width: 849px) {
  .p-result__head {
    margin-top: 5px;
  }
}

.p-result__img {
  width: 220px;
}

@media screen and (min-width: 850px) {
  .p-result__img {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
  }
}

@media screen and (max-width: 849px) {
  .p-result__img {
    margin: 0 auto;
  }
}

.p-result__list {
  width: 100%;
  padding: 2px 0 0 30px;
  text-align: left;
  font-size: 12px;
  line-height: 22px;
  letter-spacing: normal;
  font-weight: bold;
}

@media screen and (max-width: 849px) {
  .p-result__list {
    padding: 0;
    max-width: 300px;
    margin: 15px auto 0;
  }
}

.p-result__item {
  position: relative;
  padding: 7px 0 6px 87px;
  border-bottom: 1px dashed #C4C4C4;
}

.p-result__item::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 15px;
  height: 15px;
  background: url(./assets/img/result/icon_bullet.png) no-repeat center center;
  background-size: contain;
}

.p-result__item--5 {
  padding-left: 60px;
}

.p-result__item--6 {
  padding-left: 111px;
}

.p-result__item .p-in-head {
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 7px;
  padding-left: 21px;
}

.p-result__item .p-in-small {
  margin-left: 2px;
  font-size: 0.8em;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 300;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

.p-result__body {
  margin: 30px -20px 0;
}

@media screen and (min-width: 850px) {
  .p-result__body {
    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;
  }
}

@media screen and (max-width: 849px) {
  .p-result__body {
    margin: 20px auto 0;
  }
}

.p-result__before,
.p-result__after {
  padding: 9px 9px 9px 9px;
  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;
  border-radius: 4px;
}

@media screen and (max-width: 849px) {

  .p-result__before,
  .p-result__after {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}

.p-result__before-zisshi,
.p-result__after-zisshi {
  border-radius: 4px;
  padding: 9px;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: normal;
  font-weight: 600;
}

@media screen and (max-width: 849px) and (max-width: 373px) {

  .p-result__before-zisshi,
  .p-result__after-zisshi {
    font-size: 12px;
    line-height: 18px;
    letter-spacing: normal;
  }
}

.p-result__before-cpi,
.p-result__after-cpi {
  border-radius: 4px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 9px 9px 10px;
  font-size: 12px;
  line-height: 21px;
  letter-spacing: normal;
  font-weight: 600;
}

@media screen and (max-width: 849px) and (max-width: 373px) {

  .p-result__before-cpi,
  .p-result__after-cpi {
    margin-left: 5px;
    margin-right: 5px;
    padding-left: 5px;
    padding-right: 5px;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: normal;
  }
}

.p-result__before-cpi .p-in-small,
.p-result__after-cpi .p-in-small {
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.07em;
  font-weight: 300;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  margin-left: 6px;
}

@media screen and (max-width: 849px) and (max-width: 373px) {

  .p-result__before-cpi .p-in-small,
  .p-result__after-cpi .p-in-small {
    margin-left: 0;
  }
}

.p-result__before-num,
.p-result__after-num {
  font-size: 18px;
  line-height: 21px;
  letter-spacing: normal;
  font-weight: 600;
}

@media screen and (max-width: 849px) and (max-width: 373px) {

  .p-result__before-num,
  .p-result__after-num {
    font-size: 14px;
    line-height: 18px;
    letter-spacing: normal;
  }
}

.p-result__before {
  background-color: #C4C4C4;
  border: 1px solid #7C7878;
}

.p-result__before-zisshi {
  background-color: #fff;
  border: 1px solid #fff;
  color: #7C7878;
}

.p-result__before-cpi {
  border: 1px solid #7C7878;
  background-color: #7C7878;
  color: #fff;
}

.p-result__after {
  background-color: #399BD2;
  border: 1px solid #343434;
}

.p-result__after-zisshi {
  background-color: #FFCE1F;
  border: 1px solid #343434;
}

.p-result__after-cpi {
  background-color: #fff;
  border: 1px solid #343434;
}

.p-result__after-num {
  color: #fff;
}

.p-result__arrow {
  width: 18px;
  margin-right: 20px;
  margin-left: 20px;
}

@media screen and (max-width: 849px) {
  .p-result__arrow {
    margin: 6px auto 10px;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}

.p-result__score {
  margin-top: 27px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.p-result__score-pre {
  position: relative;
  bottom: 9px;
  width: 90px;
}

.p-result__score-pre--2 {
  bottom: 12px;
}

.p-result__score-score {
  width: 213px;
  margin: 0px -2px 0px 0px;
}

.p-result__score-score--2 {
  width: 199px;
  margin: 0px -3px 0px -2px;
}

.p-result__score-icon {
  position: relative;
  bottom: 1px;
  width: 39px;
}

.p-result__score-icon--2 {
  bottom: 4px;
}

.p-result__btn {
  margin-top: 40px;
}

.p-clients {
  padding: 85px 0 101px;
}

@media screen and (max-width: 849px) {
  .p-clients {
    padding: 50px 0 50px;
  }
}

.p-clients__title {
  -webkit-transform: translate(0, 20px);
  transform: translate(0, 20px);
  opacity: 0;
  font-size: 20px;
  line-height: 1;
  letter-spacing: normal;
  font-weight: 600;
}

.is-scroll .p-clients__title {
  -webkit-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
  opacity: 1;
  -webkit-transition: opacity 1s ease 0s, -webkit-transform 1s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0s;
  transition: opacity 1s ease 0s, -webkit-transform 1s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0s;
  transition: opacity 1s ease 0s, transform 1s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0s;
  transition: opacity 1s ease 0s, transform 1s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0s, -webkit-transform 1s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0s;
}

@media screen and (max-width: 849px) {
  .p-clients__title {
    font-size: 18px;
    line-height: 1;
    letter-spacing: normal;
  }
}

.p-clients__list {
  -webkit-transform: translate(0, 20px);
  transform: translate(0, 20px);
  opacity: 0;
  margin-top: 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.is-scroll .p-clients__list {
  -webkit-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
  opacity: 1;
  -webkit-transition: opacity 1s ease 0.3s, -webkit-transform 1s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0.3s;
  transition: opacity 1s ease 0.3s, -webkit-transform 1s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0.3s;
  transition: opacity 1s ease 0.3s, transform 1s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0.3s;
  transition: opacity 1s ease 0.3s, transform 1s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0.3s, -webkit-transform 1s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0.3s;
}

@media screen and (max-width: 849px) {
  .p-clients__list {
    width: 90%;
    margin: 20px auto 0;
  }
}

.p-clients__item {
  width: 200px;
}

.p-clients__item+.p-clients__item {
  margin-left: 20px;
}

@media screen and (max-width: 849px) {
  .p-clients__item+.p-clients__item {
    margin-left: 0;
  }
}

.p-catch {
  padding: 7px 0 0;
}

@media screen and (max-width: 849px) {
  .p-catch {
    padding: 0;
  }
}

@media screen and (min-width: 850px) {
  .p-catch__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.p-catch__img {
  width: 300px;
  margin: 0px 11px;
}

@media screen and (max-width: 849px) {
  .p-catch__img {
    width: 70%;
    max-width: 400px;
    margin: 30px auto 0;
  }
}

.p-catch__text {
  padding-top: 40px;
}

@media screen and (max-width: 849px) {
  .p-catch__text {
    padding-top: 0;
  }
}

.p-catch__title {
  font-size: 0;
  line-height: 1;
  letter-spacing: normal;
  max-width: 444px;
}

@media screen and (max-width: 849px) {
  .p-catch__title {
    width: 80%;
    margin: 0 auto;
  }
}

.p-catch__detail {
  margin-top: 18px;
  text-align: left;
  font-size: 16px;
  line-height: 34px;
  letter-spacing: normal;
  font-weight: 600;
}

@media screen and (max-width: 849px) {
  .p-catch__detail {
    font-size: 15px;
    line-height: 30px;
    letter-spacing: normal;
    width: 89.4%;
    max-width: 500px;
    margin: 20px auto 0;
  }
}

.p-catch__btn {
  margin-top: 10px;
}

@media screen and (max-width: 849px) {
  .p-catch__btn {
    margin-top: 20px;
  }
}

.p-catch__btn-item+.p-catch__btn-item {
  margin-top: 30px;
}

.p-catch__btn-cap {
  font-size: 12px;
  line-height: 28px;
  letter-spacing: normal;
  font-weight: 600;
}

.p-catch__btn-link {
  margin-top: 3px;
}

.p-contact__main {
  padding: 90px 0 100px;
}

@media screen and (min-width: 850px) {
  .p-contact__main {
    padding: 150px 0 150px;
  }
}

.p-contact__title {
  -webkit-transform: translate(0, 10px);
  transform: translate(0, 10px);
  opacity: 0;
  position: relative;
  display: inline-block;
  font-size: 28px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  -webkit-font-feature-settings: 'palt';
  font-feature-settings: 'palt';
  font-weight: 800;
}

.is-load .p-contact__title {
  -webkit-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
  opacity: 1;
  -webkit-transition: opacity 1s ease 0s, -webkit-transform 1s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0s;
  transition: opacity 1s ease 0s, -webkit-transform 1s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0s;
  transition: opacity 1s ease 0s, transform 1s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0s;
  transition: opacity 1s ease 0s, transform 1s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0s, -webkit-transform 1s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0s;
}

@media screen and (max-width: 849px) {
  .p-contact__title {
    font-size: 20px;
    line-height: 29px;
    letter-spacing: 0.08em;
  }
}

@media screen and (max-width: 849px) and (max-width: 350px) {
  .p-contact__title {
    font-size: 18px;
    line-height: 29px;
    letter-spacing: 0.08em;
  }
}

.p-contact__title::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: -2px;
  right: -2px;
  height: 4px;
  background-color: #399BD2;
}

@media screen and (max-width: 849px) {
  .p-contact__title::after {
    bottom: -6px;
  }
}

.p-contact__contents {
  -webkit-transform: translate(0, 10px);
  transform: translate(0, 10px);
  opacity: 0;
}

.is-load .p-contact__contents {
  -webkit-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
  opacity: 1;
  -webkit-transition: opacity 1s ease 0.25s, -webkit-transform 1s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0.25s;
  transition: opacity 1s ease 0.25s, -webkit-transform 1s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0.25s;
  transition: opacity 1s ease 0.25s, transform 1s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0.25s;
  transition: opacity 1s ease 0.25s, transform 1s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0.25s, -webkit-transform 1s cubic-bezier(0.2, 0.68, 0.29, 0.96) 0.25s;
}

.p-contact__catch {
  margin-top: 35px;
  font-size: 14px;
  line-height: 1;
  letter-spacing: normal;
}

.p-contact__list {
  margin: 30px auto 0;
  width: 80%;
  max-width: 500px;
  text-align: left;
}

.p-contact__item {
  position: relative;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 850px) {
  .p-contact__item {
    padding-left: 150px;
  }
}

.p-contact__item+.p-contact__item {
  margin-top: 20px;
}

.p-contact__head {
  position: relative;
  white-space: nowrap;
}

@media screen and (min-width: 850px) {
  .p-contact__head {
    position: absolute;
    top: 0;
    left: -10px;
    width: 150px;
    height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .p-contact__head--check {
    top: -5px;
  }
}

@media screen and (max-width: 849px) {
  .p-contact__body {
    margin-top: 7px;
  }
}

.p-contact__input,
.p-contact__select,
.p-contact__textarea,
.p-contact__check-input,
.p-contact__textarea,
.p-contact__btn {
  display: block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
  outline: none;
  border: none;
  border-radius: 0;
  background-color: transparent;
  padding: 0;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #343434;
}

.p-contact__input {
  padding: 5px 10px;
  border: 1px solid #C4C4C4;
  background-color: #fff;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  -webkit-transition: background-color 0.3s ease 0s, border-color 0.3s ease 0s;
  transition: background-color 0.3s ease 0s, border-color 0.3s ease 0s;
}

@media screen and (max-width: 849px) {
  .p-contact__input {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
}

@media screen and (min-width: 850px) {
  .p-contact__input:hover {
    border-color: #343434;
  }

  .p-contact__input:focus {
    background-color: #fff;
  }
}

.p-contact__select-wrap {
  position: relative;
}

.p-contact__select-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  margin: auto 0;
  bottom: 5px;
  right: 10px;
  width: 10px;
  height: 10px;
  border-left: 1px solid #343434;
  border-bottom: 1px solid #343434;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  pointer-events: none;
}

.p-contact__select {
  cursor: pointer;
  padding: 5px 30px 5px 10px;
  border: 1px solid #C4C4C4;
  background-color: #fff;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  -webkit-transition: background-color 0.3s ease 0s, border-color 0.3s ease 0s;
  transition: background-color 0.3s ease 0s, border-color 0.3s ease 0s;
}

@media screen and (min-width: 850px) {
  .p-contact__select:hover {
    border-color: #343434;
  }

  .p-contact__select:focus {
    background-color: #fff;
  }
}

.p-contact__check-item+.p-contact__check-item {
  margin-top: 5px;
}

.p-contact__check-label {
  cursor: pointer;
  display: inline-block;
}

.p-contact__check-main {
  position: relative;
  padding-left: 25px;
  font-size: 0;
  line-height: 1;
  letter-spacing: normal;
}

@media screen and (min-width: 850px) {
  .p-contact__check-text {
    -webkit-transition: color 0.3s ease 0s;
    transition: color 0.3s ease 0s;
  }

  .p-contact__check-label:hover .p-contact__check-text {
    color: #399BD2;
  }
}

.p-contact__check-text::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 15px;
  height: 15px;
  border: 1px solid #C4C4C4;
  background-color: #fff;
}

@media screen and (min-width: 850px) {
  .p-contact__check-text::before {
    -webkit-transition: border-color 0.3s ease 0s;
    transition: border-color 0.3s ease 0s;
  }

  .p-contact__check-label:hover .p-contact__check-text::before {
    border-color: #343434;
  }
}

.p-contact__check-text::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 8px;
  width: 5px;
  height: 10px;
  border-bottom: 1px solid #343434;
  border-right: 1px solid #343434;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  opacity: 0;
}

.p-contact__check-input {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 0;
  line-height: 1;
  letter-spacing: normal;
}

.p-contact__check-input:checked+.p-contact__check-text::before {
  border-color: #343434;
}

.p-contact__check-input:checked+.p-contact__check-text::after {
  opacity: 1;
}

.p-contact__check-text {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.p-contact__textarea {
  resize: vertical;
  padding: 5px 10px;
  height: 150px;
  border: 1px solid #C4C4C4;
  background-color: #fff;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  -webkit-transition: background-color 0.3s ease 0s, border-color 0.3s ease 0s;
  transition: background-color 0.3s ease 0s, border-color 0.3s ease 0s;
}

@media screen and (max-width: 849px) {
  .p-contact__textarea {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
}

@media screen and (min-width: 850px) {
  .p-contact__textarea:hover {
    border-color: #343434;
  }

  .p-contact__textarea:focus {
    background-color: #fff;
  }
}

.p-contact__submit {
  cursor: pointer;
  margin-top: 30px;
}

.p-contact__btn {
  cursor: pointer;
  width: 100px;
  margin: 0 auto;
  padding: 5px 10px;
  border: 1px solid #C4C4C4;
  background-color: #fff;
  -webkit-transition: background-color 0.3s ease 0s, border-color 0.3s ease 0s, color 0.3s ease 0s;
  transition: background-color 0.3s ease 0s, border-color 0.3s ease 0s, color 0.3s ease 0s;
}

.is-submit .p-contact__btn {
  pointer-events: none;
}

@media screen and (min-width: 850px) {
  .p-contact__btn:hover {
    background-color: #399BD2;
    border-color: #fff;
    color: #fff;
  }

  .p-contact__btn:focus {
    background-color: #fff;
  }
}

.p-thanks__main {
  padding: 100px 0 100px;
}

@media screen and (max-width: 849px) {
  .p-thanks__main {
    min-height: 70vh;
  }
}

@media screen and (min-width: 850px) {
  .p-thanks__main {
    padding: 200px 0 150px;
  }
}

.p-thanks__catch {
  position: relative;
  display: inline-block;
  font-size: 28px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  -webkit-font-feature-settings: 'palt';
  font-feature-settings: 'palt';
  font-weight: bold;
}

@media screen and (max-width: 849px) {
  .p-thanks__catch {
    font-size: 20px;
    line-height: 29px;
    letter-spacing: 0.08em;
  }
}

.p-thanks__btn {
  margin-top: 50px;
}

@media screen and (max-width: 849px) {
  .p-thanks__btn {
    margin-top: 25px;
  }
}

/* contact form 7 */
.wpcf7-list-item-label {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-left: 10px;
}
.wpcf7-checkbox .wpcf7-list-item{
  display: block;
  margin: 0 0 5px 0;
}
.wpcf7-checkbox input[type=checkbox] {
  width: 15px;
  height: 15px;
  border: 1px solid #C4C4C4;
  background-color: #fff;
  position: relative;
  top: 2px;
  left: 2px;
}