/* ====================================
   CSS RESTRUCTURED - SP/PC 2-PATTERN DESIGN
   ====================================
   Boundary: 1280px
   - SP (Smartphone/Tablet): max-width: 1279px  
   - PC (Desktop): min-width: 1280px
   
   Original breakpoints (480px, 599px, 768px, 959px, 960px etc.)
   have been consolidated into this 2-pattern structure
   while maintaining all existing visual designs.
   ==================================== */

/* ====================================
   COMMON STYLES (All Devices)
   ==================================== */

/* ====================================
   CSS FILE ORGANIZATION
   ====================================
   1. Base Styles & Reset
   2. Typography & Fonts
   3. Layout & Structure
   4. Site Header & Navigation
   5. Content Sections
   6. Components (Buttons, Cards, etc.)
   7. Store Functionality
   8. Footer
   9. Responsive Design & Media Queries
   10. Utilities & Helpers
   ==================================== */

/* ====================================
   1. BASE STYLES & RESET
   ==================================== */

/* Box model and base resets */
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  margin: 0;
  padding: 0;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-size: 1.6rem;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic Medium", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.5;
  color: #000;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}


/* ====================================
   2. TYPOGRAPHY & FONTS
   ==================================== */

/* Link styles */
a {
  color: #000;
  text-decoration: none;
  -webkit-transition: all .7s;
  transition: all .7s;
}

a:hover {
  opacity: .7;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", meiryo, sans-serif;
  font-weight: bold;
}

/* Override browser default h1 styles with higher specificity */
body h1,
html body h1 {
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
  padding: 0;
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

strong,
b {
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", meiryo, sans-serif;
  font-weight: bold;
}

/* ====================================
   3. LAYOUT & STRUCTURE
   ==================================== */

.row {
  padding: 70px 0;
}

.col-wrap {
  display: -webkit-flex;
  display: flex;
  max-width: 1366px;
  margin-right: auto;
  margin-left: auto;
  padding: 0;
}

.col-wrap .page-wrap {
  width: 70%;
  margin-right: auto;
  padding: 15px;
}

.col-wrap .page-side {
  width: 28%;
  padding: 15px;
}

.col-wrap .page-side .side-bloc {
  margin-bottom: 20px;
  margin-bottom: 2rem;
  padding: 15px;
  border: 2px solid #ccc;
  border-radius: 10px;
}

.col-wrap .page-side .side-bloc .side-bloc-title {
  font-size: calc( 16px + (20 - 16) * ( (100vw - 480px) / (1920 - 480) ));
}

.col-wrap .page-side .side-bloc ul {
  padding: 10px;
}

.col-wrap .page-side .side-bloc ul li {
  font-size: calc( 15px + (16 - 15) * ( (100vw - 480px) / (1920 - 480) ));
}

.col-wrap .page-side .side-bloc ul li a {
  color: #3ABDE8;
}

/* ====================================
   4. SITE HEADER & NAVIGATION
   ==================================== */

/* Complete header reset */
.site-header,
header.site-header,
body .site-header,
html body .site-header,
.site-header-page {
  border-top: 0;
  padding-bottom: 0;
  margin: 0;
  padding: 0;
  border: none;
  position: relative;
  top: 0;
}

/* Header site description with high specificity */
body .site-header .header-site-description,
body header.site-header .header-site-description,
body .site-header-page .header-site-description,
html body .site-header .header-site-description,
html body header.site-header .header-site-description,
html body .site-header-page .header-site-description {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0;
  font-size: calc( 12px + (14 - 12) * ( (100vw - 480px) / (1920 - 480) ));
  font-weight: normal;
  position: relative;
  z-index: 10;
}

/* Hide site description on other pages */
.site-header .header-site-description {
  display: none;
}

/* Home page specific styling with background slider */
.home .site-header,
.page-id-1 .site-header {
  width: 100%;
  height: 95vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-bottom: 70px;
}

.home .header-site-description,
.page-id-1 .header-site-description {
  display: none;
}

/* Header branding */
.site-header .branding,
.site-header-page .branding {
  max-width: 1366px;
  margin-right: auto;
  margin-left: auto;
  display: -webkit-flex;
  display: flex;
  padding: 25px 15px;
  position: relative;
  z-index: 10;
}

.site-header .branding .site-logo,
.site-header-page .branding .site-logo {
  width: 35%;
  max-width: 460px;
  margin-right: auto;
}

.site-header .branding .site-nav ul,
.site-header-page .branding .site-nav ul {
  display: -webkit-flex;
  display: flex;
}

.site-header .branding .site-nav ul li,
.site-header-page .branding .site-nav ul li {
  padding: 10px;
}

.site-header .branding .site-nav ul li a,
.site-header-page .branding .site-nav ul li a {
  font-size: 16px;
  font-size: 1.6rem;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", meiryo, sans-serif;
  font-weight: bold;
  margin-right: 5px;
}

/* Header comment - Overlay bg-slider */
.site-header .header-comment,
.site-header-page .header-comment {
  max-width: 1366px;
  margin-right: auto;
  margin-left: auto;
  padding: 0 70px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
}

.site-header .header-comment .header-catch,
.site-header-page .header-comment .header-catch {
  margin-bottom: 40px;
  margin-bottom: 4rem;
  font-size: calc( 18px + (32 - 18) * ( (100vw - 480px) / (1920 - 480) ));
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", meiryo, sans-serif;
  font-weight: bold;
  text-shadow: 1px 1px 2px #FFF, -1px 1px 2px #FFF, 1px -1px 2px #FFF, -1px -1px 2px #FFF;
}

.site-header .header-comment .header-txt,
.site-header-page .header-comment .header-txt {
  margin-bottom: 40px;
  margin-bottom: 4rem;
  font-size: calc( 12px + (16 - 12) * ( (100vw - 480px) / (1920 - 480) ));
  text-shadow: 1px 1px 2px #FFF, -1px 1px 2px #FFF, 1px -1px 2px #FFF, -1px -1px 2px #FFF;
}

/* Site navigation */
.site-nav ul {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 20px;
}

.site-nav ul li {
  padding: 10px;
}

.site-nav ul li a {
  font-size: calc( 13px + (16 - 13) * ( (100vw - 480px) / (1920 - 480) ));
}

/* Mobile branding with high specificity */
body .sp-branding,
html body .sp-branding {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #FFF;
  z-index: 99;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

body .sp-fixed-header,
html body .sp-fixed-header {
  position: absolute;
  left: 0;
  top: 0;
  height: 80px;
  display: flex;
  align-items: center;
}

.sp-fixed-header .menu {
  display: flex;
  align-items: center;
  height: 80px;
}

body .site-logo-sp,
html body .site-logo-sp {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  margin: 0;
  padding: 0 60px;
  width: 100%;
}

body .site-logo-sp a,
html body .site-logo-sp a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

body .site-logo-sp img,
html body .site-logo-sp img {
  height: 60px;
  max-width: 200px;
  width: auto;
  object-fit: contain;
}

.sp-menu-comment {
  padding: 3px;
  font-size: 12px;
  font-size: 1.2rem;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", meiryo, sans-serif;
  font-weight: bold;
  text-align: center;
}

/* Background slider */
.bg-slider {
  width: 100%;
  height: 95vh;
  background-repeat: no-repeat;
  background-image: url(images/index/index_visual_02.png);
  position: relative;
}

/* ====================================
   5. CONTENT SECTIONS
   ==================================== */

/* About section */
#about {
  padding: 100px 30px;
  background: url(images/index/catch_bg.jpg) no-repeat top center/cover;
}

#about p {
  max-width: 1366px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

#about .about-catch {
  margin-bottom: 50px;
  margin-bottom: 5rem;
  font-size: calc( 16px + (32 - 16) * ( (100vw - 480px) / (1920 - 480) ));
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", meiryo, sans-serif;
  font-weight: bold;
}

