@charset "UTF-8";
/* 2022年から使用するLPには既存のCSS構造を使用せず、このCSSのみで完結するよう作成

追加点
・index.html書き換え（旧LPは_back_221230）
・sassフォルダを追加
・cssフォルダにlp-style.cssを追加
・common>img>new_lpフォルダを新規作成・画像追加
*/
/*================================
リセットCSS
=================================*/
* {
  box-sizing: border-box;
}

html, body, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
  text-decoration: none;
}

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

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
  list-style-type: none;
}

em {
  font-style: normal;
}

/*================================
Setting
=================================*/
/*================================
基本設定
=================================*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: 'Noto Sans JP', 'Montserrat', "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", 'Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3', 'Gill Sans', sans-serif;
  font-size: 18px;
  color: #3e3e3e;
  letter-spacing: .075em;
  line-height: 1.5;
  overflow-x: hidden !important;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

a {
  color: #333;
}

a:hover {
  cursor: pointer;
}

@media (min-width: 1080px) {
  a:hover {
    opacity: 0.7;
  }
}

img {
  max-width: 100%;
  height: auto;
  border: none;
}

/*================================
FLOCSS layout
=================================*/
/* _container
---------------------------------*/
.l-container {
  max-width: 1200px;
  width: 100%;
  height: inherit;
  padding: 0 40px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .l-container {
    padding: 0;
  }
}

/* _row
---------------------------------*/
.l-row {
  display: flex;
  flex-wrap: wrap;
  height: inherit;
  max-width: 100%;
}

@media (max-width: 767px) {
  .l-row {
    display: block;
  }
}

.l-row__col03 {
  width: 25%;
}

@media (max-width: 767px) {
  .l-row__col03 {
    width: 100%;
  }
}

.l-row__col04 {
  width: 33.33333%;
}

@media (max-width: 767px) {
  .l-row__col04 {
    width: 100%;
  }
}

.l-row__col06 {
  width: 50%;
}

@media (max-width: 767px) {
  .l-row__col06 {
    width: 100%;
  }
}

/* _section
---------------------------------*/
.l-section {
  width: 100%;
  padding: 6em 0;
}

@media (max-width: 767px) {
  .l-section {
    max-width: 100%;
    padding: 4em 1.25em;
  }
}

/*================================
FLOCSS component
=================================*/
/* _accordion
---------------------------------*/
.p-accordion__wrap {
  margin-top: 6em;
}

@media (max-width: 767px) {
  .p-accordion__wrap {
    margin-top: 4em;
  }
}

.c-accordion {
  border: 5px solid #DFF0FA;
  margin: 1.5em 0;
  border-radius: 10px;
  transition: all 0.3s ease 0s;
  overflow: hidden;
}

.c-accordion__title {
  padding: 0.75em 1em;
  font-size: 1.25em;
  cursor: pointer;
  background-color: #DFF0FA;
}

@media (max-width: 767px) {
  .c-accordion__title {
    font-size: 1.1em;
  }
}

.c-accordion__content {
  display: none;
  padding: 0.75em 3.5em;
}

@media (max-width: 767px) {
  .c-accordion__content {
    padding: 1em;
  }
}

.p-accordion__q {
  position: relative;
  padding-right: 3em;
  font-weight: 700;
}

@media (max-width: 767px) {
  .p-accordion__q {
    padding-right: 1em;
  }
}

.p-accordion__q .u-text--blue {
  font-weight: 700;
  margin-right: 0.5em;
}

.p-accordion__q::after {
  position: absolute;
  font-family: 'Font Awesome 5 Free';
  content: "\f067";
  top: 50%;
  right: 0.4em;
  transform: translateY(-50%);
  width: 1.25em;
  max-width: 100%;
  height: 1.25em;
  transition: all 0.5s ease 0s;
}

@media (max-width: 767px) {
  .p-accordion__q::after {
    right: -0.1em;
  }
}

.p-accordion__q.is-checked::after {
  content: "\f068";
}

