@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-size: max(24px, 3.6rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1.5rem;
}

.common__ttl::before,
.common__ttl::after {
  content: "";
  display: block;
}

.news .common__ttl::before {
  background: url("../img/ttl_deco-news.png") no-repeat center / contain;
  width: max(30px, 4.9rem);
  height: max(30px, 4.9rem);
}

.company .common__ttl::before {
  background: url("../img/ttl_deco-company.png") no-repeat center / contain;
  width: max(40px, 6.7rem);
  height: max(28.6px, 4.8rem);
}

.service .common__ttl::before {
  background: url("../img/ttl_deco-service.png") no-repeat center / contain;
  width: max(38px, 6.5rem);
  height: max(29.8px, 5.1rem);
}

.access .common__ttl::before {
  background: url("../img/ttl_deco-access.png") no-repeat center / contain;
  width: max(24px, 3.8rem);
  height: max(32.2px, 5.1rem);
}

.common__ttl::after {
  background-color: var(--brown);
  width: 10.5rem;
  height: max(2px, 0.3rem);
}

.common__btn {
  width: max(200px, 37.7rem);
  height: max(48px, 8rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  background-color: var(--brown);
  width: 100%;
  height: 100%;
  font-size: max(12px, 2rem);
  color: var(--white);
  letter-spacing: 0.05em;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.shop .common__btn a {
  letter-spacing: -0.05em;
  padding-right: 2rem;
}

.common__btn a::after {
  content: "";
  background: url("../img/btn_arw.png") no-repeat center / contain;
  width: max(10px, 1.9rem);
  height: max(17.9px, 3.4rem);
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 3rem;
  pointer-events: none;
}

.shop .common__btn a::after {
  right: 2rem;
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: 100vh;
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
  }
}

.hero::before {
  content: "";
  background-color: #808080;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
}

.hero__ttl {
  width: max-content;
  font-size: max(16px, 3rem);
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.05em;
  text-align: center;
  filter: drop-shadow(1px 1px 7px rgba(0, 0, 0, 0.9));
  position: absolute;
  transform: translateX(-50%);
  top: 50%;
  left: 50%;
  z-index: 2;
}

@media (max-width: 767px) {
  .hero__ttl {
    font-size: max(10px, 2rem);
  }
}

.hero__ttl span {
  display: block;
  width: 106rem;
  height: auto;
  margin-bottom: 2rem;
}

@media (max-width: 767px) {
  .hero__ttl span {
    width: 60rem;
  }
}

.hero__slider {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

@keyframes zoomOut {
  0% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}

.hero__slider .swiper-slide-active img,
.hero__slider .swiper-slide-duplicate-active img,
.hero__slider .swiper-slide-prev img {
  animation: zoomOut 7s linear both;
}

/*============================
	news
============================*/
.news {
  border-top: solid 2rem var(--brown);
  padding: 3rem 0 8.5rem;
}

.CMS-NEWS-INDEX {
  width: 86.8rem;
  height: auto;
  margin: 4.5rem auto;
}

@media (max-width: 767px) {
  .CMS-NEWS-INDEX {
    width: 90%;
  }
}

.CMS-NEWS-LINK-CONTENT {
  background-image: linear-gradient(to right, #898989 0.8rem, transparent 0.4rem);
  background-size: 1.2rem 1px;
  background-position: left bottom;
  background-repeat: repeat-x;
  display: flex;
  gap: 1rem 3rem;
  padding: 1rem 1rem 1rem 10rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-LINK-CONTENT {
    flex-direction: column;
    padding: 1rem;
  }
}

.CMS-NEWS-TIME {
  color: var(--brown);
}

@media (min-width: 768px) {
  .CMS-NEWS-TIME {
    min-width: max(84px, 11.5rem);
  }
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	company
============================*/
.company {
  padding: 9.5rem 0 7rem;
  position: relative;
}

@media (max-width: 767px) {
  .company {
    padding: 9.5rem 0;
  }
}

.company::before,
.company::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -2;
}

.company::before {
  background: var(--bg-1);
  width: 93%;
  height: calc(100% - 12.5rem);
  top: 0;
  right: 0;
}

.company::after {
  background: #eceae5;
  width: 74%;
  height: calc(100% - 15rem);
  left: 0;
  bottom: 0;
}

.company__inner {
  width: 132.4rem;
  padding: 18rem 0 0 11rem;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 767px) {
  .company__inner {
    width: 90%;
    padding: 8rem 4rem 0;
  }
}

.company__inner::before,
.company__inner::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.company__inner::before {
  background: url("../img/company_bg.jpg") no-repeat center / cover;
  width: 100%;
  height: 47.5rem;
  top: 0;
  left: 0;
  z-index: -1;
}

.company__inner::after {
  background: url("../img/company_deco.png") no-repeat center / cover;
  width: 54.6rem;
  height: 54.6rem;
  right: -8.5rem;
  bottom: -17rem;
}

@media (max-width: 767px) {
  .company__inner::after {
    width: 35rem;
    height: 35rem;
    right: -10rem;
  }
}

.company__txt-wrapper {
  background-color: var(--white);
  width: 55rem;
  border: solid 1px var(--brown);
  padding: 4rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .company__txt-wrapper {
    width: 100%;
  }
}

.company__txt-wrapper p {
  line-height: 2;
  margin-top: 3rem;
}

/*============================
	service
============================*/
.service {
  padding: 11rem 0 17.5rem;
  overflow: hidden;
}

.service__txt {
  width: 90%;
  letter-spacing: 0.05em;
  line-height: 2;
  text-align: center;
  margin: 3rem auto 4.5rem;
}

.service__inner {
  padding: 4.5rem 0 6rem;
  position: relative;
}

.service__inner::before,
.service__inner::after {
  content: "";
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: -1;
}

.service__inner::before {
  background-color: #f6f6f5;
  height: calc(100% + 16rem);
}

.service__inner::after {
  background: url("../img/service_bg.jpg") no-repeat center / cover;
  height: 46rem;
}

.service__list-1 {
  width: 110rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4.5rem 5rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .service__list-1 {
    width: 90%;
    grid-template-columns: 1fr;
  }
}

.service__list-item {
  background-color: var(--white);
  border: solid 1px var(--brown);
  padding: 2.5rem 2rem 4rem;
}

.service__txt-wrapper {
  width: 100%;
}

.service__txt-wrapper h3 {
  font-size: max(14px, 2.1rem);
  font-weight: 700;
  color: var(--brown);
  text-align: center;
  margin: 3.5rem 0 1.5rem;
}

.service__txt-wrapper p {
  letter-spacing: 0.05em;
}

.service__img {
  width: 100%;
}

.service__othres {
  background-color: var(--white);
  width: 116rem;
  padding: 3rem;
  margin: 2rem auto 0;
  position: relative;
}

@media (max-width: 767px) {
  .service__othres {
    width: 100%;
    padding: 3rem 5% 3rem;
  }
}

.service__othres::before {
  content: "";
  background-color: var(--white);
  width: 100%;
  height: 1000%;
  position: absolute;
  transform: translateY(-100%);
  top: 1px;
  left: 0;
  pointer-events: none;
  z-index: -1;
}

.service__ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service__ttl > span:nth-of-type(1) {
  display: block;
  width: 21.8rem;
  margin-bottom: 1rem;
}

.service__ttl > span:nth-of-type(2) {
  display: block;
  background: linear-gradient(transparent calc(100% - 0.8rem), #fdff00 0.8rem);
  font-size: max(14px, 2.7rem);
  font-weight: 700;
  color: var(--brown);
  padding-left: 1.5rem;
  margin-bottom: 8rem;
  position: relative;
}

@media (max-width: 767px) {
  .service__ttl > span:nth-of-type(2) span {
    background: linear-gradient(transparent calc(100% - 0.8rem), #fdff00 0.8rem);
    display: block;
  }
}

.service__ttl > span:nth-of-type(2)::before,
.service__ttl > span:nth-of-type(2)::after {
  content: "";
  background: url("../img/service_line.png") no-repeat center / contain;
  width: 3.6rem;
  height: 6.2rem;
  position: absolute;
  transform: translate(-100%, -50%);
  top: 50%;
  left: -2rem;
  pointer-events: none;
}

.service__ttl span:nth-of-type(2)::after {
  transform: translate(100%, -50%) scale(-1, 1);
  left: auto;
  right: -2rem;
}

.othres__list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2.2rem 2.5rem;
}

@media (max-width: 1000px) {
  .othres__list {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 767px) {
  .othres__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.othres__list li {
  border: solid 1px var(--brown);
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 767px) {
  .othres__list li {
    padding: 1rem 0;
  }
}

.othres_img {
  display: block;
  width: max(80px, 13.5rem);
  margin-bottom: -1rem;
}

@media (max-width: 767px) {
  .othres_img {
    width: max(90px, 13.5rem);
  }
}

.othres__list h4 {
  min-height: max(40px, 5.8rem);
  font-weight: 500;
  color: var(--brown);
  letter-spacing: -0.05em;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 768px) {
  .othres__list h4 {
    font-size: max(10px, 1.6rem);
  }
}

.gallery__slider {
  height: 26.7rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 32.7rem;
  margin: 0 1rem;
}

.btn__wrapper {
  width: max-content;
  display: flex;
  justify-content: center;
  gap: 4rem 8rem;
  margin: 7.5rem auto 0;
}

@media (max-width: 767px) {
  .btn__wrapper {
    flex-direction: column;
  }
}

/*============================
	shop
============================*/
.shop {
  padding-bottom: 22.5rem;
  position: relative;
}

@media (max-width: 767px) {
  .shop {
    padding-bottom: 12rem;
  }
}

.shop::before {
  content: "";
  background-color: #f6f6f5;
  width: 100%;
  height: calc(100% - 9rem);
  position: absolute;
  left: 0;
  bottom: 0;
  pointer-events: none;
}

.shop__contents {
  width: 110rem;
  display: flex;
  align-items: flex-end;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .shop__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.shop__txt-wrapper {
  background-color: var(--white);
  width: 100%;
  height: 100%;
  border: solid 1px var(--brown);
  padding: 3rem 6.5rem 4rem;
  position: relative;
  z-index: 1;
}

.shop__ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.shop__ttl::before {
  content: "";
  display: block;
  background: url("../img/mado.png") no-repeat center / contain;
  width: 9.8rem;
  height: 8.7rem;
}

.shop__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2;
  margin: 3.5rem 0 5rem;
}

.shop__img {
  width: 42.5rem;
  height: 100%;
  flex-shrink: 0;
  margin: 0 0 -10rem -13.5rem;
}

@media (max-width: 767px) {
  .shop__img {
    width: 100%;
    margin: 0;
  }
}

/*============================
	access
============================*/
.access {
  background: url("../img/access_bg.jpg") no-repeat center / cover;
  padding: 9rem 0 8rem;
}

.access__contents {
  background-color: rgba(255, 255, 255, 0.9);
  width: 110rem;
  display: flex;
  gap: 2rem 5rem;
  padding: 5.5rem 5.5rem 5.5rem 4rem;
  margin: 4rem auto 5rem;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__map {
  width: 50rem;
  height: 31.5rem;
  border: solid 1px var(--brown);
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .access__map {
    width: 100%;
    height: 40rem;
  }
}

.access__list {
  height: 100%;
  display: flex;
  flex-wrap: wrap;
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
  padding: 2.7rem 1.6rem;
}

.access__list dt {
  width: max(75px, 10rem);
  font-weight: 500;
  color: var(--brown);
}

.access__list dd {
  width: calc(100% - max(75px, 10rem));
  border-bottom: dashed 1px #898989;
}

@media (min-width: 768px) {
  .access__list dt {
    border-bottom: dashed 1px #898989;
  }
}

@media (max-width: 767px) {
  .access__list dt,
  .access__list dd {
    width: 100%;
  }

  .access__list dt {
    padding: 2rem 1.6rem 1rem;
  }

  .access__list dd {
    padding: 0 1.6rem 2rem;
  }
}

/*============================
	contact
============================*/
.contact {
  background: var(--bg-1);
  padding: 8rem 0 9rem;
}

.contact__list {
  width: 110rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem 3rem;
  margin: 4.5rem auto 0;
}

@media (max-width: 767px) {
  .contact__list {
    width: 90%;
    grid-template-columns: 1fr;
  }
}

.contact__list h3 {
  font-size: max(18px, 3rem);
  font-weight: 500;
  color: var(--brown);
  text-align: center;
}

.contact__list li {
  background-color: var(--white);
  height: max(140px, 22rem);
  border: solid max(2px, 0.3rem) var(--brown);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contact .common__btn {
  width: max(200px, 31.6rem);
  height: max(48px, 6.7rem);
  margin-top: 3rem;
}

.contact .common__btn a {
  font-size: max(12px, 1.8rem);
}

.contact .common__btn::before {
  content: "";
  background: url("../img/mail_icon.png") no-repeat center / contain;
  width: max(21px, 3.2rem);
  height: max(15px, 2.3rem);
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  left: 4.5rem;
  z-index: 1;
}

.contact .common__btn::after {
  width: max(9px, 1.2rem);
  height: max(16.1px, 21rem);
}

.contact__tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 1rem 0;
}

.contact__tel > a {
  font-size: max(24px, 5rem);
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact__tel > a::before {
  content: "";
  display: block;
  background: url("../img/tel_icon.png") no-repeat center / contain;
  width: max(26px, 4.3rem);
  height: max(26px, 4.3rem);
}

.contact__access {
  background-color: rgba(204, 226, 214, 0.3);
  border-radius: 1rem;
  font-size: max(10px, 1.3rem);
  padding: 0.8rem 3rem;
  margin-top: 1.5rem;
}