#about .about-txt {
  margin-bottom: 30px;
  margin-bottom: 3rem;
  font-size: calc( 13px + (16 - 13) * ( (100vw - 480px) / (1920 - 480) ));
}

/* Point section */
#point {
  background: #FDFDF1;
}

#point .point-wrap {
  max-width: 1100px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin: 0 auto 30px;
  padding: 0 15px;
}

#point .point-wrap dl {
  margin-right: 20px;
}

#point .point-wrap dl:last-child {
  margin-right: 0;
}

#point .point-wrap dl dt {
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", meiryo, sans-serif;
  font-weight: bold;
  font-size: calc( 14px + (20 - 14) * ( (100vw - 480px) / (1920 - 480) ));
}

#point .point-wrap dl dt::before {
  display: none;
}

#point .point-wrap dl dt::before {
  font-family: "Font Awesome 5 Solid";
  content: "\f058";
}

#point .point-wrap dl dt .svg-inline--fa {
  margin-right: 10px;
  color: #F08518;
}

#point .point-wrap dl dd {
  margin-bottom: 50px;
  margin-bottom: 5rem;
  margin-left: 30px;
  font-size: calc( 13px + (16 - 13) * ( (100vw - 480px) / (1920 - 480) ));
}


/* Price section */
#price .price {
  max-width: 1100px;
  margin: 0 auto 50px;
  padding: 0 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 0;
}

#price .price__item {
  width: calc((100% - 16px) / 3);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

#price .price__icon {
  height: 160px;
  display: flex;
  align-items: center;
}

#price .price__body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#price .price__name {
  width: fit-content;
  font-weight: bold;
}

#price .price__price {
  margin-top: 10px;
  width: fit-content;
}

#price .price-txt {
  max-width: 1100px;
  margin: 0 auto 10px;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", meiryo, sans-serif;
  font-weight: bold;
  font-size: 16px;
  font-size: 1.6rem;
  color: #F00;
  text-align: center;
}

#price .price-card {
  width: 90%;
  max-width: 580px;
  margin: 0 auto 50px;
}

/* Voice section */
#voice {
  border-top: 30px solid #F0E818;
  padding-top: 0;
  background: #F2F2F2;
  position: relative;
}

#voice::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -50px;
  left: 0;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: #F2F2F2 transparent transparent transparent;
  border-width: 50px 50px 0 50px;
}

#voice .section-voice-title {
  margin-bottom: 30px;
  margin-bottom: 3rem;
  padding: 20px;
  background: #3ABDE8;
  color: #FFF;
  text-align: center;
  font-size: 2.2rem;
  line-height: 1.2;
  position: relative;
}

#voice .section-voice-title::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -50px;
  left: 0;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: #3ABDE8 transparent transparent transparent;
  border-width: 50px 50px 0 50px;
}

#voice .section-voice-title span {
  width: 40%;
  display: block;
  margin: 0 auto;
  position: relative;
  padding: 1rem 0;
}

#voice .section-voice-title span::before {
  content: url(images/index/voice_ico_left.png);
  margin-right: 10px;
  position: absolute;
  top: 0;
  left: 0;
}

#voice .section-voice-title span::after {
  content: url(images/index/voice_ico_right.png);
  margin-left: 10px;
  position: absolute;
  top: 0;
  right: 0;
}

#voice article {
  max-width: 1100px;
  margin: 0 auto 30px;
  padding: 50px 15px 0;
}

#voice article .voice-comment {
  margin-bottom: 10px;
  margin-bottom: 1rem;
  margin-left: 30px;
  text-indent: -30px;
  font-size: calc( 13px + (16 - 13) * ( (100vw - 480px) / (1920 - 480) ));
}

#voice article .voice-comment::before {
  display: none;
}

#voice article .voice-comment::before {
  font-family: "Font Awesome 5 Solid";
  content: "\f086";
}

#voice article .voice-comment .svg-inline--fa {
  margin-right: 10px;
}

#voice article .voice-name {
  margin-left: 30px;
  font-size: calc( 13px + (16 - 13) * ( (100vw - 480px) / (1920 - 480) ));
}

#voice .blog-wrap {
  max-width: 1100px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin: 0 auto 30px;
  padding: 50px 15px 0;
}

#voice .blog-wrap div {
  width: 49%;
  margin-right: 30px;
}

#voice .blog-wrap div:last-child {
  margin-right: 0;
}

/* Information section */
#information {
  max-width: 1100px;
  margin: 0 auto 10px;
  padding: 0 15px;
}

.term-ico {
  display: inline-block;
  margin: 0 5px 5px;
  padding: 5px;
  color: #111;
  font-size: calc( 11px + (12 - 11) * ( (100vw - 480px) / (1920 - 480) ));
  border-radius: 5px;
  line-height: 1;
}

.term-ico-store {
  background: #fcdebf;
}

.term-ico-cat {
  background: #eee;
}

.term-ico-item {
  background: #fffdea;
}

/* FAQ section */
#faq {
  background: #FAFAFA;
  margin-bottom: 50px;
  margin-bottom: 5rem;
}

#faq dl {
  max-width: 1100px;
  margin: 0 auto 50px;
  padding: 0 15px;
  font-size: calc( 12px + (16 - 12) * ( (100vw - 480px) / (1920 - 480) ));
}

#faq dl dt {
  margin-bottom: 15px;
  margin-bottom: 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", meiryo, sans-serif;
  font-weight: bold;
}

#faq dl dt::before {
  display: none;
}

#faq dl dt::before {
  font-family: "Font Awesome 5 Solid";
  content: "\f059";
}

#faq dl dt .svg-inline--fa {
  margin-right: 10px;
  color: #F08518;
  font-size: 120%;
}

#faq dl dd {
  margin-bottom: 30px;
  margin-bottom: 3rem;
  margin-left: 30px;
  text-indent: -30px;
  padding-left: 30px;
  padding-bottom: 20px;
  border-bottom: 1px dotted #CCC;
}

#faq dl dd::before {
  margin-right: 10px;
  color: #3ABDE8;
  font-size: 120%;
  font-family: "Quicksand", sans-serif;
  content: "A";
  font-weight: 700;
}

#faq .list-link-btn {
  max-width: 1100px;
  margin: 0 auto 30px;
  text-align: center;
}

#faq .list-link-btn a {
  width: 40px;
  margin: 0 auto;
}

/* Contact section */
#contact {
  max-width: 1100px;
  margin: 0 auto 100px;
}

#contact .contact-title {
  margin-bottom: 20px;
  margin-bottom: 2rem;
  font-size: calc( 20px + (28 - 20) * ( (100vw - 480px) / (1920 - 480) ));
  color: #3ABDE8;
  border-bottom: 1px solid #CCC;
}

#contact .contact-title::before {
  content: "●";
  margin-right: 10px;
}

.contact-tbl-box {
  margin-bottom: 50px;
  margin-bottom: 5rem;
}

.contact-tbl-box table {
  width: 100%;
  margin-bottom: 20px;
  margin-bottom: 2rem;
  border-collapse: collapse;
}

.contact-tbl-box table th,
.contact-tbl-box table td {
  padding: 20px;
}

.contact-tbl-box table th {
  width: 25%;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", meiryo, sans-serif;
  font-weight: bold;
  vertical-align: top;
  background: #FAFAFA;
  border-bottom: 1px solid #eee;
}