/* _btn
---------------------------------*/
.c-btn {
  display: inline-block;
  text-align: center;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1em;
  font-weight: 700;
  vertical-align: middle;
  background-color: #0062B5;
  border: 2px solid transparent;
  border-radius: 10px;
  box-shadow: none;
  margin: auto;
  letter-spacing: 0.2em;
  transition: color .3s, background-color .3s, border .3s;
}

@media (min-width: 1200px) {
  .c-btn:hover {
    cursor: pointer;
    background: #fff;
    border: 2px solid #0062B5;
  }
  .c-btn:hover a {
    color: #0062B5;
    opacity: 1;
  }
  .c-btn:hover a::after {
    color: #0062B5;
  }
}

.c-btn a {
  display: block;
  color: #fff;
  font-size: 1.2em;
  font-weight: 700;
  letter-spacing: .1em;
  position: relative;
  padding: 0.75em 1em;
  padding-right: 2em;
  transition: color .3s;
}

.c-btn a::after {
  content: '';
  position: absolute;
  font-family: 'Font Awesome 5 Free';
  margin-left: 0.5em;
  top: 50%;
  transform: translateY(-50%);
  transition: color .3s;
}

.--apply {
  background: #FFCF48;
  color: #0062B5;
}

@media (min-width: 1200px) {
  .--apply:hover {
    background: #FFCF48;
  }
}

.--apply a {
  color: #0062B5;
}

.--apply a::after {
  content: '\f044';
  color: #0062B5;
}

.--inquiry {
  background: #FC7A23;
  color: #fff;
}

@media (min-width: 1200px) {
  .--inquiry:hover {
    border-color: #FC7A23;
  }
  .--inquiry:hover a {
    color: #FC7A23;
  }
  .--inquiry:hover a::after {
    color: #FC7A23;
  }
}

.--inquiry a {
  color: #fff;
}

.--inquiry a::after {
  content: '\f0e0';
  color: #fff;
}

.--mypage a::after {
  content: '\f406';
  color: #fff;
}

/* _navigation
---------------------------------*/
.c-navigation {
  display: flex;
}

.c-navigation a {
  text-decoration: none;
  display: block;
  transition: all 0.3s ease 0s;
  line-height: 1.5;
}

.c-navigation li {
  text-align: center;
  margin-right: 0.5em;
  position: relative;
  align-items: center;
  vertical-align: baseline;
  z-index: 32;
}

/* _heading
---------------------------------*/
.c-heading {
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: .1em;
}

.--h2 {
  font-size: 2.25em;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 767px) {
  .--h2 {
    font-size: 2em;
  }
}

.--bg__gr-blue .--h2 {
  color: #fff;
}

.--bg__gr-yellow .--h2 {
  color: #3B4043;
}

.--h2 span {
  font-weight: 700;
}

.u-text--blue {
  color: #0062B5;
}

.--h3 {
  font-size: 1.5em;
  font-weight: 700;
}

@media (max-width: 767px) {
  .--h3 {
    font-size: 1.25em;
  }
}

.--h3 .u-text--red {
  color: #E24852;
  font-weight: 700;
  font-size: 32px;
}

@media (max-width: 767px) {
  .--h3 .u-text--red {
    font-size: 1.5em;
  }
}

@media (max-width: 767px) {
  .p-heading__article--main::after {
    color: #C6B8A9;
    font-size: 28px;
    right: -88px;
  }
}

/* _main-visual
---------------------------------*/
.p-main-visual__wrap {
  position: relative;
}

.c-main-visual {
  width: 100%;
  min-height: 600px;
  position: relative;
  background: transparent url(../common/img/new_lp/main-visual2.png) no-repeat center center/cover;
  overflow: hidden;
}

@media (max-width: 767px) {
  .c-main-visual {
    background-position: top 50% left 15%;
    height: 1000px;
  }
}

@media (max-width: 476px) {
  .c-main-visual {
    background: transparent url(../common/img/new_lp/main-visual3.png) no-repeat bottom -20% center/contain;
    height: 900px;
  }
}

.c-main-visual__content {
  position: absolute;
  max-width: 500px;
  width: 100%;
  top: 50%;
  right: 0;
  transform: translate(-30%, -50%);
  text-align: center;
  color: #3B4043;
  padding: 0 1em;
}

