@charset "UTF-8";
/*アニメーションCSS*/
/*ボーダーが真ん中から左右に広がる*/
/*ボタンの背景が横から出てくる*/
/*spスタイル */
.inbox {
  width: 86%;
  box-sizing: border-box;
  margin: 0 auto;
}

.sp-none {
  display: none;
}

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

/*すまほセレクトボックス*/
.select-area {
  position: relative;
  width: 70vw;
  height: 15vw;
}
.select-area .select-box {
  font-size: 3.5vw;
  font-weight: 500;
}
.select-area .select-box option {
  font-size: 3vw;
}
/*ここから下がドロワー設定項目 */
/*drawer btn 上下左右で設定可能 */
.sp-menu-btn-wrp {
  top: 10px;
  right: 10px;
  bottom: auto;
  left: auto;
  background: var(--main-color);
  border-radius: 2vw;
}

.sp-menu-btn-wrp .sp-menu-btn {
  width: 15vw;
  height: 15vw;
  max-width: 75px;
  max-height: 75px;
}

.sp-menu-btn-wrp .sp-menu-btn span {
  width: 50%;
  height: 2px;
  background: #fff;
  transform-origin: center;
}

.sp-menu-btn-wrp .sp-menu-btn .top {
  top: 30%;
}

.sp-menu-btn-wrp .sp-menu-btn .middle {
  top: 0;
  bottom: 0;
}

.sp-menu-btn-wrp .sp-menu-btn .bottom {
  bottom: 30%;
}

.sp-menu-btn-wrp .sp-menu-btn-txt {
  color: #fff;
}

/*active */
.active .sp-menu-btn-wrp .sp-menu-btn span {
  width: 55%;
}

.sp-menu-btn.active .top {
  top: 48.5%;
  transform: translateY(0) translateX(0) rotate(45deg);
}

.sp-menu-btn.active .middle {
  opacity: 0;
}

.sp-menu-btn.active .bottom {
  bottom: 48.5%;
  transform: translateY(0) translateX(0) rotate(-45deg);
}

/*	drawer inbox */
#drawer-nav {
  padding: 3% 5% 30vw;
  background-color: var(--bg-color);
}

#drawer-nav .drawer-logo {
  width: 50%;
  margin-bottom: 10%;
}

#drawer-nav .nav {
  margin-bottom: 20%;
}

#drawer-nav .nav .drawer-link {
  display: flex;
  align-items: center;
  gap: 5vw;
  box-sizing: border-box;
  padding: 4% 2%;
  border-bottom: 1px solid var(--main-color);
  font-size: 4vw;
  color: var(--font-color);
  font-weight: 800;
  position: relative;
}
#drawer-nav .nav .drawer-link::after {
  content: "";
  display: block;
  width: 2vw;
  height: 2vw;
  background: var(--main-color);
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 3%;
  margin: auto 0;
}
#drawer-nav .nav .drawer-link.drawer-dropdown::after {
  content: none;
}
#drawer-nav .nav .drawer-link .nav-img {
  width: 10vw;
  display: grid;
  justify-items: center;
}
#drawer-nav .nav .drawer-link .nav-img img {
  height: 100%;
}

#drawer-nav .nav .current a {
  color: var(--main-color);
  padding-left: 3%;
}
#drawer-nav .nav .current a::after {
  background-color: var(--main-color);
}

#drawer-nav .nav .drawer-dropdown span {
  display: block;
}

#drawer-nav .nav .drawer-dropdown span:before {
  background: var(--main-color);
}

#drawer-nav .nav .drawer-dropdown span:after {
  background: var(--main-color);
}

#drawer-nav .nav .current span:after {
  opacity: 0 !important;
}

#drawer-nav .nav .drawer-dropdown-bx {
  margin: 3% 0;
  padding-left: 4%;
  box-sizing: border-box;
}

#drawer-nav .nav .drawer-dropdown-bx > li > .drawer-link:before {
  border-left: 1px solid #000;
  border-bottom: 1px solid #000;
}

#drawer-nav .nav .drawer-dropdown-bx > li > .drawer-link span {
  padding: 0 0 0 5%;
}

