@charset "UTF-8";
/*アニメーションCSS*/
/*ボーダーが真ん中から左右に広がる*/
/*ボタンの背景が横から出てくる*/
#wrapper {
  min-width: 1280px;
}

/*Flexbox */
.flex {
  display: -webkit-box;
  display: flex;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/*折り返し */
.flx-wrp {
  flex-wrap: wrap;
}

/*逆順 */
.flx-rr {
  flex-direction: row-reverse;
}

/*積み重なるように配置 */
.flx-column {
  flex-direction: column;
}

/*水平方向の揃え */
/*初期値 */
.flx-strt {
  -webkit-justify-content: start;
  justify-content: start;
}

/*並列で均等配置（左右隙間なし=space-between） */
.flx-btw {
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

/*並列で均等配置（左右隙間あり=space-around） */
.flx-ard {
  -webkit-justify-content: space-around;
  justify-content: space-around;
}

/*水平揃え　末揃え */
.flx-end {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

/*水平揃え　中央揃え */
.flx-center {
  -webkit-justify-content: center;
  justify-content: center;
}

/*垂直方向の揃え */
/*水平揃え　上揃え */
.flx-alitem-strt {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

/*水平揃え　高さ揃え */
.flx-alitem-strch {
  -webkit-align-items: stretch;
  align-items: stretch;
}

/*水平揃え　縦・横の中央揃え */
.flx-alitem-c {
  -webkit-align-items: center;
  align-items: center;
}

/*水平揃え　下揃え */
.flx-alitem-end {
  -webkit-align-items: flex-end;
  align-items: flex-end;
}

/*水平揃え　ベースライン揃え */
.flx-alitem-base {
  -webkit-align-items: baseline;
  align-items: baseline;
}

/*複数行にした揃え方 */
/*初期値 */
.flx-alcont-strt {
  -webkit-align-content: flex-start;
  align-content: flex-start;
}

/*親要素の開始位置から配置。上揃え */
.flx-alcont-strch {
  -webkit-align-content: stretch;
  align-content: stretch;
}

/*親要素の終点から配置。下揃え */
.flx-alcont-end {
  -webkit-align-content: flex-end;
  align-content: flex-end;
}

/*中央揃え */
.flx-alcont-c {
  -webkit-align-content: center;
  align-content: center;
}

/*最初と最後の子要素を上下の端に配置し、残りの要素は均等に間隔をあけて配置 */
.flx-alcont-s-btw {
  -webkit-align-content: space-between;
  align-content: space-between;
}

/*上下端にある子要素も含め、均等に間隔をあけて配置 */
.flx-alcont-s-ard {
  -webkit-align-content: space-around;
  align-content: space-around;
}

/* 並び順変更 */
.flex-order-1 {
  order: 1;
}

.flex-order-2 {
  order: 2;
}

/*pcスタイル */
.inbox {
  width: 1080px;
  margin: 0 auto;
  box-sizing: border-box;
}

.pc-none {
  display: none;
}

.current a {
  color: var(--main-color);
}

a[href*="tel:"] {
  pointer-events: none;
}

/*-------▽▽フォント▽▽----------*/
body {
  font-size: 1.6rem;
  line-height: 1.5;
}

/*--------△△フォント△△---------*/
/*======================================================
 * ▽▽---共通スタイル---▽▽
 * =======================================================*/
html {
  scroll-padding: 0;
}

section {
  padding: 12rem 0;
}

.dl-item {
  display: flex;
}

.com-txt {
  font-size: 1.7rem;
  line-height: 2.23;
}
.com-txt:not(:last-of-type) {
  margin-bottom: 3rem;
}

.com-txt-02 {
  font-size: 1.6rem;
  line-height: 2.23;
}
.com-txt-02:not(:last-of-type) {
  margin-bottom: 3rem;
}

.com-btn {
  display: grid;
  place-items: center;
  border-radius: 50vw;
  width: 550px;
  height: 6rem;
  margin-top: 5rem;
  font-size: 2rem;
  background: var(--main-color);
  color: #fff;
}
.com-btn:link, .com-btn:visited {
  color: var(--white);
}
.com-btn span {
  background: url("../img/common/btn-arw.png") left center/2.4rem no-repeat;
  padding-left: 3.5rem;
  box-sizing: border-box;
}
.com-btn:hover {
  background: var(--accent-color);
  opacity: 1;
  transform: scale(0.95);
}

.contact-btn {
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 0.5rem;
  border: 1px solid var(--bd-color);
  width: 300px;
  height: 9rem;
  background: #fff;
  position: relative;
}
.contact-btn::after {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  position: absolute;
  background: url("../img/common/arw-btn-02.png") center/contain no-repeat;
  inset: 0 1rem 0 auto;
  margin: auto 0;
}
.contact-btn:hover {
  transform: scale(0.97);
}

.flex > .ttl01 {
  width: 100%;
}

.ttl01 {
  display: grid;
  justify-items: center;
  text-align: center;
  margin-bottom: 5rem;
  gap: 1rem;
}
.ttl01 .en {
  color: var(--main-color);
  font-size: 2.8rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
.ttl01 .ja {
  font-size: 4.2rem;
  font-family: var(--ttl-font);
}
.ttl01 .ja small {
  font-size: 0.9em;
}
.ttl01.txt-le {
  text-align: left;
  justify-items: start;
  margin-bottom: 4rem;
}

.ttl02 {
  font-size: 3.2rem;
  font-family: var(--ttl-font);
}

.ttl03 {
  font-size: 2.8rem;
  font-family: var(--ttl-font);
}

.ttl04 {
  font-size: 2.4rem;
  font-family: var(--ttl-font);
}

.ttl05 {
  font-size: 2.2rem;
  font-family: var(--ttl-font);
}

#top-page .ttl02 {
  font-size: 3.6rem;
  font-family: var(--ttl-font);
}
#top-page .ttl03 {
  font-size: 3rem;
  font-family: var(--ttl-font);
}
#top-page .ttl04 {
  font-size: 2.8rem;
  font-family: var(--ttl-font);
}
#top-page .ttl05 {
  font-size: 2rem;
  font-family: var(--ttl-font);
}

.ttl-deco-01 {
  padding-left: 1.5rem;
  position: relative;
  line-height: 1;
  color: var(--main-color);
}
.ttl-deco-01::before {
  content: "";
  display: block;
  width: 3px;
  height: 100%;
  position: absolute;
  background: var(--sub-color);
  inset: 0 auto 0 0;
  border-radius: 50vw;
}

.txt-main {
  font-size: 1.7rem;
}

.txt-cap {
  font-size: 1.4rem;
}

.com-tel {
  display: grid;
  justify-items: center;
}
.com-tel a {
  background: url("../img/common/tel-icon.png") left center/auto no-repeat;
  padding-left: 30px;
  box-sizing: border-box;
}

.com-kado {
  border-radius: 1.5rem;
}
.com-kado > img {
  border-radius: 1.5rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.tag-list .tag {
  padding: 0 5px;
  line-height: 1;
}

time {
  line-height: 1;
  padding-right: 1rem;
  border-right: 1px solid var(--font-color);
}

.com-sdw {
  box-shadow: 3px 3px 16px #e4ddda;
}

.bg-01 {
  position: relative;
  background: var(--bg-pt);
  z-index: 10;
}
.bg-01::before {
  content: "";
  display: block;
  width: 100%;
  height: 5rem;
  position: absolute;
  background: url("../img/common/wave-top.png") center/contain no-repeat;
  inset: -4.5rem 0 auto 0;
  background-size: 100% 100%;
  z-index: -1;
}
.bg-01::after {
  content: "";
  display: block;
  width: 100%;
  height: 5rem;
  position: absolute;
  background: url("../img/common/wave-btm.png") center/contain no-repeat;
  inset: auto 0 -4.5rem 0;
  background-size: 100% 100%;
  z-index: -1;
}

.bg-02 {
  background: url(../img/common/ashi-le.png) top left 5rem/17% no-repeat, url(../img/common/ashi-ri.png) bottom right 5rem/17% no-repeat;
}

.txt-box-01 {
  width: 550px;
}

/*infotableスタイル*/
.com-desc-tbl {
  width: 540px;
}
.com-desc-tbl .dl-item {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding: 1.5rem 0;
}
.com-desc-tbl .dl-item:not(:last-child) {
  border-bottom: 1px solid var(--bd-color);
}
.com-desc-tbl .dl-item dt {
  width: 190px;
  padding-left: 1.4rem;
  border-left: 3px solid var(--main-color);
  color: var(--font-color);
}
.com-desc-tbl .dl-item dd {
  width: 335px;
}

.map {
  width: 500px;
  height: 52rem;
}

/*======================================================
 * △△---共通スタイル---△△
 * =======================================================*/
/*---------------------------▽▽---heder---▽▽------------------------*/
#header {
  width: 100%;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 100;
  padding: 10px 30px;
}
#header .hd-logo img {
  display: block;
}
#header .hd-right .hd-top {
  gap: 35px;
}
#header .hd-right #nav .nav-list {
  gap: 35px;
}
#header .hd-right #nav .nav-list .nav-item {
  font-size: 1.7rem;
  font-weight: 700;
  position: relative;
}
#header .hd-right #nav .nav-list .nav-item > a {
  padding-bottom: 5px;
  opacity: 1;
  position: relative;
}
#header .hd-right #nav .nav-list .nav-item > a::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: var(--main-color);
  position: absolute;
  bottom: 0;
  transform: scale(0);
  transition: 0.5s;
}
#header .hd-right #nav .nav-list .nav-item > a:hover::after {
  transform: scale(1);
}

