:root {
  --max-width: 1800px;
  --content-side-padding: 24px;
}

.ec-layoutRole .ec-layoutRole__contents {
  max-width: var(--max-width);
}

.ec-headerRole {
  max-width: var(--max-width);
  padding: 8px var(--content-side-padding);
  background-color: var(--color-background-secondary);
  display: flex;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.ec-headerRole .ec-headerRole__title {
  width: auto;
  margin-left: 0;
}

.ec-layoutRole__header {
  position: sticky;
  top: 0;
  z-index: 10;
}

.ec-headerTitle {
  width: auto;
}

.ec-headerTitle .ec-headerTitle__title a {
  margin: 0;
}

.ec-headerTitle .ec-headerTitle__title a img {
  width: auto;
  height: 60px;
}

.ec-footerRole {
  background: var(--color-background-secondary);
  margin: 0;
  padding: 32px;
}

.ec-footerTitle {
  padding: 0;
}

.ec-footerNav {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  gap: 24px;
  margin: 0;
  font-size: 16px;
  flex-wrap: wrap;
}

.ec-footerNav a {
  color: var(--color-text-on-background-secondary);
}

.ec-footerNav a:hover {
  opacity: 0.7;
}

.app-intro {
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-intro__body {
  text-align: center;
  max-width: 720px;
  display: grid;
  gap: 32px;
}

.app-intro-title {
  font-size: 30px;
  line-height: 40px;
  font-weight: bold;
}

.app-intro-description {
  font-size: 18px;
  line-height: 36px;
}

.app-h2 {
  font-size: 26px;
  height: 36px;
  font-weight: bold;
  margin: 0;
  padding: 0;
}

.app-sub-content-menu {
  display: grid;
  padding: 64px 32px;
  gap: 32px;
}

.app-sub-content-menu .app-h2 {
  text-align: center;
}

.app-sub-content-menu .app-sub-content-menu__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  list-style-type: none;
  gap: 16px;
  margin: 0;
  padding: 0;
}

.app-sub-content-menu .app-sub-content-menu__list li {
  margin: 0;
  padding: 0;
}

.app-sub-content-menu__list-item {
  display: inline-block;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  width: 96px;
  height: 96px;
  background: var(--color-background-secondary);
  color: var(--color-text-on-background-secondary);
  border-radius: 12px;
}

.app-sub-content-menu__list-item-icon {
  width: 32px;
  height: 32px;
}

.app-sub-content-menu__list-item-label {
  text-align: center;
  font-size: 12px;
}

.app-sub-content-menu__list-item:hover {
  filter: brightness(110%);
}

.app-mv {
  position: relative;
}

.app-mv .app-mv-image {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-mask-image: linear-gradient(to top, transparent, black 80%);
  mask-image: linear-gradient(to top, transparent, black 80%);
}

.app-mv .app-mv-logo {
  position: absolute;
  bottom: 80px;
  left: 50%;
  margin: 0;
  padding: 0;
  transform: translateX(-50%);
}

.app-mv .app-mv-logo img {
  height: 160px;
  width: auto;
}

.app-nav {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 48px;
  margin-left: auto;
  padding: 16px;
}

.app-nav a {
  transition: all 0.3s ease;
  color: var(--color-text-on-background-secondary);
}

.app-nav a:hover {
  opacity: 0.7;
}

.front_page .ec-headerRole {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

.is-top .ec-headerRole {
  background: none;
}

.is-top .ec-headerRole .app-nav a {
  color: var(--color-text-on-background);
}

.is-top .menu-button span {
  background: var(--color-text-on-background);
}

.help_page,
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

.guide-toggle-button button {
  width: 150px;
}

.btn-toggle-photobook {
  color: var(--color-text-on-background-primary);
  border-color: var(--color-background-secondary);
  background-color: var(--color-background-primary);
}

.btn-toggle-photobook.active {
  color: var(--color-text-on-background-secondary);
  border-color: var(--color-background-secondary);
  background-color: var(--color-background-secondary);
}

.btn-toggle-photo {
  color: var(--color-text-on-background-primary);
  border-color: var(--color-background-secondary);
  background-color: var(--color-background-primary);
}

.btn-toggle-photo.active {
  color: var(--color-text-on-background-secondary);
  border-color: var(--color-background-secondary);
  background-color: var(--color-background-secondary);
}

.sidenav-layout {
  max-width: 1248px;
  margin: 0 auto;
  padding: 32px 24px;
  display: grid;
  gap: 68px;
  grid-template-columns: 1fr 3fr;
  grid-template-areas: "title title" "nav contents";
}

.sidenav-layout.toggle {
  max-width: 1248px;
  margin: 0 auto;
  padding: 32px 24px;
  display: grid;
  gap: 68px;
  grid-template-columns: 1fr 3fr;
  grid-template-areas: "title title" "togglebutton togglebutton" "nav contents";
}

.sidenav-layout .sidenav-layout__header {
  font-size: 28px;
  font-weight: bold;
  margin: 0;
  padding: 0;
  grid-area: title;
  text-align: center;
}

.sidenav-layout .buttons {
  font-size: 28px;
  font-weight: bold;
  margin: 0;
  padding: 0;
  grid-area: togglebutton;
  text-align: center;
}

.sidenav-layout .sidenav-layout__nav {
  grid-area: nav;
}

.sidenav-layout .sidenav-layout__body {
  grid-area: contents;
  display: grid;
  gap: 96px;
}

.sidenav-layout a {
  color: var(--color-primary);
  text-decoration: underline;
}

.sidenav-layout a:hover {
  opacity: 0.7;
  text-decoration: none;
}

.sidenav {
  list-style-type: none;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid var(--color-text-on-background);
  display: grid;
  gap: 16px;
  position: sticky;
  top: 100px;
}

.help-block {
  display: grid;
  gap: 48px;
}

.help-block .help-block {
  gap: 24px;
}

.help-block .help-block .help-block {
  gap: 16px;
}

.help-block .help-block .help-block .help-block {
  gap: 8px;
}

.help-optional-block {
  background-color: var(--color-background-secondary);
  border-radius: 12px;
  padding: 24px;
  color: var(--color-text-on-background-secondary);
}

.help-image-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.help-image-block.vertical {
  grid-template-columns: 1fr;
}

.help-image-block .help-image-block__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.help-image-block .help-image-block__body .help-image-block .help-image-block__body {
  gap: 8px;
}

.help-image-block .help-image-block__image img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.help-separator {
  border: 0;
  background-color: var(--color-text-on-background);
  height: 1px;
  width: 100%;
  margin: 0;
}

.help-sentence {
  line-height: 2;
  font-size: 16px;
}

.help-small-text {
  line-height: 2;
  font-size: 14px;
}

.help-h2 {
  font-size: 24px;
  font-weight: bold;
  margin: 0;
}

.help-h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 0;
}

.help-h4 {
  font-size: 16px;
  font-weight: bold;
  margin: 0;
}

.result-text {
  font-size: 16px;
  font-weight: bold;
  text-align: right;
}

.shipping-date {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.shipping-date .number {
  font-size: 26px;
  font-weight: bold;
  line-height: 32px;
}

.shipping-date .unit {
  font-size: 16px;
  font-weight: bold;
  line-height: 32px;
}

.help-text-small {
  font-size: 14px;
  line-height: 24px;
}

.shipping-flow {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
  justify-content: center;
  gap: 16px 0;
}

.shipping-flow__item {
  background-color: var(--color-background-secondary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  padding: 12px;
  min-width: 120px;
  color: var(--color-text-on-background-secondary);
}

.shipping-flow__item-number {
  font-size: 20px;
  font-weight: bold;
}

.shipping-flow__item-label {
  font-size: 20px;
  font-weight: bold;
}

.image {
  width: 100%;
  height: auto;
}

.menu-button {
  position: fixed;
  top: 20px;
  right: 20px;
  border: none;
  background: none;
  width: 32px;
  height: 32px;
  z-index: 20;
}

.menu-button span {
  display: block;
  background: var(--color-text-on-background-secondary);
  width: 100%;
  height: 2px;
  position: absolute;
  right: 0;
  left: 0;
  transition: 0.3s ease all;
}

.menu-button span:nth-child(1) {
  top: 6px;
}

.menu-button span:nth-child(2), .menu-button span:nth-child(3) {
  top: 50%;
  transform-origin: top;
  transform: translate(0, -50%);
}

.menu-button span:nth-child(4) {
  bottom: 6px;
}

.menu-button.open span:nth-child(1) {
  display: none;
}

.menu-button.open span:nth-child(2) {
  transform: rotate(45deg) translate(0, -50%);
  top: 50%;
}

.menu-button.open span:nth-child(3) {
  transform: rotate(-45deg) translate(0, -50%);
  top: 50%;
}

.menu-button.open span:nth-child(4) {
  display: none;
}

.menu-button.open ~ .app-nav {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.control-description {
  display: grid;
  gap: 16px;
}

.control-description .control-description__item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.control-description .control-description__item-icon {
  display: inline-flex;
  padding: 8px;
}

@media screen and (min-width: 768px) {
  .menu-button {
    display: none;
  }
}

@media (max-width: 767px) {
  .app-mv .app-mv-logo img {
    height: auto;
    width: 280px;
    max-width: calc(100vw - 32px);
  }
}

@media screen and (max-width: 767px) {
  .app-nav {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    position: fixed;
    overscroll-behavior: contain;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    width: 100dvw;
    height: 100dvh;
    background: var(--color-background-secondary);
    z-index: 10;
    padding: 32px;
  }
  .app-nav a {
    color: var(--color-text-on-background-secondary);
    font-size: 24px;
  }
  .sidenav-layout {
    grid-template-columns: 1fr;
    grid-template-areas: "title" "nav" "contents";
  }
  .sidenav-layout.toggle {
    grid-template-columns: 1fr;
    grid-template-areas: "title" "togglebutton" "nav" "contents";
  }
  .help-image-block {
    grid-template-columns: 1fr;
  }
  .shipping-flow {
    flex-direction: column;
  }
  .shipping-flow__item {
    width: 100%;
    flex-direction: row;
    gap: 16px;
  }
  .shipping-flow__item-icon {
    order: 1;
    width: 48px;
  }
  .shipping-flow__item-number {
    order: 2;
    width: 12px;
  }
  .shipping-flow__item-label {
    order: 3;
    width: 100px;
  }
  .shipping-flow__arrow {
    transform: rotate(90deg);
  }
}
/*# sourceMappingURL=customize.css.map */