@charset "UTF-8";
/* Color */
/* Background */
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

html {
  line-height: 1.15;
  box-sizing: border-box;
  font-family: sans-serif;
}

main {
  display: block;
}

h1,
h2,
h3,
dl,
ol,
ul {
  font-size: 1em;
  margin: 0;
  padding: 0;
}

a {
  background-color: transparent;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

button,
input,
optgroup,
select,
textarea {
  line-height: inherit;
  border: 1px solid currentColor;
}

button {
  overflow: visible;
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  padding: 1px 6px;
}

input {
  overflow: visible;
}

input,
textarea {
  padding: 1px;
}

fieldset {
  border: 1px solid currentColor;
  margin: 0 2px;
}

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

progress {
  display: inline-block;
  vertical-align: baseline;
}

select {
  text-transform: none;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

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

[type=color] {
  background: inherit;
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.5;
}

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

::-moz-focus-inner {
  border: 0;
}

:-moz-focusring {
  outline: 1px dotted ButtonText;
}

:-moz-ui-invalid {
  box-shadow: none;
}

hr {
  box-sizing: content-box;
  height: 0;
  color: inherit;
  overflow: visible;
}

ol ol,
ol ul,
ol dl,
ul ol,
ul ul,
ul dl,
dl ol,
dl ul,
dl dl {
  margin: 0;
}

b,
strong {
  font-weight: bolder;
}

audio,
video {
  display: inline-block;
}

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

img {
  border: 0;
}

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

table {
  text-indent: 0;
  border-color: inherit;
}

details {
  display: block;
}

dialog {
  background-color: inherit;
  border: solid;
  color: inherit;
  display: block;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: fit-content;
}

dialog:not([open]) {
  display: none;
}

summary {
  display: list-item;
}

canvas {
  display: inline-block;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-wrap: break-word;
  word-break: break-all;
  word-wrap: break-word;
  padding-top: 70px;
}
@media screen and (min-width: 960px) {
  body {
  font-size: 16px;
  padding-top: 90px;
  }
}

a {
  text-decoration: none;
  color: #111;
}

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

input, textarea, select {
  border: 1px solid #C3C3C3;
  width: 100%;
  border-radius: 3px;
  padding: 10px;
  resize: none;
  -webkit-appearance: none;
  font-size: 14px;
  background: #fff;
  color: #111;
}
@media screen and (min-width: 600px) {
  input, textarea, select {
  font-size: 16px;
  }
}
input:focus, textarea:focus, select:focus {
  box-shadow: 0 0 1px 0 black;
  outline: 0;
  background: #fff;
}

/* placeholder */
input::placeholder,
textarea::placeholder {
  color: #cccccc;
}

/* IE */
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #cccccc;
}

/* Edge */
input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: #cccccc;
}

h1, h2, h3, h4 {
  font-weight: 700;
}

ul {
  list-style-type: none;
}

/* --------------------------------------------
  z-index
-------------------------------------------- */
#p-hamburger__icon {
  z-index: 100;
}

.l-header {
  z-index: 100;
}

.p-overlay {
  z-index: 10001;
}

/* --------------------------------------------
  gradation
-------------------------------------------- */
@keyframes bggradient {
  0% {
  background-position: 0% 50%;
  }
  50% {
  background-position: 100% 50%;
  }
  100% {
  background-position: 0% 50%;
  }
}
@keyframes overlayHidden {
  0% {
  opacity: 1;
  }
  100% {
  opacity: 0;
  z-index: -100;
  }
}
@keyframes overlayShow {
  0% {
  opacity: 0;
  }
  100% {
  opacity: 1;
  }
}
.l-footer {
  padding: 8px 0;
}
.l-footer p {
  color: #575757;
  font-size: 12px;
  text-align: center;
}

.l-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  padding: 16px 0;
  background: rgba(255, 255, 255, 0.6);
}
.l-header__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: space-between;
}
.l-header__left {
  width: 120px;
}
.l-header__left .txt-ja {
  font-size: 10px;
  color: #AFAFAF;
}

.l-wrap {
  padding: 0 16px;
}
@media screen and (min-width: 960px) {
  .l-wrap {
  width: 1052px;
  margin: auto;
  }
}
@media screen and (min-width: 960px) {
  .l-wrap__short {
  width: 700px;
  margin: auto;
  }
}

