@charset "UTF-8";
/*-----------------------------------------------------
サイドアンカーリンク
-----------------------------------------------------*/
.side_anchor_wrap {
  display: none;
  position: fixed;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: auto;
  width: auto;
  transition: 1s;
  z-index: 10000;
}

.side_anchor_wrap.hover {
  -webkit-animation: guide_anime_pc 0.5s forwards;
          animation: guide_anime_pc 0.5s forwards;
}

.side_anchor_wrap ul {
  display: flex;
  justify-content: space-between;
  background: #fff;
  flex-direction: column;
}

.side_anchor_wrap ul li {
  margin-bottom: 1px;
  width: 100%;
}

.side_anchor_wrap ul li a {
  display: flex;
  text-decoration: none;
  color: #fff;
}

.side_anchor_wrap ul li .icon_nav {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #d0823c;
  color: #fff;
  cursor: pointer;
  font-size: 2.4rem;
  width: 50px;
  min-width: 50px;
  height: 50px;
  min-height: 50px;
}

.side_anchor_wrap ul li .icon_nav .svg {
  fill: #fff;
  width: auto;
  height: 40px;
  min-height: 40px;
  max-height: 40px;
}

.side_anchor_wrap ul li .tx_nav {
  display: flex;
  justify-content: left;
  align-items: center;
  white-space: nowrap;
  height: 50px;
  width: 100%;
  background: #d0823c;
  box-sizing: border-box;
  padding: 0 16px;
  transition: 0.2s;
}

.side_anchor_wrap ul li .tx_nav:hover {
  background: rgba(208, 130, 60, 0.8);
}

@-webkit-keyframes guide_anime_pc {
  0% {
    margin-left: 50px;
  }
  100% {
    margin-left: 0px;
  }
}

@keyframes guide_anime_pc {
  0% {
    margin-left: 50px;
  }
  100% {
    margin-left: 0px;
  }
}

.guide_ol {
  text-align: left;
}

.guide_ol > li {
  list-style: none;
  position: relative;
  padding: 0 0 0 24px;
  margin-top: 8px;
}

.guide_ol > li img {
  width: 18px;
  height: auto;
  position: absolute;
  left: 0;
  top: 0;
}

.guide_flow dt {
  padding-bottom: 16px;
}

.guide_flow dd + dt {
  margin-top: 24px;
}

@media print, screen and (min-width: 768px) {
  .guide_flow {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .guide_flow dt {
    width: 40%;
  }
  .guide_flow dt:nth-child(n+3) {
    margin-top: 16px;
  }
  .guide_flow dd {
    width: calc(60% - 24px);
  }
  .guide_flow dd + dt {
    margin-top: 0;
  }
  .guide_flow dd:nth-child(n+4) {
    margin-top: 16px;
  }
}

.guide_flow_tx {
  text-align: left;
  font-weight: bold;
  color: #cb2e2e;
  font-size: 1.6rem;
}

.guide_flow_tx + ul {
  margin-top: 16px;
}

@media print, screen and (min-width: 1024px) {
  .guide_flow_tx {
    font-size: 1.8rem;
  }
}

.guide_table {
  width: 100%;
  border: 1px solid #111;
  border-bottom: none;
  margin-top: 16px;
}

.guide_table th {
  display: block;
  border-bottom: 1px solid #111;
  padding: 10px;
  text-align: center;
  background: rgba(217, 169, 128, 0.5);
}

.guide_table td {
  display: block;
  border-bottom: 1px solid #111;
  padding: 10px;
  text-align: center;
}

.guide_table td .tel-link {
  font-size: 1.8em;
  font-weight: bold;
  line-height: 1.4;
}

@media print, screen and (min-width: 768px) {
  .guide_table th {
    display: table-cell;
    padding: 16px;
    width: 160px;
    max-width: 160px;
  }
  .guide_table td {
    border-left: 1px solid #111;
    display: table-cell;
    padding: 16px;
  }
}

.img-credit-logo {
  padding: 15px;
}