@charset "UTF-8";
/*	com-color
サイト内で主に使用する色の変数
------------------------------------ */
/*	使用フォント一覧
------------------------------------ */
/* Noto Sans Japanese */
/* Ribeye Marrow */
/* Rounded M+ 1c */
/*	transition,hover
ホバー時のtransition秒数を統一、ホバーアクション
------------------------------------ */
/*	media-screen
画面サイズごとのcss設定に使用
------------------------------------ */
@media screen and (min-width: 768px) {
  .sp-only {
    display: none !important;
  }
}
/*	layout
その他パーツ
------------------------------------ */
/*	font-size
スマホ時にフォントサイズを自動で変更
※13px以下は文字が読めないためPC/SP同じサイズ
------------------------------------ */
/* =========================================

    main layout  all
    <main></main>箇所のcss

========================================= */
/*	com parts  PC
全ページ共通で使用したいパーツ
------------------------------------ */
.com-inner,
.bread-inner {
  width: 100%;
  max-width: 1080px;
  margin: auto;
}

.com-sub-inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 100px 0;
}

.com-tel {
  z-index: 1;
}
.com-tel-num {
  line-height: 1;
  padding-left: 30px;
  color: #34312a;
  position: relative;
}
.com-tel-num::before {
  position: absolute;
  content: "";
}
.com-tel-num {
  z-index: 1;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 30px;
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .com-tel-num {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
.com-tel-num::before {
  width: 20px;
  height: 34px;
  transform: translateY(-50%);
  top: 50%;
  left: 0;
  background: url(/img/all/tel-ico.png) no-repeat;
  background-size: 100%;
  z-index: -1;
}
.com-tel-svg {
  display: block;
  width: 235px;
  margin-top: 5px;
}

.com-ttl01 {
  letter-spacing: 0.08em;
  text-align: center;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 32px;
  font-size: 3.2rem;
}
@media screen and (max-width: 767px) {
  .com-ttl01 {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

.com-ttl02 {
  letter-spacing: 0.08em;
  padding-bottom: 5px;
  border-bottom: 2px solid #ff9696;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 32px;
  font-size: 3.2rem;
}
@media screen and (max-width: 767px) {
  .com-ttl02 {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

.com-btn01 {
  width: 350px;
  text-align: center;
  padding: 18px 45px;
  color: #34312a;
  background-color: #fde3e4;
  border: 1px solid #ff9696;
  outline: 4px solid #fff;
  outline-offset: -5px;
  border-radius: 30px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  position: relative;
}
.com-btn01::after {
  position: absolute;
  content: "";
}
.com-btn01 {
  z-index: 1;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .com-btn01 {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.com-btn01::after {
  width: 30px;
  height: 30px;
  transform: translateY(-50%);
  top: 50%;
  right: 15px;
  background: url(/img/all/btn-ico.png) no-repeat;
  background-size: 100%;
  z-index: -1;
  transition: all 0.5s ease;
}
.com-btn01:hover::after {
  transform: translateY(-50%) scale(0.9);
}

.com-btn02 {
  width: 160px;
  height: 40px;
  letter-spacing: 0.05em;
  padding-top: 5px;
  border-bottom: 1px solid #34312a;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  position: relative;
}
.com-btn02::after {
  position: absolute;
  content: "";
}
.com-btn02 {
  z-index: 1;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .com-btn02 {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.com-btn02::after {
  width: 30px;
  height: 30px;
  top: 0;
  right: 0;
  background: url(/img/all/btn-ico-color.png) no-repeat;
  background-size: 100%;
  z-index: -1;
  transition: all 0.5s ease;
}
.com-btn02:hover::after {
  transform: scale(0.9);
}

.com-line {
  width: 240px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #34312a;
  background-color: #fde3e4;
  border: 1px solid #ff9696;
  outline: 4px solid #fff;
  outline-offset: -5px;
  border-radius: 30px;
}
.com-line::before {
  content: "";
  width: 24px;
  height: 24px;
  margin-right: 15px;
  background: url(/img/all/line-ico.png) no-repeat;
  background-size: 100%;
}

.com-txt p:nth-of-type(n + 2) {
  margin-top: 20px;
}

.com-table01 {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 5px;
}
.com-table01 th {
  white-space: pre-line;
  width: 360px;
  line-height: 1.875;
  letter-spacing: 0.05em;
  text-align: center;
  vertical-align: middle;
  padding: 20px 15px;
  color: #fff;
  background-color: #ff9696;
  border-radius: 10px 0 0 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .com-table01 th {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.com-table01 td {
  white-space: pre-line;
  vertical-align: middle;
  line-height: 1.875;
  padding: 20px 15px;
  color: #34312a;
  background-color: #fcf9ef;
  border-radius: 0 10px 10px 0;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .com-table01 td {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.com-table01 a {
  color: #34312a;
}

.com-table02 {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 5px;
}
.com-table02 th {
  white-space: pre-line;
  width: 180px;
  line-height: 1.78;
  text-align: center;
  vertical-align: middle;
  padding: 4px 10px;
  color: #fff;
  background-color: #97d3dd;
  border-radius: 5px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .com-table02 th {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
.com-table02 td {
  white-space: pre-line;
  vertical-align: middle;
  line-height: 1.78;
  padding: 4px 10px;
  color: #34312a;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .com-table02 td {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
.com-table02 a {
  color: #34312a;
}

.com-no-post {
  text-align: center;
  margin-top: 100px;
  font-size: 28px;
  font-size: 2.8rem;
}
@media screen and (max-width: 767px) {
  .com-no-post {
    font-size: 21px;
    font-size: 2.1rem;
  }
}

.com-no-img {
  width: 90% !important;
  -o-object-fit: contain !important;
     object-fit: contain !important;
}
.com-no-img-bg {
  text-align: center;
  background-color: #ccc !important;
}

.com-main-color {
  color: #97d3dd;
}

.com-sub-color {
  color: #ff9696;
}

.clamp1 {
  overflow: hidden;
  display: -webkit-box; /* -webkitを使用するために必要 */
  -webkit-box-orient: vertical; /* 3点リーダー */
  -webkit-line-clamp: 1; /* 行数指定 */
}

.clamp2 {
  overflow: hidden;
  display: -webkit-box; /* -webkitを使用するために必要 */
  -webkit-box-orient: vertical; /* 3点リーダー */
  -webkit-line-clamp: 2; /* 行数指定 */
}

.clamp3 {
  overflow: hidden;
  display: -webkit-box; /* -webkitを使用するために必要 */
  -webkit-box-orient: vertical; /* 3点リーダー */
  -webkit-line-clamp: 3; /* 行数指定 */
}

.com-tag-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 10px;
  width: 100%;
}
.com-tag-list-item {
  letter-spacing: 0.05em;
  padding-left: 12px;
  color: #c0f1ed;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  position: relative;
}
.com-tag-list-item::before {
  position: absolute;
  content: "";
}
.com-tag-list-item {
  z-index: 1;
  font-size: 13px;
  font-size: 1.3rem;
}
.com-tag-list-item::before {
  content: "#";
  transform: translateY(-50%);
  top: 45%;
  left: 0;
  color: #ff9696;
  z-index: -1;
}

.com-time {
  flex-shrink: 0;
  letter-spacing: 0.05em;
  padding-right: 8px;
  color: #ff9696;
  font-family: "Ribeye Marrow", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .com-time {
    font-size: 17px;
    font-size: 1.7rem;
  }
}

.com-svg-txt {
  padding-left: 20px;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .com-svg-txt {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.com-pre {
  white-space: pre-line;
}

/* =========================================
    top  PC
    top-ent
========================================= */
#top-ent .container {
  padding: 0 20px;
}
#top-ent .link {
  overflow: hidden;
  z-index: 1;
  position: relative;
}
#top-ent .link-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#top-ent .link-img img {
  border-radius: 75px 75px 0 0;
}
#top-ent .link-top {
  width: 100%;
  border-radius: 80px;
}
#top-ent .link-box {
  width: 100%;
  padding: 42px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  clip-path: inset(0 round 0 0 75px 75px);
}
#top-ent .link-box::after {
  content: "";
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  margin-left: 2vw;
  border-radius: 50%;
}
@media screen and (min-width: 1921px) {
  #top-ent .link-box::after {
    margin-left: 40px;
  }
}
#top-ent .link-box-sub {
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  bottom: 125px;
}
#top-ent .link-box-txt {
  flex-shrink: 0;
  letter-spacing: 0.1em;
  padding: 0 15px;
  border-radius: 25px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-size: 30px;
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  #top-ent .link-box-txt {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
#top-ent .box {
  flex-wrap: wrap;
  border-radius: 0 0 75px 75px;
}
#top-ent .box-ttl {
  letter-spacing: 0.1em;
  text-align: center;
  margin-left: 20px;
  color: #fff;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-size: 35px;
  font-size: 3.5rem;
}
@media screen and (max-width: 767px) {
  #top-ent .box-ttl {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
#top-ent .box-ttl-br {
  display: none;
}
@media screen and (max-width: 1361px) {
  #top-ent .box-ttl-br {
    display: block;
  }
}
#top-ent .wrap {
  gap: 14px;
  margin-top: 27px;
}
#top-ent .official {
  width: 100%;
}
#top-ent .official-link {
  background-color: #ff9696;
}
#top-ent .official-link::after {
  background: url(/img/ent/official-deco.png) no-repeat;
  background-size: 100%;
}
#top-ent .official-box-txt {
  color: #ff9696;
  background-color: #fde3e4;
}
#top-ent .official-box-ttl {
  margin-left: 25px;
}
#top-ent .link-smartphone {
  padding: 5px;
  border: 3px solid #97d3dd;
  border-radius: 80px;
  outline: 5px solid #fff;
  outline-offset: -8px;
}
#top-ent .smartphone-link {
  background-color: #97d3dd;
}
#top-ent .smartphone-link::after {
  background: url(/img/ent/smartphone-deco.png) no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 1355px) {
  #top-ent .smartphone-link::after {
    position: absolute;
    transform: translateY(-50%);
    right: calc(50% - 235px);
    bottom: 80px;
  }
}
@media screen and (max-width: 1835px) {
  #top-ent .smartphone-sub {
    bottom: 170px;
  }
}
@media screen and (max-width: 1355px) {
  #top-ent .smartphone-sub {
    bottom: 230px;
  }
}
@media screen and (max-width: 1355px) {
  #top-ent .smartphone-box {
    max-width: 350px;
  }
}
#top-ent .smartphone-box-txt {
  color: #82d1de;
  background-color: #defbff;
}
#top-ent .guide {
  height: 100%;
  padding: 5px;
  border: 3px solid #dac8b0;
  background: #dac8b0;
  border-radius: 80px;
  outline: 5px solid #fff;
  outline-offset: -8px;
}
#top-ent .guide-link {
  background-color: #dac8b0;
  position: relative;
}
#top-ent .guide-link::after {
  background: url(/img/ent/guide-deco.png) no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 1355px) {
  #top-ent .guide-link::after {
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    right: calc(50% - 235px);
  }
}
@media screen and (max-width: 1835px) {
  #top-ent .guide-sub {
    bottom: 170px;
  }
}
@media screen and (max-width: 1355px) {
  #top-ent .guide-sub {
    bottom: 230px;
  }
}
@media screen and (max-width: 1355px) {
  #top-ent .guide-box {
    max-width: 350px;
  }
}
#top-ent .guide-box-txt {
  color: #dac8b0;
  background-color: #fbf8e7;
}