/*original custom code */
/*sns */
.sns-list {
  margin: 10% auto 5%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sns-list li {
  width: 10%;
  margin-right: 5%;
}
.sns-list li a {
  display: block;
  width: 100%;
  min-width: 25px;
}
.sns-list li a img {
  max-width: none;
  width: 100%;
}

.sns-list li:last-child {
  margin-right: 0;
}

/*住所 */
.drawer-address {
  margin: 5% auto;
  text-align: center;
}

.drawer-address li {
  margin-bottom: 30px;
}

.drawer-address li:last-child {
  margin-bottom: 0;
}

.drawer-tel {
  font-size: 4vw;
  color: #333;
}

.drawer-tel small {
  font-size: 3.5vw;
}

/*rink-list */
.link-list {
  font-size: 3vw;
  margin-top: 10vw;
  display: flex;
  justify-content: center;
  gap: 5%;
  text-decoration: underline;
}

/*フォント */
body {
  font-size: 4vw;
  line-height: 1.8;
}

/*======================================================
 * ▽▽---共通スタイル---▽▽
 * =======================================================*/
html {
  scroll-padding: 0;
}

section {
  padding: 15vw 0;
}

.dl-item {
  display: flex;
}

.com-txt {
  line-height: 2;
}
.com-txt:not(:last-of-type) {
  margin-bottom: 5vw;
}

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

.line-btn {
  display: flex;
  align-items: center;
  gap: 3vw;
  padding-right: 6vw !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: 7vw;
}
.ttl01 .en {
  font-size: 5vw;
  color: var(--main-color-02);
  display: block;
  text-transform: uppercase;
}
.ttl01 .ja {
  font-size: 6.5vw;
}

.ttl02 {
  font-size: 5vw;
  margin-bottom: 20px;
}

.ttl03 {
  font-size: 4.2vw;
}

.txt-cap {
  font-size: 3.5vw;
}

.com-kado {
  border-radius: 5vw;
}
.com-tel {
  display: grid;
  justify-items: center;
  gap: 3vw;
}
.com-tel a {
  font-size: 7vw;
  background: url("../img/common/tel-icon.png") left center/5vw no-repeat;
  padding-left: 6vw;
  box-sizing: border-box;
}
.com-tel .tel-info dl {
  display: flex;
  gap: 3vw;
}
.com-tel .tel-info dl dt {
  background: var(--sub-color);
}

.check-item {
  position: relative;
}
.check-item::before {
  content: "";
  display: block;
  width: 4vw;
  height: 4vw;
  position: absolute;
  background: url("../img/common/check-bl.png") center/contain no-repeat;
  left: -5vw;
  top: 3vw;
}

.ill-box {
  position: relative;
}
.ill-box::before {
  content: "";
  display: block;
  width: 20vw;
  height: 13vw;
  position: absolute;
  background: url("../img/common/ill-dog.png") center/contain no-repeat;
  background-position: top;
  top: -5vw;
  right: -3vw;
}

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

.bg-pink {
  position: relative;
  background: var(--bg-color);
}
.bg-pink::after {
  content: "";
  display: block;
  width: 100%;
  height: 20vw;
  position: absolute;
  background: url(../img/common/bg-wave-top.png) bottom/100% 100% no-repeat;
  top: -20vw;
  z-index: -1;
}
.bg-pink::before {
  content: "";
  display: block;
  width: 100%;
  height: 120vw;
  position: absolute;
  background: url(../img/common/bg-wave-btm.png) bottom/100% 100% no-repeat;
  bottom: -25vw;
}
.bg-pink .inbox {
  position: relative;
}
.bg-pink .inbox .hart-dog {
  width: 35%;
  position: absolute;
  right: -7vw;
  bottom: -20vw;
}
.bg-pink .inbox .ill-house {
  width: 20vw;
  position: absolute;
  left: -3vw;
  top: -15vw;
}

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

.contact-bg {
  background: url(../img/common/contact-bg-le.png) top left 10%/30% no-repeat, url(../img/common/contact-bg-ri.png) bottom right 10%/40% no-repeat, var(--bg-color);
  position: relative;
  z-index: 1;
}
.contact-bg::before {
  content: "";
  display: block;
  width: 100%;
  height: 20vw;
  position: absolute;
  background: url(../img/common/bg-wave-top.png) bottom/100% 20vw no-repeat;
  top: -20vw;
  z-index: -1;
}
.contact-bg::after {
  content: "";
  display: block;
  width: 30vw;
  height: 24vw;
  position: absolute;
  background: url("../img/common/contact-deco.png") center/contain no-repeat;
  top: -5vw;
  right: 5vw;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 3vw;
}
.tag-list .tag {
  color: var(--main-color);
  padding: 0 3vw;
  line-height: 1;
  font-size: 3.5vw;
}

.alternately-li li {
  position: relative;
}
.alternately-li li .num {
  width: 12vw;
  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: -5vw;
  top: -3vw;
}

/*infotableスタイル*/
.com-desc-tbl {
  border: 2px solid var(--main-color);
  padding: 10vw 5vw;
}
.com-desc-tbl .dl-item {
  font-size: 3.2vw;
  display: flex;
  justify-content: space-between;
  padding: 3vw 0;
}
.com-desc-tbl .dl-item:not(:last-child) {
  border-bottom: 1px solid var(--bd-color);
}
.com-desc-tbl .dl-item dt {
  width: 30%;
}
.com-desc-tbl .dl-item dd {
  line-break: loose;
  width: 67%;
}

/*======================================================
 * △△---共通スタイル---△△
 * =======================================================*/
/*---------------------------▽▽---heder---▽▽------------------------*/
#header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 100;
  padding: 6vw 5vw;
}
#header .hd-logo {
  width: 60%;
}
#header .hd-logo img {
  display: block;
}

