@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: 50px;
}

section {
  padding: 50px 0;
}

.dl-item {
  display: flex;
}

.com-txt {
  line-height: 1.875;
}
.com-txt:not(:last-of-type) {
  margin-bottom: 30px;
}

.com-btn {
  display: grid;
  place-items: center;
  border-radius: 50vw;
  width: 380px;
  height: 80px;
  margin: 70px auto 0;
  position: relative;
  background: url(../img/common/btn-deco.png) right bottom no-repeat, var(--accent-color);
}
.com-btn::before {
  content: "";
  display: block;
  width: 15px;
  height: auto;
  position: absolute;
  background: url("../img/common/btn-arw.png") center/contain no-repeat;
  aspect-ratio: 1.5;
  inset: 0 auto 0 20px;
  margin: auto 0;
}
.com-arw {
  display: inline-block;
  position: relative;
  padding-right: 30px;
}
.com-arw::after {
  content: "";
  display: block;
  width: 27px;
  height: auto;
  position: absolute;
  background: url("../img/common/arw.png") center/contain no-repeat;
  aspect-ratio: 1.125;
  right: 0;
  top: 0;
}

.line-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 30px !important;
}
.line-btn::after {
  inset: 0 0 0 auto;
  margin: auto 0;
}

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

.ttl01 {
  text-align: center;
  font-weight: 500;
  margin-bottom: 70px;
}
.ttl01 .en {
  font-size: 2.4rem;
  color: var(--main-color-02);
  display: block;
  text-transform: uppercase;
}
.ttl01 .ja {
  font-size: 4rem;
}

.ttl02 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.ttl03 {
  font-size: 1.8rem;
}

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

.com-kado {
  border-radius: 30px;
}
.com-tel {
  display: flex;
  align-items: center;
  gap: 5px 20px;
}
.com-tel a {
  font-size: 2.8rem;
  background: url("../img/common/tel-icon.png") left center/auto no-repeat;
  padding-left: 30px;
  box-sizing: border-box;
}
.com-tel .tel-info dl {
  display: flex;
  gap: 10px;
}
.com-tel .tel-info dl dt {
  background: var(--sub-color);
}

.check-item {
  position: relative;
}
.check-item::before {
  content: "";
  display: block;
  width: 18px;
  height: 16px;
  position: absolute;
  background: url("../img/common/check-bl.png") center/contain no-repeat;
  left: -22px;
  top: 13px;
}

.ill-box {
  position: relative;
}
.ill-box::before {
  content: "";
  display: block;
  width: 196px;
  height: 132px;
  position: absolute;
  background: url("../img/common/ill-dog.png") center/contain no-repeat;
  background-position: top;
  top: 0;
  right: -90px;
}

.bg-bl {
  position: relative;
  background: url(../img/common/bg-pt-le.png) left 3.6% top 70px/30% no-repeat;
}
.bg-bl::after {
  content: "";
  display: block;
  width: 21%;
  height: 638px;
  position: absolute;
  background: url(../img/common/bg-bl-ri.png) right bottom/100% no-repeat;
  bottom: -160px;
  right: 0;
  z-index: -1;
}

.bg-pink {
  position: relative;
  background: var(--bg-color);
}
.bg-pink::after {
  content: "";
  display: block;
  width: 100%;
  height: 210px;
  position: absolute;
  background: url(../img/common/bg-wave-top.png) bottom/100% 100% no-repeat;
  top: -210px;
  z-index: -1;
}
.bg-pink::before {
  content: "";
  display: block;
  width: 100%;
  height: 1012px;
  position: absolute;
  background: url(../img/common/bg-wave-btm.png) bottom/100% 100% no-repeat;
  bottom: -210px;
}
.bg-pink .inbox {
  position: relative;
}
.bg-pink .inbox .hart-dog {
  position: absolute;
  right: -140px;
  bottom: -130px;
}
.bg-pink .inbox .ill-house {
  position: absolute;
  left: -100px;
  top: -130px;
}

.bg-curve {
  padding: 0 0 120px;
  background: url(../img/common/bg-curve.png) top/100% 100px no-repeat, linear-gradient(to bottom, transparent, transparent 100px, var(--bg-color-03) 100px, var(--bg-color-03) 100%);
}