/* =========================================
    top  PC
    top-about
========================================= */
#top-about .bg {
  background: url(/img/top/about-bg.png) no-repeat right 80px/14.3vw;
  overflow: hidden;
}
#top-about .inner {
  position: relative;
}
#top-about .inner::after {
  position: absolute;
  content: "";
}
#top-about .inner {
  z-index: 1;
}
#top-about .inner::after {
  width: 197px;
  height: 128px;
  bottom: 140px;
  right: -5.2vw;
  background: url(/img/top/about-deco02.png) no-repeat;
  background-size: 100%;
  z-index: -1;
}
@media screen and (max-width: 1250px) {
  #top-about .inner::after {
    right: 0;
  }
}
#top-about .container {
  width: 100%;
  max-width: 520px;
  margin-left: auto;
}
#top-about .ttl {
  letter-spacing: 0.08em;
  line-height: 1.71;
  padding-bottom: 10px;
  background: url(/img/top/about-border.png) no-repeat left bottom/100%;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  position: relative;
}
#top-about .ttl::before {
  position: absolute;
  content: "";
}
#top-about .ttl {
  z-index: 1;
  font-size: 32px;
  font-size: 3.2rem;
}
@media screen and (max-width: 767px) {
  #top-about .ttl {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
#top-about .ttl::before {
  width: 220px;
  height: 104px;
  top: -55px;
  right: 44px;
  background: url(/img/top/about-deco01.png) no-repeat;
  background-size: 100%;
  z-index: -1;
}
#top-about .ttl-color {
  color: #ff9696;
}
#top-about .img {
  position: absolute;
  width: 880px;
  top: 150px;
  left: calc(50% - 960px);
  z-index: 10;
}
@media screen and (max-width: 1250px) {
  #top-about .img {
    left: calc(50% - 930px);
  }
}
#top-about .img img {
  border-radius: 0 30px 30px 0;
}
@media screen and (min-width: 1921px) {
  #top-about .img img {
    border-radius: 30px;
  }
}
#top-about .img::before {
  position: absolute;
  content: "";
  width: 900px;
  height: 100%;
  top: 20px;
  left: 0px;
  background: url(/img/all/pt01.png) left top;
  border-radius: 0 30px 30px 0;
  z-index: -1;
}
@media screen and (min-width: 1921px) {
  #top-about .img::before {
    border-radius: 30px;
  }
}
#top-about .txt {
  line-height: 2.18;
  margin-top: 30px;
}
#top-about .btn {
  position: relative;
  margin-top: 45px;
  z-index: 10;
}

/* =========================================
    top  PC
    top-service
========================================= */
#top-service .bg {
  background: url(/img/all/wave-top.png) no-repeat center top/100%, url(/img/all/wave-btm.png) no-repeat center bottom/100%, url(/img/top/service-bg.jpg) no-repeat center/cover;
  position: relative;
}
#top-service .bg::before {
  position: absolute;
  content: "";
}
#top-service .bg::after {
  position: absolute;
  content: "";
}
#top-service .bg::before {
  width: 13.69vw;
  height: 50.8vw;
  left: 0;
  top: -16.5vw;
  background: url(/img/top/about-bg-deco01.png) no-repeat;
  background-size: 100%;
}
#top-service .bg::after {
  width: 10vw;
  height: 12.9vw;
  top: -7.8vw;
  right: calc(50% - 24.2vw);
  background: url(/img/top/about-bg-deco02.png) no-repeat;
  background-size: 100%;
}
@media screen and (min-width: 2000px) {
  #top-service .bg::after {
    top: -120px;
  }
}
#top-service .inner {
  position: relative;
}
#top-service .inner::before {
  position: absolute;
  content: "";
}
#top-service .inner::after {
  position: absolute;
  content: "";
}
#top-service .inner {
  z-index: 1;
}
#top-service .inner::before {
  width: 232px;
  height: 117px;
  left: -50px;
  bottom: 70px;
  background: url(/img/top/service-bg-deco01.png) no-repeat;
  background-size: 100%;
  z-index: -1;
}
@media screen and (max-width: 1200px) {
  #top-service .inner::before {
    left: 10px;
  }
}
#top-service .inner::after {
  width: 166px;
  height: 124px;
  right: -20px;
  bottom: 70px;
  background: url(/img/top/service-bg-deco02.png) no-repeat;
  background-size: 100%;
  z-index: -1;
}
@media screen and (max-width: 1200px) {
  #top-service .inner::after {
    right: 10px;
  }
}
#top-service .top {
  text-align: center;
}
#top-service .ttl {
  position: relative;
}
#top-service .ttl::before {
  position: absolute;
  content: "";
}
#top-service .ttl::after {
  position: absolute;
  content: "";
}
#top-service .ttl::before {
  width: 99px;
  height: 123px;
  top: -10px;
  left: calc(50% - 205px);
  background: url(/img/top/service-ttl-deco01.png) no-repeat;
  background-size: 100%;
}
#top-service .ttl::after {
  width: 18px;
  height: 61px;
  top: 0;
  right: calc(50% - 147px);
  background: url(/img/top/service-ttl-deco02.png) no-repeat;
  background-size: 100%;
}
#top-service .ttl-sub {
  margin-top: 15px;
}
#top-service .list {
  margin-top: 80px;
  gap: 80px 30px;
}
#top-service .list-item {
  flex-basis: calc((100% - 60px) / 3);
  max-width: calc((100% - 60px) / 3);
}
#top-service .list-item:nth-of-type(2n) .list-link::before {
  background: url(/img/top/service-item-deco02.png) no-repeat;
  background-size: 100%;
}
#top-service .list-item:nth-of-type(2n) .list-ttl::after {
  background-color: #fde3e4;
}
#top-service .list-link {
  width: 100%;
  height: 420px;
  position: relative;
}
#top-service .list-link::before {
  position: absolute;
  content: "";
}
#top-service .list-link {
  z-index: 1;
}
#top-service .list-link::before {
  width: 100%;
  height: 164px;
  left: 0;
  bottom: 0;
  background: url(/img/top/service-item-deco01.png) no-repeat;
  background-size: 100%;
  border-radius: 0 0 20px 20px;
  z-index: 2;
}
#top-service .list-link:hover .list-txt::after {
  transform: scale(0.9);
}
#top-service .list-ttl {
  position: absolute;
  white-space: nowrap;
  letter-spacing: 0.05em;
  padding-bottom: 10px;
  transform: translateX(-50%);
  left: 50%;
  bottom: 50px;
  color: #fff;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  z-index: 5;
  font-size: 28px;
  font-size: 2.8rem;
}
@media screen and (max-width: 767px) {
  #top-service .list-ttl {
    font-size: 21px;
    font-size: 2.1rem;
  }
}
#top-service .list-ttl::after {
  position: absolute;
  content: "";
  width: 40px;
  height: 4px;
  transform: translateX(-50%);
  left: 50%;
  bottom: 0;
  background-color: #c0f1ed;
  border-radius: 2px;
  z-index: -1;
}
#top-service .list-txt {
  position: absolute;
  letter-spacing: 0.05em;
  right: 13px;
  bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  z-index: 5;
  font-family: "Ribeye Marrow", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  #top-service .list-txt {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
#top-service .list-txt::after {
  content: "";
  width: 30px;
  height: 30px;
  margin-left: 10px;
  background: url(/img/all/btn-ico.png) no-repeat;
  background-size: 100%;
  transition: all 0.5s ease;
}

/* =========================================
    top  PC
    top-bnr
========================================= */
#top-bnr .bg {
  background: url(/img/top/bnr-bg01.png) no-repeat left calc(100% - 70px)/24.4vw, url(/img/top/bnr-bg02.png) no-repeat calc(100% - 60px) 4.16vw/33.4vw;
}
#top-bnr .container {
  gap: 150px;
}
#top-bnr .link {
  width: 286px;
  height: 260px;
  text-align: center;
  padding-top: 140px;
  background: url(/img/top/btn-link-bg.png) no-repeat center/cover;
}
#top-bnr .link:hover .link-wrap::after {
  transform: translateX(-40%);
}
#top-bnr .link-wrap {
  position: relative;
}
#top-bnr .link-wrap::after {
  position: absolute;
  content: "";
}
#top-bnr .link-wrap {
  z-index: 1;
}
#top-bnr .link-wrap::after {
  width: 30px;
  height: 15px;
  transform: translateX(-50%);
  left: 50%;
  bottom: -22px;
  background: url(/img/all/arw.png) no-repeat;
  background-size: 100%;
  z-index: -1;
  transition: all 0.3s ease;
}
#top-bnr .link-fee {
  position: relative;
}
#top-bnr .link-fee::before {
  position: absolute;
  content: "";
}
#top-bnr .link-fee::after {
  position: absolute;
  content: "";
}
#top-bnr .link-fee::before {
  width: 105px;
  height: 80px;
  left: -31px;
  bottom: -15px;
  background: url(/img/top/fee-deco01.png) no-repeat;
  background-size: 100%;
}
#top-bnr .link-fee::after {
  width: 55px;
  height: 64px;
  top: 100px;
  right: 39px;
  background: url(/img/top/fee-deco02.png) no-repeat;
  background-size: 100%;
}
#top-bnr .link-flow {
  position: relative;
}
#top-bnr .link-flow::before {
  position: absolute;
  content: "";
}
#top-bnr .link-flow::after {
  position: absolute;
  content: "";
}
#top-bnr .link-flow::before {
  width: 115px;
  height: 134px;
  top: 40px;
  left: -42px;
  background: url(/img/top/flow-deco01.png) no-repeat;
  background-size: 100%;
}
#top-bnr .link-flow::after {
  width: 73px;
  height: 54px;
  bottom: 10px;
  right: -20px;
  background: url(/img/top/flow-deco02.png) no-repeat;
  background-size: 100%;
}
#top-bnr .link-ttl {
  letter-spacing: 0.08em;
  -webkit-text-stroke: 6px #fff;
  paint-order: stroke;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 28px;
  font-size: 2.8rem;
}
@media screen and (max-width: 767px) {
  #top-bnr .link-ttl {
    font-size: 21px;
    font-size: 2.1rem;
  }
}
#top-bnr .link-txt {
  display: inline-block;
  letter-spacing: 0.05em;
  padding: 0 38px;
  color: #82d1de;
  -webkit-text-stroke: 5px #fff;
  paint-order: stroke;
  background: url(/img/top/bnr-link-deco.png) no-repeat left center, url(/img/top/bnr-link-deco.png) no-repeat right center;
  font-family: "Ribeye Marrow", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  #top-bnr .link-txt {
    font-size: 19px;
    font-size: 1.9rem;
  }
}
#top-bnr .estimate {
  width: 100%;
  max-width: 980px;
  margin: 80px auto 0;
  padding: 10px;
  background-color: #fff;
  border: 5px solid #ff9696;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}
