@charset "UTF-8";
/*==========================================
PC共通
===========================================*/
html {
  font-size: 62.5%;
}

/*==========================================
テーブルレイアウト
===========================================*/
.com-table tr {
  display: flex;
  padding: 20px 0;
}
.com-table tr th {
  padding: 15px 10px;
  width: 180px;
  vertical-align: top;
}
.com-table tr td {
  width: calc(100% - 180px);
  padding: 15px 20px;
}
.com-table tr td a[href^="mailto:"] {
  text-decoration: underline;
}
.com-table tr td .tel__txt {
  display: inline-block;
  vertical-align: super;
  margin-left: 10px;
  line-height: 1.6;
}

/*==========================================
パンくずリスト
===========================================*/
div .bread {
  font-size: var(--font-size-14);
  position: relative;
  z-index: 100;
}
div .bread .breadcrumbs {
  position: absolute;
  width: 1080px;
  margin: 0 auto;
  inset: 10px auto auto 0;
  gap: 10px 20px;
}
div .bread li {
  color: var(--primary-color);
  position: relative;
}
div .bread li:after {
  content: " > ";
  color: var(--body-font-color);
  position: absolute;
  inset: 0 -15px 0 auto;
  margin: auto 0;
}
div .bread li:last-child:after {
  content: "";
}
div .bread li a {
  color: var(--body-font-color);
}
div .bread li a:hover {
  text-decoration: underline;
}

/*==========================================
共通タイトル
===========================================*/
h1,
h2,
h3,
h4,
h5,
h6 {
  letter-spacing: var(--body-letter-spacing);
}

.section-title {
  text-shadow: 3px 3px 0px var(--color-white), -3px -3px 0px var(--color-white), -3px 3px 0px var(--color-white), 3px -3px 0px var(--color-white), 3px 0px 0px var(--color-white), -3px 0px 0px var(--color-white), 0px 3px 0px var(--color-white), 0px -3px 0px var(--color-white);
  font-family: var(--sub-font-family);
  font-size: var(--font-size-50);
  line-height: 1.6;
  text-align: center;
  margin-bottom: 45px;
}
.section-title span {
  color: var(--primary-color);
  font-size: var(--font-size-60);
}

.headline-title {
  border-bottom: 1px solid var(--form-border-color);
  font-size: var(--font-size-28);
  font-weight: var(--font-weight-bold);
  padding: 5px 10px 5px 30px;
  margin-bottom: 15px;
  background: url(../img/common/headline-ttl_ic.png) left top 25px no-repeat;
}

.sub-title {
  font-size: var(--font-size-24);
  font-family: var(--sub-font-family);
  text-align: center;
  color: var(--primary-color);
  text-shadow: 3px 3px 0px var(--color-white), -3px -3px 0px var(--color-white), -3px 3px 0px var(--color-white), 3px -3px 0px var(--color-white), 3px 0px 0px var(--color-white), -3px 0px 0px var(--color-white), 0px 3px 0px var(--color-white), 0px -3px 0px var(--color-white);
}
.sub-title--ribbon {
  width: 530px;
  margin: 0 auto 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  position: relative;
}
.sub-title--ribbon::before, .sub-title--ribbon::after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  top: 0;
  border-width: 0px 18px 29px 0px;
  border-color: transparent var(--primary-color) transparent transparent;
}
.sub-title--ribbon::before {
  left: -18px;
}
.sub-title--ribbon::after {
  transform: scale(-1, 1);
  right: -18px;
}
.sub-title--ribbon span {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 58px;
}
.sub-title--ribbon span::before, .sub-title--ribbon span::after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  bottom: 0;
  border-width: 0px 0px 29px 18px;
  border-color: transparent transparent var(--primary-color) transparent;
}
.sub-title--ribbon span::before {
  left: -18px;
}
.sub-title--ribbon span::after {
  right: -18px;
  transform: scale(-1, 1);
}

/*==========================================
共通ブロック・要素
===========================================*/
.com-content p {
  margin-bottom: 30px;
}
.com-content p:last-child {
  margin-bottom: 0;
}

.com-text {
  line-height: var(--body-line-height);
  letter-spacing: var(--body-letter-spacing);
}

#g-map h4 {
  font-size: var(--font-size-18);
  font-weight: var(--font-weight-bold);
  margin-bottom: 5px;
}
#g-map h4 span {
  padding-left: 20px;
}
#g-map .map {
  height: 400px;
  /*==========================================
  iframe レスポンシブ　アスペクト比を保ちながら縦横を伸縮
  ===========================================*/
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}
#g-map .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.com-button {
  height: 70px;
  color: var(--color-white);
  font-size: var(--font-size-20);
  font-family: var(--sub-font-family);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 35px;
  background: var(--primary-color);
  padding: 0 20px;
}
.com-button:hover {
  transform: scale(0.98);
}