@media (max-width: 767px) {
  .c-main-visual__content {
    top: 40%;
    right: 50%;
    transform: translate(50%);
    padding: 1em;
    background-color: rgba(255, 255, 255, 0.5);
  }
}

@media (max-width: 476px) {
  .c-main-visual__content {
    top: 70px;
    background-color: white;
  }
}

.c-main-visual__title {
  font-size: 2.4em;
  font-weight: 700;
  color: #0062B5;
}

.c-main-visual__title span {
  font-size: 1.2em;
  font-weight: 700;
}

@media (max-width: 767px) {
  .c-main-visual__title {
    font-size: 2em;
    font-weight: 700;
  }
}

.c-main-visual__lead {
  font-size: 1em;
  margin-top: 1em;
  text-align: left;
}

.c-main-visual__lead span {
  background: linear-gradient(transparent 60%, #FFCF48 60%);
}

@media (max-width: 767px) {
  .c-main-visual__lead span {
    font-size: 1.5em;
  }
}

.c-main-visual__lead span em {
  color: #0062B5;
  font-weight: bold;
}

@media (max-width: 767px) {
  .c-main-visual__lead {
    font-size: 0.75em;
    margin-top: 1.5em;
  }
}

.c-main-visual__btn {
  margin-top: 1em;
}

.c-main-visual__btn button:nth-child(n+2) {
  margin-left: 0.5em;
}

@media (max-width: 463px) {
  .c-main-visual__btn button:nth-child(n+2) {
    margin-left: 0;
    margin-top: 1em;
  }
}

@media (max-width: 767px) {
  .c-main-visual__btn {
    margin-top: 1.5em;
  }
}

.p-main-visual__bottom {
  position: absolute;
  width: auto;
  height: auto;
  bottom: -7em;
  left: 50%;
  transform: translateX(-50%);
}

.p-main-visual__bottom .l-row {
  align-items: center;
  flex-wrap: nowrap;
  justify-content: space-around;
  min-width: 700px;
}

.p-main-visual__bottom .l-row li + li {
  margin-left: 4em;
}

@media (max-width: 767px) {
  .p-main-visual__bottom .l-row {
    text-align: center;
    min-width: 320px;
    width: 100%;
    overflow: hidden;
  }
  .p-main-visual__bottom .l-row li + li {
    display: none;
  }
}

.p-main-visual__authority {
  text-align: center;
  font-size: 1.75em;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  line-height: 1.25;
  position: relative;
}

.p-main-visual__authority::before, .p-main-visual__authority::after {
  content: "";
  position: absolute;
  width: 100%;
  height: auto;
  text-align: center;
  top: -15%;
}

.p-main-visual__authority::before {
  content: url(../common/img/new_lp/feather-left.png);
  left: -2.25em;
}

.p-main-visual__authority::after {
  content: url(../common/img/new_lp/feather-right.png);
  left: 2.25em;
}

.p-main-visual__authority span {
  display: block;
  font-size: 1.5em;
  color: #fff;
  text-shadow: #C8B0B3 1px 0 10px;
  font-weight: 900;
  font-style: italic;
}

.p-main-visual__authority small {
  display: block;
  font-size: 10px;
}

/*================================
FLOCSS utility
=================================*/
/* _hidden
---------------------------------*/
@media (min-width: 1200px) {
  .u-hidden-pc {
    display: none;
  }
}

@media (max-width: 767px) {
  .u-hidden-sp {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .u-hidden-tab {
    display: none;
  }
}

.u-appear-pc {
  display: block;
}

@media (max-width: 1199px) {
  .u-appear-pc {
    display: none;
  }
}

.u-appear-sp {
  display: none;
}

@media (max-width: 767px) {
  .u-appear-sp {
    display: block;
  }
}

/* _space
---------------------------------*/
.u-mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.u-my-auto {
  margin-top: auto;
  margin-bottom: auto;
}

.u-mt-auto {
  margin-top: auto;
}

.u-ml-auto {
  margin-left: auto;
}

.u-mr-auto {
  margin-right: auto;
}

.u-mb-auto {
  margin-bottom: auto;
}

/* _text-align
---------------------------------*/
.u-text-left {
  text-align: left;
}

.u-text-center {
  text-align: center;
}

.u-text-right {
  text-align: right;
}

/*================================
各ページ共通クラス
=================================*/
.--bg__gr-blue {
  background: linear-gradient(to right, #84BFE0, #0062B5);
  width: 100%;
}

.--bg__gr-yellow {
  background: linear-gradient(to right, #FCE298, #FFC622);
  width: 100%;
}

.--bg__white {
  background-color: #fff;
  width: 100%;
}

.--bg__blue {
  background-color: #0062B5;
}

.--bg__lbl {
  background-color: #DFF0FA;
}

/* header
---------------------------------*/
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  background-color: #fff;
  box-shadow: 0px 10px 10px -5px #64646433;
  z-index: 20;
}

.p-header__content {
  max-width: 1200px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  padding: 0 40px;
  vertical-align: middle;
}

@media (max-width: 767px) {
  .p-header__content {
    padding: 0 0 0 0.25em;
    width: 100%;
  }
}

.p-header__nav {
  align-items: center;
}

.p-header__nav li::nth-child(n+2) {
  margin-left: 1em;
}

@media (max-width: 767px) {
  .p-header__nav li {
    margin-right: 0;
  }
}

@media (max-width: 767px) {
  .p-header__nav .c-btn {
    border-radius: 0px;
    min-width: 60px;
  }
}

.p-header__nav .c-btn a {
  font-size: 1em;
  padding: 0.5em 0.75em;
  padding-right: 2em;
}

@media (max-width: 1200px) {
  .p-header__nav .c-btn a {
    font-size: 10px;
    padding: 1em 0;
    padding-top: 2em;
    margin-top: 1em;
  }
  .p-header__nav .c-btn a::after {
    top: -20px;
    left: 50%;
    font-size: 18px;
    transform: translate(-50%, 50%);
    margin-left: 0;
    margin-bottom: 0.5em;
  }
}

@media (max-width: 767px) {
  .p-header__nav .c-btn a {
    font-size: 8px;
  }
}

.--tel_number {
  font-size: 1.2em;
  font-weight: 700;
  margin: 0 1em;
}

@media (max-width: 1200px) {
  .--tel_number {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .--tel_number {
    font-size: 12px;
    margin: 0 5px;
  }
}

.p-header_tel_recept {
  font-size: 0.25em;
}

@media (max-width: 1200px) {
  .p-header_tel_recept {
    display: none;
  }
}

/* float
---------------------------------*/
.p-cv__float {
  position: sticky;
  width: 100%;
  height: auto;
  bottom: 0;
  left: 0;
  z-index: 30;
}

.p-cv__float ul {
  align-items: center;
  justify-content: center;
  padding: 0.5em;
  flex-wrap: nowrap;
}

@media (max-width: 767px) {
  .p-cv__float ul {
    display: flex;
    padding: 0.1em;
  }
}

.p-cv__float .p-cv__list {
  margin: 0.5em;
}

.p-cv__float .p-cv__list p {
  color: #0062B5;
  font-weight: 600;
}

@media (max-width: 767px) {
  .p-cv__float .p-cv__list p {
    font-size: 0.6em;
  }
}

.p-cv__float .p-cv__list .c-btn {
  font-size: 1.0em;
}

.p-cv__float .--inquiry a {
  font-size: 1.25em;
}

@media (max-width: 767px) {
  .p-cv__float .--inquiry a {
    font-size: 0.75em;
    padding: 0.5em 0.75em;
    padding-right: 1.75em;
  }
}

.p-cv__float .--tel {
  letter-spacing: 0.1em;
}

.p-cv__float .--tel a {
  font-size: 1.25em;
  padding-right: 1em;
}

@media (max-width: 767px) {
  .p-cv__float .--tel a {
    font-size: 0.75em;
    padding: 0.5em 0.75em;
  }
}

.--bg__yellow {
  background-color: #FFCF48;
}

/* footer
---------------------------------*/
.l-footer {
  width: 100%;
  height: 100%;
  padding: 4em 0;
  margin: 0 auto;
  text-align: center;
  color: #3B4043;
  z-index: 10;
}

@media (max-width: 767px) {
  .l-footer {
    margin-top: 0;
  }
}

.p-footer__nav--wrap {
  margin-top: 2em;
}

.p-footer__nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .p-footer__nav {
    display: inline-block;
  }
}

.p-footer__nav a {
  display: block;
  font-size: 1em;
  font-weight: bold;
  position: relative;
  letter-spacing: .1em;
}

@media (max-width: 767px) {
  .p-footer__nav a {
    font-size: 0.75em;
  }
}

@media (max-width: 767px) {
  .p-footer__nav li {
    margin: 0;
  }
}

.p-footer__nav li + li {
  margin-left: 1.5em;
}

@media (max-width: 767px) {
  .p-footer__nav li + li {
    margin: 0;
    margin-top: 1em;
  }
}

.p-footer__logo {
  color: #3B4043;
}

.p-footer__logo p {
  font-weight: 700;
  margin-top: 0.25em;
  font-size: 1.25em;
}

.p-footer__copy {
  display: inline-block;
  font-size: 0.5em;
  margin-top: 28px;
}

@media (max-width: 767px) {
  .p-footer__copy {
    font-size: 10px;
  }
}

.p-footer__copy:nth-child(n+1) {
  margin-left: 0.5em;
}

.p-footer__notice {
  font-size: 0.75em;
  margin: 28px 10px 0;
}

@media (max-width: 767px) {
  .p-footer__notice {
    font-size: 10px;
  }
}

/*================================
LP
=================================*/
.p-notice {
  margin-top: 0.5em;
  padding: 1em;
  font-size: 0.75em;
  display: block;
}

.p-notice li + li {
  margin-top: 0.5em;
}

@media (max-width: 767px) {
  .p-notice {
    font-size: 10px;
  }
}

/* service
---------------------------------*/
#a-service.l-section {
  padding: 10em 0 6em;
}

.p-service__content {
  justify-content: space-between;
  margin: 0 auto;
  margin-top: 100px;
  text-align: center;
  align-items: flex-start;
  flex-wrap: nowrap;
}

.p-service__content .l-row__col04 {
  color: #fff;
}

@media (max-width: 767px) {
  .p-service__content .l-row__col04 {
    margin-top: 2em;
  }
}

.p-service__content .l-row__col04 .--h3 {
  transform: rotate(-5deg);
}

.p-service__content .l-row__col04 .--h3 i {
  font-size: 1.5em;
  transform: rotate(-10deg);
  margin-right: 10px;
}

.p-service__content .l-row__col04 img {
  margin-top: 1em;
}

.p-service__content .l-row__col04 p {
  padding: 0 1em 1em;
  margin-top: 1em;
  text-align: left;
  line-height: 2;
}

/* worries
---------------------------------*/
.p-worries__content {
  margin-top: 120px;
  background: url(../common/img/new_lp/worries.png) center center no-repeat;
  background-size: 50%;
  justify-content: space-between;
  min-height: 600px;
}

@media (max-width: 1200px) {
  .p-worries__content {
    display: block;
    background: none;
  }
}

@media (max-width: 767px) {
  .p-worries__content {
    background: none;
    margin-top: 90px;
  }
}

.p-exclamation {
  background-color: #DFF0FA;
  border-radius: 10px;
  padding: 1em;
  position: relative;
}

.p-exclamation::before {
  position: absolute;
  content: '';
  background: url(../common/img/new_lp/exclamation.svg) center center no-repeat;
  width: 2.5em;
  max-width: 100%;
  height: 2.5em;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
}

.p-exclamation:nth-child(2n) {
  margin-left: 1em;
}

@media (max-width: 1200px) {
  .p-exclamation:nth-child(2n) {
    margin-left: 0;
    margin-top: 4em;
  }
}

.p-exclamation:nth-child(n+3) {
  margin-top: 4em;
}

.p-exclamation p {
  margin-top: 1em;
}

.p-worries__list {
  max-width: 475px;
  height: 100%;
  padding: 1.5em;
}

@media (max-width: 1200px) {
  .p-worries__list {
    max-width: 100%;
  }
}

/* reason
---------------------------------*/
.p-reason__content {
  flex-wrap: nowrap;
  justify-content: space-between;
}

.p-reason__content figure {
  margin: 0 auto;
  margin-top: 1.5em;
  text-align: center;
}

.p-reason__content p {
  margin-top: 1.5em;
}

#a-reason1 .p-reason__content {
  margin-top: 80px;
  flex-direction: row-reverse;
}

@media (max-width: 767px) {
  #a-reason1 .p-reason__content {
    margin-top: 0;
  }
}