#top-bnr .estimate::before {
  position: absolute;
  content: "";
}
#top-bnr .estimate::after {
  position: absolute;
  content: "";
}
#top-bnr .estimate::before {
  width: 346px;
  height: 279px;
  top: 0;
  left: 0;
  background: url(/img/top/estimate-bg-deco01.png) no-repeat;
  background-size: 100%;
  z-index: 1;
}
#top-bnr .estimate::after {
  width: 346px;
  height: 279px;
  bottom: 0;
  right: 0;
  background: url(/img/top/estimate-bg-deco02.png) no-repeat;
  background-size: 100%;
  z-index: 1;
}
#top-bnr .estimate-wrap {
  width: 100%;
  padding: 40px 15px 30px;
  background: url(/img/all/pt-box.png) left top;
  border: 2px dashed #fde3e4;
  border-radius: 20px;
}
#top-bnr .estimate-box {
  width: 100%;
  text-align: center;
  z-index: 10;
  position: relative;
}
#top-bnr .estimate-box::after {
  position: absolute;
  content: "";
}
#top-bnr .estimate-box {
  z-index: 15;
}
#top-bnr .estimate-box::after {
  width: 202px;
  height: 46px;
  bottom: -16px;
  right: 85px;
  background: url(/img/top/estimate-deco.png) no-repeat;
  background-size: 100%;
  z-index: 15;
}
#top-bnr .estimate-ttl {
  letter-spacing: 0.08em;
  margin-top: 5px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  position: relative;
}
#top-bnr .estimate-ttl::after {
  position: absolute;
  content: "";
}
#top-bnr .estimate-ttl {
  z-index: 1;
  font-size: 32px;
  font-size: 3.2rem;
}
@media screen and (max-width: 767px) {
  #top-bnr .estimate-ttl {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
#top-bnr .estimate-ttl::after {
  width: 108px;
  height: 112px;
  top: -40px;
  right: calc(50% - 242px);
  background: url(/img/top/estimate-ttl-deco.png) no-repeat;
  background-size: 100%;
  z-index: -1;
}
#top-bnr .estimate-ttl-dot {
  position: relative;
}
#top-bnr .estimate-ttl-dot::before {
  position: absolute;
  content: "";
}
#top-bnr .estimate-ttl-dot {
  z-index: 1;
}
#top-bnr .estimate-ttl-dot::before {
  width: 5px;
  height: 4px;
  transform: translateX(-50%);
  left: 50%;
  top: -5px;
  background: url(/img/top/estimate-ttl-dot.png) no-repeat;
  background-size: 100%;
  z-index: -1;
}
#top-bnr .estimate-ttl-deco {
  margin-left: 5px;
  padding: 0 3px;
  color: #fff;
  position: relative;
}
#top-bnr .estimate-ttl-deco::before {
  position: absolute;
  content: "";
}
#top-bnr .estimate-ttl-deco {
  z-index: 1;
}
#top-bnr .estimate-ttl-deco::before {
  width: 40px;
  height: 40px;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  background-color: #ff9696;
  border-radius: 5px;
  z-index: -1;
}
#top-bnr .estimate-primary {
  display: inline-block;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin-top: 15px;
  padding: 0 40px;
  background: url(/img/top/estimate-primary-deco01.png) no-repeat left bottom, url(/img/top/estimate-primary-deco02.png) no-repeat right bottom;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  #top-bnr .estimate-primary {
    font-size: 19px;
    font-size: 1.9rem;
  }
}
#top-bnr .estimate-primary-lg {
  letter-spacing: 0.05em;
  color: #ff9696;
  font-family: "Ribeye Marrow", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 30px;
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  #top-bnr .estimate-primary-lg {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
#top-bnr .estimate-txt {
  display: inline-block;
  letter-spacing: 0.05em;
  margin-top: 15px;
  padding: 0 25px;
  background-color: #fde3e4;
  border-radius: 13px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  position: relative;
}
#top-bnr .estimate-txt::before {
  position: absolute;
  content: "";
}
#top-bnr .estimate-txt {
  z-index: 1;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  #top-bnr .estimate-txt {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
#top-bnr .estimate-txt::before {
  width: 40px;
  height: 70px;
  top: -34px;
  left: -35px;
  background: url(/img/top/estimate-txt-deco.png) no-repeat;
  background-size: 100%;
  z-index: -1;
}
#top-bnr .estimate-btm {
  margin-top: 30px;
  padding-top: 25px;
  background: url(/img/top/estimate-btm.png) no-repeat center top;
}
#top-bnr .estimate-btn {
  width: 165px;
  text-align: left;
  line-height: 30px;
  letter-spacing: 0.05em;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  position: relative;
}
#top-bnr .estimate-btn::after {
  position: absolute;
  content: "";
}
#top-bnr .estimate-btn {
  z-index: 1;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  #top-bnr .estimate-btn {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
#top-bnr .estimate-btn::after {
  width: 30px;
  height: 30px;
  transform: translateY(-50%);
  top: 50%;
  right: 0;
  background: url(/img/all/btn-ico-color.png) no-repeat;
  background-size: 100%;
  z-index: -1;
  transition: all 0.5s ease;
}
#top-bnr .estimate-btn:hover::after {
  transform: translateY(-50%) scale(0.9);
}

/* =========================================
    top  PC
    top-case
========================================= */
#top-case .bg {
  background: url(/img/top/case-bg-top.png) no-repeat center top/100%, url(/img/all/wave-btm.png) no-repeat center bottom/100%, url(/img/top/case-bg-right.png) no-repeat right top, #e6f9f8;
}
#top-case .ttl {
  padding-left: 15px;
  position: relative;
}
#top-case .ttl::before {
  position: absolute;
  content: "";
}
#top-case .ttl::after {
  position: absolute;
  content: "";
}
#top-case .ttl::before {
  width: 101px;
  height: 41px;
  top: -40px;
  right: -55px;
  background: url(/img/top/case-ttl-deco02.png) no-repeat;
  background-size: 100%;
}
#top-case .ttl::after {
  width: 84px;
  height: 72px;
  bottom: -25px;
  left: -90px;
  background: url(/img/top/case-ttl-deco01.png) no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 1270px) {
  #top-case .ttl::after {
    bottom: 45px;
    left: 0px;
  }
}
#top-case .list {
  gap: 30px;
  margin-top: 30px;
}
#top-case .list-item {
  flex-basis: calc((100% - 60px) / 3);
  max-width: calc((100% - 60px) / 3);
}
#top-case .list-link {
  width: 100%;
}
#top-case .list-link:hover .list-img img {
  transform: scale(1.05);
}
#top-case .list-img {
  width: 100%;
  height: 340px;
  border-radius: 20px;
  overflow: hidden;
}
#top-case .list-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#top-case .list-img img {
  transition: all 0.5s ease;
}
#top-case .list-ttl {
  letter-spacing: 0.05em;
  margin-top: 15px;
  padding-left: 30px;
  background: url(/img/top/case-ttl-ico.png) no-repeat left 10px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 22px;
  font-size: 2.2rem;
}
@media screen and (max-width: 767px) {
  #top-case .list-ttl {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

/* =========================================
    top  PC
    top-link
========================================= */
#top-link .bg {
  background: url(/img/top/link-bg-deco01.png) no-repeat calc(100% - 220px) 20px/10vw, url(/img/top/link-bg-deco02.png) no-repeat right bottom;
}
#top-link .inner {
  position: relative;
}
#top-link .inner::after {
  position: absolute;
  content: "";
}
#top-link .inner {
  z-index: 1;
}
#top-link .inner::after {
  width: 333px;
  height: 155px;
  bottom: 70px;
  right: -7.8vw;
  background: url(/img/top/link-deco.png) no-repeat;
  background-size: 100%;
  z-index: 1;
}
@media screen and (max-width: 1300px) {
  #top-link .inner::after {
    right: 10px;
  }
}
#top-link .container {
  padding-bottom: 120px;
  border-bottom: 1px solid #ff9696;
}
#top-link .link {
  width: 480px;
  height: 150px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fde3e4;
  border: 1px solid #ff9696;
  outline: 4px solid #fff;
  outline-offset: -5px;
  border-radius: 75px;
  position: relative;
}
#top-link .link::after {
  position: absolute;
  content: "";
}
#top-link .link {
  z-index: 1;
}
#top-link .link::after {
  width: 60px;
  height: 60px;
  transform: translateY(-50%);
  top: 50%;
  right: 45px;
  background: url(/img/all/btn-ico-lg.png) no-repeat;
  background-size: 100%;
  z-index: -1;
  transition: all 0.5s ease;
}
#top-link .link:hover::after {
  transform: translateY(-50%) scale(0.95);
}
#top-link .link-ttl {
  letter-spacing: 0.08em;
  color: #34312a;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 28px;
  font-size: 2.8rem;
}
@media screen and (max-width: 767px) {
  #top-link .link-ttl {
    font-size: 21px;
    font-size: 2.1rem;
  }
}
#top-link .link-txt {
  letter-spacing: 0.05em;
  color: #ff9696;
  font-family: "Ribeye Marrow", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  #top-link .link-txt {
    font-size: 19px;
    font-size: 1.9rem;
  }
}

/* =========================================
    top  PC
    top-news
========================================= */
#top-news .bg {
  position: relative;
}
#top-news .bg::after {
  position: absolute;
  content: "";
}
#top-news .bg {
  z-index: 1;
}
#top-news .bg::after {
  width: 11.7vw;
  height: 32.5vw;
  left: 0;
  bottom: -19.4vw;
  background: url(/img/top/contact-deco01.png) no-repeat;
  background-size: 100%;
}
#top-news .container-box {
  width: 160px;
  flex-shrink: 0;
  text-align: center;
  position: relative;
}
#top-news .container-box::before {
  position: absolute;
  content: "";
}
#top-news .container-box::after {
  position: absolute;
  content: "";
}
#top-news .container-box::before {
  width: 64px;
  height: 123px;
  top: 85px;
  left: -75px;
  background: url(/img/top/news-deco01.png) no-repeat;
  background-size: 100%;
}
#top-news .container-box::after {
  width: 100px;
  height: 64px;
  right: -40px;
  top: 80px;
  background: url(/img/top/news-deco02.png) no-repeat;
  background-size: 100%;
}
#top-news .list {
  width: 100%;
  gap: 30px;
  margin-left: 80px;
}
#top-news .list-item {
  flex-basis: calc((100% - 60px) / 3);
  max-width: calc((100% - 60px) / 3);
}
#top-news .list-link {
  width: 100%;
  color: #34312a;
}
#top-news .list-link:hover .list-img img {
  transform: scale(1.05);
}
#top-news .list-img {
  width: 100%;
  height: 260px;
  border-radius: 20px;
  overflow: hidden;
}
#top-news .list-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#top-news .list-img img {
  transition: all 0.5s ease;
}
#top-news .list-ttl {
  letter-spacing: 0.05em;
  margin-top: 10px;
  line-height: 2;
  padding-bottom: 5px;
  border-bottom: 1px dashed #ff9696;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  #top-news .list-ttl {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