.has-arrow {
  width: 100%;
  display: block;
}
.has-arrow::before {
  font-size: var(--font-size-25);
  content: "\f133";
  right: 0;
}

.com-address .address__locate {
  color: var(--color-white);
  font-size: var(--font-size-14);
  margin-bottom: 30px;
}
.com-address .address__worktime {
  gap: 20px;
}
.com-address .address__worktime .worktime__title {
  background: var(--color-white);
  border-radius: 6px;
  font-size: var(--font-size-14);
  width: 68px;
  text-align: center;
  margin-bottom: 5px;
  line-height: 1.5;
  color: var(--primary-color);
}
.com-address .address__worktime .worktime__content {
  color: var(--color-white);
  font-size: var(--font-size-14);
}
.com-address .address__worktime .worktime__text {
  padding-left: 25px;
}
.com-address .address__worktime .worktime__text--lunch {
  background: url(../img/common/ft-lunch_ic.png) left center no-repeat;
}
.com-address .address__worktime .worktime__text--dinner {
  background: url(../img/common/ft-dinner_ic.png) left center no-repeat;
}

/*==========================================
コンポーネントファイル
===========================================*/
.c-contact__list {
  gap: 20px;
}
.c-contact__list .com-tel {
  text-align: center;
  line-height: 1.4;
}
.c-contact__list .com-tel .tel__num {
  font-size: var(--font-size-30);
  font-family: var(--sub-font-family);
  color: var(--color-white);
  padding-left: 35px;
  background: url(../img/common/tel_ic.png) left center no-repeat;
}
.c-contact__list .com-tel .tel__text {
  display: block;
}
.c-contact__list .contact__item--round {
  width: 50px;
  height: 50px;
}
.c-contact__list .contact__item--round a {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
}
.c-contact__list .contact__item--round a:hover {
  opacity: 1;
  background: var(--fourth-color);
  transform: scale(0.95);
}

/*==========================================
header
===========================================*/
#header {
  background: var(--primary-color);
  position: absolute;
  inset: 0 0 auto;
  z-index: 1001;
  padding: 15px 1.302%;
}
#header::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 28px;
  background: url(../img/common/hd_frame.png) bottom center repeat-x;
  inset: auto 0 -28px;
}
#header .header__right {
  width: 675px;
}
#header .c-contact__list {
  justify-content: flex-end;
}

/*==========================================
nav
===========================================*/
#nav {
  margin-top: 10px;
}
#nav .nav__list {
  gap: 0 20px;
}
#nav .nav__item {
  font-size: var(--font-size-14);
  letter-spacing: 0;
}
#nav .nav__item a {
  color: var(--color-white);
  padding-left: 20px;
  display: block;
  position: relative;
}
#nav .nav__item a::before {
  position: absolute;
  content: "";
  inset: 0 auto 0 0;
  background: var(--color-white);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  margin: auto 0;
  z-index: 1;
}
#nav .nav__item:nth-child(1) a {
  padding-left: 0;
}
#nav .nav__item:nth-child(1) a::before {
  background: none;
}

/*==========================================
mv
===========================================*/
#top-mv {
  height: 930px;
  background: url(../img/top/mv/mv_bg.jpg) center/cover no-repeat;
  position: relative;
}
#top-mv .mv__catch {
  width: 38.0208%;
  margin: 0 auto;
  position: absolute;
  inset: auto 0 26%;
}

/*==========================================
top
===========================================*/
/* top-about
------------------------*/
#top-about {
  padding: 85px 0 115px;
  background: url(../img/top/about-lc_ill.png) left calc(50% - 750px) center/9.7916% no-repeat, url(../img/top/about-lb_ill.png) left 1.5625% bottom/17.9166% no-repeat, url(../img/top/about-en_txt.png) right -30px bottom 45px/67.7604% no-repeat, url(../img/top/about-l_footprint.png) left top no-repeat, var(--third-color);
}
#top-about .about__inbox {
  padding-bottom: 110px;
  position: relative;
  width: 1115px;
}
#top-about .about__title {
  letter-spacing: 0;
  text-align: left;
}
#top-about .about__content {
  width: 510px;
}
#top-about .about__content .about__title {
  margin-bottom: 45px;
  padding-top: 25px;
  position: relative;
}
#top-about .about__content .about__title::before {
  position: absolute;
  content: "";
  width: 65px;
  height: 42px;
  background: url(../img/top/about-ttl_deco.png) center no-repeat;
  inset: 0 auto auto -45px;
}
#top-about .about__content .about__text {
  margin-bottom: 75px;
}
#top-about .about__content .about__button {
  width: 400px;
}
#top-about .about__img-list {
  position: absolute;
  width: 815px;
  height: 100%;
  inset: 0 -245px auto auto;
  text-align: right;
}
#top-about .about__img-list .about__img-item,
#top-about .about__img-list img {
  border-radius: 20px;
}
#top-about .about__img-list .about__img-item--bk {
  width: 718px;
  margin-left: auto;
}
#top-about .about__img-list .about__img-item--front {
  position: absolute;
  inset: auto auto 0 0;
}