.contact-tbl-box table th .contact-imt {
  display: inline-block;
  margin-left: 10px;
  color: red;
}

.contact-tbl-box table th .contact-opt {
  display: inline-block;
  margin-left: 10px;
  color: #3ABDE8;
}

.contact-tbl-box input,
.contact-tbl-box textarea {
  width: 70%;
  padding: 10px;
  border: 1px solid #CCC;
  border-radius: 5px;
}

.contact-tbl-box .contact-btn {
  width: 30%;
  margin: 0 auto;
}

.contact-tbl-box .contact-btn input {
  background: #3ABDE8;
  color: #FFF;
  text-align: enter;
}

.contact-tbl-box .contact-btn input:hover {
  cursor: pointer;
}

/* ====================================
   6. COMPONENTS (BUTTONS, CARDS, ETC.)
   ==================================== */

/* Section titles */
body .section-title,
html body .section-title {
  max-width: 1366px;
  margin: 0 auto 5rem auto;
  font-size: 2.2rem;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", meiryo, sans-serif;
  font-weight: bold;
  text-align: center;
}


/* Button styles */
.more-btn {
  display: block;
  width: 18.30%;
  max-width: 250px;
  padding: 10px;
  padding: 1.5rem;
  font-size: 16px;
  font-size: 1.6rem;
  text-align: center;
  color: #FFF;
  background: #3ABDE8;
  border: 2px solid #0096C7;
  border-radius: 5px;
}

.more-btn span::before {
  display: none;
}

.more-btn span::before {
  font-family: "Font Awesome 5 Solid";
  content: "\f138";
}

.more-btn .svg-inline--fa {
  margin-right: 10px;
}

.section-more-btn {
  width: 25%;
  margin: 0 auto 30px;
}

.section-more-btn .more-btn {
  width: 100%;
  max-width: 100%;
}

/* List link buttons */
.list-link-btn a {
  padding: 5px 10px;
  background: #FAFAFA;
  color: #111;
  font-size: calc( 13px + (16 - 13) * ( (100vw - 480px) / (1920 - 480) ));
  border: 1px solid #CCC;
  border-radius: 5px;
}

.list-link-btn a span::before {
  display: none;
}

.list-link-btn a span::before {
  font-family: "Font Awesome 5 Solid";
  content: "\f138";
}

.list-link-btn a .svg-inline--fa {
  margin-right: 10px;
  color: #666;
}

/* Blog blocks */
.blog-bloc {
  padding: 15px;
  background: #FFF;
  border: 2px solid #ccc;
  border-radius: 10px;
}

.blog-bloc h2 {
  margin-bottom: 20px;
  margin-bottom: 2rem;
  font-size: calc( 18px + (24 - 18) * ( (100vw - 480px) / (1920 - 480) ));
}

.blog-bloc dl dt,
.blog-bloc dl dd {
  line-height: 1.4;
}

.blog-bloc dl dt {
  margin-bottom: 10px;
  margin-bottom: 1rem;
  font-size: calc( 15px + (17 - 15) * ( (100vw - 480px) / (1920 - 480) ));
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
}

.blog-bloc dl dt span {
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic Medium", "Yu Gothic", Meiryo, sans-serif;
  font-weight: normal;
}

.blog-bloc dl dd {
  margin-bottom: 20px;
  margin-bottom: 2rem;
  padding-bottom: 5px;
  font-size: calc( 16px + (17 - 16) * ( (100vw - 480px) / (1920 - 480) ));
  border-bottom: 1px dashed #ccc;
}

.blog-bloc dl dd a {
  color: #3ABDE8;
}

.blog-bloc dl dd::before {
  display: none;
}

.blog-bloc dl dd::before {
  font-family: "Font Awesome 5 Solid";
  content: "\f086";
}

.blog-bloc dl dd .svg-inline--fa {
  margin-right: 10px;
}

.blog-bloc dl dd::last-child {
  margin-bottom: 30px;
  margin-bottom: 3rem;
}

.blog-bloc .single-title {
  margin-bottom: 5px;
  margin-bottom: .5rem;
  font-size: calc( 13px + (17 - 13) * ( (100vw - 480px) / (1920 - 480) ));
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
}

.blog-bloc .single-title span {
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic Medium", "Yu Gothic", Meiryo, sans-serif;
  font-weight: normal;
}

.blog-bloc .single-post-title {
  margin-bottom: 30px;
  margin-bottom: 3rem;
  padding-bottom: 5px;
  font-size: calc( 16px + (22 - 16) * ( (100vw - 480px) / (1920 - 480) ));
  border-bottom: 1px dashed #ccc;
}

.blog-bloc .single-content {
  padding: 10px;
  font-size: calc( 13px + (16 - 13) * ( (100vw - 480px) / (1920 - 480) ));
}

.blog-bloc .single-content img {
  width: initial;
}

body .blog-bloc .single-content iframe,
html body .blog-bloc .single-content iframe {
  max-width: 100%;
}

/* Navigation and pagination */
.navigation {
  width: 100%;
  padding: 30px 0;
  font-weight: bold;
}

.wp-pagenavi {
  clear: both;
  padding: 30px 0;
}

body .wp-pagenavi span,
body .wp-pagenavi a,
html body .wp-pagenavi span,
html body .wp-pagenavi a {
  padding: 10px;
  color: #FFF;
  background: #000;
}

.wp-pagenavi a:hover {
  color: #FFF;
  background: #3ABDE8;
}

.wp-pagenavi .current {
  background: #FFF;
  color: #000;
}

/* Archive list */
body .archive-list-wrap,
html body .archive-list-wrap {
  margin-bottom: 30px;
  padding-bottom: 50px;
}

.archive-list-wrap .blog-bloc dl dd {
  margin-bottom: 50px;
  margin-bottom: 5rem;
  padding-bottom: 20px;
}

/* ====================================
   7. STORE FUNCTIONALITY
   ==================================== */

/* Store section base */
#store {
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 15px 0 15px;
}

#store .area-link {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 50px;
  margin-bottom: 5rem;
}

#store .area-link li {
  -webkit-flex-basis: 15%;
  flex-basis: 15%;
  margin-right: 15px;
  margin-bottom: 15px;
}

#store .area-link li a {
  padding: 10px 20px;
  font-size: calc( 14px + (22 - 14) * ( (100vw - 480px) / (1920 - 480) ));
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", meiryo, sans-serif;
  font-weight: bold;
  border-bottom: 1px dotted #3ABDE8;
}

#store .store-area-title {
  margin-bottom: 50px;
  margin-bottom: 5rem;
  padding: 10px 15px;
  background: #eee;
  font-size: calc( 16px + (24 - 16) * ( (100vw - 480px) / (1920 - 480) ));
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", meiryo, sans-serif;
  font-weight: bold;
  text-align: center;
  position: relative;
}

#store .store-area-title::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -30px;
  left: 0;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: #eee transparent transparent transparent;
  border-width: 30px 30px 0 30px;
}

/* Store List Page Styles */
body .store-section,
html body .store-section {
  background: #f8f9fa;
  margin-bottom: 2rem;
}

.store-container {
  max-width: 1200px;
  margin: 0 auto;
}

.store-main-title {
  text-align: center;
  color: #333;
  padding: 1.5rem 0;
  font-size: 2.2rem;
  font-weight: bold;
}

/* PC Region Navigation */
.pc-region-nav {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  margin-bottom: 3rem;
}

.region-nav-title {
  text-align: center;
  color: #333;
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.region-nav-title i {
  color: #00B7DA;
  font-size: 1.2rem;
}

.region-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.region-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 1.5rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 2px solid #dee2e6;
  border-radius: 10px;
  text-decoration: none;
  color: #495057;
  font-size: 1.4rem;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.region-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 183, 218, 0.1), transparent);
  transition: left 0.5s;
}