#top-news .com-tag-list {
  margin-top: 7px;
}
#top-news .btn {
  margin-top: 200px;
  text-align: left;
}

/* =========================================
    top  PC
    top-contact
========================================= */
#top-contact .bg {
  background: url(/img/top/contact-bg-left.png) no-repeat 12.5vw 30px, url(/img/top/contact-bg.png) no-repeat calc(100% - 7.81vw) calc(100% - 80px), #fbf8e7;
  position: relative;
}
#top-contact .bg::before {
  position: absolute;
  content: "";
}
#top-contact .bg::before {
  width: 100%;
  height: 1.56vw;
  transform: translateX(-50%);
  left: 50%;
  top: -1.56vw;
  background: url(/img/top/contact-wave-top.png) no-repeat;
  background-size: 100%;
}
#top-contact .container {
  width: 100%;
  text-align: center;
  padding: 38px 15px 78px;
  background: url(/img/all/pt-box.png) left top;
  border: 2px solid #ff9696;
  border-radius: 30px;
  position: relative;
}
#top-contact .container::before {
  position: absolute;
  content: "";
}
#top-contact .container::after {
  position: absolute;
  content: "";
}
#top-contact .container {
  z-index: 10;
}
#top-contact .container::before {
  width: 114px;
  height: 73px;
  bottom: -1px;
  left: 68px;
  background: url(/img/top/contact-box-deco01.png) no-repeat;
  background-size: 100%;
}
#top-contact .container::after {
  width: 118px;
  height: 157px;
  bottom: -40px;
  right: 32px;
  background: url(/img/top/contact-box-deco02.png) no-repeat;
  background-size: 100%;
}
#top-contact .sub {
  display: inline-block;
  position: relative;
}
#top-contact .sub::before {
  position: absolute;
  content: "";
}
#top-contact .sub {
  z-index: 1;
}
#top-contact .sub::before {
  width: 78px;
  height: 61px;
  top: 10px;
  left: -90px;
  background: url(/img/top/contact-ttl-deco.png) no-repeat;
  background-size: 100%;
  z-index: -1;
}
#top-contact .ttl {
  letter-spacing: 0.08em;
  margin-top: 20px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 32px;
  font-size: 3.2rem;
}
@media screen and (max-width: 767px) {
  #top-contact .ttl {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
#top-contact .ttl-color {
  color: #ff9696;
}
#top-contact .wrap {
  gap: 75px;
  margin-top: 30px;
}
#top-contact .com-tel-svg {
  margin: 5px auto 0;
}
#top-contact .line {
  width: 350px;
  height: 80px;
  border-radius: 40px;
}

/* =========================================

    sub layout  PC
    下層ページのPC時css
		sub-pc

========================================= */
/* =========================================
    sub  PC
    sub-about
========================================= */
#sub-available .bg {
  background: url(/img/about/available-bg01.png) no-repeat 40px 40px/40vw, url(/img/about/available-bg02.png) no-repeat right top/14.32vw;
}
#sub-available .ttl-sub {
  margin-top: 15px;
  text-align: center;
}
#sub-available .list {
  margin-top: 75px;
  gap: 30px;
}
#sub-available .list-item {
  flex-basis: calc((100% - 60px) / 3);
  max-width: calc((100% - 60px) / 3);
  height: 420px;
  padding-top: 315px;
}
#sub-available .list-item:nth-of-type(2) .list-ttl::before {
  background-color: #fde3e4;
}
#sub-available .list-dog {
  background: url(/img/about/available-dog.png) no-repeat center/100%;
}
#sub-available .list-cat {
  background: url(/img/about/available-cat.png) no-repeat center/100%;
}
#sub-available .list-rabbit {
  background: url(/img/about/available-rabbit.png) no-repeat center/100%;
}
#sub-available .list-ttl {
  letter-spacing: 0.05em;
  text-align: center;
  padding-bottom: 15px;
  color: #fff;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  position: relative;
}
#sub-available .list-ttl::before {
  position: absolute;
  content: "";
}
#sub-available .list-ttl {
  z-index: 1;
  font-size: 28px;
  font-size: 2.8rem;
}
@media screen and (max-width: 767px) {
  #sub-available .list-ttl {
    font-size: 21px;
    font-size: 2.1rem;
  }
}
#sub-available .list-ttl::before {
  width: 40px;
  height: 4px;
  transform: translateX(-50%);
  left: 50%;
  bottom: 0;
  background-color: #c0f1ed;
  border-radius: 2px;
  z-index: -1;
}

#sub-service .bg {
  background: url(/img/all/wave-top.png) no-repeat center top/100%, url(/img/all/wave-btm.png) no-repeat center bottom/100%, url(/img/about/service-bg.jpg) no-repeat center/cover;
}
#sub-service .inner {
  position: relative;
}
#sub-service .inner::before {
  position: absolute;
  content: "";
}
#sub-service .inner::after {
  position: absolute;
  content: "";
}
#sub-service .inner::before {
  width: 131px;
  height: 80px;
  top: 196px;
  right: 25px;
  background: url(/img/about/service-deco01.png) no-repeat;
  background-size: 100%;
}
#sub-service .inner::after {
  width: 131px;
  height: 90px;
  bottom: 50px;
  left: -8.85vw;
  background: url(/img/about/service-deco02.png) no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 1315px) {
  #sub-service .inner::after {
    bottom: 10px;
    left: 10px;
  }
}
#sub-service .ttl-sub {
  text-align: center;
  margin-top: 15px;
}
#sub-service .list {
  margin-top: 50px;
}
#sub-service .list-item {
  width: 100%;
  gap: 40px;
}
#sub-service .list-item:nth-of-type(n + 2) {
  margin-top: 70px;
}
#sub-service .list-item:nth-of-type(2n) {
  flex-direction: row-reverse;
}
#sub-service .list-item:nth-of-type(2n) .list-img::before {
  left: 10px;
  background: url(/img/all/pt02.png) left top;
}
#sub-service .list-item:nth-of-type(2n) .list-ttl {
  background: url(/img/about/list-ico02.png) no-repeat left 10px, url(/img/about/service-border02.png) no-repeat left bottom;
}
#sub-service .list-img {
  flex-shrink: 0;
  margin-top: 10px;
}
#sub-service .list-img img {
  border-radius: 20px;
}
#sub-service .list-img {
  position: relative;
}
#sub-service .list-img::before {
  position: absolute;
  content: "";
}
#sub-service .list-img {
  z-index: 1;
}
#sub-service .list-img::before {
  width: 100%;
  height: 100%;
  top: 10px;
  left: -10px;
  background: url(/img/all/pt03.png) left top;
  border-radius: 20px;
  z-index: -1;
}
#sub-service .list-ttl {
  letter-spacing: 0.05em;
  padding-left: 40px;
  padding-bottom: 17px;
  background: url(/img/about/list-ico01.png) no-repeat left 10px, url(/img/about/service-border01.png) no-repeat left bottom;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 25px;
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  #sub-service .list-ttl {
    font-size: 20px;
    font-size: 2rem;
  }
}
#sub-service .list-txt {
  line-height: 2.18;
  margin-top: 35px;
}

#sub-area .bg {
  background: url(/img/about/area-bg.png) no-repeat calc(100% - 5.2vw) 30px;
}
#sub-area .container {
  padding: 10px;
  background-color: #fff;
  border: 5px solid #ff9696;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}
#sub-area .container::before {
  position: absolute;
  content: "";
}
#sub-area .container::after {
  position: absolute;
  content: "";
}
#sub-area .container::before {
  width: 346px;
  height: 279px;
  top: 0;
  left: 0;
  background: url(/img/top/estimate-bg-deco01.png) no-repeat;
  background-size: 100%;
  z-index: 1;
}
#sub-area .container::after {
  width: 346px;
  height: 279px;
  bottom: 0;
  right: 0;
  background: url(/img/top/estimate-bg-deco02.png) no-repeat;
  background-size: 100%;
  z-index: 1;
}
#sub-area .container-inner {
  width: 100%;
  padding: 40px 15px 30px;
  background: url(/img/all/pt-box.png) left top;
  border: 2px dashed #fde3e4;
  border-radius: 20px;
}
#sub-area .container-wrap {
  width: 100%;
  text-align: center;
  z-index: 10;
  position: relative;
}
#sub-area .container-wrap::after {
  position: absolute;
  content: "";
}
#sub-area .container-wrap {
  z-index: 15;
}
#sub-area .container-wrap::after {
  width: 202px;
  height: 46px;
  bottom: -16px;
  right: 30px;
  background: url(/img/top/estimate-deco.png) no-repeat;
  background-size: 100%;
  z-index: 15;
}
#sub-area .ttl-sub {
  text-align: center;
  margin-top: 15px;
}
#sub-area .area {
  gap: 20px;
  margin-top: 40px;
  padding-left: 105px;
}
#sub-area .area-ttl {
  width: 360px;
  padding: 4px 10px;
  letter-spacing: 0.05em;
  text-align: center;
  background-color: #fde3e4;
  border-radius: 20px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  #sub-area .area-ttl {
    font-size: 19px;
    font-size: 1.9rem;
  }
}
#sub-area .area-txt {
  letter-spacing: 0.05em;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  #sub-area .area-txt {
    font-size: 19px;
    font-size: 1.9rem;
  }
}
#sub-area .area-txt-sm {
  letter-spacing: 0.05em;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  #sub-area .area-txt-sm {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
#sub-area .txt {
  letter-spacing: 0.05em;
  margin-top: 25px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  #sub-area .txt {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
#sub-area .txt-lg {
  letter-spacing: 0.05em;
  color: #ff9696;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  #sub-area .txt-lg {
    font-size: 19px;
    font-size: 1.9rem;
  }
}