.l-screen {
  padding: 114px 0;
}
@media screen and (max-width: 959px) {
  .l-screen {
  padding: 20px 0 80px;
  }
}
@media screen and (min-width: 600px) {
  .l-screen__wrap {
  position: relative;
  }
}

.l-content {
  padding: 146px 0;
}
@media screen and (max-width: 959px) {
  .l-content {
  padding: 80px 0;
  }
}
.l-content__vision, .l-content__work, .l-content__flow, .l-content__price {
  background: linear-gradient(-45deg, #F2F4EC, #F7F0ED, #E2EEF7, #F7F0F0) fixed;
  background-size: 800% 800%;
  animation: bggradient 9s ease infinite;
}
@media screen and (min-width: 600px) {
  .l-content__vision__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  }
}
@media screen and (min-width: 600px) {
  .l-content__vision__left, .l-content__vision__right {
  width: 50%;
  }
}
@media screen and (min-width: 600px) {
  .l-content__vision__left {
  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 (max-width: 599px) {
  .l-content__vision__left {
  margin-bottom: 32px;
  }
}
.l-content__vision__left h2 {
  font-size: 26px;
  line-height: 1.8;
}
.l-content__vision__right p:not(:last-child) {
  margin-bottom: 24px;
}
@media screen and (min-width: 600px) {
  .l-content__cta {
  background: center/cover no-repeat url(assets/images/background-cta-pc.jpg);
  }
}
@media screen and (max-width: 599px) {
  .l-content__cta {
  background: center/cover no-repeat url(assets/images/background-cta-sp.jpg);
  }
}
.l-content__cta .p-headline__en,
.l-content__cta .p-headline__ja {
  color: #fff;
}

/* Project - componentの集まり */
@media screen and (max-width: 959px) {
  .p-nav {
  padding-top: 60px;
  }
}
@media screen and (min-width: 600px) and (max-width: 959px) {
  .p-nav__list {
  padding: 0 120px;
  }
}
@media screen and (min-width: 960px) {
  .p-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  }
}
@media screen and (min-width: 960px) {
  .p-nav__item:not(:last-child) {
  margin-right: 6px;
  }
}
@media screen and (min-width: 600px) and (max-width: 959px) {
  .p-nav__item:last-child {
  text-align: center;
  }
  .p-nav__item .c-button {
  width: 300px;
  }
}
@media screen and (max-width: 959px) {
  .p-nav__item:last-child {
  padding: 16px;
  }
}
@media screen and (min-width: 960px) {
  .p-nav__item:last-child {
  margin-left: 20px;
  }
}
.p-nav__item:not(:last-child) a:before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: #E09C9C;
  transition: all .3s;
  transform: scale(0, 1);
  transform-origin: center top;
}
.p-nav__item:not(:last-child) a:hover .txt-en {
  color: #E09C9C;
}
.p-nav__item:not(:last-child) a:hover:before {
  transform: scale(1, 1);
}
.p-nav__item a {
  position: relative;
  display: inline-block;
  padding: 10px 16px;
}
@media screen and (min-width: 960px) {
  .p-nav__item a {
  display: block;
  padding: 4px 10px;
  }
}
.p-nav__item .txt-ja,
.p-nav__item .txt-en {
  color: #111;
}
@media screen and (min-width: 960px) {
  .p-nav__item .txt-ja,
  .p-nav__item .txt-en {
  text-align: center;
  }
}
.p-nav__item .txt-ja {
  font-size: 14px;
  color: #111;
  font-weight: 700;
}
@media screen and (max-width: 959px) {
  .p-nav__item .txt-ja {
  font-size: 16px;
  }
}
.p-nav__item .txt-en {
  font-size: 10px;
  margin-bottom: 1px;
  color: #575757;
  transition: all .3s;
}