/*---------------------------△△---heder---△△------------------------*/
/*---------------------------▽▽---MV---▽▽------------------------*/
.top-mv {
  height: 43.75vw;
  min-height: 560px;
  background: url(../img/top/mv-le.png) left/18% 100% no-repeat, url(../img/top/mv-img.jpg) center/cover;
}
.top-mv .mv-ct-01 {
  width: 29%;
  margin-left: auto;
  margin-right: 2%;
}
.top-mv .mv-ct-02 {
  width: 30%;
  margin-left: 7.8%;
}

/*---------------------------△△---MV---△△------------------------*/
/*--------▽▽---NEWS---▽▽---------- */
#top-news .inbox {
  position: relative;
}
#top-news .inbox::after {
  content: "";
  display: block;
  width: 20rem;
  height: auto;
  aspect-ratio: 0.83;
  position: absolute;
  background: url("../img/common/deco-chilla-01.png") center/contain no-repeat;
  bottom: -6rem;
  left: -20rem;
  z-index: 20;
}
#top-news .inbox .ttl01 {
  margin-top: 3rem;
  padding: 0;
  display: grid;
  align-items: center;
  width: 24rem;
}
#top-news .inbox .ttl01 .ja {
  font-size: 5rem;
}
#top-news .inbox .news-list {
  width: 790px;
  display: flex;
  gap: 3.5rem;
}
#top-news .inbox .news-list .news-item a {
  display: flex;
  flex-wrap: wrap;
  width: 24rem;
}
#top-news .inbox .news-list .news-item a:hover {
  transform: translateY(-10px);
}
#top-news .inbox .news-list .news-item a .com-img {
  width: 100%;
  aspect-ratio: 1;
  margin-bottom: 2rem;
}
#top-news .inbox .news-list .news-item a time {
  line-height: 1;
}
#top-news .inbox .news-list .news-item a h4 {
  width: 100%;
}
#top-news .inbox .news-list .news-item a .txt-box {
  width: 100%;
  gap: 1rem;
  font-size: 1.7rem;
}
#top-news .inbox .com-btn {
  width: 24rem;
  position: absolute;
  bottom: 5rem;
  left: 0;
  font-size: 1.7rem;
}

