@charset "UTF-8";
/************************************************
    Reset
*************************************************/
* {
  min-height: 0;
  min-width: 0; }

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, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, figure, figcaption, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
  padding: 0;
  border: 0;
  margin: 0; }

body {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%; }

h1, h2, h3, h4, h5, h6 {
  font-size: 1em;
  font-weight: normal; }

table, caption, th, td {
  font-weight: normal;
  text-align: left;
  empty-cells: show;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  border: 0;
  border-collapse: collapse;
  border-spacing: 0px;
  margin: 0; }

a img, iframe {
  border: none; }

a {
  color: inherit; }

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

input, textarea, select, button {
  font-family: inherit;
  font-size: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  vertical-align: bottom;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 100%;
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  margin: 0; }

input[type="text"],
textarea {
  width: 100%; }

address {
  font-style: normal; }

img {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  vertical-align: bottom;
  max-width: 100%;
  height: auto; }

br {
  opacity: 0; }

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

a {
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none; }

@media (min-width: 751px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none; } }

/************************************************
    共通設定
*************************************************/
* {
  -webkit-backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "M PLUS Rounded 1c", "ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO";
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden; }

html {
  font-size: 62.5%;
  display: block; }

body {
  font-size: 1rem;
  line-height: 1;
  position: relative;
  font-weight: 500;
  display: block; }

a:hover {
  opacity: 0.8;
  -webkit-transition: opacity .4s ease;
  -o-transition: opacity .4s ease;
  transition: opacity .4s ease; }

/*

@font-face {
    font-family: 'name';
    src: url("../fonts/aaa.ttf") format('truetype'),
    url("../fonts/aaa.woff2") format("woff2"),
    url("../fonts/aaa.woff") format('woff'),
    url("../fonts/aaa.otf") format('opentype'),
    url('../fonts/aaa.svg#svgFontName') format('svg');
}

*/
/*========= ナビゲーションのためのCSS ===============*/
#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top: 0;
  right: -120%;
  width: 90%;
  max-width: 400px;
  height: 100vh;
  /*ナビの高さ*/
  background: #4A99DD;
  /*動き*/
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s; }

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  right: 0; }

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 90%;
  max-width: 400px;
  height: 100vh;
  /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch; }

/*ナビゲーション*/
#g-nav ul {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  width: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

/*リストのレイアウト設定*/
#g-nav li {
  list-style: none;
  text-align: center; }

#g-nav li a {
  color: #ffffff;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
  font-size: 20px;
  width: 100%; }