@media screen and (min-width: 600px) {
  .p-cta__txt {
  margin-right: 40px;
  }
}
.p-cta__txt__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 599px) {
  .p-cta__txt__wrap {
  margin-bottom: 32px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  }
}
.p-cta__txt__sales {
  text-align: center;
  margin-bottom: 8px;
}
.p-cta__txt__sales p {
  text-align: center;
  padding: 8px 32px;
  border: 1px solid #fff;
  display: inline-block;
}
.p-cta__txt__left {
  margin-right: 16px;
  line-height: 1.2;
}
@media screen and (min-width: 600px) {
  .p-cta__txt__left {
  font-size: 18px;
  }
}
.p-cta__txt__right {
  font-size: 50px;
}
@media screen and (max-width: 599px) {
  .p-cta__txt__right {
  font-size: 40px;
  }
}
.p-cta__btn {
  text-align: center;
}
.p-cta__btn a {
  padding: 16px 64px;
  border-radius: 4px;
  line-height: 1.6;
  text-align: center;
  background: #293B5D;
  color: #fff;
  display: inline-block;
  transition: .3s all;
}
.p-cta__btn a:hover {
  opacity: 0.6;
}

#p-hamburger__checkbox {
  display: none;
}
@media screen and (max-width: 959px) {
  #p-hamburger__checkbox:checked ~ #p-hamburger__icon span:nth-child(1) {
  transform: rotate(45deg);
  top: 14px;
  }
  #p-hamburger__checkbox:checked ~ #p-hamburger__icon span:nth-child(2) {
  display: none;
  }
  #p-hamburger__checkbox:checked ~ #p-hamburger__icon span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 14px;
  }
  #p-hamburger__checkbox:checked ~ #p-hamburger__content {
  transform: translateX(0);
  box-shadow: 6px 0 25px rgba(0, 0, 0, 0.16);
  }
  #p-hamburger__checkbox:checked ~ #p-hamburger__close {
  visibility: visible;
  opacity: 0.7;
  }
}
@media screen and (max-width: 959px) {
  #p-hamburger__icon {
  position: relative;
  display: block;
  width: 35px;
  height: 30px;
  padding: 5px;
  }
  #p-hamburger__icon span {
  transition: .3s all;
  position: absolute;
  display: block;
  height: 2px;
  background: #AFAFAF;
  width: 25px;
  }
  #p-hamburger__icon span:nth-child(1) {
  top: 7px;
  }
  #p-hamburger__icon span:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  }
  #p-hamburger__icon span:nth-child(3) {
  bottom: 7px;
  }
}
@media screen and (max-width: 959px) {
  #p-hamburger__close {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
  }
}
@media screen and (max-width: 959px) {
  #p-hamburger__content {
  display: block;
  overflow: auto;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 40;
  width: 100%;
  height: 100%;
  background: #fff;
  transition: all 0.3s ease-in-out 0s;
  transform: translateX(100%);
  }
}

@media screen and (max-width: 599px) {
  .p-screen {
  text-align: center;
  }
}
.p-screen.firstview-open .p-screen__img {
  opacity: 1;
  transform: scale(1);
}
.p-screen__ttl {
  margin-bottom: 16px;
}
@media screen and (min-width: 600px) {
  .p-screen__ttl {
  margin-bottom: 40px;
  }
}
@media screen and (min-width: 600px) {
  .p-screen__ttl__img {
  margin-bottom: 16px;
  }
}
@media screen and (max-width: 599px) {
  .p-screen__ttl__img {
  text-align: right;
  }
}
.p-screen__ttl__img img {
  width: 251px;
}
@media screen and (max-width: 599px) {
  .p-screen__ttl__img img {
  width: 170px;
  transform: rotate(5deg);
  }
}
.p-screen__ttl__txt {
  font-size: 38px;
  line-height: 1.8;
  font-weight: 700;
  letter-spacing: 0.08rem;
}
@media screen and (min-width: 600px) and (max-width: 959px) {
  .p-screen__ttl__txt {
  font-size: 32px;
  }
}
@media screen and (max-width: 959px) {
  .p-screen__ttl__txt {
  line-height: 1.6;
  }
}
@media screen and (max-width: 599px) {
  .p-screen__ttl__txt {
  font-size: 26px;
  }
}
.p-screen__img {
  opacity: 0;
  transition-delay: 2.8s;
  transition-duration: 1s;
  transition-timing-function: ease-out;
  transform: scale(1.1);
}
@media screen and (min-width: 600px) {
  .p-screen__img {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  }
}
@media screen and (max-width: 599px) {
  .p-screen__img {
  margin-bottom: 32px;
  }
}
.p-screen__txt__vision {
  color: #575757;
  line-height: 1.6;
  font-weight: 700;
}
.p-screen__txt__list {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 599px) {
  .p-screen__txt__list {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  }
}
.p-screen__txt__item {
  width: 154px;
  text-align: center;
  font-weight: 700;
  border-radius: 50px;
  padding: 16px 0;
}
.p-screen__txt__item.pro-web {
  margin-right: 8px;
  color: #E09C9C;
  border: 2px solid #E09C9C;
}
.p-screen__txt__item.pro-money {
  color: #8CBBDE;
  border: 2px solid #8CBBDE;
}

