.section-title__en {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
  font-size: var(--md);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .section-title__en {
    -moz-column-gap: 5px;
         column-gap: 5px;
  }
}
.section-title__en::before {
  content: "";
  width: 8px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  margin-top: 2px;
}
@media screen and (max-width: 768px) {
  .section-title__en::before {
    width: 6px;
    margin-top: 1px;
  }
}
.section-title__jp {
  width: 100%;
  margin: 40px auto 0;
  text-align: center;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.35;
  font-family: var(--serif);
}
@media screen and (max-width: 1024px) {
  .section-title__jp {
    margin: 20px auto 0;
    font-size: 26px;
  }
}
.section-title--white .section-title__en {
  color: var(--white);
}
.section-title--white .section-title__en::before {
  background: var(--white);
}
.section-title--white .section-title__jp {
  color: var(--white);
}
.section-title--black .section-title__en {
  color: var(--black);
}
.section-title--black .section-title__en::before {
  background: var(--black);
}
.section-title--black .section-title__jp {
  color: var(--black);
}

.kv {
  width: 100%;
  margin: 80px auto 0;
}
@media screen and (max-width: 768px) {
  .kv {
    margin: 50px auto 0;
  }
}
.kv__inner {
  width: min(90%, 1400px);
  margin: 0 auto;
}
.kv__contents {
  width: min(100%, 1300px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto auto;
  -moz-column-gap: 5%;
       column-gap: 5%;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .kv__contents {
    grid-template-columns: repeat(1, 1fr);
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 20px;
  }
}
.kv__title {
  font-size: clamp(2rem, -0.444rem + 5.09vw, 3.375rem);
  line-height: 1.6666666667;
  font-family: var(--serif);
  font-feature-settings: "palt" 1;
  text-align: left;
  text-indent: -0.5em;
  padding-left: 0.5em;
  margin-left: -0.5em;
  color: var(--marukin);
}
@media screen and (max-width: 768px) {
  .kv__title {
    width: 100%;
  }
}
.kv__text {
  font-size: var(--md);
  line-height: 1.875;
}
@media screen and (max-width: 768px) {
  .kv__text {
    width: 100%;
  }
}
.kv__img {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 60px auto 0;
}
@media screen and (max-width: 768px) {
  .kv__img {
    margin: 40px auto 0;
  }
}
.kv__img img {
  width: 100%;
  border-radius: 20px;
}
.kv__sub {
  width: 100%;
  margin: 100px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 30px;
}
@media screen and (max-width: 768px) {
  .kv__sub {
    margin: 50px auto 0;
    row-gap: 15px;
  }
}
.kv__sub-title {
  font-family: var(--serif);
  color: var(--marukin);
  font-size: 40px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .kv__sub-title {
    font-size: 26px;
  }
}
.kv__sub-text {
  font-size: var(--lg);
  line-height: 1.875;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .kv__sub-text {
    font-size: var(--md);
  }
}

.reason {
  width: min(90%, 1400px);
  margin: 100px auto 0;
  padding: 40px 0 80px;
  background: var(--marukin);
  border-radius: 20px;
}
@media screen and (max-width: 1024px) {
  .reason {
    margin: 50px auto 0;
    padding: 30px 0 50px;
  }
}
@media screen and (max-width: 768px) {
  .reason {
    margin: 30px auto 0;
  }
}
.reason__inner {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
}
.reason__list {
  width: 100%;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 1024px) {
  .reason__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .reason__list {
    margin: 30px auto 0;
    width: 90%;
    max-width: 400px;
    grid-template-columns: repeat(1, 1fr);
  }
}
.reason__item {
  width: 100%;
  aspect-ratio: 1/1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.reason__item::before {
  content: "";
  width: 105%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 1px var(--white) solid;
  position: absolute;
  top: 50%;
}
.reason__item:nth-child(1)::before {
  left: 0;
  transform: translate(0, -50%);
}
@media screen and (max-width: 1024px) {
  .reason__item:nth-child(1)::before {
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media screen and (max-width: 1024px) {
  .reason__item:nth-child(1) {
    width: 50%;
    margin: 0 auto;
    grid-column: span 2;
  }
}
@media screen and (max-width: 768px) {
  .reason__item:nth-child(1) {
    width: 100%;
    grid-column: auto;
  }
}
.reason__item:nth-child(2)::before {
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1024px) {
  .reason__item:nth-child(2) {
    margin-top: -5vw;
  }
}
.reason__item:nth-child(3)::before {
  right: 0;
  transform: translate(0, -50%);
}
@media screen and (max-width: 1024px) {
  .reason__item:nth-child(3)::before {
    right: auto;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media screen and (max-width: 1024px) {
  .reason__item:nth-child(3) {
    margin-top: -5vw;
  }
}
.reason__item-inner {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: clamp(1.25rem, -5.707rem + 10.87vw, 3.125rem);
}
@media screen and (max-width: 768px) {
  .reason__item-inner {
    row-gap: 15px;
  }
}
.reason__item-num {
  position: absolute;
  top: 6.5%;
  left: 6.5%;
  width: clamp(2rem, -1.71rem + 5.8vw, 3rem);
  aspect-ratio: 1/1;
  background: var(--marukin);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(0.625rem, -0.303rem + 1.45vw, 0.875rem);
  line-height: 1;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .reason__item-num {
    top: 8%;
    left: 8%;
    width: 10%;
    font-size: 2vw;
  }
}
@media screen and (max-width: 768px) {
  .reason__item-num {
    font-size: 3vw;
  }
}
.reason__item-title {
  font-size: clamp(1.125rem, -0.266rem + 2.17vw, 1.5rem);
  color: var(--white);
  font-family: var(--serif);
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .reason__item-title {
    font-size: 22px;
    line-height: 1.4545454545;
  }
}
.reason__item-text {
  font-size: clamp(0.75rem, -0.641rem + 2.17vw, 1.125rem);
  line-height: 1.9444444444;
  color: var(--white);
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .reason__item-text {
    font-size: var(--md);
  }
}
.reason__link {
  width: 230px;
  position: relative;
  margin: 50px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100vmax;
  background: var(--black);
  padding: 20px 0;
  font-size: var(--sm);
  font-weight: 700;
  color: var(--white);
}
@media (hover) {
  .reason__link:hover {
    opacity: 0.7;
    transition: opacity 0.3s ease !important;
  }
}
@media screen and (max-width: 768px) {
  .reason__link {
    padding: 15px 0;
    margin: 30px auto 0;
  }
}
.reason__link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 15px;
  aspect-ratio: 15/7;
  -webkit-mask-image: url("/common/img/icon_arrow.svg");
          mask-image: url("/common/img/icon_arrow.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: var(--white);
}

.works {
  width: 100%;
  margin: 100px auto 0;
  padding: 50px 0 20px;
  background: var(--gray2);
}
@media screen and (max-width: 768px) {
  .works {
    margin: 80px auto 0;
    padding: 30px 0 10px;
  }
}
.works .section-title {
  width: min(90%, 1300px);
  margin: 0 auto;
}
.works__industry {
  width: min(90%, 1400px);
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 1.8%;
       column-gap: 1.8%;
  margin: 50px auto 0;
}
@media screen and (max-width: 1024px) {
  .works__industry {
    margin: 20px auto 0;
  }
}
@media screen and (max-width: 768px) {
  .works__industry {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 2vw;
  }
}
.works__industry-item {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.works__industry-item:nth-child(1) .works__industry-link {
  background: var(--industry1);
}
.works__industry-item:nth-child(1) .works__industry-catch {
  color: var(--industry1);
}
.works__industry-item:nth-child(2) .works__industry-link {
  background: var(--industry2);
}
.works__industry-item:nth-child(2) .works__industry-catch {
  color: var(--industry2);
}
.works__industry-item:nth-child(3) .works__industry-link {
  background: var(--industry3);
}
.works__industry-item:nth-child(3) .works__industry-catch {
  color: var(--industry3);
}
.works__industry-link {
  width: 100%;
  height: 100%;
  padding: 15px;
  border-radius: 20px;
  transition: opacity 0.3s ease;
  position: relative;
}
@media (hover) {
  .works__industry-link:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 1024px) {
  .works__industry-link {
    padding: 15px min(5%, 15px) 0;
  }
}
@media screen and (max-width: 768px) {
  .works__industry-link {
    padding-bottom: 25px;
  }
}
.works__industry-catch {
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px 15px;
  font-size: var(--lg);
  line-height: 1.6666666667;
  background: var(--white);
  border-radius: 100vmax;
}
@media screen and (max-width: 1024px) {
  .works__industry-catch {
    font-size: var(--sm);
    line-height: 1.25;
  }
}
.works__industry-title {
  width: 100%;
  margin: 30px auto 0;
  font-size: 32px;
  font-family: var(--serif);
  color: var(--white);
}
@media screen and (max-width: 1024px) {
  .works__industry-title {
    margin: 15px auto 0;
    font-size: 24px;
  }
}
.works__industry-text {
  width: 100%;
  margin: 30px auto 0;
  font-size: var(--md);
  line-height: 1.875;
  color: var(--white);
}
@media screen and (max-width: 1024px) {
  .works__industry-text {
    margin: 10px auto 0;
    font-size: var(--sm);
    line-height: 1.5;
  }
}
.works__industry-icon {
  width: 50px;
  margin: 0 auto;
  margin-right: 0;
  aspect-ratio: 1/1;
  background: var(--black);
  position: relative;
  border-radius: 50%;
}
@media screen and (max-width: 1024px) {
  .works__industry-icon {
    width: 40px;
  }
}
@media screen and (max-width: 768px) {
  .works__industry-icon {
    position: absolute;
    right: 10px;
    bottom: 10px;
  }
}
.works__industry-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30%;
  aspect-ratio: 15/7;
  -webkit-mask-image: url("/common/img/icon_arrow.svg");
          mask-image: url("/common/img/icon_arrow.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: var(--white);
}
.works__logo {
  width: 100%;
  margin: 150px auto 0;
  position: relative;
  display: flex;
  -moz-column-gap: 60px;
       column-gap: 60px;
  overflow: hidden;
  display: none;
}
@media screen and (max-width: 1024px) {
  .works__logo {
    -moz-column-gap: 30px;
         column-gap: 30px;
    margin: 100px auto 0;
  }
}
@media screen and (max-width: 768px) {
  .works__logo {
    margin: 80px auto 0;
  }
}
.works__logo-list {
  padding: 0;
  display: flex;
  flex-shrink: 0;
  -moz-column-gap: 60px;
       column-gap: 60px;
  justify-content: space-between;
  animation: slide1 80s infinite linear 0.5s both;
  animation-play-state: running;
}
@media screen and (max-width: 768px) {
  .works__logo-list {
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
}
@keyframes slide1 {
  0% {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
}
.works__logo-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 8.3333333333vw;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .works__logo-item {
    width: 16.6666666667vw;
  }
}
@media screen and (max-width: 640px) {
  .works__logo-item {
    width: 25vw;
  }
}
.works__logo-img {
  width: 100%;
}
.works__service {
  width: min(90%, 1400px);
  margin: 100px auto 0;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
@media screen and (max-width: 1024px) {
  .works__service {
    margin: 80px auto 0;
  }
}
@media screen and (max-width: 768px) {
  .works__service {
    margin: 30px auto 0;
  }
}
.works__service-item {
  width: 100%;
  display: grid;
  grid-template-columns: 190px 1fr;
  align-items: start;
  -moz-column-gap: 3.5714285714%;
       column-gap: 3.5714285714%;
  padding: 80px 0;
}
.works__service-item:nth-child(n+2) {
  border-top: 1px solid var(--gray1);
}
@media screen and (max-width: 1024px) {
  .works__service-item {
    padding: 50px 0;
    grid-template-columns: repeat(1, 1fr);
    row-gap: 30px;
  }
}
.works__service-contents {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  row-gap: 30px;
}
@media screen and (max-width: 1024px) {
  .works__service-contents {
    row-gap: 10px;
    position: relative;
  }
}
.works__service-title {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  row-gap: 10px;
}
@media screen and (max-width: 1024px) {
  .works__service-title {
    row-gap: 0px;
  }
}
.works__service-title--jp {
  font-size: var(--sm);
  font-weight: 700;
  color: rgba(0, 0, 0, 0.4);
}
.works__service-title--en {
  font-size: 36px;
  font-family: var(--serif);
  color: var(--black);
}
@media screen and (max-width: 768px) {
  .works__service-title--en {
    font-size: 28px;
  }
}
.works__service-text {
  width: 100%;
  font-size: var(--md);
  line-height: 1.875;
}
.works__service-cat {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 5px;
}
@media screen and (max-width: 1024px) {
  .works__service-cat {
    row-gap: 2px;
  }
}
.works__service-cat--item {
  font-size: var(--sm);
  color: rgba(0, 0, 0, 0.4);
  padding-left: 0.4em;
  text-indent: -0.4em;
}
.works__service-btn {
  width: 84.2105263158%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100vmax;
  background: var(--black);
  padding: 15px 0;
  font-size: var(--sm);
  color: var(--white);
  font-weight: 700;
  position: relative;
  transition: opacity 0.3s ease;
}
@media (hover) {
  .works__service-btn:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 1024px) {
  .works__service-btn {
    width: 200px;
    position: absolute;
    right: 0;
    top: 0.25em;
  }
}
@media screen and (max-width: 768px) {
  .works__service-btn {
    width: 150px;
  }
}
.works__service-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 12.5%;
  transform: translateY(-50%);
  width: 15px;
  aspect-ratio: 15/7;
  -webkit-mask-image: url("/common/img/icon_arrow.svg");
          mask-image: url("/common/img/icon_arrow.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: var(--white);
}
.works__service-archive {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 1.724137931%;
       column-gap: 1.724137931%;
}
@media screen and (max-width: 768px) {
  .works__service-archive {
    grid-template-columns: repeat(2, 1fr);
    gap: 3vw;
  }
}
.works__service-archive--link {
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (hover) {
  .works__service-archive--link:hover {
    opacity: 0.7;
    transition: opacity 0.3s ease, translate 1.5s !important;
  }
}
.works__service-archive-img {
  width: 100%;
}

.flow {
  width: 100%;
  margin: 50px auto 0;
}
@media screen and (max-width: 768px) {
  .flow {
    margin: 30px auto 0;
  }
}
.flow__inner {
  width: min(90%, 1300px);
  margin: 0 auto;
}
.flow__text {
  width: 100%;
  margin: 20px auto 0;
  text-align: center;
  font-size: var(--md);
  line-height: 1.875;
}
@media screen and (max-width: 1024px) {
  .flow__text {
    margin: 10px auto 0;
  }
}
.flow__list {
  width: min(100%, 1200px);
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  -moz-column-gap: 4.1666666667%;
       column-gap: 4.1666666667%;
}
@media screen and (max-width: 1024px) {
  .flow__list {
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: 5.859375%;
         column-gap: 5.859375%;
    row-gap: 3vw;
  }
}
@media screen and (max-width: 768px) {
  .flow__list {
    max-width: 500px;
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 10%;
         column-gap: 10%;
    row-gap: 3vw;
  }
}
.flow__item {
  width: 100%;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--gray2);
  border-radius: 50%;
  position: relative;
}
.flow__item:nth-child(n+2)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -18.75%;
  transform: translateY(-50%);
  width: 9.375%;
  aspect-ratio: 0.8660254038;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: var(--gray3);
}
@media screen and (max-width: 1024px) {
  .flow__item:nth-child(n+2)::before {
    width: 7.5471698113%;
    left: -13.2075471698%;
  }
}
@media screen and (max-width: 768px) {
  .flow__item:nth-child(n+2)::before {
    width: 6.5573770492%;
    left: -14%;
  }
}
.flow__item:last-child {
  background: var(--marukin);
}
.flow__item:last-child .flow__item-num,
.flow__item:last-child .flow__item-title {
  color: var(--white);
}
@media screen and (max-width: 768px) {
  .flow__item:nth-child(odd):not(:first-child)::before {
    left: -10%;
  }
}
.flow__item-title {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-size: var(--md);
  color: var(--black);
}
@media screen and (max-width: 1024px) {
  .flow__item-title {
    font-size: var(--xl);
  }
}
@media screen and (max-width: 768px) {
  .flow__item-title {
    font-size: 3vw;
  }
}
.flow__item-num {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translate(-50%, -100%);
  font-size: var(--md);
  font-weight: 700;
  color: var(--gray3);
}
@media screen and (max-width: 1024px) {
  .flow__item-num {
    font-size: var(--lg);
  }
}
@media screen and (max-width: 768px) {
  .flow__item-num {
    top: -5px;
    font-size: 2.5vw;
  }
}

.contact {
  width: 100%;
  margin: 100px auto 0;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .contact {
    margin: 80px auto 0;
  }
}
.contact__inner {
  width: min(90%, 1200px);
  margin: 0 auto;
}
.contact-btn {
  margin: 80px auto -110px;
}
@media screen and (max-width: 768px) {
  .contact-btn {
    margin: 30px auto -80px;
  }
}

/* ------- old style ------- */
#newsSec {
  width: 100%;
  background-color: var(--gray2);
  text-align: center;
  position: relative;
  padding: 250px 0 90px;
}
@media screen and (max-width: 1024px) {
  #newsSec {
    padding: 150px 0 50px;
  }
}

.awards {
  padding: 30px 0 120px 0;
}
@media screen and (max-width: 768px) {
  .awards {
    padding: 20px 0 50px 0;
  }
}
.awards img {
  max-width: 824px;
  width: 90%;
  height: auto;
}

#marulog {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto 80px auto;
  padding: 25px 0 20px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  #marulog {
    width: 96%;
    padding: 20px 2%;
  }
}
#marulog .top {
  -js-display: flex;
  display: flex;
  align-items: -webkit- center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 0 30px;
  padding: 0 0 30px;
  border-bottom: 1px #ddd solid;
  text-align: center;
}
#marulog .top .logo {
  width: 180px;
  margin: 0 auto 20px;
}
@media screen and (max-width: 768px) {
  #marulog .top .logo {
    width: 150px;
    margin: 0 auto 15px;
  }
}
#marulog .top h2 {
  width: 100%;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.5;
}
#marulog .top h2 a {
  color: #000;
}
#marulog .designBlog {
  margin: 0 auto 10px;
  text-align: left;
}
#marulog .designBlog h3 {
  font-size: 130%;
  font-weight: bold;
  margin: 0 0 20px;
}
#marulog .designBlog p {
  font-size: 100%;
  line-height: 1.5;
  margin: 0 0 20px;
}
#marulog .designBlog ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#marulog .designBlog ul li {
  width: calc((100% - 80px) / 3);
  margin: 0 0 40px;
}
@media screen and (max-width: 960px) {
  #marulog .designBlog ul li {
    width: calc((100% - 40px) / 2);
  }
}
@media screen and (max-width: 600px) {
  #marulog .designBlog ul li {
    width: 100%;
    margin: 0 0 30px;
  }
}
#marulog .designBlog ul li a {
  display: block;
  color: #000;
  text-decoration: none;
  transition: all 0.3s;
}
#marulog .designBlog ul li a:hover {
  opacity: 0.7;
}
#marulog .designBlog ul li a img {
  display: block;
  width: 100%;
  height: auto;
}
#marulog .designBlog ul li a h4 {
  padding: 3px 13px;
  background-color: #fff;
  font-size: 100%;
  line-height: 1.4;
  min-height: 4em;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 600px) {
  #marulog .designBlog ul li a h4 {
    padding: 10px 15px;
    min-height: auto;
    font-size: 97%;
  }
}
#marulog ul.newBlog h3 {
  font-size: 130%;
  font-weight: bold;
  margin: 0 0 20px;
}
#marulog ul.newBlog li {
  position: relative;
  padding: 0 0 10px 18px;
  font-size: 100%;
  line-height: 1.5;
}
#marulog ul.newBlog li::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(45deg);
  position: absolute;
  top: 0.6em;
  left: 2px;
}
#marulog ul.newBlog li a {
  color: #000;
  text-decoration: underline;
}
#marulog ul.newBlog li a:hover {
  text-decoration: none;
}
#marulog a {
  text-decoration: underline;
}
#marulog a:hover {
  text-decoration: none;
}
#marulog ul li a br {
  display: none;
}