/*------------△△---NEWS---△△---------*/
#top-concept {
  padding-bottom: 19rem;
  position: relative;
}
#top-concept::after {
  content: "";
  display: block;
  width: 12.5%;
  height: auto;
  aspect-ratio: 1.07;
  position: absolute;
  background: url("../img/common/deco-chilla-02.png") center/contain no-repeat;
  bottom: 4rem;
  right: 2.6%;
  z-index: 20;
}
#top-concept .inbox {
  min-height: 690px;
  z-index: 30;
}
#top-concept .inbox .img-box {
  position: absolute;
  bottom: 0;
  left: -120px;
}
#top-concept .inbox .txt-box-01 {
  margin-left: auto;
  width: 560px;
}
#top-concept .inbox .ttl04 {
  margin-bottom: 3rem;
}
#top-concept .inbox .com-txt {
  font-size: 1.7rem;
}

#top-chinchilla::before {
  background-image: url(../img/top/ccpt-bg.png);
  height: 19rem;
  inset: -18.5rem 0 auto 0;
}
#top-chinchilla .inbox {
  position: relative;
}
#top-chinchilla .inbox::before {
  content: "";
  display: block;
  width: 36.2rem;
  height: auto;
  aspect-ratio: 1.21;
  position: absolute;
  background: url("../img/top/match-le.png") center/contain no-repeat;
  top: 16rem;
  left: -40rem;
}
#top-chinchilla .inbox::after {
  content: "";
  display: block;
  width: 36.7rem;
  height: auto;
  aspect-ratio: 0.84;
  position: absolute;
  background: url("../img/top/match-ri.png") center/contain no-repeat;
  bottom: -2rem;
  right: -42rem;
}
#top-chinchilla .ttl01 {
  position: relative;
}
#top-chinchilla .ttl01::after {
  content: "";
  display: block;
  width: 14rem;
  height: auto;
  aspect-ratio: 0.85;
  position: absolute;
  background: url("../img/common/deco-girl.png") center/contain no-repeat;
  top: -6rem;
  right: 30rem;
}
#top-chinchilla .com-btn {
  margin: 7rem auto 0;
}
#top-chinchilla .chilla-li {
  margin-top: 7rem;
  gap: 3rem;
}
#top-chinchilla .chilla-li li {
  width: 340px;
}
#top-chinchilla .chilla-li li a {
  display: block;
  width: 100%;
}
#top-chinchilla .chilla-li li .com-img {
  width: 100%;
  aspect-ratio: 1;
}