#sub-point .bg {
  background: url(/img/top//case-bg-top.png) no-repeat center top/100%, url(/img/about/point-bg01.png) no-repeat 60px 180px, url(/img/about/point-bg02.png) no-repeat right calc(100% - 650px), #e6f9f8;
  position: relative;
}
#sub-point .bg::after {
  position: absolute;
  content: "";
}
#sub-point .bg {
  z-index: 1;
}
#sub-point .bg::after {
  width: 11.7vw;
  height: 32.5vw;
  left: 0;
  bottom: -20vw;
  background: url(/img/about/point-bg-deco.png) no-repeat;
  background-size: 100%;
  z-index: 1;
}
#sub-point .ttl-sub {
  text-align: center;
  margin-top: 15px;
}
#sub-point .list {
  margin-top: 80px;
  position: relative;
}
#sub-point .list::before {
  position: absolute;
  content: "";
}
#sub-point .list {
  z-index: 1;
}
#sub-point .list::before {
  width: 64px;
  height: 123px;
  top: 10px;
  right: 30px;
  background: url(/img/top/news-deco01.png) no-repeat;
  background-size: 100%;
  z-index: 1;
}
#sub-point .list-item {
  width: 100%;
  padding-top: 120px;
  position: relative;
}
#sub-point .list-item:nth-of-type(n + 2) {
  margin-top: 80px;
}
#sub-point .list-item:nth-of-type(2n) .list-wrap {
  margin-left: unset;
}
#sub-point .list-item:nth-of-type(2n) .list-img {
  left: unset;
  right: -100px;
}
@media screen and (max-width: 1280px) {
  #sub-point .list-item:nth-of-type(2n) .list-img {
    right: 0;
  }
}
#sub-point .list-img {
  position: absolute;
  top: 0;
  left: -100px;
}
@media screen and (max-width: 1280px) {
  #sub-point .list-img {
    width: 650px;
    left: 0;
  }
}
#sub-point .list-img img {
  border-radius: 20px;
}
#sub-point .list-wrap {
  width: 600px;
  margin-left: auto;
  padding: 40px 30px 35px;
  background-color: #fff;
  border-radius: 20px;
  position: relative;
}
#sub-point .list-num {
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  top: -98px;
}
#sub-point .list-ttl {
  letter-spacing: 0.05em;
  text-align: center;
  padding: 3px 10px;
  color: #fff;
  background-color: #ff9696;
  border-radius: 10px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 28px;
  font-size: 2.8rem;
}
@media screen and (max-width: 767px) {
  #sub-point .list-ttl {
    font-size: 21px;
    font-size: 2.1rem;
  }
}
#sub-point .list-txt {
  line-height: 2.18;
  margin-top: 25px;
}

/* =========================================
    sub  PC
    sub-fee
========================================= */
#flowchart .bg {
  background: url(/img/fee/flowchart-bg-deco.png) no-repeat 40px 40px/40vw, url(/img/about/available-bg02.png) no-repeat right top/14.32vw;
}
#flowchart .ttl {
  position: relative;
}
#flowchart .ttl::after {
  position: absolute;
  content: "";
}
#flowchart .ttl {
  z-index: 1;
}
#flowchart .ttl::after {
  width: 77px;
  height: 97px;
  top: -15px;
  right: calc(50% - 210px);
  background: url(/img/fee/flowchart-ttl-deco.png) no-repeat;
  background-size: 100%;
  z-index: -1;
}
#flowchart .ttl-dot {
  position: relative;
}
#flowchart .ttl-dot::before {
  position: absolute;
  content: "";
}
#flowchart .ttl-dot {
  z-index: 1;
}
#flowchart .ttl-dot::before {
  width: 5px;
  height: 4px;
  transform: translateX(-50%);
  left: 50%;
  top: -5px;
  background: url(/img/top/estimate-ttl-dot.png) no-repeat;
  background-size: 100%;
  z-index: -1;
}
#flowchart .ttl-sub {
  text-align: center;
  margin-top: 15px;
}
#flowchart .wrap {
  margin-top: 60px;
  padding: 10px;
  background-color: #fff;
  border: 5px solid #ff9696;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}
#flowchart .wrap::before {
  position: absolute;
  content: "";
}
#flowchart .wrap::after {
  position: absolute;
  content: "";
}
#flowchart .wrap::before {
  width: 346px;
  height: 279px;
  top: 0;
  left: 0;
  background: url(/img/top/estimate-bg-deco01.png) no-repeat;
  background-size: 100%;
  z-index: 1;
}
#flowchart .wrap::after {
  width: 346px;
  height: 279px;
  bottom: 0;
  right: 0;
  background: url(/img/top/estimate-bg-deco02.png) no-repeat;
  background-size: 100%;
  z-index: 1;
}
#flowchart .wrap-inner {
  width: 100%;
  padding: 60px 40px;
  background: url(/img/all/pt-box.png) left top;
  border: 2px dashed #fde3e4;
  border-radius: 20px;
}
#flowchart .wrap-box {
  width: 100%;
  text-align: center;
  position: relative;
}
#flowchart .wrap-box::after {
  position: absolute;
  content: "";
}
#flowchart .wrap-box {
  z-index: 15;
}
#flowchart .wrap-box::after {
  width: 104px;
  height: 82px;
  bottom: -61px;
  right: 30px;
  background: url(/img/fee/flowchart-deco01.png) no-repeat;
  background-size: 100%;
  z-index: 15;
}
#flowchart .wrap-ttl {
  width: 100%;
  text-align: center;
  padding: 12.4px 15px;
  background-color: #82d1de;
  border-radius: 40px;
}
#flowchart .wrap-ttl-main {
  display: inline-block;
  text-align: center;
  letter-spacing: 0.05em;
  padding: 0 60px;
  color: #fff;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  position: relative;
}
#flowchart .wrap-ttl-main::before {
  position: absolute;
  content: "";
}
#flowchart .wrap-ttl-main {
  z-index: 1;
  font-size: 22px;
  font-size: 2.2rem;
}
@media screen and (max-width: 767px) {
  #flowchart .wrap-ttl-main {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
#flowchart .wrap-ttl-main::before {
  content: "Q";
  width: 40px;
  height: 40px;
  line-height: 37px;
  letter-spacing: 0.05em;
  top: -3px;
  left: 0;
  color: #97d3dd;
  background-color: #fff;
  border-radius: 50%;
  z-index: -1;
  font-family: "Ribeye Marrow", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 30px;
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  #flowchart .wrap-ttl-main::before {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
#flowchart .wrap-ttl-sm {
  letter-spacing: 0.05em;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  #flowchart .wrap-ttl-sm {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
#flowchart .btn-list {
  flex-wrap: wrap;
  gap: 30px 45px;
  margin-top: 40px;
}
#flowchart .chart_btn {
  width: 460px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.1em;
  border-radius: 40px;
}
#flowchart .back-arw {
  width: 160px;
  height: 35px;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: end;
  margin: 30px auto 0;
  color: #ff9696;
  border-bottom: 1px solid #ff9696;
  position: relative;
}
#flowchart .back-arw::before {
  position: absolute;
  content: "";
}
#flowchart .back-arw {
  z-index: 1;
  font-weight: 600;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  #flowchart .back-arw {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
#flowchart .back-arw::before {
  width: 8px;
  height: 13px;
  transform: translateY(-50%);
  top: 50%;
  left: 0px;
  background: url(/img/fee/back-arw.png) no-repeat;
  background-size: 100%;
  z-index: -1;
  transition: all 0.3s ease;
}
#flowchart .back-arw:hover::before {
  transform: translate(-3px, -50%);
}
#flowchart .answer-box {
  position: relative;
}
#flowchart .answer-box::before {
  position: absolute;
  content: "";
}
#flowchart .answer-box::after {
  position: absolute;
  content: "";
}
#flowchart .answer-box::before {
  width: 88px;
  height: 131px;
  top: 97px;
  left: -2px;
  background: url(/img/fee/answer-deco02.png) no-repeat;
  background-size: 100%;
}
#flowchart .answer-box::after {
  width: 134px;
  height: 68px;
  top: -37px;
  right: -10px;
  background: url(/img/fee/answer-deco01.png) no-repeat;
  background-size: 100%;
}
#flowchart .answer-primary {
  position: absolute;
  width: 120px;
  height: 116px;
  line-height: 1.36;
  text-align: center;
  letter-spacing: 0.05em;
  display: flex;
  justify-content: center;
  align-items: center;
  top: -25px;
  left: 38px;
  color: #fff;
  background: url(/img/fee/answer-txt-bg.png) no-repeat center/100%;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 22px;
  font-size: 2.2rem;
}
@media screen and (max-width: 767px) {
  #flowchart .answer-primary {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
#flowchart .answer-sub {
  letter-spacing: 0.1em;
  text-align: center;
  margin-top: 30px;
  font-size: 28px;
  font-size: 2.8rem;
}
@media screen and (max-width: 767px) {
  #flowchart .answer-sub {
    font-size: 21px;
    font-size: 2.1rem;
  }
}
#flowchart .answer-ttl {
  width: 100%;
  letter-spacing: 0.05em;
  max-width: 710px;
  text-align: center;
  margin: 0 auto;
  padding: 13px 10px;
  position: relative;
}
#flowchart .answer-ttl::before {
  position: absolute;
  content: "";
}
#flowchart .answer-ttl::after {
  position: absolute;
  content: "";
}
#flowchart .answer-ttl {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 22px;
  font-size: 2.2rem;
}
@media screen and (max-width: 767px) {
  #flowchart .answer-ttl {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
#flowchart .answer-ttl::before {
  width: 92%;
  height: 2px;
  top: 0;
  right: 10px;
  background-color: #ff9696;
}
#flowchart .answer-ttl::after {
  width: 92%;
  height: 2px;
  bottom: 0;
  right: 10px;
  background-color: #ff9696;
}
#flowchart .answer-ttl-lg {
  letter-spacing: 0.05em;
  color: #ff9696;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 28px;
  font-size: 2.8rem;
}
@media screen and (max-width: 767px) {
  #flowchart .answer-ttl-lg {
    font-size: 21px;
    font-size: 2.1rem;
  }
}
#flowchart .answer-ttl-txt {
  letter-spacing: 0.1em;
  display: inline-block;
  padding: 15.5px 55px;
  color: #fff;
  background: url(/img/top/answer-ttl-deco03.png) no-repeat left center, url(/img/top/answer-ttl-deco04.png) no-repeat right center;
  position: relative;
}
#flowchart .answer-ttl-txt::after {
  position: absolute;
  content: "";
}
#flowchart .answer-ttl-txt {
  z-index: 1;
  font-size: 28px;
  font-size: 2.8rem;
}
@media screen and (max-width: 767px) {
  #flowchart .answer-ttl-txt {
    font-size: 21px;
    font-size: 2.1rem;
  }
}
#flowchart .answer-ttl-txt::after {
  width: 149px;
  height: 186px;
  right: -130px;
  bottom: -20px;
  background: url(/img/fee/answer-deco03.png) no-repeat;
  background-size: 100%;
  z-index: -1;
}
#flowchart .answer-ttl-txt-sm {
  font-size: 21px;
  font-size: 2.1rem;
}
@media screen and (max-width: 767px) {
  #flowchart .answer-ttl-txt-sm {
    font-size: 20px;
    font-size: 2rem;
  }
}
#flowchart .answer-wrap {
  width: 100%;
  max-width: 710px;
  margin: 30px auto 0;
  padding: 25px 45px;
  background-color: #fcf9ef;
  border-radius: 10px;
  position: relative;
}
#flowchart .answer-wrap::after {
  position: absolute;
  content: "";
}
#flowchart .answer-wrap {
  z-index: 1;
}
#flowchart .answer-wrap::after {
  width: 100%;
  height: 6px;
  transform: translateX(-50%);
  left: 50%;
  bottom: -26px;
  background: url(/img/fee/answer-border.png) no-repeat;
  background-size: 100%;
  z-index: -1;
}
#flowchart .answer-txt {
  line-height: 2.1875;
  font-weight: 600;
  text-align: left;
}
#flowchart .answer-txt-lg {
  color: #97d3dd;
}
#flowchart .answer-btm {
  margin-top: 45px;
  position: relative;
}
#flowchart .answer-btm::before {
  position: absolute;
  content: "";
}
#flowchart .answer-btm {
  z-index: 1;
}
#flowchart .answer-btm::before {
  width: 200px;
  height: 141px;
  bottom: -30px;
  left: 55px;
  background: url(/img/fee/answer-deco04.png) no-repeat;
  background-size: 100%;
  z-index: -1;
}
#flowchart .link {
  width: 460px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  border-radius: 40px;
}
#flowchart .link::after {
  right: 25px;
}
#flowchart .first-arw {
  margin: 30px auto 0;
}