/*---------------------------△△---heder---△△------------------------*/
/*---------------------------▽▽---MV---▽▽------------------------*/
.top-mv {
  margin-top: 20vw;
  position: relative;
  background: url(../img/top/mv-bg-le.png) bottom left/70% no-repeat, url(../img/top/mv-bg-ri.png) top right/40% no-repeat;
}
.top-mv img {
  width: 100%;
}
.top-mv .mv-ct {
  width: 90%;
  margin-left: 5vw;
  padding-top: 5vw;
  position: relative;
  z-index: 10;
}
.top-mv .mv-img {
  margin-top: 5vw;
  width: 90%;
  margin-left: auto;
}

/*---------------------------△△---MV---△△------------------------*/
/*--------▽▽---MV---▽▽---------- */
#top-news .inbox {
  position: relative;
}
#top-news .inbox .news-list {
  display: grid;
  gap: 10vw;
}
#top-news .inbox .news-list .news-item a:hover {
  transform: translateX(10px);
}
#top-news .inbox .news-list .news-item a .txt-box {
  display: flex;
  margin: 0 5vw 2vw;
}
#top-news .inbox .news-list .news-item a .txt-box time {
  line-height: 1;
}
#top-news .inbox .news-list .news-item a h4 {
  padding: 3vw 5vw;
  width: 100%;
}
#top-news .inbox .news-ill {
  width: 10vw;
  position: absolute;
  left: -3vw;
  top: -10vw;
}

