@charset "UTF-8";
/******************************************************

fonts

******************************************************/
/*! ALL ***************************************************/
html {
  font-size: 62.5%;
  /* 62.5% 10px 1em */
  height: 100%; }

body {
  min-width: 960px;
  color: #333333;
  font-family: "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
  background: #f6f6f6;
  -webkit-text-size-adjust: none;
  font-feature-settings: "palt";
  text-align: justify;
  height: 100%;
  -webkit-print-color-adjust: exact; }

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

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

p {
  letter-spacing: 0.06em; }

.pageTop {
  position: fixed;
  right: 20px;
  bottom: -40px;
  text-align: center;
  transition: all 0.4s cubic-bezier(1, 0, 0, 1);
  backface-visibility: hidden; }
  .pageTop a {
    display: block;
    background: #000;
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: #fff;
    font-size: 1rem; }
  .pageTop.on {
    bottom: 80px; }

#wrap {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column; }
  #wrap footer {
    margin-top: auto;
    width: 100%;
    height: 54px;
    background: #000000;
    text-align: center;
    color: #fff;
    font-size: 1rem;
    line-height: 54px; }

.btn {
  border: #d8d8d8 solid 1px;
  border-bottom: #8f8f8f solid 2px;
  line-height: 56px;
  height: 56px;
  width: 230px;
  max-width: 100%;
  box-sizing: border-box;
  background-color: #d8d8d8;
  transition: all 0.2s ease;
  backface-visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 600;
  padding: 0;
  cursor: pointer;
  margin: 0 auto; }
  .btn:hover {
    filter: brightness(110%); }
  .btn.orange {
    border: 0;
    border-top: #f08c46 solid 1px;
    border-bottom: #9c4000 solid 2px;
    background-color: #eb6100;
    color: #fff; }

header {
  text-align: center;
  padding: 120px 0 60px; }

article {
  padding: 0 10px;
  max-width: 100%;
  width: 1000px;
  margin: 0 auto 80px;
  box-sizing: border-box; }
  article section {
    text-align: center;
    background: #fff;
    padding: 80px; }
    article section h2 {
      padding-bottom: 60px; }
      article section h2 em {
        display: block;
        line-height: 1;
        font-family: "Roboto", sans-serif;
        color: #eb6100;
        font-size: 5rem;
        line-height: 1; }
      article section h2 small {
        display: block;
        line-height: 1;
        padding-top: 20px; }
    article section .text {
      padding-bottom: 40px; }
  article .mapBox {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 20px; }
    article .mapBox figure {
      width: calc(50% - 10px);
      margin-top: 20px; }
      article .mapBox figure figcaption {
        text-align: center;
        font-weight: bold;
        padding-top: 10px; }

.formBox01 {
  width: 510px;
  max-width: 100%;
  margin: 0 auto;
  text-align: center; }

.formBox02 {
  width: 710px;
  max-width: 100%;
  margin: 0 auto;
  text-align: center; }

.input {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 20px; }
  .input > em {
    width: 180px;
    text-align: left; }
  .input em + .inputBox {
    width: calc(100% - 180px);
    text-align: left; }
  .input .inputBox p {
    text-align: left; }
  .input .inputBox .innerBox {
    display: block; }
    .input .inputBox .innerBox span + input {
      margin-left: 10px; }
  .input .inputBox .innerBox + .innerBox {
    margin-top: 20px; }
  .input input[type="text"],
  .input input[type="password"],
  .input input[type="tel"],
  .input input[type="email"],
  .input input[type="number"] {
    -webkit-appearance: none;
    -webkit-border-radius: 0;
    width: 100%;
    height: 30px;
    font-size: 1.6rem;
    padding: 0 10px;
    box-sizing: border-box;
    border: #9d9ca1 solid 1px; }
    .input input[type="text"].middle,
    .input input[type="password"].middle,
    .input input[type="tel"].middle,
    .input input[type="email"].middle,
    .input input[type="number"].middle {
      width: 50%; }
    .input input[type="text"].small,
    .input input[type="password"].small,
    .input input[type="tel"].small,
    .input input[type="email"].small,
    .input input[type="number"].small {
      width: 30%; }
  .input ::placeholder {
    color: #9d9ca1; }
  .input textarea {
    width: 100%;
    height: 120px;
    font-size: 1.4rem;
    padding: 10px;
    box-sizing: border-box;
    border: #9d9ca1 solid 1px;
    -webkit-appearance: none;
    -webkit-border-radius: 0; }

input[type="text"].yellow {
  background: #fffde2; }

input[type="text"].money {
  text-align: right; }

.moneyWrap {
  position: relative; }
  .moneyWrap:before {
    content: "円";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translate(0, -50%);
    font-size: 1.5rem;
    font-weight: 600; }
  .moneyWrap input[type="text"].money {
    padding-right: 1.8em !important; }

.submit {
  margin-top: 60px; }
  .submit.flex {
    display: flex;
    justify-content: center;
    align-items: center; }
    .submit.flex .btn {
      margin: 0; }
    .submit.flex .btn + .btn {
      margin-left: 20px; }

input[type="submit"] {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  text-align: center; }

.textLink {
  margin: 60px 0; }
  .textLink li a {
    font-size: 1.5rem;
    color: #939393;
    border-bottom: #939393 solid 1px; }
  .textLink li + li {
    margin-top: 10px; }

.mb0 {
  margin-bottom: 0; }

/*! dashboard ***************************************************/
.dashboard {
  background: #ffffff; }
  .dashboard header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 0 20px;
    height: 80px;
    border-bottom: #e2e2e2 solid 1px; }
    .dashboard header p {
      margin-right: auto;
      margin-left: 20px;
      font-weight: bold;
      font-size: 2rem; }
      .dashboard header p a {
        color: #246ade;
        display: inline-block;
        margin-left: 10px;
        font-size: 1.6rem; }
    .dashboard header ul {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      margin-right: 120px; }
      .dashboard header ul li + li {
        margin-left: 30px; }
  .dashboard #slidemenuBtn {
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9999; }
    .dashboard #slidemenuBtn span:nth-child(1) {
      width: 50px;
      height: 32px;
      box-sizing: border-box;
      border-top: #333 solid 1px;
      border-bottom: #333 solid 1px;
      position: relative;
      transition: all 0.2s ease;
      backface-visibility: hidden; }
      .dashboard #slidemenuBtn span:nth-child(1):before {
        content: "";
        width: 100%;
        height: 1px;
        background: #333;
        position: absolute;
        left: 0;
        top: calc(34% - 1px); }
      .dashboard #slidemenuBtn span:nth-child(1):after {
        content: "";
        width: 100%;
        height: 1px;
        background: #333;
        position: absolute;
        left: 0;
        top: calc(68% - 1px); }
    .dashboard #slidemenuBtn span:nth-child(2) {
      position: absolute;
      left: calc(50% - 25px);
      top: calc(50% - 25px);
      width: 50px;
      height: 50px;
      transition: all 0.2s ease;
      backface-visibility: hidden;
      transform: scale(0); }
      .dashboard #slidemenuBtn span:nth-child(2):before {
        content: "";
        width: 100%;
        height: 1px;
        background: #333;
        position: absolute;
        left: 0;
        top: 50%;
        transform: rotate(45deg); }
      .dashboard #slidemenuBtn span:nth-child(2):after {
        content: "";
        width: 100%;
        height: 1px;
        background: #333;
        position: absolute;
        left: 0;
        top: 50%;
        transform: rotate(-45deg); }
  .dashboard a img {
    transition: all 0.2s ease;
    backface-visibility: hidden; }
  .dashboard a:hover img {
    filter: brightness(120%); }
  .dashboard article {
    padding: 0;
    max-width: 100%;
    width: 960px;
    margin: 0 auto 100px; }
    .dashboard article section {
      padding: 80px 0 0;
      text-align: left; }
      .dashboard article section.position {
        position: relative; }
        .dashboard article section.position .btnBox.positionflex {
          position: absolute;
          right: 0;
          top: 60px;
          width: 300px;
          display: flex;
          justify-content: center;
          align-items: center;
          flex-wrap: wrap; }
          .dashboard article section.position .btnBox.positionflex p {
            width: 100%;
            font-size: 1.4rem;
            text-align: center;
            font-weight: bold;
            padding-bottom: 5px;
            color: #246ade; }
          .dashboard article section.position .btnBox.positionflex .btn {
            width: 140px; }
      .dashboard article section h2 {
        padding-bottom: 10px;
        margin-bottom: 40px;
        display: flex;
        justify-content: flex-start;
        align-items: baseline;
        flex-wrap: wrap;
        border-bottom: #dfdfdf solid 2px;
        position: relative; }
        .dashboard article section h2:before {
          content: "";
          width: 50px;
          height: 4px;
          background: #eb6100;
          position: absolute;
          left: 20px;
          bottom: -3px; }
        .dashboard article section h2 em {
          display: block;
          line-height: 1;
          font-family: "Roboto", sans-serif;
          color: #eb6100;
          font-size: 6rem;
          line-height: 1; }
        .dashboard article section h2 small {
          padding-left: 30px;
          font-size: 2rem;
          font-weight: bold;
          display: block;
          line-height: 1;
          padding-top: 0px; }
      .dashboard article section h3 {
        font-weight: bold;
        text-align: left;
        font-size: 1.8rem;
        padding-bottom: 20px;
        margin-top: 60px; }
      .dashboard article section h2 ~ p {
        margin-bottom: 60px; }
      .dashboard article section .text {
        padding-bottom: 0px; }
    .dashboard article .btn {
      width: 200px;
      height: 42px;
      line-height: 38px;
      font-size: 1.6rem;
      z-index: 10; }
      .dashboard article .btn.blue {
        background: #246ade;
        border-top-color: #6093e7;
        border-bottom-color: #184693;
        color: #fff; }
    .dashboard article .mapBox {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      margin-top: 20px; }
      .dashboard article .mapBox figure {
        width: calc(50% - 10px);
        margin-top: 20px; }
        .dashboard article .mapBox figure figcaption {
          text-align: left;
          font-weight: bold;
          padding-top: 10px; }
  .dashboard .grayBox {
    margin: 0 40px;
    border: #d8d8d8 solid 2px;
    padding: 40px 60px;
    background: #f4f4f4;
    position: relative;
    text-align: center; }
    .dashboard .grayBox h3 {
      padding: 0;
      margin: 0;
      font-size: 2.4rem;
      text-align: center; }
    .dashboard .grayBox p {
      text-align: left;
      padding: 25px 0; }
    .dashboard .grayBox .btnBox {
      display: flex;
      justify-content: center;
      align-items: center; }
      .dashboard .grayBox .btnBox a.btn {
        margin: 0; }
      .dashboard .grayBox .btnBox a.btn + a.btn {
        margin-left: 30px; }
    .dashboard .grayBox:before {
      content: "";
      position: absolute;
      left: 3px;
      top: 3px;
      width: calc(100% - 6px);
      height: calc(100% - 6px);
      border: #d8d8d8 solid 1px;
      box-sizing: border-box;
      z-index: 0; }
    .dashboard .grayBox.white {
      text-align: left;
      padding: 20px;
      width: 660px;
      box-sizing: border-box;
      margin: 0 auto;
      background: #fff; }
      .dashboard .grayBox.white h4 {
        font-weight: bold;
        font-size: 1.8rem; }
      .dashboard .grayBox.white .price02 {
        display: flex;
        justify-content: flex-start;
        padding-top: 26px; }
        .dashboard .grayBox.white .price02 li {
          display: flex;
          justify-content: flex-start;
          flex-wrap: wrap;
          align-items: center;
          line-height: 1; }
          .dashboard .grayBox.white .price02 li span {
            width: 100%;
            display: block;
            padding-bottom: 5px;
            font-weight: 600; }
          .dashboard .grayBox.white .price02 li em {
            color: #246ade;
            font-size: 3rem;
            font-weight: bold; }
          .dashboard .grayBox.white .price02 li small {
            padding-top: 10px;
            font-size: 1.6rem; }
          .dashboard .grayBox.white .price02 li i {
            margin: 0 6px;
            display: block; }
    .dashboard .grayBox.orange {
      text-align: left;
      padding: 20px;
      width: 660px;
      box-sizing: border-box;
      margin: 0 auto;
      background: #fff;
      border-color: #eb6100;
      border-width: 4px; }
      .dashboard .grayBox.orange:before {
        border-color: #eb6100;
        border-width: 2px; }
      .dashboard .grayBox.orange h4 {
        font-weight: bold;
        font-size: 1.8rem;
        line-height: 44px;
        background: #eb6100;
        border-radius: 22px;
        color: #fff;
        text-align: center; }
      .dashboard .grayBox.orange .price02 {
        display: flex;
        justify-content: flex-start;
        padding-top: 26px; }
        .dashboard .grayBox.orange .price02 li {
          display: flex;
          justify-content: flex-start;
          flex-wrap: wrap;
          align-items: center;
          line-height: 1; }
          .dashboard .grayBox.orange .price02 li span {
            width: 100%;
            display: block;
            padding-bottom: 5px;
            font-weight: 600; }
          .dashboard .grayBox.orange .price02 li em {
            color: #246ade;
            font-size: 3rem;
            font-weight: bold; }
          .dashboard .grayBox.orange .price02 li small {
            padding-top: 10px;
            font-size: 1.6rem; }
          .dashboard .grayBox.orange .price02 li i {
            margin: 0 6px;
            display: block; }
  .dashboard table {
    width: 100%;
    margin-bottom: 30px;
    text-align: center; }
    .dashboard table.type01 {
      background: #f6f6f6; }
      .dashboard table.type01 th, .dashboard table.type01 td {
        border-bottom: #fff solid 2px; }
      .dashboard table.type01 td {
        padding: 20px; }
        .dashboard table.type01 td a.btn {
          margin: 0;
          display: inline-block;
          text-align: center; }
        .dashboard table.type01 td a.btn + a.btn {
          margin-left: 10px; }
      .dashboard table.type01 td.btnTd01 {
        text-align: right;
        width: 450px;
        box-sizing: border-box; }
    .dashboard table.type02 thead th {
      background: #f6f6f6;
      text-align: left;
      padding: 10px;
      font-size: 1.6rem;
      font-weight: normal; }
    .dashboard table.type02 tbody td {
      height: 60px;
      vertical-align: middle;
      text-align: left;
      border-bottom: #f6f6f6 solid 2px; }
      .dashboard table.type02 tbody td.time {
        width: 170px;
        box-sizing: border-box; }
      .dashboard table.type02 tbody td.name {
        width: 120px;
        box-sizing: border-box; }
      .dashboard table.type02 tbody td.pdf-name {
        box-sizing: border-box;
        width: calc(100% - 290px); }
        .dashboard table.type02 tbody td.pdf-name div {
          display: flex;
          justify-content: flex-start;
          align-items: center; }
        .dashboard table.type02 tbody td.pdf-name a {
          display: block;
          font-size: 1.6rem;
          height: 40px;
          line-height: 40px;
          color: #246ade;
          width: 100%;
          max-width: 100%;
          padding: 0 8px;
          box-sizing: border-box; }
        .dashboard table.type02 tbody td.pdf-name input[type="text"] {
          font-size: 1.6rem;
          height: 40px;
          color: #333;
          width: 100%;
          max-width: 100%;
          padding: 0 8px;
          border: #ccc solid 1px;
          box-sizing: border-box; }
          .dashboard table.type02 tbody td.pdf-name input[type="text"][readonly="readonly"] {
            border: 0;
            color: #246ade; }
        .dashboard table.type02 tbody td.pdf-name .icon-pencil {
          display: inline-block;
          width: 40px;
          height: 40px;
          text-align: center;
          line-height: 40px;
          cursor: pointer;
          margin-left: auto; }
        .dashboard table.type02 tbody td.pdf-name .reset {
          height: 40px;
          width: 110px;
          font-size: 15px;
          margin-left: 10px;
          background: #d8d8d8;
          border-bottom: #8f8f8f solid 2px; }
        .dashboard table.type02 tbody td.pdf-name .save {
          height: 40px;
          width: 110px;
          font-size: 15px;
          margin-left: 10px;
          background: #d8d8d8;
          border-bottom: #8f8f8f solid 2px; }
    .dashboard table.type02 th, .dashboard table.type02 td {
      border-bottom: #fff solid 2px; }
  .dashboard .itemBox-01 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px; }
    .dashboard .itemBox-01 .item {
      width: 300px;
      margin-bottom: 30px;
      border: #333 solid 1px;
      box-sizing: border-box; }
      .dashboard .itemBox-01 .item figure {
        width: 100%;
        padding-bottom: 100%;
        position: relative; }
        .dashboard .itemBox-01 .item figure a {
          position: absolute;
          left: 0;
          top: 0;
          width: 100%;
          height: 100%;
          display: flex;
          justify-content: center;
          align-items: center; }
          .dashboard .itemBox-01 .item figure a img {
            max-width: 100%;
            max-height: 100%;
            width: auto;
            height: auto; }
      .dashboard .itemBox-01 .item .text {
        border-top: #333 solid 1px;
        padding: 15px; }
        .dashboard .itemBox-01 .item .text a {
          color: #246ade;
          text-decoration: underline;
          display: block;
          padding-bottom: 10px; }
  .dashboard #menu {
    position: fixed;
    right: 0;
    top: 80px;
    height: calc(100% - 80px);
    background: #484848;
    transition: all 0.2s ease;
    backface-visibility: hidden;
    transform: translate3d(100%, 0, 0);
    z-index: 20; }
    .dashboard #menu .menuInner ul li a {
      width: 200px;
      padding: 20px;
      box-sizing: border-box;
      line-height: 1;
      display: block;
      color: #fff;
      border-bottom: #818181 solid 1px; }
  .dashboard.slide-open #slidemenuBtn span:nth-child(1) {
    transform: scale(0, 1); }
  .dashboard.slide-open #slidemenuBtn span:nth-child(2) {
    transform: scale(1); }
  .dashboard.slide-open #menu {
    transform: translate3d(0, 0, 0); }
  .dashboard .page {
    display: flex;
    justify-content: center;
    align-items: center; }
    .dashboard .page a {
      width: 30px;
      height: 30px;
      margin: 0 2px;
      border: #9d9ca1 solid 1px;
      box-sizing: border-box;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1.4rem; }
      .dashboard .page a.current {
        background: #c9c9c9; }
      .dashboard .page a:hover {
        background: #c9c9c9; }
    .dashboard .page span {
      width: 30px;
      height: 30px;
      margin: 0 2px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1.4rem; }
  .dashboard .article {
    background: #f6f6f6;
    padding: 50px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; }
    .dashboard .article h3 {
      line-height: 1;
      margin: 0;
      padding: 0 0 30px;
      width: 100%; }
    .dashboard .article .photo {
      width: 400px; }
      .dashboard .article .photo .slick-dotted.slick-slider {
        margin-bottom: 0; }
      .dashboard .article .photo .slick-slide div {
        width: 100%;
        height: 0;
        padding-bottom: 100%;
        position: relative;
        background: #fff; }
        .dashboard .article .photo .slick-slide div div {
          position: absolute;
          left: 0;
          top: 0;
          width: 100%;
          height: 100%;
          display: flex !important;
          justify-content: center;
          align-items: center; }
          .dashboard .article .photo .slick-slide div div img {
            width: auto;
            height: auto;
            max-width: 100%;
            max-height: 100%; }
      .dashboard .article .photo .slick-dots {
        position: static;
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
        margin-left: -10px;
        width: auto; }
        .dashboard .article .photo .slick-dots li {
          width: 72px;
          margin: 6px 0 0 10px !important;
          height: 48px;
          overflow: hidden;
          transition: all 0.2s ease;
          backface-visibility: hidden;
          position: relative; }
          .dashboard .article .photo .slick-dots li:before {
            content: "";
            position: absolute;
            width: 100%;
            height: 100%;
            border: #eb6100 solid 1px;
            box-sizing: border-box;
            opacity: 0; }
          .dashboard .article .photo .slick-dots li:hover {
            opacity: 0.8; }
          .dashboard .article .photo .slick-dots li.slick-active:before {
            opacity: 1; }
    .dashboard .article .data {
      width: 430px; }
      .dashboard .article .data li {
        border-top: #dfdfdf solid 1px;
        display: flex;
        justify-content: flex-start;
        padding: 10px; }
        .dashboard .article .data li em {
          font-size: 1.5rem;
          line-height: 1.4;
          width: 100px;
          flex-shrink: 0; }
        .dashboard .article .data li p {
          font-size: 1.5rem;
          line-height: 1.4; }
      .dashboard .article .data li:last-child {
        border-bottom: #dfdfdf solid 1px; }
    .dashboard .article .data + p {
      padding-top: 40px; }
    .dashboard .article .wideBtnBox {
      margin-bottom: 0; }
  .dashboard .price01 {
    display: flex;
    justify-content: center;
    align-items: center; }
    .dashboard .price01 li {
      display: flex;
      justify-content: center;
      align-items: baseline;
      line-height: 1.5;
      border-bottom: #dfdfdf solid 2px; }
      .dashboard .price01 li small {
        font-size: 1.6rem; }
      .dashboard .price01 li em {
        font-size: 3rem;
        font-weight: bold;
        padding: 0 10px; }
    .dashboard .price01 li + li {
      margin-left: 66px; }
  .dashboard .wideBtnBox {
    max-width: 100%;
    width: 500px;
    margin: 60px auto; }
    .dashboard .wideBtnBox .btn {
      width: 100%;
      height: 60px; }
    .dashboard .wideBtnBox .btn + .btn {
      margin-top: 20px; }
  .dashboard .simulationWrap {
    background: #f6f6f6;
    padding: 50px 30px;
    position: relative;
    margin-top: 60px; }
    .dashboard .simulationWrap #tabBtn {
      left: 0;
      top: -30px; }
      .dashboard .simulationWrap #tabBtn.fixed {
        left: calc(50% - 480px); }
    .dashboard .simulationWrap h3 {
      margin-top: 0; }
    .dashboard .simulationWrap .grayBox.orange {
      margin-left: 0; }
    .dashboard .simulationWrap .patternTable {
      display: flex;
      justify-content: flex-start;
      margin: 50px 0 0px;
      width: 100%; }
      .dashboard .simulationWrap .patternTable .type03 {
        width: 20%;
        font-size: 1.5rem;
        letter-spacing: 0;
        margin-bottom: 0; }
        .dashboard .simulationWrap .patternTable .type03 thead th {
          background: #e68c4e;
          color: #fff;
          line-height: 1;
          padding: 15px 0px; }
        .dashboard .simulationWrap .patternTable .type03 tbody td {
          padding: 10px 10px;
          text-align: center;
          vertical-align: middle;
          border-bottom: #dfdfdf solid 1px; }
          .dashboard .simulationWrap .patternTable .type03 tbody td input {
            width: 100%;
            height: 27px;
            padding: 0;
            margin: 0;
            text-align: center;
            font-size: 1.6rem;
            box-sizing: border-box;
            color: #333;
            vertical-align: top; }
        .dashboard .simulationWrap .patternTable .type03.wide {
          width: 40%; }
          .dashboard .simulationWrap .patternTable .type03.wide thead th {
            width: 50%; }
          .dashboard .simulationWrap .patternTable .type03.wide thead th:nth-child(1) {
            background: none; }
          .dashboard .simulationWrap .patternTable .type03.wide tbody td {
            font-size: 1.5rem;
            letter-spacing: -1px; }
          .dashboard .simulationWrap .patternTable .type03.wide tbody td:nth-child(1) {
            text-align: left;
            font-weight: bold; }
      .dashboard .simulationWrap .patternTable .type03:nth-child(2) thead th {
        background: #e87b2e; }
      .dashboard .simulationWrap .patternTable .type03:nth-child(3) thead th {
        background: #eb6100; }
      .dashboard .simulationWrap .patternTable .type03:nth-child(4) thead th {
        background: #c85300; }
    .dashboard .simulationWrap .patternTableBtn {
      margin-top: 10px !important;
      justify-content: flex-end !important;
      margin-bottom: 50px; }
      .dashboard .simulationWrap .patternTableBtn a:nth-child(1) {
        background: #e87b2e; }
      .dashboard .simulationWrap .patternTableBtn a:nth-child(3) {
        background: #c85300; }
    .dashboard .simulationWrap #Payment {
      width: 100%;
      height: 400px; }
    .dashboard .simulationWrap .line {
      background: #eb6100;
      line-height: 50px;
      padding: 0;
      text-indent: 1em;
      color: #fff;
      font-size: 1.8rem;
      margin-bottom: 20px;
      margin-top: 50px; }
      .dashboard .simulationWrap .line#pattern01 {
        background: #e87b2e; }
      .dashboard .simulationWrap .line#pattern02 {
        background: #eb6100; }
      .dashboard .simulationWrap .line#pattern03 {
        background: #c85300; }
    .dashboard .simulationWrap .line + p {
      margin-bottom: 20px; }
    .dashboard .simulationWrap .patternBox {
      display: flex;
      justify-content: space-between;
      align-items: center; }
      .dashboard .simulationWrap .patternBox .item {
        width: 210px;
        height: 210px;
        background: #e9f1ff;
        box-sizing: border-box;
        position: relative; }
        .dashboard .simulationWrap .patternBox .item:before {
          content: "未選択";
          font-size: 1.6rem;
          color: #246ade;
          font-weight: bold;
          text-align: center;
          position: absolute;
          left: 0;
          top: calc(50% - 1em);
          width: 100%;
          z-index: 0; }
        .dashboard .simulationWrap .patternBox .item.other {
          background: #246ade; }
          .dashboard .simulationWrap .patternBox .item.other:before {
            font-size: 1.8rem;
            content: "その他の物件を探す";
            color: #fff; }
        .dashboard .simulationWrap .patternBox .item > a {
          position: absolute;
          left: 0;
          top: 0;
          width: 100%;
          height: 100%;
          z-index: 1;
          display: block;
          border: #246ade dashed 1px;
          box-sizing: border-box; }
        .dashboard .simulationWrap .patternBox .item .house {
          border: 0;
          background: #fff;
          width: 210px;
          height: 210px;
          border: #9d9ca1 solid 1px;
          box-sizing: border-box; }
          .dashboard .simulationWrap .patternBox .item .house .exclude {
            width: 40px;
            height: 40px;
            background: #246ade;
            text-align: center;
            line-height: 40px;
            color: #fff;
            font-size: 3.2rem;
            position: absolute;
            right: 0;
            top: 0;
            z-index: 11;
            cursor: pointer;
            transition: all 0.2s ease;
            backface-visibility: hidden; }
            .dashboard .simulationWrap .patternBox .item .house .exclude:hover {
              background: #eb6100; }
          .dashboard .simulationWrap .patternBox .item .house figure {
            position: relative;
            z-index: 10;
            width: 100%;
            padding-bottom: 100%; }
            .dashboard .simulationWrap .patternBox .item .house figure a {
              position: absolute;
              left: 0;
              top: 0;
              width: 100%;
              height: 100%;
              display: flex;
              justify-content: center;
              align-items: center; }
              .dashboard .simulationWrap .patternBox .item .house figure a img {
                max-width: 100%;
                max-height: 100%;
                width: auto;
                height: auto; }
          .dashboard .simulationWrap .patternBox .item .house .text {
            position: absolute;
            left: 1px;
            bottom: 1px;
            width: calc(100% - 2px);
            box-sizing: border-box;
            background: rgba(255, 255, 255, 0.98);
            z-index: 10;
            padding: 5px;
            font-size: 15px;
            line-height: 1.2; }
            .dashboard .simulationWrap .patternBox .item .house .text a {
              color: #246ade; }
    .dashboard .simulationWrap .simulation {
      margin-top: 40px;
      background: #ececec;
      padding: 30px 40px;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap; }
      .dashboard .simulationWrap .simulation h3 {
        margin: 0;
        width: 100%; }
      .dashboard .simulationWrap .simulation ul {
        width: 40%; }
        .dashboard .simulationWrap .simulation ul li {
          display: flex;
          justify-content: space-between;
          align-items: center;
          padding-bottom: 10px; }
          .dashboard .simulationWrap .simulation ul li em {
            width: 180px;
            font-weight: bold; }
            .dashboard .simulationWrap .simulation ul li em small {
              display: block;
              line-height: 1;
              font-size: 1.2rem; }
          .dashboard .simulationWrap .simulation ul li p.total {
            color: #246ade;
            font-size: 2.4rem;
            font-weight: bold;
            letter-spacing: 0; }
      .dashboard .simulationWrap .simulation ul + ul {
        width: 50%; }
    .dashboard .simulationWrap .simulation + .btnBox {
      margin-top: 50px; }
  .dashboard .btn.wide {
    margin-top: 60px;
    width: 500px;
    height: 60px; }
  .dashboard .btnBox.flex {
    margin-top: 30px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center; }
    .dashboard .btnBox.flex .btn {
      margin: 0; }
    .dashboard .btnBox.flex .btn + .btn {
      margin-left: 10px; }
  .dashboard .sortBox form {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 10px 20px;
    background: #dbdbdb; }
    .dashboard .sortBox form label {
      margin-right: 10px;
      font-weight: bold; }
    .dashboard .sortBox form .selectBox {
      margin-right: 10px; }
    .dashboard .sortBox form .btn {
      margin-right: 10px; }
    .dashboard .sortBox form input[type="reset"] {
      background: none;
      border: 0;
      text-decoration: underline;
      font-size: 1.4rem;
      color: #246ade; }
    .dashboard .sortBox form .btn {
      margin: 0;
      width: 100px;
      height: 30px;
      line-height: 30px; }
  .dashboard .selectBox {
    display: block;
    overflow: hidden;
    position: relative;
    vertical-align: top; }
    .dashboard .selectBox.auto {
      display: inline-block; }
    .dashboard .selectBox select {
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      border: medium none;
      border-radius: 0px;
      box-sizing: border-box;
      font-size: 1.6rem;
      height: 30px;
      margin: 0;
      padding: 0 6px;
      box-sizing: border-box;
      background: #fff;
      border: #98979c solid 1px;
      padding-right: 50px;
      color: #333;
      width: 125%;
      max-width: none;
      box-shadow: none;
      background: #fff; }
      .dashboard .selectBox select option, .dashboard .selectBox select optgroup {
        color: #333;
        font-style: normal; }
    .dashboard .selectBox:after {
      background: #fff;
      color: #333;
      content: "▼";
      font-size: 1rem;
      height: 100%;
      line-height: 30px;
      pointer-events: none;
      position: absolute;
      right: 0;
      top: 0;
      text-align: center;
      width: 30px;
      box-sizing: border-box;
      border: #98979c solid 1px;
      border-left: 0;
      display: inline-block; }
  .dashboard .radioBox {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    height: 28px; }
    .dashboard .radioBox .radio {
      margin-right: 20px; }
      .dashboard .radioBox .radio input[type="radio"] {
        display: none; }
      .dashboard .radioBox .radio input[type="radio"]:checked ~ label {
        color: #333; }
        .dashboard .radioBox .radio input[type="radio"]:checked ~ label:before {
          background: #fff; }
        .dashboard .radioBox .radio input[type="radio"]:checked ~ label:after {
          background: #333; }
      .dashboard .radioBox .radio label {
        display: block;
        width: 100%;
        padding-left: 20px;
        box-sizing: border-box;
        position: relative;
        cursor: pointer;
        color: #333;
        line-height: 1;
        white-space: nowrap; }
        .dashboard .radioBox .radio label:before {
          display: inline-block;
          content: "";
          width: 16px;
          height: 16px;
          border: #9d9ca1 solid 1px;
          border-radius: 50%;
          position: relative;
          top: 0px;
          box-sizing: border-box;
          position: absolute;
          left: 0px;
          top: 0px;
          background: #fff; }
        .dashboard .radioBox .radio label:after {
          display: inline-block;
          content: "";
          width: 8px;
          height: 8px;
          border-radius: 50%;
          box-sizing: border-box;
          position: absolute;
          left: 4px;
          top: 4px;
          background: #fff;
          transition: all 0.2s ease;
          backface-visibility: hidden; }
  .dashboard .csvList {
    max-width: 100%;
    width: 800px;
    border: #333 solid 1px;
    padding: 30px;
    box-sizing: border-box;
    margin: 0 auto 10px; }
  .dashboard .csvList + p.total {
    max-width: 100%;
    width: 800px;
    margin: 0 auto 60px; }
  .dashboard .fileUpLoad {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 60px; }
    .dashboard .fileUpLoad .btn {
      margin: 0; }
    .dashboard .fileUpLoad #fake_text_box {
      border: 0;
      padding-left: 20px;
      width: calc(100% - 200px);
      font-size: 1.3rem;
      box-sizing: border-box; }
  .dashboard #tabBtn {
    position: absolute;
    left: 200px;
    top: -10px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    list-style: none; }
    .dashboard #tabBtn li a {
      display: block;
      width: 230px;
      line-height: 30px;
      background: #d4d4d4;
      font-size: 1.6rem;
      text-align: center;
      transition: all 0.2s ease;
      backface-visibility: hidden; }
      .dashboard #tabBtn li a:hover {
        background: #eb6100;
        color: #fff; }
    .dashboard #tabBtn li.current a {
      background: #eb6100;
      color: #fff;
      position: relative; }
      .dashboard #tabBtn li.current a:before {
        content: "";
        position: absolute;
        left: calc(50% - 8px);
        top: 100%;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 15px 15px 0 15px;
        border-color: #eb6100 transparent transparent transparent; }
    .dashboard #tabBtn li + li {
      margin-left: 10px; }
    .dashboard #tabBtn.fixed {
      position: fixed;
      top: 0;
      left: calc(50% - 280px);
      z-index: 20; }
      .dashboard #tabBtn.fixed li a {
        line-height: 50px; }
  .dashboard .columnBox {
    position: relative;
    width: 100%;
    margin-top: 0px;
    margin-bottom: 200px; }
    .dashboard .columnBox #aside {
      width: 180px;
      padding-top: 20px;
      position: absolute;
      top: 0;
      box-sizing: border-box; }
      .dashboard .columnBox #aside ul#subnav {
        background: #f6f6f6;
        padding: 10px 10px; }
        .dashboard .columnBox #aside ul#subnav li {
          padding-top: 20px;
          border-bottom: #e0e0e0 solid 1px; }
          .dashboard .columnBox #aside ul#subnav li a {
            display: block;
            color: #246ade;
            font-size: 14px;
            line-height: 1.6;
            padding-left: 5px; }
            .dashboard .columnBox #aside ul#subnav li a:hover {
              background: #e0e0e0; }
            .dashboard .columnBox #aside ul#subnav li a:active {
              color: #fe0000; }
            .dashboard .columnBox #aside ul#subnav li a:visited {
              color: #551b8c; }
            .dashboard .columnBox #aside ul#subnav li a.current {
              background: #e0e0e0; }
      .dashboard .columnBox #aside.fixed {
        position: fixed;
        top: 0; }
    .dashboard .columnBox .client-detail {
      padding-top: 20px;
      width: 760px;
      margin-left: auto;
      box-sizing: border-box; }
      .dashboard .columnBox .client-detail .formBox {
        padding: 50px 30px;
        background: #f6f6f6 !important; }
        .dashboard .columnBox .client-detail .formBox h3 {
          font-weight: bold;
          text-align: left;
          font-size: 1.8rem;
          line-height: 1;
          margin-top: 0; }
          .dashboard .columnBox .client-detail .formBox h3#cont02 {
            padding-top: 30px; }
        .dashboard .columnBox .client-detail .formBox .input {
          width: 510px; }
          .dashboard .columnBox .client-detail .formBox .input em.h3 {
            font-weight: bold;
            text-align: left;
            font-size: 1.8rem;
            line-height: 28px; }
          .dashboard .columnBox .client-detail .formBox .input .inputBox input[type="text"] + span {
            margin-left: 10px; }
        .dashboard .columnBox .client-detail .formBox .tableBox {
          display: flex;
          justify-content: space-between;
          flex-wrap: wrap;
          margin-top: 40px; }
        .dashboard .columnBox .client-detail .formBox .detail01 {
          width: 550px;
          border: #9d9ca1 solid 2px;
          margin-bottom: 0; }
          .dashboard .columnBox .client-detail .formBox .detail01 thead th {
            height: 50px;
            text-align: center;
            vertical-align: middle;
            border-right: #9d9ca1 solid 1px;
            border-bottom: #9d9ca1 solid 1px; }
          .dashboard .columnBox .client-detail .formBox .detail01 tbody td {
            height: 38px;
            border-right: #9d9ca1 solid 1px;
            border-bottom: #9d9ca1 solid 1px;
            background: #fff;
            vertical-align: middle; }
          .dashboard .columnBox .client-detail .formBox .detail01 tbody td:nth-child(2) {
            width: 220px; }
            .dashboard .columnBox .client-detail .formBox .detail01 tbody td:nth-child(2) input {
              border: 0;
              margin: 0;
              padding: 10px;
              width: 220px;
              height: 38px;
              box-sizing: border-box;
              font-size: 1.6rem; }
          .dashboard .columnBox .client-detail .formBox .detail01 tbody td:nth-child(3) .selectBox:after {
            border: 0;
            line-height: 38px; }
          .dashboard .columnBox .client-detail .formBox .detail01 tbody td:nth-child(3) .selectBox select {
            height: 38px;
            border: 0; }
          .dashboard .columnBox .client-detail .formBox .detail01 tbody th {
            background: #dad9dc;
            border-right: #9d9ca1 solid 1px;
            border-bottom: #9d9ca1 solid 1px;
            text-align: left;
            text-indent: 10px;
            vertical-align: middle; }
        .dashboard .columnBox .client-detail .formBox .detail02 {
          width: 400px;
          border: #9d9ca1 solid 2px; }
          .dashboard .columnBox .client-detail .formBox .detail02 caption {
            text-align: left;
            border: 0;
            width: 100%; }
            .dashboard .columnBox .client-detail .formBox .detail02 caption span {
              display: inline-block;
              width: 50%;
              font-weight: bold;
              font-size: 1.8rem; }
            .dashboard .columnBox .client-detail .formBox .detail02 caption em {
              width: 50%;
              display: inline-block;
              text-align: right;
              font-weight: bold;
              font-size: 1.8rem; }
          .dashboard .columnBox .client-detail .formBox .detail02 tbody td {
            height: 38px;
            border-right: #9d9ca1 solid 1px;
            border-bottom: #9d9ca1 solid 1px;
            background: #fff;
            vertical-align: middle; }
            .dashboard .columnBox .client-detail .formBox .detail02 tbody td input {
              border: 0;
              margin: 0;
              padding: 10px;
              width: 100%;
              height: 38px;
              box-sizing: border-box;
              font-size: 1.6rem; }
              .dashboard .columnBox .client-detail .formBox .detail02 tbody td input.yellow {
                background: #fffde2; }
          .dashboard .columnBox .client-detail .formBox .detail02 tbody th {
            width: 180px;
            background: #dad9dc;
            border-right: #9d9ca1 solid 1px;
            border-bottom: #9d9ca1 solid 1px;
            text-align: left;
            text-indent: 10px;
            vertical-align: middle;
            color: #246ade; }
        .dashboard .columnBox .client-detail .formBox .totalPrice {
          border-top: #9d9ca1 solid 1px;
          content: 20px;
          padding: 20px 0;
          display: flex;
          justify-content: flex-start;
          align-items: center;
          line-height: 1;
          margin-bottom: 60px; }
          .dashboard .columnBox .client-detail .formBox .totalPrice span {
            font-weight: bold; }
          .dashboard .columnBox .client-detail .formBox .totalPrice em {
            font-size: 3rem;
            letter-spacing: 2px;
            font-weight: bold;
            padding-left: 80px; }
          .dashboard .columnBox .client-detail .formBox .totalPrice small {
            font-weight: bold;
            padding-top: 10px;
            padding-left: 5px; }
        .dashboard .columnBox .client-detail .formBox .btn.orange.wide {
          margin-top: 30px; }
        .dashboard .columnBox .client-detail .formBox .type02 thead th {
          font-weight: bold;
          border-bottom: #9d9ca1 solid 2px; }
        .dashboard .columnBox .client-detail .formBox .type02 tbody td {
          border-bottom: #e5e5e5 solid 1px; }
        .dashboard .columnBox .client-detail .formBox .type02 tbody .pdf-name {
          width: calc(100% - 170px); }
          .dashboard .columnBox .client-detail .formBox .type02 tbody .pdf-name a {
            color: #246ade;
            width: 100%; }
        .dashboard .columnBox .client-detail .formBox textarea {
          width: 100%;
          height: 240px;
          padding: 10px;
          box-sizing: border-box;
          border-radius: 5px;
          border-color: #9d9ca1;
          margin-bottom: 30px; }
      .dashboard .columnBox .client-detail .formBox + .formBox {
        margin-top: 20px; }
  .dashboard #fixedBtn {
    position: fixed;
    right: 20px;
    bottom: 140px;
    background: #fff;
    width: 260px;
    padding: 20px 30px;
    border: #9d9ca1 solid 1px;
    box-sizing: border-box;
    z-index: 20; }
    .dashboard #fixedBtn p {
      text-align: center;
      font-weight: bold;
      line-height: 1.3;
      font-size: 1.8rem;
      padding-bottom: 10px; }
    .dashboard #fixedBtn a {
      height: 42px; }

/*! SP ***************************************************/
@media screen and (max-width: 740px) {
  html {
    height: 100%; }
  body {
    min-width: 320px;
    font-size: 1.4rem;
    height: 100%; }
  img {
    max-width: 100%;
    height: auto; }
  .pc {
    display: none !important; }
  #wrap footer {
    height: 28px;
    line-height: 28px;
    margin-top: auto; }
  .btn {
    line-height: 53px;
    width: 100%;
    font-size: 1.5rem; }
  header {
    text-align: center;
    padding: 40px 0 30px; }
    header .logo {
      display: block;
      width: 100px;
      margin: 0 auto; }
  article {
    padding: 0 10px;
    width: 100%;
    margin: 0 auto 40px; }
    article section {
      text-align: center;
      background: #fff;
      padding: 30px 10px; }
      article section h2 {
        padding-bottom: 30px; }
        article section h2 em {
          font-size: 3rem; }
        article section h2 small {
          font-size: 1.2rem;
          padding-top: 10px; }
      article section .text {
        padding-bottom: 20px;
        text-align: left; }
        article section .text br {
          display: none; }
  .input {
    margin-bottom: 15px; }
    .input > em {
      width: 120px;
      flex-shrink: 0; }
    .input em + .inputBox {
      width: calc(100% - 120px); }
  .submit {
    margin-top: 30px; }
  .textLink {
    margin: 30px 0; }
    .textLink li a {
      font-size: 1.2rem; }
  /*! SP /dashboard ***************************************************/
  .dashboard header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 0 10px;
    height: 50px;
    border-bottom: #e2e2e2 solid 1px; }
    .dashboard header em {
      margin: 0;
      display: block;
      height: 20px;
      text-align: left; }
      .dashboard header em img {
        width: auto;
        height: 20px; }
    .dashboard header p {
      display: none; }
    .dashboard header ul {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      margin-right: 60px; }
      .dashboard header ul li + li {
        margin-left: 20px; }
  .dashboard #slidemenuBtn {
    width: 50px;
    height: 50px;
    background: #fff; }
    .dashboard #slidemenuBtn span:nth-child(1) {
      width: 30px;
      height: 24px; }
    .dashboard #slidemenuBtn span:nth-child(2) {
      left: calc(50% - 15px);
      top: calc(50% - 15px);
      width: 30px;
      height: 30px; }
  .dashboard a img {
    transition: all 0.2s ease;
    backface-visibility: hidden; }
  .dashboard a:hover img {
    filter: brightness(120%); }
  .dashboard article {
    padding: 20px 10px 10px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto; }
    .dashboard article section {
      padding: 0;
      text-align: left; }
      .dashboard article section.position .btnBox.positionflex {
        position: absolute;
        right: 0;
        top: -15px;
        width: 220px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap; }
        .dashboard article section.position .btnBox.positionflex p {
          text-align: center;
          font-size: 1.2rem;
          font-weight: bold; }
        .dashboard article section.position .btnBox.positionflex .btn {
          width: 100px;
          height: 40px; }
      .dashboard article section h2 {
        padding-bottom: 10px;
        margin-bottom: 40px;
        display: block; }
        .dashboard article section h2:before {
          width: 30px;
          height: 3px;
          left: 10px;
          bottom: -2px; }
        .dashboard article section h2 em {
          font-size: 3rem;
          line-height: 1; }
        .dashboard article section h2 small {
          padding-top: 5px;
          font-size: 1.2rem;
          padding-left: 2px; }
      .dashboard article section h2 ~ p {
        margin-bottom: 20px; }
      .dashboard article section h3 {
        font-size: 1.6rem;
        padding-bottom: 10px;
        margin-top: 40px; }
      .dashboard article section .text {
        padding-bottom: 0px; }
    .dashboard article .btn {
      width: 100%;
      height: 42px;
      line-height: 38px;
      font-size: 1.4rem; }
    .dashboard article .mapBox {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      margin-top: 0px; }
      .dashboard article .mapBox figure {
        width: 100%;
        margin-top: 20px; }
        .dashboard article .mapBox figure figcaption {
          text-align: left;
          font-weight: bold;
          padding-top: 10px; }
  .dashboard .grayBox {
    margin: 0px;
    border: #d8d8d8 solid 1px;
    padding: 20px 20px; }
    .dashboard .grayBox h3 {
      font-size: 1.7rem;
      text-align: left; }
    .dashboard .grayBox p {
      text-align: left;
      padding: 10px 0; }
    .dashboard .grayBox .btnBox {
      display: flex;
      justify-content: center;
      align-items: center; }
      .dashboard .grayBox .btnBox a.btn {
        margin: 0;
        width: calc(50% - 5px); }
      .dashboard .grayBox .btnBox a.btn + a.btn {
        margin-left: 10px; }
    .dashboard .grayBox:before {
      content: "";
      position: absolute;
      left: 3px;
      top: 3px;
      width: calc(100% - 6px);
      height: calc(100% - 6px);
      border: #d8d8d8 solid 1px;
      box-sizing: border-box;
      z-index: 0; }
    .dashboard .grayBox.white {
      padding: 15px;
      width: 100%; }
      .dashboard .grayBox.white h4 {
        font-weight: bold;
        font-size: 1.6rem;
        line-height: 1.4; }
      .dashboard .grayBox.white .price02 {
        flex-wrap: wrap;
        padding-top: 0px; }
        .dashboard .grayBox.white .price02 li {
          padding-top: 10px; }
          .dashboard .grayBox.white .price02 li em {
            font-size: 2.8rem; }
          .dashboard .grayBox.white .price02 li small {
            font-size: 1.5rem; }
    .dashboard .grayBox.orange {
      padding: 15px;
      width: 100%;
      border-width: 3px; }
      .dashboard .grayBox.orange:before {
        border-width: 1px; }
      .dashboard .grayBox.orange h4 {
        font-weight: bold;
        font-size: 1.6rem;
        padding: 10px 0;
        line-height: 1.3;
        background: #eb6100;
        border-radius: 30px;
        color: #fff;
        text-align: center; }
      .dashboard .grayBox.orange .price02 {
        flex-wrap: wrap;
        padding-top: 0px; }
        .dashboard .grayBox.orange .price02 li {
          padding-top: 10px; }
          .dashboard .grayBox.orange .price02 li em {
            font-size: 2.8rem; }
          .dashboard .grayBox.orange .price02 li small {
            font-size: 1.5rem; }
  .dashboard table {
    width: 100%;
    margin-bottom: 10px;
    text-align: center; }
    .dashboard table.type01 {
      display: block; }
      .dashboard table.type01 thead {
        display: none; }
      .dashboard table.type01 tbody {
        display: block; }
      .dashboard table.type01 tr {
        display: block;
        width: 100%;
        border-bottom: #fff solid 2px; }
        .dashboard table.type01 tr td {
          padding: 10px 10px 0;
          text-align: left;
          display: block;
          border-bottom: 0; }
          .dashboard table.type01 tr td a.btn {
            display: block;
            width: calc(50% - 10px); }
          .dashboard table.type01 tr td a.btn + a.btn {
            margin-left: 10px; }
          .dashboard table.type01 tr td.name:before {
            content: "お名前";
            font-weight: bold;
            margin-right: 1em; }
          .dashboard table.type01 tr td.asset:before {
            content: "総資産";
            font-weight: bold;
            margin-right: 1em; }
          .dashboard table.type01 tr td.status:before {
            content: "ステータス";
            font-weight: bold;
            margin-right: 1em; }
      .dashboard table.type01 td.btnTd01 {
        display: flex;
        justify-content: center;
        align-items: center;
        padding-bottom: 10px;
        width: 100%; }
    .dashboard table.type02 thead {
      display: none; }
    .dashboard table.type02 tbody tr {
      display: block;
      padding: 20px 10px;
      position: relative;
      border-bottom: #f6f6f6 solid 2px; }
      .dashboard table.type02 tbody tr td {
        display: block;
        padding: 0;
        height: auto;
        text-align: left;
        border-bottom: 0; }
        .dashboard table.type02 tbody tr td.time {
          width: 100%;
          height: auto;
          padding: 0 !important;
          border-bottom: 0 !important; }
        .dashboard table.type02 tbody tr td.name {
          width: 100%; }
          .dashboard table.type02 tbody tr td.name:before {
            content: "お名前：";
            margin-right: 1em; }
        .dashboard table.type02 tbody tr td.pdf-name {
          display: flex;
          justify-content: space-between;
          align-items: center;
          width: 100%; }
          .dashboard table.type02 tbody tr td.pdf-name div {
            justify-content: space-between;
            flex-wrap: wrap;
            width: 100%;
            position: relative; }
            .dashboard table.type02 tbody tr td.pdf-name div input {
              width: 100% !important; }
            .dashboard table.type02 tbody tr td.pdf-name div a {
              display: block;
              line-height: 40px;
              width: 100%;
              padding: 0;
              box-sizing: border-box; }
            .dashboard table.type02 tbody tr td.pdf-name div img {
              position: absolute;
              left: 0;
              top: 10px; }
            .dashboard table.type02 tbody tr td.pdf-name div .icon-pencil {
              position: absolute;
              right: 0;
              top: 0;
              background: #f6f6f6; }
            .dashboard table.type02 tbody tr td.pdf-name div .reset {
              width: calc(50% - 5px);
              margin-left: 0;
              margin-top: 10px; }
            .dashboard table.type02 tbody tr td.pdf-name div .save {
              width: calc(50% - 5px);
              margin-left: 0;
              margin-top: 10px; }
    .dashboard table.type02 th, .dashboard table.type02 td {
      border-bottom: #fff solid 2px; }
  .dashboard .itemBox-01 {
    flex-wrap: wrap;
    margin-bottom: 0px; }
    .dashboard .itemBox-01 figure a {
      height: 100%; }
    .dashboard .itemBox-01 .item {
      width: calc(50% - 5px);
      margin-bottom: 10px; }
      .dashboard .itemBox-01 .item .text {
        padding: 10px; }
        .dashboard .itemBox-01 .item .text a {
          padding-bottom: 0px; }
  .dashboard #menu {
    top: 0px;
    height: 100%;
    width: 100%;
    z-index: 99; }
    .dashboard #menu .menuInner {
      padding-top: 50px; }
      .dashboard #menu .menuInner ul li a {
        width: 100%;
        padding: 15px; }
  .dashboard.slide-open #slidemenuBtn span:nth-child(1) {
    transform: scale(0, 1); }
  .dashboard.slide-open #slidemenuBtn span:nth-child(2) {
    transform: scale(1); }
  .dashboard.slide-open #menu {
    transform: translate3d(0, 0, 0); }
  .dashboard .page {
    margin: 20px 0; }
  .dashboard .article {
    margin: -10px;
    width: calc(100% + 20px);
    padding: 20px 10px;
    box-sizing: border-box;
    overflow: hidden; }
    .dashboard .article h3 {
      line-height: 1;
      margin: 0;
      padding: 0 0 20px;
      width: 100%; }
    .dashboard .article .photo {
      width: 100%; }
      .dashboard .article .photo .slick-dotted.slick-slider {
        margin-bottom: 10px; }
      .dashboard .article .photo .slick-slide img {
        width: 100%;
        height: auto; }
      .dashboard .article .photo .slick-dots {
        position: static;
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap; }
        .dashboard .article .photo .slick-dots li {
          width: 60px;
          height: 40px;
          margin: 0 5px 0 0;
          transition: all 0.2s ease;
          backface-visibility: hidden; }
          .dashboard .article .photo .slick-dots li:hover {
            opacity: 0.8; }
    .dashboard .article .data {
      width: 100%;
      border-bottom: #dfdfdf solid 1px; }
      .dashboard .article .data li {
        padding: 5px; }
        .dashboard .article .data li em {
          font-size: 1.4rem;
          width: 80px; }
        .dashboard .article .data li p {
          font-size: 1.4rem; }
    .dashboard .article .data + p {
      padding-top: 10px; }
    .dashboard .article .wideBtnBox {
      margin-top: 20px; }
  .dashboard .price01 {
    display: block; }
    .dashboard .price01 li {
      display: flex;
      justify-content: flex-start;
      align-items: baseline;
      flex-wrap: wrap;
      line-height: 1.5;
      border-bottom: #dfdfdf solid 1px; }
      .dashboard .price01 li small {
        font-size: 1.4rem;
        width: 100%;
        line-height: 1;
        display: block; }
      .dashboard .price01 li em {
        font-size: 2.9rem;
        font-weight: bold;
        padding: 0 0; }
      .dashboard .price01 li em + small {
        width: auto; }
    .dashboard .price01 li + li {
      margin-left: 0;
      margin-top: 10px; }
  .dashboard .wideBtnBox {
    max-width: 100%;
    width: 100%;
    margin: 10px auto; }
    .dashboard .wideBtnBox .btn {
      width: 100%;
      height: 50px; }
    .dashboard .wideBtnBox .btn + .btn {
      margin-top: 10px; }
  .dashboard .simulationWrap {
    padding: 30px 10px 10px; }
    .dashboard .simulationWrap #tabBtn {
      left: 0;
      top: -30px; }
      .dashboard .simulationWrap #tabBtn.fixed {
        left: 0; }
    .dashboard .simulationWrap .patternTable {
      display: block;
      margin: 30px 0 10px; }
      .dashboard .simulationWrap .patternTable .type03 {
        width: 100%;
        font-size: 1.4rem;
        margin-bottom: 20px; }
        .dashboard .simulationWrap .patternTable .type03 thead th {
          padding: 10px;
          text-align: left;
          font-size: 1.6rem; }
        .dashboard .simulationWrap .patternTable .type03 tbody td {
          padding: 10px;
          text-align: left;
          border-bottom: #dfdfdf solid 1px; }
          .dashboard .simulationWrap .patternTable .type03 tbody td input {
            display: inline-block;
            width: auto;
            height: 28px;
            text-align: center;
            font-size: 1.4rem;
            box-sizing: border-box;
            color: #333; }
          .dashboard .simulationWrap .patternTable .type03 tbody td:before {
            content: "";
            display: inline-block;
            width: 50%;
            font-weight: bold; }
        .dashboard .simulationWrap .patternTable .type03 tbody tr:nth-child(1) td:before {
          content: "想定される相続税額"; }
        .dashboard .simulationWrap .patternTable .type03 tbody tr:nth-child(2) td:before {
          content: "節税効果"; }
        .dashboard .simulationWrap .patternTable .type03 tbody tr:nth-child(3) td:before {
          content: "不動産投資価格"; }
        .dashboard .simulationWrap .patternTable .type03 tbody tr:nth-child(4) td:before {
          content: "自己資金"; }
        .dashboard .simulationWrap .patternTable .type03 tbody tr:nth-child(5) td:before {
          content: "借入額"; }
        .dashboard .simulationWrap .patternTable .type03 tbody tr:nth-child(6) td:before {
          content: "圧縮率"; }
        .dashboard .simulationWrap .patternTable .type03 tbody tr:nth-child(7) td:before {
          content: "不動産投資物件評価額"; }
        .dashboard .simulationWrap .patternTable .type03.wide {
          width: 100%; }
          .dashboard .simulationWrap .patternTable .type03.wide thead tr th:nth-child(1) {
            display: none; }
          .dashboard .simulationWrap .patternTable .type03.wide tbody tr td:nth-child(1) {
            display: none; }
      .dashboard .simulationWrap .patternTable .type03:nth-child(2) thead th {
        background: #e87b2e; }
      .dashboard .simulationWrap .patternTable .type03:nth-child(3) thead th {
        background: #eb6100; }
      .dashboard .simulationWrap .patternTable .type03:nth-child(4) thead th {
        background: #c85300; }
    .dashboard .simulationWrap .patternTableBtn {
      margin-bottom: 20px; }
    .dashboard .simulationWrap #Payment {
      width: 100%;
      height: 400px; }
    .dashboard .simulationWrap .line {
      background: #eb6100;
      line-height: 40px;
      padding: 0;
      text-indent: 1em;
      color: #fff;
      font-size: 1.6rem;
      margin-bottom: 10px;
      margin-top: 20px; }
    .dashboard .simulationWrap .line + p {
      margin-bottom: 10px; }
    .dashboard .simulationWrap .patternBox {
      flex-wrap: wrap;
      justify-content: center;
      align-items: inherit; }
      .dashboard .simulationWrap .patternBox .item {
        width: 160px;
        height: auto;
        min-height: 160px;
        background: #e9f1ff;
        position: relative;
        box-sizing: border-box;
        margin-bottom: 10px; }
        .dashboard .simulationWrap .patternBox .item:before {
          content: "未選択";
          font-size: 1.5rem;
          color: #246ade;
          font-weight: bold;
          text-align: center;
          position: absolute;
          left: 0;
          top: calc(50% - 1em);
          width: 100%;
          z-index: 0; }
        .dashboard .simulationWrap .patternBox .item.other {
          background: #246ade; }
          .dashboard .simulationWrap .patternBox .item.other:before {
            font-size: 1.5rem;
            content: "その他の物件を探す";
            color: #fff; }
        .dashboard .simulationWrap .patternBox .item .house {
          width: 160px;
          height: 160px; }
          .dashboard .simulationWrap .patternBox .item .house .text {
            border-top: 0;
            padding: 5px;
            line-height: 1.2;
            font-size: 1.2rem; }
            .dashboard .simulationWrap .patternBox .item .house .text br {
              display: block; }
            .dashboard .simulationWrap .patternBox .item .house .text a {
              color: #246ade; }
      .dashboard .simulationWrap .patternBox .item:nth-child(2n) {
        margin-left: 10px; }
    .dashboard .simulationWrap .simulation {
      margin-top: 20px;
      padding: 10px;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap; }
      .dashboard .simulationWrap .simulation h3 {
        margin: 0;
        width: 100%;
        font-size: 1.4rem; }
      .dashboard .simulationWrap .simulation ul {
        width: 100%; }
        .dashboard .simulationWrap .simulation ul li {
          padding-bottom: 5px; }
          .dashboard .simulationWrap .simulation ul li em {
            width: auto;
            white-space: nowrap;
            font-size: 14px; }
            .dashboard .simulationWrap .simulation ul li em small {
              display: block;
              line-height: 1;
              font-size: 1rem; }
          .dashboard .simulationWrap .simulation ul li p.total {
            color: #246ade;
            font-size: 2rem;
            font-weight: bold;
            letter-spacing: 0; }
      .dashboard .simulationWrap .simulation ul + ul {
        width: 100%; }
    .dashboard .simulationWrap .simulation + .btnBox {
      margin-top: 10px; }
  .dashboard .btn.wide {
    margin-top: 10px;
    width: 100%;
    height: 50px; }
  .dashboard .btnBox.flex {
    margin-top: 10px;
    width: 100%;
    display: block; }
    .dashboard .btnBox.flex .btn {
      margin: 0;
      width: 100%; }
    .dashboard .btnBox.flex .btn + .btn {
      margin-left: 0px;
      margin-top: 10px; }
  .dashboard .csvList + p.total {
    margin: 0 auto 20px; }
  .dashboard .fileUpLoad {
    flex-wrap: wrap;
    margin-bottom: 20px; }
    .dashboard .fileUpLoad .btn {
      margin: 0;
      width: 100%; }
    .dashboard .fileUpLoad #fake_text_box {
      border: 0;
      padding: 10px 10px 0;
      padding-left: 0px;
      width: 100%;
      font-size: 1.3rem;
      box-sizing: border-box; }
  .dashboard #tabBtn {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    list-style: none; }
    .dashboard #tabBtn li {
      width: 50%; }
      .dashboard #tabBtn li a {
        display: block;
        width: 100%;
        line-height: 30px;
        background: #d4d4d4;
        font-size: 1.6rem;
        text-align: center;
        transition: all 0.2s ease;
        backface-visibility: hidden; }
        .dashboard #tabBtn li a:hover {
          background: #eb6100;
          color: #fff; }
      .dashboard #tabBtn li.current a {
        background: #eb6100;
        color: #fff;
        position: relative; }
        .dashboard #tabBtn li.current a:before {
          content: "";
          position: absolute;
          left: calc(50% - 8px);
          top: 100%;
          width: 0;
          height: 0;
          border-style: solid;
          border-width: 15px 15px 0 15px;
          border-color: #eb6100 transparent transparent transparent; }
    .dashboard #tabBtn li + li {
      margin-left: 0px; }
    .dashboard #tabBtn.fixed {
      position: fixed;
      top: 0;
      left: 0px;
      width: calc(100% - 50px); }
      .dashboard #tabBtn.fixed li a {
        line-height: 40px; }
  .dashboard .columnBox {
    position: relative;
    width: 100%;
    padding-top: 40px;
    margin-bottom: 50px; }
    .dashboard .columnBox #aside {
      display: none; }
    .dashboard .columnBox .client-detail {
      width: 100%;
      padding-top: 0px; }
      .dashboard .columnBox .client-detail .formBox {
        padding: 10px; }
        .dashboard .columnBox .client-detail .formBox .input {
          width: 100%; }
          .dashboard .columnBox .client-detail .formBox .input.drop {
            flex-wrap: wrap; }
          .dashboard .columnBox .client-detail .formBox .input em.h3 {
            font-size: 1.6rem; }
          .dashboard .columnBox .client-detail .formBox .input em.h3 + .inputBox {
            width: 100%; }
          .dashboard .columnBox .client-detail .formBox .input .inputBox input[type="text"] + span {
            margin-left: 5px; }
          .dashboard .columnBox .client-detail .formBox .input .inputBox.birthday .selectBox.auto {
            display: block; }
          .dashboard .columnBox .client-detail .formBox .input .inputBox.birthday .selectBox.auto + .selectBox.auto {
            margin-top: 10px; }
        .dashboard .columnBox .client-detail .formBox .detail01 {
          width: 100%;
          border: #9d9ca1 solid 2px; }
          .dashboard .columnBox .client-detail .formBox .detail01 thead th {
            height: 50px;
            text-align: center;
            vertical-align: middle;
            border-right: #9d9ca1 solid 1px;
            border-bottom: #9d9ca1 solid 1px; }
          .dashboard .columnBox .client-detail .formBox .detail01 tbody td {
            height: 38px;
            border-right: #9d9ca1 solid 1px;
            border-bottom: #9d9ca1 solid 1px;
            background: #fff;
            vertical-align: middle; }
          .dashboard .columnBox .client-detail .formBox .detail01 tbody td:nth-child(2) {
            width: 30%; }
            .dashboard .columnBox .client-detail .formBox .detail01 tbody td:nth-child(2) input {
              padding: 10px;
              width: 100%;
              height: 38px;
              box-sizing: border-box;
              font-size: 1.6rem; }
          .dashboard .columnBox .client-detail .formBox .detail01 tbody td:nth-child(3) {
            width: 20%; }
            .dashboard .columnBox .client-detail .formBox .detail01 tbody td:nth-child(3) .selectBox:after {
              border: 0;
              line-height: 38px; }
            .dashboard .columnBox .client-detail .formBox .detail01 tbody td:nth-child(3) .selectBox select {
              height: 38px;
              border: 0; }
          .dashboard .columnBox .client-detail .formBox .detail01 tbody th {
            width: 20%;
            text-align: center;
            text-indent: 0;
            line-height: 1.2; }
        .dashboard .columnBox .client-detail .formBox .tableBox {
          display: flex;
          justify-content: space-between;
          flex-wrap: wrap;
          margin-top: 20px; }
        .dashboard .columnBox .client-detail .formBox .detail02 {
          width: 100%; }
          .dashboard .columnBox .client-detail .formBox .detail02 caption span {
            font-size: 1.6rem; }
          .dashboard .columnBox .client-detail .formBox .detail02 caption em {
            font-size: 1.6rem; }
          .dashboard .columnBox .client-detail .formBox .detail02 tbody th {
            width: 50%; }
        .dashboard .columnBox .client-detail .formBox .totalPrice {
          border-top: #9d9ca1 solid 1px;
          margin-top: 10px;
          padding: 20px 0;
          display: flex;
          justify-content: center;
          align-items: center;
          line-height: 1;
          margin-bottom: 0px; }
          .dashboard .columnBox .client-detail .formBox .totalPrice em {
            font-size: 3rem;
            font-weight: bold;
            padding-left: 20px; }
          .dashboard .columnBox .client-detail .formBox .totalPrice small {
            font-weight: bold;
            padding-top: 10px;
            padding-left: 5px; }
        .dashboard .columnBox .client-detail .formBox .btn.orange.wide {
          margin-top: 10px; }
        .dashboard .columnBox .client-detail .formBox textarea {
          height: 140px;
          -webkit-appearance: none;
          -webkit-border-radius: 0; }
  .pageTop.on {
    bottom: 40px; }
  /*! SP /subpage ***************************************************/ }

/*! PC ***************************************************/
@media screen and (min-width: 741px) {
  .sp {
    display: none !important; }
  /*! PC /subpage ***************************************************/ }

/*! Admin ***************************************************/
#admin article.wide {
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box; }

#admin section .columns + .columns {
  margin-top: 40px; }

#admin section a {
  color: #246ade; }

#admin section table {
  background: #f6f6f6;
  font-size: 13px; }
  #admin section table th, #admin section table td {
    border-bottom: #fff solid 2px; }
    #admin section table th a, #admin section table td a {
      color: #333; }
      #admin section table th a:hover, #admin section table td a:hover {
        color: #246ade; }
  #admin section table td {
    padding: 10px 0;
    text-align: center;
    box-sizing: border-box; }
  #admin section table td.actions a {
    color: #246ade; }
  #admin section table td.actions a:before {
    content: "|";
    margin: 0 5px; }
  #admin section table td.actions a:first-child:before {
    content: none; }

#admin section ul.pagination {
  display: flex;
  justify-content: space-between;
  align-items: center; }
  #admin section ul.pagination a {
    color: #246ade; }

#admin section .pagination + p {
  text-align: right;
  font-size: 1.4rem;
  padding-top: 10px; }

#admin section fieldset {
  width: 510px;
  max-width: 100%;
  margin: 0 auto; }
  #admin section fieldset legend {
    font-weight: bold;
    padding-bottom: 20px; }
  #admin section fieldset .input {
    display: flex;
    justify-content: flex-start;
    align-items: center; }
    #admin section fieldset .input label {
      width: 100px;
      flex-shrink: 0; }