/* top-gallery
------------------------*/
#top-gallery {
  padding: 175px 0 130px;
}
#top-gallery .gallery__inbox {
  width: clamp(1200px, 83.333%, 1600px);
  border-radius: 58px;
  background: var(--third-color);
  border: 2px dotted var(--accent-color);
  position: relative;
}
#top-gallery .gallery__inbox::before {
  position: absolute;
  content: "";
  inset: auto -65px -40px auto;
  margin: auto 0;
  width: 428px;
  height: 440px;
  background: url(../img/top/gallery-rb_ill.png) center/100% no-repeat;
}
#top-gallery .gallery__inner {
  padding: 100px 0 95px;
  width: 1080px;
  margin: 0 auto;
  position: relative;
}
#top-gallery .gallery__inner .gallery__title {
  position: absolute;
  inset: -49px 0 auto;
  font-size: var(--font-size-50);
  color: var(--color-white);
  width: 890px;
  margin: 0 auto;
  background: var(--accent-color);
}
#top-gallery .gallery__inner .gallery__title::before, #top-gallery .gallery__inner .gallery__title::after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  top: 0;
  border-width: 0px 35px 49px 0px;
  border-color: transparent var(--accent-color) transparent transparent;
}
#top-gallery .gallery__inner .gallery__title::before {
  left: -35px;
}
#top-gallery .gallery__inner .gallery__title::after {
  transform: scale(-1, 1);
  right: -35px;
}
#top-gallery .gallery__inner .gallery__title span {
  width: 100%;
  position: relative;
  height: 98px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#top-gallery .gallery__inner .gallery__title span::before, #top-gallery .gallery__inner .gallery__title span::after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  bottom: 0;
  border-width: 0px 0px 49px 35px;
  border-color: transparent transparent var(--accent-color) transparent;
}
#top-gallery .gallery__inner .gallery__title span::before {
  left: -35px;
}
#top-gallery .gallery__inner .gallery__title span::after {
  right: -35px;
  transform: scale(-1, 1);
}
#top-gallery .gallery__inner .gallery__text {
  text-align: center;
  margin-bottom: 45px;
}
#top-gallery .gallery__inner .gallery__button {
  width: 400px;
  margin: 0 auto;
}
#top-gallery .gallery__inner .c-gallery__list {
  margin-top: 70px;
}

.c-gallery__list {
  gap: 37.5px;
}
.c-gallery__list .gallery__item {
  width: 335px;
}
.c-gallery__list .gallery__item .gallery__item-img {
  width: 100%;
  height: 335px;
  transition: all 0.3s;
}
.c-gallery__list .gallery__item .gallery__item-img,
.c-gallery__list .gallery__item .img-eff,
.c-gallery__list .gallery__item img {
  border-radius: 18px;
}
.c-gallery__list .gallery__item:hover .gallery__item-img {
  border-width: 5px;
}
.c-gallery__list .gallery__item:hover .gallery__item-caption {
  color: var(--primary-color);
}
.c-gallery__list .gallery__item .gallery__item-caption {
  font-size: var(--font-size-16);
  padding-left: 30px;
  margin-top: 5px;
  background: url(../img/top/gallery-ttl_ic.png) left top 7px no-repeat;
  transition: all 0.3s;
}

/* top-intro
------------------------*/
#top-intro {
  padding: 70px 0 115px;
  background: url(../img/top/intro_bg.jpg) center/cover no-repeat;
}
#top-intro .inbox {
  width: clamp(1200px, 91.1458%, 1750px);
}
#top-intro .intro__title {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  margin: 0 auto 50px;
  padding: 25px 25px 0 0;
  background: url(../img/top/intro-ttl_deco.png) right top no-repeat;
}
#top-intro .intro__list {
  gap: 4%;
}
#top-intro .intro__item {
  width: 48%;
  border-radius: 19px;
  padding: 80px 3.142% 65px;
}
#top-intro .intro__item-title {
  width: 65.9523%;
  min-width: 440px;
  background: var(--color-white);
  font-size: clamp(4.2rem, 2.65vw, 5rem);
  text-align: center;
  border-radius: 41px;
  line-height: 1.5;
  margin: 0 auto 40px;
  position: relative;
}
#top-intro .intro__item-title::before {
  position: absolute;
  content: "";
}
#top-intro .intro__item--staff .intro__item-title::before {
  width: 21.6606%;
  height: 185px;
  background: url(../img/top/intro-staff-ttl_ic.png) center/100% no-repeat;
  inset: -75px 6.5% auto auto;
}
#top-intro .intro__item--dog .intro__item-title::before {
  width: 20.2166%;
  height: 111px;
  background: url(../img/top/intro-dog-ttl_ic.png) center/100% no-repeat;
  inset: auto auto -37px 11.85%;
}
#top-intro .intro__item-text {
  text-align: center;
  margin-bottom: 30px;
}
#top-intro .intro__item-button {
  width: 400px;
  margin: 0 auto;
}