#sub-fee .bg {
  background: url(/img/all/wave-top.png) no-repeat top center/100%, url(/img/all/wave-btm.png) no-repeat center bottom/100%, url(/img/fee/fee-bg01.png) no-repeat left top, url(/img/fee/fee-bg02.png) no-repeat calc(100% - 40px) calc(100% - 60px), #fbf8e7;
}
#sub-fee .ttl {
  position: relative;
}
#sub-fee .ttl::before {
  position: absolute;
  content: "";
}
#sub-fee .ttl {
  z-index: 1;
}
#sub-fee .ttl::before {
  width: 152px;
  height: 109px;
  top: 30px;
  left: calc(50% - 293px);
  background: url(/img/fee/fee-deco.png) no-repeat;
  background-size: 100%;
  z-index: -1;
}
#sub-fee .ttl-sub {
  text-align: center;
  margin-top: 15px;
}
#sub-fee .note {
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 55px;
}
#sub-fee .list {
  margin-top: 55px;
}
#sub-fee .list-item {
  width: 100%;
  padding: 60px;
  background-color: #fff;
  border: 1px solid #c0f1ed;
  border-radius: 20px;
}
#sub-fee .list-item:nth-of-type(n + 2) {
  margin-top: 40px;
}
#sub-fee .list-ttl {
  text-align: center;
  letter-spacing: 0.05em;
  padding: 10px;
  color: #fff;
  background-color: #ff9696;
  border-radius: 10px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 28px;
  font-size: 2.8rem;
}
@media screen and (max-width: 767px) {
  #sub-fee .list-ttl {
    font-size: 21px;
    font-size: 2.1rem;
  }
}
#sub-fee .list-txt {
  line-height: 2.18;
  letter-spacing: 0.05em;
  margin-top: 30px;
}
#sub-fee .menu {
  margin-top: 10px;
}
#sub-fee .menu-item {
  width: 100%;
  gap: 30px;
  padding: 20.1px 40px;
  background-color: #fcf9ef;
  border-radius: 10px;
}
#sub-fee .menu-item:nth-of-type(n + 2) {
  margin-top: 5px;
}
#sub-fee .menu-ttl {
  line-height: 2.18;
  flex-shrink: 0;
  letter-spacing: 0.05em;
  color: #ff9696;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  #sub-fee .menu-ttl {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
#sub-fee .menu-txt {
  line-height: 2.18;
  letter-spacing: 0.05em;
  text-align: right;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  #sub-fee .menu-txt {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

#sub-flow .bg {
  background: url(/img/fee/flow-bg01.png) no-repeat calc(100% - 100px) 30px, url(/img/about/available-bg02.png) no-repeat right 1210px/14.32vw, url(/img/fee/flow-bg01.png) no-repeat 50px calc(100% - 40px);
}
#sub-flow .ttl {
  position: relative;
}
#sub-flow .ttl::after {
  position: absolute;
  content: "";
}
#sub-flow .ttl {
  z-index: 1;
}
#sub-flow .ttl::after {
  width: 152px;
  height: 157px;
  top: -30px;
  right: calc(50% - 292px);
  background: url(/img/fee/fee-flow.png) no-repeat;
  background-size: 100%;
  z-index: -1;
}
#sub-flow .ttl-sub {
  text-align: center;
  margin-top: 15px;
}
#sub-flow .list {
  margin-top: 60px;
}
#sub-flow .list-item {
  display: flex;
  align-items: start;
  gap: 40px;
  width: 100%;
  padding: 20px 50px 20px 20px;
  background: url(/img/all/pt-box.png) left top;
  border: 1px solid #ff9696;
  border-radius: 20px;
  position: relative;
}
#sub-flow .list-item:nth-of-type(n + 2) {
  margin-top: 80px;
  position: relative;
}
#sub-flow .list-item:nth-of-type(n + 2)::before {
  position: absolute;
  content: "";
}
#sub-flow .list-item:nth-of-type(n + 2) {
  z-index: 1;
}
#sub-flow .list-item:nth-of-type(n + 2)::before {
  width: 21px;
  height: 40px;
  transform: translateX(-50%);
  left: 50%;
  top: -60px;
  background: url(/img/fee/flow-arw.png) no-repeat;
  background-size: 100%;
  z-index: -1;
}
#sub-flow .list-num {
  position: absolute;
  top: -20px;
  left: -10px;
}
#sub-flow .list-wrap {
  margin-top: 30px;
}
#sub-flow .list-img {
  flex-shrink: 0;
  border-radius: 20px;
}
#sub-flow .list-ttl {
  letter-spacing: 0.05em;
  padding-bottom: 15px;
  background: url(/img/fee/flow-border.png) no-repeat left bottom;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 28px;
  font-size: 2.8rem;
}
@media screen and (max-width: 767px) {
  #sub-flow .list-ttl {
    font-size: 21px;
    font-size: 2.1rem;
  }
}
#sub-flow .list-ttl::first-letter {
  color: #ff9696;
}
#sub-flow .list-txt {
  line-height: 1.875;
  margin-top: 25px;
}
#sub-flow .list-box {
  width: 100%;
  margin-top: 15px;
  padding: 25px 20px;
  background-color: rgba(253, 227, 228, 0.5);
  border-radius: 10px;
}
#sub-flow .list-box-ttl {
  text-align: center;
  letter-spacing: 0.05em;
  padding-bottom: 15px;
  border-bottom: 1px solid #ff9696;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  #sub-flow .list-box-ttl {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
#sub-flow .list-box-fle {
  gap: 90px;
  margin-top: 15px;
}
#sub-flow .list-box-list-item {
  line-height: 1.875;
  letter-spacing: 0.05em;
  font-weight: 500;
}
#sub-flow .list-box-list-item::first-letter {
  color: #ff9696;
}
#sub-flow .list-btm-txt {
  line-height: 1.875;
  margin-top: 15px;
  padding-bottom: 30px;
}

#sub-registration .bg {
  background: url(/img/top/case-bg-top.png) no-repeat center top/100%, url(/img/fee/registration-bg.jpg) no-repeat center/cover;
  overflow: hidden;
}
#sub-registration .ttl-sub {
  text-align: center;
  margin-top: 15px;
}
#sub-registration .wrap {
  width: 600px;
  margin-top: 60px;
  margin-left: auto;
  padding: 35px 40px;
  background-color: #fff;
  border-radius: 20px;
  position: relative;
}
#sub-registration .wrap::after {
  position: absolute;
  content: "";
}
#sub-registration .wrap {
  z-index: 1;
}
#sub-registration .wrap::after {
  width: 192px;
  height: 249px;
  top: -110px;
  right: -70px;
  background: url(/img/fee/registration-deco.png) no-repeat;
  background-size: 100%;
  z-index: -1;
}
#sub-registration .txt {
  line-height: 2.18;
}

/* =========================================
    sub  PC
    sub-case
========================================= */
#sub-case .bg {
  background: url(/img/case/case-bg01.png) no-repeat 40px 40px/40vw, url(/img/top/about-bg.png) no-repeat right top/14.32vw;
  position: relative;
}
#sub-case .bg::after {
  position: absolute;
  content: "";
}
#sub-case .bg {
  z-index: 1;
}
#sub-case .bg::after {
  width: 11.7vw;
  height: 32.5vw;
  left: 0;
  bottom: -21.5vw;
  background: url(/img/case/case-bg03.png) no-repeat;
  background-size: 100%;
  z-index: -1;
}
#sub-case .ttl-sub {
  text-align: center;
  margin-top: 15px;
  position: relative;
}
#sub-case .ttl-sub::before {
  position: absolute;
  content: "";
}
#sub-case .ttl-sub {
  z-index: 1;
}
#sub-case .ttl-sub::before {
  width: 84px;
  height: 72px;
  bottom: 4px;
  left: calc(50% - 223px);
  background: url(/img/top/case-ttl-deco01.png) no-repeat;
  background-size: 100%;
  z-index: -1;
}
#sub-case .list {
  flex-wrap: wrap;
  gap: 60px 80px;
  margin-top: 60px;
}
#sub-case .list-item {
  flex-basis: calc((100% - 80px) / 2);
  max-width: calc((100% - 80px) / 2);
}
#sub-case .list-img {
  width: 100%;
  height: 350px;
}
#sub-case .list-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#sub-case .list-img img {
  border-radius: 20px;
}
#sub-case .list-ttl {
  letter-spacing: 0.05em;
  line-height: 2;
  margin-top: 15px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #ff9696;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 22px;
  font-size: 2.2rem;
}
@media screen and (max-width: 767px) {
  #sub-case .list-ttl {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
#sub-case .list-btn {
  width: 105px;
  height: 30px;
  letter-spacing: 0.05em;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  margin-left: auto;
  padding-right: 40px;
  font-family: "Ribeye Marrow", serif;
  font-weight: 400;
  font-style: normal;
  position: relative;
}
#sub-case .list-btn::after {
  position: absolute;
  content: "";
}
#sub-case .list-btn {
  z-index: 1;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  #sub-case .list-btn {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
#sub-case .list-btn::after {
  width: 30px;
  height: 30px;
  transform: translateY(-50%);
  top: 50%;
  right: 0;
  background: url(/img/all/btn-ico-color.png) no-repeat;
  background-size: 100%;
  z-index: -1;
  transition: all 0.5s ease;
}
#sub-case .list-btn:hover::after {
  transform: translateY(-50%) scale(0.9);
}

#sub-case-detail .bg {
  background: url(/img/case/case-bg01.png) no-repeat 40px 40px/40vw, url(/img/top/about-bg.png) no-repeat right top/14.32vw;
  position: relative;
}
#sub-case-detail .bg::after {
  position: absolute;
  content: "";
}
#sub-case-detail .bg {
  z-index: 1;
}
#sub-case-detail .bg::after {
  width: 11.7vw;
  height: 32.5vw;
  left: 0;
  bottom: -21.5vw;
  background: url(/img/case/case-bg03.png) no-repeat;
  background-size: 100%;
  z-index: -1;
}
#sub-case-detail .container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
#sub-case-detail .img {
  width: 100%;
  height: 450;
  margin-top: 25px;
}
#sub-case-detail .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#sub-case-detail .img img {
  border-radius: 20px;
}
#sub-case-detail .txt {
  width: 100%;
  line-height: 1.875;
  margin-top: 25px;
}

