main {
 margin-bottom: 200px;
 padding-top: 30px;
}
@media screen and (max-width: 1024px) {
 main {
  margin-bottom: 100px;
  padding-top: 20px;
 }
}

h1 {
 line-height: 1;
 margin-bottom: 40px;
 color: var(--c_rd);
 font-weight: bold;
 font-size: 24px;
 letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
 h1 {
  margin-bottom: 20px;
  font-size: 20px;
 }
}

section {
 position: relative;
 width: 100%;

 --main_brs: 60px;
 padding-inline: 3%;
}
@media screen and (max-width: 1024px) {
 section {
  padding-inline: 5%;
 }
}
@media screen and (max-width: 600px) {
 section {
  --main_brs: 30px;
 }
}
section.store_area {
 margin-bottom: 120px;
 padding: 100px 3%;
 background: url(../img/store_bg_l.png) left 80px/20% no-repeat, url(../img/store_bg_r.png) right 0/16% no-repeat #fcf3cd;
}
@media screen and (max-width: 1024px) {
 section.store_area {
  margin-bottom: 60px;
  padding: 50px 5%;
 }
}
section.store_area >.inner {
 width: 100%;
 max-width: 1200px;
 margin: 0 auto;
}
section.store_area >.inner h2 {
 line-height: 1.40625;
 color: var(--c_rd);
 font-weight: bold;
 font-size: 32px;
 text-align: center;
 letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
 section.store_area >.inner h2 {
  font-size: 24px;
 }
}
section.store_area >.inner p.lead {
 line-height: 1.9444444444;
 margin: 40px 0;
 font-size: 18px;
 text-align: center;
 letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
 section.store_area >.inner p.lead {
  margin: 20px 0;
  font-size: 14px;
 }
}
section.store_area >.inner .contact {
 display: flex;
 width: 100%;
 max-width: 800px;
 flex-direction: column;
 justify-content: center;
 align-items: center;
 gap: 30px;
 margin: 0 auto;
 margin-bottom: 80px;
 padding: 50px 4%;
 border: 3px solid var(--c_rd);
 border-radius: 30px;
 background: #ffffff;
 text-align: center;
 outline: 1px solid var(--c_rd);
 outline-offset: -8px;
}
@media screen and (max-width: 1024px) {
 section.store_area >.inner .contact {
  gap: 15px;
  margin-bottom: 40px;

  padding-block: 25px;
 }
}
section.store_area >.inner .contact h3 {
 line-height: 1.7307692308;
 color: var(--c_gy);
 font-weight: bold;
 font-size: 26px;
 letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
 section.store_area >.inner .contact h3 {
  font-size: 20px;
 }
}
section.store_area >.inner .store_lists {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 70px 30px;
}
@media screen and (max-width: 1024px) {
 section.store_area >.inner .store_lists {
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 3%;
 }
}
@media screen and (max-width: 600px) {
 section.store_area >.inner .store_lists {
  grid-template-columns: 1fr;
 }
}
section.store_area >.inner .store_lists article {
 overflow: clip;
 border-radius: 20px;
 background: #ffffff;
}
section.store_area >.inner .store_lists article a {
 display: grid;
 height: 100%;
 grid-template-rows: 200px 1fr;
 transition: all 0.3s;
}
@media (hover) {
 section.store_area >.inner .store_lists article a:hover {
  opacity: 0.7;
 }
}
@media screen and (max-width: 600px) {
 section.store_area >.inner .store_lists article a {
  grid-template-rows: 150px 1fr;
 }
}
section.store_area >.inner .store_lists article a .tmb img {
 width: 100%;
 height: 100%;
 object-fit: cover;
}
section.store_area >.inner .store_lists article a .txt_wrap {
 display: flex;
 flex-direction: column;
 padding: 30px 8%;
}
@media screen and (max-width: 1024px) {
 section.store_area >.inner .store_lists article a .txt_wrap {
  padding: 15px 5%;
 }
}
section.store_area >.inner .store_lists article a .txt_wrap hgroup {
 margin-bottom: 10px;
}
section.store_area >.inner .store_lists article a .txt_wrap hgroup h3 {
 line-height: 1.5555555556;
 margin-bottom: 5px;
 color: var(--c_rd);
 font-weight: 500;
 font-size: 18px;
 letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
 section.store_area >.inner .store_lists article a .txt_wrap hgroup h3 {
  font-size: 14px;
 }
}
section.store_area >.inner .store_lists article a .txt_wrap hgroup p {
 line-height: 1.4166666667;
 font-weight: bold;
 font-size: 24px;
 letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
 section.store_area >.inner .store_lists article a .txt_wrap hgroup p {
  font-size: 18px;
 }
}
section.store_area >.inner .store_lists article a .txt_wrap p.txt {
 display: -webkit-box;
 line-height: 1.875;
 overflow: hidden;
 -webkit-line-clamp: 4;
 margin-bottom: 30px;
 font-size: 16px;
 letter-spacing: 0.05em;

 -webkit-box-orient: vertical;
}
@media screen and (max-width: 1024px) {
 section.store_area >.inner .store_lists article a .txt_wrap p.txt {
  margin-bottom: 20px;
  font-size: 14px;
 }
}
section.store_area >.inner .store_lists article a .txt_wrap p.more {
 display: flex;
 justify-content: flex-end;
 margin-top: auto;
}
section.store_area >.inner .store_lists article a .txt_wrap p.more span {
 display: flex;
 line-height: 1;
 align-items: center;
 gap: 15px;
 color: var(--c_rd);
 font-weight: bold;
 font-size: 16px;
 letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
 section.store_area >.inner .store_lists article a .txt_wrap p.more span {
  gap: 10px;
  font-size: 14px;
 }
}
section.store_area >.inner .store_lists article a .txt_wrap p.more span:after {
 content: "";
 display: inline-block;
 width: 20px;
 -webkit-mask-image: url(/common/img/icon_arrow_wt.png);
         mask-image: url(/common/img/icon_arrow_wt.png);
 -webkit-mask-repeat: no-repeat;
         mask-repeat: no-repeat;
 -webkit-mask-position: center;
         mask-position: center;
 -webkit-mask-size: cover;
         mask-size: cover;
 background-color: var(--c_rd);
 transition: all 0.3s;

 aspect-ratio: 45/32;
}
@media screen and (max-width: 1024px) {
 section.store_area >.inner .store_lists article a .txt_wrap p.more span:after {
  width: 15px;
 }
}
section.contact_area >.inner {
 position: relative;
 width: 100%;
 max-width: 1100px;
 margin: 0 auto;
 padding-top: 50px;
}
@media screen and (max-width: 1024px) {
 section.contact_area >.inner {
  padding: 0;
 }
}
section.contact_area >.inner .contact_img {
 position: absolute;
 top: 0;
 right: 0;
 width: 64%;
 max-width: 700px;
 overflow: hidden;
 border-radius: var(--main_brs);
}
@media screen and (max-width: 1024px) {
 section.contact_area >.inner .contact_img {
  position: relative;
  width: 100%;
  max-width: 100%;
 }
}
section.contact_area >.inner .contact_txt {
 position: relative;
 width: 50%;
 padding: 80px 60px 0 0;
 border-radius: 0 var(--main_brs) 0 0;
 background: url(/common/img/main_bg.png);
}
@media screen and (max-width: 1024px) {
 section.contact_area >.inner .contact_txt {
  width: 80%;
  margin-top: -80px;
  padding: 40px 5% 0 0;
 }
}
@media screen and (max-width: 1024px) and (max-width: 600px) {
 section.contact_area >.inner .contact_txt {
  width: 100%;
  margin: 0;
  padding: 30px 0 0;
 }
}
section.contact_area >.inner .contact_txt h2 {
 line-height: 1.5625;
 margin-bottom: 20px;
 color: var(--c_gy);
 font-weight: bold;
 font-size: 32px;
 letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
 section.contact_area >.inner .contact_txt h2 {
  margin-bottom: 20px;
  font-size: 24px;
 }
}
section.contact_area >.inner .contact_txt p.main_txt {
 line-height: 1.875;
 font-size: 16px;
 letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
 section.contact_area >.inner .contact_txt p.main_txt {
  font-size: 14px;
 }
}
section.contact_area >.inner .contact_txt .rd_btn {
 margin-top: 50px;
}
@media screen and (max-width: 1024px) {
 section.contact_area >.inner .contact_txt .rd_btn {
  margin-top: 30px;
 }
}
section.details_area >.inner {
 width: 100%;
 max-width: 1000px;
 margin: 0 auto;
}
section.details_area >.inner .store_info {
 margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
 section.details_area >.inner .store_info {
  margin-bottom: 40px;
 }
}
section.details_area >.inner .store_info hgroup {
 margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
 section.details_area >.inner .store_info hgroup {
  margin-bottom: 20px;
 }
}
section.details_area >.inner .store_info hgroup h2 {
 line-height: 1.5555555556;
 margin-bottom: 5px;
 color: var(--c_rd);
 font-weight: bold;
 font-size: 18px;
 letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
 section.details_area >.inner .store_info hgroup h2 {
  font-size: 16px;
 }
}
section.details_area >.inner .store_info hgroup p {
 line-height: 1.5625;
 font-weight: bold;
 font-size: 32px;
 letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
 section.details_area >.inner .store_info hgroup p {
  font-size: 24px;
 }
}
section.details_area >.inner .store_info .main_img {
 width: 100%;
 margin-bottom: 40px;
}
section.details_area >.inner .store_info .main_img img {
 width: 100%;
 height: auto;
 border-radius: var(--main_brs);
}
section.details_area >.inner .store_info .access_area {
 width: 100%;
 padding: 45px 3%;
 border-radius: 20px;
 background: #feead3;
}
@media screen and (max-width: 1024px) {
 section.details_area >.inner .store_info .access_area {
  padding: 20px 5%;
 }
}
section.details_area >.inner .store_info .access_area >.inner {
 display: flex;
 width: 100%;
 max-width: 800px;
 justify-content: space-between;
 margin: 0 auto;
}
@media screen and (max-width: 1024px) {
 section.details_area >.inner .store_info .access_area >.inner {
  display: block;
 }
}
@media screen and (max-width: 1024px) {
 section.details_area >.inner .store_info .access_area >.inner .access_details {
  margin-bottom: 30px;
 }
}
section.details_area >.inner .store_info .access_area >.inner .access_details p {
 line-height: 1.875;
 font-size: 16px;
 letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
 section.details_area >.inner .store_info .access_area >.inner .access_details p {
  font-size: 14px;
 }
}
section.details_area >.inner .store_info .access_area >.inner .access_details p a {
 color: var(--c_rd);
 text-decoration: underline;
 word-break: break-all;
}
section.details_area >.inner .store_info .access_area >.inner .rd_btn {
 width: 250px;
}
section.details_area >.inner .store_introduction {
 display: flex;
 width: 100%;
 flex-direction: column;
 justify-content: center;
 align-items: center;
 gap: 70px;
 text-align: left;
}
@media screen and (max-width: 1024px) {
 section.details_area >.inner .store_introduction {
  gap: 40px;
 }
}
section.details_area >.inner .store_introduction p.lead {
 max-width: 800px;
 line-height: 1.875;
 font-size: 16px;
 letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
 section.details_area >.inner .store_introduction p.lead {
  font-size: 14px;
 }
}
section.details_area >.inner .store_introduction .introduction_block {
 display: flex;
 justify-content: space-between;
 gap: 40px;
}
@media screen and (max-width: 600px) {
 section.details_area >.inner .store_introduction .introduction_block {
  flex-direction: column;
  gap: 20px;
 }
}
section.details_area >.inner .store_introduction .introduction_block .txt_wrap {
 width: 100%;
 max-width: 800px;
}
section.details_area >.inner .store_introduction .introduction_block .txt_wrap h3 {
 line-height: 1.8181818182;
 margin-bottom: 20px;
 font-weight: bold;
 font-size: 22px;
 letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
 section.details_area >.inner .store_introduction .introduction_block .txt_wrap h3 {
  margin-bottom: 10px;
  font-size: 18px;
 }
}
section.details_area >.inner .store_introduction .introduction_block .txt_wrap p.txt {
 line-height: 1.875;
 font-size: 16px;
 letter-spacing: 0.05em;

 margin-block: calc((1em - 1lh) / 2);
}
@media screen and (max-width: 1024px) {
 section.details_area >.inner .store_introduction .introduction_block .txt_wrap p.txt {
  font-size: 14px;
 }
}
section.details_area >.inner .store_introduction .introduction_block .img {
 width: 100%;
}
section.details_area >.inner .store_introduction .introduction_block .img.left {
 order: -1;
}
@media screen and (max-width: 600px) {
 section.details_area >.inner .store_introduction .introduction_block .img.left {
  order: 0;
 }
}
section.details_area >.inner .store_introduction .introduction_block .img img {
 width: 100%;
 height: auto;
 border-radius: var(--main_brs);
}
/*# sourceMappingURL=layout.css.map */