.region-btn:hover {
  background: linear-gradient(135deg, #00B7DA 0%, #0095b8 100%);
  color: white;
  border-color: #00B7DA;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 183, 218, 0.3);
}

.region-btn:hover::before {
  left: 100%;
}

.region-btn:active {
  transform: translateY(0);
}

/* Store content sections */
.region-section {
  margin-bottom: 2rem;
}

.region-title {
  color: #333;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  padding: 0.8rem 0;
  border-bottom: 3px solid #00B7DA;
  text-align: center;
}

.area-section {
  margin-bottom: 2rem;
}

.area-title {
  color: #333;
  margin-bottom: 1.5rem;
  padding: 0.8rem 0;
  border-bottom: 2px solid #00B7DA;
  font-size: 1.6rem;
  font-weight: bold;
}

.stores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
}

/* Store cards */
.store-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.store-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.store-card-header {
  padding: 1.2rem 1.2rem 0;
}

.store-card-title {
  margin: 0;
  font-size: 2rem;
  font-weight: bold;
}

.store-card-title a {
  color: #333;
  text-decoration: none;
}

.store-card-title a:hover {
  color: #00B7DA;
}

.store-card-body {
  padding: 1rem 1.2rem;
}

.store-info-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
  font-size: 1.6rem;
  color: #666;
}

.store-info-item i {
  width: 28px;
  color: #00B7DA;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.store-tel a {
  color: #00B7DA;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
}

.store-actions {
  display: flex;
  gap: 0.4rem;
  margin-top: 1.2rem;
  flex-wrap: wrap;
}

.store-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 600;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 90px;
}

.store-btn i {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.store-btn span {
  line-height: 1;
}

.store-btn-primary {
  background: #00B7DA;
  color: white;
}

.store-btn-primary:hover {
  background: #0095b8;
  transform: translateY(-1px);
}

.store-btn-secondary {
  background: #f8f9fa;
  color: #6c757d;
  border: 1px solid #dee2e6;
}

.store-btn-secondary:hover {
  background: #e9ecef;
  color: #495057;
}

.store-card-footer {
  padding: 0 1.2rem 1.2rem;
}

.store-detail-link {
  display: inline-flex;
  align-items: center;
  color: #00B7DA;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.6rem;
  transition: color 0.3s ease;
}

.store-detail-link:hover {
  color: #0095b8;
}

.store-detail-link i {
  margin-left: 0.4rem;
  font-size: 0.75rem;
}

/* Store Detail Page Styles */
.store-detail-section {
  background: #f8f9fa;
  min-height: 100vh;
  padding: 2rem 0;
}

.store-detail-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.store-detail-header {
  margin-bottom: 3rem;
}

.store-hero {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #00B7DA 0%, #0095b8 100%);
  border-radius: 15px;
  color: white;
  position: relative;
  overflow: hidden;
}

.store-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.store-detail-title {
  font-size: 4rem;
  margin: 0 0 1.5rem 0;
  font-weight: bold;
  position: relative;
  z-index: 1;
}





.store-badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.store-badge {
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 25px;
  font-size: 1.4rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
}

.store-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.store-info-card, 
.store-actions-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.store-info-card:hover, 
.store-actions-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.store-section-title {
  font-size: 2.2rem;
  color: #333;
  margin: 0 0 1.5rem 0;
  font-weight: bold;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #00B7DA;
}

.store-info-list {
  space-y: 1.5rem;
}

/* Store detail info items */
.store-detail-section .store-info-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
  font-size: 1.6rem;
  color: #666;
}

.store-detail-section .store-info-item:last-child {
  border-bottom: none;
}

.store-detail-section .store-info-item i {
  width: 24px;
  height: 24px;
  color: #00B7DA;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.store-info-content {
  flex: 1;
}

.store-info-label {
  display: block;
  font-weight: 600;
  color: #666;
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
}

.store-info-value {
  color: #333;
  font-size: 1.6rem;
  line-height: 1.5;
}

.tel-link {
  color: #00B7DA;
  text-decoration: none;
  font-weight: 500;
}

.tel-link:hover {
  color: #0095b8;
}

.store-website-link {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
}

.website-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 1.5rem;
  background: #f8f9fa;
  color: #00B7DA;
  border: 2px solid #00B7DA;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.website-btn:hover {
  background: #00B7DA;
  color: white;
}

.website-btn i {
  margin-right: 0.5rem;
}

/* Quick actions */
.quick-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.action-btn {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.2rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.action-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.action-btn:hover::before {
  left: 100%;
}

.action-btn-primary {
  background: linear-gradient(135deg, #00B7DA 0%, #0095b8 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(0,183,218,0.3);
}

.action-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,183,218,0.4);
}

.action-btn-secondary {
  background: #f8f9fa;
  color: #495057;
  border: 2px solid #dee2e6;
}

.action-btn-secondary:hover {
  background: #e9ecef;
  border-color: #adb5bd;
}

.action-btn i {
  width: 24px;
  height: 24px;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.action-btn span {
  flex: 1;
  font-weight: 600;
  font-size: 1.7rem;
}

.action-btn small {
  color: rgba(255,255,255,0.8);
  font-size: 1.2rem;
  margin-left: auto;
}

.action-btn-secondary small {
  color: #6c757d;
}

/* Map and contact sections */
.map-section,
.contact-section {
  background: white;
  margin: 3rem 0;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.section-header {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-title {
  font-size: 2.2rem;
  color: #333;
  margin: 0 0 0.5rem 0;
  font-weight: bold;
}

.section-subtitle {
  color: #666;
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.5;
}

.map-container {
  padding: 0;
}

.map-wrapper {
  position: relative;
  width: 100%;
  height: 450px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 300px;
  color: #6c757d;
}

.map-placeholder i {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.contact-container {
  padding: 2rem;
}

.ssl-notice {
  display: flex;
  align-items: center;
  background: #e8f5e8;
  padding: 1rem 2rem;
  border-top: 1px solid #dee2e6;
}

.ssl-notice i {
  color: #28a745;
  margin-right: 0.75rem;
  font-size: 1.1rem;
}

.ssl-notice p {
  margin: 0;
  color: #155724;
  font-size: 1.3rem;
}

/* Store wrap styles (legacy) */
#store .store-wrap {
  margin-bottom: 60px;
  margin-bottom: 6rem;
  padding: 0;
}

#store .store-wrap .store-name {
  margin-bottom: 10px;
  margin-bottom: 1rem;
  font-size: calc( 16px + (22 - 16) * ( (100vw - 480px) / (1920 - 480) ));
  color: #0096C7;
  border-bottom: 1px solid #CCC;
}

#store .store-wrap .store-name a {
  color: #0096C7;
}

#store .store-wrap .store-name a span {
  display: inline-block;
  margin-left: 10px;
  padding: 10px;
  background: rgba(255,255,0,0.7);
  color: #000;
  font-size: calc( 15px + (18 - 15) * ( (100vw - 480px) / (1920 - 480) ));
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  line-height: 1;
  position: relative;
  top: -5px;
}

#store .store-wrap .store-name::before {
  content: "●";
  margin-right: 10px;
}

#store .store-wrap .store-name::after {
  content: '>';
  margin-left: 5px;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
}

#store .store-wrap .store-info-wrap {
  display: -webkit-flex;
  display: flex;
}

#store .store-wrap .store-info-wrap .store-info {
  width: 83%;
  margin-right: 15px;
  margin-bottom: 20px;
  margin-bottom: 2rem;
}