.contact-bg {
  background: url(../img/common/contact-bg-le.png) top left calc(50% - 680px) no-repeat, url(../img/common/contact-bg-ri.png) bottom right calc(50% - 640px) no-repeat, var(--bg-color);
  position: relative;
  z-index: 1;
}
.contact-bg::before {
  content: "";
  display: block;
  width: 100%;
  height: 210px;
  position: absolute;
  background: url(../img/common/bg-wave-top.png) bottom/100% 210px no-repeat;
  top: -210px;
  z-index: -1;
}
.contact-bg::after {
  content: "";
  display: block;
  width: 237px;
  height: 222px;
  position: absolute;
  background: url("../img/common/contact-deco.png") center/contain no-repeat;
  top: -120px;
  right: calc(50% - 610px);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.tag-list .tag {
  color: var(--main-color);
  padding: 0 5px;
  line-height: 1;
  font-size: 1.4rem;
}

.alternately-li li {
  position: relative;
}
.alternately-li li .num {
  position: absolute;
  width: 66px;
  display: grid;
  place-items: center;
  text-shadow: 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff;
  aspect-ratio: 1.06;
  left: -80px;
  top: -10px;
}

/*infotableスタイル*/
.com-desc-tbl {
  border: 2px solid var(--main-color);
  padding: 60px 100px;
}
.com-desc-tbl .dl-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  line-height: 2;
}
.com-desc-tbl .dl-item:not(:last-child) {
  border-bottom: 1px solid var(--bd-color);
}
.com-desc-tbl .dl-item dt {
  width: 200px;
}
.com-desc-tbl .dl-item dd {
  width: 660px;
}

/*======================================================
 * △△---共通スタイル---△△
 * =======================================================*/
/*---------------------------▽▽---heder---▽▽------------------------*/
#header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 100;
  padding: 15px 30px;
}
#header .hd-logo img {
  display: block;
}
#header .hd-right {
  gap: 30px;
}
#header .hd-right .com-tel {
  width: 510px;
}
#header .hd-right .mail-btn-box {
  gap: 30px;
}
#header .hd-right .mail-btn-box a {
  display: block;
  width: 40px;
}

#nav {
  margin-top: 8px;
  position: absolute;
  inset: auto 0 0 0;
  z-index: 10;
  padding: 25px;
}
#nav .nav-list .nav-item {
  position: relative;
}
#nav .nav-list .nav-item:not(:last-child) {
  border-right: 1px solid #d5d5d5;
}
#nav .nav-list .nav-item > a {
  display: grid;
  justify-items: center;
  align-items: center;
  padding: 0 50px;
  padding-bottom: 5px;
  gap: 5px;
  opacity: 1;
  position: relative;
}
#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;
}
#nav .nav-list .nav-item > a:hover::after {
  transform: scale(1);
}

/*---------------------------△△---heder---△△------------------------*/
/*---------------------------▽▽---MV---▽▽------------------------*/
.top-mv {
  margin-top: 100px;
  position: relative;
  height: 41.1vw;
  min-height: 526px;
  background: url(../img/top/mv-bg-le.png) top left/50% no-repeat, url(../img/top/mv-bg-ri.png) top right/27.4% no-repeat;
}
.top-mv img {
  width: 100%;
}
.top-mv .mv-ct {
  width: 35%;
  margin-left: 8.3%;
  padding-top: 8.5%;
  position: relative;
  z-index: 10;
}
.top-mv .mv-img {
  width: 62.8%;
  position: absolute;
  right: 0;
  top: 0;
}

/*---------------------------△△---MV---△△------------------------*/
/*--------▽▽---MV---▽▽---------- */
#top-news {
  padding: 100px 0;
}
#top-news .inbox {
  position: relative;
}
#top-news .inbox .ttl01 {
  width: 290px;
  min-height: 260px;
  margin: 0;
  padding: 0;
}
#top-news .inbox .news-list {
  width: 670px;
  display: grid;
  gap: 20px;
}
#top-news .inbox .news-list .news-item:nth-child(odd) {
  transform: translateX(-50px);
}
#top-news .inbox .news-list .news-item a:hover {
  transform: translateX(10px);
}
#top-news .inbox .news-list .news-item a .txt-box {
  margin-left: 40px;
  margin-bottom: 8px;
}
#top-news .inbox .news-list .news-item a .txt-box time {
  line-height: 1;
}
#top-news .inbox .news-list .news-item a h4 {
  padding: 10px 40px;
  width: 100%;
}
#top-news .inbox .com-btn {
  position: absolute;
  width: 290px;
  bottom: 0;
  margin: 0;
}
#top-news .inbox .news-ill {
  position: absolute;
  left: -100px;
  top: -90px;
}