#a-reason2 .p-reason__content span {
  color: #FFCF48;
}

#a-reason3 .p-reason__content {
  flex-direction: row-reverse;
}

.p-reason__content span {
  font-family: 'Montserrat', sans-serif;
  font-size: 7em;
  color: #fff;
}

.p-reason__content .--h3 {
  margin-top: -2em;
  font-size: 2em;
}

@media (max-width: 767px) {
  .p-reason__content .--h3 {
    font-size: 1.5em;
  }
}

.p-reason__content em {
  font-weight: 700;
}

.p-reason__list {
  list-style-type: disc;
  margin-top: 1em;
  padding-left: 3em;
}

.p-reason__list li {
  font-weight: 700;
}

.p-reason__attention {
  color: #FC7A23;
}

/* campaign
---------------------------------*/
.p-campaign .--bg__white {
  height: 400px;
  padding-bottom: 6em;
  position: relative;
}

@media (max-width: 767px) {
  .p-campaign .--bg__white {
    margin-top: 4em;
    position: static;
    transform: none;
    height: 100%;
  }
}

.p-campaign__wrap {
  background: url(../common/img/new_lp/campaign.png) center center no-repeat;
  background-size: 80%;
  padding: 8em 0;
}

@media (max-width: 767px) {
  .p-campaign__wrap {
    background-size: 100%;
    padding: 0;
    padding-top: 4em;
  }
}