/* =========================================
    sub  PC
    sub-company
========================================= */
#sub-sitter .bg {
  background: url(/img/case/case-bg01.png) no-repeat 40px 40px/40vw, url(/img/top/about-bg.png) no-repeat right top/14.32vw;
}
#sub-sitter .inner {
  position: relative;
}
#sub-sitter .inner::before {
  position: absolute;
  content: "";
}
#sub-sitter .inner {
  z-index: 1;
}
#sub-sitter .inner::before {
  width: 333px;
  height: 156px;
  top: 60px;
  right: 75px;
  background: url(/img/company/sitter-deco.png) no-repeat;
  background-size: 100%;
  z-index: -1;
}
#sub-sitter .ttl-sub {
  text-align: center;
  margin-top: 15px;
}
#sub-sitter .wrap {
  gap: 40px;
  margin-top: 47px;
}
#sub-sitter .wrap-img {
  flex-shrink: 0;
  margin-top: 10px;
  position: relative;
}
#sub-sitter .wrap-img::before {
  position: absolute;
  content: "";
}
#sub-sitter .wrap-img {
  z-index: 1;
}
#sub-sitter .wrap-img::before {
  width: 100%;
  height: 100%;
  top: 10px;
  left: -10px;
  background: url(/img/all/pt03.png) left top;
  border-radius: 20px;
  z-index: -1;
}
#sub-sitter .wrap-img img {
  border-radius: 20px;
}
#sub-sitter .wrap-ttl {
  letter-spacing: 0.05em;
  padding-bottom: 20px;
  background: url(/img/company/sitter-border.png) no-repeat left bottom;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 28px;
  font-size: 2.8rem;
}
@media screen and (max-width: 767px) {
  #sub-sitter .wrap-ttl {
    font-size: 21px;
    font-size: 2.1rem;
  }
}
#sub-sitter .txt {
  line-height: 2.18;
  margin-top: 30px;
}
#sub-sitter .txt p:nth-of-type(n + 2) {
  margin-top: 35px;
}
#sub-sitter .box {
  margin-top: 50px;
}
#sub-sitter .box-wrap {
  width: 520px;
  padding: 50px 20px;
  background-color: #fcf9ef;
  border-radius: 20px;
}
#sub-sitter .box-ttl {
  text-align: center;
  letter-spacing: 0.05em;
  padding-bottom: 10px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 22px;
  font-size: 2.2rem;
}
@media screen and (max-width: 767px) {
  #sub-sitter .box-ttl {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
#sub-sitter .box-ttl-pink {
  color: #ff9696;
  border-bottom: 1px solid #ff9696;
}
#sub-sitter .box-ttl-blue {
  color: #97d3dd;
  border-bottom: 1px solid #97d3dd;
}
#sub-sitter .list {
  margin-top: 25px;
  padding: 0 10px;
}
#sub-sitter .list-item {
  letter-spacing: 0.05em;
  line-height: 1.875;
  padding-left: 30px;
  font-weight: 500;
}
#sub-sitter .list-item:nth-of-type(n + 2) {
  margin-top: 10px;
}
#sub-sitter .list-item-pink {
  background: url(/img/company/sitter-ico01.png) no-repeat left 7px;
}
#sub-sitter .list-item-blue {
  background: url(/img/company/sitter-ico02.png) no-repeat left 7px;
}

#sub-info .bg {
  background: url(/img/all/wave-top.png) no-repeat center top/100%, url(/img/company/info-bg01.png) no-repeat left top, url(/img/company/info-bg02.png) no-repeat calc(100% - 50px) calc(100% - 40px), #e6f9f8;
}
#sub-info .ttl-sub {
  text-align: center;
  margin-top: 15px;
}
#sub-info .wrap {
  width: 100%;
  margin-top: 60px;
  padding: 60px;
  background-color: #fff;
  border: 1px solid #97d3dd;
  border-radius: 20px;
}

#sub-map .map {
  width: 100%;
  height: 400px;
}
#sub-map .map iframe {
  width: 100% !important;
  height: 100% !important;
  border: none;
}

/* =========================================
    sub  PC
    sub-contact  お問い合わせフォーム テンプレ
		他ページのtableなどデザインを併用する
========================================= */
#sub-method .txt {
  line-height: 2;
  text-align: center;
  margin-top: 55px;
}
#sub-method .wrap {
  width: 100%;
  max-width: 800px;
  height: 130px;
  margin: 75px auto 0;
  padding-left: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e6f9f8;
  border-radius: 5px;
  position: relative;
}
#sub-method .wrap::before {
  position: absolute;
  content: "";
}
#sub-method .wrap::before {
  width: 2px;
  height: 60px;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  background-color: #97d3dd;
}
#sub-method .work {
  width: 340px;
  margin-left: 80px;
}

#sub-contact .privacy {
  color: #97d3dd;
  border-bottom: 1px solid #97d3dd;
}

#contact-form .com-table01 {
  white-space: unset;
}
#contact-form .com-btn01 {
  display: flex;
  justify-content: center;
  margin: 50px auto 0;
  transition: all 0.5s ease;
}
#contact-form .com-btn01::after {
  display: none;
}
#contact-form .com-btn01:hover {
  transform: scale(0.95);
}

.contact-form-table {
  margin: 50px auto 0;
  width: 100%;
  max-width: 1080px;
  table-layout: fixed;
}
.contact-form-table th {
  width: 350px;
  padding: 15px;
  white-space: unset;
}
.contact-form-table td {
  padding: 15px;
  white-space: unset;
}
.contact-form-table td input {
  height: 25px;
  line-height: 25px;
  border: none;
  background-color: #f5f5f5;
}
.contact-form-table td textarea {
  border: none;
  background-color: #f5f5f5;
  resize: none;
}
.contact-form-table .sp-sm {
  font-size: 16px;
}

.select {
  display: inline-block;
  position: relative;
  border: 1px solid #eee;
  position: relative;
}
.select::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  transform: translateY(-50%);
  top: 50%;
  right: 20px;
  border-style: solid;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-top: 5px solid #eee;
  border-bottom: 0;
}
.select-list {
  width: 200px;
  padding: 11px 15px;
  border: none;
  cursor: pointer;
}

.privacy-check {
  font-size: 15px;
}

.required-mark {
  letter-spacing: 0.04em;
  color: #4aafa3;
  background-color: unset;
  font-size: 12px;
  font-size: 1.2rem;
}

.contact-recaptcha-wrap {
  width: 304px;
  margin: 50px auto 0;
}

.contact-submits-wrap {
  margin-top: 25px;
}
.contact-submits-wrap .back-btn::before {
  display: none;
}

/*==================================================
 入力フィールド
================================================== */
select,
textarea,
input[type=tel],
input[type=text],
input[type=email],
input[type=url] {
  width: 100%;
  max-width: 100%;
  padding: 15px;
  font-size: 16px;
  border: 1px solid #dfdfdf;
  border-radius: 2px;
  box-shadow: 0 1px 1px rgba(150, 150, 150, 0.1) inset;
  box-sizing: border-box;
}

select {
  padding: 7px 15px;
}

textarea {
  width: 100%;
  resize: vertical;
}

/* ボタン
-------------------------------------------------- */
input[type=button],
input[type=submit],
button {
  border: none;
  -webkit-appearance: none;
  /* Safariにのみ適用するスタイル */
  transition: all 0.3s ease;
}

input[type=button]:hover,
input[type=submit]:hover {
  opacity: 0.8;
  cursor: pointer;
}

input[type=button][disabled],
input[type=submit][disabled] {
  opacity: 0.4;
  pointer-events: none;
}

/* チェックボックス・ラジオボタン
-------------------------------------------------- */
input[type=radio],
input[type=checkbox] {
  display: inline-block;
  margin-right: 6px;
}

input[type=radio] + label,
input[type=checkbox] + label {
  position: relative;
  display: inline-block;
  line-height: 30px;
  cursor: pointer;
}

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

input[type=radio] + label,
input[type=checkbox] + label {
  padding: 0 0 0 24px;
}

input[type=radio] + label::before,
input[type=checkbox] + label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  box-sizing: border-box;
  display: block;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  background: #fff;
}

input[type=radio] + label::before {
  border: 2px solid #ccc;
  border-radius: 30px;
}

input[type=checkbox] + label::before {
  border: 2px solid #ccc;
}

input[type=radio]:checked + label::after,
input[type=checkbox]:checked + label::after {
  content: "";
  position: absolute;
  top: 50%;
  box-sizing: border-box;
  display: block;
}

input[type=radio]:checked + label::after {
  left: 5px;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  background: #ff900e;
  border-radius: 8px;
}

input[type=checkbox]:checked + label::after {
  left: 3px;
  width: 16px;
  height: 8px;
  margin-top: -8px;
  border-left: 3px solid #ff900e;
  border-bottom: 3px solid #ff900e;
  transform: rotate(-45deg);
}

input[type=checkbox] {
  display: none; /* デフォルトチェックボックスを完全に非表示 */
}

/*==================================================
	テーブル
================================================== */
/* スマホ表示時にはテーブルを縦向きにする */
@media screen and (max-width: 768px) {
  .contact-form-table,
  .contact-form-table tbody,
  .contact-form-table tr,
  .contact-form-table th,
  .contact-form-table td {
    width: auto;
    display: block;
  }
}
/* ご住所だけ2段なのでマージンを開ける */
input[name="items[address]"] {
  margin-top: 8px;
}

/* 「不正な送信です」「時間を空けて再度送信ください」などのセキュリティエラー文 */
.sec-error-text {
  line-height: 1.5em;
  margin-top: 50px;
  padding: 40px 10px;
  text-align: center;
  color: #fff;
  font-size: 20px;
  background: #ff900e;
}