#top-other ul li a {
  position: relative;
  width: 340px;
  display: grid;
  gap: 2rem;
}
#top-other ul li a .ttl04 {
  position: absolute;
  display: grid;
  place-items: center;
  width: 100%;
  height: 20rem;
  z-index: 30;
}
#top-other ul li a .ttl05 {
  min-height: 6rem;
  display: grid;
  align-content: center;
}
#top-other ul li a .com-txt-02 {
  padding: 0 2.5rem 3rem;
}
#top-other ul li a .img-box {
  height: 20rem;
}
#top-other ul li a .img-box img {
  width: 100%;
  transition: all 0.3s;
}
#top-other ul li a:hover {
  box-shadow: none;
  opacity: 1;
  transform: scale(0.98);
}
#top-other ul li a:hover .img-box {
  overflow: hidden;
}
#top-other ul li a:hover .img-box img {
  transform: translateX(-50%) translateY(-50%) scale(1.1);
}

#top-contact ul {
  gap: 5rem;
}
#top-info {
  position: relative;
}
#top-info::before {
  content: "";
  display: block;
  width: 17.7%;
  height: auto;
  aspect-ratio: 4.03;
  position: absolute;
  background: url("../img/common/deco-car.png") center/contain no-repeat;
  bottom: 0;
  left: 3%;
}
#top-info::after {
  content: "";
  display: block;
  width: 21.3%;
  height: auto;
  aspect-ratio: 1.01;
  position: absolute;
  background: url("../img/top/info-deco-rb.png") center/contain no-repeat;
  bottom: 0;
  right: 0;
}
#top-info .inbox {
  position: relative;
}
#top-info .inbox::before {
  content: "";
  display: block;
  width: 17.5rem;
  height: auto;
  aspect-ratio: 0.44;
  position: absolute;
  background: url("../img/common/deco-kikyu.png") center/contain no-repeat;
  top: 0;
  left: -27rem;
}

.side-btn {
  position: fixed;
  z-index: 100;
  bottom: 130px;
  right: 5px;
  width: 280px;
  height: 7rem;
  font-size: 2rem;
}
.side-btn::before {
  content: "";
  display: block;
  width: 110px;
  height: auto;
  aspect-ratio: 1.07;
  position: absolute;
  background: url("../img/common/side-deco.png") center/contain no-repeat;
  inset: -92px 0 auto 0;
  margin: 0 auto;
}

.pagetop {
  position: fixed;
  z-index: 100;
  right: 25px;
  bottom: 40px;
  z-index: 200;
}

#footer {
  padding: 7rem 0 20rem;
  position: relative;
}
#footer .ft-area {
  gap: 2rem 0;
}
#footer .ft-area .ft-le {
  width: 50%;
  display: grid;
  justify-items: start;
  gap: 3.5rem;
}
#footer .ft-area .ft-le .logo-box {
  gap: 5rem;
}
#footer .ft-area .ft-le .contact-btn {
  border-radius: 50vw;
  width: 22rem;
  height: 6rem;
  font-weight: 700;
}
#footer .ft-area .ft-le .contact-btn::after {
  content: none;
}
#footer .ft-area .ft-ri {
  width: 50%;
  gap: 4rem;
}
#footer .ft-area .ft-ri .nav-list {
  display: grid;
  gap: 1.5rem;
}
#footer .ft-area .ft-ri .nav-list .nav-item {
  line-height: 1;
}
#footer .copyright {
  width: 100%;
  text-align: center;
  font-size: 1.2rem;
}

/*==========================================
 * -▽▽---下層ページ---▽▽
 * ===========================================*/
#about-greeting .inbox .txt-box {
  width: 515px;
}

#about-feature {
  background: url(../img/about/deco-le.png) top 362px left 11%/9% no-repeat, url(../img/about/deco-ri.png) bottom 305px right 14%/6% no-repeat, url(../img/about/deco-lb.png) bottom left 7.8%/26% no-repeat, url(../img/about/deco-rb.png) bottom right 9.5%/16% no-repeat;
}
#about-feature .inbox {
  position: relative;
}
#about-feature .inbox::before {
  content: "";
  display: block;
  width: 17.5rem;
  height: auto;
  aspect-ratio: 0.44;
  position: absolute;
  background: url("../img/common/deco-kikyu.png") center/contain no-repeat;
  top: 0;
  right: -22rem;
}
#about-feature ul {
  gap: 5rem 0;
}
#about-feature ul li {
  position: relative;
  width: 515px;
  padding-top: 3.5rem;
}
#about-feature ul li .ttl02 {
  font-size: 3rem;
}
#about-feature ul li .ttl02 .num {
  line-height: 1;
  position: absolute;
  inset: -2rem 0 auto 0;
  margin: 0 auto;
  font-size: 3.2rem;
}
#about-feature ul li .com-txt {
  padding: 2rem 3.5rem 3.5rem;
}