/*------------△△---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 -5vw/60% no-repeat;
  left: 0;
  bottom: 0;
  z-index: -1;
}
#top-greeting .inbox {
  position: relative;
  z-index: 10;
}
#top-greeting .inbox .gree-img {
  text-align: center;
  margin-bottom: 10vw;
}

#top-feature .inbox .feat-img {
  width: 35%;
  right: -5vw;
  top: -20vw;
}
#top-feature .inbox .feat-li {
  display: grid;
  gap: 15vw;
}
#top-feature .inbox .feat-li li {
  display: grid;
  justify-items: center;
}
#top-feature .inbox .feat-li li .bd-01 {
  width: 40vw;
  display: grid;
  place-items: center;
}
#top-feature .inbox .feat-li li .bd-01 img {
  height: 55%;
}
#top-flow {
  background: url(../img/top/flow-bg-ri.png) right bottom/40% 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: -10vw;
  z-index: 10;
}
#top-flow .flow-img {
  width: 30%;
  left: -5vw;
  top: -10vw;
}
#top-flow .flow-ill {
  width: 15%;
  bottom: -15vw;
  right: -5vw;
}
#top-flow .flow-li {
  gap: 10vw;
  display: grid;
  justify-content: center;
}
#top-puppy {
  position: relative;
}
#top-puppy::before {
  content: "";
  display: block;
  width: 40%;
  height: auto;
  position: absolute;
  background: url("../img/top/other-bg-le.png") center/contain no-repeat;
  aspect-ratio: 0.63;
  left: 0;
  bottom: -20vw;
}

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

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

.puppy-list {
  position: relative;
  z-index: 10;
  display: grid;
  gap: 10vw;
}

.puppy-item .tag-list {
  justify-content: center;
  gap: 5vw;
  margin-bottom: 3vw;
}
.puppy-item .tag-list .tag {
  color: var(--font-color);
  background: var(--accent-color);
  padding: 1vw 3vw;
}
.puppy-item .com-img {
  aspect-ratio: 1.4;
  margin-bottom: 3vw;
}
.puppy-item .puppy-tbl {
  margin-top: 3vw;
}
.puppy-item .puppy-tbl .dl-item {
  display: flex;
  justify-content: space-between;
  padding: 2vw 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;
  padding: 5vw 5vw 15vw;
}
.puppy-item > a .com-img {
  width: 100%;
}
.puppy-item > a .dl-item dt {
  max-width: 30%;
}
.puppy-item > a .dl-item dd {
  max-width: 68%;
}
.puppy-item > a .com-arw {
  text-align: right;
  position: absolute;
  right: 5vw;
  bottom: 5vw;
}

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

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

#common-contact .inbox .ttl01 {
  margin: 0;
}
#common-contact .inbox .contact-box {
  background: url(../img/common/contact-bg.png) center/100% 100% no-repeat;
  padding: 10vw 5vw;
  margin-top: -5vw;
}
#common-contact .inbox .contact-box .com-tel {
  margin-bottom: 5vw;
}
#common-contact .inbox .contact-box .com-tel p {
  margin-top: 3vw;
}
#common-contact .inbox .contact-box .mail-btn-box {
  display: grid;
  justify-items: center;
}
#common-contact .inbox .contact-box .mail-btn-box a {
  padding: 3vw 0;
}
#common-contact .inbox .contact-img {
  width: 35%;
  bottom: -15vw;
  left: -5vw;
}

#footer {
  position: relative;
  padding-bottom: 30vw;
}
#footer::before {
  content: "";
  display: block;
  width: 20%;
  height: auto;
  position: absolute;
  background: url("../img/common/ft-deco.png") center/contain no-repeat;
  aspect-ratio: 1;
  left: 0;
  top: -15vw;
  z-index: 10;
}
#footer .ft-area {
  padding: 10vw 0;
  position: relative;
}
#footer .ft-area::before {
  content: "";
  display: block;
  width: 20vw;
  height: auto;
  position: absolute;
  background: url("../img/common/ft-ill.png") center/contain no-repeat;
  aspect-ratio: 1.58;
  right: -5vw;
  bottom: -5vw;
}
#footer .ft-area .ft-le {
  display: grid;
  justify-items: center;
  gap: 10vw;
  margin-bottom: 15vw;
}
#footer .ft-area .ft-le .ft-info {
  display: grid;
  gap: 3vw;
}
#footer .ft-area .ft-le .ft-info .dl-item {
  font-size: 3.2vw;
  gap: 3vw;
}
#footer .ft-area .ft-le .copyright {
  position: absolute;
  bottom: 0;
  font-size: 3vw;
  text-align: center;
}
#footer .ft-area .ft-ri {
  display: flex;
  padding-bottom: 10vw;
  justify-content: center;
  align-items: start;
  gap: 7vw;
}
#footer .ft-area .ft-ri .nav-list {
  display: grid;
  gap: 5vw;
}
#footer .ft-area .ft-ri .nav-list li {
  position: relative;
  font-size: 3.2vw;
}
#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 -2vw;
  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: 20vw;
  background: url(../img/sv/bg-le.png) left top/54% no-repeat, url(../img/sv/bg-ri.png) right bottom/40% no-repeat;
}
.sv-area .sv {
  width: 100%;
  margin: 0 auto;
  display: grid;
  justify-items: center;
  position: relative;
  padding: 10vw 0 10vw;
}
.sv-area .sv .sv-catch {
  position: relative;
  z-index: 10;
  text-align: center;
  width: 90%;
  margin: 0 auto 5vw;
  font-size: 6vw;
  border-radius: 3vw;
  box-shadow: 0 0 10px rgba(114, 114, 114, 0.4);
  padding: 2vw 0;
  background: var(--main-color);
}
.sv-area .sv .sv-img {
  width: 100%;
  margin: auto 0;
}
.sv-area .sv .sv-img img {
  width: 100%;
}

/*---------------------------△△---SV---△△------------------------*/
/*----------▽▽---breadcrumbs---▽▽-------*/
.breadcrumbs-area {
  position: relative;
  z-index: 10;
}
.breadcrumbs-area .breadcrumbs {
  white-space: nowrap;
  overflow-x: scroll;
  overflow-y: hidden;
  display: flex;
  position: absolute;
  left: 0;
  right: 0;
  top: 2vw;
  font-size: 3.5vw;
}
.breadcrumbs-area .breadcrumbs li:not(:first-child)::before {
  content: ">";
  padding: 0 10px;
}