/* top-sns
------------------------*/
#top-sns {
  padding: 170px 0 185px;
  background: url(../img/top/sns-rb_ill.png) right 2.34375% bottom/16.0416% no-repeat, url(../img/top/sns-lt_footprint.png) left top 620px no-repeat, url(../img/top/sns_bg.jpg) top center/100% no-repeat, var(--third-color);
  position: relative;
}
#top-sns::before {
  position: absolute;
  content: "";
  width: 16.0416%;
  max-width: 308px;
  height: clamp(205.33px, 14.739vw, 283px);
  background: url(../img/top/sns-rb_ill.png) center bottom/100% no-repeat;
  inset: auto 2.34375% 0 auto;
}
#top-sns .sns__inbox {
  width: clamp(1200px, 83.333%, 1600px);
  background: var(--third-color);
  border-radius: 58px 58px 0 0;
  padding: 100px 0 0;
}
#top-sns .sns__title {
  text-align: center;
  padding-bottom: 65px;
  margin-bottom: 30px;
  background: url(../img/top/sns-ttl_deco.png) bottom center no-repeat;
}
#top-sns .sns__text {
  text-align: center;
  margin-bottom: 45px;
}
#top-sns .sns__list {
  width: 1080px;
  margin: 120px auto 0;
  gap: 40px;
}
#top-sns .sns__list .sns__item {
  width: 520px;
  height: 955px;
}
#top-sns .sns__list .sns__item iframe {
  width: 100%;
  height: 100%;
  border-radius: 19px !important;
}
#top-sns .sns__button {
  width: 400px;
  margin: 0 auto;
  background-image: url(../img/common/sns/Instagram_Glyph_White.svg);
  background-position: 20% 50%;
  background-repeat: no-repeat;
  background-size: 35px;
  padding: 0 30px 0 50px;
}

/* top-takeout
------------------------*/
#top-takeout {
  padding: 135px 0 150px;
}
#top-takeout .takeout__inbox {
  position: relative;
  border-radius: 58px;
  width: clamp(1250px, 83.333%, 1600px);
  border: 2px dotted var(--accent-color);
  padding: 85px 0 95px;
  text-align: center;
}
#top-takeout .takeout__inbox::before {
  position: absolute;
  content: "";
  width: 19.6875%;
  height: 198px;
  background: url(../img/top/takeout-lb_ill.png) center bottom/100% no-repeat;
  inset: auto auto -40px 9.0625%;
}
#top-takeout .takeout__title {
  margin-bottom: 30px;
  font-size: clamp(4.2rem, 2.65vw, 5rem);
}
#top-takeout .takeout__title span {
  display: block;
  font-size: clamp(5rem, 3.13vw, 6rem);
}
#top-takeout .takeout__text {
  font-size: clamp(1.45rem, 0.75vw, 1.6rem);
}
#top-takeout .takeout__text span {
  color: var(--primary-color);
  font-size: var(--font-size-18);
  font-weight: var(--font-weight-bold);
}
#top-takeout .takeout__img {
  position: absolute;
}
#top-takeout .takeout__img--lt {
  width: 24.1875%;
  inset: -45px auto auto -30px;
}
#top-takeout .takeout__img--rb {
  width: 24.5%;
  inset: auto 20px -40px auto;
}

/* top-news
------------------------*/
#top-news {
  padding: 110px 0 120px;
  background: url(../img/top/news-rb_footprint.png) right 4.1666% bottom -20px/22.03125% no-repeat, var(--third-color);
}
#top-news .inbox {
  position: relative;
  min-height: 230px;
}
#top-news .news__post-list {
  width: 830px;
}
#top-news .news__post-list .news__post {
  background-image: linear-gradient(to right, var(--accent-color) 2px, transparent 2px);
  background-size: 10px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