.p-headline {
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 599px) {
  .p-headline {
  margin-bottom: 40px;
  }
}
.p-headline__en {
  font-size: 14px;
  color: #8CBBDE;
  margin-bottom: 8px;
  font-weight: 700;
}
.p-headline__ja {
  font-size: 20px;
  line-height: 1.6;
}
.p-headline__sentence {
  margin-top: 32px;
  text-align: center;
  font-size: 14px;
  color: #575757;
  line-height: 1.6;
  letter-spacing: 0.08rem;
}

.p-content__service {
  background: linear-gradient(to bottom right, #F7F0F0, #E2EEF7);
}
.p-content__service__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.p-content__service__item {
  padding: 16px 8px;
}
@media screen and (min-width: 600px) {
  .p-content__service__item {
  padding: 24px 16px;
  }
}
@media screen and (max-width: 599px) {
  .p-content__service__item {
  width: 50%;
  }
  .p-content__service__item:not(:nth-child(2n)) {
  border-right: 2px solid #fff;
  }
  .p-content__service__item:not(:nth-last-of-type(-n+2)) {
  border-bottom: 2px solid #fff;
  }
}
@media screen and (min-width: 600px) {
  .p-content__service__item {
  width: 25%;
  }
  .p-content__service__item:not(:nth-child(4n)) {
  border-right: 3px solid #fff;
  }
  .p-content__service__item:not(:nth-last-of-type(-n+4)) {
  border-bottom: 2px solid #fff;
  }
}
.p-content__service__number {
  text-align: center;
  margin-bottom: 16px;
}
.p-content__service__number .number-circle {
  display: inline-block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  border-radius: 50%;
  background: #fff;
  color: #8CBBDE;
  font-weight: 700;
  font-size: 16px;
}
.p-content__service__ttl {
  text-align: center;
  margin-bottom: 16px;
}
.p-content__service__element__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 16px 8px;
  background: #fff;
  font-size: 14px;
  color: #575757;
}
@media screen and (max-width: 959px) {
  .p-content__service__element__item {
  padding: 8px;
  font-size: 12px;
  }
}
.p-content__service__element__item:before {
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 10px;
  margin-right: 4px;
  background: #ADADAD;
}
.p-content__service__element__item:not(:last-child) {
  margin-bottom: 8px;
}
.p-content__work__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.p-content__work__item {
  width: 173px;
}
@media screen and (max-width: 599px) {
  .p-content__work__item {
  width: 32%;
  }
}
.p-content__work__item:not(:last-child) {
  margin-right: 80px;
}
@media screen and (min-width: 600px) and (max-width: 959px) {
  .p-content__work__item:not(:last-child) {
  margin-right: 40px;
  }
}
@media screen and (max-width: 599px) {
  .p-content__work__item:not(:last-child) {
  margin-right: 2%;
  }
}
.p-content__work__img {
  margin-bottom: 24px;
}
.p-content__work__txt {
  text-align: center;
  font-size: 14px;
  color: #575757;
}
@media screen and (max-width: 959px) {
  .p-content__work__txt {
  font-size: 12px;
  }
}
@media screen and (min-width: 600px) {
  .p-content__support {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  }
}
@media screen and (min-width: 960px) {
  .p-content__support__vision {
  flex: 1;
  }
}
@media screen and (max-width: 959px) {
  .p-content__support__vision {
  margin-bottom: 40px;
  }
}
@media screen and (max-width: 599px) {
  .p-content__support__vision {
  text-align: center;
  }
}
.p-content__support__vision p:not(:last-child) {
  margin-bottom: 24px;
}
@media screen and (min-width: 600px) and (max-width: 959px) {
  .p-content__support__detail {
  width: 56%;
  }
}
.p-content__support__detail__wrap {
  margin-bottom: 16px;
}
@media screen and (min-width: 960px) {
  .p-content__support__detail__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  }
}
.p-content__support__detail__caution p {
  font-size: 12px;
  color: #575757;
}
.p-content__support__detail__caution p:not(:last-child) {
  margin-bottom: 4px;
}
.p-content__cta {
  color: #fff;
  font-weight: 700;
}
@media screen and (min-width: 600px) {
  .p-content__cta {
  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;
  }
}