#store .store-wrap .store-info-wrap .store-info table {
  width: 100%;
  border-collapse: collapse;
}

#store .store-wrap .store-info-wrap .store-info table th,
#store .store-wrap .store-info-wrap .store-info table td {
  padding: 10px;
  border-bottom: 1px solid #CCC;
}

#store .store-wrap .store-info-wrap .store-info table th {
  width: 13%;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", meiryo, sans-serif;
  font-weight: bold;
  vertical-align: top;
}

#store .store-wrap .store-info-wrap .store-info table .store-tel-btn a {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: calc( 15px + (26 - 15) * ( (100vw - 480px) / (1920 - 480) ));
  line-height: 1;
}

#store .store-wrap .store-info-wrap .store-info table .store-tel-btn a::before {
  display: none;
}

#store .store-wrap .store-info-wrap .store-info table .store-tel-btn a::before {
  font-family: "Font Awesome 5 Solid";
  content: "\f3cd";
}

#store .store-wrap .store-info-wrap .store-info table .store-tel-btn a .svg-inline--fa {
  font-size: 90%;
  margin-right: 10px;
}

#store .store-wrap .store-info-wrap .store-link ul {
  display: -webkit-flex;
  display: flex;
  margin-bottom: 10px;
  margin-bottom: 1rem;
}

#store .store-wrap .store-info-wrap .store-link ul li {
  max-width: 200px;
  margin-right: 10px;
}

#store .store-wrap .store-info-wrap .store-link ul li:last-child {
  margin-right: 0;
}

#store .store-wrap .store-info-wrap .store-link .more-link a {
  display: inline-block;
  padding: 7px;
  background: #3ABDE8;
  color: #FFF;
  font-size: calc( 14px + (16 - 14) * ( (100vw - 480px) / (1920 - 480) ));
  border: 1px solid #0096C7;
  border-radius: 5px;
}

#store .store-wrap .store-info-wrap .store-link .more-link a::before {
  display: none;
}

#store .store-wrap .store-info-wrap .store-link .more-link a::before {
  font-family: "Font Awesome 5 Solid";
  content: "\f138";
}

#store .store-wrap .store-info-wrap .store-link .more-link a .svg-inline--fa {
  margin-right: 10px;
}

/* Store single page */
#store-single {
  padding: 0 15px;
}

#store-single .store-page-title {
  margin-bottom: 30px;
  margin-bottom: 3rem;
  padding: 50px;
  background: #FDFDF1;
  text-align: center;
}

#store-single .store-page-title img {
  max-width: 300px;
}

#store-single .store-wrap {
  max-width: 1100px;
  margin: 20px auto 50px;
  padding: 0;
}

#store-single .store-wrap .store-name {
  margin-bottom: 30px;
  margin-bottom: 3rem;
  font-size: calc( 16px + (28 - 16) * ( (100vw - 480px) / (1920 - 480) ));
  color: #3ABDE8;
  border-bottom: 1px solid #CCC;
}

#store-single .store-wrap .store-name a {
  color: #0096C7;
}

#store-single .store-wrap .store-name::before {
  content: "●";
  margin-right: 10px;
}

#store-single .store-wrap .store-info-wrap {
  display: -webkit-flex;
  display: flex;
}

#store-single .store-wrap .store-info-wrap .store-info {
  width: 85%;
  margin-right: 15px;
}

#store-single .store-wrap .store-info-wrap .store-info table {
  width: 100%;
  margin-bottom: 20px;
  margin-bottom: 2rem;
  border-collapse: collapse;
}

#store-single .store-wrap .store-info-wrap .store-info table th,
#store-single .store-wrap .store-info-wrap .store-info table td {
  padding: 20px;
  border-bottom: 1px solid #CCC;
}

#store-single .store-wrap .store-info-wrap .store-info table th {
  width: 22%;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", meiryo, sans-serif;
  font-weight: bold;
  vertical-align: top;
}

#store-single .store-wrap .store-info-wrap .store-info table .store-tel-btn span {
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", meiryo, sans-serif;
  font-weight: bold;
  font-size: calc( 18px + (30 - 18) * ( (100vw - 480px) / (1920 - 480) ));
}

#store-single .store-wrap .store-info-wrap .store-info table .store-tel-btn span::before {
  display: none;
}

#store-single .store-wrap .store-info-wrap .store-info table .store-tel-btn span::before {
  font-family: "Font Awesome 5 Solid";
  content: "\f3cd";
}

#store-single .store-wrap .store-info-wrap .store-info table .store-tel-btn span .svg-inline--fa {
  font-size: 90%;
  margin-right: 10px;
}

#store-single .store-wrap .store-info-wrap .store-info .more-link {
  margin-bottom: 50px;
  margin-bottom: 5rem;
}

#store-single .store-wrap .store-info-wrap .store-info .more-link a {
  display: inline-block;
  padding: 10px;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", meiryo, sans-serif;
  font-weight: bold;
  font-size: calc( 14px + (18 - 14) * ( (100vw - 480px) / (1920 - 480) ));
  border: 1px dotted #3ABDE8;
  border-radius: 5px;
}

#store-single .store-wrap .store-info-wrap .store-info .more-link a::before {
  display: none;
}

#store-single .store-wrap .store-info-wrap .store-info .more-link a::before {
  font-family: "Font Awesome 5 Solid";
  content: "\f138";
}

#store-single .store-wrap .store-info-wrap .store-info .more-link a .svg-inline--fa {
  margin-right: 10px;
  color: #3ABDE8;
}

#store-single .store-wrap .store-info-wrap .store-link ul {
  margin-bottom: 10px;
  margin-bottom: 1rem;
}

#store-single .store-wrap .store-info-wrap .store-link ul li {
  max-width: 200px;
  margin-bottom: 10px;
  margin-bottom: 1rem;
}

/* Store single map */
#store-single #map {
  max-width: 1100px;
  margin: 0 auto 100px;
}

#store-single #map .store-map-title {
  margin-bottom: 20px;
  margin-bottom: 2rem;
  font-size: calc( 20px + (28 - 20) * ( (100vw - 480px) / (1920 - 480) ));
  color: #3ABDE8;
  border-bottom: 1px solid #CCC;
}

#store-single #map .store-map-title::before {
  content: "●";
  margin-right: 10px;
}

#store-single #map .access-map .acf-map {
  width: 100%;
  height: 400px;
  border: #ccc solid 1px;
  margin: 20px 0;
}

/* ====================================
   8. FOOTER
   ==================================== */

.site-footer {
  background: #000;
  color: #FFF;
  margin-top: auto;
}

.site-footer a {
  color: #FFF;
}

.site-footer .footer-menu {
  max-width: 1366px;
  margin-right: auto;
  margin-left: auto;
  display: -webkit-flex;
  display: flex;
  padding: 30px;
}

.site-footer .footer-menu .footer-logo {
  max-width: 25%;
  margin-right: 30px;
}

.site-footer .footer-menu .footer-logo a {
  display: inline-block;
  padding: 10px 10px 3px;
  background: #FFF;
  border-radius: 5px;
}

.site-footer .footer-menu .footer-nav {
  padding: 0 30px;
  border-right: 1px solid #eee;
  border-left: 1px solid #eee;
}

.site-footer .footer-menu .footer-nav ul {
  padding: 0 20px;
}

.site-footer .footer-menu .footer-nav ul li::before {
  content: " ・ ";
}

.site-footer .copyright {
  padding: 30px;
  background: #333;
  text-align: center;
}

/* ====================================
   9. RESPONSIVE DESIGN & MEDIA QUERIES
   ==================================== */

/* Mobile responsive font size */


/* Print styles */


/* Header responsive */