#top-news .news__post-list .news__post a {
  padding: 20px 10px;
}
#top-news .news__post-list .news__post a:hover {
  transform: translateX(10px);
}
#top-news .news__post-list .news__post:first-child a {
  padding-top: 0;
}
#top-news .news__post-list .news__post:last-child {
  background: none;
}
#top-news .news__post-list .news__post:last-child a {
  padding-bottom: 0;
}
#top-news .news__post-list .news__post time,
#top-news .news__post-list .news__post .category-label {
  color: var(--primary-color);
}
#top-news .news__post-list .news__post time {
  width: 90px;
}
#top-news .news__post-list .news__post .category-label {
  width: calc(100% - 90px);
}
#top-news .news__post-list .news__post .category-label li {
  padding: 0 10px;
  position: relative;
}
#top-news .news__post-list .news__post .category-label li::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 15px;
  inset: 0 auto 0 0;
  margin: auto 0;
  background: var(--primary-color);
}
#top-news .news__post-list .news__post-title {
  width: 100%;
  margin-top: 5px;
}
#top-news .news__button {
  position: absolute;
  inset: auto auto 0 0;
  color: var(--primary-color);
  font-size: var(--font-size-20);
}
#top-news .news__button .has-arrow {
  padding-right: 45px;
  transition: all 0.3s;
}
#top-news .news__button .has-arrow:hover {
  padding-right: 55px;
}
#top-news .news__button .has-arrow::before {
  right: 0;
}

/*==========================================
footer
===========================================*/
#footer {
  background: var(--primary-color);
  padding: 95px 0;
}
#footer .footer__left {
  width: -moz-fit-content;
  width: fit-content;
}
#footer .footer__left .footer__logo {
  display: inline-block;
  margin-bottom: 15px;
}
#footer .footer__left .footer__address {
  margin-bottom: 15px;
}
#footer .footer__right {
  width: 400px;
}
#footer .footer__right .footer__ofc-button {
  background: var(--color-white);
  color: var(--primary-color);
  margin-bottom: 75px;
}
#footer .footer__right .footer__nav {
  gap: 10px 15px;
}
#footer .footer__right .footer__nav .nav__item {
  font-size: var(--font-size-14);
}
#footer .footer__right .footer__nav .nav__item a {
  color: var(--color-white);
}
#footer .footer__right .footer__nav .nav__item a:hover {
  text-decoration: underline;
}

#copyright {
  word-break: normal;
  text-align: right;
  margin-top: 75px;
  font-size: var(--font-size-11);
  color: var(--color-white);
}
#copyright small {
  font-size: var(--font-size-11);
}
#copyright a {
  color: var(--color-white);
  text-decoration: underline;
}

/*==========================================
sv
===========================================*/
.lower-sv {
  height: 660px;
  position: relative;
}
.lower-sv .sv__title {
  position: absolute;
  inset: auto 0 23.4848%;
  margin: 0 auto;
  width: 980px;
  padding: 20px 0;
  border-radius: 75px;
  border: 2.2px dotted var(--primary-color);
  background: var(--color-white);
  text-align: center;
  font-size: var(--font-size-50);
  font-family: var(--sub-font-family);
  z-index: 1;
}
.lower-sv .sv__title::before, .lower-sv .sv__title::after {
  position: absolute;
  content: "";
}
.lower-sv .sv__title::before {
  width: 715px;
  height: 30px;
  margin: 0 auto;
  background: var(--fourth-color);
  border-radius: 15px;
  z-index: -1;
  inset: auto 0 30px;
}
.lower-sv .sv__title::after {
  width: 956px;
  height: 254px;
  background: url(../img/sv/sv-ttl-deco_pc.png) center/100% no-repeat;
  inset: -76px 0 auto 0;
}
.lower-sv .sv__title span {
  display: block;
  position: relative;
  z-index: 1;
}
.lower-sv .sv__title span::before {
  position: absolute;
  content: attr(data-text) "";
  inset: 0;
  font-size: var(--font-size-50);
  color: var(--color-white);
  z-index: -1;
  -webkit-text-stroke: 9px var(--color-white);
  filter: drop-shadow(-1px -1px 0 var(--primary-color)) drop-shadow(-1px 1px 0 var(--primary-color)) drop-shadow(1px 0px 0 var(--primary-color));
}

#about-sv {
  background: url(../img/sv/about-sv_bg.jpg) center/cover no-repeat;
}

#gallery-sv {
  background: url(../img/sv/gallery-sv_bg.jpg) center/cover no-repeat;
}

#intro-sv {
  background: url(../img/sv/intro-sv_bg.jpg) center/cover no-repeat;
}

#info-sv {
  background: url(../img/sv/info-sv_bg.jpg) center/cover no-repeat;
}

#news-sv {
  background: url(../img/sv/news-sv_bg.jpg) center/cover no-repeat;
}

