@charset "UTF-8";
/* text */
/*  width */
/* margin,paddingのリセット */
/*  preset */
*, *:after, *:before {
  box-sizing: border-box; }

html {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-size: 62.5%; }

body {
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, Arial, Roboto, "Droid Sans", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  line-height: 1.7;
  color: palette("basic", "text");
  overflow-x: hidden; }
  body.no_scroll {
    overflow: hidden;
    position: relative; }

a {
  cursor: pointer;
  text-decoration: none;
  outline: none;
  color: #000;
  transition: all 0.3s ease; }

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

i, cite, em, var, address, dfn {
  font-style: normal; }

p {
  margin: 0;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.08em; }

iframe {
  border: none; }

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

h1, h2, h3, h4, h5, h6 {
  margin: 0; }

.notice {
  font-size: 12px;
  font-size: 1.2rem; }

/* アニメーション */
.effect-fade {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-transform: translate(0, 20px);
          transform: translate(0, 20px);
  transition: all 1s; }
  .effect-fade.effect-scroll {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }

.effect-right {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-transform: translate(-10px, 0);
          transform: translate(-10px, 0);
  transition: all 1s; }
  .effect-right.effect-scroll {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }

.effect-left {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-transform: translate(10px, 0);
          transform: translate(10px, 0);
  transition: all 1s; }
  .effect-left.effect-scroll {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }

.effect-ttl {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-transform: translate(0, 15px);
          transform: translate(0, 15px);
  transition: all 1s; }
  .effect-ttl.effect-on {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }

.list-fade li {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  transition: all 0.8s ease;
  -webkit-transform: translate(0, 10px);
          transform: translate(0, 10px); }
  .list-fade li.effect-scroll {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }

/* —————————————————
  トップページ home
  —————————————————*/
/* home-mv */
.home .home-mv {
  width: 100%;
  position: relative;
  padding-top: 140px;
  height: 100vh;
  min-height: 560px; }
  .home .home-mv:after {
    content: '';
    position: absolute;
    left: 0;
    top: 45%;
    -webkit-transform: skewY(-15deg);
            transform: skewY(-15deg);
    -webkit-transform-origin: bottom left;
            transform-origin: bottom left;
    z-index: -1;
    width: 100%;
    height: 76%;
    background: #f8efd3; }
  .home .home-mv .c-fBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 1350px;
    padding: 0 25px;
    margin: 0 auto;
    position: relative;
    z-index: 99; }
    .home .home-mv .c-fBox .item__text {
      width: 42%;
      padding-top: 80px;
      padding-top: 8rem; }
      .home .home-mv .c-fBox .item__text h2 {
        font-size: 70px;
        font-size: 7rem;
        font-weight: 700;
        margin-bottom: 30px;
        margin-bottom: 3rem;
        line-height: 1.2;
        letter-spacing: 0.08em; }
      .home .home-mv .c-fBox .item__text .sub__ttl {
        background: #ffb806;
        border-radius: 26px;
        text-align: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        height: 52px;
        font-size: 25px;
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 60px; }
      .home .home-mv .c-fBox .item__text p {
        font-size: 18px;
        font-size: 1.8rem;
        line-height: 2.2;
        letter-spacing: 0.06em; }
        .home .home-mv .c-fBox .item__text p span {
          font-weight: 700;
          background: linear-gradient(transparent 80%, #ffb806 60%); }
        .home .home-mv .c-fBox .item__text p.notice {
          font-size: 12px;
          font-size: 1.2rem; }
    .home .home-mv .c-fBox .item__img {
      width: 52%; }
      .home .home-mv .c-fBox .item__img img {
        width: 100%; }
  .home .home-mv .scrollBtn {
    margin: 0;
    position: absolute;
    bottom: 100px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%); }
    .home .home-mv .scrollBtn a {
      width: 100%;
      height: 100%;
      font-size: 10px;
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: 0.08em; }
      .home .home-mv .scrollBtn a:after {
        content: '';
        width: 1px;
        height: 80px;
        background: #000;
        z-index: 9;
        position: absolute;
        top: 50px;
        left: 50%;
        -webkit-transform: translateX(-50%);
                transform: translateX(-50%);
        -webkit-animation: sdl 2s cubic-bezier(1, 0, 0, 1) infinite;
                animation: sdl 2s cubic-bezier(1, 0, 0, 1) infinite; }
      .home .home-mv .scrollBtn a:hover {
        opacity: 0.8;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)"; }

@-webkit-keyframes sdl {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0; }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0; }
  50.1% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%; }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%; } }

@keyframes sdl {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0; }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0; }
  50.1% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%; }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%; } }

/* home-about  レスポンシブ*/
@media (max-width: 1300px) {
  .home .home-mv .c-fBox .item__text h2 {
    font-size: 6rem; } }

@media (max-width: 1140px) {
  .home .home-mv .c-fBox .item__text h2 {
    font-size: 5.6rem; } }

@media (max-width: 1024px) {
  .home .home-mv {
    padding-top: 150px;
    height: auto;
    min-height: auto; }
    .home .home-mv .c-fBox .item__text {
      width: 46%;
      padding-top: 8rem; }
      .home .home-mv .c-fBox .item__text h2 {
        font-size: 4.6rem;
        line-height: 1.4; }
      .home .home-mv .c-fBox .item__text .sub__ttl {
        font-size: 2rem;
        margin-bottom: 40px; }
      .home .home-mv .c-fBox .item__text p {
        font-size: 1.6rem; }
    .home .home-mv .c-fBox .item__img {
      width: 50%; }
      .home .home-mv .c-fBox .item__img img {
        width: 100%; }
    .home .home-mv .scrollBtn {
      display: none; } }