/*------------△△---MV---△△---------*/
#top-greeting {
  position: relative;
}
#top-greeting::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background: url(../img/top/gree-bg.png) left bottom -160px/27.7% no-repeat;
  left: 0;
  bottom: 0;
  z-index: -1;
}
#top-greeting .inbox {
  position: relative;
  z-index: 10;
}

#top-feature .inbox .feat-img {
  right: -220px;
  top: -170px;
}
#top-feature .inbox .feat-li {
  margin-left: 150px;
  display: grid;
  gap: 45px;
}
#top-feature .inbox .feat-li li {
  gap: 30px;
}
#top-feature .inbox .feat-li li:nth-child(even) {
  margin-left: 200px;
}
#top-feature .inbox .feat-li li .bd-01 {
  width: 150px;
  display: grid;
  place-items: center;
}
#top-feature .inbox .feat-li li .txt-box {
  width: 560px;
}
#top-feature .inbox .feat-li li .num {
  left: -10px;
}

#top-flow {
  background: url(../img/top/flow-bg-ri.png) right bottom/26% no-repeat;
  position: relative;
}
#top-flow::before {
  content: "";
  display: block;
  width: 34%;
  height: auto;
  position: absolute;
  background: url("../img/top/flow-bg-le.png") center/contain no-repeat;
  aspect-ratio: 2.09;
  left: 0;
  bottom: -80px;
  z-index: 10;
}
#top-flow .inbox {
  padding-bottom: 100px;
}
#top-flow .flow-img {
  left: -130px;
  top: -70px;
}
#top-flow .flow-ill {
  bottom: 0;
  right: -100px;
}
#top-flow .flow-li {
  gap: 50px;
  display: grid;
  justify-content: center;
}
#top-puppy {
  position: relative;
}
#top-puppy::before {
  content: "";
  display: block;
  width: 21%;
  height: auto;
  position: absolute;
  background: url("../img/top/other-bg-le.png") center/contain no-repeat;
  aspect-ratio: 0.63;
  left: 0;
  bottom: -210px;
}

.boy-box {
  border: 3px solid var(--main-color-02);
}

.girl-box {
  border: 3px solid var(--main-color);
}

.puppy-list {
  position: relative;
  z-index: 10;
  gap: 30px;
}

.puppy-item .tag-list {
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
}
.puppy-item .tag-list .tag {
  color: var(--font-color);
  background: var(--accent-color);
  padding: 5px 10px;
  border-radius: 50vw;
}
.puppy-item .com-img {
  aspect-ratio: 1.4;
  margin-bottom: 15px;
}
.puppy-item .puppy-tbl {
  margin-top: 10px;
}
.puppy-item .puppy-tbl .dl-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
}
.puppy-item .puppy-tbl .dl-item:not(:last-child) {
  border-bottom: 1px solid var(--bd-color);
}
.puppy-item .puppy-tbl .dl-item dd {
  text-align: right;
}
.puppy-item > a {
  position: relative;
  width: 334px;
  height: 100%;
  padding: 30px 30px 70px;
}
.puppy-item > a .com-img {
  width: 280px;
}
.puppy-item > a .dl-item dt {
  max-width: 85px;
}
.puppy-item > a .dl-item dd {
  max-width: 190px;
}
.puppy-item > a .com-arw {
  text-align: right;
  position: absolute;
  right: 30px;
  bottom: 30px;
}

.puppy-sec {
  margin-bottom: 70px;
}
.puppy-sec .com-btn {
  width: 340px;
}

.puppy-detail .puppy-item {
  padding: 60px 100px;
}
.puppy-detail .puppy-item > .com-img {
  width: 750px;
  margin: 0 auto 15px;
}
.puppy-detail .puppy-item .puppy-tbl dt {
  max-width: 110px;
}
.puppy-detail .puppy-item .puppy-tbl dd {
  max-width: 730px;
}
.puppy-detail .puppy-item > .com-txt {
  padding: 30px 40px;
  background: #f3f3f3;
  margin-bottom: 60px;
  margin-top: 20px;
}
.puppy-detail .puppy-item .img-li {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  width: 100%;
}
.puppy-detail .puppy-item .img-li .img-item {
  flex-shrink: 0;
  width: 280px;
}
.puppy-detail .puppy-item .img-li .img-item .com-img {
  width: 100%;
}
#top-other {
  background: url(../img/top/other-bg-ri.png) bottom right/27% no-repeat;
  padding-bottom: 170px;
  position: relative;
}
#top-other .inbox li {
  position: relative;
  z-index: 10;
}
#top-other .inbox li a {
  display: block;
}
#top-other .inbox li .bg-main02 {
  width: 220px;
  padding: 0;
  margin: 0;
  position: absolute;
  display: grid;
  place-items: center;
  left: 20px;
  bottom: -70px;
  box-shadow: 0 0 10px rgba(114, 114, 114, 0.4);
}
#top-other .inbox li .bg-main02::after {
  width: 60px;
  right: auto;
  left: 0;
}