#contact-sv {
  background: url(../img/sv/contact-sv_bg.jpg) center/cover no-repeat;
}

#complete-sv {
  background: url(../img/sv/complete-sv_bg.jpg) center/cover no-repeat;
}

#privacy-sv {
  background: url(../img/sv/privacy-sv_bg.jpg) center/cover no-repeat;
}

#site-sv {
  background: url(../img/sv/site-sv_bg.jpg) center/cover no-repeat;
}

#e404-sv {
  background: url(../img/sv/e404-sv_bg.jpg) center/cover no-repeat;
}

/*==========================================
about
===========================================*/
/* about-greeting
------------------------*/
#about-greeting {
  background: url(../img/about/greeting-l_footprint.png) left top/35.3645% no-repeat, var(--third-color);
}
#about-greeting .greeting__inbox {
  width: 1180px;
  position: relative;
  background: url(../img/about/greeting-rb_ill.png) right bottom no-repeat;
}
#about-greeting .greeting__title {
  margin-bottom: 20px;
}
#about-greeting .greeting__text {
  text-align: center;
}
#about-greeting .greeting__text-name {
  color: var(--primary-color);
}
#about-greeting .greeting__img-list {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  margin: auto;
}
#about-greeting .greeting__img-list .greeting__img-item {
  position: absolute;
}
#about-greeting .greeting__img-list .greeting__img-item--rt {
  inset: 110px -230px auto auto;
}
#about-greeting .greeting__img-list .greeting__img-item--lb {
  inset: auto auto 90px -230px;
}
#about-greeting .greeting__img-list .greeting__img-item img {
  border-radius: 50%;
}

/* about-concept
------------------------*/
#about-concept .concept__title {
  margin-bottom: 20px;
}
#about-concept .concept__list {
  border-radius: 26px;
  padding: 60px 50px;
  background: var(--third-color);
  border: 1px solid var(--accent-color);
  gap: 39px;
  position: relative;
}
#about-concept .concept__list::before {
  position: absolute;
  content: "";
  width: 423px;
  height: 440px;
  background: url(../img/about/concept-rb_footprint.png) center/100% no-repeat;
  inset: auto -220px -80px auto;
}
#about-concept .concept__list .concept__item {
  width: 300px;
}
#about-concept .concept__list .concept__item-img img {
  border-radius: 18px;
}
#about-concept .concept__list .concept__item-title {
  padding: 10px 0;
  text-align: center;
  color: var(--primary-color);
  font-size: var(--font-size-18);
}
#about-concept .concept__list .concept__item-text {
  text-align: center;
}

/* about-menu
------------------------*/
#about-menu {
  background: var(--third-color);
}
#about-menu .menu__title {
  margin-bottom: 20px;
}
#about-menu .sub-title {
  margin-bottom: 50px;
}
#about-menu .menu__cat {
  margin-bottom: 45px;
}
#about-menu .menu__cat:last-child {
  margin-bottom: 0;
}
#about-menu .menu__cat-title {
  font-size: var(--font-size-18);
  color: var(--color-white);
  background: url(../img/common/headline-title_ic.png) left 35px top 23px no-repeat, var(--primary-color);
  border-radius: 14px;
  font-family: var(--sub-font-family);
  margin-bottom: 10px;
  padding: 13px 15px 13px 65px;
}
#about-menu .menu__cat-content {
  margin-bottom: 25px;
}
#about-menu .menu__cat-content:last-child {
  margin-bottom: 0;
}
#about-menu .menu__post-title {
  font-size: var(--font-size-18);
  color: var(--primary-color);
  padding-left: 20px;
  position: relative;
}
#about-menu .menu__post-title::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  background: var(--primary-color);
  border-radius: 50%;
  inset: 16px auto auto 0;
}
#about-menu .menu__item {
  border-bottom: 1px solid var(--form-border-color);
  padding: 12px 15px;
}
#about-menu .menu__item-name {
  width: 675px;
}
#about-menu .menu__item-price {
  width: calc(100% - 675px);
  text-align: right;
}

/*==========================================
gallery
===========================================*/
/* gallery-first
------------------------*/
#gallery-first {
  background: url(../img/gallery/gallery-lt_footprint.png) left 15.8854% top no-repeat, url(../img/gallery/gallery-lb_footprint.png) left bottom 60px no-repeat, var(--third-color);
}
#gallery-first .first__img {
  text-align: center;
  margin: 0 auto 45px;
  border-radius: 18px;
}
#gallery-first .first__img img {
  max-height: 852px;
  border-radius: 18px;
}
#gallery-first .first__comment {
  text-align: center;
}

/* gallery-archive
------------------------*/
#gallery-archive .gallery__text {
  margin-bottom: 45px;
  text-align: center;
  font-size: var(--font-size-17);
}