@media (max-width: 768px) {
  .home .home-mv {
    padding-top: 120px; }
    .home .home-mv:after {
      content: '';
      position: absolute;
      left: 0;
      top: 20%;
      -webkit-transform: skewY(-15deg);
              transform: skewY(-15deg);
      -webkit-transform-origin: bottom left;
              transform-origin: bottom left;
      z-index: -1;
      width: 100%;
      height: 50%;
      background: #f8efd3; }
    .home .home-mv .c-fBox {
      -webkit-box-orient: vertical;
      -webkit-box-direction: reverse;
          -ms-flex-direction: column-reverse;
              flex-direction: column-reverse;
      overflow-x: hidden; }
      .home .home-mv .c-fBox .item__text {
        width: 100%;
        padding-top: 8rem; }
        .home .home-mv .c-fBox .item__text h2 {
          line-height: 1.4;
          text-align: center; }
        .home .home-mv .c-fBox .item__text .sub__ttl {
          font-size: 2rem;
          margin-bottom: 40px; }
        .home .home-mv .c-fBox .item__text p {
          font-size: 1.6rem; }
      .home .home-mv .c-fBox .item__img {
        width: 100%; }
        .home .home-mv .c-fBox .item__img img {
          width: 100%;
          -webkit-transform: translateX(8%);
                  transform: translateX(8%); } }

@media (max-width: 480px) {
  .home .home-mv {
    padding-top: 100px; }
    .home .home-mv:after {
      content: '';
      position: absolute;
      left: 0;
      top: 15%;
      width: 100%;
      height: 40%;
      background: #f8efd3; }
    .home .home-mv .c-fBox {
      -webkit-box-orient: vertical;
      -webkit-box-direction: reverse;
          -ms-flex-direction: column-reverse;
              flex-direction: column-reverse; }
      .home .home-mv .c-fBox .item__text {
        width: 100%;
        padding-top: 4rem; }
        .home .home-mv .c-fBox .item__text h2 {
          line-height: 1.4;
          text-align: center;
          font-size: 3.4rem; }
        .home .home-mv .c-fBox .item__text .sub__ttl {
          font-size: 1.6rem;
          margin-bottom: 40px;
          height: 34px;
          margin-bottom: 20px; }
        .home .home-mv .c-fBox .item__text p {
          font-size: 1.6rem; }
      .home .home-mv .c-fBox .item__img {
        width: 120%; }
        .home .home-mv .c-fBox .item__img img {
          width: 100%;
          -webkit-transform: translateX(12%);
                  transform: translateX(12%); }
    .home .home-mv .scrollBtn {
      display: none; } }

/* home-about */
.home .home-about {
  padding: 140px 0 100px 0;
  background-size: cover;
  position: relative; }
  .home .home-about .p-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    .home .home-about .p-wrap .item__img {
      width: 42%;
      max-width: 474px;
      margin-left: -30px; }
      .home .home-about .p-wrap .item__img img {
        width: 100%; }
        .home .home-about .p-wrap .item__img img.sp {
          display: none; }
    .home .home-about .p-wrap .item__text {
      width: 48%; }
      .home .home-about .p-wrap .item__text .c-ttl {
        text-align: left; }
      .home .home-about .p-wrap .item__text p {
        margin: 0;
        font-size: 16px;
        font-size: 1.6rem;
        line-height: 2.3;
        letter-spacing: 0.08em; }
        .home .home-about .p-wrap .item__text p:not(:last-child) {
          margin-bottom: 40px; }
      .home .home-about .p-wrap .item__text .notice {
        font-size: 12px;
        font-size: 1.2rem; }

@media (max-width: 1024px) {
  .home .home-about .p-wrap .item__img {
    -webkit-transform: translateX(0);
            transform: translateX(0); }
  .home .home-about .p-wrap .item__text {
    width: 48%; }
    .home .home-about .p-wrap .item__text .c-ttl {
      margin-bottom: 30px; }
    .home .home-about .p-wrap .item__text p {
      font-size: 1.5rem; }
      .home .home-about .p-wrap .item__text p:not(:last-child) {
        margin-bottom: 20px; } }

@media (max-width: 768px) {
  .home .home-about .p-wrap .item__text p {
    font-size: 1.5rem; }
    .home .home-about .p-wrap .item__text p br {
      display: none; } }

@media (max-width: 480px) {
  .home .home-about {
    padding: 60px 0; }
    .home .home-about .p-wrap {
      display: block; }
      .home .home-about .p-wrap .item__img {
        width: 90%;
        margin-bottom: 60px; }
        .home .home-about .p-wrap .item__img img {
          width: 100%; }
          .home .home-about .p-wrap .item__img img.pc {
            display: none; }
          .home .home-about .p-wrap .item__img img.sp {
            display: block; }
      .home .home-about .p-wrap .item__text {
        width: 100%; }
        .home .home-about .p-wrap .item__text .c-ttl {
          text-align: center; }
        .home .home-about .p-wrap .item__text .c-large__text {
          text-align: center; }
        .home .home-about .p-wrap .item__text p {
          font-size: 1.5rem;
          line-height: 2; }
          .home .home-about .p-wrap .item__text p:not(:last-child) {
            margin-bottom: 20px; } }

/* home-service */
.home .home-service {
  background: #faf6ea;
  padding: 120px 0 60px 0; }
  .home .home-service .p-lead {
    text-align: center;
    margin-bottom: 80px;
    line-height: 2.2; }
  .home .home-service .c-ttl__line br {
    display: none; }
  .home .home-service .service__list {
    width: 100%;
    position: relative;
    z-index: 9;
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .home .home-service .service__list li {
      padding: 0 30px; }
      .home .home-service .service__list li .item__img img {
        width: 100%; }
      .home .home-service .service__list li .item__text {
        position: relative;
        padding: 20px 5px; }
        .home .home-service .service__list li .item__text .ttl {
          margin: 0;
          font-size: 18px;
          font-size: 1.8rem;
          font-weight: 700;
          text-align: center;
          margin-bottom: 10px; }
          .home .home-service .service__list li .item__text .ttl span {
            display: block;
            color: #ed6e00;
            font-size: 16px;
            font-size: 1.6rem;
            font-weight: normal;
            letter-spacing: 0.1em; }
        .home .home-service .service__list li .item__text .size__list {
          margin: 0;
          padding: 0;
          list-style: none;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          -webkit-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center;
          margin-bottom: 10px; }
          .home .home-service .service__list li .item__text .size__list li {
            padding: 0;
            background: #dbc389;
            border-radius: 50%;
            color: #fff;
            width: 21px;
            height: 21px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
            -webkit-box-pack: center;
                -ms-flex-pack: center;
                    justify-content: center;
            font-size: 14px;
            font-size: 1.4rem;
            font-weight: 700;
            margin: 0 2px; }
        .home .home-service .service__list li .item__text .desc {
          margin: 0;
          font-size: 15px;
          font-size: 1.5rem;
          font-weight: normal;
          text-align: left;
          line-height: 1.8; }
    .home .home-service .service__list .slick-prev, .home .home-service .service__list .slick-next {
      width: 43px;
      height: 43px;
      top: 28%; }
    .home .home-service .service__list .slick-prev {
      left: -50px; }
      .home .home-service .service__list .slick-prev:before {
        content: '';
        display: block;
        width: 43px;
        height: 43px;
        background: url("../img/common/slide_prev.png") no-repeat center center;
        background-size: cover;
        transition: 0.3s ease all; }
      .home .home-service .service__list .slick-prev:hover:before {
        background-image: url("../img/common/slide_prev_color.png"); }
    .home .home-service .service__list .slick-next {
      right: -50px; }
      .home .home-service .service__list .slick-next:before {
        content: '';
        display: block;
        width: 43px;
        height: 43px;
        background: url("../img/common/slide_next.png") no-repeat center center;
        background-size: cover;
        transition: 0.3s ease all; }
      .home .home-service .service__list .slick-next:hover:before {
        background-image: url("../img/common/slide_next_color.png"); }

@media (max-width: 1280px) {
  .home .home-service .service__list {
    padding: 20px 40px; }
    .home .home-service .service__list li {
      padding: 0 30px; }
    .home .home-service .service__list .slick-prev {
      left: -10px; }
    .home .home-service .service__list .slick-next {
      right: -10px; } }

@media (max-width: 768px) {
  .home .home-service .p-lead {
    text-align: center;
    margin-bottom: 80px;
    line-height: 2.2; }
  .home .home-service .service__list li {
    padding: 0 15px; }
    .home .home-service .service__list li .item__img img {
      width: 100%; }
    .home .home-service .service__list li .item__text {
      padding: 20px 0; }
      .home .home-service .service__list li .item__text .ttl {
        font-size: 1.3rem; }
      .home .home-service .service__list li .item__text .desc {
        margin: 0;
        font-size: 1.5rem; }
  .home .home-service .service__list .slick-prev {
    left: -10px; }
  .home .home-service .service__list .slick-next {
    right: -10px; } }

@media (max-width: 480px) {
  .home .home-service {
    padding: 80px 0 60px 0; }
    .home .home-service .p-lead {
      text-align: left;
      font-size: 1.5rem; }
    .home .home-service .c-ttl__line br {
      display: block; }
    .home .home-service .service__list {
      padding: 20px; }
      .home .home-service .service__list li {
        padding: 0 15px; }
        .home .home-service .service__list li .item__img img {
          width: 100%; }
        .home .home-service .service__list li .item__text {
          padding: 20px 0; }
          .home .home-service .service__list li .item__text .ttl {
            font-size: 1.5rem; }
          .home .home-service .service__list li .item__text .desc {
            margin: 0;
            font-size: 1.2rem; }
          .home .home-service .service__list li .item__text .size__list li {
            font-size: 1.2rem; }
      .home .home-service .service__list .slick-prev, .home .home-service .service__list .slick-next {
        width: 30px;
        height: 30px; }
      .home .home-service .service__list .slick-prev:before {
        width: 30px;
        height: 30px; }
      .home .home-service .service__list .slick-next:before {
        width: 30px;
        height: 30px; } }

/* home-plan */
.home .home-plan {
  padding: 100px 0; }
  .home .home-plan .c-large__text {
    text-align: center;
    margin-bottom: 100px; }
  .home .home-plan .plan__list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 30px; }
    .home .home-plan .plan__list > li {
      width: calc(100% / 3);
      position: relative;
      box-shadow: 0px 0px 10px 2px #eaeaea;
      padding: 100px 30px 20px 30px; }
      .home .home-plan .plan__list > li:not(:last-child) {
        margin-right: 40px; }
      .home .home-plan .plan__list > li .plan__name {
        border-radius: 50%;
        width: 124px;
        height: 124px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        font-size: 18px;
        font-size: 1.8rem;
        line-height: 1;
        color: #fff;
        font-weight: 700;
        position: absolute;
        top: -62px;
        left: 50%;
        -webkit-transform: translateX(-50%);
                transform: translateX(-50%);
        text-align: center; }
        .home .home-plan .plan__list > li .plan__name span {
          font-size: 66px;
          font-size: 6.6rem; }
      .home .home-plan .plan__list > li .payment__list {
        margin: 0;
        padding: 0;
        list-style: none;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        text-align: center; }
        .home .home-plan .plan__list > li .payment__list li {
          font-size: 14px;
          font-size: 1.4rem;
          padding: 2px 15px;
          border-radius: 15px;
          margin: 0 2px;
          cursor: pointer;
          transition: 0.3s ease all; }
          .home .home-plan .plan__list > li .payment__list li:first-child {
            background: #f3e8cb;
            color: #846b2b; }
            .home .home-plan .plan__list > li .payment__list li:first-child:hover {
              background: #846b2b;
              color: #fff; }
            .home .home-plan .plan__list > li .payment__list li:first-child.select {
              background: #846b2b;
              color: #fff; }
          .home .home-plan .plan__list > li .payment__list li:nth-child(2) {
            background: #f3e8cb;
            color: #846b2b; }
            .home .home-plan .plan__list > li .payment__list li:nth-child(2):hover {
              background: #fdba11; }
            .home .home-plan .plan__list > li .payment__list li:nth-child(2).select {
              background: #fdba11; }
      .home .home-plan .plan__list > li .payment__contents {
        display: none; }
      .home .home-plan .plan__list > li .price__text {
        font-size: 18px;
        font-size: 1.8rem;
        font-weight: 700;
        text-align: center;
        line-height: 1.4; }
        .home .home-plan .plan__list > li .price__text span {
          font-size: 54px;
          font-size: 5.4rem;
          display: inline-block;
          margin: 0 5px; }
      .home .home-plan .plan__list > li .off__text {
        font-size: 14px;
        font-size: 1.4rem;
        font-weight: 700;
        text-align: center; }
        .home .home-plan .plan__list > li .off__text .color {
          font-size: 18px;
          font-size: 1.8rem;
          color: #cf4a5d; }
          .home .home-plan .plan__list > li .off__text .color .num {
            font-size: 28px;
            font-size: 2.8rem; }
      .home .home-plan .plan__list > li .arrow__text {
        font-size: 14px;
        font-size: 1.4rem;
        text-align: center; }
        .home .home-plan .plan__list > li .arrow__text:before {
          content: '';
          display: inline-block;
          left: 4px;
          box-sizing: border-box;
          width: 4px;
          height: 4px;
          border: 4px solid transparent;
          border-left: 4px solid #ffb806; }
      .home .home-plan .plan__list > li .text__bottom {
        border-top: 1px solid #dbc389;
        padding-top: 25px;
        margin-top: 25px; }
        .home .home-plan .plan__list > li .text__bottom p {
          color: #846b2b;
          font-weight: 700; }
        .home .home-plan .plan__list > li .text__bottom ul {
          margin: 0;
          padding: 0;
          list-style: none; }
          .home .home-plan .plan__list > li .text__bottom ul li {
            font-size: 14px;
            font-size: 1.4rem;
            margin-bottom: 5px; }
      .home .home-plan .plan__list > li:nth-child(1) .plan__name {
        background: #e8c46a; }
      .home .home-plan .plan__list > li:nth-child(2) .plan__name {
        background: #fbc94b; }
      .home .home-plan .plan__list > li:nth-child(3) .plan__name {
        background: #fdba11; }
  .home .home-plan .notice__list {
    margin: 0;
    padding: 0;
    list-style: none; }
    .home .home-plan .notice__list li {
      font-size: 14px;
      font-size: 1.4rem; }
  .home .home-plan .more__plan {
    padding-top: 80px; }
    .home .home-plan .more__plan .c-large__text {
      margin-bottom: 40px; }
    .home .home-plan .more__plan .c-ttl__line {
      margin-bottom: 90px; }
      .home .home-plan .more__plan .c-ttl__line br {
        display: none; }
    .home .home-plan .more__plan .more__plan__list {
      margin: 0;
      padding: 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      list-style: none; }
      .home .home-plan .more__plan .more__plan__list > li {
        width: calc(100% / 2);
        position: relative;
        box-shadow: 0px 0px 10px 2px #eaeaea;
        padding: 60px 40px 20px 40px;
        position: relative;
        margin: 0 15px; }
        .home .home-plan .more__plan .more__plan__list > li p {
          line-height: 1.8; }
        .home .home-plan .more__plan .more__plan__list > li .plan__name {
          background: #cf4a5d;
          color: #fff;
          border-radius: 30px;
          width: 100%;
          max-width: 280px;
          height: 60px;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          -webkit-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center;
          position: absolute;
          top: -30px;
          left: 50%;
          -webkit-transform: translateX(-50%);
                  transform: translateX(-50%);
          font-size: 24px;
          font-size: 2.4rem;
          font-weight: 700; }
        .home .home-plan .more__plan .more__plan__list > li .price__text {
          font-weight: 700;
          font-size: 40px;
          font-size: 4rem;
          color: #cf4a5d;
          text-align: center;
          line-height: 0.8;
          margin-bottom: 30px;
          margin-bottom: 3rem; }
          .home .home-plan .more__plan .more__plan__list > li .price__text > span {
            display: inline-block;
            line-height: 1;
            background: linear-gradient(transparent 85%, #fedf90 85%); }
            .home .home-plan .more__plan .more__plan__list > li .price__text > span .num {
              font-size: 82px;
              font-size: 8.2rem; }
        .home .home-plan .more__plan .more__plan__list > li .exampleArea {
          margin: 46px 0 0 0; }
          .home .home-plan .more__plan .more__plan__list > li .exampleArea .discount {
            text-align: left;
            font-size: 14px;
            font-size: 1.4rem;
            margin-bottom: 20px; }
            .home .home-plan .more__plan .more__plan__list > li .exampleArea .discount span {
              display: inline-block;
              font-size: 16px;
              font-size: 1.6rem; }
            .home .home-plan .more__plan .more__plan__list > li .exampleArea .discount .arrow {
              margin-right: 40px;
              font-size: 18px;
              font-size: 1.8rem;
              font-weight: 700; }
              .home .home-plan .more__plan .more__plan__list > li .exampleArea .discount .arrow:before {
                content: '';
                display: inline-block;
                width: 0;
                height: 0;
                border-style: solid;
                border-width: 14px 8px 0 8px;
                border-color: #cf4a5d transparent transparent transparent;
                margin-right: 8px; }
          .home .home-plan .more__plan .more__plan__list > li .exampleArea dl {
            margin: 0;
            font-weight: 700;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center; }
            .home .home-plan .more__plan .more__plan__list > li .exampleArea dl dt {
              font-size: 16px;
              font-size: 1.6rem;
              vertical-align: middle;
              width: 180px; }
            .home .home-plan .more__plan .more__plan__list > li .exampleArea dl dd {
              margin: 0;
              font-size: 20px;
              font-size: 2rem;
              vertical-align: middle; }
          .home .home-plan .more__plan .more__plan__list > li .exampleArea .total {
            border-top: 1px solid #dbc389;
            margin-top: 20px;
            margin-bottom: 20px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex; }
            .home .home-plan .more__plan .more__plan__list > li .exampleArea .total > span {
              width: 180px; }
            .home .home-plan .more__plan .more__plan__list > li .exampleArea .total .price {
              margin: 0;
              width: auto;
              color: #cf4a5d;
              font-size: 16px;
              font-size: 1.6rem;
              font-weight: 700; }
              .home .home-plan .more__plan .more__plan__list > li .exampleArea .total .price span {
                font-size: 24px;
                font-size: 2.4rem; }
        .home .home-plan .more__plan .more__plan__list > li .notice {
          font-size: 14px;
          font-size: 1.4rem; }
          .home .home-plan .more__plan .more__plan__list > li .notice a {
            color: #3e82df; }
            .home .home-plan .more__plan .more__plan__list > li .notice a:hover {
              text-decoration: underline;
              opacity: 0.8;
              -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)"; }

@media (max-width: 1024px) {
    .home .home-plan .plan__list > li {
      padding: 80px 15px 20px 15px; }
      .home .home-plan .plan__list > li:not(:last-child) {
        margin-right: 20px; }
      .home .home-plan .plan__list > li .plan__name {
        width: 100px;
        height: 100px;
        font-size: 1.6rem;
        top: -50px; }
        .home .home-plan .plan__list > li .plan__name span {
          font-size: 4.6rem; }
      .home .home-plan .plan__list > li .price__text {
        font-size: 1.5rem;
        letter-spacing: normal; }
        .home .home-plan .plan__list > li .price__text span {
          font-size: 4rem; }
      .home .home-plan .plan__list > li .off__text {
        font-size: 1.2rem; }
        .home .home-plan .plan__list > li .off__text .color {
          font-size: 1.6rem; }
          .home .home-plan .plan__list > li .off__text .color .num {
            font-size: 2.6rem; }
      .home .home-plan .plan__list > li .text__bottom {
        padding-top: 15px;
        margin-top: 15px; }
        .home .home-plan .plan__list > li .text__bottom p {
          font-size: 1.5rem;
          margin-bottom: 1rem; }
          .home .home-plan .plan__list > li .text__bottom ul li {
            font-size: 1.3rem; }
  .home .home-plan .notice__list li {
    font-size: 1.3rem; }
      .home .home-plan .more__plan .more__plan__list > li {
        padding: 60px 15px 20px 15px; }
        .home .home-plan .more__plan .more__plan__list > li p {
          line-height: 1.8; }
        .home .home-plan .more__plan .more__plan__list > li .plan__name {
          width: 100%;
          max-width: 240px;
          height: 50px;
          top: -20px;
          left: 50%;
          font-size: 1.8rem; }
        .home .home-plan .more__plan .more__plan__list > li .price__text {
          font-size: 2.6rem; }
          .home .home-plan .more__plan .more__plan__list > li .price__text > span .num {
            font-size: 5.5rem; }
        .home .home-plan .more__plan .more__plan__list > li .exampleArea {
          margin: 30px 0 0 0; }
          .home .home-plan .more__plan .more__plan__list > li .exampleArea .discount span {
            display: inline-block;
            font-size: 1.6rem; }
          .home .home-plan .more__plan .more__plan__list > li .exampleArea .discount .arrow {
            margin-right: 40px;
            font-size: 1.6rem;
            font-weight: 700; }
            .home .home-plan .more__plan .more__plan__list > li .exampleArea .discount .arrow:before {
              border-width: 10px 6px 0 6px; }
          .home .home-plan .more__plan .more__plan__list > li .exampleArea dl dt {
            font-size: 1.4rem; }
          .home .home-plan .more__plan .more__plan__list > li .exampleArea dl dd {
            font-size: 1.8rem; }
            .home .home-plan .more__plan .more__plan__list > li .exampleArea .total .price {
              margin: 0;
              font-size: 1.4rem; }
              .home .home-plan .more__plan .more__plan__list > li .exampleArea .total .price span {
                font-size: 1.8rem;
                display: block; }
        .home .home-plan .more__plan .more__plan__list > li .notice {
          font-size: 1.4rem; }
        }

@media (max-width: 760px) {
  .home .home-plan {
    padding: 60px 0 40px 0; }
    .home .home-plan .plan__list {
      display: block; }
      .home .home-plan .plan__list > li {
        width: 100%;
        position: relative;
        box-shadow: 0px 0px 10px 2px #eaeaea;
        padding: 70px 15px 20px 15px; }
        .home .home-plan .plan__list > li:not(:last-child) {
          margin-right: auto;
          margin-bottom: 60px; }
        .home .home-plan .plan__list > li .plan__name {
          width: 90px;
          height: 90px;
          font-size: 1.6rem;
          top: -45px; }
          .home .home-plan .plan__list > li .plan__name span {
            font-size: 4.4rem; }
        .home .home-plan .plan__list > li .payment__list {
          margin: 0;
          padding: 0;
          list-style: none;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          -webkit-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center;
          text-align: center; }
          .home .home-plan .plan__list > li .payment__list li {
            font-size: 1.4rem;
            padding: 2px 15px;
            border-radius: 15px;
            margin: 0 2px; }
        .home .home-plan .plan__list > li .price__text {
          font-size: 1.5rem;
          letter-spacing: normal; }
          .home .home-plan .plan__list > li .price__text span {
            font-size: 4rem; }
        .home .home-plan .plan__list > li .off__text {
          font-size: 1.2rem;
          font-weight: 700;
          text-align: center; }
          .home .home-plan .plan__list > li .off__text .color {
            font-size: 1.6rem; }
            .home .home-plan .plan__list > li .off__text .color .num {
              font-size: 2.6rem; }
        .home .home-plan .plan__list > li .text__bottom p {
          font-size: 1.4rem; }
        .home .home-plan .plan__list > li .text__bottom ul li {
          font-size: 1.3rem; }
    .home .home-plan .notice__list li {
      font-size: 1.2em;
      text-indent: -1.2rem;
      padding-left: 1.2rem; }
    .home .home-plan .more__plan {
      padding-top: 80px; }
      .home .home-plan .more__plan .c-ttl__line br {
        display: block; }
      .home .home-plan .more__plan .more__plan__list {
        display: block; }
        .home .home-plan .more__plan .more__plan__list > li {
          width: 100%;
          padding: 50px 15px 20px 15px;
          margin: 0 auto 60px auto; }
          .home .home-plan .more__plan .more__plan__list > li p {
            font-size: 1.5rem; }
          .home .home-plan .more__plan .more__plan__list > li .plan__name {
            width: 100%;
            max-width: 190px;
            height: 40px;
            top: -20px;
            left: 50%;
            font-size: 1.6rem; }
          .home .home-plan .more__plan .more__plan__list > li .price__text {
            font-size: 2.6rem; }
            .home .home-plan .more__plan .more__plan__list > li .price__text > span .num {
              font-size: 5.5rem; }
          .home .home-plan .more__plan .more__plan__list > li .exampleArea {
            margin: 20px 0 0 0; }
            .home .home-plan .more__plan .more__plan__list > li .exampleArea .discount span {
              font-size: 1.3rem; }
            .home .home-plan .more__plan .more__plan__list > li .exampleArea .discount .arrow {
              margin-right: 0;
              font-size: 1.5rem; }
            .home .home-plan .more__plan .more__plan__list > li .exampleArea dl dt {
              font-size: 1.4rem;
              width: 140px; }
            .home .home-plan .more__plan .more__plan__list > li .exampleArea dl dd {
              font-size: 1.8rem; }
              .home .home-plan .more__plan .more__plan__list > li .exampleArea .total > span {
                width: 140px; }
              .home .home-plan .more__plan .more__plan__list > li .exampleArea .total .price {
                margin: 0;
                font-size: 1.4rem; }
                .home .home-plan .more__plan .more__plan__list > li .exampleArea .total .price span {
                  font-size: 1.8rem;
                  display: block; }
          .home .home-plan .more__plan .more__plan__list > li .notice {
            font-size: 1.2rem; } }

/* home-flow */
.home .home-flow {
  background: #faf6ea;
  padding: 120px 0; }
  .home .home-flow .c-ttl {
    margin-bottom: 90px; }
  .home .home-flow .flow__title {
    margin: 0;
    padding: 0;
    list-style: none;
    padding-left: 0;
    margin-bottom: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    .home .home-flow .flow__title .flow__title__item {
      font-size: 18px;
      font-size: 1.8rem;
      font-weight: 700;
      margin: 0 25px;
      cursor: pointer;
      transition: 0.1s ease all; }
      .home .home-flow .flow__title .flow__title__item:hover {
        border-bottom: 4px solid #ffb806; }
      .home .home-flow .flow__title .flow__title__item.select {
        border-bottom: 4px solid #ffb806; }
  .home .home-flow .flow__content {
    display: none; }
    .home .home-flow .flow__content ul {
      margin: 0;
      padding: 0;
      list-style: none;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
      .home .home-flow .flow__content ul li {
        background-color: #fff;
        box-shadow: 0px 0px 10px 2px #eaeaea;
        padding: 50px 20px 40px 20px;
        position: relative;
        margin: 0 10px;
        width: calc(100% / 4); }
        .home .home-flow .flow__content ul li .num {
          font-size: 24px;
          font-size: 2.4rem;
          font-weight: 700;
          width: 56px;
          height: 56px;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          -webkit-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center;
          color: #fff;
          border-radius: 50%;
          position: absolute;
          top: -28px;
          left: 50%;
          -webkit-transform: translateX(-50%);
                  transform: translateX(-50%); }
        .home .home-flow .flow__content ul li .item__img {
          text-align: center;
          min-height: 150px; }
        .home .home-flow .flow__content ul li .ttl {
          font-size: 18px;
          font-size: 1.8rem;
          font-weight: 700;
          margin-bottom: 15px;
          text-align: center; }
        .home .home-flow .flow__content ul li .disc {
          font-size: 14px;
          font-size: 1.4rem;
          line-height: 1.8; }
          .home .home-flow .flow__content ul li .disc a {
            color: #3e82df; }
            .home .home-flow .flow__content ul li .disc a:hover{
              text-decoration: underline;
              opacity: 0.7;
            }
    .home .home-flow .flow__content.flow01 ul li .num {
      background: #ffb806; }
    .home .home-flow .flow__content.flow02 ul li .num {
      background: #528fc3; }
    .home .home-flow .flow__content.flow03 ul li .num {
      background: #d66296; }

@media (max-width: 1024px) {
  .home .home-flow {
    padding: 80px 0; }
        .home .home-flow .flow__content ul li {
          margin: 0 8px;}
          .home .home-flow .flow__content ul li .num {
            font-size: 2.4rem; }
          .home .home-flow .flow__content ul li .item__img {
            text-align: center;
            min-height: 150px;
            width: 90%;
            margin: 0 auto; }
          .home .home-flow .flow__content ul li .ttl {
            font-size: 1.5rem;
            margin-bottom: 10px; }
          .home .home-flow .flow__content ul li .disc {
            font-size: 1.3rem;
            line-height: 1.6; } }

@media (max-width: 760px) {
  .home .home-flow {
    padding: 80px 0 40px 0; }
    .home .home-flow .c-ttl {
      margin-bottom: 40px; }
      .home .home-flow .flow__title .flow__title__item {
        font-size: 1.5rem;
        font-weight: 700;
        text-align: center;
        width: calc(100% / 3);
        margin: 0 20px; }
      .home .home-flow .flow__content ul {
        display: block; }
        .home .home-flow .flow__content ul li {
          padding: 40px 20px 40px 20px;
          margin: 0 8px;
          width: 100%;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          margin-bottom: 60px; }
          .home .home-flow .flow__content ul li .num {
            font-size: 2.4rem; }
          .home .home-flow .flow__content ul li .item__img {
            text-align: center;
            min-height: auto;
            width: 30%;
            margin: 0 auto;
            margin-right: 20px; }
          .home .home-flow .flow__content ul li .item__text {
            width: 70%; }
            .home .home-flow .flow__content ul li .item__text .ttl {
              font-size: 1.5rem;
              margin-bottom: 10px;
              text-align: left; }
            .home .home-flow .flow__content ul li .item__text .disc {
              font-size: 1.3rem;
              line-height: 1.6; } }

/* home-faq */
.home .home-faq {
  padding: 120px 0 70px 0; }
  .home .home-faq .p-wrap {
    margin: 0 auto; }
    .home .home-faq .p-wrap .p-acc {
      margin-bottom: 15px;
      border-radius: 10px; }
      .home .home-faq .p-wrap .p-acc .acc__title {
        margin: 0;
        padding: 0;
        padding: 15px;
        font-size: 18px;
        font-size: 1.8rem;
        position: relative;
        cursor: pointer;
        background: #faf6ea;
        font-weight: 700;
        padding: 18px 20px 18px 70px;
        transition: 0.3s ease all; }
        .home .home-faq .p-wrap .p-acc .acc__title.is-open {
          background: #fff; }
          .home .home-faq .p-wrap .p-acc .acc__title.is-open:hover {
            background: #fff; }
        .home .home-faq .p-wrap .p-acc .acc__title:hover {
          background: #fbefcc; }
        .home .home-faq .p-wrap .p-acc .acc__title:before {
          content: 'Q.';
          color: #ffb806;
          font-size: 27px;
          font-size: 2.7rem;
          margin-right: 8px;
          margin-right: 0.8rem;
          line-height: 1;
          position: absolute;
          left: 20px;
          top: 20px; }
        .home .home-faq .p-wrap .p-acc .acc__title .num {
          font-size: 24px;
          font-size: 2.4rem;
          line-height: 1.2;
          margin-right: 20px;
          display: block; }
      .home .home-faq .p-wrap .p-acc .acc_container {
        display: none; }
        .home .home-faq .p-wrap .p-acc .acc_container p {
          margin: 0;
          padding: 0;
          padding: 15px;
          font-size: 15px;
          font-size: 1.5rem;
          position: relative;
          cursor: pointer;
          font-weight: 500;
          padding: 20px 20px 20px 70px; }
          .home .home-faq .p-wrap .p-acc .acc_container p:before {
            content: 'A.';
            color: #836314;
            font-size: 27px;
            font-size: 2.7rem;
            margin-right: 8px;
            margin-right: 0.8rem;
            line-height: 1;
            position: absolute;
            left: 20px;
            top: 20px; }
          .home .home-faq .p-wrap .p-acc .acc_container p a {
            color: #3e82df; }
            .home .home-faq .p-wrap .p-acc .acc_container p a:hover {
              text-decoration: underline; }

@media (max-width: 760px) {
  .home .home-faq {
    padding: 60px 0 40px 0; }
        .home .home-faq .p-wrap .p-acc .acc__title {
          font-size: 1.5rem;
          padding: 18px 20px 18px 60px; }
          .home .home-faq .p-wrap .p-acc .acc__title:before {
            font-size: 2.4rem;}
          .home .home-faq .p-wrap .p-acc .acc_container p {
            padding: 20px 20px 20px 60px; }
            .home .home-faq .p-wrap .p-acc .acc_container p:before {
              content: 'A.'; }
            }

/* contact */
.contact {
  /* footer */ }
  .contact .l-footer .l-footer__btn a {
    background-color: #ffb806; }
    .contact .l-footer .l-footer__btn a:hover {
      opacity: 0.7;
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)"; }
  .contact .contact-sec {
    padding: 60px 0; }
    .contact .contact-sec .p-wrap {
      max-width: 960px; }
      .contact .contact-sec .p-wrap .lead__text {
        font-size: 16px;
        font-size: 1.6rem;
        line-height: 2;
        margin-bottom: 80px; }
      .contact .contact-sec .p-wrap form p {
        font-size: 16px;
        font-size: 1.6rem;
        line-height: 1.7; }
      .contact .contact-sec .p-wrap form table {
        width: 100%;
        text-align: left;
        border-spacing: 0;
        font-size: 16px;
        font-size: 1.6rem;
        margin-bottom: 60px;
        margin-bottom: 6rem; }
        .contact .contact-sec .p-wrap form table tr th {
          position: relative;
          background-color: transparent;
          width: 200px;
          border-bottom: 1px solid #cccccc;
          text-align: left;
          padding-left: 30px;
          padding-left: 3rem;
          vertical-align: top;
          padding: 30px 0 20px 0; }
          .contact .contact-sec .p-wrap form table tr th .required {
            display: inline-block;
            margin-left: 10px;
            padding: 0 10px;
            color: #ed6e00;
            font-size: 12px;
            font-size: 1.2rem;
            background: #d3515a;
            color: #fff;
            vertical-align: text-bottom;
            border-radius: 10px; }
        .contact .contact-sec .p-wrap form table tr td {
          padding: 20px 0 20px 20px;
          border-bottom: 1px solid #d2d2d2;
          word-break: break-all; }
          @media (max-width: 768px) {
            .contact .contact-sec .p-wrap form table tr td {
              display: block;
              padding: 2rem 0; } }
          .contact .contact-sec .p-wrap form table tr td select {
            width: 100%;
            -webkit-appearance: none;
               -moz-appearance: none;
                    appearance: none;
            position: relative; }
            .contact .contact-sec .p-wrap form table tr td select::-ms-value {
              background: none;
              color: #333; }
          .contact .contact-sec .p-wrap form table tr td select::-ms-expand {
            display: none; }
          .contact .contact-sec .p-wrap form table tr td p {
            margin: 0; }
          .contact .contact-sec .p-wrap form table tr td label {
            margin-bottom: 10px;
            margin-bottom: 1rem; }
          .contact .contact-sec .p-wrap form table tr td input[type="text"], .contact .contact-sec .p-wrap form table tr td input[type="tel"], .contact .contact-sec .p-wrap form table tr td input[type="email"], .contact .contact-sec .p-wrap form table tr td input[type="number"], .contact .contact-sec .p-wrap form table tr td textarea, .contact .contact-sec .p-wrap form table tr td select {
            background-color: #f7f7f7;
            width: 76%;
            padding: 12px 15px;
            border: 1px solid #cccccc;
            border-radius: 7px;
            -webkit-appearance: none;
               -moz-appearance: none;
                    appearance: none;
            outline: none;
            font-size: 15px;
            font-size: 1.5rem;
            background: #fff; }
            .contact .contact-sec .p-wrap form table tr td input[type="text"]::-webkit-input-placeholder, .contact .contact-sec .p-wrap form table tr td input[type="tel"]::-webkit-input-placeholder, .contact .contact-sec .p-wrap form table tr td input[type="email"]::-webkit-input-placeholder, .contact .contact-sec .p-wrap form table tr td input[type="number"]::-webkit-input-placeholder, .contact .contact-sec .p-wrap form table tr td textarea::-webkit-input-placeholder, .contact .contact-sec .p-wrap form table tr td select::-webkit-input-placeholder {
              color: #aaaaaa;
              line-height: 1.6; }
            .contact .contact-sec .p-wrap form table tr td input[type="text"]:-ms-input-placeholder, .contact .contact-sec .p-wrap form table tr td input[type="tel"]:-ms-input-placeholder, .contact .contact-sec .p-wrap form table tr td input[type="email"]:-ms-input-placeholder, .contact .contact-sec .p-wrap form table tr td input[type="number"]:-ms-input-placeholder, .contact .contact-sec .p-wrap form table tr td textarea:-ms-input-placeholder, .contact .contact-sec .p-wrap form table tr td select:-ms-input-placeholder {
              color: #aaaaaa;
              line-height: 1.6; }
            .contact .contact-sec .p-wrap form table tr td input[type="text"]::placeholder, .contact .contact-sec .p-wrap form table tr td input[type="tel"]::placeholder, .contact .contact-sec .p-wrap form table tr td input[type="email"]::placeholder, .contact .contact-sec .p-wrap form table tr td input[type="number"]::placeholder, .contact .contact-sec .p-wrap form table tr td textarea::placeholder, .contact .contact-sec .p-wrap form table tr td select::placeholder {
              color: #aaaaaa;
              line-height: 1.6; }
          .contact .contact-sec .p-wrap form table tr td input[type="email"] {
            margin-bottom: 15px; }
          .contact .contact-sec .p-wrap form table tr td textarea {
            width: 100%;
            height: 230px;
            resize: vertical; }
          .contact .contact-sec .p-wrap form table tr td input:focus, .contact .contact-sec .p-wrap form table tr td textarea:focus, .contact .contact-sec .p-wrap form table tr td select:focus {
            outline: 1px solid #fdba11;
            border-radius: 7px; }
          .contact .contact-sec .p-wrap form table tr td.u-selectBox {
            position: relative; }
            .contact .contact-sec .p-wrap form table tr td.u-selectBox:after {
              content: '';
              width: 12px;
              height: 6px;
              width: 0;
              height: 0;
              border-style: solid;
              border-width: 0 7px 8px 7px;
              border-color: transparent transparent #000 transparent;
              display: block;
              position: absolute;
              top: 40%;
              right: 25%;
              -webkit-transform: translateY(-50%);
                      transform: translateY(-50%);
              pointer-events: none; }
            .contact .contact-sec .p-wrap form table tr td.u-selectBox:before {
              content: '';
              width: 12px;
              height: 6px;
              width: 0;
              height: 0;
              border-style: solid;
              border-width: 8px 7px 0 7px;
              border-color: #000 transparent transparent transparent;
              display: block;
              position: absolute;
              top: 54%;
              right: 25%;
              -webkit-transform: translateY(-50%);
                      transform: translateY(-50%);
              z-index: 1;
              pointer-events: none; }
          .contact .contact-sec .p-wrap form table tr td.u-textArea th {
            vertical-align: top; }
      .contact .contact-sec .p-wrap .button__Area{
        display: flex;
        justify-content: space-between;
      }
      .contact .contact-sec .p-wrap .button__Area .c-linkBtn {
        display: block;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        padding: 0 40px;
        height: 80px;
        font-size: 20px;
        font-size: 2rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        background: #d3515a;
        color: #fff;
        font-weight: bold;
        border-radius: 40px;
        font-weight: 700;
        border: none; }
        .contact .contact-sec .p-wrap .button__Area .c-linkBtn button {
          border-radius: 0;
          -webkit-appearance: button;
            -moz-appearance: button;
                  appearance: button;
          border: none;
          box-sizing: border-box; }
          .contact .contact-sec .p-wrap .button__Area .c-linkBtn button:focus {
            outline: 0; }
        .contact .contact-sec .p-wrap .button__Area .c-linkBtn button {
          background-color: transparent;
          color: #fff; }
        .contact .contact-sec .p-wrap .button__Area .c-linkBtn:hover {
          background: #94151e; }

/* contact レスポンシブ*/
@media (max-width: 768px) {
  .contact .contact-sec {
    padding-top: 60px; }
    .contact .contact-sec .p-wrap .lead_txt {
      font-size: 1.4rem; }
    .contact .contact-sec .p-wrap form p {
      font-size: 1.4rem; }
    .contact .contact-sec .p-wrap form table tr th {
      display: block;
      padding: 25px 0 0;
      border: none;
      font-size: 1.4rem; }
      .contact .contact-sec .p-wrap form table tr th .required {
        padding: 2px 8px;
        font-size: 1.1rem; }
    .contact .contact-sec .p-wrap form table tr td {
      display: block;
      padding: 10px 0 20px 0; }
      .contact .contact-sec .p-wrap form table tr td input[type="text"], .contact .contact-sec .p-wrap form table tr td input[type="tel"], .contact .contact-sec .p-wrap form table tr td input[type="email"], .contact .contact-sec .p-wrap form table tr td input[type="number"], .contact .contact-sec .p-wrap form table tr td textarea, .contact .contact-sec .p-wrap form table tr td select {
        width: 100%; }
      .contact .contact-sec .p-wrap form table tr td label {
        font-size: 1.4rem; }
      .contact .contact-sec .p-wrap form table tr td.u-selectBox {
        position: relative; }
        .contact .contact-sec .p-wrap form table tr td.u-selectBox:after {
          top: 39%;
          right: 2%; }
        .contact .contact-sec .p-wrap form table tr td.u-selectBox:before {
          top: 54%;
          right: 2%; } }

@media (max-width: 768px) and (max-width: 760px) {
  .contact .contact-sec .p-wrap .lead_txt {
    text-align: left;
    margin-bottom: 20px; }
    .contact .contact-sec .p-wrap .lead_txt br {
      display: none; }
      .contact .contact-sec .p-wrap .lead_txt br.u-forSp {
        display: block; }}

/*入力フォーム追加CSS*/
.url {
  margin-bottom: 15px;
}

.p-form__error-box {
  margin-bottom: 20px;
  padding: 15px 20px;
  color: #94151e;
  border: 1px solid #94151e;
  background-color: #94151d10;
  font-size: 0.9em;
  font-weight: bold;
}

.p-form__error{
  margin-top: 0.5em;
  color: #94151e;
  font-size: 0.9em;
  font-weight: bold;
}

input[type=radio] {
  display: none;
}

.radio {
  line-height: 2.5em;
}

.radio-label {
  position: relative;
  padding: 0 0 0 30px;
}

.radio-label:after,.radio-label:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  border: 1px solid #bcbcbc;
  border-radius: 50%;
  margin-top: -9px;
}

.radio-label:after {
    width: 20px;
    height: 20px;
    border: 1px solid #bcbcbc;
    border-radius: 50%;
    margin-top: -9px;
}

.radio-label:before {
  width: 10px;
  height: 10px;
  margin-top: -4px;
  left: 5px;
  background: #4e4d4d;
  border-radius: 50%;
  opacity: 0;
  border: none;
}

input[type=radio]:checked+.radio-label:before {
  opacity: 1;
}

@media (max-width: 768px) {
  .p-form__error-box {
      margin-bottom: 0;
    }
}
/*入力フォーム*/

/*確認画面*/
.contact .contact-sec .p-wrap table {
  width: 100%;
  text-align: left;
  border-spacing: 0;
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 60px;
  margin-bottom: 6rem;
}

.contact .contact-sec .p-wrap table tr td {
  padding: 30px 0 30px 20px;
  border-bottom: 1px solid #d2d2d2;
  word-break: break-all;
}

.contact .contact-sec .p-wrap table tr th {
  position: relative;
  background-color: transparent;
  width: 200px;
  border-bottom: 1px solid #cccccc;
  text-align: left;
  padding: 30px 0;
  vertical-align: text-top;
}

.plun {
  text-transform: uppercase;
}

.contact .contact-sec .p-wrap .button__Area form {
  order: 2;
}

.contact .contact-sec .p-wrap .button__Area .p-form__btn-back {
  order: 1;
}

.contact .contact-sec .p-wrap .button__Area .p-form__btn-back .c-linkBtn {
  background: #ababab;
}

.p-form__ttl {
  font-size: 2em;
  letter-spacing: 0.15em;
  margin-bottom: 0.6em;
}

@media (max-width: 768px) {
  .contact .contact-sec .p-wrap  p {
    font-size: 1.4rem;
  }

  .contact .contact-sec .p-wrap table tr th {
    display: block;
    padding: 25px 0 0;
    border: none;
    font-size: 1.4rem;
  }

  .contact .contact-sec .p-wrap table tr td {
    display: block;
    padding: 10px 0 20px 0;
  }

  .contact .contact-sec .p-wrap .button__Area {
    display: block;
  }

  .contact .contact-sec .p-wrap .button__Area .p-form__btn-back {
    margin-top: 20px;
  }

}

/*確認画面*/