.com-dl div {
  margin-top: 3rem;
}
.com-dl div dt {
  margin-bottom: 2rem;
  line-height: 1;
}
.com-dl .pdf {
  height: 20rem;
  width: 100%;
}

#about-service {
  background: url(../img/common/ashi-wt-le.png) bottom 100rem left 8.5rem/17% no-repeat, url(../img/common/ashi-wt-ri.png) top 60rem right 8.5rem/17% no-repeat, var(--bg-pt);
}
#about-service .srv-li {
  gap: 5rem;
}
#about-service .srv-li > li .ttl02 {
  padding: 2rem;
}
#about-service .srv-li > li .srv-box {
  padding: 7rem;
}
#about-service .srv-li > li .srv-box > .flex .com-txt {
  width: 490px;
}
#about-service .srv-li > li .srv-box .com-btn {
  margin: 4rem auto 0;
}
#about-service .srv-li > li .srv-box .bg-pt {
  margin-top: 5rem;
  padding: 7rem;
}
#about-service .srv-li > li .srv-box .recom-li {
  margin-top: 3rem;
  gap: 5rem 3.2rem;
}
#about-service .srv-li > li .srv-box .recom-li > li {
  width: 245px;
}
#about-service .srv-li > li .srv-box .recom-li > li .com-kado {
  margin-bottom: 2rem;
  width: 100%;
  aspect-ratio: 1.11;
}
#about-service .srv-li > li .srv-box .com-dl div {
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--bd-color);
}

.com-bd-li {
  display: grid;
  gap: 7rem;
}
.com-bd-li > li {
  padding-bottom: 6rem;
  border-bottom: 2px solid var(--main-color);
}
.com-bd-li > li h4 {
  margin-bottom: 2rem;
}

#service .inbox > .com-txt {
  background: url(../img/srv/deco-le.png) bottom left 6rem no-repeat, url(../img/srv/deco-ri.png) bottom right 6rem no-repeat;
}
#service ol {
  margin-top: 10rem;
}
#service ol li {
  position: relative;
}
#service ol li:nth-child(odd) .num {
  left: 0;
}
#service ol li:nth-child(even) .num {
  right: 0;
}
#service ol li .txt-box {
  width: 540px;
}
#service ol li .txt-box .num {
  position: absolute;
  font-weight: 400;
  line-height: 1;
  top: 0;
  font-size: 6.5rem;
  text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0px 1px 0 #FFF, -1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF;
}
#service ol li .txt-box .contact-btn {
  height: 5rem;
  margin-top: 1rem;
}

#chinchilla-about {
  position: relative;
}
#chinchilla-about .inbox::before {
  content: "";
  display: block;
  width: 12.5%;
  height: auto;
  aspect-ratio: 1.07;
  position: absolute;
  background: url("../img/common/deco-chilla-02.png") center/contain no-repeat;
  transform: scale(-1, 1);
  bottom: -11rem;
  left: 13%;
  z-index: 20;
}
#chinchilla-about .ttl02 {
  padding: 2rem;
  margin: 8rem 0 5rem;
}
#chinchilla-about ul li .txt-box {
  width: 590px;
}

#chinchilla {
  background: url(../img/common/deco-car.png) bottom right 10% no-repeat;
}
#chinchilla .chilla-li {
  margin-top: 4rem;
  display: flex;
  align-items: start;
  flex-wrap: wrap;
  gap: 6rem 4.5rem;
}
#chinchilla .chilla-li li {
  display: grid;
  width: 330px;
}
#chinchilla .chilla-li li a {
  display: grid;
  gap: 3rem;
}
#chinchilla .chilla-li li .com-img {
  width: 330px;
  aspect-ratio: 1.1;
}

.chilla-dl {
  display: grid;
  gap: 1.5em;
}
.chilla-dl .dl-item {
  gap: 1rem;
  line-height: 1;
  align-items: center;
}
.chilla-dl dt {
  padding: 0.7rem 1rem 1rem;
  border-radius: 3px;
}

.chilla-detail-box {
  padding: 6rem 7rem;
  gap: 3rem 0;
}
.chilla-detail-box .img-li {
  width: 520px;
  overflow-x: auto;
  gap: 3rem;
}
.chilla-detail-box .img-li li {
  flex-shrink: 0;
  width: 520px;
  aspect-ratio: 1.3;
}
.chilla-detail-box .chilla-dl {
  width: 390px;
}
.chilla-detail-box .txt-box {
  width: 100%;
}