/* gallery-single
------------------------*/
#gallery-single {
  background: url(../img/gallery/gallery-lt_footprint.png) left 5.9895% top 65px no-repeat, var(--third-color);
}
#gallery-single .gallery__thumb {
  margin-bottom: 40px;
  border-radius: 18px;
}
#gallery-single .gallery__thumb img {
  border-radius: 15px;
}
#gallery-single .gallery__title {
  font-size: var(--font-size-20);
  padding-left: 25px;
  background: url(../img/top/gallery-ttl_ic.png) left top 12px no-repeat;
  margin-bottom: 15px;
}
#gallery-single .gallery__list {
  gap: 37.5px;
  margin-top: 50px;
}
#gallery-single .gallery__list .gallery__item {
  width: 335px;
}
#gallery-single .gallery__list .gallery__item-img {
  width: 100%;
  height: 335px;
  margin-bottom: 5px;
  border-radius: 18px;
  overflow: inherit;
}
#gallery-single .gallery__list .gallery__item-img img {
  border-radius: 18px;
}

/*==========================================
intro
===========================================*/
/* intro-staff
------------------------*/
#intro-staff {
  background: url(../img/about/greeting-lb_footprint.png) left bottom no-repeat, url(../img/about/greeting-lt_footprint.png) left top no-repeat, var(--third-color);
}
#intro-staff .staff__item-img {
  overflow: inherit;
}
#intro-staff .staff__item-caption {
  font-size: var(--font-size-20);
}
#intro-staff .staff__item:not(:has(.staff__item-img)) .staff__item-caption {
  text-align: center;
  background: none;
  padding-left: 0;
}
#intro-staff .staff__item:not(:has(.staff__item-img)) .staff__item-caption span {
  position: relative;
}
#intro-staff .staff__item:not(:has(.staff__item-img)) .staff__item-caption span::before {
  position: absolute;
  content: "";
  width: 19px;
  height: 18px;
  background: url(../img/top/gallery-ttl_ic.png) center/100% no-repeat;
  inset: 5px auto 0 -30px;
}
#intro-staff .staff__item-comment {
  background: var(--fifth-color);
  border-radius: 9px;
  padding: 20px 10px;
  margin-top: 20px;
  position: relative;
}
#intro-staff .staff__item-comment::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0px 10px 18px 10px;
  border-color: transparent transparent var(--fifth-color) transparent;
  inset: -18px 0 auto;
  margin: 0 auto;
}

/* intro-pet
------------------------*/
#intro-pet .pet__post {
  margin-bottom: 55px;
  position: relative;
}
#intro-pet .pet__post:last-child {
  margin-bottom: 0;
}
#intro-pet .pet__post-content {
  min-height: 335px;
  margin-left: auto;
  width: 515px;
}
#intro-pet .pet__post-title {
  border-bottom: 1px solid var(--form-border-color);
  font-size: var(--font-size-20);
  font-weight: var(--font-weight-bold);
  padding-left: 30px;
  margin-bottom: 15px;
  background: url(../img/top/gallery-ttl_ic.png) left top 10px no-repeat;
}
#intro-pet .pet__post-thumb {
  width: 520px;
  height: 335px;
  position: absolute;
  inset: 0 auto auto 0;
  border-radius: 18px;
  overflow: inherit;
}
#intro-pet .pet__post-thumb img {
  border-radius: 18px;
}
#intro-pet .pet__post-profile .profile__item {
  margin-bottom: 10px;
}
#intro-pet .pet__post-profile .profile__item:last-child {
  margin-bottom: 0;
}
#intro-pet .pet__post-profile .profile__item dt {
  width: 100px;
  border-radius: 15px;
  color: var(--color-white);
  font-size: var(--font-size-14);
  text-align: center;
  background: var(--primary-color);
}
#intro-pet .pet__post-profile .profile__item dd {
  width: calc(100% - 100px);
  padding-left: 15px;
}
#intro-pet .pet__post-button {
  width: 400px;
  margin-top: 80px;
}

/* pet-single
------------------------*/
#pet-single .pet__gallery-list {
  gap: 37.5px;
}
#pet-single .pet__gallery-list .pet__gallery-item {
  width: 335px;
  height: 240px;
}

/*==========================================
info
===========================================*/
#info-section {
  background: url(../img/gallery/gallery-lt_footprint.png) left 5.9895% top no-repeat, var(--third-color);
}
#info-section .info__table {
  background: var(--color-white);
  border: 1px solid var(--accent-color);
  border-radius: 25px;
  padding: 30px 45px;
  margin-bottom: 125px;
}