.sec-error-link {
  margin-top: 30px;
  text-align: center;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .sec-error-text {
    padding: 30px 10px;
    font-size: 4vw;
  }
  .sec-error-link {
    font-size: 5vw;
  }
}
/* 「任意」「必須」マーク */
.optional-mark,
.required-mark {
  margin-top: 5px;
  padding: 2px 10px;
  color: #fff;
  float: right;
  font-size: 14px;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .optional-mark,
  .required-mark {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.optional-mark {
  background: #3498db;
}

.required-mark {
  background: #ff900e;
}

/* 「~が入力されていません」などの未記入エラー文 */
.error-text {
  margin: 0 0 4px;
  color: #ff900e;
}

/* 送信・確認ボタン */
.contact-submits-wrap {
  text-align: center;
}

/* プライバシーポリシー */
.inline-privacy-policy {
  height: 350px;
  margin: 16px 0;
  border: 1px solid #dfdfdf;
  background: #fff;
}

.inline-privacy-policy-inner {
  width: 100%;
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  display: inline-block;
}

.inline-privacy-policy iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/*==================================================
	日付選択フォーム
================================================== */
.date-list {
  padding-left: inherit;
}

.date-list li {
  list-style: none;
  margin-bottom: 15px;
}

.date-list li p {
  margin-bottom: 5px;
}

/*==================================================
	画像アップロードフォーム
================================================== */
.upload-item-wrap {
  font-size: 13px;
  overflow: hidden;
}

.upload-item-wrap input[type=file] {
  display: none;
}

/* アップされた画像のサムネイル */
.upload-item-wrap .thumb {
  width: 220px;
  height: 220px;
  margin: 0 8px 0 0;
  position: relative;
  overflow: hidden;
  float: left;
}

.upload-item-wrap .thumb img {
  max-width: none;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

/*選択・削除ボタン  */
.upload-item-wrap .ancion-btn-wrap {
  margin-top: 10px;
  float: left;
}

.upload-item-wrap .ancion-btn {
  margin: 0 0 8px;
  width: 110px;
  line-height: 35px;
  text-align: center;
  color: #fff;
  border-radius: 4px;
  background: #e6e6e6;
  display: block;
}

.upload-item-wrap .select-file {
  background: #2ecc71;
}

.upload-item-wrap .deselect-file {
  background: #ff900e;
}

.upload-item-wrap .ancion-btn:hover {
  cursor: pointer;
}

/*添付ファイルの注意文  */
.upload-notice {
  margin-top: 10px;
  font-size: 0.8em;
}

/* =========================================
			top  PC
			top-privacy
========================================= */
.privacy-inner {
  padding-top: 30px;
}
.privacy-ttl {
  margin: 0 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #97d3dd;
  font-size: 24px;
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .privacy-ttl {
    font-size: 20px;
    font-size: 2rem;
  }
}
.privacy .inline-privacy-policy-inner {
  margin-top: 14px;
  box-sizing: border-box;
  border: 1px solid #97d3dd;
  background-color: #fff;
}
.privacy iframe {
  width: 100%;
  height: 265px;
}
.privacy-box:nth-of-type(n + 2) {
  margin-top: 35px;
}
.privacy-box p:first-of-type {
  margin-top: 10px;
}
.privacy-box input {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
}
.privacy-box label {
  font-size: 14px;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .privacy-box label {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
.privacy-box-img {
  margin-top: 15px;
}
.privacy-box-btn {
  width: 250px;
  height: 60px;
  margin-top: 46px;
  line-height: 60px;
  letter-spacing: 0.2em;
  color: #e6f9f8;
  background-color: #ff9696;
  position: relative;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .privacy-box-btn {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.privacy-box-btn::before {
  position: absolute;
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  top: 27px;
  right: 30px;
  transform: rotate(45deg);
  border-top: 1px solid #e6f9f8;
  border-right: 1px solid #e6f9f8;
}

.privacy-box .list-item {
  position: relative;
  padding-left: 15px;
}
.privacy-box .list-item::before {
  position: absolute;
  content: "・";
  left: 0;
}

/* =========================================
    sub  PC
    news テンプレ
========================================= */
#sub-news .tag-list {
  flex-wrap: wrap;
}
#sub-news .current {
  border-bottom: none;
}
#sub-news .com-tag-list {
  justify-content: left;
}
#sub-news .bg {
  background-color: #fbf8e7;
}
#sub-news .container {
  margin-top: 50px;
}
#sub-news .com-news-post-item:nth-of-type(n + 2) {
  margin-top: 50px;
}
#sub-news .com-news-post-link {
  display: block;
  padding: 50px 30px;
  color: #34312a;
  background: url(/img/all/pt-box.png) left top, #fff;
  border: 2px solid #ff9696;
  border-radius: 20px;
}
#sub-news .com-news-post-con {
  width: 100%;
}
#sub-news .com-news-post-con-sm {
  max-width: 725px;
}
@media screen and (max-width: 767px) {
  #sub-news .com-news-post-link {
    padding: 5%;
  }
  #sub-news .com-news-post-img {
    width: 25%;
  }
  #sub-news .com-news-post-con-sm {
    width: 68%;
  }
}
#sub-news .detail .com-news-post-link {
  padding: 15px;
}
#sub-news .detail .com-news-post-img {
  margin: 0 auto 30px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #sub-news .detail .com-news-post-img {
    width: 100%;
  }
}
#sub-news .news-post article:nth-of-type(n + 2) {
  border-top: 1px solid #f0f0f0;
}
#sub-news .news-post article:nth-of-type(n + 2) a {
  padding-top: 23px;
}
#sub-news .news-post-link {
  display: block;
  padding-bottom: 17px;
  position: relative;
  left: 0;
}
@media screen and (min-width: 768px) {
  #sub-news .news-post-link:hover {
    left: 5px;
  }
}
#sub-news .news-post-txt {
  margin-top: 15px;
}
#sub-news .news-post-flex {
  margin-top: 15px;
}
#sub-news .news-post-time {
  display: inline-block;
  flex-shrink: 0;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-right: 5px;
  padding-top: 9px;
  color: #939393;
  position: relative;
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  #sub-news .news-post-time {
    font-size: 17px;
    font-size: 1.7rem;
  }
}
#sub-news .news-post-tag {
  display: flex;
  margin-left: 30px;
  flex-wrap: wrap;
  align-items: flex-start;
  border-left: 1px solid #ff9696;
  line-height: 1.6;
}
#sub-news .news-post-tag-txt {
  padding: 0 15px;
  border-right: 1px solid #ff9696;
  text-align: center;
  color: #ff9696;
  letter-spacing: 0.1em;
  flex-shrink: 0;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  #sub-news .news-post-tag-txt {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
#sub-news .news-post-ttl {
  width: 100%;
  letter-spacing: 0.1em;
  color: #34312a;
  line-height: 2;
  transition: all 0.3s ease;
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  #sub-news .news-post-ttl {
    font-size: 17px;
    font-size: 1.7rem;
  }
}

/* =========================================
    sub  PC
    detail
========================================= */
#news-detail .com-news-post-con {
  padding: 35px;
  background: url(/img/all/pt-box.png) left top, #fff;
  border: 2px solid #ff9696;
  border-radius: 20px;
}

/* =========================================
  タグテンプレート
========================================= */
.tag-select-box {
  position: relative;
  width: 40%;
  margin: 20px 0 20px auto;
  max-width: 230px;
  background-color: #fff;
}
.tag-select-box::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  right: 0.8em;
  width: 0;
  height: 0;
  padding: 0;
  content: "";
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #ff9696;
  pointer-events: none;
}
.tag-select-box #tag-select {
  width: 100%;
  padding: 5% 20% 5% 5%;
  box-sizing: border-box;
  font-size: 1.2rem;
  margin-left: auto;
  display: block;
  border: none;
  border-bottom: 2px solid #ff9696;
  cursor: pointer;
  border-radius: 0;
  background: none;
  color: #97d3dd;
  font-weight: 700;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.tag-select-box #tag-select option {
  padding: 10px;
  cursor: pointer;
  box-sizing: border-box;
  color: #000;
}

/* =========================================
  タグセレクト
	ボタンテンプレート
========================================= */
#tag-btn-list {
  margin-top: 35px;
  padding: 28px 30px;
  background: url(/img/all/pt-box.png) left top, #fff;
  border: 2px solid #ff9696;
  border-radius: 20px;
}
#tag-btn-list .tag-txt {
  flex-shrink: 0;
  margin-top: 5px;
  margin-right: 40px;
  color: #34312a;
}
#tag-btn-list .tag-list {
  width: 100%;
  flex-wrap: wrap;
  gap: 10px;
}
#tag-btn-list .tag-list-link {
  min-width: 110px;
  text-align: center;
  padding: 5px 30px;
  color: #fff;
  background-color: #97d3dd;
  border-radius: 10px;
}
#tag-btn-list .tag-current {
  color: #ff9696;
  background-color: #fff;
  border: 1px solid #ff9696;
}

/*	pagenation  PC
------------------------------------ */
.pagenation {
  display: flex;
  margin: 50px auto 0;
  justify-content: center;
  align-items: center;
}
.pagenation li {
  display: inline-block;
  width: 42px;
  height: 42px;
  text-align: center;
  background: #fff;
  letter-spacing: 0.05em;
  line-height: 40px;
  position: relative;
}
.pagenation li:nth-of-type(n + 2) {
  margin-left: 15px;
}
.pagenation li {
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .pagenation li {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.pagenation a,
.pagenation span {
  display: block;
}
.pagenation a {
  color: #97d3dd;
}
.pagenation .current-page {
  color: #fff;
  background: #97d3dd;
  pointer-events: none;
}
.pagenation .next-li,
.pagenation .back-li {
  background: none;
  border: none;
}
.pagenation .back-arrow,
.pagenation .next-arrow {
  display: block;
  height: 100%;
}
.pagenation-arrow {
  width: 100%;
  height: 100%;
}
.pagenation-arrow::before {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.pagenation-arrow.next {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7.5px 0 7.5px 15px;
  border-color: transparent transparent transparent #97d3dd;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.pagenation-arrow.back {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7.5px 15px 7.5px 0;
  border-color: transparent #97d3dd transparent transparent;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

/*	detail pagenation  PC
------------------------------------ */
.pagenation-inner {
  width: 100%;
  max-width: 360px;
  margin: 50px auto 0;
}

.data-nav {
  position: relative;
  text-align: center;
}
.data-nav a {
  display: inline-block;
  height: 50px;
  line-height: 50px;
  transition: all 0.3s ease;
}
.data-nav a:hover {
  opacity: 0.7;
}
.data-nav .next a,
.data-nav .back a {
  background: none !important;
}

.to-works-btn {
  width: 100%;
  max-width: 120px;
  background: #97d3dd;
  text-align: center;
  letter-spacing: 0.05em;
  color: #fff;
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .to-works-btn {
    font-size: 17px;
    font-size: 1.7rem;
  }
}

.arrow-btn {
  width: 50px;
  position: absolute;
  bottom: 0;
}
.arrow-btn::before {
  content: "";
  display: inline-block;
  width: 50px;
  height: 50px;
  margin: auto;
  color: #fff;
  background: #97d3dd;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .arrow-btn::before {
    font-size: 17px;
    font-size: 1.7rem;
  }
}

.back-btn {
  left: 0;
}
.back-btn::before {
  content: "←";
}

.next-btn {
  right: 0;
}
.next-btn::before {
  content: "→";
}

/* =========================================
    sub  PC
    sub-site
========================================= */
#sub-site .list {
  width: 90%;
  margin: 50px auto 0;
}
#sub-site .list-link {
  width: 100%;
  border-bottom: 1px solid #97d3dd;
  color: #34312a;
  display: block;
  padding: 15px 30px;
  box-sizing: border-box;
  position: relative;
}
@media screen and (max-width: 767px) {
  #sub-site .list-link {
    padding: 12px 25px;
  }
}
#sub-site .list-link::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin: auto;
  border-style: solid;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 9px solid #97d3dd;
  border-right: 0;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  left: 5px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  #sub-site .list-link::before {
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 7px solid #97d3dd;
  }
}
@media screen and (min-width: 768px) {
  #sub-site .list-link:hover::before {
    left: 10px;
  }
}

/* =========================================
    sub  PC
    sub-complete
========================================= */
#sub-complete .container-box {
  text-align: center;
  margin-top: 50px;
}
#sub-complete .link {
  margin: 50px auto 0;
}

/* =========================================
    sub  PC
    sub-privacy
========================================= */
#sub-privacy .container {
  margin-top: 50px;
}

/* =========================================
    sub  PC
    404 error
========================================= */
#sub-error .ttl {
  text-align: center;
}
#sub-error .txt {
  width: 100%;
  text-align: center;
  margin: 50px auto 0;
}
#sub-error .link {
  text-decoration: underline;
  color: #97d3dd;
}