#flow {
  background: url(../img/common/ashi-wt-le.png) bottom left 6.7%/17% no-repeat, url(../img/common/ashi-wt-ri.png) top 13rem right 6.7%/17% no-repeat, var(--bg-pt);
}
#flow ol {
  margin-top: 5rem;
  gap: 4.5rem;
}
#flow ol li {
  padding: 4.5rem 5rem;
}
#flow ol li .txt-box {
  width: 750px;
}
#flow ol li .txt-box .ttl02 {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2rem;
}
#flow ol li .txt-box .ttl02 .num {
  padding-top: 1rem;
}
#flow ol li .contact-btn-box {
  margin-top: 2rem;
  gap: 4rem;
}
#flow ol li .contact-btn-box .contact-btn {
  height: 6rem;
}

#flow-faq {
  background: url(../img/common/deco-car.png) bottom left 10% no-repeat;
  position: relative;
}
#flow-faq::before {
  content: "";
  display: block;
  width: 17.5rem;
  height: auto;
  aspect-ratio: 0.44;
  position: absolute;
  background: url("../img/common/deco-kikyu.png") center/contain no-repeat;
  top: -14.5rem;
  right: 14.5rem;
  z-index: 20;
}
#flow-faq ul {
  display: grid;
  gap: 5rem;
}
#flow-faq ul li {
  padding-left: 5rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--bd-color);
}
#flow-faq ul li .ttl04 {
  position: relative;
  margin-bottom: 3.5rem;
}
#flow-faq ul li .ttl04::after {
  content: "Q";
  position: absolute;
  font-family: var(--en-font);
  font-size: 4.2rem;
  left: -5rem;
  top: -1rem;
  line-height: 1;
}
#flow-faq ul li .com-txt {
  position: relative;
}
#flow-faq ul li .com-txt::after {
  position: absolute;
  line-height: 1;
  content: "A";
  font-family: var(--en-font);
  font-size: 4.2rem;
  left: -5rem;
  top: 0;
  color: var(--accent-color);
}

/*---------------------------▽▽---SV---▽▽------------------------*/
.sv-area .sv {
  height: 650px;
  position: relative;
}
.sv-area .sv .sv-catch {
  font-family: var(--ttl-font);
  border-radius: 5px;
  font-size: 4.5rem;
  width: 700px;
  padding: 1.5rem 0;
  position: absolute;
  bottom: 125px;
  left: 7.5rem;
}
.sv-area .sv .sv-catch::before {
  content: "";
  display: block;
  width: 7.6rem;
  height: auto;
  aspect-ratio: 0.95;
  position: absolute;
  background: url("../img/sv/deco-le.png") center/contain no-repeat;
  left: -2rem;
  top: -2.8rem;
}
.sv-area .sv .sv-catch::after {
  content: "";
  display: block;
  width: 5.4rem;
  height: auto;
  aspect-ratio: 0.73;
  position: absolute;
  background: url("../img/sv/deco-ri.png") center/contain no-repeat;
  right: -1rem;
  bottom: -1.8rem;
}

.about-sv {
  background: url(../img/sv/frame.png) left/33.6rem 100% no-repeat, url(../img/sv/about.jpg) center/cover;
}

.service-sv {
  background: url(../img/sv/frame.png) left/33.6rem 100% no-repeat, url(../img/sv/service.jpg) center/cover;
}

.chinchilla-sv {
  background: url(../img/sv/frame.png) left/33.6rem 100% no-repeat, url(../img/sv/chinchilla.jpg) center/cover;
}

.flow-sv {
  background: url(../img/sv/frame.png) left/33.6rem 100% no-repeat, url(../img/sv/flow.jpg) center/cover;
}

.news-sv {
  background: url(../img/sv/frame.png) left/33.6rem 100% no-repeat, url(../img/sv/news.jpg) center/cover;
}

.contact-sv {
  background: url(../img/sv/frame.png) left/33.6rem 100% no-repeat, url(../img/sv/contact.jpg) center/cover;
}

.complete-sv {
  background: url(../img/sv/frame.png) left/33.6rem 100% no-repeat, url(../img/sv/complete.jpg) center/cover;
}

.privacy-sv {
  background: url(../img/sv/frame.png) left/33.6rem 100% no-repeat, url(../img/sv/privacy.jpg) center/cover;
}

.site-sv {
  background: url(../img/sv/frame.png) left/33.6rem 100% no-repeat, url(../img/sv/site.jpg) center/cover;
}

.e404-sv {
  background: url(../img/sv/frame.png) left/33.6rem 100% no-repeat, url(../img/sv/e404.jpg) center/cover;
}