/* Area menu - PC では非表示 */
.area-menu {
  display: none;
}

/* Mobile menu specific */


/* Store page mobile specific */






/* Very small mobile adjustments */


/* Site header page specific responsive */


/* Mobile header specific styles */
body.page-template-page-access-temp .sp-branding,
html body.page-template-page-access-temp .sp-branding {
  display: block;
  visibility: visible;
  opacity: 1;
}

body .sp-nav-space,
html body .sp-nav-space {
  padding-top: 0;
}

.area-menu-container {
  display: none;
}



/* Add margin-top to main only for mobile on page-access-temp.php */


/* ====================================
   10. UTILITIES & HELPERS
   ==================================== */

/* Margin bottom utilities */
.mgb10 {
  margin-bottom: 10px;
  margin-bottom: 1rem;
}

.mgb15 {
  margin-bottom: 15px;
  margin-bottom: 1.5rem;
}

.mgb20 {
  margin-bottom: 20px;
  margin-bottom: 2rem;
}

.mgb30 {
  margin-bottom: 30px;
  margin-bottom: 3rem;
}

.mgb40 {
  margin-bottom: 40px;
  margin-bottom: 4rem;
}

.mgb50 {
  margin-bottom: 50px;
  margin-bottom: 5rem;
}

.mgb60 {
  margin-bottom: 60px;
  margin-bottom: 6rem;
}

.mgb100 {
  margin-bottom: 100px;
  margin-bottom: 10rem;
}

/* Mobile margin adjustments */


/* Text alignment utilities */
.txt-right {
  text-align: right;
}

.txt-center {
  text-align: center;
}

.color-red {
  color: #F00;
}

/* Visibility helpers */
.sp-only {
  display: none;
}










/* Mobile navigation styles */
.sp-menu-bloc {
  display: -webkit-flex;
  display: flex;
}

.sp-menu-bloc .menu {
  width: 20%;
}

.sp-nav-space-store {
  padding-top: 140px;
}

/* Hamburger menu wrapper */
.hamburger-menu-wrapper {
  background: #FAFAFA;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  width: 56px;
  border-radius: 4px;
  z-index: 99999;
}

.hamburger-menu-wrapper.bounce-effect {
  animation: bounce 0.3s ease 1;
}

.menu-overlay {
  transition: margin 300ms cubic-bezier(0.17, 0.04, 0.03, 0.94);
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1111;
}

.menu {
  position: relative;
  min-width: 250px;
}

.hamburger-menu {
  border: 0;
  margin: 0 auto;
  display: block;
  position: relative;
  overflow: hidden;
  padding: 0;
  width: 36px;
  height: 36px;
  font-size: 0;
  text-indent: -9999px;
  cursor: pointer;
  z-index: 9999;
  background: transparent;
}

.menu-list {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  width: 100%;
  padding: 50px 0;
  text-align: center;
  z-index: 9999;
  background: #224f7e;
}

.menu-list a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  display: inline-block;
  margin: 10px 0;
  transition: all 0.5s ease;
}

.menu-list a.mini-menu {
  font-size: 14px;
}

.menu-list a:hover {
  color: #02D5FD;
}

.hamburger-menu:focus {
  outline: none;
}

.hamburger-menu span {
  display: block;
  position: absolute;
  top: 17px;
  left: 5px;
  right: 5px;
  height: 2px;
  background: #02D5FD;
}

.hamburger-menu span:before,
.hamburger-menu span:after {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #02D5FD;
  content: "";
}

.hamburger-menu span:before {
  top: -7px;
}

.hamburger-menu span:after {
  bottom: -7px;
}

.hamburger-menu span:before,
.hamburger-menu span:after {
  transition-duration: 0.3s, 0.3s;
  transition-delay: 0.3s, 0s;
}

.hamburger-menu span:before {
  transition-property: top, transform;
}

.hamburger-menu span::after {
  transition-property: bottom, transform;
}

.hamburger-menu.active span {
  background: none;
}

.hamburger-menu.active span:before {
  top: 0;
  transform: rotate(225deg);
}

.hamburger-menu.active span:after {
  bottom: 0;
  transform: rotate(135deg);
}

.hamburger-menu.active span:before,
.hamburger-menu.active span:after {
  transition-delay: 0s, 0.3s;
}

/* Bounce animation */
@keyframes bounce {
  0% {
    transform: rotate(0);
  }
  45% {
    transform: rotate(15deg);
  }
  90% {
    transform: rotate(-7deg);
  }
  100% {
    transform: rotate(0);
  }
}

/* ====================================
   SP STYLES (max-width: 1279px)
   Includes all mobile and tablet styles
   ==================================== */
@media only screen and (max-width: 960px) {

body .store-detail-title,
  html body .store-detail-title {
    margin: 1.5rem 0 2rem 0;
    padding: 1rem 0;
  }

body .store-detail-title,
  html body .store-detail-title {
    margin: 1rem 0 1.5rem 0;
    padding: 0.8rem 0;
  }

body {
    font-size: calc( 12px + (16 - 12) * ( (100vw - 480px) / (960 - 480) ));
  }

.home .site-header,
  .page-id-1 .site-header {
    background-position: 80% 50%;
    background-size: auto 70%;
  }
  
  .bg-slider {
    background-position: 80% 50%;
    background-size: auto 70%;
  }
  
  .site-header .header-comment .header-more-btn .more-btn,
  .site-header-page .header-comment .header-more-btn .more-btn {
    width: 35%;
  }
  
  #voice .section-voice-title span {
    width: 50%;
  }