.whiteBlock {
  max-width: 1000px;
  width: 70%;
  margin: 0 auto 50px;
  padding: 30px 2.5% 20px;
  background: #ffffff;
  text-align: left;
  box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 768px) {
  .whiteBlock {
    width: 90%;
    padding: 20px 3.5% 15px;
  }
}
.whiteBlock h2 {
  font-size: 20px;
  line-height: 29px;
  font-weight: bold;
  color: #444444;
  margin-bottom: 15px;
}
.whiteBlock h2.newsRelease {
  padding-left: 37px;
  background: url(/index/img/icn_release.gif) no-repeat left center;
}
.whiteBlock h2.media {
  padding-left: 37px;
  background: url(/index/img/icn_media.gif) no-repeat left center;
}
.whiteBlock a {
  color: #444444;
  text-decoration: underline;
}
.whiteBlock a:hover {
  text-decoration: none;
}
.whiteBlock dl {
  width: 100%;
  padding-bottom: 10px;
}
.whiteBlock dl dt,
.whiteBlock dl dd {
  width: 100%;
  font-size: 14px;
  line-height: 1.5;
}
.whiteBlock .past {
  margin-top: 0.5em;
  text-align: right;
  font-size: 12px;
}

#banners a {
  display: inline-block;
  font-size: 12px;
  line-height: 1.1;
  text-align: center;
  color: #666;
  padding-bottom: 10px;
}
#banners img {
  margin: 10px 10px 2px 10px;
}
/*# sourceMappingURL=layout.css.map */
