@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700;900&display=swap");
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none; }

textarea {
  resize: vertical; }

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

input[type='submit'],
input[type='button'],
label,
button,
select {
  cursor: pointer; }

select::-ms-expand {
  display: none; }

/* Base */
body {
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  line-height: 1.8;
  font-feature-settings: "palt"; }
  body p {
    font-size: 16px;
    line-height: 1.8; }
  body img {
    max-width: 100%;
    height: auto; }

ul, ol {
  list-style-type: none;
  padding: 0; }
  ul li, ol li {
    font-size: 16px; }

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

.-wrap {
  overflow-x: hidden; }

a {
  color: #333;
  transition-duration: 300ms; }
  a:hover {
    color: #333;
    text-decoration: none;
    opacity: .7; }
  a.-decoration {
    color: #036EB7; }

/* Layout */
.flexbox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }

.box-shadow {
  box-shadow: 0 0 5px #aaa; }

.justify {
  text-align: justify; }

.c-bg-image, .p-faq > .-item > .-q:before, .p-faq > .-item > .-a:before, .p-howto > .-list > .-item > .-img.-shower:after, .p-howto > .-list.-arrow > .-item:not(:last-child):after, .p-product > .-header, .p-product > .-inner > .-box-flow > .-item > .-img.-shower:before, .p-product > .-inner > .-box-flow > .-item:first-child:after {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; }

.bold {
  font-weight: bold; }

.c-text.-narrow {
  transform: scale(0.9, 1);
  width: 110%;
  left: -5%;
  letter-spacing: .06em;
  transform-origin: top left; }

.c-under {
  background: linear-gradient(transparent 70%, #FFFF00 71%, #FFFF00 90%, transparent 91%, transparent 100%); }

.p-nav {
  padding: 15px;
  display: flex;
  justify-content: space-between;
  position: relative;
  background-color: #fff;
  font-size: 1rem; }
  .p-nav.-top {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 2; }
  .p-nav__toggle {
    display: none; }
  @media screen and (min-width: 1000px) {
    .p-nav > .-link {
      display: flex;
      justify-content: flex-end;
      align-items: center; }
      .p-nav > .-link > .-item {
        display: inline-block;
        padding: 6px 14px 8px;
        line-height: 1;
        border: 1px solid #6A3906;
        border-radius: 5px;
        text-align: center;
        color: #6A3906; }
        .p-nav > .-link > .-item:not(:last-child) {
          margin-right: 10px; }
        .p-nav > .-link > .-item:hover {
          background-color: #6A3906;
          color: #fff; } }
  @media screen and (max-width: 999px) {
    .p-nav {
      z-index: 54;
      width: 100%; }
      .p-nav.-bottom {
        z-index: unset; }
      .p-nav > .-logo {
        max-width: 180px; }
      .p-nav > .-link {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 100vw;
        padding-top: 160px;
        background-color: #fff;
        z-index: 2;
        text-align: center; }
        .p-nav > .-link a {
          display: block;
          color: #333;
          font-size: 16px;
          text-align: center;
          margin: 0 auto 20px;
          padding-bottom: 20px;
          line-height: 1.4;
          position: relative; }
          .p-nav > .-link a img {
            height: 14px; }
          .p-nav > .-link a .menu {
            display: block;
            font-weight: bold;
            font-size: 16px; }
          .p-nav > .-link a .cap {
            display: block;
            margin-bottom: 0;
            font-size: 12px; }
          .p-nav > .-link a:hover {
            text-decoration: none; }
          .p-nav > .-link a:after {
            content: '';
            display: block;
            position: absolute;
            width: 80%;
            height: 1px;
            bottom: 0;
            left: 0;
            right: 0;
            margin: 0 auto;
            background: #6A3906; }
      .p-nav__toggle {
        display: block;
        margin-top: 10px;
        position: fixed;
        width: 22px;
        height: 22px;
        transition-duration: 500ms;
        right: 15px;
        z-index: 54; }
        .p-nav__toggle span {
          position: absolute;
          display: inline-block;
          transition: all .4s;
          box-sizing: border-box;
          left: 0;
          width: 100%;
          height: 1px;
          background-color: #333;
          border-radius: 4px; }
          .p-nav__toggle span:nth-of-type(1) {
            top: 0; }
          .p-nav__toggle span:nth-of-type(2) {
            top: 10px; }
          .p-nav__toggle span:nth-of-type(3) {
            bottom: 0; }
      .p-nav.-open .p-nav__toggle span {
        background-color: #222; }
        .p-nav.-open .p-nav__toggle span:nth-of-type(1) {
          transform: translateY(20px) rotate(-45deg);
          top: -10px; }
        .p-nav.-open .p-nav__toggle span:nth-of-type(2) {
          opacity: 0; }
        .p-nav.-open .p-nav__toggle span:nth-of-type(3) {
          transform: translateY(-20px) rotate(45deg);
          bottom: -10px; } }

.p-area {
  background-color: #fff; }
  .p-area.-blue {
    background-color: #1967C9; }
  .p-area.-blue-light {
    background-color: #DAEEFA; }
  .p-area.-brown-light {
    background-color: #EAE6E1; }
  @media screen and (min-width: 1000px) {
    .p-area {
      min-width: 1200px; } }
  .p-area > .-inner {
    max-width: 1090px;
    padding: 50px 10px;
    margin: 0 auto; }
    .p-area > .-inner.-v2 {
      max-width: 1030px; }
    .p-area > .-inner.-v3 {
      max-width: 1230px; }
  .p-area.-top-minus1 > .-inner {
    padding-top: 0;
    position: relative;
    top: -75px; }
    @media screen and (max-width: 999px) {
      .p-area.-top-minus1 > .-inner {
        top: -115px;
        padding-bottom: 0; } }
    @media screen and (max-width: 767px) {
      .p-area.-top-minus1 > .-inner {
        top: -95px; } }
  .p-area.-top-minus2 > .-inner {
    padding-top: 0;
    padding-bottom: 55px;
    position: relative;
    top: -40px; }
    @media screen and (max-width: 999px) {
      .p-area.-top-minus2 > .-inner {
        top: -50px; } }
  .p-area.-top-minus3 > .-inner {
    padding-top: 0;
    position: relative;
    top: -10px;
    padding-bottom: 30px;
    z-index: 1; }
    @media screen and (max-width: 767px) {
      .p-area.-top-minus3 > .-inner {
        top: -60px;
        padding-top: 50px; } }
  .p-area.-top-minus4 > .-inner {
    padding-top: 0;
    padding-bottom: 100px;
    position: relative;
    top: -10px; }
    @media screen and (max-width: 767px) {
      .p-area.-top-minus4 > .-inner {
        top: -10px; } }
  .p-area.-arc-top {
    position: relative; }
    .p-area.-arc-top:before {
      content: '';
      position: absolute;
      display: block;
      left: 0;
      top: -40px;
      width: calc(100% + 400px);
      height: 150px;
      border-top-right-radius: 2000px 150px;
      border-top-left-radius: 2000px 150px;
      margin-left: -200px;
      background-color: #EAE6E1; }
    .p-area.-arc-top > .-inner {
      position: relative;
      z-index: 1; }
  .p-area.-arc-bottom {
    position: relative; }
    .p-area.-arc-bottom:after {
      content: '';
      position: absolute;
      display: block;
      left: 0;
      bottom: -40px;
      width: calc(100% + 400px);
      height: 90px;
      border-bottom-right-radius: 2000px 150px;
      border-bottom-left-radius: 2000px 150px;
      margin-left: -200px;
      background-color: #fff;
      z-index: 1; }
      @media screen and (max-width: 767px) {
        .p-area.-arc-bottom:after {
          height: 80px;
          width: calc(100% + 100px);
          margin-left: -50px;
          border-bottom-right-radius: 1000px 150px;
          border-bottom-left-radius: 1000px 150px; } }
  .p-area.-brown-light.-arc-bottom:after {
    background-color: #EAE6E1; }
  .p-area.-last {
    background-size: contain;
    background-position: bottom center;
    background-repeat: no-repeat;
    background-image: url(../img/p-mv/bg.jpg); }

.p-contact-form {
  position: relative;
  background-color: #fff;
  padding: 100px 100px 65px;
  border-radius: 10px; }
  .p-contact-form > .p-title-ribbon {
    position: absolute;
    top: -45px;
    left: 0;
    right: 0; }
  .p-contact-form > .-info {
    background-color: #F3F3F3;
    padding: 25px 15px 15px;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 60px; }
    .p-contact-form > .-info p {
      line-height: 1.4;
      font-weight: 300;
      margin-bottom: 1.3rem; }
  .p-contact-form .p-button {
    margin-top: 40px; }
  @media screen and (max-width: 999px) {
    .p-contact-form {
      padding: 60px 30px 50px; } }
  @media screen and (max-width: 767px) {
    .p-contact-form {
      padding: 0 20px 40px; }
      .p-contact-form > .p-title-ribbon.-sp {
        position: relative;
        top: -30px;
        width: 95%;
        margin-bottom: 0; }
      .p-contact-form > .-info {
        padding: 30px 20px;
        -moz-text-align-last: left;
        text-align-last: left;
        margin-bottom: 30px; }
      .p-contact-form .p-button {
        margin-top: 0; } }

.p-cta {
  position: fixed;
  right: -6px;
  bottom: 120px;
  width: 160px;
  height: 160px;
  cursor: pointer;
  z-index: 52; }
  @media screen and (max-width: 767px) {
    .p-cta {
      right: -4px;
      bottom: 50px;
      width: 100px;
      height: 100px; } }

.p-faq {
  padding: 0 60px;
  color: #fff;
  margin-bottom: 180px; }
  .p-faq > .-item {
    margin-bottom: 60px; }
    .p-faq > .-item > .-q, .p-faq > .-item > .-a {
      position: relative;
      padding-left: 105px; }
      .p-faq > .-item > .-q:before, .p-faq > .-item > .-a:before {
        content: '';
        position: absolute;
        left: 0;
        width: 70px;
        height: 70px; }
    .p-faq > .-item > .-q {
      font-size: 1.63rem;
      margin-bottom: 25px;
      font-weight: 700; }
      .p-faq > .-item > .-q:before {
        background-image: url(../img/p-faq/q.svg);
        top: -10px; }
    .p-faq > .-item > .-a {
      font-size: 1.13rem; }
      .p-faq > .-item > .-a:before {
        background-image: url(../img/p-faq/a.svg);
        top: 0; }
  @media screen and (max-width: 767px) {
    .p-faq {
      padding: 10px 15px 0;
      margin-bottom: 100px; }
      .p-faq > .-item {
        margin-bottom: 50px; }
        .p-faq > .-item > .-q, .p-faq > .-item > .-a {
          position: relative;
          padding-left: 70px; }
          .p-faq > .-item > .-q:before, .p-faq > .-item > .-a:before {
            top: -5px;
            font-size: 26px;
            width: 50px;
            height: 50px; }
        .p-faq > .-item > .-q {
          font-size: 1.3rem;
          margin-bottom: 20px; }
        .p-faq > .-item > .-a {
          font-size: 1rem; }
          .p-faq > .-item > .-a:before {
            top: -5px; } }

.p-mv {
  background-size: cover;
  background-position: center bottom 60%;
  background-repeat: no-repeat;
  background-image: url(/img/p-mv/bg.jpg);
  padding-top: 80px;
  padding-bottom: 200px;
  position: relative; }
  @media screen and (max-width: 999px) {
    .p-mv {
      padding-top: 95px; } }
  @media screen and (min-width: 1000px) {
    .p-mv {
      padding-top: 140px; }
      .p-mv > .-inner {
        min-width: 1400px; } }
  .p-mv > .-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px; }
  .p-mv__top {
    display: flex;
    justify-content: space-between;
    border: 10px solid #fff;
    border-radius: 10px;
    margin-bottom: 130px; }
    .p-mv__top > .-left, .p-mv__top > .-right {
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      width: 50%;
      display: flex;
      align-items: flex-end;
      position: relative;
      padding-top: 15%; }
      .p-mv__top > .-left > img, .p-mv__top > .-right > img {
        position: absolute;
        width: 88%;
        bottom: 5px; }
      .p-mv__top > .-left .-sp, .p-mv__top > .-right .-sp {
        display: none; }
      .p-mv__top > .-left > .-name, .p-mv__top > .-right > .-name {
        padding-bottom: 25px; }
    .p-mv__top > .-left {
      background-image: url(/img/p-mv/bg-left.jpg); }
      .p-mv__top > .-left img {
        left: 4%; }
    .p-mv__top > .-right {
      background-image: url(/img/p-mv/bg-right.jpg); }
      .p-mv__top > .-right img {
        right: 4%; }
    @media screen and (max-width: 999px) {
      .p-mv__top {
        margin-bottom: 80px; } }
    @media screen and (max-width: 767px) {
      .p-mv__top {
        border-width: 5px;
        margin-bottom: 60px; }
        .p-mv__top > .-left, .p-mv__top > .-right {
          padding-top: 17%; }
          .p-mv__top > .-left > img, .p-mv__top > .-right > img {
            width: 90%; }
          .p-mv__top > .-left .-pc, .p-mv__top > .-right .-pc {
            display: none; }
          .p-mv__top > .-left .-sp, .p-mv__top > .-right .-sp {
            display: block; } }
  .p-mv__bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; }
    .p-mv__bottom > .-left {
      width: 45%; }
      .p-mv__bottom > .-left > .-box {
        border: 1px solid #fff;
        border-radius: 10px;
        padding: 8px;
        color: #fff;
        font-weight: 700; }
        .p-mv__bottom > .-left > .-box > .-inner {
          padding: 5%  6% 30px 20px;
          border: 4px solid #fff;
          border-radius: 5px;
          position: relative;
          background-color: rgba(7, 71, 119, 0.6); }
          .p-mv__bottom > .-left > .-box > .-inner > .-header {
            position: absolute;
            left: 0;
            right: 0;
            top: -50px;
            margin: 0 auto; }
          .p-mv__bottom > .-left > .-box > .-inner > .-title {
            margin-top: 15px;
            font-size: 34px;
            margin-bottom: 30px;
            line-height: 1.25;
            padding-left: 2%; }
            .p-mv__bottom > .-left > .-box > .-inner > .-title > .-l2 {
              font-size: 3.1em;
              text-align: center;
              margin-bottom: .1em; }
              .p-mv__bottom > .-left > .-box > .-inner > .-title > .-l2 span {
                display: inline-block;
                position: relative;
                width: 110%;
                left: -5%;
                letter-spacing: .06em; }
            .p-mv__bottom > .-left > .-box > .-inner > .-title > .-l3 {
              text-align: right; }
          .p-mv__bottom > .-left > .-box > .-inner > .-text.-sp {
            display: none; }
          .p-mv__bottom > .-left > .-box > .-inner > .-text p {
            position: relative;
            font-size: 1.35rem;
            line-height: 2.3;
            margin-bottom: 0; }
            .p-mv__bottom > .-left > .-box > .-inner > .-text p .-bg {
              background-color: #EC881E; }
            .p-mv__bottom > .-left > .-box > .-inner > .-text p:after {
              content: '';
              position: absolute;
              bottom: -3px;
              left: 0;
              height: 4px;
              width: 100%;
              background-image: url(/img/p-mv/border.png);
              background-position: left center;
              background-repeat: repeat-x;
              background-size: contain; }
    .p-mv__bottom > .-right {
      width: 52%;
      padding-top: 6%;
      text-align: center; }
    @media screen and (max-width: 999px) {
      .p-mv__bottom > .-left {
        width: 100%;
        margin-bottom: 30px; }
        .p-mv__bottom > .-left > .-box > .-inner > .-header {
          top: -55px; }
        .p-mv__bottom > .-left > .-box > .-inner > .-title {
          font-size: 33px; }
        .p-mv__bottom > .-left > .-box > .-inner > .-text p {
          font-size: 1.5rem; }
      .p-mv__bottom > .-right {
        width: 100%; } }
    @media screen and (max-width: 767px) {
      .p-mv__bottom > .-left > .-box > .-inner > .-header {
        top: -35px; }
      .p-mv__bottom > .-left > .-box > .-inner > .-title {
        font-size: 18px; }
      .p-mv__bottom > .-left > .-box > .-inner > .-text p {
        font-size: 1.2rem; }
      .p-mv__bottom > .-left > .-box > .-inner > .-text.-sp {
        display: block; }
      .p-mv__bottom > .-left > .-box > .-inner > .-text.-pc {
        display: none; } }
  .p-mv:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 90px;
    background-image: url(/img/p-mv/bottom.svg);
    background-position: center top;
    background-size: 120%; }
    @media screen and (max-width: 767px) {
      .p-mv:after {
        height: 60px; } }

.p-howto {
  margin-bottom: 50px; }
  .p-howto > .-header {
    padding-bottom: 10px;
    border-bottom: 3px solid #333;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 20px; }
    .p-howto > .-header.-sm {
      margin-bottom: 15px; }
    .p-howto > .-header > .-case {
      height: 50px;
      width: 260px;
      display: flex;
      font-weight: 700;
      overflow: hidden; }
      .p-howto > .-header > .-case > .-no {
        border: 2px solid #C9145A;
        border-radius: 25px 0 0 25px;
        background-color: #C9145A;
        color: #fff;
        text-align: center;
        width: 5em;
        font-size: 18px;
        padding-top: 7px;
        padding-left: 6px; }
      .p-howto > .-header > .-case > .-txt {
        border: 2px solid #C9145A;
        border-radius: 0 25px 25px 0;
        width: calc(100% - 5em);
        color: #C9145A;
        text-align: center;
        font-size: 20px;
        padding-top: 6px; }
        .p-howto > .-header > .-case > .-txt.-sm {
          font-size: 1.12em; }
    .p-howto > .-header > .-title {
      width: calc(100% - 260px - 20px);
      font-size: 2rem;
      font-weight: 700; }
  .p-howto > .-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; }
    .p-howto > .-list > .-item {
      width: 32%;
      position: relative; }
      .p-howto > .-list > .-item > .-img {
        text-align: center;
        margin-bottom: 10px;
        position: relative; }
        .p-howto > .-list > .-item > .-img.-shower:after {
          content: '';
          position: absolute;
          bottom: 4%;
          right: -15%;
          width: 180px;
          height: 100px;
          z-index: 1;
          background-image: url(../img/p-howto/shower.png); }
        .p-howto > .-list > .-item > .-img.-shower.-v2:after {
          bottom: 20%;
          right: -11%; }
      .p-howto > .-list > .-item > .-text {
        font-size: 1.1rem;
        padding: 0 4%; }
    .p-howto > .-list.-arrow > .-item:not(:last-child):after {
      content: '';
      position: absolute;
      display: block;
      right: -38px;
      top: 30%;
      height: 40px;
      width: 40px;
      z-index: 1;
      background-image: url(../img/p-product/arrow_left.png); }
  @media screen and (max-width: 999px) {
    .p-howto > .-header {
      display: block;
      text-align: center; }
      .p-howto > .-header > .-case {
        margin: 0 auto 10px; }
      .p-howto > .-header > .-title {
        width: 100%;
        font-size: 1.6rem;
        line-height: 1.5; }
    .p-howto > .-list > .-item {
      width: 100%;
      max-width: 520px;
      margin: 0 auto 30px; }
      .p-howto > .-list > .-item > .-img {
        max-width: 300px;
        position: relative;
        margin-left: auto;
        margin-right: auto; }
        .p-howto > .-list > .-item > .-img.-shower:after {
          bottom: 9%;
          right: -11%;
          width: 140px;
          height: 70px; }
        .p-howto > .-list > .-item > .-img.-shower.-v2:after {
          bottom: 24%;
          right: -5%; }
    .p-howto > .-list.-arrow > .-item:not(:last-child):after {
      position: static;
      margin: 15px auto 0;
      background-image: url(../img/p-product/arrow_down.png); } }
  @media screen and (max-width: 999px) {
    .p-howto > .-header > .-title {
      font-size: 1.4rem; } }

.p-process {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; }
  .p-process > .-item > .-title {
    border-bottom: 3px solid #333;
    font-size: 2.5rem;
    text-align: center;
    line-height: 1.3;
    padding-bottom: 12px;
    margin-bottom: 15px;
    font-weight: 700; }
  .p-process > .-item .-text {
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 300; }
  .p-process > .-item .-img {
    text-align: center; }
    .p-process > .-item .-img img {
      max-width: 320px; }
  @media screen and (min-width: 1000px) {
    .p-process > .-item {
      width: 31%; } }
  @media screen and (max-width: 999px) {
    .p-process > .-item:not(:last-child) {
      margin-bottom: 70px; } }
  @media screen and (max-width: 767px) {
    .p-process > .-item > .-title {
      font-size: 2rem; }
    .p-process > .-item:not(:last-child) {
      margin-bottom: 50px; } }

.p-product-info {
  border: 3px solid #6A3906;
  border-radius: 10px;
  padding: 30px 60px 30px 70px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 20px;
  background-color: #F6F3E9; }
  .p-product-info.-orange {
    border-color: #E6802B; }
  .p-product-info:last-child {
    margin-bottom: 60px; }
  .p-product-info > .-left {
    width: 180px; }
    .p-product-info > .-left > .-img {
      text-align: center;
      margin-bottom: 10px; }
    .p-product-info > .-left > .-text {
      padding-left: 10px; }
      .p-product-info > .-left > .-text p {
        font-weight: 300;
        line-height: 1.8;
        margin-bottom: 1rem; }
        .p-product-info > .-left > .-text p > span {
          font-size: .88rem; }
  .p-product-info > .-right {
    width: calc(100% - 250px); }
    .p-product-info > .-right .p-table {
      margin-bottom: 12px; }
    .p-product-info > .-right ul {
      margin-bottom: 0; }
    .p-product-info > .-right > .-sm {
      text-align: right;
      font-size: .88rem;
      font-weight: 300; }
  @media screen and (max-width: 767px) {
    .p-product-info {
      padding: 30px 20px; }
      .p-product-info > .-left {
        width: 100%; }
        .p-product-info > .-left > .-text {
          text-align: center; }
      .p-product-info > .-right {
        width: 100%; }
      .p-product-info:last-child {
        margin-bottom: 0; } }

.p-product {
  border: 10px solid #6A3906;
  border-radius: 10px;
  margin-bottom: 70px; }
  .p-product.-orange2 {
    border-color: #ED6C00; }
    .p-product.-orange2 > .-inner > .-title {
      color: #ED6C00;
      border-color: #ED6C00; }
    .p-product.-orange2 > .-inner > .-box-flow {
      border-color: #ED6C00; }
    .p-product.-orange2 > .-inner > .-box-introduce {
      border-color: #ED6C00; }
      .p-product.-orange2 > .-inner > .-box-introduce > .-right > .-title {
        color: #ED6C00; }
      .p-product.-orange2 > .-inner > .-box-introduce > .-right > .-list > .-item > .-h {
        background-color: #ED6C00; }
  .p-product > .-header {
    display: flex;
    justify-content: space-between;
    padding: 30px 100px 65px 60px;
    color: #fff; }
    .p-product > .-header > .-left {
      width: 38%;
      text-align: center; }
      .p-product > .-header > .-left > img {
        position: relative;
        right: -10px; }
    .p-product > .-header > .-right {
      width: 62%;
      padding-top: 30px; }
      .p-product > .-header > .-right > .-img {
        display: block;
        max-width: 200px;
        margin-bottom: 5px; }
      .p-product > .-header > .-right > .-title {
        font-size: 2.7rem;
        font-weight: 900; }
        .p-product > .-header > .-right > .-title > .-text {
          letter-spacing: .08em;
          display: inline-block;
          line-height: 1.3; }
      .p-product > .-header > .-right > .-text {
        line-height: 1.8;
        font-size: 1.2rem;
        font-weight: 300;
        letter-spacing: .05em;
        font-weight: 700; }
        .p-product > .-header > .-right > .-text.-v2 {
          max-width: 510px; }
    @media screen and (max-width: 999px) {
      .p-product > .-header {
        padding: 40px 20px 20px;
        position: relative; }
        .p-product > .-header > .-left {
          width: 32%; }
        .p-product > .-header > .-right {
          padding-top: 0; } }
    @media screen and (max-width: 767px) {
      .p-product > .-header > .-left {
        width: 30%;
        position: absolute;
        right: 15px;
        top: 20px; }
        .p-product > .-header > .-left img {
          max-height: 170px;
          right: 0; }
      .p-product > .-header > .-right {
        width: 100%;
        position: relative;
        z-index: 1;
        padding-top: 30px; }
        .p-product > .-header > .-right > .-img {
          margin-bottom: 15px;
          max-width: 170px; }
        .p-product > .-header > .-right > .-title {
          font-size: 1.5rem;
          margin-bottom: 15px; }
        .p-product > .-header > .-right > .-text {
          font-size: 1rem; } }
  .p-product > .-inner {
    background-color: #fff;
    padding: 40px 95px 90px; }
    .p-product > .-inner > .-title {
      text-align: center;
      font-size: 2.25rem;
      color: #6A3906;
      border-bottom: 3px solid #6A3906;
      margin-bottom: 30px;
      font-weight: 700;
      line-height: 1.8; }
    .p-product > .-inner > .-box-flow {
      background-color: #F6F3E9;
      padding: 60px 100px 50px;
      display: flex;
      justify-content: space-between;
      border: 5px solid #6A3906;
      border-radius: 10px;
      margin-bottom: 40px; }
      .p-product > .-inner > .-box-flow > .-item {
        width: 47%;
        position: relative; }
        .p-product > .-inner > .-box-flow > .-item > .-img {
          text-align: center;
          margin-bottom: 15px;
          position: relative; }
          .p-product > .-inner > .-box-flow > .-item > .-img.-shower:before {
            content: '';
            position: absolute;
            top: -30px;
            left: -50px;
            width: 150px;
            height: 120px;
            background-image: url(../img/p-product/shower.png); }
        .p-product > .-inner > .-box-flow > .-item > .-text {
          font-weight: 300;
          letter-spacing: -.05em; }
        .p-product > .-inner > .-box-flow > .-item:first-child:after {
          content: '';
          position: absolute;
          display: block;
          right: -43px;
          top: 30%;
          height: 60px;
          width: 60px;
          z-index: 1;
          background-image: url(../img/p-product/arrow_left.png); }
    .p-product > .-inner > .-box-merit {
      margin-bottom: 50px; }
      .p-product > .-inner > .-box-merit > .-top {
        display: flex;
        justify-content: space-between;
        margin-bottom: 30px; }
        .p-product > .-inner > .-box-merit > .-top > .-img {
          width: 52%; }
        .p-product > .-inner > .-box-merit > .-top > .-list {
          width: 44%;
          margin-top: 15px; }
          .p-product > .-inner > .-box-merit > .-top > .-list > li {
            border-bottom: 1px solid #333;
            font-size: 1.25rem;
            margin-bottom: 0.9rem;
            padding-bottom: 0.9rem;
            font-weight: 300;
            position: relative; }
            .p-product > .-inner > .-box-merit > .-top > .-list > li:before {
              content: '●';
              position: relative;
              font-size: 20px;
              top: 1px;
              margin-right: 3px; }
      .p-product > .-inner > .-box-merit > .-bottom {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        margin-bottom: 20px; }
        .p-product > .-inner > .-box-merit > .-bottom > .-item {
          width: 23%;
          text-align: center; }
          .p-product > .-inner > .-box-merit > .-bottom > .-item > .-img {
            margin-bottom: 15px; }
          .p-product > .-inner > .-box-merit > .-bottom > .-item .-text {
            font-size: 1.1rem;
            font-weight: 300;
            letter-spacing: -.05em; }
      .p-product > .-inner > .-box-merit > .-sm {
        text-align: right;
        font-size: .88rem;
        font-weight: 300; }
    .p-product > .-inner > .-box-introduce {
      padding: 20px 40px 30px;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      background-color: #F6F3E9;
      border: 5px solid #6A3906;
      border-radius: 10px; }
      .p-product > .-inner > .-box-introduce > .-left {
        width: 25%;
        position: relative; }
        .p-product > .-inner > .-box-introduce > .-left > .-img {
          position: absolute;
          left: 0;
          bottom: 0;
          width: 100%; }
      .p-product > .-inner > .-box-introduce > .-right {
        width: 69%; }
        .p-product > .-inner > .-box-introduce > .-right > .-title {
          font-size: 2.25rem;
          color: #6A3906;
          margin-bottom: 20px;
          font-weight: 900; }
        .p-product > .-inner > .-box-introduce > .-right > .-list > .-item {
          display: flex;
          margin-bottom: 10px;
          font-size: 1.12rem;
          font-weight: 300;
          letter-spacing: .05em;
          line-height: 1.5; }
          .p-product > .-inner > .-box-introduce > .-right > .-list > .-item > .-h {
            color: #fff;
            background-color: #6A3906;
            width: 9rem;
            text-align: center;
            border-radius: 20px;
            height: 30px;
            font-weight: 700; }
          .p-product > .-inner > .-box-introduce > .-right > .-list > .-item > .-d {
            width: calc(100% - 9rem);
            padding-left: 30px; }
    @media screen and (max-width: 999px) {
      .p-product > .-inner {
        padding: 30px 15px; }
        .p-product > .-inner > .-title {
          font-size: 1.6rem;
          line-height: 1.5;
          padding-bottom: 10px; }
        .p-product > .-inner > .-box-flow {
          padding: 30px 15px 30px;
          flex-wrap: wrap; }
        .p-product > .-inner > .-box-merit > .-top > .-list {
          margin: 0; } }
    @media screen and (max-width: 767px) {
      .p-product > .-inner > .-box-flow > .-item {
        width: 100%;
        margin-bottom: 30px; }
        .p-product > .-inner > .-box-flow > .-item:first-child:after {
          position: static;
          margin: 15px auto 0;
          background-image: url(../img/p-product/arrow_down.png); }
      .p-product > .-inner > .-box-merit > .-top {
        flex-wrap: wrap; }
        .p-product > .-inner > .-box-merit > .-top > .-img {
          width: 100%;
          margin-bottom: 30px; }
        .p-product > .-inner > .-box-merit > .-top > .-list {
          padding-left: 10px;
          width: 100%;
          margin-top: 0; }
          .p-product > .-inner > .-box-merit > .-top > .-list > li {
            font-size: 1rem; }
      .p-product > .-inner > .-box-merit > .-bottom {
        justify-content: space-around; }
        .p-product > .-inner > .-box-merit > .-bottom > .-item {
          width: 46%;
          margin-bottom: 20px; }
      .p-product > .-inner > .-box-introduce {
        padding: 20px; }
        .p-product > .-inner > .-box-introduce > .-left {
          width: 100%;
          text-align: center;
          margin-bottom: 30px; }
          .p-product > .-inner > .-box-introduce > .-left > .-img {
            position: static;
            max-width: 140px; }
        .p-product > .-inner > .-box-introduce > .-right {
          width: 100%; }
          .p-product > .-inner > .-box-introduce > .-right > .-title {
            font-size: 1.6rem; }
          .p-product > .-inner > .-box-introduce > .-right > .-list > .-item {
            display: block;
            margin-bottom: 20px; }
            .p-product > .-inner > .-box-introduce > .-right > .-list > .-item > .-h {
              margin-bottom: 10px; }
            .p-product > .-inner > .-box-introduce > .-right > .-list > .-item > .-d {
              width: 100%;
              padding: 0; } }
  .p-product.-orange2 {
    margin-bottom: 50px; }
    .p-product.-orange2 > .-header > .-left {
      width: 30%; }
    .p-product.-orange2 > .-header > .-right {
      width: 67%; }
      .p-product.-orange2 > .-header > .-right > .-title {
        color: #ED6C00;
        margin-bottom: 10px;
        padding: 5px; }
      .p-product.-orange2 > .-header > .-right > .-text {
        color: #333;
        padding: 5px; }
    .p-product.-orange2 > .-inner > .-box-introduce > .-left > .-img {
      max-width: 185px; }
    @media screen and (max-width: 767px) {
      .p-product.-orange2 > .-header > .-left {
        top: 10px; }
      .p-product.-orange2 > .-header > .-right {
        width: 100%; } }

.p-step {
  border-radius: 10px;
  padding: 10px;
  display: flex;
  position: relative;
  justify-content: space-between; }
  .p-step.-orange {
    background-color: #E6802B; }
  .p-step.-brown {
    background-color: #6A3906; }
  .p-step.-green {
    background-color: #81C424; }
  .p-step > .-left {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 130px;
    padding-right: 10px; }
    .p-step > .-left img {
      max-width: auto; }
  .p-step > .-right {
    background-color: #fff;
    border-radius: 10px;
    padding: 10px;
    width: calc(100% - 130px); }
    .p-step > .-right > .-title-sp {
      display: none;
      font-weight: 700; }
    .p-step > .-right > .-inner {
      display: flex;
      justify-content: space-between; }
      .p-step > .-right > .-inner > .-left {
        width: 63%;
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: center;
        padding-left: 20px; }
        .p-step > .-right > .-inner > .-left > .-title {
          font-size: 2.5rem;
          width: 100%;
          line-height: 1.4;
          margin-bottom: .3em;
          letter-spacing: .08em;
          font-weight: 700; }
        .p-step > .-right > .-inner > .-left p {
          width: 100%;
          font-size: 1.35rem;
          line-height: 1.6;
          margin: 0; }
      .p-step > .-right > .-inner > .-right {
        width: 33%; }
  .p-step:not(:last-child):after {
    content: '';
    position: absolute;
    width: 60px;
    height: 50px;
    background-image: url(/img/p-step/arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    bottom: -20px;
    left: 40px;
    z-index: 1; }
  .p-step:last-child {
    margin-bottom: 15px; }
  @media screen and (max-width: 767px) {
    .p-step {
      flex-wrap: wrap;
      padding-top: 20px;
      padding-bottom: 40px; }
      .p-step > .-left {
        width: 100%;
        padding-right: 0; }
        .p-step > .-left img {
          height: 60px;
          width: auto;
          margin-bottom: 10px; }
      .p-step > .-right {
        width: 100%; }
        .p-step > .-right > .-title-sp {
          display: block;
          font-size: 1.8rem;
          text-align: center;
          width: 100%;
          line-height: 1.4;
          margin-bottom: .3em; }
        .p-step > .-right > .-inner > .-left {
          padding-left: 0; }
          .p-step > .-right > .-inner > .-left > .-title {
            display: none; }
          .p-step > .-right > .-inner > .-left p {
            font-size: 1rem; }
      .p-step:not(:last-child):after {
        width: 40px;
        height: 30px;
        bottom: -10px;
        left: 0;
        right: 0;
        margin: 0 auto;
        z-index: 1; }
      .p-step:last-child {
        margin-bottom: 0px; } }

.p-title-ribbon {
  display: block;
  margin: 0 auto 80px;
  z-index: 1;
  position: relative; }
  .p-title-ribbon.-sp {
    display: none; }
  @media screen and (max-width: 999px) {
    .p-title-ribbon {
      margin-bottom: 50px; } }
  @media screen and (max-width: 767px) {
    .p-title-ribbon {
      margin-bottom: 40px;
      display: none; }
      .p-title-ribbon.-sp {
        display: block;
        max-width: 640px;
        width: 100%; } }

.p-table {
  width: 100%; }
  .p-table tbody tr th, .p-table tbody tr td {
    border-bottom: 1px solid #333;
    font-size: .88rem;
    padding: 20px 5px 15px;
    vertical-align: top;
    font-weight: 300; }
  .p-table tbody tr th {
    width: 6rem; }
  .p-table tbody tr td {
    padding-left: 15px; }
    .p-table tbody tr td ul {
      list-style-type: disc;
      padding-left: 20px; }
      .p-table tbody tr td ul li {
        font-size: .88rem; }

.p-form {
  font-size: 18px; }
  .p-form > .-group {
    width: 100%;
    border-bottom: 1px solid #333;
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 30px;
    margin-bottom: 30px;
    font-weight: 300; }
    .p-form > .-group:last-of-type {
      border: none; }
    .p-form > .-group > label {
      width: 14em;
      margin: 0;
      position: relative;
      top: 12px; }
      .p-form > .-group > label.-radio {
        top: 0; }
    .p-form > .-group > .-control {
      width: calc(100% - 14em); }
      .p-form > .-group > .-control input[type=text], .p-form > .-group > .-control input[type=email], .p-form > .-group > .-control input[type=tel], .p-form > .-group > .-control input[type=number], .p-form > .-group > .-control textarea {
        width: 100%;
        padding: 13px 15px;
        border-radius: 5px;
        border: 1px solid #333; }
      .p-form > .-group > .-control .-radio {
        margin: 0 1.5em 0 0;
        display: inline-block; }
        .p-form > .-group > .-control .-radio input[type="radio"] {
          position: absolute;
          opacity: 0; }
          .p-form > .-group > .-control .-radio input[type="radio"] + .-label {
            margin: 0; }
            .p-form > .-group > .-control .-radio input[type="radio"] + .-label:before {
              content: '';
              background: #fff;
              border-radius: 100%;
              border: 1px solid #bfbfbf;
              display: inline-block;
              width: 1.4em;
              height: 1.4em;
              position: relative;
              top: 5px;
              margin-right: .5em;
              vertical-align: top;
              cursor: pointer;
              text-align: center;
              transition: all 250ms ease; }
          .p-form > .-group > .-control .-radio input[type="radio"]:checked + .-label:before {
            background-color: #1967C9;
            box-shadow: inset 0 0 0 4px #fff; }
          .p-form > .-group > .-control .-radio input[type="radio"]:focus + .-label:before {
            outline: none;
            border-color: #1967C9; }
          .p-form > .-group > .-control .-radio input[type="radio"]:disabled + .-label:before {
            box-shadow: inset 0 0 0 4px #fff;
            border-color: #bfbfbf;
            background: #bfbfbf; }
          .p-form > .-group > .-control .-radio input[type="radio"] + .-label:empty:before {
            margin-right: 0; }
      .p-form > .-group > .-control.-flex {
        display: flex; }
        .p-form > .-group > .-control.-flex > span {
          padding-left: 10px;
          display: flex;
          align-items: flex-end;
          font-size: 1.4rem; }
  @media screen and (max-width: 767px) {
    .p-form > .-group:last-of-type {
      margin-bottom: 0; }
    .p-form > .-group > label {
      width: 100%;
      margin-bottom: 10px; }
    .p-form > .-group > .-control {
      width: 100%; } }

.p-button {
  border-radius: 5px;
  background-color: #C9145A;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  display: block;
  max-width: 240px;
  height: 60px;
  margin: 0 auto;
  width: 100%;
  transition-duration: 300ms; }
  .p-button:hover {
    opacity: .7;
    color: #fff; }
  .p-button.-icon {
    height: 100px;
    max-width: 340px;
    padding-left: 45px;
    padding-right: 20px;
    position: relative;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    font-weight: 300; }
    .p-button.-icon div span {
      display: block;
      line-height: 1.5; }
    .p-button.-icon div > .-sm {
      font-size: 1.3rem; }
    .p-button.-icon:before {
      content: '';
      width: 50px;
      height: 35px;
      position: absolute;
      left: 13px;
      top: 33px;
      background-size: contain;
      background-position: center;
      background-repeat: no-repeat;
      background-image: url(../img/p-button/i_mail.svg); }
    .p-button.-icon:after {
      content: '';
      width: 18px;
      height: 17px;
      position: absolute;
      right: 20px;
      top: 43px;
      background-size: contain;
      background-position: center;
      background-repeat: no-repeat;
      background-image: url(../img/p-button/arrow.svg); }

.p-footer > .-inner {
  padding: 70px 15px 40px;
  max-width: 1030px;
  margin: 0 auto; }
  .p-footer > .-inner > .-title {
    font-size: 2.25rem;
    border-bottom: 1px solid #333;
    margin-bottom: 30px;
    padding-bottom: 5px;
    font-weight: 700;
    line-height: 1.8; }
  .p-footer > .-inner > .-info {
    display: flex;
    justify-content: space-between; }
    .p-footer > .-inner > .-info > .-left {
      width: 55%; }
      .p-footer > .-inner > .-info > .-left > .-label {
        background-color: #000;
        color: #fff;
        font-size: 1.12rem;
        text-align: center;
        display: block;
        width: 150px;
        line-height: 1;
        padding: 7px 5px;
        border-radius: 15px;
        margin-bottom: 5px;
        font-weight: 300; }
      .p-footer > .-inner > .-info > .-left > .-title {
        font-size: 2.1rem;
        margin-bottom: 10px;
        font-weight: 300; }
      .p-footer > .-inner > .-info > .-left > .-detail {
        font-size: 1.1rem;
        font-weight: 300; }
    .p-footer > .-inner > .-info > .-right {
      width: 45%; }
      .p-footer > .-inner > .-info > .-right .p-button {
        margin-top: 30px;
        margin-right: unset; }
  @media screen and (max-width: 767px) {
    .p-footer > .-inner > .-title {
      font-size: 1.8rem; }
    .p-footer > .-inner > .-info {
      display: block; }
      .p-footer > .-inner > .-info > .-left {
        width: 100%;
        margin-bottom: 30px; }
        .p-footer > .-inner > .-info > .-left > .-title {
          font-size: 1.8rem; }
        .p-footer > .-inner > .-info > .-left > .-detail {
          font-size: 1rem; }
      .p-footer > .-inner > .-info > .-right {
        width: 100%; }
        .p-footer > .-inner > .-info > .-right .p-button {
          margin-right: auto; } }

.p-copyright {
  background-color: #6A3906;
  padding: 15px;
  text-align: center;
  color: #fff;
  font-size: 12px;
  font-weight: 300; }
/*# sourceMappingURL=maps/style.css.map */