/*========= ボタンのためのCSS ===============*/
.openbtn1 {
  position: relative;
  z-index: 9999;
  /*ボタンを最前面に*/
  cursor: pointer;
  width: 90px;
  height: 90px; }
  .openbtn1 span {
    display: inline-block;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    position: absolute;
    left: 25px;
    height: 4px;
    border-radius: 2px;
    background-color: #4A99DD;
    width: 45%; }
    .openbtn1 span:nth-of-type(1) {
      top: 27px; }
    .openbtn1 span:nth-of-type(2) {
      top: 41px; }
    .openbtn1 span:nth-of-type(3) {
      top: 56px; }
  .openbtn1.active span {
    background-color: #ffffff; }
    .openbtn1.active span:nth-of-type(1) {
      top: 32px;
      left: 32px;
      -webkit-transform: translateY(11px) rotate(-45deg);
      -ms-transform: translateY(11px) rotate(-45deg);
      transform: translateY(11px) rotate(-45deg);
      width: 45%; }
    .openbtn1.active span:nth-of-type(2) {
      opacity: 0; }
    .openbtn1.active span:nth-of-type(3) {
      top: 54px;
      left: 32px;
      -webkit-transform: translateY(-11px) rotate(45deg);
      -ms-transform: translateY(-11px) rotate(45deg);
      transform: translateY(-11px) rotate(45deg);
      width: 45%; }
  @media screen and (max-width: 768px) {
    .openbtn1 {
      width: 60px;
      height: 60px; }
      .openbtn1 span {
        left: 15.5px; }
        .openbtn1 span:nth-of-type(1) {
          top: 15px; }
        .openbtn1 span:nth-of-type(2) {
          top: 23px; }
        .openbtn1 span:nth-of-type(3) {
          top: 31px; }
      .openbtn1.active span {
        background-color: #ffffff; }
        .openbtn1.active span:nth-of-type(1) {
          top: 18px;
          left: 18px;
          -webkit-transform: translateY(6px) rotate(-45deg);
          -ms-transform: translateY(6px) rotate(-45deg);
          transform: translateY(6px) rotate(-45deg); }
        .openbtn1.active span:nth-of-type(2) {
          opacity: 0; }
        .openbtn1.active span:nth-of-type(3) {
          top: 30px;
          left: 18px;
          -webkit-transform: translateY(-6px) rotate(45deg);
          -ms-transform: translateY(-6px) rotate(45deg);
          transform: translateY(-6px) rotate(45deg); } }

.l-header {
  width: 100%;
  height: 90px;
  background: #ffffff;
  padding: 0px;
  -webkit-box-shadow: 0 1px 5px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 5px 1px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 99; }
  .l-header h1 {
    position: relative;
    height: 60px;
    padding-left: 20px; }
    .l-header h1 img {
      position: relative;
      height: 100%;
      width: auto; }
  .l-header .l-header_btns {
    position: relative;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end; }
    .l-header .l-header_btns .l-header_btn {
      position: relative;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      height: 100%;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      padding: 0 15px;
      min-width: 120px; }
      .l-header .l-header_btns .l-header_btn.l-header_btn-line {
        background-color: #4CC764; }
      .l-header .l-header_btns .l-header_btn.l-header_btn-contact {
        background-color: #EB5184; }
      .l-header .l-header_btns .l-header_btn.l-header_btn-tel {
        background-color: #ffffff; }
  @media screen and (max-width: 768px) {
    .l-header {
      height: 50px; }
      .l-header h1 {
        height: 36px;
        padding-left: 10px; }
      .l-header .l-header_btns .l-header_btn {
        padding: 0;
        min-width: auto;
        width: 50px; }
        .l-header .l-header_btns .l-header_btn.l-header_btn-contact {
          display: none; }
        .l-header .l-header_btns .l-header_btn.l-header_btn-tel {
          background-color: #EB5184; } }

.l-footer {
  background: #E3EDF5;
  position: relative; }
  .l-footer .l-footer_content {
    padding: 40px 0 90px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    .l-footer .l-footer_content .l-footer_left {
      position: relative;
      width: 40%;
      max-width: 390px; }
      .l-footer .l-footer_content .l-footer_left h1 {
        position: relative;
        max-width: 390px;
        width: 100%;
        margin-bottom: 30px; }
      .l-footer .l-footer_content .l-footer_left .l-footer_left-contact {
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center; }
        .l-footer .l-footer_content .l-footer_left .l-footer_left-contact a {
          display: block; }
          .l-footer .l-footer_content .l-footer_left .l-footer_left-contact a.l-footer_left-contact-tel {
            position: relative;
            width: 100%;
            max-width: calc(100% - 100px); }
            .l-footer .l-footer_content .l-footer_left .l-footer_left-contact a.l-footer_left-contact-tel img {
              position: relative;
              width: 100%;
              max-width: 232px; }
          .l-footer .l-footer_content .l-footer_left .l-footer_left-contact a.l-footer_left-contact-instagram {
            width: 30px;
            margin: 0 5px; }
          .l-footer .l-footer_content .l-footer_left .l-footer_left-contact a.l-footer_left-contact-line {
            width: 30px;
            margin: 0 5px; }
    .l-footer .l-footer_content .l-footer_right {
      position: relative;
      width: 55%;
      max-width: 586px; }
      .l-footer .l-footer_content .l-footer_right .l-footer_sitemap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between; }
        .l-footer .l-footer_content .l-footer_right .l-footer_sitemap .l-footer_sitemap-sec {
          position: relative;
          width: 30%; }
          .l-footer .l-footer_content .l-footer_right .l-footer_sitemap .l-footer_sitemap-sec .l-footer_sitemap-list {
            position: relative;
            margin-bottom: 20px; }
            .l-footer .l-footer_content .l-footer_right .l-footer_sitemap .l-footer_sitemap-sec .l-footer_sitemap-list dt {
              position: relative;
              width: 100%;
              border-bottom: solid 1px #EB5184;
              color: #EB5184;
              font-size: 1.4rem;
              font-weight: bold;
              margin-bottom: 10px;
              padding-bottom: 5px; }
            .l-footer .l-footer_content .l-footer_right .l-footer_sitemap .l-footer_sitemap-sec .l-footer_sitemap-list dd {
              position: relative;
              color: #000000;
              font-size: 1.2rem;
              margin-bottom: 10px; }
              .l-footer .l-footer_content .l-footer_right .l-footer_sitemap .l-footer_sitemap-sec .l-footer_sitemap-list dd::before {
                position: relative;
                display: inline-block;
                content: "-";
                margin-right: 3px; }
  .l-footer .l-footer_copy {
    position: relative;
    width: 100%;
    height: auto;
    padding: 8px;
    text-align: center;
    background-color: #4A99DD; }
    .l-footer .l-footer_copy small {
      position: relative;
      font-size: 1.1em;
      color: #ffffff;
      letter-spacing: 0.2em; }
  @media screen and (max-width: 768px) {
    .l-footer .l-footer_content {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      padding-bottom: 100px; }
      .l-footer .l-footer_content .l-footer_left {
        width: 90%;
        max-width: 320px;
        margin-bottom: 30px; }
        .l-footer .l-footer_content .l-footer_left h1 {
          margin-bottom: 30px; }
        .l-footer .l-footer_content .l-footer_left .l-footer_left-contact {
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          justify-content: center;
          -ms-flex-wrap: wrap;
          flex-wrap: wrap; }
          .l-footer .l-footer_content .l-footer_left .l-footer_left-contact a.l-footer_left-contact-tel {
            width: 100%;
            margin: 0 auto 20px;
            display: block;
            max-width: none;
            text-align: center; }
          .l-footer .l-footer_content .l-footer_left .l-footer_left-contact a.l-footer_left-contact-instagram {
            width: 40px;
            margin: 0 20px; }
            .l-footer .l-footer_content .l-footer_left .l-footer_left-contact a.l-footer_left-contact-instagram img {
              position: relative;
              width: 100%; }
          .l-footer .l-footer_content .l-footer_left .l-footer_left-contact a.l-footer_left-contact-line {
            width: 40px;
            margin: 0 20px; }
            .l-footer .l-footer_content .l-footer_left .l-footer_left-contact a.l-footer_left-contact-line img {
              position: relative;
              width: 100%; }
      .l-footer .l-footer_content .l-footer_right {
        width: 80%; }
        .l-footer .l-footer_content .l-footer_right .l-footer_sitemap {
          -ms-flex-wrap: wrap;
          flex-wrap: wrap; }
          .l-footer .l-footer_content .l-footer_right .l-footer_sitemap .l-footer_sitemap-sec {
            width: 100%; }
            .l-footer .l-footer_content .l-footer_right .l-footer_sitemap .l-footer_sitemap-sec .l-footer_sitemap-list {
              display: -webkit-box;
              display: -ms-flexbox;
              display: flex;
              -ms-flex-wrap: wrap;
              flex-wrap: wrap; }
              .l-footer .l-footer_content .l-footer_right .l-footer_sitemap .l-footer_sitemap-sec .l-footer_sitemap-list dt {
                width: 100%; }
              .l-footer .l-footer_content .l-footer_right .l-footer_sitemap .l-footer_sitemap-sec .l-footer_sitemap-list dd {
                min-width: 50%; } }

.l-inner {
  position: relative;
  width: 100%;
  max-width: 1030px;
  padding: 0 15px;
  margin: 0 auto; }

.l-fix-btn {
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 50;
  width: 260px;
  height: auto; }
  @media screen and (max-width: 768px) {
    .l-fix-btn {
      width: 180px;
      bottom: 35px; } }

@media screen and (min-width: 769px) {
  .l-body {
    min-width: 960px;
    position: relative;
    padding-top: 90px; } }

@media screen and (max-width: 768px) {
  .l-body {
    position: relative;
    padding-top: 50px; } }

.c-btn {
  position: relative;
  height: 60px;
  width: 100%;
  border: solid 1px #999;
  color: #000000;
  background-color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  border-radius: 3px;
  -webkit-transition: all .6s ease;
  -o-transition: all .6s ease;
  transition: all .6s ease; }
  .c-btn.c-btn-arw .fa {
    position: absolute;
    top: 50%;
    right: 10px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%); }
  .c-btn.c-btn-pink {
    color: #EB5184;
    border-color: #EB5184; }
    .c-btn.c-btn-pink:hover {
      background-color: #EB5184;
      color: #ffffff; }
  .c-btn.c-btn-blue {
    color: #4A99DD;
    border-color: #4A99DD; }
    .c-btn.c-btn-blue:hover {
      background-color: #4A99DD;
      color: #ffffff; }
  .c-btn.c-btn-min {
    height: 40px; }
  @media screen and (max-width: 768px) {
    .c-btn {
      height: 40px;
      font-size: 1.4rem; } }

.p-index_heading {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
  backgroud-color: #ffffff; }
  .p-index_heading .p-index_heading-title {
    position: relative;
    font-weight: 900;
    font-size: 40px;
    margin-right: 20px; }
  .p-index_heading .p-index_heading-description {
    position: relative;
    font-size: 1.4rem;
    line-height: 1.6em;
    letter-spacing: 0.1em;
    font-weight: bold; }
  @media screen and (max-width: 768px) {
    .p-index_heading {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      justify-content: flex-start;
      margin-bottom: 20px; }
      .p-index_heading .p-index_heading-title {
        margin-right: 0;
        width: 100%;
        margin-bottom: 20px;
        font-size: 2.2rem; }
      .p-index_heading .p-index_heading-description {
        width: 100%;
        font-size: 1.3rem; }
        .p-index_heading .p-index_heading-description br {
          display: none; } }

.p-banner-kajimeru {
  position: relative;
  margin-bottom: 80px;
  text-align: center; }

.p-banner-paypay {
  position: relative;
  margin-bottom: 80px;
  text-align: center; }

.p-heading-wrap {
  position: relative;
  width: 100%;
  margin-bottom: 80px; }
  @media screen and (max-width: 768px) {
    .p-heading-wrap {
      margin-bottom: 50px; } }

.p-page-heading {
  position: relative;
  width: 100%;
  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;
  height: 160px;
  background-image: url(../img/common/page-header.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover; }
  .p-page-heading h1 {
    position: relative;
    font-size: 3.2rem;
    font-weight: bold;
    letter-spacing: 0.2em;
    color: #ffffff; }
  @media screen and (max-width: 768px) {
    .p-page-heading {
      height: 100px; }
      .p-page-heading h1 {
        font-size: 2.2rem;
        letter-spacing: 0.1em; } }

.p-page-breadcrumbs {
  position: relative;
  padding: 10px 0;
  background-color: #E3EDF5; }
  .p-page-breadcrumbs ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    .p-page-breadcrumbs ul li {
      position: relative;
      padding: 0 10px; }
      .p-page-breadcrumbs ul li span, .p-page-breadcrumbs ul li i, .p-page-breadcrumbs ul li a {
        font-size: 12px;
        letter-spacing: 0.1em; }
      .p-page-breadcrumbs ul li a {
        color: #9B9B9B; }
  @media screen and (max-width: 768px) {
    .p-page-breadcrumbs {
      padding: 6px 0; }
      .p-page-breadcrumbs ul li {
        padding: 0 6px; }
        .p-page-breadcrumbs ul li span, .p-page-breadcrumbs ul li i, .p-page-breadcrumbs ul li a {
          font-size: 11px; } }

.p-kv {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 45%; }
  .p-kv .p-kv-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    z-index: 1;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: left top;
    object-position: left top; }
  .p-kv .p-kv-copy {
    position: absolute;
    width: 46%;
    max-width: 678px;
    height: auto;
    z-index: 2;
    top: 50%;
    left: 50%;
    -webkit-transform: translate3d(0%, -50%, 0);
    transform: translate3d(0%, -50%, 0); }
  @media screen and (max-width: 640px) {
    .p-kv {
      padding-top: 60%; }
      .p-kv .p-kv-img {
        width: 120%;
        max-width: none;
        -o-object-position: left center;
        object-position: left center; }
      .p-kv .p-kv-copy {
        width: 70%;
        left: 28%; } }

.p-index-works {
  position: relative;
  margin-top: 80px;
  z-index: 0;
  margin-bottom: 100px; }
  .p-index-works::after {
    content: '';
    display: block;
    width: 100%;
    height: calc(100% - 30px);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: #E3EDF5; }
  .p-index-works .p-index-works_heading {
    position: relative;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-bottom: 30px; }
  .p-index-works .p-index-works_body {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 50px; }
    .p-index-works .p-index-works_body .p-index-works_item {
      position: relative;
      width: 30%;
      background-color: #ffffff;
      border-radius: 12px;
      padding: 30px 30px; }
      .p-index-works .p-index-works_body .p-index-works_item .p-index-works_item-txt {
        position: absolute;
        top: 0;
        left: 15px;
        padding: 5px 10px;
        border-radius: 6px;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        font-size: 1.6rem;
        width: 80px;
        text-align: center;
        z-index: 2; }
      .p-index-works .p-index-works_body .p-index-works_item .p-index-works_item-after {
        position: relative;
        width: 100%;
        margin-bottom: 30px; }
        .p-index-works .p-index-works_body .p-index-works_item .p-index-works_item-after img {
          width: 100%; }
        .p-index-works .p-index-works_body .p-index-works_item .p-index-works_item-after .p-index-works_item-txt {
          background-color: #EB5184;
          color: #ffffff; }
      .p-index-works .p-index-works_body .p-index-works_item .p-index-works_item-before {
        position: relative;
        width: 85%;
        margin-bottom: 20px; }
        .p-index-works .p-index-works_body .p-index-works_item .p-index-works_item-before img {
          width: 100%; }
        .p-index-works .p-index-works_body .p-index-works_item .p-index-works_item-before .p-index-works_item-txt {
          background-color: #E3EDF5; }
      .p-index-works .p-index-works_body .p-index-works_item .p-index-works_item-detail {
        position: relative; }
        .p-index-works .p-index-works_body .p-index-works_item .p-index-works_item-detail p {
          position: relative;
          font-size: 1.4rem; }
          .p-index-works .p-index-works_body .p-index-works_item .p-index-works_item-detail p span {
            font-size: 1.2em;
            color: #4A99DD;
            font-weight: bold;
            letter-spacing: 0.1em; }
  .p-index-works .p-index-works_foot {
    position: relative;
    width: 100%; }
    .p-index-works .p-index-works_foot .p-index-works_foot-btn {
      max-width: 320px;
      margin: 0 auto; }
  @media screen and (max-width: 768px) {
    .p-index-works {
      margin-top: 40px; }
      .p-index-works .p-index-works_heading {
        -webkit-transform: translateY(-15%);
        -ms-transform: translateY(-15%);
        transform: translateY(-15%);
        margin-bottom: 20px; }
      .p-index-works .p-index-works_body {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column; }
        .p-index-works .p-index-works_body .p-index-works_item {
          width: 100%;
          padding: 30px 15px;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: justify;
          -ms-flex-pack: justify;
          justify-content: space-between;
          -ms-flex-wrap: wrap;
          flex-wrap: wrap;
          -webkit-box-align: end;
          -ms-flex-align: end;
          align-items: flex-end; }
          .p-index-works .p-index-works_body .p-index-works_item:not(:last-of-type) {
            margin-bottom: 40px; }
          .p-index-works .p-index-works_body .p-index-works_item .p-index-works_item-txt {
            left: 5px;
            width: auto;
            padding: 3px 6px;
            font-size: 1.4rem; }
          .p-index-works .p-index-works_body .p-index-works_item .p-index-works_item-after {
            width: 60%;
            margin-bottom: 0; }
          .p-index-works .p-index-works_body .p-index-works_item .p-index-works_item-before {
            width: 37%;
            margin-bottom: 0; }
          .p-index-works .p-index-works_body .p-index-works_item .p-index-works_item-detail {
            margin-top: 20px; }
            .p-index-works .p-index-works_body .p-index-works_item .p-index-works_item-detail p {
              font-size: 1.2rem; }
              .p-index-works .p-index-works_body .p-index-works_item .p-index-works_item-detail p span {
                font-size: 1.1em;
                letter-spacing: 0.05em; }
      .p-index-works .p-index-works_foot {
        position: relative;
        width: 100%; }
        .p-index-works .p-index-works_foot .p-index-works_foot-btn {
          max-width: 320px;
          margin: 0 auto; } }

.p-index-cm {
  position: relative;
  z-index: 0;
  margin-bottom: 100px;
  padding-bottom: 60px; }
  .p-index-cm .p-index-cm_content {
    position: relative;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 15px 60px; }
    .p-index-cm .p-index-cm_content::after {
      content: '';
      display: block;
      width: 100%;
      height: calc(100% - 3rem);
      position: absolute;
      top: 3rem;
      left: 0;
      z-index: -1;
      background-color: #FFF3F7; }
  .p-index-cm .p-index-cm_heading {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center; }
    .p-index-cm .p-index-cm_heading .p-index-cm_heading-title {
      margin-bottom: 20px;
      margin-right: 0; }
  .p-index-cm .p-index-cm_body {
    position: relative;
    width: 100%; }
    .p-index-cm .p-index-cm_body .p-index-cm_body-video {
      position: relative;
      width: 100%;
      max-width: 680px;
      height: auto;
      margin: 0 auto; }
      .p-index-cm .p-index-cm_body .p-index-cm_body-video::before {
        content: '';
        display: block;
        position: relative;
        width: 100%;
        padding-top: 56.25%; }
      .p-index-cm .p-index-cm_body .p-index-cm_body-video iframe {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0; }
  @media screen and (max-width: 768px) {
    .p-index-cm {
      margin-bottom: 50px;
      padding-bottom: 50px; }
      .p-index-cm .p-index-cm_content {
        padding: 0 15px 40px; }
        .p-index-cm .p-index-cm_content::after {
          height: calc(100% - 1.6rem);
          top: 1.6rem; }
      .p-index-cm .p-index-cm_heading .p-index-cm_heading-description br {
        display: inline; } }

.p-index-service {
  position: relative;
  z-index: 0;
  margin-bottom: 100px;
  background-color: #FFF3F7;
  padding-bottom: 60px; }
  .p-index-service .p-index-service_heading {
    position: relative;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-bottom: 30px; }
  .p-index-service .p-index-service_body {
    position: relative; }
    .p-index-service .p-index-service_body .p-index-service_content {
      position: relative;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      width: 100%;
      margin: 0 auto;
      margin-bottom: 40px; }
      .p-index-service .p-index-service_body .p-index-service_content .p-index-service_item {
        position: relative;
        width: 24%;
        max-width: 260px;
        text-align: center;
        background-color: #ffffff;
        border-radius: 9px;
        padding: 30px 15px; }
        .p-index-service .p-index-service_body .p-index-service_content .p-index-service_item img {
          position: relative;
          display: block;
          max-width: 150px;
          width: 70%;
          margin: 0 auto;
          margin-bottom: 20px; }
        .p-index-service .p-index-service_body .p-index-service_content .p-index-service_item h3 {
          font-size: 2rem;
          font-weight: bold;
          margin-bottom: 20px; }
    .p-index-service .p-index-service_body .p-index-service_flow {
      position: relative;
      width: 100%;
      margin: 0 auto;
      border: solid 2px #4A99DD;
      border-radius: 9px;
      padding: 40px 15px 40px;
      background-color: #ffffff;
      text-align: center; }
      .p-index-service .p-index-service_body .p-index-service_flow h4 {
        font-size: 2.4rem;
        letter-spacing: 0.1em;
        font-weight: bold;
        margin-bottom: 30px; }
  @media screen and (max-width: 768px) {
    .p-index-service .p-index-service_heading {
      -webkit-transform: translateY(-15%);
      -ms-transform: translateY(-15%);
      transform: translateY(-15%);
      margin-bottom: 20px; }
    .p-index-service .p-index-service_body .p-index-service_content {
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
      .p-index-service .p-index-service_body .p-index-service_content .p-index-service_item {
        width: 48%;
        max-width: none;
        margin-bottom: 30px;
        padding: 30px 10px; }
        .p-index-service .p-index-service_body .p-index-service_content .p-index-service_item h3 {
          font-size: 1.5rem; }
    .p-index-service .p-index-service_body .p-index-service_flow {
      position: relative;
      width: 100%;
      margin: 0 auto;
      border: solid 2px #4A99DD;
      border-radius: 9px;
      padding: 40px 15px 40px;
      background-color: #ffffff;
      text-align: center; }
      .p-index-service .p-index-service_body .p-index-service_flow h4 {
        font-size: 2.4rem;
        letter-spacing: 0.1em;
        font-weight: bold;
        margin-bottom: 30px; } }
  @media screen and (max-width: 640px) {
    .p-index-service .p-index-service_body .p-index-service_content .p-index-service_item {
      width: 100%; } }

.p-index-feature {
  position: relative;
  z-index: 0;
  margin-bottom: 100px; }
  .p-index-feature .p-index-feature_heading {
    position: relative;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-bottom: 30px; }
  .p-index-feature .p-index-feature_body {
    position: relative; }
    .p-index-feature .p-index-feature_body .p-index-feature_item {
      position: relative;
      z-index: 1;
      padding: 50px 20px; }
      .p-index-feature .p-index-feature_body .p-index-feature_item:not(:last-of-type) {
        margin-bottom: 80px; }
      .p-index-feature .p-index-feature_body .p-index-feature_item:nth-child(odd) .p-index-feature_item-img {
        left: 20px; }
      .p-index-feature .p-index-feature_body .p-index-feature_item:nth-child(odd) .p-index-feature_item-content {
        margin: auto 0 auto auto; }
      .p-index-feature .p-index-feature_body .p-index-feature_item:nth-child(even) .p-index-feature_item-img {
        right: 20px; }
      .p-index-feature .p-index-feature_body .p-index-feature_item:nth-child(even) .p-index-feature_item-content {
        margin: auto auto auto 0; }
      .p-index-feature .p-index-feature_body .p-index-feature_item::after {
        content: '';
        display: block;
        width: 100%;
        height: 40%;
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: -1;
        background-color: #FFF7CE; }
      .p-index-feature .p-index-feature_body .p-index-feature_item .p-index-feature_item-img {
        position: absolute;
        width: 45%;
        height: auto;
        top: 0; }
        .p-index-feature .p-index-feature_body .p-index-feature_item .p-index-feature_item-img img {
          width: 100%; }
      .p-index-feature .p-index-feature_body .p-index-feature_item .p-index-feature_item-content {
        position: relative;
        background-color: #ffffff;
        padding: 40px 40px;
        border-radius: 9px;
        width: 60%; }
        .p-index-feature .p-index-feature_body .p-index-feature_item .p-index-feature_item-content h3 {
          font-size: 2.4rem;
          font-weight: bold;
          letter-spacing: 0.05em;
          line-height: 1.6em;
          margin-bottom: 15px; }
          .p-index-feature .p-index-feature_body .p-index-feature_item .p-index-feature_item-content h3 span {
            padding-bottom: 5px;
            background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(0, #FFF7CE));
            background-image: -webkit-linear-gradient(transparent 50%, #FFF7CE 0);
            background-image: -o-linear-gradient(transparent 50%, #FFF7CE 0);
            background-image: linear-gradient(transparent 50%, #FFF7CE 0); }
        .p-index-feature .p-index-feature_body .p-index-feature_item .p-index-feature_item-content p {
          font-size: 1.6rem;
          line-height: 1.6em;
          letter-spacing: 0.05em;
          text-align: justify; }
        .p-index-feature .p-index-feature_body .p-index-feature_item .p-index-feature_item-content .p-index-feature_item-areas {
          position: relative;
          margin: 20px auto 20px;
          width: 100%;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: start;
          -ms-flex-pack: start;
          justify-content: flex-start;
          -ms-flex-wrap: wrap;
          flex-wrap: wrap; }
          .p-index-feature .p-index-feature_body .p-index-feature_item .p-index-feature_item-content .p-index-feature_item-areas li {
            position: relative;
            font-size: 1.4rem;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            width: 23%;
            min-width: 80px;
            height: 25px;
            border-radius: 12.5px;
            color: #ffffff;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            background-color: #EB5184;
            margin-right: 1%;
            margin-left: 1%;
            margin-bottom: 10px;
            padding: 3px 13px;
            word-break: keep-all; }
            .p-index-feature .p-index-feature_body .p-index-feature_item .p-index-feature_item-content .p-index-feature_item-areas li:last-of-type {
              width: auto;
              color: #9B9B9B;
              font-size: 1.2rem;
              background-color: transparent;
              letter-spacing: 0.1em; }
        .p-index-feature .p-index-feature_body .p-index-feature_item .p-index-feature_item-content .p-index-feature_item-content_btn {
          position: relative;
          max-width: 200px;
          margin: 0 auto; }
  @media screen and (max-width: 768px) {
    .p-index-feature .p-index-feature_heading {
      -webkit-transform: translateY(-15%);
      -ms-transform: translateY(-15%);
      transform: translateY(-15%);
      margin-bottom: 20px;
      text-align: center; }
    .p-index-feature .p-index-feature_body .p-index-feature_item {
      padding: 0 10px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column; }
      .p-index-feature .p-index-feature_body .p-index-feature_item:not(:last-of-type) {
        margin-bottom: 60px; }
      .p-index-feature .p-index-feature_body .p-index-feature_item:nth-child(odd) .p-index-feature_item-img {
        left: auto; }
      .p-index-feature .p-index-feature_body .p-index-feature_item:nth-child(odd) .p-index-feature_item-content {
        margin: 0 auto;
        margin-bottom: -20px; }
      .p-index-feature .p-index-feature_body .p-index-feature_item:nth-child(even) .p-index-feature_item-img {
        right: auto; }
      .p-index-feature .p-index-feature_body .p-index-feature_item:nth-child(even) .p-index-feature_item-content {
        margin: 0 auto;
        margin-bottom: -20px; }
      .p-index-feature .p-index-feature_body .p-index-feature_item::after {
        height: 60%;
        top: 50px;
        bottom: auto; }
      .p-index-feature .p-index-feature_body .p-index-feature_item .p-index-feature_item-img {
        position: relative;
        width: 80%;
        height: auto;
        top: auto;
        z-index: 2;
        margin: 0 auto;
        margin-bottom: -40px; }
      .p-index-feature .p-index-feature_body .p-index-feature_item .p-index-feature_item-content {
        padding: 50px 20px 40px;
        width: 100%;
        border: solid 2px #FFF7CE; }
        .p-index-feature .p-index-feature_body .p-index-feature_item .p-index-feature_item-content h3 {
          font-size: 1.8rem; }
        .p-index-feature .p-index-feature_body .p-index-feature_item .p-index-feature_item-content p {
          font-size: 1.4rem; }
        .p-index-feature .p-index-feature_body .p-index-feature_item .p-index-feature_item-content .p-index-feature_item-areas li {
          font-size: 1.2rem;
          height: 20px;
          width: 18%;
          border-radius: 10px; }
          .p-index-feature .p-index-feature_body .p-index-feature_item .p-index-feature_item-content .p-index-feature_item-areas li:last-of-type {
            font-size: 1.1rem;
            padding: 0 3px; }
        .p-index-feature .p-index-feature_body .p-index-feature_item .p-index-feature_item-content .p-index-feature_item-content_btn {
          position: relative;
          max-width: 200px;
          margin: 0 auto; } }

.p-index-info {
  position: relative;
  z-index: 0;
  margin-bottom: 100px;
  padding-bottom: 60px;
  background-color: #F7F7F7; }
  .p-index-info .p-index-info_heading {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-bottom: 30px; }
    .p-index-info .p-index-info_heading h2 {
      margin-right: 0; }
  .p-index-info .p-index-info_body {
    max-width: 800px;
    margin: 0 auto;
    border-top: solid 1px #D8D8D8; }
    .p-index-info .p-index-info_body .p-index-info_item {
      position: relative;
      border-bottom: solid 1px #D8D8D8;
      padding: 15px 0 30px; }
      .p-index-info .p-index-info_body .p-index-info_item time {
        position: relative;
        text-align: left;
        display: block;
        color: #4A99DD;
        font-size: 1.4rem;
        margin-bottom: 10px; }
      .p-index-info .p-index-info_body .p-index-info_item p {
        position: relative;
        text-align: left;
        color: #000000;
        font-size: 1.6rem;
        margin-bottom: 15px; }
      .p-index-info .p-index-info_body .p-index-info_item a {
        position: absolute;
        display: block;
        right: 0;
        bottom: 15px;
        font-size: 1.6rem;
        color: #4A99DD;
        text-decoration: underline; }
        .p-index-info .p-index-info_body .p-index-info_item a i {
          text-decoration: inherit; }
  @media screen and (max-width: 768px) {
    .p-index-info {
      margin-bottom: 60px; }
      .p-index-info .p-index-info_heading {
        -webkit-transform: translateY(-15%);
        -ms-transform: translateY(-15%);
        transform: translateY(-15%);
        margin-bottom: 20px;
        text-align: center; }
        .p-index-info .p-index-info_heading h2 {
          margin-right: 0; }
      .p-index-info .p-index-info_body .p-index-info_item time {
        font-size: 1.2rem; }
      .p-index-info .p-index-info_body .p-index-info_item p {
        font-size: 1.4rem; }
      .p-index-info .p-index-info_body .p-index-info_item a {
        font-size: 1.4rem; } }

.p-index-instagram {
  position: relative;
  z-index: 0;
  max-width: 1120px;
  margin: 0 auto;
  margin-bottom: 100px; }
  .p-index-instagram .p-index-instagram_heading {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    margin-bottom: -30px;
    z-index: 2; }
    .p-index-instagram .p-index-instagram_heading h2 {
      margin-right: 0;
      padding: 15px 40px;
      background-color: #ffffff;
      border-radius: 6px;
      letter-spacing: 0.1em; }
  .p-index-instagram .p-index-instagram_body {
    position: relative;
    margin-bottom: -30px;
    z-index: 1; }
  .p-index-instagram .p-index-instagram_foot {
    position: relative;
    z-index: 2; }
    .p-index-instagram .p-index-instagram_foot .p-index-instagram_foot-btn {
      position: relative;
      max-width: 540px;
      margin: 0 auto; }
  @media screen and (max-width: 768px) {
    .p-index-instagram {
      margin-bottom: 60px; }
      .p-index-instagram .p-index-instagram_heading {
        margin-bottom: -15px;
        text-align: center; }
        .p-index-instagram .p-index-instagram_heading h2 {
          margin-right: 0;
          padding: 15px 20px;
          background-color: #ffffff;
          border-radius: 6px;
          letter-spacing: 0.1em;
          max-width: 200px;
          margin-bottom: 0; }
      .p-index-instagram .p-index-instagram_body {
        margin-bottom: -20px; }
      .p-index-instagram .p-index-instagram_foot .p-index-instagram_foot-btn {
        max-width: 240px; } }

.p-works {
  position: relative;
  margin-bottom: 80px; }
  .p-works .p-work-item {
    position: relative;
    width: 100%;
    margin: 0 auto 60px;
    background-color: #ffffff;
    border-radius: 9px;
    -webkit-box-shadow: 0 2px 10px 1px rgba(0, 0, 0, 0.3);
    box-shadow: 0 2px 10px 1px rgba(0, 0, 0, 0.3);
    padding: 30px; }
    .p-works .p-work-item .p-work-item_heading {
      position: relative;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      justify-content: flex-start;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      margin: 0 auto 35px; }
      .p-works .p-work-item .p-work-item_heading h2 {
        font-size: 2.8rem;
        letter-spacing: 0.1em;
        font-weight: bold;
        margin-right: 20px; }
      .p-works .p-work-item .p-work-item_heading h3 {
        height: 28px;
        width: auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 0 20px;
        background-color: #4A99DD;
        color: #ffffff;
        font-weight: bold;
        font-size: 1.3rem;
        letter-spacing: 0.1em;
        border-radius: 6px; }
    .p-works .p-work-item .p-work-item_body {
      position: relative;
      width: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between; }
      .p-works .p-work-item .p-work-item_body .p-work-item_img {
        position: relative;
        width: 30%; }
        .p-works .p-work-item .p-work-item_body .p-work-item_img .p-work-item_img-txt {
          position: absolute;
          top: 0;
          left: 15px;
          padding: 5px 10px;
          border-radius: 6px;
          -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
          transform: translateY(-50%);
          font-size: 1.6rem;
          width: 80px;
          text-align: center;
          z-index: 2; }
        .p-works .p-work-item .p-work-item_body .p-work-item_img .p-work-item_img-after {
          position: relative;
          width: 100%;
          margin-bottom: 30px; }
          .p-works .p-work-item .p-work-item_body .p-work-item_img .p-work-item_img-after img {
            width: 100%; }
          .p-works .p-work-item .p-work-item_body .p-work-item_img .p-work-item_img-after .p-work-item_img-txt {
            background-color: #EB5184;
            color: #ffffff; }
        .p-works .p-work-item .p-work-item_body .p-work-item_img .p-work-item_img-before {
          position: relative;
          width: 85%;
          margin-bottom: 20px; }
          .p-works .p-work-item .p-work-item_body .p-work-item_img .p-work-item_img-before img {
            width: 100%; }
          .p-works .p-work-item .p-work-item_body .p-work-item_img .p-work-item_img-before .p-work-item_img-txt {
            background-color: #E3EDF5; }
      .p-works .p-work-item .p-work-item_body .p-work-item_detail {
        position: relative;
        width: 65%; }
        .p-works .p-work-item .p-work-item_body .p-work-item_detail .p-work-item_detail-text {
          position: relative;
          padding-bottom: 20px;
          border-bottom: solid 2px #4A99DD;
          margin-bottom: 30px; }
          .p-works .p-work-item .p-work-item_body .p-work-item_detail .p-work-item_detail-text p {
            position: relative;
            font-size: 1.6rem;
            letter-spacing: 0.1em; }
        .p-works .p-work-item .p-work-item_body .p-work-item_detail .p-work-item_detail-data {
          position: relative;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: start;
          -ms-flex-pack: start;
          justify-content: flex-start;
          -ms-flex-wrap: wrap;
          flex-wrap: wrap; }
          .p-works .p-work-item .p-work-item_body .p-work-item_detail .p-work-item_detail-data dl {
            position: relative;
            width: 50%;
            border: solid 1px #ffffff;
            background-color: #E3EDF5;
            padding: 10px;
            font-size: 1.6rem;
            letter-spacing: 0.05em;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: justify;
            -ms-flex-pack: justify;
            justify-content: space-between;
            border-radius: 3px; }
  @media screen and (max-width: 768px) {
    .p-works .p-work-item {
      margin: 0 auto 50px;
      padding: 20px 15px; }
      .p-works .p-work-item .p-work-item_heading {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin: 0 auto 30px; }
        .p-works .p-work-item .p-work-item_heading h2 {
          font-size: 2rem;
          margin-right: 0px;
          width: 100%;
          margin-bottom: 10px; }
        .p-works .p-work-item .p-work-item_heading h3 {
          height: 20px;
          padding: 0 15px;
          font-size: 1.2rem; }
      .p-works .p-work-item .p-work-item_body {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column; }
        .p-works .p-work-item .p-work-item_body .p-work-item_img {
          width: 100%;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: justify;
          -ms-flex-pack: justify;
          justify-content: space-between;
          -ms-flex-wrap: wrap;
          flex-wrap: wrap;
          -webkit-box-align: end;
          -ms-flex-align: end;
          align-items: flex-end;
          margin-bottom: 30px; }
          .p-works .p-work-item .p-work-item_body .p-work-item_img .p-work-item_img-txt {
            left: 5px;
            width: auto;
            padding: 3px 6px;
            font-size: 1.4rem; }
          .p-works .p-work-item .p-work-item_body .p-work-item_img .p-work-item_img-after {
            width: 60%;
            margin-bottom: 0; }
          .p-works .p-work-item .p-work-item_body .p-work-item_img .p-work-item_img-before {
            width: 37%;
            margin-bottom: 0; }
        .p-works .p-work-item .p-work-item_body .p-work-item_detail {
          width: 100%; }
          .p-works .p-work-item .p-work-item_body .p-work-item_detail .p-work-item_detail-text p {
            font-size: 1.5rem;
            letter-spacing: 0.05em; }
          .p-works .p-work-item .p-work-item_body .p-work-item_detail .p-work-item_detail-data {
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column; }
            .p-works .p-work-item .p-work-item_body .p-work-item_detail .p-work-item_detail-data dl {
              width: 100%;
              font-size: 1.4rem; } }

.p-service {
  position: relative;
  margin-bottom: 80px; }
  .p-service .p-service-item {
    position: relative;
    width: 100%;
    margin: 0 auto 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-bottom: 60px; }
    .p-service .p-service-item::after {
      content: '';
      display: block;
      position: absolute;
      width: 200px;
      height: 2px;
      background-color: #E3EDF5;
      bottom: 0;
      left: 50%;
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      transform: translateX(-50%); }
    .p-service .p-service-item:nth-child(even) {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
      flex-direction: row-reverse; }
    .p-service .p-service-item .p-service-item_img {
      position: relative;
      width: 40%; }
      .p-service .p-service-item .p-service-item_img img {
        position: relative;
        width: 100%;
        height: auto; }
    .p-service .p-service-item .p-service-item_detail {
      position: relative;
      width: 55%; }
      .p-service .p-service-item .p-service-item_detail .p-service-item_detail-title {
        font-size: 2.8rem;
        letter-spacing: 0.1em;
        font-weight: bold;
        margin-bottom: 20px; }
        .p-service .p-service-item .p-service-item_detail .p-service-item_detail-title span {
          padding-bottom: 3px;
          background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(0, #E3EDF5));
          background-image: -webkit-linear-gradient(transparent 50%, #E3EDF5 0);
          background-image: -o-linear-gradient(transparent 50%, #E3EDF5 0);
          background-image: linear-gradient(transparent 50%, #E3EDF5 0); }
      .p-service .p-service-item .p-service-item_detail .p-service-item_detail-text {
        position: relative;
        width: 100%;
        font-size: 1.6rem;
        letter-spacing: 0.05em;
        line-height: 1.6em;
        margin-bottom: 20px; }
      .p-service .p-service-item .p-service-item_detail .p-service-item_detail-btn {
        position: relative;
        max-width: 300px; }
  .p-service .p-service-area {
    position: relative;
    background-color: #f9f9f9;
    padding: 40px 50px; }
    .p-service .p-service-area .p-service-area_heading {
      position: relative;
      text-align: center;
      margin-bottom: 30px; }
      .p-service .p-service-area .p-service-area_heading h3 {
        font-size: 2.8rem;
        letter-spacing: 0.1em;
        font-weight: bold; }
    .p-service .p-service-area .p-service-area_body {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; }
      .p-service .p-service-area .p-service-area_body .p-service-area_map {
        position: relative;
        width: 36%; }
        .p-service .p-service-area .p-service-area_body .p-service-area_map img {
          position: relative;
          width: 100%; }
      .p-service .p-service-area .p-service-area_body .p-service-area_detail {
        position: relative;
        width: 60%; }
        .p-service .p-service-area .p-service-area_body .p-service-area_detail h4 {
          font-size: 2.2rem;
          letter-spacing: 0.1em;
          font-weight: bold;
          color: #EB5184;
          margin-bottom: 20px; }
        .p-service .p-service-area .p-service-area_body .p-service-area_detail p {
          position: relative;
          width: 100%;
          font-size: 1.6rem;
          letter-spacing: 0.1em;
          line-height: 1.6em; }
  @media screen and (max-width: 768px) {
    .p-service .p-service-item {
      margin: 0 auto 50px;
      -webkit-box-orient: vertical;
      -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
      flex-direction: column-reverse;
      max-width: 640px; }
      .p-service .p-service-item:nth-child(even) {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse; }
      .p-service .p-service-item .p-service-item_img {
        width: 100%; }
      .p-service .p-service-item .p-service-item_detail {
        width: 100%;
        margin-bottom: 20px; }
        .p-service .p-service-item .p-service-item_detail .p-service-item_detail-title {
          font-size: 2.2rem; }
        .p-service .p-service-item .p-service-item_detail .p-service-item_detail-text {
          font-size: 1.4rem; }
    .p-service .p-service-area {
      padding: 30px 15px; }
      .p-service .p-service-area .p-service-area_heading h3 {
        font-size: 2.2rem; }
      .p-service .p-service-area .p-service-area_body {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse; }
        .p-service .p-service-area .p-service-area_body .p-service-area_map {
          width: 80%;
          margin: 0 auto;
          text-align: center; }
          .p-service .p-service-area .p-service-area_body .p-service-area_map img {
            max-width: 334px; }
        .p-service .p-service-area .p-service-area_body .p-service-area_detail {
          width: 100%;
          margin-bottom: 30px; }
          .p-service .p-service-area .p-service-area_body .p-service-area_detail h4 {
            font-size: 1.8rem; }
          .p-service .p-service-area .p-service-area_body .p-service-area_detail p {
            font-size: 1.4rem; } }

.p-price {
  position: relative;
  margin-bottom: 80px; }
  .p-price .p-price_content {
    position: relative;
    margin-bottom: 60px; }
    .p-price .p-price_content .p-price_content-heading {
      position: relative;
      margin-bottom: 30px; }
      .p-price .p-price_content .p-price_content-heading h2 {
        font-size: 2.8rem;
        letter-spacing: 0.1em;
        font-weight: bold;
        text-align: center; }
    .p-price .p-price_content .p-price_content-body {
      position: relative;
      padding: 0 60px; }
      .p-price .p-price_content .p-price_content-body .p-price_ex-item {
        position: relative;
        margin: 0 auto; }
        .p-price .p-price_content .p-price_content-body .p-price_ex-item:not(:last-of-type) {
          margin-bottom: 30px; }
    .p-price .p-price_content.p-price_content--table {
      margin-bottom: 100px; }
    .p-price .p-price_content.p-price_content--ex {
      background-color: #FFF7CE;
      padding-top: 40px;
      padding-bottom: 40px; }
  @media screen and (max-width: 768px) {
    .p-price .p-price_content {
      margin-bottom: 50px; }
      .p-price .p-price_content .p-price_content-heading h2 {
        font-size: 2.2rem; }
      .p-price .p-price_content .p-price_content-body {
        padding: 0 15px; }
        .p-price .p-price_content .p-price_content-body .p-price_ex-item:not(:last-of-type) {
          margin-bottom: 20px; }
      .p-price .p-price_content.p-price_content--table {
        margin-bottom: 60px; }
      .p-price .p-price_content.p-price_content--ex {
        padding-top: 30px;
        padding-bottom: 30px; } }

.p-company {
  position: relative;
  margin-bottom: 80px; }
  .p-company .p-company-table {
    width: 100%;
    font-size: 1.6rem;
    line-height: 1.4em;
    max-width: 960px;
    margin: 0 auto; }
    .p-company .p-company-table th, .p-company .p-company-table td {
      border: 1px solid #E3EDF5;
      padding: 20px; }
    .p-company .p-company-table th {
      font-weight: bold;
      background-color: #4A99DD;
      color: #ffffff; }
    .p-company .p-company-table td ul li:not(:last-of-type) {
      margin-bottom: 15px; }
  @media screen and (max-width: 768px) {
    .p-company .p-company-table {
      display: block;
      font-size: 1.4rem; }
      .p-company .p-company-table tbody, .p-company .p-company-table tr, .p-company .p-company-table td, .p-company .p-company-table th {
        display: block;
        width: 100%; }
      .p-company .p-company-table th {
        width: auto; }
      .p-company .p-company-table th, .p-company .p-company-table td {
        padding: 10px; }
      .p-company .p-company-table td ul li:not(:last-of-type) {
        margin-bottom: 10px; } }

.p-info {
  position: relative;
  margin-bottom: 80px; }
  .p-info .p-info_body {
    max-width: 800px;
    margin: 0 auto;
    border-top: solid 1px #D8D8D8; }
    .p-info .p-info_body .p-info_item {
      position: relative;
      border-bottom: solid 1px #D8D8D8;
      padding: 15px 0 30px; }
      .p-info .p-info_body .p-info_item time {
        position: relative;
        text-align: left;
        display: block;
        color: #4A99DD;
        font-size: 1.4rem;
        margin-bottom: 10px; }
      .p-info .p-info_body .p-info_item p {
        position: relative;
        text-align: left;
        color: #000000;
        font-size: 1.6rem;
        margin-bottom: 15px; }
      .p-info .p-info_body .p-info_item a {
        position: absolute;
        display: block;
        right: 0;
        bottom: 15px;
        font-size: 1.6rem;
        color: #4A99DD;
        text-decoration: underline; }
        .p-info .p-info_body .p-info_item a i {
          text-decoration: inherit; }
    .p-info .p-info_body.single {
      border-top: none; }
    .p-info .p-info_body .p-info-single {
      position: relative; }
      .p-info .p-info_body .p-info-single .p-info-single_heading {
        position: relative;
        padding-bottom: 10px;
        border-bottom: solid 1px #D4D4D4;
        margin-bottom: 20px; }
        .p-info .p-info_body .p-info-single .p-info-single_heading h2 {
          font-size: 2.2rem;
          letter-spacing: 0.1em;
          font-weight: bold;
          margin-bottom: 15px; }
        .p-info .p-info_body .p-info-single .p-info-single_heading time {
          position: relative;
          text-align: left;
          display: block;
          color: #4A99DD;
          font-size: 1.4rem; }
      .p-info .p-info_body .p-info-single .p-info-single_body {
        position: relative;
        width: 100%; }
        .p-info .p-info_body .p-info-single .p-info-single_body * {
          font-size: 1.6rem;
          line-height: 1.6em; }
        .p-info .p-info_body .p-info-single .p-info-single_body p {
          margin-bottom: 1em; }
    .p-info .p-info_body .p-info_body-pager {
      position: relative;
      padding-top: 50px; }
      .p-info .p-info_body .p-info_body-pager .pagination {
        position: relative;
        font-size: 14px;
        line-height: 14px;
        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-info .p-info_body .p-info_body-pager .pagination span, .p-info .p-info_body .p-info_body-pager .pagination a {
        display: block;
        width: auto;
        margin: 2px 1px 2px 1px;
        padding: 6px 9px 5px 9px;
        background: #ffffff;
        color: #4A99DD;
        text-decoration: none;
        border: solid 1px #4A99DD;
        border-radius: 3px; }
      .p-info .p-info_body .p-info_body-pager .pagination a:hover {
        background: #4A99DD;
        color: #fff; }
      .p-info .p-info_body .p-info_body-pager .pagination .current {
        padding: 6px 9px 5px 9px;
        background: #4A99DD;
        color: #fff; }
  @media screen and (max-width: 768px) {
    .p-info .p-info_body .p-info_item time {
      font-size: 1.2rem; }
    .p-info .p-info_body .p-info_item p {
      font-size: 1.4rem; }
    .p-info .p-info_body .p-info_item a {
      font-size: 1.4rem; }
    .p-info .p-info_body .p-info-single .p-info-single_heading h2 {
      font-size: 1.8rem; }
    .p-info .p-info_body .p-info-single .p-info-single_heading time {
      font-size: 1.2rem; }
    .p-info .p-info_body .p-info-single .p-info-single_body * {
      font-size: 1.4rem; } }

.p-contact {
  position: relative;
  margin-bottom: 50px; }
  .p-contact .p-contact_content {
    background-color: #4A99DD;
    padding: 30px 15px 40px; }
    .p-contact .p-contact_content .p-contact_heading {
      position: relative;
      margin-bottom: 30px; }
      .p-contact .p-contact_content .p-contact_heading h2 {
        font-size: 2.8rem;
        letter-spacing: 0.1em;
        font-weight: bold;
        color: #ffffff;
        text-align: center; }
    .p-contact .p-contact_content .p-contact_body {
      position: relative;
      width: 100%;
      max-width: 758px;
      margin: 0 auto; }

.p-faq {
  position: relative;
  margin-bottom: 80px; }
  .p-faq .p-faq_content {
    background-color: #ffffff;
    padding: 30px 15px 40px; }
    .p-faq .p-faq_content .p-faq_heading {
      position: relative;
      margin-bottom: 30px; }
      .p-faq .p-faq_content .p-faq_heading h2 {
        font-size: 2.8rem;
        letter-spacing: 0.1em;
        font-weight: bold;
        text-align: center; }
    .p-faq .p-faq_content .p-faq_body {
      position: relative;
      width: 100%;
      margin: 0 auto; }
      .p-faq .p-faq_content .p-faq_body .accordion__body + .accordion__title {
        margin-top: 20px; }
      .p-faq .p-faq_content .p-faq_body .accordion__btn {
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        width: 100%;
        padding: 10px 40px 10px 15px;
        background-color: #E3EDF5;
        border: 1px solid #E3EDF5;
        color: #000000;
        font-size: 1.6rem;
        text-align: left;
        cursor: pointer;
        -webkit-transition: .25s;
        -o-transition: .25s;
        transition: .25s;
        font-weight: bold; }
        .p-faq .p-faq_content .p-faq_body .accordion__btn::before {
          content: 'Q.';
          position: relative;
          display: block;
          color: #4A99DD;
          margin-right: 10px;
          font-weight: bold;
          font-size: 20px; }
        .p-faq .p-faq_content .p-faq_body .accordion__btn::after {
          content: '＋';
          position: absolute;
          top: 50%;
          right: 15px;
          display: block;
          -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
          transform: translateY(-50%);
          font-size: 20px; }
      .p-faq .p-faq_content .p-faq_body .accordion__btn--active::after {
        content: 'ー'; }
      .p-faq .p-faq_content .p-faq_body .accordion__body {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        padding: 0 15px;
        border: 1px solid #E3EDF5;
        max-height: 0;
        overflow: hidden;
        -webkit-transition: all 1s ease;
        -o-transition: all 1s ease;
        transition: all 1s ease; }
        .p-faq .p-faq_content .p-faq_body .accordion__body::before {
          content: 'A.';
          position: relative;
          display: block;
          color: #EB5184;
          margin-right: 10px;
          font-weight: bold;
          font-size: 20px; }
        .p-faq .p-faq_content .p-faq_body .accordion__body > *:last-child {
          margin-bottom: 0; }
        .p-faq .p-faq_content .p-faq_body .accordion__body.accordion__body--active {
          max-height: 300px; }
        .p-faq .p-faq_content .p-faq_body .accordion__body .accordion__text {
          padding: 15px 0;
          font-size: 1.6rem;
          line-height: 1.6em;
          letter-spacing: 0.05em; }
  @media screen and (max-width: 768px) {
    .p-faq .p-faq_content .p-faq_heading h2 {
      font-size: 2.2rem; }
    .p-faq .p-faq_content .p-faq_body .accordion__body + .accordion__title {
      margin-top: 10px; }
    .p-faq .p-faq_content .p-faq_body .accordion__btn {
      font-size: 1.4rem; }
      .p-faq .p-faq_content .p-faq_body .accordion__btn::before {
        font-size: 16px; }
      .p-faq .p-faq_content .p-faq_body .accordion__btn::after {
        font-size: 16px; }
    .p-faq .p-faq_content .p-faq_body .accordion__body::before {
      font-size: 16px; }
    .p-faq .p-faq_content .p-faq_body .accordion__body .accordion__text {
      font-size: 1.4rem; } }

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

@media screen and (min-width: 769px) {
  .u-pc-none {
    display: none !important; } }

.u-ls--0 {
  letter-spacing: 0 !important; }