/* Layout adjustments */
  .row {
    padding: 30px 0;
  }
  
  .col-wrap {
    display: block;
    padding: 0;
  }
  
  .col-wrap .page-wrap {
    width: 100%;
  }
  
  .col-wrap .page-side {
    width: 100%;
  }
  
  .col-wrap .page-side .side-bloc {
    margin-bottom: 10px;
    margin-bottom: 1rem;
  }
  
  /* Header adjustments */
  .site-header .header-site-description,
  .site-header-page .header-site-description {
    display: none;
  }
  
  .site-header .branding,
  .site-header-page .branding {
    display: block;
  }
  
  .site-header .branding .site-logo,
  .site-header-page .branding .site-logo {
    width: 90%;
    max-width: 90%;
    margin: 0 auto 10px;
  }
  
  .site-header .branding .site-nav ul,
  .site-header-page .branding .site-nav ul {
    display: none;
  }
  
  .home .site-header,
  .page-id-1 .site-header {
    max-height: 600px;
    background-position: 80% 55%;
    background-size: auto 40%;
  }
  
  .bg-slider {
    max-height: 600px;
    background-position: 80% 55%;
    background-size: auto 40%;
  }
  
  .site-header .header-comment,
  .site-header-page .header-comment {
    max-width: 90%;
    padding: 10px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .site-header .header-comment .header-catch,
  .site-header-page .header-comment .header-catch {
    margin-bottom: 20px;
    margin-bottom: 2rem;
  }
  
  .site-header .header-comment .header-txt,
  .site-header-page .header-comment .header-txt {
    margin-bottom: 20px;
    margin-bottom: 2rem;
  }
  
  .site-header .header-comment .header-more-btn .more-btn,
  .site-header-page .header-comment .header-more-btn .more-btn {
    width: 75%;
  }
  
  /* Button adjustments */
  .more-btn {
    width: 50%;
    max-width: 500px;
    font-size: 1.6rem;
  }
  
  .section-more-btn {
    width: 75%;
  }
  
  /* Content section adjustments */
  #about {
    padding: 30px 25px;
  }
  
  #about .about-catch {
    margin-bottom: 25px;
    margin-bottom: 2.5rem;
  }
  
  #about .about-txt {
    margin-bottom: 15px;
    margin-bottom: 1.5rem;
  }
  
  #point .point-wrap {
    display: block;
    width: 90%;
    margin: 0 auto 30px;
  }
  
  #point .point-wrap dl {
    width: 100%;
    margin-right: 0;
  }
  
  #point .point-wrap dl dd {
    margin-bottom: 25px;
    margin-bottom: 2.5rem;
  }
  
  
  /* Price section adjustments */
  #price {
    margin-top: -130px;
    padding-top: 150px;
  }
  
  #price .price {
    padding: 0 10px;
  }
  
  #price .price__item {
    width: calc((100% - 16px) / 2);
  }
  
  #price .price__icon {
    height: 112px;
  }
  
  /* Voice section adjustments */
  #voice::after {
    bottom: -30px;
    border-width: 30px 30px 0 30px;
  }
  
  #voice .section-voice-title {
    margin-bottom: 15px;
    margin-bottom: 1.5rem;
    font-size: 2rem;
  }
  
  #voice .section-voice-title::after {
    bottom: -30px;
    border-width: 30px 30px 0 30px;
  }
  
  #voice .section-voice-title span {
    width: 90%;
  }
  
  #voice .section-voice-title span::before {
    display: none;
  }
  
  #voice .section-voice-title span::after {
    display: none;
  }
  
  #voice .blog-wrap {
    display: block;
  }
  
  #voice .blog-wrap div {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
    margin-bottom: 3rem;
  }
  
  #voice .blog-wrap div {
    margin-bottom: 15px;
    margin-bottom: 1.5rem;
  }
  
  /* Blog bloc adjustments */
  .blog-bloc h2 {
    margin-bottom: 10px;
    margin-bottom: 1rem;
  }
  
  .blog-bloc dl dd {
    margin-bottom: 10px;
    margin-bottom: 1rem;
  }
  
  .blog-bloc dl dd::last-child {
    margin-bottom: 15px;
    margin-bottom: 1.5rem;
  }
  
  .blog-bloc .single-post-title {
    margin-bottom: 15px;
    margin-bottom: 1.5rem;
  }
  
  .archive-list-wrap .blog-bloc dl dd {
    margin-bottom: 25px;
    margin-bottom: 2.5rem;
  }
  
  /* Section title adjustments */
  .section-title {
    margin-bottom: 25px;
    margin-bottom: 2.5rem;
  }
  
  /* FAQ adjustments */
  #faq {
    margin-bottom: 25px;
    margin-bottom: 2.5rem;
  }
  
  #faq dl dd {
    margin-bottom: 15px;
    margin-bottom: 1.5rem;
  }
  
  /* Store adjustments */
  #store .area-link {
    margin-bottom: 25px;
    margin-bottom: 2.5rem;
  }
  
  #store .area-link {
    display: none;
  }
  
  #store .area-link li a i {
    font-size: 85%;
  }
  
  #store .area-link li a {
    padding: 5px;
  }
  
  #store .store-area-title {
    margin-bottom: 25px;
    margin-bottom: 2.5rem;
  }
  
  #store .store-area-title::after {
    bottom: -15px;
    border-width: 15px 15px 0 15px;
  }
  
  #store .store-wrap {
    margin-bottom: 30px;
    margin-bottom: 3rem;
  }
  
  #store .store-wrap .store-name a {
    position: relative;
  }
  
  #store .store-wrap .store-name a span {
    display: block;
    padding: 5px;
    position: absolute;
    top: -25px;
    left: -15px;
  }
  
  #store .store-wrap .store-info-wrap {
    display: block;
  }
  
  #store .store-wrap .store-info-wrap .store-info {
    margin-bottom: 10px;
    margin-bottom: 1rem;
  }
  
  #store .store-wrap .store-info-wrap .store-info {
    width: 100%;
  }
  
  #store .store-wrap .store-info-wrap .store-link {
    display: none;
  }
  
  /* Store single adjustments */
  #store-single {
    padding: 0;
  }
  
  #store-single .store-page-title {
    margin-bottom: 15px;
    margin-bottom: 1.5rem;
  }
  
  #store-single .store-page-title {
    padding: 15px;
  }
  
  #store-single .store-wrap .store-name {
    margin-bottom: 15px;
    margin-bottom: 1.5rem;
  }
  
  #store-single .store-wrap .store-name {
    margin: 0 15px;
  }
  
  #store-single .store-wrap .store-info-wrap {
    display: block;
  }
  
  #store-single .store-wrap .store-info-wrap .store-info {
    width: 100%;
    margin-right: 0;
    padding: 0 15px;
  }
  
  #store-single .store-wrap .store-info-wrap .store-info table {
    margin-bottom: 10px;
    margin-bottom: 1rem;
  }
  
  #store-single .store-wrap .store-info-wrap .store-info table th,
  #store-single .store-wrap .store-info-wrap .store-info table td {
    padding: 10px;
  }
  
  #store-single .store-wrap .store-info-wrap .store-info .more-link {
    margin-bottom: 25px;
    margin-bottom: 2.5rem;
  }
  
  #store-single .store-wrap .store-info-wrap .store-link {
    width: 100%;
    margin: 0;
    padding: 10px 5px;
    background: #FFF;
    position: fixed;
    bottom: 0;
    z-index: 998;
  }
  
  #store-single .store-wrap .store-info-wrap .store-link ul {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    margin: 0;
    padding: 0;
  }
  
  #store-single .store-wrap .store-info-wrap .store-link ul li {
    margin-bottom: 0;
    margin-right: 10px;
  }
  
  #store-single .store-wrap .store-info-wrap .store-link ul li:last-child {
    margin-right: 0;
  }
  
  #store-single #map {
    margin-top: -120px;
    padding: 120px 15px 0;
  }
  
  #store-single #map .store-map-title {
    margin-bottom: 10px;
    margin-bottom: 1rem;
  }
  
  /* Contact adjustments */
  #contact {
    margin-top: -120px;
    padding: 120px 15px 0;
  }
  
  #contact .contact-title {
    margin-bottom: 10px;
    margin-bottom: 1rem;
  }
  
  .contact-tbl-box {
    margin-bottom: 25px;
    margin-bottom: 2.5rem;
  }
  
  .contact-tbl-box table {
    margin-bottom: 10px;
    margin-bottom: 1rem;
  }
  
  .contact-tbl-box table th,
  .contact-tbl-box table td {
    display: block;
    width: 100%;
    padding: 10px;
  }
  
  .contact-tbl-box table th {
    display: block;
    width: 100%;
    padding: 10px;
  }
  
  .contact-tbl-box input,
  .contact-tbl-box textarea {
    width: 100%;
  }
  
  .contact-tbl-box .contact-btn {
    width: 50%;
  }
  
  /* Footer adjustments */
  .site-footer .footer-menu {
    display: block;
  }
  
  .site-footer .footer-menu .footer-logo {
    max-width: 90%;
    margin: 0 auto 20px;
  }
  
  .site-footer .footer-menu .footer-nav {
    padding: 0 5px;
    border: none;
  }
  
  .site-footer .footer-menu .footer-nav ul li a {
    display: block;
    width: 100%;
    padding: 5px;
    border-bottom: 1px solid #333;
  }
  
  .site-footer .footer-menu .footer-nav ul li::before {
    display: none;
  }