.p-person {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
  text-align: center;
  /* 人物 */
}
@media screen and (min-width: 960px) {
  .p-person {
  width: 320px;
  }
}
.p-person__ttl {
  margin-bottom: 24px;
  padding: 8px 0;
}
.p-person__ttl img {
  height: 37px;
  width: auto;
}
.p-person__icon {
  margin-bottom: 16px;
}
.p-person__icon img {
  width: auto;
  height: 95px;
}
.p-person__txt {
  margin-bottom: 16px;
  line-height: 1/6;
  font-weight: 700;
}
.p-person__list {
  padding: 0 16px 32px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}
.p-person__item {
  width: 49%;
  padding: 8px 0;
  font-size: 13px;
  font-weight: 700;
}
.p-person__item:not(:nth-child(2n)) {
  margin-right: 2%;
}
.p-person__item:not(:nth-last-of-type(-n+2)) {
  margin-bottom: 2%;
}
@media screen and (min-width: 960px) {
  .p-person__web {
  margin-right: 16px;
  }
}
@media screen and (max-width: 959px) {
  .p-person__web {
  margin-bottom: 24px;
  }
}
.p-person__web .p-person__ttl {
  background: #8CBBDE;
}
.p-person__web .p-person__item {
  color: #8CBBDE;
  border: 1px solid #D9E9F5;
}
.p-person__money .p-person__ttl {
  background: #E09C9C;
}
.p-person__money .p-person__item {
  color: #E09C9C;
  border: 1px solid #F7E5E5;
}

.p-flow__box {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  background: #fff;
}
.p-flow__box__free {
  margin-bottom: 8px;
}
.p-flow__box__free .p-flow__item__num,
.p-flow__box__free .p-flow__headline {
  background: #8CBBDE;
}
.p-flow__box__free .p-flow__item:not(:last-child) {
  border-bottom: 1px dashed #D9E9F5;
}
.p-flow__box__paid .p-flow__item__num,
.p-flow__box__paid .p-flow__headline {
  background: #E09C9C;
}
.p-flow__box__paid .p-flow__item:not(:last-child) {
  border-bottom: 1px dashed #F7E5E5;
}
.p-flow__headline {
  width: 40px;
  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: 600px) {
  .p-flow__headline {
  width: 70px;
  }
}
.p-flow__headline h3 {
  color: #fff;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  letter-spacing: 0.3rem;
  font-size: 1.1rem;
}
.p-flow__list {
  flex: 1;
}
.p-flow__item {
  padding: 16px;
}
@media screen and (min-width: 600px) {
  .p-flow__item {
  height: 100px;
  padding: 0 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  }
}
.p-flow__item__num {
  display: inline-block;
  padding: 4px 16px;
  border-radius: 30px;
  color: #fff;
  margin-right: 24px;
  font-size: 12px;
  font-weight: 700;
}
@media screen and (max-width: 599px) {
  .p-flow__item__num {
  margin-bottom: 8px;
  }
}
.p-flow__item__ttl {
  width: 125px;
  font-weight: 700;
  font-size: 1.1rem;
}
@media screen and (max-width: 599px) {
  .p-flow__item__ttl {
  margin-bottom: 16px;
  }
}
.p-flow__item__desc {
  flex: 1;
  color: #575757;
  line-height: 1.6;
  font-size: 14px;
}

