
@import url("./footer.css?v=6");
@import url("./navbar.css");
@import url("./style-guide.css");

@import url("./components/common.css");

:root {
  font-family: 'Spoqa Han Sans Neo',-apple-system,BlinkMacSystemFont,"Malgun Gothic","맑은 고딕",helvetica,"Apple SD Gothic Neo",sans-serif;
  word-spacing: -0.0128em;
  word-break: keep-all;
  font-size: 20px;
}

button {
  font-family: "Spoqa Han Sans Neo",-apple-system,BlinkMacSystemFont,"Malgun Gothic","맑은 고딕",helvetica,"Apple SD Gothic Neo",sans-serif;
}

body {
  min-height: 100vh;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

span.keep-line {
  white-space: nowrap;
}

pre {
  font-style: normal;
  font-family: 'Spoqa Han Sans Neo';

  justify-content: start;
}

h1 {
  font-weight: normal;
}

h2 {
  font-weight: normal;
}

h3 {
  font-weight: normal;
}
h4 {
  font-weight: normal;
}
h5 {
  font-weight: normal;
}
h6 {
  font-weight: normal;
}




hr {
  border-top:none !important;
  border-right:none !important;
  border-left:none !important;
  clear:both;
  display: block;
  width: 100%;
}
ul {
  list-style-type: none;
}

ol {
  list-style-position: inside;
}
input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  outline:none;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}
select {
  outline: none;
  border-radius: 0;
}
input:focus {
  outline:none;
}
button {
  outline: none;
}

/* hidden macro */
.hidden {
  display:none !important;
}

.opaque {
  visibility: hidden;
}

.flex-pad {
  visibility: hidden;
}


.noscroll {

  overflow:hidden;
}
@media only screen and (max-width: 768px){
  .mobile-noscroll {
    overflow: hidden;
  }
}

/* narrow main */
.padded-main {
  width: calc(100%);
  max-width: calc(1440px - 272px + 48px);
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.vertical-divider {
  display: inline-block;
  width: 1px;
  margin: 0 8px;
  height: 12px;
}

input:focus,
select:focus,
textarea:focus,
input:invalid{
  outline: none;
}

input:invalid {
  box-shadow: none;
}

#subscribe {
  position: fixed;
  z-index: 100;
  bottom: 60px;
  right: 28px;

  height: 52px;
  min-width: 52px;

  display: flex;
  align-items: center;
  justify-content: center;
}

@media only screen and (max-width: 768px){
  #subscribe {
    bottom: 30px;
  }
}

#subscribe div{

  margin: 0 22px;
  display: flex;
  justify-content: center;
  align-items: center;
}



#subscribe svg {
  width: 20px;
}

#subscribe {
  font-size: 14px;
  font-weight: bold;
}

#subscribe span {
  padding-bottom: 1px;
}

#subscribe svg path {
  fill: #176643;
}

#scroll-up {
  margin-left: 8px;
  overflow: hidden;
  transition: max-width 100ms ease-in-out;
  word-break: keep-all;
  white-space: nowrap;
}

/** media query */
@media only screen and (min-width: 769px){
  .mobile {
    display: none !important;
  }
}


@media only screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}

.change-maker-card {
  position: relative;

  border-radius: 8px;
  display: inline-flex;
  box-sizing: border-box;
}

.change-maker-card::before {
  content: '';
  display: block;
  padding-top: 160%;
}

.card-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}


.change-maker-card .img-wrapper {
  width: 90%;
  flex-grow: 0;
  flex-shrink: 0;
  margin: 5% 5% 0;
  box-sizing: border-box;
  display: inline-block;
  background-color: #f6f6f6;
  border-radius: 10px;

  position:relative;
}

.change-maker-card .img-wrapper::before {
  content: '';
  display: block;
  padding-top: calc(100% * 40.0 / 27.0);
}
.change-maker-card .img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.change-maker-card .logo-container {
  flex: 1;

  height: calc(6400% / 480);
  display: flex;
  align-items: center;
  justify-content: center;
}
.change-maker-card .logo-container img {
  height: 100%;
  width: auto;
}