.p-campaign__content {
  background: rgba(255, 255, 255, 0.7);
  padding: 4em;
  margin: 0 3em;
  margin-top: 80px;
  text-align: center;
}

@media (max-width: 767px) {
  .p-campaign__content {
    padding: 1em;
    margin: 4em 0 0;
  }
}

.p-campaign__content p {
  max-width: 500px;
  margin: 0 auto;
  margin-top: 1.5em;
  text-align: left;
  line-height: 2;
}

@media (max-width: 767px) {
  .p-campaign__content p {
    max-width: 100%;
  }
}

.p-campaign__bottom {
  position: absolute;
  content: '';
  top: -4em;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  background-color: #fff;
  box-shadow: 0px 20px 20px -5px rgba(80, 88, 134, 0.355);
}

@media (max-width: 767px) {
  .p-campaign__bottom {
    position: static;
    transform: none;
  }
}

.p-campaign__bottom img {
  background-color: #fff;
}

@media (max-width: 767px) {
  .p-campaign__bottom img {
    margin-top: 2em;
  }
}

.p-campaign__bottom ul {
  padding: 2em;
  list-style: disc;
  font-size: 0.75em;
  margin-top: 2em;
}

@media (max-width: 767px) {
  .p-campaign__bottom ul {
    font-size: 10px;
    padding-left: 2.5em;
  }
}