.pagetop {
  position: fixed;
  z-index: 100;
  right: 30px;
  bottom: 30px;
}

#common-contact {
  padding-bottom: 100px;
}
#common-contact .inbox .ttl01 {
  margin: 0;
}
#common-contact .inbox .contact-box {
  background: url(../img/common/contact-bg.png) center/contain no-repeat;
  padding: 120px 50px;
  margin-top: -40px;
}
#common-contact .inbox .contact-box .com-tel {
  margin-bottom: 30px;
}
#common-contact .inbox .contact-box .com-tel p {
  margin-top: 20px;
}
#common-contact .inbox .contact-box .mail-btn-box a {
  padding: 0 20px;
}
#common-contact .inbox .contact-box .mail-btn-box .mail-btn {
  border-right: 1px solid var(--bd-color);
}
#common-contact .inbox .contact-img {
  bottom: -70px;
  left: -90px;
}

#footer {
  position: relative;
}
#footer::before {
  content: "";
  display: block;
  width: 15.6%;
  height: auto;
  position: absolute;
  background: url("../img/common/ft-deco.png") center/contain no-repeat;
  aspect-ratio: 1;
  left: 0;
  top: -130px;
  z-index: 10;
}
#footer .ft-area {
  padding: 100px 0;
  position: relative;
}
#footer .ft-area::before {
  content: "";
  display: block;
  width: 196px;
  height: auto;
  position: absolute;
  background: url("../img/common/ft-ill.png") center/contain no-repeat;
  aspect-ratio: 1.58;
  right: -90px;
  bottom: 10px;
}
#footer .ft-area .ft-le {
  display: grid;
  gap: 40px;
  justify-items: start;
}
#footer .ft-area .ft-le .ft-info {
  display: grid;
  gap: 10px;
}
#footer .ft-area .ft-le .ft-info .dl-item {
  gap: 10px;
}
#footer .ft-area .ft-ri {
  gap: 75px;
}
#footer .ft-area .ft-ri .nav-list {
  display: grid;
  gap: 40px;
}
#footer .ft-area .ft-ri .nav-list li {
  position: relative;
}
#footer .ft-area .ft-ri .nav-list li::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  position: absolute;
  border-radius: 50vw;
  inset: 0 auto 0 -10px;
  margin: auto 0;
}
#footer .ft-area .ft-ri .nav-list li:nth-child(odd)::before {
  background: var(--main-color-02);
}
#footer .ft-area .ft-ri .nav-list li:nth-child(even)::before {
  background: var(--main-color);
}

/*==========================================
 * -▽▽---下層ページ---▽▽
 * ===========================================*/
/*---------------------------▽▽---SV---▽▽------------------------*/
.sv-area {
  margin-top: 100px;
  background: url(../img/sv/bg-le.png) left top/54% no-repeat, url(../img/sv/bg-ri.png) right bottom/26% no-repeat;
}
.sv-area .sv {
  width: clamp(1120px, 84%, 1620px);
  margin: 0 auto;
  position: relative;
  height: 520px;
  padding-top: 150px;
}
.sv-area .sv .sv-catch {
  position: relative;
  z-index: 10;
  text-align: center;
  width: 630px;
  font-size: 48px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(114, 114, 114, 0.4);
  padding: 10px 0;
  background: var(--main-color);
}
.sv-area .sv .sv-img {
  position: absolute;
  width: clamp(650px, 46vw, 892px);
  inset: 0 0 0 auto;
  margin: auto 0;
}
.sv-area .sv .sv-img img {
  width: 100%;
}

/*---------------------------△△---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---△△---------*/
#about-recommend .inbox {
  gap: 0 70px;
}
#about-recommend .inbox ul {
  margin-left: 20px;
}