#admin section .card-body {
  width: 510px;
  max-width: 100%;
  margin: 0 auto; }
  #admin section .card-body h1 {
    font-weight: bold;
    margin-bottom: 30px; }
    #admin section .card-body h1 br {
      display: none; }
  #admin section .card-body .input {
    display: flex;
    justify-content: flex-start;
    align-items: center; }
    #admin section .card-body .input label {
      width: 140px; }

#admin section button[type="submit"] {
  line-height: 56px;
  height: 56px;
  width: 230px;
  max-width: 100%;
  box-sizing: border-box;
  background-color: #eb6100;
  transition: all 0.2s ease;
  backface-visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 600;
  padding: 0;
  cursor: pointer;
  margin: 0 auto;
  border: 0;
  border-top: #f08c46 solid 1px;
  border-bottom: #9c4000 solid 2px;
  color: #fff; }

#admin section .side-nav {
  display: flex;
  justify-content: center;
  align-items: center; }
  #admin section .side-nav .heading {
    font-weight: bold;
    padding-right: 10px; }
  #admin section .side-nav a {
    color: #246ade; }

#admin section .buildings {
  width: 100%;
  position: relative;
  overflow-x: auto; }
  #admin section .buildings table {
    overflow-x: auto;
    white-space: nowrap; }
    #admin section .buildings table th, #admin section .buildings table td {
      vertical-align: middle;
      padding: 10px 5px;
      white-space: nowrap; }
    #admin section .buildings table tbody td:nth-child(11), #admin section .buildings table tbody td:nth-child(12) {
      text-align: left; }
