/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

a {
  color: inherit;
  text-decoration: inherit;
}

/* Section Styles */
.section {
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: start;
  color: #fff;
}

/* Fullscreen Background Image */
#intro {
  height: 100vh;
    background: url('assets/first-section.png') no-repeat center center/cover;
}

/* Services Section */
#services {
    background-color: #ffffff;
    flex-direction: column;
    line-height: 0;
}

.title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

/* Title & Icon */
#services .our-services {
    font-size: 2.5em;
    color: #282828;
    padding-left: 20px;
    font-weight: bold;
}

#services .icon-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8em;
    font-weight: bold;
    color: #272727;
}

#famirinku-service {
  background-color: #ffffff;
  flex-direction: column;
}

#services .subtitle {
    font-size: 0.8em;
    color: #ccc;
    font-weight: bold;
    margin-top: 5px;
    padding-left: 50px;
}

.service-banner {
  position: relative;
}

/* Scroll Indicator */
.scroll-down {
    position: absolute;
    bottom: 20px;
    font-size: 1em;
    color: #fff;
    opacity: 0.7;
    text-decoration: none;
}

.footer-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #212121;
  color: #ffffff;
  padding: 38px;
}

.title-text-footer {
  text-align: center;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 3px;
}

.store-link-footer {
  margin: 32px 0;
}

.title-text2-footer {
  color: #acacac;
  font-size: 12px;
  text-align: center;
  margin-bottom: 10px;
}

.store-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  margin-top: 32px;
}

.store-link {
  flex-direction: row;
  margin-top: 24px;
}

.logo-color {
  margin: 0 0 32px 0;
  width: 100px;
}

.bottom-link {
  width: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  color: #ffffff;
  font-size: 14px;
  margin-top: 20px;
}

.bottom-link a:hover {
  text-decoration: underline;
}

.bottom-link > div:after {
  content: "|";
  padding: 0 10px;
}

.bottom-link > div:last-child::after {
  content: "";
}

.store-button {
  width: 168px;
  max-width: 40vw;
}

.sns-links {
  width: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 32px;
  margin: 32px 0 0 0;
}

.sns-links a {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sns-links img {
  width: 32px;
}

.table-title {
  font-weight: normal;
  font-size: 16px;
}

.famirinku-title {
  max-width: 310px;
  margin: 10px 20px;
}

.shipping-fee-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  margin: 32px 0 0 0;
}

@media (min-width: 615px) {
  .mobile {
    display: none;
  }
}

@media (max-width: 614px) {
  .wide {
    display: none;
  }

  #intro {
    height: 100vh;
      background: url('assets/first_section_mobile.png') no-repeat center center/cover;
  }

  #services .our-services {
    font-size: 1.6em;
  }

  .famirinku-title {
    max-width: 190px;
  }
}