@charset "UTF-8";
/* CSS Information
---------------------------------------------------------------
Site URL:https://nakasange-syoten.com/
File name:style.css
Summary:base styles
Created:2025-02-10
--------------------------------------------------------------- */
/* Fonts */
/* ------------------------------------------------------------ */
/* Margin */
/* ------------------------------------------------------------ */
/* Link */
/* ------------------------------------------------------------ */
a {
  color: #373739;
  text-decoration: none;
}

/* Animation */
/* ------------------------------------------------------------ */
a,
img {
  transition: all 0.5s ease;
}

.alpha:hover {
  filter: alpha(opacity=50);
  opacity: 0.5;
}

/* Font */
/* ------------------------------------------------------------ */
sup {
  font-size: 66%;
  vertical-align: top;
}

sub {
  font-size: 66%;
  vertical-align: baseline;
}

/* インデント1文字分 */
/* ------------------------------------------------------------ */
.indent {
  text-indent: -1em;
  margin-left: 1em;
}

/* pc_mode / sp_mode */
/* ------------------------------------------------------------ */
.pc {
  display: inherit;
}

.sp {
  display: none;
}

@media screen and (max-width: 480px) {
  .pc {
    display: none;
  }
  .sp {
    display: inherit;
  }
}
/* Button */
/* ------------------------------------------------------------ */
/* Style */
/* ------------------------------------------------------------ */
html {
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  font-size: 1.171vw;
}
@media screen and (max-width: 480px) {
  html {
    font-size: 14px;
  }
}
html body {
  background: #000;
}
html body::-webkit-scrollbar {
  display: none;
}
html body main {
  overflow: hidden;
}
html body main#index section#catchphrase .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #071d33;
  padding: 10vw 5vw;
}
html body main#index section#catchphrase .inner h2 {
  color: #fff;
  text-align: center;
  font-size: 4.5vw;
  font-weight: bold;
}
html body main#index section#catchphrase .inner p {
  color: #fff;
  text-align: center;
  font-size: 3vw;
  line-height: 2;
  margin-top: 5vw;
}/*# sourceMappingURL=style.css.map */