html body {
    padding-top: 80px;
  }
  
  html body .area-menu {
    display: block;
  }
  
  .area-menu .topMenu {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    margin: 0px;
    padding: 0;
    list-style: none;
    border-bottom: 5px solid #CCC;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    padding: 5px 0;
    border: none;
    text-align: center;
    background: #F8F8F8;
    border-bottom: 5px solid #CCC;
  }
  
  .area-menu .topMenu li {
    position: relative;
    left: 2px;
  }
  
  .area-menu label {
    margin: 0;
    cursor: pointer;
  }
  
  .area-menu .topMenu {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  
  .area-menu .topMenu li,
  .area-menu .topMenu li a {
    display: inline-block;
    padding: 1px;
    border: none;
    text-align: center;
    font-weight: bold;
  }
  
  .area-menu .topMenu li,
  .area-menu .topMenu li a {
    width: calc( 100% / 4 );
  }
  
  .area-menu .topMenu li span,
  .area-menu .topMenu li a span {
    color: #666;
    font-size: 15px;
    font-size: 1.5rem;
  }
  
  .area-menu .topMenu li.bloc5 {
    width: calc( 100% / 5 );
  }
  
  .area-menu .sp_menu {
    border-bottom: 5px solid #CCC;
  }
  
  .area-menu .sp_menu li {
    border-bottom: 1px solid #CCC;
  }
  
  .area-menu .sp_menu li a {
    display: block;
    padding: 7px 3px;
    width: 100%;
    font-size: 15px;
    font-size: 1.5rem;
    font-weight: normal;
  }
  
  .area-menu .sp_menu_osaka li {
    display: inline-block;
    width: 48.5%;
    height: auto;
    vertical-align: top;
  }
  
  .area-menu .sp_menu_osaka li .aeon {
    font-size: 14px;
    font-size: 1.4rem;
  }
  
  input[type="checkbox"].on-off {
    display: none;
  }
  
  input[type="checkbox"].on-off+ul {
    display: none;
  }
  
  input[type="checkbox"].on-off:checked+ul {
    display: block;
    margin-bottom: 20px;
  }

.pc-region-nav {
    display: none;
  }
  
  html body .store-section {
    margin-bottom: 1rem;
  }
  
  .store-main-title {
    font-size: 1.8rem;
    margin: 1rem 0;
  }
  
  .region-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    padding: 0.6rem 0;
  }
  
  .area-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    padding: 0.6rem 0;
  }
  
  .stores-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .store-card-title {
    font-size: 1.5rem;
  }
  
  .store-info-item {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
  }
  
  .store-info-item i {
    width: 24px;
    font-size: 1.3rem;
    margin-right: 1rem;
  }
  
  .store-actions {
    flex-direction: column;
    gap: 0.8rem;
  }
  
  .store-btn {
    flex: none;
    font-size: 1.6rem;
    padding: 1rem 1.5rem;
    min-height: 48px;
  }
  
  .store-btn i {
    font-size: 1.1rem;
  }
  
  .store-detail-link {
    font-size: 1.1rem;
    font-weight: 700;
  }
  
  .store-tel a {
    font-size: 1.6rem;
  }
  
  /* Store detail specific mobile styles */
  html body .store-detail-title {
    font-size: 2rem;
    margin: 1.5rem 0 2rem 0;
    padding: 1rem 0;
  }
  
  .store-content-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  html body .store-badges {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    align-items: center;
  }
  
  html body .store-badge {
    padding: 0.6rem 1rem;
    font-size: 1.5rem;
  }
  
  .store-hero {
    padding: 2rem 1rem;
  }
  
  .store-info-card, 
  .store-actions-card {
    padding: 1.5rem;
  }
  
  .map-wrapper {
    height: 300px;
  }
  
  .action-btn {
    padding: 1rem;
  }
  
  .action-btn span {
    font-size: 1.5rem;
  }
  
  .store-section-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }
  
  .store-info-label {
    font-size: 1.5rem;
  }
  
  .store-info-value {
    font-size: 1.4rem;
  }
  
  .section-subtitle {
    font-size: 1.3rem;
  }

.region-buttons {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }
  
  .region-btn {
    padding: 1rem 1.2rem;
    font-size: 1.4rem;
  }

.home .site-header,
  .page-id-1 .site-header {
    max-height: 500px;
    background-position: 85% 65%;
    background-size: auto 40%;
  }
  
  .bg-slider {
    max-height: 500px;
    background-position: 85% 65%;
    background-size: auto 40%;
  }
  
  #store .area-link li {
    margin-right: 5px;
  }

.store-main-title {
    font-size: 1.6rem;
  }
  
  .region-title {
    font-size: 1.6rem;
  }
  
  .area-title {
    font-size: 1.6rem;
  }
  
  .store-card-header,
  .store-card-body,
  .store-card-footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  /* Store detail specific small mobile styles */
  .store-detail-container {
    padding: 0 0.5rem;
  }
  
  html body .store-detail-title {
    font-size: 1.8rem;
    margin: 1rem 0 1.5rem 0;
    padding: 0.8rem 0;
  }
  
  .store-info-card, 
  .store-actions-card {
    padding: 1rem;
  }
  
  .section-header {
    padding: 1.5rem 1rem;
  }
  
  .contact-container {
    padding: 1rem;
  }

html body .area-menu-container {
    position: fixed;
    top: 80px;
    width: 100%;
    z-index: 98;
    background: #fff;
    display: block;
    visibility: visible;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
  
  html body .area-menu-container .area-menu {
    display: block;
    visibility: visible;
  }

body.page-template-page-access-temp main,
  html body.page-template-page-access-temp main {
    margin-top: 60px; /* 60px (mobile-region-header) - bodyのpadding-top: 80pxが既に適用されているため */
  }

.mgb20 {
    margin-bottom: 10px;
    margin-bottom: 1rem;
  }
  
  .mgb30 {
    margin-bottom: 15px;
    margin-bottom: 1.5rem;
  }
  
  .mgb40 {
    margin-bottom: 20px;
    margin-bottom: 2rem;
  }
  
  .mgb50 {
    margin-bottom: 25px;
    margin-bottom: 2.5rem;
  }
  
  .mgb60 {
    margin-bottom: 30px;
    margin-bottom: 3rem;
  }
  
  .mgb100 {
    margin-bottom: 50px;
    margin-bottom: 5rem;
  }

.sp-only {
    display: block;
  }

.tab-hidden {
    display: none;
  }

.sp-hidden {
    display: none;
  }

}

/* ====================================
   PC STYLES (min-width: 1280px)
   Desktop-specific styles
   ==================================== */
@media only screen and (min-width: 961px) {

  /* Reset body padding-top for PC */
  html body {
    padding-top: 0;
  }

  /* Hide mobile branding */
  .sp-branding {
    display: none !important;
  }
  
  /* Show PC header elements */
  .site-header .header-site-description,
  .site-header-page .header-site-description {
    display: none;
  }
  
  .site-header .branding,
  .site-header-page .branding {
    display: -webkit-flex;
    display: flex;
    padding: 25px 15px;
  }
  
  .site-header .branding .site-logo,
  .site-header-page .branding .site-logo {
    width: 35%;
    max-width: 460px;
    margin-right: auto;
    margin-bottom: 0;
  }
  
  .site-header .branding .site-nav ul,
  .site-header-page .branding .site-nav ul {
    display: -webkit-flex;
    display: flex;
  }

.home .site-header,
  .page-id-1 .site-header {
    max-height: 100%;
    background-position: 70% 65%;
    background-size: auto 70%;
  }
  
  .bg-slider {
    max-height: 100%;
    background-position: 70% 65%;
    background-size: auto 70%;
  }

.site-header-page {
    padding-bottom: 30px;
  }
  
  .site-header-page .branding {
    margin-bottom: 15px;
    margin-bottom: 1.5rem;
  }

.pc-hidden {
    display: none;
  }

}