.p-campaign__bottom ul li:nth-child(n+2) {
  margin-top: 4px;
}

/* cv1
---------------------------------*/
.p-cv {
  padding: 2em 0;
}

.p-cv ul {
  align-items: center;
  justify-content: center;
}

.p-cv__list {
  text-align: center;
}

.p-cv__list:nth-child(n+2) {
  margin-left: 2.5em;
}

@media (max-width: 767px) {
  .p-cv__list:nth-child(n+2) {
    margin-left: 0;
  }
}

.p-cv__list p {
  color: #fff;
}

@media (max-width: 767px) {
  .p-cv__list p {
    font-size: 14px;
  }
}

.p-cv__list .c-btn {
  font-size: 1.3em;
  margin: 8px 0;
}

.cv_tel_number {
  font-size: 2em;
  font-weight: 900;
  color: #fff;
}

@media (max-width: 767px) {
  .cv_tel_number {
    margin-top: 0.5em;
  }
}

.cv_tel_recept {
  color: #fff;
}

@media (max-width: 767px) {
  .cv_tel_recept {
    margin-top: 0.75em;
  }
}

/* movie
---------------------------------*/
.p-movie {
  padding-bottom: 10em;
  overflow: hidden;
}

@media (max-width: 767px) {
  .p-movie {
    padding-bottom: 4em;
  }
}