/*---------------------------△△---breadcrumbs---△△------------------------*/
#about-recommend .inbox {
  display: grid;
  justify-items: center;
}
#about-recommend .inbox ul {
  margin-top: 5vw;
  margin-left: 5vw;
}

#about-faq .inbox {
  padding-top: 10vw;
}
#about-faq .inbox .faq-li {
  display: grid;
  gap: 15vw;
}
#about-faq .inbox .faq-li .faq-item > .ttl02 {
  margin-bottom: 5vw;
}
#about-faq .inbox .faq-li .faq-item .bd-01 {
  padding: 2vw 7vw;
  padding-right: 15vw;
  margin-bottom: 5vw;
  position: relative;
}
#about-faq .inbox .faq-li .faq-item .bd-01::after {
  content: "";
  display: block;
  width: 9vw;
  height: auto;
  position: absolute;
  background: url("../img/about/faq-ill.png") center/contain no-repeat;
  aspect-ratio: 0.59;
  bottom: 0;
  right: 3vw;
}
#about-faq .inbox .faq-li .faq-item .maru-pd {
  padding: 6vw 9vw;
}
#about-faq .inbox .faq-li .faq-item ul {
  display: grid;
  gap: 5vw;
}
#about-faq .inbox .faq-li .faq-item ul li {
  display: grid;
  justify-items: center;
  gap: 3vw;
}
#about-faq .inbox .faq-li .faq-item ul li .faq-dog {
  display: grid;
  align-items: flex-end;
}
#about-faq .inbox .faq-li .faq-item ul li .ttl02 {
  margin: 0;
  padding: 2vw 5vw;
}
#about-faq .inbox .faq-li .faq-item .com-txt {
  padding: 0 7vw;
}

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

#about-notice .inbox {
  z-index: 10;
}
#about-notice .inbox .ttl01 .ttl02 {
  font-size: 4.5vw;
  margin: 0;
}
#about-notice .inbox .notice-ill {
  width: 35%;
  left: -7vw;
  top: -15vw;
}
#about-notice .inbox .notice-img {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: 5vw;
}
#info-sale .sale-li {
  display: grid;
  gap: 15vw;
}
#info-sale .sale-li li {
  display: grid;
  justify-items: center;
  gap: 3vw;
}
#info-sale .sale-li li .bg-clr01 {
  width: 40vw;
  display: grid;
  place-items: center;
}
#info-pdf .inbox {
  position: relative;
  z-index: 10;
  top: 5vw;
  gap: 5vw;
  display: grid;
}
#info-pdf .inbox li a {
  width: 100%;
  height: 30vw;
  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: 3vw 6vw;
  font-size: 5vw;
  margin: 0;
  position: relative;
  background: url("../img/info/pdf-icon.png") left center/10vw no-repeat;
  padding-left: 12vw;
  box-sizing: border-box;
}
#info-pdf .inbox li a .check-arw {
  position: absolute;
  right: 10vw;
  bottom: 3vw;
  z-index: 1;
  font-size: 4vw;
}
#info-pdf .inbox li a .check-arw::before {
  content: "";
  display: block;
  width: 10vw;
  height: auto;
  position: absolute;
  aspect-ratio: 1;
  background: var(--accent-color);
  border-radius: 50vw;
  right: -5vw;
  top: -2vw;
  z-index: -1;
}

#info {
  padding: 160px 0 0;
}
#map {
  padding: 20vw 0;
}
#map .map {
  height: 80vw;
  overflow: hidden;
  position: relative;
  z-index: 10;
}

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

/*---------------------------▽▽---site.html---▽▽------------------------*/
#site-map .site-list {
  padding: 10% 0 30%;
}
#site-map .site-list li {
  font-size: 4.2vw;
}
#site-map .site-list li a {
  display: block;
  padding: 6% 0;
  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.html---△△------------------------*/