/*---------------------------△△---SV---△△------------------------*/
/*---------------------------▽▽---breadcrumbs---▽▽------------------------*/
.breadcrumbs-area {
  position: relative;
  z-index: 10;
}
.breadcrumbs-area .breadcrumbs {
  position: absolute;
  left: 0;
  right: 0;
  top: 15px;
  font-size: 1.5rem;
}
.breadcrumbs-area .breadcrumbs li:not(:first-child)::before {
  content: ">";
  padding: 0 15px;
}

/*---------------------------△△---breadcrumbs---△△------------------------*/
/*-----------▽▽---select---▽▽--------*/
.select-area {
  width: 300px;
  height: 50px;
  margin-left: auto;
  margin-right: 0;
}
.select-area .select-box {
  font-size: 1.5rem;
}
.select-area .select-box option {
  font-size: 1.5rem;
}
/*------------△△---select---△△---------*/
/*--------------------その他共通ページ --------------------*/
.com-other-page {
  padding: 100px 0;
  position: relative;
  background: var(--bg-pt);
  z-index: 10;
}
.com-other-page::before {
  content: "";
  display: block;
  width: 100%;
  height: 5rem;
  position: absolute;
  background: url("../img/common/wave-top.png") center/contain no-repeat;
  inset: -4.5rem 0 auto 0;
  background-size: 100% 100%;
  z-index: -1;
}
.com-other-page::after {
  content: "";
  display: block;
  width: 100%;
  height: 5rem;
  position: absolute;
  background: url("../img/common/wave-btm.png") center/contain no-repeat;
  inset: auto 0 -4.5rem 0;
  background-size: 100% 100%;
  z-index: -1;
}

/*---------------------------▽▽---site.html---▽▽------------------------*/
#site-map .site-list li {
  font-size: 1.8rem;
}
#site-map .site-list li a {
  display: block;
  padding: 20px 10px;
  border-bottom: 2px solid color-mix(in srgb, var(--main-color) 50%, transparent);
  color: var(--font-color);
  position: relative;
}
#site-map .site-list li a::after {
  content: "";
  display: block;
  width: 10px;
  height: 12px;
  background: var(--main-color);
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto 0;
}
#site-map .site-list li a:hover {
  background: color-mix(in srgb, var(--main-color) 50%, transparent);
}

/*---------------------------△△---site.html---△△------------------------*/
/*---------------------------▽▽---404.html---▽▽------------------------*/
#notfound .inbox .com-txt {
  text-align: center;
}
#notfound .inbox .com-txt a {
  text-decoration: underline;
  color: var(--font-color);
}

/*---------------------------△△---404.html---△△------------------------*/
/*---------------------------▽▽---privacy.html---▽▽------------------------*/
#privacy .privacy-box {
  margin-bottom: 50px;
  padding: 0;
}
#privacy .privacy-box .ttl02 {
  text-align: left;
  padding: 10px 30px;
  margin-bottom: 20px;
  background: var(--main-color);
  color: #fff;
  border-radius: 0;
}

/*---------------------------△△---privacy.html---△△------------------------*/
/*---------------------------▽▽---news.html---▽▽------------------------*/
#news .select-area {
  margin-bottom: 40px;
}
#news .select-area .select-box {
  padding: 10px 0;
  background: none;
}
#news .news-area {
  margin-bottom: 60px;
}
#news .news-area .news-list .news-item {
  border-bottom: 1px solid color-mix(in srgb, var(--main-color) 50%, transparent);
  line-height: 1.5;
}
#news .news-area .news-list .news-item a {
  display: block;
  padding: 30px 0;
}
#news .news-area .news-list .news-item a .news-txt-box .data-box {
  display: flex;
  line-height: 1.5;
  gap: 20px;
  font-size: 1.5rem;
  margin-bottom: 20px;
  align-items: flex-start;
}
#news .news-area .news-list .news-item a .news-txt-box .data-box time {
  width: 100px;
}
#news .news-area .news-list .news-item a .news-txt-box .data-box .tag-list {
  width: 980px;
}
#news .news-area .news-list .news-item a .news-txt-box .list-ttl {
  font-weight: 500;
  font-size: 2.3rem;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
}
#news .news-area .news-list .news-item a .news-txt-box .list-txt {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
}
#news .news-area .news-list .news-item .thumbnail-on {
  display: flex;
  justify-content: space-between;
}
#news .news-area .news-list .news-item .thumbnail-on .thumb {
  width: 200px;
}
#news .news-area .news-list .news-item .thumbnail-on .news-txt-box {
  width: 840px;
}
#news .news-area .news-list .news-item .thumbnail-on .news-txt-box .data-box .tag-list {
  width: 740px;
}

/*detail */
#detail .detail-box {
  margin-bottom: 50px;
}
#detail .detail-box .data-box {
  display: flex;
  line-height: 1.5;
  gap: 30px;
  font-size: 1.5rem;
  margin-bottom: 70px;
  align-items: center;
}
#detail .detail-box .data-box time {
  width: 120px;
}
#detail .detail-box .data-box .tag-list {
  width: 780px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