.p-movie__content {
  position: relative;
  margin: 0 auto;
  margin-top: 100px;
  text-align: center;
}

@media (max-width: 767px) {
  .p-movie__content {
    margin-top: 4em;
  }
}

.p-movie__content video {
  width: 100%;
  height: 100%;
}

.p-movie__content::before, .p-movie__content::after {
  position: absolute;
  content: "";
}

@media (max-width: 1200px) {
  .p-movie__content::before, .p-movie__content::after {
    display: none;
  }
}

.p-movie__content::before {
  content: "MOVIE";
  font-family: 'Montserrat', sans-serif;
  font-size: 7em;
  color: #DFF0FA;
  top: 0;
  left: 0;
  transform: translate(-10%, -73%);
}

.p-movie__content::after {
  content: "";
  background-image: url(../common/img/new_lp/movie.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 360px;
  max-width: 100%;
  height: 100%;
  bottom: 0;
  right: 0;
  transform: translate(70%, 60%);
}

.p-movie__content .p-notice {
  text-align: left;
}

/* review
---------------------------------*/
.p-review__content {
  justify-content: space-around;
  margin-top: 100px;
  flex-wrap: nowrap;
}

@media (max-width: 767px) {
  .p-review__content {
    margin-top: 60px;
  }
}

.p-review__content .l-row__col04 {
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

@media (max-width: 767px) {
  .p-review__content .l-row__col04 {
    margin-top: 3em;
  }
}

.p-review__content .l-row__col04 .--h3 {
  margin-top: 1em;
  line-height: 1.2;
}

.p-review__content .l-row__col04 p {
  margin-top: 1em;
  text-align: left;
  padding: 1em;
}

@media (max-width: 767px) {
  .p-review__content .l-row__col04 p {
    margin-top: 0;
    padding: 0.5em;
  }
}

.p-reviewer {
  font-size: 0.5em;
  display: inline-block;
  width: 100%;
}

.p-reviewer__sir {
  font-size: 0.8em;
}

/* need
---------------------------------*/
.p-need__content {
  margin-top: 80px;
  flex-wrap: nowrap;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .p-need__content {
    margin-top: 60px;
  }
}

@media (max-width: 767px) {
  .p-need__content .p-exclamation {
    margin-top: 2em;
  }
}

.p-need__content .l-row__col06:nth-child(2) {
  margin-left: 2em;
}

@media (max-width: 767px) {
  .p-need__content .l-row__col06:nth-child(2) {
    margin-left: 0;
    margin-top: 4em;
  }
}

.p-need__content .l-row__col06 img {
  width: 100%;
}

.p-need__content .l-row__col06 a {
  text-decoration: underline;
}

/* application
---------------------------------*/
.p-application__content {
  margin-top: 100px;
  flex-wrap: nowrap;
  text-align: center;
}

@media (max-width: 767px) {
  .p-application__content {
    margin-top: 60px;
  }
}

.p-application__list {
  margin: 0 0.5em;
  position: relative;
}

@media (max-width: 767px) {
  .p-application__list {
    margin: 0;
    margin-top: 4em;
  }
}

.p-application__list::after {
  position: absolute;
  content: '';
  background: url(../common/img/new_lp/caret-right.svg) center center no-repeat;
  width: 3em;
  max-width: 100%;
  height: 3em;
  top: 25%;
  right: -2.2em;
}

@media (max-width: 767px) {
  .p-application__list::after {
    top: 103%;
    right: 50%;
    transform: rotate(90deg) translateY(-50%);
  }
}

.p-application__list:last-child::after {
  display: none;
}

.p-application__list span {
  font-family: 'Montserrat', sans-serif;
  font-size: 2em;
  color: #0062B5;
  font-style: italic;
  position: relative;
  z-index: 4;
}

.p-application__list img {
  margin-top: -1em;
  position: relative;
  z-index: 2;
}

.p-application__list .--h3 {
  margin-top: 0.5em;
}

.p-application__list p {
  margin-top: 1em;
  text-align: left;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  padding: 1.5em 1em 1em;
  margin-top: -1em;
}

/* fee
---------------------------------*/
.p-fee__monthly {
  flex-wrap: nowrap;
  justify-content: space-between;
  margin-top: 4em;
}

.p-fee__monthly .l-row__col04 {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 4px 10px 10px 0 rgba(0, 0, 0, 0.2);
  align-items: center;
  overflow: hidden;
  margin: 0 1em;
}

@media (max-width: 767px) {
  .p-fee__monthly .l-row__col04 {
    margin: 0;
    margin-top: 2em;
  }
}

.p-fee__monthly .l-row__col04 .p-fee__content {
  padding: 1em;
}

.p-fee__monthly .l-row__col04 .p-fee__content .u-text--blue {
  margin-left: 1em;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .p-fee__monthly .l-row__col04 .p-fee__content .u-text--blue {
    margin-left: 0.25em;
  }
}

@media (max-width: 767px) {
  .p-fee__monthly .l-row__col04 .p-fee__content .u-text--blue {
    margin-left: 0.5em;
  }
}

.p-fee__monthly .l-row__col04 .--h3 {
  text-align: center;
  padding: 1em 0;
  background-color: #0062B5;
  color: #fff;
}

.p-fee__monthly .l-row__col04:nth-child(2) .--h3 {
  background-color: #FFCF48;
  color: #3B4043;
}

.p-fee__monthly .l-row__col04:nth-child(3) .--h3 {
  background-color: #FC7A23;
}

.p-fee__excerpt {
  font-weight: 700;
  margin: 1.5em 0 1em;
}

.p-fee__initial {
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 4px 10px 10px 0 rgba(0, 0, 0, 0.2);
  flex-wrap: nowrap;
  align-items: center;
  margin-top: 4em;
  overflow: hidden;
}

.p-fee__initial .--h3 {
  display: inline-block;
  flex: 0 0 30%;
  text-align: center;
  background-color: #0062B5;
  color: #fff;
  padding: 1em;
}

@media (max-width: 767px) {
  .p-fee__initial .--h3 {
    display: block;
  }
}

.p-fee__initial .p-fee__cost {
  flex: 0 1 70%;
  text-align: center;
  padding: 1em;
}

.p-fee__machine {
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  padding: 0 1em 1em;
  box-shadow: 4px 10px 10px 0 rgba(0, 0, 0, 0.2);
  flex-wrap: nowrap;
  align-items: flex-start;
  margin-top: 6em;
}

.p-fee__machine img {
  flex: 0 0 30%;
  margin-top: -2em;
}

.p-fee__content {
  flex: 0 1 70%;
  margin: 0 auto;
  text-align: center;
}

.p-fee__content .--h3 {
  display: inline-block;
  background-color: #0062B5;
  color: #fff;
  border-radius: 10px;
  margin: 0 auto;
  margin-top: -2em;
  margin-bottom: 1.5em;
  text-align: center;
  padding: 0.5em 1em;
}

@media (max-width: 767px) {
  .p-fee__content .--h3 {
    margin-top: 1em;
  }
}

.p-fee__cost {
  font-weight: 700;
}

.p-fee__cost + .p-fee__cost {
  margin-top: 2em;
}

.p-fee__cost em {
  display: inline-block;
  margin-right: 3em;
}

@media (max-width: 1200px) {
  .p-fee__cost em {
    display: block;
    margin-right: 0;
  }
}

.p-fee__cost span {
  font-size: 0.75em;
  font-weight: 700;
  margin-left: 1em;
}

.p-fee__cost .u-text--blue {
  font-size: 2em;
  font-weight: 700;
  margin-left: 1em;
}

@media (max-width: 767px) {
  .p-fee__cost .u-text--blue {
    margin-left: 0.5em;
  }
}
/*# sourceMappingURL=lp-style.css.map */