/*---------------------------▽▽---404.html---▽▽------------------------*/
#notfound .inbox .txt-blc {
  padding: 10% 0 20%;
}
#notfound .inbox .txt-blc a {
  text-decoration: underline;
  color: var(--font-color);
}

/*---------------------------△△---404.html---△△------------------------*/
/*---------------------------▽▽---privacy.html---▽▽------------------------*/
#privacy .privacy-box {
  padding: 0;
  margin-bottom: 10vw;
}
#privacy .privacy-box .ttl02 {
  color: #fff;
  border-radius: 2vw;
  font-size: 5vw;
  text-align: left;
  margin-bottom: 5vw;
  line-height: 1.5;
  background: var(--main-color);
  padding: 3vw 2vw;
}

/*---------------------------△△---privacy.html---△△------------------------*/
/*---------------------------▽▽---news.html---▽▽------------------------*/
#news .select-area {
  margin-bottom: 10vw;
  position: relative;
}
#news .select-area .select-box {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-weight: 500;
}
#news .news-area {
  margin-bottom: 10vw;
}
#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: 8% 0;
}
#news .news-area .news-list .news-item a .news-txt-box .data-box {
  display: flex;
  align-items: flex-start;
  line-height: 1.5;
  gap: 2vw 3%;
  font-size: 3.5vw;
  margin-bottom: 4vw;
}
#news .news-area .news-list .news-item a .news-txt-box .data-box time {
  width: 30%;
  line-height: 2;
  font-weight: 500;
}
#news .news-area .news-list .news-item a .news-txt-box .data-box .tag-list {
  width: 68%;
}
#news .news-area .news-list .news-item a .news-txt-box .list-ttl {
  font-weight: 500;
  font-size: 4.2vw;
  margin-bottom: 3vw;
  letter-spacing: 0.1em;
}
#news .news-area .news-list .news-item a .news-txt-box .list-txt {
  font-size: 3.4vw;
  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: 35%;
}
#news .news-area .news-list .news-item .thumbnail-on .news-txt-box {
  width: 60%;
}
#news .news-area .news-list .news-item .thumbnail-on .news-txt-box .data-box {
  flex-wrap: wrap;
}
#news .news-area .news-list .news-item .thumbnail-on .news-txt-box .data-box time {
  width: 100%;
}
#news .news-area .news-list .news-item .thumbnail-on .news-txt-box .data-box .tag-list {
  width: 100%;
}

/*detail */
#detail {
  padding-bottom: 30vw;
}
#detail .detail-box {
  margin-bottom: 20vw;
}
#detail .detail-box .data-box {
  display: flex;
  align-items: flex-start;
  line-height: 1.5;
  gap: 4%;
  font-size: 3.5vw;
  padding-top: 10%;
  margin-bottom: 5vw;
}
#detail .detail-box .data-box time {
  line-height: 2;
  font-weight: 500;
}
#detail .detail-box .data-box .tag-list {
  width: 68%;
  display: flex;
  flex-wrap: wrap;
  gap: 2vw 1vw;
  font-size: 3.3vw;
}
#detail .detail-box .data-box .tag-list .tag a {
  display: block;
  width: 100%;
  height: 100%;
}
#detail .detail-box .detail-ttl {
  letter-spacing: 0.05em;
  text-align: left;
  font-size: 5.5vw;
  font-weight: 500;
  padding: 0 0 4%;
  margin-bottom: 5vw;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
#detail .detail-box .detail-txt {
  font-size: 4vw;
  line-height: 1.8;
  letter-spacing: 0.1em;
}
#detail .detail-box .detail-txt img {
  margin: 5%;
}

.pagenation {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3%;
  margin-top: 10vw;
  position: relative;
  z-index: 20;
}
.pagenation li {
  width: 9vw;
  height: 9vw;
  box-sizing: border-box;
  border: 2px solid var(--main-color);
  font-size: 4vw;
  background: #fff;
  border-radius: 5px;
}
.pagenation li a, .pagenation li span {
  padding: 20% 35%;
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 100%;
  line-height: 1;
}
.pagenation .current {
  background: var(--main-color);
  color: #fff;
}