#about-faq .inbox {
  padding: 0 60px;
}
#about-faq .inbox .faq-li {
  display: grid;
  gap: 60px;
}
#about-faq .inbox .faq-li .faq-item > .ttl02 {
  margin-bottom: 40px;
}
#about-faq .inbox .faq-li .faq-item .bd-01 {
  padding: 15px 70px;
  margin-bottom: 20px;
  position: relative;
}
#about-faq .inbox .faq-li .faq-item .bd-01::after {
  content: "";
  display: block;
  width: 49px;
  height: auto;
  position: absolute;
  background: url("../img/about/faq-ill.png") center/contain no-repeat;
  aspect-ratio: 0.59;
  bottom: 0;
  right: 40px;
}
#about-faq .inbox .faq-li .faq-item ul {
  gap: 80px;
}
#about-faq .inbox .faq-li .faq-item ul li {
  display: grid;
  justify-items: center;
  gap: 15px;
}
#about-faq .inbox .faq-li .faq-item ul li .faq-dog {
  height: 145px;
  display: grid;
  align-items: center;
}
#about-faq .inbox .faq-li .faq-item ul li .ttl02 {
  margin: 0;
  padding: 5px 20px;
}
#about-faq .inbox .faq-li .faq-item .com-txt {
  padding: 0 70px;
}

.faq-ill-box {
  display: grid;
  justify-content: center;
}
.faq-ill-box .ttl02:not(:first-of-type) {
  margin-top: 30px;
}

#about-notice .inbox {
  padding: 0 20px;
  z-index: 10;
}
#about-notice .inbox .ttl01 .ttl02 {
  margin: 0;
}
#about-notice .inbox .notice-ill {
  left: -200px;
  top: 50px;
}
#about-notice .inbox .notice-img {
  position: relative;
  z-index: 10;
}
#about-notice .inbox .txt-box {
  width: 545px;
}

#info-sale .sale-li {
  display: grid;
  gap: 60px;
}
#info-sale .sale-li li {
  gap: 50px;
}
#info-sale .sale-li li .bg-clr01 {
  width: 230px;
  display: grid;
  place-items: center;
}
#info-sale .sale-li li .txt-box {
  width: 720px;
}
#info-pdf .inbox {
  position: relative;
  z-index: 10;
  top: 50px;
}
#info-pdf .inbox li a {
  width: 538px;
  height: 190px;
  display: grid;
  place-items: center;
  position: relative;
  background: url(../img/info/pdf-bg.png) center/contain no-repeat;
}
#info-pdf .inbox li a .ttl02 {
  padding: 10px 0;
  padding-left: 60px;
  font-size: 2.8rem;
  margin: 0;
  position: relative;
  background: url("../img/info/pdf-icon.png") left center/56px no-repeat;
  padding-left: 60px;
  box-sizing: border-box;
}
#info-pdf .inbox li a .check-arw {
  position: absolute;
  right: 30px;
  bottom: 20px;
  z-index: 1;
  font-size: 2rem;
}
#info-pdf .inbox li a .check-arw::before {
  content: "";
  display: block;
  width: 54px;
  height: auto;
  position: absolute;
  aspect-ratio: 1;
  background: var(--accent-color);
  border-radius: 50vw;
  right: -20px;
  top: -15px;
  z-index: -1;
}

#info {
  padding: 160px 0 0;
}
#info .ill-house {
  top: -420px;
}
#map {
  padding: 120px 0;
}
#map .map {
  height: 400px;
  overflow: hidden;
  position: relative;
  z-index: 10;
}

/*--------------------その他共通ページ --------------------*/
.com-other-page {
  padding: 100px 0;
}
.com-other-page .inbox {
  position: relative;
  z-index: 10;
}

/*---------------------------▽▽---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: 50vw;
}

/*---------------------------△△---privacy.html---△△------------------------*/
/*---------------------------▽▽---news.html---▽▽------------------------*/
#news .news-ttl {
  margin-bottom: 50px;
}
#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 {
  position: relative;
  z-index: 20;
  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;
  border-radius: 5px;
}
.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;
  padding: 40px 80px;
  border: 2px solid var(--main-color);
  margin-top: 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 {
  width: 260px;
  box-sizing: border-box;
  font-size: 1.5rem;
  margin-top: 10px;
}
#contact .table-wrapper .contact-form-table tr th .required-mark {
  color: var(--main-color);
  padding: 2px 4px;
  background: none;
  float: none;
}
#contact .table-wrapper .contact-form-table tr td {
  width: 600px;
  display: flex;
  align-items: center;
  gap: 5px 0;
  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%;
  background: #f3f3f3;
}
#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 {
  margin: 0;
  width: 300px;
}
.contact-submits-wrap .contact-check-btn {
  width: 300px;
  height: 74px;
  background: none;
  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---△△------------------------*/