/*==========================================
一覧ぺージ用カテゴリ(セレクトボックス)
===========================================*/
.global-select {
  width: 300px;
  margin: 0 0 45px auto;
}
.global-select select {
  padding: 15px 37px 15px 15px;
}

/*==========================================
news
===========================================*/
.column__wrap .column__list .column__post a {
  padding: 45px 0;
}
.column__wrap .column__list .column__post-meta time {
  width: 95px;
}
.column__wrap .column__list .column__post-meta time,
.column__wrap .column__list .column__post-meta .category-label {
  font-size: var(--font-size-14);
}
.column__wrap .column__list .column__post-meta .category-label {
  width: calc(100% - 115px);
  gap: 5px;
}
.column__wrap .column__list .column__post-meta .category-label li {
  padding: 2px 10px;
}
.column__wrap .column__list .column__post-title {
  font-size: var(--font-size-23);
  margin: 10px 0;
}
.column__wrap .column__list .more-btn {
  width: 125px;
  font-size: var(--font-size-14);
  margin: inherit;
  margin-left: auto;
  font-weight: bold;
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  box-sizing: border-box;
  padding: 5px 0;
  display: block;
  color: var(--color-white);
  transition: all 0.3s;
}
.column__wrap .column__list .column__post:has(.column__post-thumb) a {
  /*==========================================
  Flexbox
  ===========================================*/
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-sizing: border-box;
}
.column__wrap .column__list .column__post:has(.column__post-thumb) .column__post-thumb {
  width: 210px;
  height: 200px;
}
.column__wrap .column__list .column__post:has(.column__post-thumb) .column__post-thumb .img-eff {
  width: 100%;
  height: 100%;
  transition-duration: 0.3s;
}
.column__wrap .column__list .column__post:has(.column__post-thumb) .column__post-meta {
  width: 820px;
}

/*----------------------------------
詳細ページのカテゴリー表示(タイトル下部)
----------------------------------*/
.single__post-meta {
  margin-bottom: 20px;
}
.single__post-meta time {
  font-size: var(--font-size-14);
  width: 95px;
  padding: 3px 0;
}
.single__post-meta .category-label {
  width: calc(100% - 95px);
  font-size: var(--font-size-14);
  gap: 5px;
  margin-left: 10px;
}
.single__post-meta .category-label li a {
  padding: 3px 10px;
}

/*==========================================
contact
===========================================*/
#contact .contact__form {
  width: 980px;
  margin: 0 auto 55px;
}
#contact .contact__form-item .contact__form-label {
  margin-bottom: 20px;
}
#contact .contact__form-item .contact__form-label .required {
  margin-left: 10px;
}
#contact .contact__form-item .contact__form-input .contact__form-list {
  gap: 15px;
}
#contact .contact__form-item.contact__form-privacy .contact__form-label {
  text-align: center;
}
#contact .contact__form-value {
  padding: 20px 15px;
}
#contact .contact__form-select {
  width: 200px;
}
#contact .contact__form-select::after {
  inset: 0 16px 0 auto;
  width: 8px;
  height: 8px;
}
#contact .contact__form-select select {
  padding: 15px 30px 15px 10px;
}
#contact .contact__form #pc01,
#contact .contact__form #pc02 {
  width: 150px;
}
#contact .contact__form #address {
  margin-top: 15px;
}
#contact .contact__form #date1,
#contact .contact__form #date2,
#contact .contact__form #date3 {
  width: 300px;
}
#contact .contact__form textarea {
  height: 260px;
}
#contact .contact__form .upload-item-wrap .thumb {
  width: 200px;
  margin-right: 25px;
}
#contact .contact__form .upload-item-wrap .ancion-btn-wrap {
  width: 130px;
}
#contact .contact__form .upload-item-wrap .ancion-btn-wrap .ancion-btn,
#contact .contact__form .upload-item-wrap .ancion-btn-wrap .upload-button {
  font-size: var(--font-size-13);
}
#contact input[type=button],
#contact input[type=submit],
#contact .contact__submits-wrap button {
  height: 75px;
}
#contact .contact__submits-wrap {
  gap: 35px;
}
#contact .contact__submits-wrap .contact__submits-check {
  width: 304px;
}
#contact .contact__submits-wrap .contact__submits-back {
  width: 270px;
}
#contact .contact__submits-wrap .contact__submits-send {
  width: 240px;
}

/*==========================================
privacy
===========================================*/
#privacy .privacy__content {
  margin-bottom: 70px;
}
#privacy .privacy__content:last-child {
  margin-bottom: 0;
}

/*==========================================
site
===========================================*/
#site-map .nav__item a {
  padding: 2% 0 2% 3%;
}

/*==========================================
プライバシーポリシー(LPフレーム時)
===========================================*/