.pagenation-detail {
  position: relative;
  margin-top: 10%;
}
.pagenation-detail p a {
  background: var(--main-color);
  border-radius: 5px;
  padding: 5% 0;
  box-sizing: border-box;
  text-align: center;
  font-size: 3.5vw;
  letter-spacing: 0.2em;
  position: absolute;
  color: #fff;
}
.pagenation-detail .left a {
  top: 0;
  left: 0;
  width: 20%;
}
.pagenation-detail .right a {
  top: 0;
  right: 0;
  width: 20%;
}
.pagenation-detail .center a {
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 35%;
}

/*---------------------------△△---news.html---△△------------------------*/
/*---------------------------▽▽---contact.html---▽▽------------------------*/
#contact .table-wrapper {
  width: 100%;
  box-sizing: border-box;
  background: #fff;
  margin-bottom: 20%;
  margin-top: 15vw;
}
#contact .table-wrapper .contact-form-table tr {
  margin-bottom: 5%;
}
#contact .table-wrapper .contact-form-table tr::before {
  top: 4vw;
}
#contact .table-wrapper .contact-form-table tr th {
  width: 100%;
  box-sizing: border-box;
  padding: 3% 2% 3%;
  margin-bottom: 3%;
}
#contact .table-wrapper .contact-form-table tr th .required-mark {
  color: var(--main-color);
  background: none;
  padding: 1% 2%;
  margin: -0.5%;
  float: none;
}
#contact .table-wrapper .contact-form-table tr th .upload-notice {
  display: inline-block;
  margin-top: 5%;
  line-height: 1.5;
}
#contact .table-wrapper .contact-form-table tr td {
  width: 100%;
  box-sizing: border-box;
}
#contact .table-wrapper .contact-form-table tr td .upload-item-wrap .thumb {
  width: 40vw;
  height: 40vw;
  margin-bottom: 5%;
}
#contact .table-wrapper .contact-form-table tr td .ancion-btn-wrap {
  width: 30vw;
}
#contact .table-wrapper .contact-form-table tr td .ancion-btn-wrap .ancion-btn {
  font-size: 3vw;
  width: 100%;
  box-sizing: border-box;
  padding: 12% 0;
  margin-bottom: 10%;
  line-height: 1;
}
#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 {
  font-family: "游ゴシック", "Meiryo", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  padding: 4%;
  font-size: 4vw;
  box-shadow: none;
}
#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 textarea {
  height: auto;
}
#contact .table-wrapper .contact-form-table tr td .p-postal-code {
  width: 30%;
}
#contact .table-wrapper .contact-form-table tr td .birth-txt {
  width: 30%;
}
#contact .table-wrapper .contact-form-table tr td .error-text {
  font-family: "游ゴシック", "Meiryo", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  font-weight: 500;
}
#contact .table-wrapper .contact-form-table tr .select-area {
  padding: 4% 0;
  display: inline;
  position: relative;
}
#contact .table-wrapper .contact-form-table tr .select-area .select-box {
  width: 60%;
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 10%;
}
#contact .table-wrapper .contact-form-table tr .select-area::after {
  content: "";
  display: block;
  width: 1vw;
  height: 1vw;
  position: absolute;
  border-right: 1px solid #262626;
  border-bottom: 1px solid #262626;
  transform: rotate(45deg);
  right: 3vw;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
#contact .table-wrapper .contact-form-table tr .check-box-confirmation {
  display: flex;
  flex-wrap: wrap;
  gap: 3vw;
}

.privacy-agree {
  display: block;
}
.privacy-agree a {
  text-decoration: underline;
}

.check {
  margin: 10% auto 0px;
}
.check .contact-recaptcha-wrap {
  margin: 0 auto 15%;
}

.contact-submits-wrap {
  width: 80%;
  margin: 0 auto 0;
}
.contact-submits-wrap .contact-check-btn {
  width: 100%;
  height: 15vw;
  color: #fff;
  font-size: 4vw;
  letter-spacing: 0.2em;
  transition: 0.3s;
  cursor: pointer;
  position: relative;
  margin: 0;
  border-radius: 50vw;
}
.contact-submits-wrap .contact-back-btn {
  width: 80%;
  border: none;
  background: #bebebe;
  margin-bottom: 10%;
  border-radius: 5px;
  font-size: 4vw;
}

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

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

/*---------------------------▽▽---contact.html---▽▽------------------------*/