.p-faq__item {
  background: #F7F7F7;
  border-radius: 4px;
  cursor: pointer;
  padding: 24px;
  transition: .3s all;
}
@media screen and (max-width: 599px) {
  .p-faq__item {
  padding: 16px 48px 16px 16px;
  }
}
.p-faq__item:hover {
  background: #F4EFEF;
}
.p-faq__item:not(:last-child) {
  margin-bottom: 8px;
}
.p-faq__item__question {
  position: relative;
}
.p-faq__item__question:before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
}
@media screen and (max-width: 599px) {
  .p-faq__item__question:before {
  right: -37px;
  width: 30px;
  height: 30px;
  }
}
.p-faq__item__question:after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  width: 8px;
  height: 14px;
  background: center/contain no-repeat url(assets/images/icon-arrow-right-pink.png);
  transition: .3s;
}
@media screen and (max-width: 599px) {
  .p-faq__item__question:after {
  right: -26px;
  width: 6px;
  height: 12px;
  }
}
.p-faq__item__answer {
  display: none !important;
  margin-top: 24px;
}
.p-faq__item.open-item .p-faq__item__answer {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.p-faq__item.open-item .p-faq__item__question:after {
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}
.p-faq__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.p-faq__box:last-child {
  padding-top: 0;
}
.p-faq__box .faq-icon {
  margin-right: 16px;
  width: 28px;
  height: 28px;
  text-align: center;
  line-height: 28px;
  font-weight: 700;
  color: #fff;
  border-radius: 4px;
}
.p-faq__box .faq-icon-q {
  background: #E09C9C;
}
.p-faq__box .faq-icon-a {
  background: #8CBBDE;
}
.p-faq__box .faq-txt {
  flex: 1;
  color: #575757;
  font-size: 0.85rem;
  line-height: 1.4;
}

@media screen and (min-width: 600px) {
  .p-price__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  }
}
.p-price__box {
  position: relative;
  background: #fff;
  border-radius: 8px;
  padding: 50px 0;
}
@media screen and (min-width: 600px) {
  .p-price__box {
  width: 48%;
  }
  .p-price__box:not(:last-child) {
  margin-right: 4%;
  }
}
@media screen and (max-width: 599px) {
  .p-price__box {
  margin-bottom: 16px;
  }
}
.p-price__box .price-campaign {
  display: inline-block;
  position: absolute;
  white-space: nowrap;
  top: 0;
  left: 50%;
  font-size: 0.9rem;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 4px;
  padding: 4px 24px;
  background: #E09C9C;
  color: #fff;
  font-weight: 700;
}
.p-price__ttl {
  text-align: center;
  margin-bottom: 16px;
  font-size: 1.1rem;
}
.p-price__money {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
}
.p-price__money .price-down {
  display: inline-block;
  margin-right: 16px;
  font-size: 16px;
  text-decoration: line-through;
  color: #575757;
  font-weight: 400;
}

.p-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: linear-gradient(to bottom right, #E09C9C, #8CBBDE);
  animation-name: overlayHidden;
  animation-duration: 1s;
  animation-delay: 3.5s;
  animation-fill-mode: both;
  opacity: 1;
}
.p-overlay__img {
  animation-name: overlayShow;
  animation-duration: 1.5s;
  animation-delay: 2s;
  animation-fill-mode: both;
  opacity: 0;
}
.p-overlay__img img {
  width: 172px;
  height: auto;
}

/* Component - 最小単位 */
.c-button__header {
  border-radius: 4px;
  padding: 16px 20px !important;
  background: #E09C9C;
  font-size: 16px !important;
  color: #fff !important;
  font-weight: 700;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  background: #E09C9C;
  -webkit-transition: .3s all;
  transition: .3s all;
}
@media screen and (max-width: 959px) {
  .c-button__header {
  width: 100%;
  text-align: center;
  }
}
.c-button:hover {
  opacity: 0.6;
}

/* Utility */
.u-txt__long {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.08rem;
  color: #575757;
}
@media screen and (max-width: 959px) {
  .u-txt__long {
  font-size: 12px;
  }
}
.u-txt__small {
  font-size: .8rem;
}

.u-anime {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 1.5s;
  transition: all 1.5s;
}
.u-anime.is-show {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
}
.u-anime__scrollLeft {
  transform: translate(5px, 0);
}
.u-anime__scrollUp {
  transform: translate(0, 5px);
}
@media screen and (min-width: 600px) {
  .u-anime:nth-child(1) {
  transition-delay: 0s;
  }
  .u-anime:nth-child(2) {
  transition-delay: .15s;
  }
  .u-anime:nth-child(3) {
  transition-delay: .3s;
  }
}

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