#detail .detail-box .data-box .tag-list .tag a {
  display: inline-block;
  width: 100%;
  height: 100%;
}
#detail .detail-box .thumb {
  margin-bottom: 20px;
  width: 400px;
  height: 300px;
}
#detail .detail-box .detail-ttl {
  font-size: 3rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  padding: 0 0 20px;
  text-align: left;
  border-bottom: 2px solid #555;
}
#detail .detail-box .detail-txt {
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  padding: 30px 0 60px;
}
#detail .detail-box .detail-txt img {
  margin: 10px;
}

/*pagenation*/
.pagenation {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 50px 0 30px;
}
.pagenation li {
  width: 50px;
  height: 50px;
  box-sizing: border-box;
  border: 2px solid var(--main-color);
  font-size: 1.8rem;
  background: #fff;
}
.pagenation li a, .pagenation li span {
  line-height: 1;
  padding: 12px 18px;
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 100%;
}
.pagenation .current {
  background: var(--main-color);
  color: #fff;
}

.pagenation-detail {
  position: relative;
  height: 50px;
  margin-top: 60px;
}
.pagenation-detail p a {
  color: #fff;
  font-size: 1.3rem;
  text-align: center;
  letter-spacing: 0.2em;
  line-height: 1;
  box-sizing: border-box;
  border-radius: 5px;
  padding: 18px 0;
  height: 50px;
  background: var(--main-color);
  position: absolute;
}
.pagenation-detail .left a {
  top: 0;
  left: 0;
  width: 70px;
}
.pagenation-detail .right a {
  top: 0;
  right: 0;
  width: 70px;
}
.pagenation-detail .center a {
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 160px;
}

/*---------------------------△△---news.html---△△------------------------*/
/*---------------------------▽▽---contact.html---▽▽------------------------*/
#contact .contact-ttl {
  margin-bottom: 100px;
  text-align: center;
}
#contact .table-wrapper {
  margin-bottom: 50px;
}
#contact .table-wrapper .contact-form-table tr {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
#contact .table-wrapper .contact-form-table tr th {
  font-weight: 700;
  width: 300px;
  box-sizing: border-box;
  padding: 16px 10px;
  font-size: 1.5rem;
}
#contact .table-wrapper .contact-form-table tr th .required-mark {
  padding: 2px 4px;
  font-weight: 500;
}
#contact .table-wrapper .contact-form-table tr td {
  width: 770px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-weight: 500;
  font-family: "游ゴシック", "Meiryo", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
}
#contact .table-wrapper .contact-form-table tr td input, #contact .table-wrapper .contact-form-table tr td textarea, #contact .table-wrapper .contact-form-table tr td select, #contact .table-wrapper .contact-form-table tr td .error-text, #contact .table-wrapper .contact-form-table tr td .contact-address-txt {
  font-family: "游ゴシック", "Meiryo", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  width: 100%;
}
#contact .table-wrapper .contact-form-table tr td label {
  font-family: "游ゴシック", "Meiryo", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
}
#contact .table-wrapper .contact-form-table tr td .select-area {
  margin: 0;
}
#contact .table-wrapper .contact-form-table tr td .select-area select {
  width: auto;
}
#contact .table-wrapper .contact-form-table tr td .p-postal-code {
  width: 80px;
}
#contact .table-wrapper .contact-form-table tr td .birth-txt {
  width: 80px;
}
#contact .table-wrapper .contact-form-table tr td .error-text {
  font-weight: 500;
}
#contact .table-wrapper .contact-form-table tr .check-box-confirmation {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
#contact .table-wrapper .contact-form-table tr .h-adr input {
  height: 45%;
}
#contact .privacy-agree {
  display: block;
}
#contact .privacy-agree a {
  text-decoration: underline;
}

.check {
  display: flex;
  justify-content: space-between;
  width: 60%;
  margin: 50px auto;
}
.check .contact-recaptcha-wrap {
  margin: 0;
}

.contact-submits-wrap .contact-check-btn {
  width: 300px;
  height: 74px;
  background: none;
  color: #fff;
  background: var(--main-color);
  border-radius: 5px;
  transition: 0.3s;
  cursor: pointer;
}
.contact-submits-wrap .contact-back-btn {
  border: none;
  background: #bebebe;
  margin-bottom: 50px;
  font-size: 1.6rem;
}

.complete-area .ttl01 {
  margin-bottom: 100px;
}

.complete-box {
  color: var(--font-color);
  line-height: 1.5;
  text-align: center;
}
.complete-box a {
  display: inline-block;
  text-decoration: underline;
  margin: 30px 0;
}

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

/*---------------------------△△---contact.html---△△------------------------*/